XSLT is a transformation language for XML. Its primary function is to transform XML documents into different output formats, commonly other XML, HTML or plain text.

learn more… | top users | synonyms

2
votes
1answer
89 views

Cross-language Constants

Background Developing a web application that leverages multiple programming languages. The data flow resembles: Browser » PHP » PL/SQL » XML » XSLT » XHTML + JavaScript » Browser Using different ...
3
votes
2answers
73 views

XSLT/XPATH Code Optimization

Level: Beginner Goal: 1- Extract all Appendix Titles 2- If Appendix Title is Answer Key call custom solutions template 3. If Not Answer Key call default appendix template XML: <appendix> ...
2
votes
2answers
79 views

Reviewing and optimizing underperforming XSLT

At work I've recently been tasked with creating an XSLT to transform some XML as it is being genereated on a scanner. The point being to disgard some pages, that we are not interrested in for further ...
1
vote
1answer
76 views

How can I optimize my XSL file?

I am trying to learn to format XSL more efficiently. I can tell by the definition of duplicate variables and nearly identical templates that I did not create this efficiently at all. How could I ...
1
vote
2answers
77 views

Using Choose and Apply Templates with Mode, vs Complexless Template Matches

So I have a little XML (Sub)language, it has 3 elements of interest: para, point, and code If a code occurs inside a para, point element I want to handle it for inline use, if not, i want to set it ...
0
votes
1answer
34 views

How to read this xml tages using xslta [closed]

I tried by using for each loop for define But i dont know how to pass that name="procedure" so it taken all define tag how to pass that particular name in for each and i also what to get that choice ...
3
votes
1answer
348 views

Please review my XML Schema for an XML representation of CSV

Please review my XML Schema for an XML representation of CSV. This is intended to be part of a generalised solution to the problem of converting any (with some minor restrictions) CSV content into ...
1
vote
1answer
247 views

XSLT making a flat file

Ok source XML (since I haven't bothered with a schema): <?xml version="1.0"?> <ContactDetails> <Names> <FullName> Nicholas Example </FullName> <AltName ...