Search Results

1
vote
7answers
2k views

Xsl relative path for xsl:import or xsl:include

… The xsl file I'm translating includes the … <xsl:import href="script.xsl"/> … ute href (<a href="http://localhost/mysite/script.xsl" rel="nofollow">http://localhost/mysite/script.xs … fine; however, if I use the relative path (script.xsl) it reports "resource not found". I need to be ab … first xsl file is at … <a href="http://localhost/mysite/styles.xsl" rel="nofollow">http://localhost/mysite/styles.xs …
1
vote
3answers
2k views

<xsl:variable> Print out value of XSL variable using <xsl:value-of>

… <xsl:variable name="subexists"/> <xsl:template match="class"> <xsl:copy><xs … l:apply-templates select="@*|node()"/></xsl:copy> <xsl:choose> <xsl:when test="j … oined-subclass"> <xsl:variable name="subexists" select="'true'"/> & … lt;/xsl:when> <xsl:otherwise> <xsl:variable name="subexists" select="'false'"/> … </xsl:otherwise> </xsl:choose> subexists: <xsl:value-of select="$s …
2
votes
7answers
275 views

Is there a good tool for XSL previews?

… throw them into a XML and then pass the XML to an XSL file. And this is all handled magically by the … . Thus you can probably imagine that my XSL is full of XSLT lines, i.e. … 's any tool, IDE, etc which I can use to open the XSL file and check the HTML preview without having to … modify anything in my current XSL? …
0
votes
9answers
606 views

What are the DotNet 2.0 or 3.5, IE, XSL and XSL-FO capabilities?

… I am total noob with XSL and XSL-FO and I am looking for some advice on the possib … nd limitations with DotNet 2.0 and 3.5 when using XSL for formatting XML Data For reporting purposes. … vious and keep-with-next But those I believe are XSL-FO commands, please correct me if I am wrong. The … re is also this which appears to be in the base XSL commands. … <a href="http://www.w3.org/TR/xsl/#keepbreak" rel="nofollow">http://www.w3.org/TR/x … From what I have read IE and DotNet don't support XSL-FO is that still true? I also read some posts abo …
4
votes
6answers
521 views

What’s the difference between XSLT and XSL-FO ?

… What's the difference between XSLT and XSL-FO ? …
0
votes
3answers
212 views

Problem with XSL 1.0 <xsl:for-each> and <call-template>

XSL file: … block-center-1-1.xsl … <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> &lt … ;xsl:template name="block-center-row-1"> <di … Artist</th> </tr> <xsl:for-each select=" content/page[@id=$pag … t;tr> <td> <xsl:value-of select="title" /> </td …
3
votes
5answers
5k views

Counter inside xsl:for-each loop

… How to get a counter inside xsl:for-each loop that would reflect the number of cu … <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> &l … t;xsl:output method="xml" version="1.0" encoding="UTF-8 … " indent="yes"/> <xsl:template match="/"> <newBooks> … <xsl:for-each select="books/book"> <newBo … t;/countNo> <title> <xsl:value-of select="title"/> </title&g …
8
votes
11answers
583 views

What is a good resource for learning XSL?

… Recently, I have started to have to read a lot of XSL and XSLT at my job. Some of it makes sense and so … <xsl:stylesheet version="1.0" xmlns:xs … l="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="htm … l" encoding="UTF-8" /> <xsl:param name="message"/> <xsl:templat … <html><body> header <xsl:value-of select="//message"/> footer … </body></html> </xsl:template> </xsl:stylesheet> …
0
votes
4answers
400 views

XSL parent child problem

… In XSL I have: … <xsl:template match="subscriber"> <xsl:for-each select="date"> <xsl:apply-templa … tes match="person" /> <xsl:apply-templates match="location" /> <xsl: … apply-templates match="dog" /> </xsl:for-each> </xsl:template> …
2
votes
4answers
432 views

xsl code to list a given attribute of specific child elements

… for each function, so far I've got the following xsl code … <xsl:for-each select="SEARCHRESULTS/FUNCTION"> &l … t;ROW> <COL><DATA><xsl:value-of select="@name" /></DATA></CO … L> <COL><DATA><xsl:value-of select="PARAMETER/@name" /></DATA& … gt;</COL> <COL><DATA><xsl:value-of select="CODE" /></DATA></COL … > </ROW> </xsl:for-each> …
3
votes
4answers
59 views

xsl:import using stylesheets

… Hi, I'm building a website that uses xsl stylesheets, and I'm building up a small library … <xsl:import href="util" /> … sn't work in Google Chrome, as it doesn't support xsl:import yet. Can someone please write me a stylesh … t I can run on the server side that will read the xsl:import line and import the relevent stylesheet be …
2
votes
4answers
365 views

Conditional statements in xsl

… working on a site which some if/or statements in XSL and being a little unfamilar with the language i' …
0
votes
5answers
199 views

How to change my XSL stylesheet to properly allow carriage returns

… dering if anybody knew how to alter the following XSL stylesheet so that ANY text in my transformed XML … <xsl:stylesheet xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\" version= … \"1.0\"> <xsl:template match=\"/\"><xsl:apply-templates /></xsl:template><xsl … :template match=\"\r\n\"><xsl:text>&#10;</xsl:text></xsl:templa … te><xsl:template match=\"*\"> <xsl:element name=\"{local-name()}\"><xsl:value- … of select=\"text()\"/><xsl:apply-templates select=\"*\"/></xsl:element …
3
votes
4answers
2k views

XPATH or XSL to match two node-sets using custom comparison

… using a function between all nodes of both sets? XSL is also a viable option. …
3
votes
6answers
928 views

Is there an XSL “contains” directive?

… I have the following snippet of XSL: … <xsl:for-each select="item"> <xsl:variable name="hhref" select="link" /> &lt … ;xsl:variable name="pdate" select="pubDate" /> … <xsl:if test="hhref not contains '1234'"> &lt … ref="{$hhref}" title="{$pdate}"> <xsl:value-of select="title"/> </a> … </li> </xsl:if> </xsl:for-each> …

1 2 3 4 5 34 next
15 30 50 per page