Trouble displaying an image - please help
Sat, 19 Apr 2008 23:32:00 -0700
Hello, I'm new to the world of xml xsl and ccs, but I'm trying to give it a
go. I seem to be having a problem loading an image defined in my xml file as:
<character>
<portrait>../../virgilart/WorkingOnIt/sphere-01.jpg</portrait>
...
<character>
I retrieve the value in my xsl and trim off the ../ with th ...
|
Table XSL Question - Martin Honnen?
Sat, 19 Apr 2008 15:41:01 -0700
I saw the post by Julie Smith and it appears that I'm trying to do something
similar.
I have a variable number of elements in my XML... I want to display them in
a table with no more than 4 columns. So if I have 6 elements, I'll have two
rows of cells, 4 cells across with only 6 populated.
I'm working ...
|
Passing parameter to an indirectly called function.
Wed, 16 Apr 2008 19:55:03 -0700 (PDT)
Hello group,
I have a string replacement function (thanks to folks in this forum).
Also I have many XSL files that need to make use of the replace
functionality. I found there is an include directive to include an XSL
in another XSL. So that from each XSL file I can call the replacement
function with necessar ...
|
"Embedded" XML in contains() and string-before() / string-after()
functions.
Mon, 14 Apr 2008 18:36:30 -0700 (PDT)
Hi group,
I am trying to write an XSL transform to take an XML as input and
replace all single quotes ( ' ) with two single quotes ( '' ). The
situation is I am only sure about the name of the root tag of my XML.
Within the root tags I may have another tree of XML and I want to
replace all single quotes with tw ...
|
conditional matching
Mon, 14 Apr 2008 10:52:20 -0700 (PDT)
1) I need to match an element A provided it is one of the first three
children of element Z. Alternatively, I could just match A and then
conditionally process it within the template rule.
2) I need to match element B provided all its preceding siblings are
any or all of elements W, X, or Y. Again, I could use ...
|
Help? - xsl if statement
Sun, 13 Apr 2008 14:29:11 +1000
Hi,
I want to do this:
<xsl:if test="true"></tr></xsl:if>
However, I keep getting an error about the </tr>. How can i do this?
Thanks in advance. ...
|
Adding Page Break
Thu, 10 Apr 2008 06:31:17 -0700 (PDT)
Hope somebody can answer this, I am real new to this XSL stuff. I
need to add a page break to a document after displaying a line of
data. I went thru and scanned the forum and tried the page break
statement, but it does not seem to work. Would like to page break or
add a blank line.
Any Help would be greatly ...
|
|
|
XSL - editing returned values
Wed, 9 Apr 2008 08:43:36 -0700 (PDT)
Hi,
I have an XSL file that returns various string values.
However the values that are been returned now have a number followed
by a # sign at the start of the string i.e. 342#requiredFiles.
I want to remove everything before the # sign and the # sign
itself...to only leave the string.
However i have ...
|
<div style="font-style: italic;">
Wed, 9 Apr 2008 08:17:02 -0700
Hi,
I want to make part of the report title in italic, but I get errors now.
Please help. Thanks.
<h4>
Report - <style="font-style: italic;">Bookstore: </style><xsl:value-of
select="Bookstore/@Book" />
</h4> ...
|
How to create XSLT that produces XSLT
Wed, 9 Apr 2008 04:41:01 -0700
Having xslt file like this
<transform
xmlns="http://www.w3.org/1999/XSL/Transform"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<template match="/">
<xsl:transform/>
</template>
</transform>
I would suppose that (from any xml file) it generates another xslt file like
this
<xsl ...
|