Modified: tomcat/taglibs/standard/trunk/examples/web/xml/Out.jsp URL: http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/examples/web/xml/Out.jsp?rev=1037291&r1=1037290&r2=1037291&view=diff ============================================================================== --- tomcat/taglibs/standard/trunk/examples/web/xml/Out.jsp (original) +++ tomcat/taglibs/standard/trunk/examples/web/xml/Out.jsp Sat Nov 20 18:34:03 2010 @@ -3,7 +3,7 @@ <html> <head> - <title>JSTL: XML Support -- Parse / Out</title> + <title>JSTL: XML Support -- Parse / Out</title> </head> <body bgcolor="#FFFFFF"> @@ -15,51 +15,67 @@ <x:parse var="doc" doc="${docString}"/> <table border=1> - <tr> - <td valign="top"><pre><c:out value="${docString}"/></pre></td> - <td valign="top"> - <table border=1> - <tr> - <th>Expression</th> - <th>Result</th> - </tr> -<%-- - <tr> - <td>3 + 3</td> - <td><pre><x:out select="3 + 3"/></pre></td> - </tr> ---%> - <tr> - <td>$doc//sport</td> - <td><pre><x:out select="$doc//sport"/></pre></td> - </tr> - <tr> - <td>$doc/games/country/*</td> - <td><pre><x:out select="$doc/games/country/*"/></pre></td> - </tr> - <tr> - <td>$doc//*</td> - <td><pre><x:out select="$doc//*"/></pre></td> - </tr> - <tr> - <td>$doc/games/country</td> - <td><pre><x:out select="$doc/games/country"/></pre></td> - </tr> - <tr> - <td>$doc/games/country[last()]</td> - <td><pre><x:out select="$doc/games/country[last()]"/></pre></td> - </tr> - <tr> - <td>$doc//@id</td> - <td><pre><x:out select="$doc//@id"/></pre></td> - </tr> - <tr> - <td>$doc//count...@id='Denmark']</td> - <td><pre><x:out select="$doc//count...@id='Denmark']"/></pre></td> - </tr> - </table> - </td> - </tr> + <tr> + <td valign="top"> + <pre><c:out value="${docString}"/></pre> + </td> + <td valign="top"> + <table border=1> + <tr> + <th>Expression</th> + <th>Result</th> + </tr> + <%-- + <tr> + <td>3 + 3</td> + <td><pre><x:out select="3 + 3"/></pre></td> + </tr> + --%> + <tr> + <td>$doc//sport</td> + <td> + <pre><x:out select="$doc//sport"/></pre> + </td> + </tr> + <tr> + <td>$doc/games/country/*</td> + <td> + <pre><x:out select="$doc/games/country/*"/></pre> + </td> + </tr> + <tr> + <td>$doc//*</td> + <td> + <pre><x:out select="$doc//*"/></pre> + </td> + </tr> + <tr> + <td>$doc/games/country</td> + <td> + <pre><x:out select="$doc/games/country"/></pre> + </td> + </tr> + <tr> + <td>$doc/games/country[last()]</td> + <td> + <pre><x:out select="$doc/games/country[last()]"/></pre> + </td> + </tr> + <tr> + <td>$doc//@id</td> + <td> + <pre><x:out select="$doc//@id"/></pre> + </td> + </tr> + <tr> + <td>$doc//count...@id='Denmark']</td> + <td> + <pre><x:out select="$doc//count...@id='Denmark']"/></pre> + </td> + </tr> + </table> + </td> + </tr> </table> </body>
Modified: tomcat/taglibs/standard/trunk/examples/web/xml/Parse.jsp URL: http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/examples/web/xml/Parse.jsp?rev=1037291&r1=1037290&r2=1037291&view=diff ============================================================================== --- tomcat/taglibs/standard/trunk/examples/web/xml/Parse.jsp (original) +++ tomcat/taglibs/standard/trunk/examples/web/xml/Parse.jsp Sat Nov 20 18:34:03 2010 @@ -3,25 +3,25 @@ <html> <head> - <title>JSTL: XML Support -- Parse</title> + <title>JSTL: XML Support -- Parse</title> </head> <body bgcolor="#FFFFFF"> <h3>Parse from Objects and URLs</h3> <c:set var="xmlText"> - <a> - <b> - <c> - foo - </c> - </b> - <d> - bar - </d> - </a> -</c:set> + <a> + <b> + <c> + foo + </c> + </b> + <d> + bar + </d> + </a> +</c:set> -<x:parse var="a" doc="${xmlText}" /> +<x:parse var="a" doc="${xmlText}"/> <x:out select="$a//c"/> <x:out select="$a/a/d"/> Modified: tomcat/taglibs/standard/trunk/examples/web/xml/ParseWithEntities.jsp URL: http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/examples/web/xml/ParseWithEntities.jsp?rev=1037291&r1=1037290&r2=1037291&view=diff ============================================================================== --- tomcat/taglibs/standard/trunk/examples/web/xml/ParseWithEntities.jsp (original) +++ tomcat/taglibs/standard/trunk/examples/web/xml/ParseWithEntities.jsp Sat Nov 20 18:34:03 2010 @@ -3,21 +3,21 @@ <html> <head> - <title>JSTL: XML Support -- Parse</title> + <title>JSTL: XML Support -- Parse</title> </head> <body bgcolor="#FFFFFF"> <h3>Parse from Objects and URLs</h3> <c:set var="xmlText"> -<?xml version="1.0"?> + <?xml version="1.0"?> -<!DOCTYPE project [ + <!DOCTYPE project [ <!ENTITY included SYSTEM "included.xml"> -]> -<root> - &included; -</root> -</c:set> + ]> + <root> + &included; + </root> +</c:set> <x:parse var="a" doc="${xmlText}" systemId="foo.xml"/> Modified: tomcat/taglibs/standard/trunk/examples/web/xml/Set.jsp URL: http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/examples/web/xml/Set.jsp?rev=1037291&r1=1037290&r2=1037291&view=diff ============================================================================== --- tomcat/taglibs/standard/trunk/examples/web/xml/Set.jsp (original) +++ tomcat/taglibs/standard/trunk/examples/web/xml/Set.jsp Sat Nov 20 18:34:03 2010 @@ -2,30 +2,30 @@ <html> <head> - <title>JSTL: XML Support -- Parse / Set / Out</title> + <title>JSTL: XML Support -- Parse / Set / Out</title> </head> <body bgcolor="#FFFFFF"> <h3>Parse / Set / Out</h3> <x:parse var="a"> - <a> - <b> - <c> - foo - </c> - </b> - <d> - <e> - bar - </e> - </d> - </a> + <a> + <b> + <c> + foo + </c> + </b> + <d> + <e> + bar + </e> + </d> + </a> </x:parse> <x:set var="d" select="$a//d"/> <x:out select="$d/e"/> -<hr /> +<hr/> </body> </html> Modified: tomcat/taglibs/standard/trunk/examples/web/xml/Transform.jsp URL: http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/examples/web/xml/Transform.jsp?rev=1037291&r1=1037290&r2=1037291&view=diff ============================================================================== --- tomcat/taglibs/standard/trunk/examples/web/xml/Transform.jsp (original) +++ tomcat/taglibs/standard/trunk/examples/web/xml/Transform.jsp Sat Nov 20 18:34:03 2010 @@ -3,55 +3,55 @@ <html> <head> - <title>JSTL: XML Support -- Transform</title> + <title>JSTL: XML Support -- Transform</title> </head> <body bgcolor="#FFFFFF"> <h3>Parse / Expr</h3> <c:set var="xml"> - <a><b>header!</b></a> + <a><b>header!</b></a> </c:set> <c:set var="xsl"> - <?xml version="1.0"?> - <xsl:stylesheet - xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> - - <xsl:template match="text()"> - <h1><xsl:value-of select="."/></h1> - </xsl:template> + <?xml version="1.0"?> + <xsl:stylesheet + xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> + + <xsl:template match="text()"> + <h1><xsl:value-of select="."/></h1> + </xsl:template> - </xsl:stylesheet> + </xsl:stylesheet> </c:set> -Prints "header" as a header:<br /> +Prints "header" as a header:<br/> <x:transform doc="${xml}" xslt="${xsl}"/> -<hr /> +<hr/> -Prints "header" in normal size:<br /> +Prints "header" in normal size:<br/> <x:transform doc="${xml}" xslt="${xsl}" var="doc"/> <x:out select="$doc//h1"/> -<hr size="5" /> +<hr size="5"/> -<hr /> +<hr/> <h3>Transformations using output from XPath expressions</h3> -<x:parse var="xml" doc="${xml}" /> -<x:set var="miniDoc" select="$xml//b" /> -<x:transform xslt="${xsl}" doc="${miniDoc}" /> -<hr /> +<x:parse var="xml" doc="${xml}"/> +<x:set var="miniDoc" select="$xml//b"/> +<x:transform xslt="${xsl}" doc="${miniDoc}"/> +<hr/> <h3>Inline transformations</h3> <x:transform xslt="${xsl}"> - <a> - <b> - <c>Paragraph one!</c> - <c>Paragraph foo!</c> - </b> - </a> + <a> + <b> + <c>Paragraph one!</c> + <c>Paragraph foo!</c> + </b> + </a> </x:transform> </body> Modified: tomcat/taglibs/standard/trunk/examples/web/xml/TransformWithInclusion.jsp URL: http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/examples/web/xml/TransformWithInclusion.jsp?rev=1037291&r1=1037290&r2=1037291&view=diff ============================================================================== --- tomcat/taglibs/standard/trunk/examples/web/xml/TransformWithInclusion.jsp (original) +++ tomcat/taglibs/standard/trunk/examples/web/xml/TransformWithInclusion.jsp Sat Nov 20 18:34:03 2010 @@ -3,7 +3,7 @@ <html> <head> - <title>JSTL: XML Support -- Transform</title> + <title>JSTL: XML Support -- Transform</title> </head> <body bgcolor="#FFFFFF"> <h3>Parse / Expr</h3> @@ -12,21 +12,21 @@ <?xml version="1.0"?> <!DOCTYPE project [ - <!ENTITY included SYSTEM "included.xml"> +<!ENTITY included SYSTEM "included.xml"> ]> <root> - &included; + &included; </root> </c:set> <c:set var="xsl"> - <?xml version="1.0"?> - <xsl:stylesheet - xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> +<?xml version="1.0"?> +<xsl:stylesheet + xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> - <xsl:import href="/xml/includedStylesheet.xsl" /> + <xsl:import href="/xml/includedStylesheet.xsl"/> - </xsl:stylesheet> +</xsl:stylesheet> </c:set> <x:transform doc="${xml}" docSystemId="foo.xml" xslt="${xsl}"/> Modified: tomcat/taglibs/standard/trunk/examples/web/xml/When.jsp URL: http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/examples/web/xml/When.jsp?rev=1037291&r1=1037290&r2=1037291&view=diff ============================================================================== --- tomcat/taglibs/standard/trunk/examples/web/xml/When.jsp (original) +++ tomcat/taglibs/standard/trunk/examples/web/xml/When.jsp Sat Nov 20 18:34:03 2010 @@ -2,67 +2,67 @@ <html> <head> - <title>JSTL: XML Support -- Parse / When</title> + <title>JSTL: XML Support -- Parse / When</title> </head> <body bgcolor="#FFFFFF"> <h3>Parse / When</h3> <x:parse var="a"> - <a> - <b> - <c foo="bar"> - foo - </c> - </b> - <d> - bar - </d> - </a> + <a> + <b> + <c foo="bar"> + foo + </c> + </b> + <d> + bar + </d> + </a> </x:parse> <x:choose> - <x:when select='$a//c...@foo="bar"]'> - @foo = bar - </x:when> - <x:when select='$a//c...@foo="foo"]'> - @foo = foo - </x:when> - <x:otherwise> - @foo not recognized - </x:otherwise> + <x:when select='$a//c...@foo="bar"]'> + @foo = bar + </x:when> + <x:when select='$a//c...@foo="foo"]'> + @foo = foo + </x:when> + <x:otherwise> + @foo not recognized + </x:otherwise> </x:choose> -<br /> +<br/> <x:choose> - <x:when select='$a//c...@foo="foo"]'> - @foo = foo - </x:when> - <x:when select='$a//c...@foo="bar"]'> - @foo = bar - </x:when> - <x:otherwise> - @foo not recognized - </x:otherwise> + <x:when select='$a//c...@foo="foo"]'> + @foo = foo + </x:when> + <x:when select='$a//c...@foo="bar"]'> + @foo = bar + </x:when> + <x:otherwise> + @foo not recognized + </x:otherwise> </x:choose> -<br /> +<br/> <x:choose> - <x:when select='$a//c...@foo="barr"]'> - @foo = barr - </x:when> - <x:when select='$a//c...@foo="fooo"]'> - @foo = fooo - </x:when> - <x:otherwise> - @foo not recognized - </x:otherwise> + <x:when select='$a//c...@foo="barr"]'> + @foo = barr + </x:when> + <x:when select='$a//c...@foo="fooo"]'> + @foo = fooo + </x:when> + <x:otherwise> + @foo not recognized + </x:otherwise> </x:choose> -<br /> +<br/> -<hr /> +<hr/> </body> </html> Modified: tomcat/taglibs/standard/trunk/examples/web/xml/games.xml URL: http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/examples/web/xml/games.xml?rev=1037291&r1=1037290&r2=1037291&view=diff ============================================================================== --- tomcat/taglibs/standard/trunk/examples/web/xml/games.xml (original) +++ tomcat/taglibs/standard/trunk/examples/web/xml/games.xml Sat Nov 20 18:34:03 2010 @@ -1,31 +1,31 @@ <?xml version="1.0" encoding="ISO-8859-1"?> <games> - <country id="Luxembourg"> - <athlete> - <name>Lux 1</name> - <sport>swimming</sport> - <age>23</age> - <gender>M</gender> - </athlete> - <athlete> - <name>Lux 2</name> - <sport>wrestling</sport> - <age>31</age> - <gender>M</gender> - </athlete> - </country> - <country id="Denmark"> - <athlete> - <name>Den 1</name> - <sport>cycling</sport> - <age>18</age> - <gender>F</gender> - </athlete> - <athlete> - <name>Den 2</name> - <sport>sailing</sport> - <age>27</age> - <gender>M</gender> - </athlete> - </country> + <country id="Luxembourg"> + <athlete> + <name>Lux 1</name> + <sport>swimming</sport> + <age>23</age> + <gender>M</gender> + </athlete> + <athlete> + <name>Lux 2</name> + <sport>wrestling</sport> + <age>31</age> + <gender>M</gender> + </athlete> + </country> + <country id="Denmark"> + <athlete> + <name>Den 1</name> + <sport>cycling</sport> + <age>18</age> + <gender>F</gender> + </athlete> + <athlete> + <name>Den 2</name> + <sport>sailing</sport> + <age>27</age> + <gender>M</gender> + </athlete> + </country> </games> \ No newline at end of file Modified: tomcat/taglibs/standard/trunk/examples/web/xml/included.xml URL: http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/examples/web/xml/included.xml?rev=1037291&r1=1037290&r2=1037291&view=diff ============================================================================== --- tomcat/taglibs/standard/trunk/examples/web/xml/included.xml (original) +++ tomcat/taglibs/standard/trunk/examples/web/xml/included.xml Sat Nov 20 18:34:03 2010 @@ -1,3 +1,3 @@ <a> - <b>YES!</b> + <b>YES!</b> </a> Modified: tomcat/taglibs/standard/trunk/examples/web/xml/includedStylesheet.xsl URL: http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/examples/web/xml/includedStylesheet.xsl?rev=1037291&r1=1037290&r2=1037291&view=diff ============================================================================== --- tomcat/taglibs/standard/trunk/examples/web/xml/includedStylesheet.xsl (original) +++ tomcat/taglibs/standard/trunk/examples/web/xml/includedStylesheet.xsl Sat Nov 20 18:34:03 2010 @@ -1,8 +1,10 @@ - <xsl:stylesheet - xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> +<xsl:stylesheet + xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> - <xsl:template match="text()"> - <h1><xsl:value-of select="."/></h1> - </xsl:template> + <xsl:template match="text()"> + <h1> + <xsl:value-of select="."/> + </h1> + </xsl:template> - </xsl:stylesheet> +</xsl:stylesheet> Modified: tomcat/taglibs/standard/trunk/examples/web/xml/index.html URL: http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/examples/web/xml/index.html?rev=1037291&r1=1037290&r2=1037291&view=diff ============================================================================== --- tomcat/taglibs/standard/trunk/examples/web/xml/index.html (original) +++ tomcat/taglibs/standard/trunk/examples/web/xml/index.html Sat Nov 20 18:34:03 2010 @@ -1,81 +1,99 @@ <html><!-- #BeginTemplate "/Templates/ExamplesTemplate.dwt" --> <head> -<!-- #BeginEditable "doctitle" --> -<title>JSTL: XML Tags Examples</title> -<!-- #EndEditable --> -<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> -<link rel="stylesheet" href="../global.css" type="text/css"> + <!-- #BeginEditable "doctitle" --> + <title>JSTL: XML Tags Examples</title> + <!-- #EndEditable --> + <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> + <link rel="stylesheet" href="../global.css" type="text/css"> </head> <body bgcolor="#FFFFFF" text="#000000"> <table width="100%" border="0" cellpadding="5"> - <tr> - <td height="0"><font color="#000099"><b>standard taglib • implementation - of the JSP Standard Tag Library • </b></font><font color="#003399"><a href="mailto:[email protected]"><b>support</b></a> - <b><a href="mailto:[email protected]">development</a> - <a href="mailto:[email protected]">comments to JSR-52</a></b></font></td> - </tr> - <tr> - <td bgcolor="#CCCCFF"><font size="-1">Examples <a href="../index.html">Introduction</a> - • <a href="../elsupport/index.html">General Purpose</a> - • <a href="../conditionals/index.html">Conditionals</a> - • <a href="../iterators/index.html">Iterators</a> • - <a href="../import/index.jsp">Import</a> • <a href="../format/index.html">I18N - & Formatting</a> • <a href="index.html">XML</a> - • <a href="../sql/index.jsp">SQL</a> • <a href="../functions/index.html">Functions</a> - • <a href="../tlv/index.html">TLV</a> • <a href="../functions/index.html"></a><a href="../misc/index.html">Misc.</a></font></td> - </tr> + <tr> + <td height="0"><font color="#000099"><b>standard taglib • implementation + of the JSP Standard Tag Library • </b></font><font color="#003399"><a + href="mailto:[email protected]"><b>support</b></a> + <b><a href="mailto:[email protected]">development</a> + <a href="mailto:[email protected]">comments to JSR-52</a></b></font></td> + </tr> + <tr> + <td bgcolor="#CCCCFF"><font size="-1">Examples <a href="../index.html">Introduction</a> + • <a href="../elsupport/index.html">General Purpose</a> + • <a href="../conditionals/index.html">Conditionals</a> + • <a href="../iterators/index.html">Iterators</a> • + <a href="../import/index.jsp">Import</a> • <a href="../format/index.html">I18N + & Formatting</a> • <a href="index.html">XML</a> + • <a href="../sql/index.jsp">SQL</a> • <a href="../functions/index.html">Functions</a> + • <a href="../tlv/index.html">TLV</a> • <a href="../functions/index.html"></a><a + href="../misc/index.html">Misc.</a></font></td> + </tr> </table> -<!-- #BeginEditable "body" --> +<!-- #BeginEditable "body" --> <h2>XML Examples</h2> -<h3>Out <a href="../ShowSource.jsp?filename=/xml/Out.jsp"> <img src="../images/code.gif" width="24" height="24" border="0"></a> - <a href="Out.jsp"> <img src="../images/execute.gif" width="24" height="24" border="0"></a></h3> -Retrieving a String from a parsed XML document <br /> -<h3>Filter <a href="../ShowSource.jsp?filename=/xml/Filter.jsp"> - <img src="../images/code.gif" width="24" height="24" border="0"></a> <a href="Filter.jsp"> - <img src="../images/execute.gif" width="24" height="24" border="0"></a> </h3> -Applying a SAX XMLFilter object to a document before parsing <br /> -<h3>ForEach <a href="../ShowSource.jsp?filename=/xml/ForEach.jsp"> - <img src="../images/code.gif" width="24" height="24" border="0"></a> <a href="ForEach.jsp"> - <img src="../images/execute.gif" width="24" height="24" border="0"></a> </h3> -Iterating over XML nodes <br /> -<h3>If <a href="../ShowSource.jsp?filename=/xml/If.jsp"> <img src="../images/code.gif" width="24" height="24" border="0"></a> - <a href="If.jsp"> <img src="../images/execute.gif" width="24" height="24" border="0"></a> + +<h3>Out <a href="../ShowSource.jsp?filename=/xml/Out.jsp"> <img src="../images/code.gif" width="24" + height="24" border="0"></a> + <a href="Out.jsp"> <img src="../images/execute.gif" width="24" height="24" border="0"></a></h3> +Retrieving a String from a parsed XML document <br/> + +<h3>Filter <a href="../ShowSource.jsp?filename=/xml/Filter.jsp"> + <img src="../images/code.gif" width="24" height="24" border="0"></a> <a href="Filter.jsp"> + <img src="../images/execute.gif" width="24" height="24" border="0"></a></h3> +Applying a SAX XMLFilter object to a document before parsing <br/> + +<h3>ForEach <a href="../ShowSource.jsp?filename=/xml/ForEach.jsp"> + <img src="../images/code.gif" width="24" height="24" border="0"></a> <a href="ForEach.jsp"> + <img src="../images/execute.gif" width="24" height="24" border="0"></a></h3> +Iterating over XML nodes <br/> + +<h3>If <a href="../ShowSource.jsp?filename=/xml/If.jsp"> <img src="../images/code.gif" width="24" + height="24" border="0"></a> + <a href="If.jsp"> <img src="../images/execute.gif" width="24" height="24" border="0"></a> </h3> -Basing a decision on the status of an XML document <br /> -<h3>Parse <a href="../ShowSource.jsp?filename=/xml/Parse.jsp"> <img src="../images/code.gif" width="24" height="24" border="0"></a> - <a href="Parse.jsp"> <img src="../images/execute.gif" width="24" height="24" - border="0"></a> </h3> -Parsing XML documents directly from Objects and from URLs. <br /> -<h3>Set <a href="../ShowSource.jsp?filename=/xml/Set.jsp"> <img src="../images/code.gif" width="24" height="24" border="0"></a> - <a href="Set.jsp"> <img src="../images/execute.gif" width="24" height="24" border="0"></a> +Basing a decision on the status of an XML document <br/> + +<h3>Parse <a href="../ShowSource.jsp?filename=/xml/Parse.jsp"> <img src="../images/code.gif" width="24" + height="24" border="0"></a> + <a href="Parse.jsp"> <img src="../images/execute.gif" width="24" height="24" + border="0"></a></h3> +Parsing XML documents directly from Objects and from URLs. <br/> + +<h3>Set <a href="../ShowSource.jsp?filename=/xml/Set.jsp"> <img src="../images/code.gif" width="24" + height="24" border="0"></a> + <a href="Set.jsp"> <img src="../images/execute.gif" width="24" height="24" border="0"></a> </h3> -Storing an object resulting from an XPath expression <br /> -<h3>Transform <a href="../ShowSource.jsp?filename=/xml/Transform.jsp"> - <img src="../images/code.gif" width="24" height="24" border="0"></a> <a href="Transform.jsp"> - <img src="../images/execute.gif" width="24" height="24" border="0"></a> </h3> -Applying XSLT transformations <br /> -<h3>When <a href="../ShowSource.jsp?filename=/xml/When.jsp"> <img src="../images/code.gif" width="24" height="24" border="0"></a> - <a href="When.jsp"> <img src="../images/execute.gif" width="24" height="24" border="0"></a> +Storing an object resulting from an XPath expression <br/> + +<h3>Transform <a href="../ShowSource.jsp?filename=/xml/Transform.jsp"> + <img src="../images/code.gif" width="24" height="24" border="0"></a> <a href="Transform.jsp"> + <img src="../images/execute.gif" width="24" height="24" border="0"></a></h3> +Applying XSLT transformations <br/> + +<h3>When <a href="../ShowSource.jsp?filename=/xml/When.jsp"> <img src="../images/code.gif" width="24" + height="24" border="0"></a> + <a href="When.jsp"> <img src="../images/execute.gif" width="24" height="24" border="0"></a> </h3> -Mutually exclusive conditionals based on the status of an XML document <br /> -<h3>Parse with entities <a href="../ShowSource.jsp?filename=/xml/ParseWithEntities.jsp"> - <img src="../images/code.gif" width="24" height="24" border="0"></a> <a href="ParseWithEntities.jsp"> - <img src="../images/execute.gif" width="24" height="24" border="0"></a></h3> -Parsing a document with relative entity references (using systemId) <br /> -<h3>Transform with inclusion <a href="../ShowSource.jsp?filename=/xml/TransformWithInclusion.jsp"> - <img src="../images/code.gif" width="24" height="24" border="0"></a> <a href="TransformWithInclusion.jsp"> - <img src="../images/execute.gif" width="24" height="24" border="0"></a></h3> -Transformations using XSLT tags like <xsl:include> (with xsltSystemId) <br /> +Mutually exclusive conditionals based on the status of an XML document <br/> + +<h3>Parse with entities <a href="../ShowSource.jsp?filename=/xml/ParseWithEntities.jsp"> + <img src="../images/code.gif" width="24" height="24" border="0"></a> <a href="ParseWithEntities.jsp"> + <img src="../images/execute.gif" width="24" height="24" border="0"></a></h3> +Parsing a document with relative entity references (using systemId) <br/> + +<h3>Transform with inclusion <a href="../ShowSource.jsp?filename=/xml/TransformWithInclusion.jsp"> + <img src="../images/code.gif" width="24" height="24" border="0"></a> <a href="TransformWithInclusion.jsp"> + <img src="../images/execute.gif" width="24" height="24" border="0"></a></h3> +Transformations using XSLT tags like <xsl:include> (with xsltSystemId) <br/> <!-- #EndEditable --> <hr noshade color="#000099"> <table width="100%" border="0" cellpadding="5"> - <tr> - <td height="24"><font color="#000099"><b>standard taglib • implementation - of the JSP Standard Tag Library • </b></font><font color="#003399"><a href="mailto:[email protected]"><b>support</b></a> - <b><a href="mailto:[email protected]">development</a> - <a href="mailto:[email protected]">comments to JSR-52</a></b></font></td> - </tr> + <tr> + <td height="24"><font color="#000099"><b>standard taglib • implementation + of the JSP Standard Tag Library • </b></font><font color="#003399"><a + href="mailto:[email protected]"><b>support</b></a> + <b><a href="mailto:[email protected]">development</a> + <a href="mailto:[email protected]">comments to JSR-52</a></b></font></td> + </tr> </table> </body> <!-- #EndTemplate --></html> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
