Back in the Day ..
2 May 2006 05:34:18 -0700
I used to be able to XSL transform just about any XML using either
MSXML or XSLTransform using syntax such as the following :
<xsl:template match="/">
<html>
<body>
<p style="text-align:center;">
<b>
Purchase Request
</b>
</p>
<xsl:fo ...
|
xsl transformation question ..
Tue, 2 May 2006 15:12:26 +0300
Hi all.
I'm implementing document-view web interface using the ASP.NET xml control
with xsl
transformations in an ASP.NET form.
So, I'd like to have a xslt file which will preserve the xml as it is - it
will show native xml content without, actually, any transformations.
It is important for me to do this by ...
|
Highlight words?
Tue, 2 May 2006 17:40:30 +0800
Dear all,
I am trying to search and highlight words in XML content displayed as HTML
using XSLT. I have got the search bit using javascript and dom, and am at
the moment successfully putting <font> tags around matches when I'm writing
the results out, by grabbing document.body using dom. However Firefox
...
|
Line feed
Mon, 1 May 2006 16:07:46 -0400
I am a newbie in XML and XSL
I have a node in my XML file which is called "Description" and contains
multiple paragraph
In my xsl file I have this header containing a preserve-space :
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1 ...
|
[ANNOUNCE] Defining your own Functions in XQuery
1 May 2006 12:16:48 -0700
[ANNOUNCE] Hello Everyone,
Stylus Studio has just released a new XQuery tutorial entitled:
Defining your own Functions in XQuery. This tutorial allows developers
to learn how to leverage powerful XQuery functions. "Defining your own
Functions in XQuery" was written by, Dr. Michael Kay, founder of
Saxonica. ...
|
XML inside javascript link
Sun, 30 Apr 2006 19:16:42 GMT
Hi All,
i have a problem, anyone know how to include xsl code inside a javascript
link like this? :
<a href="javascript:;"
onClick="openMapWindow('http://birillo.com/map.jsp?prop=142043:PENNSYLVANIA'
)">map</a>
i want use dynamic data instead of "142043" & "PENNSYLVANIA"
thanks
Alex
...
|
retreiving and showing a back slash
Sat, 29 Apr 2006 16:11:39 +0100
Can any one help me with this problem, I 've looked around but with no luck,
also I'm not an xslt guru......
XML fragment
<details datetime="20060429 14:15">
<detail NTLogin="domain\user.name" />
XSL
var init_detail = "<xsl:value-of select=/details/detail/@NTLogin />";
This removes the '\' f ...
|
|
|
Generating HTML and PDF using XML and XSLT
Fri, 28 Apr 2006 01:27:02 -0700
We have 7 word templates which need to be converted to HTML and PDF at
runtime using XML and XSLT in a web application.
Questions we have are:
How do we generate HTML and PDF when we have word document as template?
How many XML and XSLT will need to be created both for HTML and PDF? (All
templates ha ...
|
Flag out of scope in XSLT
27 Apr 2006 01:56:54 -0700
I am looping through an XML heirachy using XSLT.
When I encounter an attribute of type='FAILED' I wanna output a fail.
e.g
<xsl:when test="@type = 'FAILED'">
<xsl:variable name="isFailed" select="@type" />
<BR> "FAIL" </BR>
</xsl:when>
Now in this bit
<xsl:variable name="isFailed" sele ...
|
XSLT variables or params
Wed, 26 Apr 2006 03:58:01 -0700
Hi all,
I have several xslt's. The huge one (common.xslt) is included from the rest
of small templates (parent templates) by "<xsl:include href="common.xslt"/>".
Now I have to add something into the parent templates to say to my huge
template to display some items or others.
I thought about creating a v ...
|