XSL Strip Padding
Is there a simple way to strip padding, IE leading and/or trailing white space. EXSLT padding function seems to only create padding or trim strings to a certain length. ...
Is there a simple way to strip padding, IE leading and/or trailing white space. EXSLT padding function seems to only create padding or trim strings to a certain length. ...
Im working with PHP5, and I need to transform XML in the following form: <section> <heading> <line absolutePage="4" page="2" num="35">A Heading</line> </heading> <subsection type="type1"> <heading label="3"> <line absolutePage="4" page="2" num="36">A Subheading</line> ...
Hi all, Stuck a bit with the following and would love some ideas/pointers in the right direction. I have the following XML: <RecordsCollection> <CustomerRecord> <customerId>12345</customerId> <currency>USD</currency> </CustomerRecord> <CustomerRecord> <customerId>12345</customerId> <currency>USD</currency> </Cus...
I have a Junit process that runs a bunch of data integrity tests every night, and I would like to have it email the results in a nicely formatted HTML email. The issue is the HTML formatter built into JUnit uses frames and an external stylesheet so it is not appropriate for email. The plain formatter has the results buried in the midst...
I'm in a situation where I can only test for the child node, but I have to apply tags to the grandparent of this child node. I've tried using: <xsl:call-template name="grandparent" select="parent::parent::node()"/> and: <xsl:call-template name="grandparent" select="ancestor::node [@nameofgrandparentnode]"/> But neither works. Th...
I am trying to pass a node as a parameter from a named template to another named template but it doesn't work. It works in the first one, but not in the second level call. It complains about trying to convert from java.lang.String to node-set. I am using xslt1.0. Any ideas? Thanks <xsl:template match="whatever"> <xsl:call-templat...
Hi, I'm using XSL-FO with Apache FOP to take a sexy looking XML file and output it as a PDF, however I'm having a really basic problem trying to get a particular bit of information (the address) to be positioned from the right of the page, I can force it over to the right by increasing the left attribute, but if I change my page size, or...
Hi all I'm in need to make a WYSIWYG XML editor for a custom XML grammar. By this time I have explored all the OpenSource tools that I could find under this domain. Includes VEX, Oxygen, Bitflux... Since none of them were serving my purpose. I'm also looking for javascript based WYSIWYG HTML editors which can support and additional DOC...
I've been trying to iterate through an XML file using XSL , however I'm having major troubles as the only first language is being recognised. Help! <?xml version="1.0"?> <languages count="1"> <language>English (UK)</language> <language>Spanish</language> <language>Arabic</language> </languages> <xsl:stylesheet xmlns:xsl="http://...
All, I have an XML file which I transform it using an XSLT document to another XML. Can I define another set of transformations in the same XSLT file to be applied in the result XML of the first transformation? Thanks, MK ...
I am inserting two variables countryVar and langVar into a node in my xml document. <link><![CDATA[/<% = countryVar %>/<% = langVar %>/products/index.aspx]]></link> I am utilizing the link node in a xslt like this. <a href="{link}"><xsl:value-of select="linkName"/></a> The value of link prints out exactly like it is in the xml docu...
I doing the right transformations to develop a multilingual website. All the text of this website needs to be taken from an XML file because the output of the site will be the processed file. This are the basic files, index.xml: <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet type="text/xsl" href="xsl/index.xsl"?> <page> <...
Hi, I'm trying to write a template that will grab a mixture of text nodes and elements within a parent element and create a new node. I've done a lot of searching and couldn't find what I was looking for...so hopefully I'm not asking to basic a question. Here is a sample of xml I want to transform: <?xml version="1.0"?> <root> <para>...
I have the following XML: <root> <groups> <group id="101"> <number>10</number> <children> <leader id = "A" /> <members> <member id="1"> <member id="2"> <member id="3"> </members> </children> </group> <group id="102"> <number>20</number> <children> <leader id = "A" /> <members>...
I have to files XML files: language.xml and menu.xml. The first one is loaded by default, the second is loaded with <xsl:param />. language.xml: <?xml version="1.0" encoding="utf-8"?> <language> <header> <menu> <title>Title of example</title> </menu> <menu> <title>Title of example 2</...
Hi there, I've created the following XSL stylesheet which takes an XML packet ( given to me from SVN ) and converts all the "entry" nodes, which don't include the text "archive", into a comma-separated list for my ANT script. An example XML file looks like this.... <?xml version="1.0"?> <lists> <list path="https://mydomain.com/branches...
How can I transform the following XML with XSLT from this: <root> <list> <item label="21(1)">some text</item> <item label="(2)">some text</item> </list> <list> <item label="a">some text</item> <item label="b">some text</item> </list> </root> to this: <root> <list label="21"> ...
I'm trying to add different tags to a node depending on an attribute value of its grandchild node. Sample Input (a 1x3 table): <table> <row> <cell row="1" column="1" >heading text one</cell> </row> <row> <cell row="2" column="1" >body text one</cell> </row> <row> <cell row="3" column="1" >bo...
I am reading a book on XSLT 2.0. I am on the chapter of XSLT Result Trees. Frankly, i don't understand it a bit. What are result trees? What is it used for? Why is it important? ...
CURRENT XML: <?xml version="1.0"?> <form1> <page1> <first_name></first_name> <last_name></last_name> . . </page1> <page2> <address></address> <phone_number></phone_number> . . </page2> <page3> <company_name></company_name> <job_title></job_title> . ....