vgritsenko 02/04/13 20:58:06
Modified: src/webapp/docs/samples Tag: cocoon_2_0_3_branch
sample-dynamic.xml
src/webapp/docs/samples/xscript Tag: cocoon_2_0_3_branch
simple.xsp soap-getquote1.xsp soap-getquote2.xsp
soap-getquote3.xsp
Log:
xscript samples indent
Revision Changes Path
No revision
No revision
1.7.2.1 +1 -3 xml-cocoon2/src/webapp/docs/samples/sample-dynamic.xml
Index: sample-dynamic.xml
===================================================================
RCS file: /home/cvs/xml-cocoon2/src/webapp/docs/samples/sample-dynamic.xml,v
retrieving revision 1.7
retrieving revision 1.7.2.1
diff -u -r1.7 -r1.7.2.1
--- sample-dynamic.xml 9 Feb 2002 06:21:57 -0000 1.7
+++ sample-dynamic.xml 14 Apr 2002 03:58:06 -0000 1.7.2.1
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- CVS: $Id: sample-dynamic.xml,v 1.7 2002/02/09 06:21:57 vgritsenko Exp $ -->
+<!-- CVS: $Id: sample-dynamic.xml,v 1.7.2.1 2002/04/14 03:58:06 vgritsenko Exp $ -->
<samples xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -57,7 +57,6 @@
Cocoon. It accesses a SOAP service that provides stock quotes
and displays the result.
</sample>
-<!-- FIX ME
<sample name="SOAP Sample 2" href="xscript/soap-getquote2">
This example uses an inline XSLT stylesheet and an
XScript transform instruction to extract the stock
@@ -68,7 +67,6 @@
logicsheets. This sample is very similar with
SOAP Sample 2, except that the stylesheet is defined in an external file.
</sample>
--->
</group>
<group name="Database Access">
No revision
No revision
1.1.2.1 +9 -13 xml-cocoon2/src/webapp/docs/samples/xscript/simple.xsp
Index: simple.xsp
===================================================================
RCS file: /home/cvs/xml-cocoon2/src/webapp/docs/samples/xscript/simple.xsp,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -u -r1.1 -r1.1.2.1
--- simple.xsp 3 Jan 2002 12:31:42 -0000 1.1
+++ simple.xsp 14 Apr 2002 03:58:06 -0000 1.1.2.1
@@ -1,23 +1,20 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
+<!-- CVS: $Id: simple.xsp,v 1.1.2.1 2002/04/14 03:58:06 vgritsenko Exp $ -->
+
<!--
Author: Ovidiu Predescu "[EMAIL PROTECTED]"
Date: September 18, 2001
-->
-
<xsp:page language="java"
- xmlns:xsp="http://apache.org/xsp"
- xmlns:xsp-request="http://apache.org/xsp/request/2.0"
- xmlns:xscript="http://apache.org/xsp/xscript/1.0"
->
-
+ xmlns:xsp="http://apache.org/xsp"
+ xmlns:xsp-request="http://apache.org/xsp/request/2.0"
+ xmlns:xscript="http://apache.org/xsp/xscript/1.0">
<page>
-
<title>Inline XScript variable</title>
<content>
-
<para>
This is a simple XSP page demonstrating how to work with
inline XScript variables. This example show how one can create
@@ -38,11 +35,10 @@
longer available.
</para>
- <xscript:remove name="my-var"/>
-
- <xscript:get name="my-var"/>
-
+ <para>
+ <xscript:remove name="my-var"/>
+ <xscript:get name="my-var"/>
+ </para>
</content>
-
</page>
</xsp:page>
1.1.2.1 +45 -54 xml-cocoon2/src/webapp/docs/samples/xscript/soap-getquote1.xsp
Index: soap-getquote1.xsp
===================================================================
RCS file: /home/cvs/xml-cocoon2/src/webapp/docs/samples/xscript/soap-getquote1.xsp,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -u -r1.1 -r1.1.2.1
--- soap-getquote1.xsp 3 Jan 2002 12:31:42 -0000 1.1
+++ soap-getquote1.xsp 14 Apr 2002 03:58:06 -0000 1.1.2.1
@@ -1,65 +1,56 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
+<!-- CVS: $Id: soap-getquote1.xsp,v 1.1.2.1 2002/04/14 03:58:06 vgritsenko Exp $ -->
+
<!--
Author: Ovidiu Predescu "[EMAIL PROTECTED]"
Date: October 9, 2001
-->
-
-<xsp:page
- language="java"
- xmlns:xsp="http://apache.org/xsp"
- xmlns:xsp-request="http://apache.org/xsp/request/2.0"
- xmlns:xscript="http://apache.org/xsp/xscript/1.0"
- xmlns:soap="http://apache.org/xsp/soap/3.0"
- >
-
+<xsp:page language="java"
+ xmlns:xsp="http://apache.org/xsp"
+ xmlns:xsp-request="http://apache.org/xsp/request/2.0"
+ xmlns:xscript="http://apache.org/xsp/xscript/1.0"
+ xmlns:soap="http://apache.org/xsp/soap/3.0">
<page>
+ <title>SOAP Stock Quote Example 1</title>
- <title>SOAP Stock Quote Example 1</title>
-
- <content>
-
- <xsp:logic>
- String symbol = request.getParameter("symbol");
-
- if (symbol == null || symbol.equals("")) {
-
- <para>This page demonstrates the SOAP logicsheet for
- Cocoon2. It accesses a SOAP service that provides stock quotes
- and displays the result.</para>
-
- <para>The SOAP result is placed in the generated page, and the
- stock price is extracted from it using an external XSLT
- stylesheet. Compare this approach with the one used in
- <code>soap-getquote2.xsp</code>, which uses an internal XScript
- stylesheet to extract the stock price.</para>
-
- <para>Please enter the stock ticker: </para>
- <form href="soap-getquote">
- <input name="symbol" type="text" value="HWP"/>
- <input value="Do it!" type="submit"/>
- </form>
- }
- else {
- <para>The stock price for <xsp:expr>symbol</xsp:expr> is
-
- <soap:call url="http://services.xmethods.net:80/soap">
- <ns1:getQuote xmlns:ns1="urn:xmethods-delayed-quotes">
- <soap:enc/>
- <symbol xsi:type="xsd:string"
xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/1999/XMLSchema"><xsp-request:get-parameter
name="symbol"/></symbol>
- </ns1:getQuote>
- </soap:call>
-
- </para>
-
- <form href="soap-getquote">
- <input value="Back" type="submit"/>
- </form>
- }
- </xsp:logic>
-
- </content>
-
+ <content>
+ <xsp:logic>
+ String symbol = request.getParameter("symbol");
+
+ if (symbol == null || symbol.equals("")) {
+ <para>This page demonstrates the SOAP logicsheet for
+ Cocoon2. It accesses a SOAP service that provides stock quotes
+ and displays the result.</para>
+
+ <para>The SOAP result is placed in the generated page, and the
+ stock price is extracted from it using an external XSLT
+ stylesheet. Compare this approach with the one used in
+ <code>soap-getquote2.xsp</code>, which uses an internal XScript
+ stylesheet to extract the stock price.</para>
+
+ <para>Please enter the stock ticker: </para>
+ <form href="soap-getquote">
+ <input name="symbol" type="text" value="HWP"/>
+ <input value="Do it!" type="submit"/>
+ </form>
+ } else {
+ <para>The stock price for <xsp:expr>symbol</xsp:expr> is
+
+ <soap:call url="http://services.xmethods.net:80/soap">
+ <ns1:getQuote xmlns:ns1="urn:xmethods-delayed-quotes">
+ <soap:enc/>
+ <symbol xsi:type="xsd:string"
xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/1999/XMLSchema"><xsp-request:get-parameter
name="symbol"/></symbol>
+ </ns1:getQuote>
+ </soap:call>
+ </para>
+
+ <form href="soap-getquote">
+ <input value="Back" type="submit"/>
+ </form>
+ }
+ </xsp:logic>
+ </content>
</page>
</xsp:page>
1.1.2.1 +61 -72 xml-cocoon2/src/webapp/docs/samples/xscript/soap-getquote2.xsp
Index: soap-getquote2.xsp
===================================================================
RCS file: /home/cvs/xml-cocoon2/src/webapp/docs/samples/xscript/soap-getquote2.xsp,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -u -r1.1 -r1.1.2.1
--- soap-getquote2.xsp 3 Jan 2002 12:31:42 -0000 1.1
+++ soap-getquote2.xsp 14 Apr 2002 03:58:06 -0000 1.1.2.1
@@ -1,84 +1,73 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
+<!-- CVS: $Id: soap-getquote2.xsp,v 1.1.2.1 2002/04/14 03:58:06 vgritsenko Exp $ -->
+
<!--
Author: Ovidiu Predescu "[EMAIL PROTECTED]"
Date: October 9, 2001
-->
+<xsp:page language="java"
+ xmlns:xsp="http://apache.org/xsp"
+ xmlns:xsp-request="http://apache.org/xsp/request/2.0"
+ xmlns:xscript="http://apache.org/xsp/xscript/1.0"
+ xmlns:soap="http://apache.org/xsp/soap/3.0">
-<xsp:page
- language="java"
- xmlns:xsp="http://apache.org/xsp"
- xmlns:xsp-request="http://apache.org/xsp/request/2.0"
- xmlns:xscript="http://apache.org/xsp/xscript/1.0"
- xmlns:soap="http://apache.org/xsp/soap/3.0"
- >
-
<page>
+ <title>SOAP Stock Quote Example 2</title>
- <title>SOAP Stock Quote Example 2</title>
-
- <content>
-
- <xsp:logic>
- String symbol = request.getParameter("symbol");
-
- if (symbol == null || symbol.equals("")) {
-
- <para>This page demonstrates the SOAP logicsheet for
- Cocoon2. It accesses a SOAP service that provides stock quotes
- and displays the result.</para>
-
- <para>This example uses an inline XSLT stylesheet and an
- XScript <code>transform</code> instruction to extract the stock
- price. Compare this with the approach used in
- <code>soap-getquote1.xsp</code>, which uses a sitemap XSLT
- transformer to achieve the same thing.</para>
-
- <para>Please enter the stock ticker: </para>
- <form href="soap-getquote">
- <input name="symbol" type="text" value="HWP"/>
- <input value="Do it!" type="submit"/>
- </form>
- }
- else {
- <para>The stock price for <xsp:expr>symbol</xsp:expr> is
-
- <xscript:variable name="soap-result">
- <soap:call url="http://services.xmethods.net:80/soap">
- <ns1:getQuote xmlns:ns1="urn:xmethods-delayed-quotes">
- <soap:enc/>
- <symbol xsi:type="xsd:string"
xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/1999/XMLSchema"><xsp-request:get-parameter
name="symbol"/></symbol>
- </ns1:getQuote>
- </soap:call>
- </xscript:variable>
-
- <xscript:variable name="stylesheet">
- <xsl:stylesheet
- version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
- xmlns:n="urn:xmethods-delayed-quotes"
- exclude-result-prefixes="soap n"
- >
-
- <xsl:template match="/">
- <b><xsl:value-of
select="/soap:Envelope/soap:Body/n:getQuoteResponse/Result"/></b>
- </xsl:template>
- </xsl:stylesheet>
- </xscript:variable>
-
- <xscript:transform name="soap-result" stylesheet="stylesheet"/>
-
- </para>
-
- <form href="soap-getquote">
- <input value="Back" type="submit"/>
- </form>
- }
- </xsp:logic>
-
- </content>
-
+ <content>
+ <xsp:logic>
+ String symbol = request.getParameter("symbol");
+ if (symbol == null || symbol.equals("")) {
+ <para>This page demonstrates the SOAP logicsheet for
+ Cocoon2. It accesses a SOAP service that provides stock quotes
+ and displays the result.</para>
+
+ <para>This example uses an inline XSLT stylesheet and an
+ XScript <code>transform</code> instruction to extract the stock
+ price. Compare this with the approach used in
+ <code>soap-getquote1.xsp</code>, which uses a sitemap XSLT
+ transformer to achieve the same thing.</para>
+
+ <para>Please enter the stock ticker: </para>
+ <form href="soap-getquote">
+ <input name="symbol" type="text" value="HWP"/>
+ <input value="Do it!" type="submit"/>
+ </form>
+ } else {
+ <para>The stock price for <xsp:expr>symbol</xsp:expr> is
+ <xscript:variable name="soap-result">
+ <soap:call url="http://services.xmethods.net:80/soap">
+ <ns1:getQuote xmlns:ns1="urn:xmethods-delayed-quotes">
+ <soap:enc/>
+ <symbol xsi:type="xsd:string"
xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/1999/XMLSchema"><xsp-request:get-parameter
name="symbol"/></symbol>
+ </ns1:getQuote>
+ </soap:call>
+ </xscript:variable>
+
+ <xscript:variable name="stylesheet">
+ <xsl:stylesheet version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
+ xmlns:n="urn:xmethods-delayed-quotes"
+ exclude-result-prefixes="soap n">
+ <xsl:template match="/">
+ <b>
+ <xsl:value-of
select="/soap:Envelope/soap:Body/n:getQuoteResponse/Result"/>
+ </b>
+ </xsl:template>
+ </xsl:stylesheet>
+ </xscript:variable>
+
+ <xscript:transform name="soap-result" stylesheet="stylesheet"/>
+ </para>
+
+ <form href="soap-getquote">
+ <input value="Back" type="submit"/>
+ </form>
+ }
+ </xsp:logic>
+ </content>
</page>
</xsp:page>
1.1.2.1 +52 -60 xml-cocoon2/src/webapp/docs/samples/xscript/soap-getquote3.xsp
Index: soap-getquote3.xsp
===================================================================
RCS file: /home/cvs/xml-cocoon2/src/webapp/docs/samples/xscript/soap-getquote3.xsp,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -u -r1.1 -r1.1.2.1
--- soap-getquote3.xsp 3 Jan 2002 12:31:42 -0000 1.1
+++ soap-getquote3.xsp 14 Apr 2002 03:58:06 -0000 1.1.2.1
@@ -1,72 +1,64 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
+<!-- CVS: $Id: soap-getquote3.xsp,v 1.1.2.1 2002/04/14 03:58:06 vgritsenko Exp $ -->
+
<!--
Author: Ovidiu Predescu "[EMAIL PROTECTED]"
Date: October 9, 2001
-->
-
-<xsp:page
- language="java"
- xmlns:xsp="http://apache.org/xsp"
- xmlns:xsp-request="http://apache.org/xsp/request/2.0"
- xmlns:xscript="http://apache.org/xsp/xscript/1.0"
- xmlns:soap="http://apache.org/xsp/soap/3.0"
- >
-
+<xsp:page language="java"
+ xmlns:xsp="http://apache.org/xsp"
+ xmlns:xsp-request="http://apache.org/xsp/request/2.0"
+ xmlns:xscript="http://apache.org/xsp/xscript/1.0"
+ xmlns:soap="http://apache.org/xsp/soap/3.0">
<page>
+ <title>SOAP Stock Quote Example 3</title>
- <title>SOAP Stock Quote Example 3</title>
-
- <content>
-
- <xsp:logic>
- String symbol = request.getParameter("symbol");
-
- if (symbol == null || symbol.equals("")) {
-
- <para>This page demonstrates the SOAP logicsheet for
- Cocoon2. It accesses a SOAP service that provides stock quotes
- and displays the result.</para>
-
- <para>This is yet another example of the XScript and SOAP
- logicsheets. This sample is very similar with
- <code>soap-getquote2.xsp</code>, except that the stylesheet is
- defined in an external file.
- </para>
-
- <para>Please enter the stock ticker: </para>
- <form href="soap-getquote">
- <input name="symbol" type="text" value="HWP"/>
- <input value="Do it!" type="submit"/>
- </form>
- }
- else {
- <para>The stock price for <xsp:expr>symbol</xsp:expr> is
-
- <xscript:variable name="soap-result">
- <soap:call url="http://services.xmethods.net:80/soap">
- <ns1:getQuote xmlns:ns1="urn:xmethods-delayed-quotes">
- <soap:enc/>
- <symbol xsi:type="xsd:string"
xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/1999/XMLSchema"><xsp-request:get-parameter
name="symbol"/></symbol>
- </ns1:getQuote>
- </soap:call>
- </xscript:variable>
-
- <xscript:variable name="stylesheet"
- href="docs/samples/xscript/soap-getquote3.xsl"/>
-
- <xscript:transform name="soap-result" stylesheet="stylesheet"/>
-
- </para>
-
- <form href="soap-getquote">
- <input value="Back" type="submit"/>
- </form>
- }
- </xsp:logic>
-
- </content>
+ <content>
+ <xsp:logic>
+ String symbol = request.getParameter("symbol");
+ if (symbol == null || symbol.equals("")) {
+ <para>This page demonstrates the SOAP logicsheet for
+ Cocoon2. It accesses a SOAP service that provides stock quotes
+ and displays the result.</para>
+
+ <para>This is yet another example of the XScript and SOAP
+ logicsheets. This sample is very similar with
+ <code>soap-getquote2.xsp</code>, except that the stylesheet is
+ defined in an external file.
+ </para>
+
+ <para>Please enter the stock ticker: </para>
+ <form href="soap-getquote">
+ <input name="symbol" type="text" value="HWP"/>
+ <input value="Do it!" type="submit"/>
+ </form>
+ } else {
+ <para>
+ The stock price for <xsp:expr>symbol</xsp:expr> is
+
+ <xscript:variable name="soap-result">
+ <soap:call url="http://services.xmethods.net:80/soap">
+ <ns1:getQuote xmlns:ns1="urn:xmethods-delayed-quotes">
+ <soap:enc/>
+ <symbol xsi:type="xsd:string"
xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/1999/XMLSchema"><xsp-request:get-parameter
name="symbol"/></symbol>
+ </ns1:getQuote>
+ </soap:call>
+ </xscript:variable>
+
+ <xscript:variable name="stylesheet"
+ href="docs/samples/xscript/soap-getquote3.xsl"/>
+
+ <xscript:transform name="soap-result" stylesheet="stylesheet"/>
+ </para>
+
+ <form href="soap-getquote">
+ <input value="Back" type="submit"/>
+ </form>
+ }
+ </xsp:logic>
+ </content>
</page>
</xsp:page>
----------------------------------------------------------------------
In case of troubles, e-mail: [EMAIL PROTECTED]
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]