1
vote
1answer
21 views
Xslt - Enforcing @attribute uniqueness.
I rarely work with xslt's so I'm not the greatest at it, but, I was wondering how to go about solving this problem:
<Element>
<childElement type="type1">Bob</childElement>
…
0
votes
1answer
12 views
Test for Descendant Items
I am trying to create a simple inventory of items in a Sitecore website using an xslt. The problem is that I can't find a way to test whether an item has descendant items beneath it.
It's easy to …
3
votes
3answers
94 views
C# XSLT: How to debug this error ?
I have to include a C# script in my XSLT file .. So as to calculate the difference between two dateTime values(and add it to some other values) .. I need to accept all the possible formats of date .. …
1
vote
1answer
17 views
How to pass the value to a user-defined function in XSLT
I want to pass the value of employee_name that I get from XML to a user-defined function in XSL. Please see the code below:
<xsl:for-each select="employees/employee">
<xsl:value-of …
1
vote
5answers
64 views
How to generate a text file using XSLT
I want to generate a text format file using XML and XSLT using Java.
I know how to generate PDF format, but I have no idea about generating text format, i.e. what packages are needed, what are the …
2
votes
4answers
38 views
XSL: How to test if the current node is a descendent of another node.
Hi,
I'm pretty new to XSLT, but need to use it for a CMS using at the moment. I've already come up with a problem, but I'll try to describe my it without going into too much information about the …
1
vote
2answers
46 views
Grouping problem in XSLT
I need to group the following XML doc to show:
Parent Item Qty
----------------------------------
TopLevelAsy 1
SubAsy Part15 4
Top …
2
votes
1answer
56 views
XSLT escaping characters for XML attributes
I am working in a framework (cocoon) which means that the pages after I produce them are re-transformed by processes I have little or no control of. What I am doing is making a web service call, then …
0
votes
2answers
37 views
HTML entities do not render correctly in browser after XSLT transform
I have the following XML:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<example>
<contactInfo>
<id>12319221</id>
<name>Jerry …
0
votes
1answer
45 views
What is a good templating engine?
What is a nice templating engine to use in C#? I have XML or JSON as structured datasource. This data needs to be presented to users on the web in strict XHTML.
I've been using XSLT mostly, but maybe …
0
votes
1answer
25 views
Sharepoint XSLT Dynamic filtering
I'm trying to create a dynamic row filter based on a variable. I have the following code:
<xsl:variable name="filter" select="contain(@Title, 'title1') or contain(@Title, 'title2')"/>
…
1
vote
3answers
47 views
How to transform xml and keep newlines?
Hi,
I'm trying to preserve row breaks in an xml file when transforming it to html, but I cant find a way that works.
<meta>
<name>Message</name>
<value>Hi!
I need info!
…
0
votes
2answers
29 views
Capitalize Element Name in XSL
I am writing a XSL transformation and my source has an element like this - "title". The target xml should contain "Title". Is there a way to capitalize the first letter of a string in XSL?
3
votes
3answers
69 views
How to enable XSLT scripting in C# .. ?
I have modified the title of the question after finding the answer :) :P
I am loading an XML file and an XSL file by a C# program and triggering the XSL transformation .. here is the code for it:
…
0
votes
2answers
30 views
Parsing BBCode with xslt 2.0
Hi.
I need help finding a viable solution to convert bbcode to html, this is where ive come so far, but fails when bbcodes get wrapped.
Src:
[quote id="ohoh81"]asdasda
[quote …
