Using XSLT to transform XHTML to XHTML (again!)
Fri, 4 Jul 2008 08:44:01 -0700
Dear Newsgroup
I have an input XHTML document containing multiple topics. It contains topic
names in h1 tags followed by content elements at the same level, and I want
the transform to be able to select a single topic as specified by a parameter
and output the topic as valid XHTML. I'm OK with the parameter ...
|
xsl:comment does not work well in 64 bit unix system
Thu, 3 Jul 2008 11:11:32 -0700 (PDT)
It was found that xsl:comment caused java.lang.NullPointerException
when I tried to build in 64 bit unix system. No character can be
added between <xsl:commen> and </xsl:comment>. If there is anything
except space added in between, then the java.lang.NullPointerException
error will be shown. However, it works ...
|
XSL output of complete element
Tue, 1 Jul 2008 14:38:03 -0700
Please can someone give me a sample xsl to output a complete element in a
for-each loop?
For example I'd like to sort the output on <level> by the <sort> value, but
as you can see, the elements underneath the <level> node may vary :
<root>
<level>
<sort>2</sort>
<x></x>
<y></y>
</level>
...
|
ceiling
Sun, 29 Jun 2008 03:45:33 -0700 (PDT)
For each element in the group I need to get ceiling of divide
operation then get the summation for group elements
I tried this code but it?s doesn?t work
<xsl:for-each-group select="csv:line" group-by="csv:field[1]">
<xsl:element name="csv:field">
<xsl:value-of select="sum(ce ...
|
how to question
Thu, 26 Jun 2008 15:43:08 -0700
Hello,
I have another question
i have text that is 354 characters, how do you only display the 1st 75
characters?
Thanks
AMM
...
|
Getting a bad request on a link
Thu, 26 Jun 2008 13:35:44 -0700
Hello
This is my xml file snippet:
<storylink>http://www.cvx.net/nosun.aspx</storylink>
This is my xsl file snippet:
<a href="<xsl:value-of select='stories/story/storylink'/>">The rest of the story</a>
It transforms okay but clicking on the link I get a bad request error. So what am I doing that is ...
|
XSLT Editor (Xselerator?)
Thu, 26 Jun 2008 13:35:14 -0500
When I was writing a lot of XSL documents I relied heavily upon
MarrowSoft's Xselerator:
http://www.marrowsoft.co.uk/
Xselerator doesn't appear to be doing any further updates, nor is it
even being sold anymore (I think?). Nor have I seen Marrow on the forums
lately (not that I've looked that hard!).
On ...
|
|
|
Using XSLT to transform XHTML to XHTML
Thu, 26 Jun 2008 01:50:00 -0700
Dear XSL newsgroup
I have input XHTML (indirectly produced from MS Word) and I am using XSLT to
produce an output XHTML document. The input XHTML contains many topics, the
transform selects one topic of interest and the output XHTML can be displayed
as a web page. I have ensured the input is well-formed and ...
|
Can you transform XML into a SQL INSERT statement
Thu, 26 Jun 2008 00:20:01 -0700
Hi,
Is it possible to use XSLT to transform xml data into an insert statement
with xslt?
Many thanks for any ideas on this
@nt ...
|
Collecting data in each line Options
Wed, 25 Jun 2008 11:00:19 -0700 (PDT)
I need to write xsl document to collect data csv:field[4] for each
line groubing by
csv:field[1]
<csv:line>
<csv:field>48</csv:field>
<csv:field>20</csv:field>
<csv:field>6</csv:field>
<csv:field>6430</csv:field>
</csv:line>
< ...
|