applying a trasform to an xml schema with imports
Wed, 24 May 2006 14:49:03 -0700
I have 3 xml schema files (xsd) which use the xs:import tag to reference
each other. I am building a transform that takes the schema definition and
outputs some html documentation. If schema file a contains elements which
reference complex types in file b, which references simple types which
reference re ...
|
From an XSL file, what is the best way to process a cookie?
24 May 2006 13:43:36 -0700
By clicking a link on a website I set a USERINFO cookie and then I
redirect to a program which ultimately executes an XSL file which
dynamically builds an input form. The input form, while having some non
dynamic hidden INPUT tags, has one hidden INPUT tag that is dynamic. In
the XSL file I attempt to bring th ...
|
xsl & javascript woes
24 May 2006 06:51:50 -0700
If I do something like this in an xsl header:
<![CDATA[
function showdivtest(strdivname)
{
document.getElementById(strdivname).style.visibility='visible'
}
]]>
I get Variable 'document' has not been declared.
This works fine between a normal < script> tag, but why not in an xsl
header ?
...
|
Is it possible to use regular expressions inside of an xpath statement executed by System.Xml.XmlDocument.SelectSingleNode() ?
Tue, 23 May 2006 17:44:06 -0700
Is it possible to use regular expressions inside of an xpath statement
executed by System.Xml.XmlDocument.SelectSingleNode() ?
string sdoc = "<foo><bar a='1'/><bar a='2'/></foo>";
System.Xml.XmlDocument pdoc = new System.Xml.XmlDocument();
pdoc.LoadXml(sdoc);
System.Xml.XmlNode pnode =
pdoc.S ...
|
Earn up to 1000 $ per month only for reading your Mails!!!!!!!!
Tue, 23 May 2006 16:16:57 +0200
...
|
Array in XSL
23 May 2006 06:54:38 -0700
Hello everyone, I have to implement a array and compare a value with
each element of this array.
Does exist any way to implement a array in XSL?
Thank you in advance,
Mariano
...
|
Sort & Node-Set
23 May 2006 02:11:56 -0700
Hi,
This is a cut down version of a problem I'm having. I am trying to get
the ouput listed below in the HTML section from the following XML but
can't. I believe my problem lies with the way I use Node-Set but cannot
put my finger on it. I would like to continue along the lines of using
Node-Set because I wil ...
|
|
|
try to show only part of the XML rows
22 May 2006 15:45:02 -0700
This is the XML file
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="Sp_Sp_24.xsl"?>
<ROOT amcAddress="Sprint_violin!330" amcFileName="Sprint"
amcHost="violin">
<NAME>Multi Env Clients [ May 19, 2006 09:52:08 AM ]</NAME>
<BODY>
<TABLE>
<HEADER_ROW>
< ...
|
Sorting and Grouping
22 May 2006 14:37:35 -0700
Hello all. I'm having a sorting issue.
My for-each loop is this:
<xsl:for-each select="Indicator[@KEY = &lstIndicator][Position() mod 11
= 1]">
This loops through all the Indicators where the KEY is in the variable
lstIndicator, and where position mod 11 = 1. I then change some values
so in effect, it ...
|
C# - How to process custom tags?
22 May 2006 13:25:27 -0700
I would like to know how one would process custom tags in an xslt using
C#2.0.
I have an XSLT file that looks something like this:
<...stuff...>
<abc:mycustomtag width="5" height="7">
</abc:mycustomtag>
<...more stuff...>
And my transform code looks like this:
// Load the transform from the ...
|