You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by co...@apache.org on 2003/05/03 22:36:14 UTC

cvs commit: cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath Cart.xml Category.xml Checkout.xml ConfirmOrder.xml IncludeBottom.xml IncludeMyList.xml IncludeQuickHeader.xml IncludeTop.xml Item.xml NewAccountForm.xml NewOrderForm.xml Product.xml SearchProducts.xml ShippingForm.xml SignonForm.xml ViewOrder.xml index.xml

coliver     2003/05/03 13:36:14

  Modified:    src/scratchpad/src/org/apache/cocoon/generation
                        JXFormsGenerator.java JXTemplateGenerator.java
                        TraxGenerator.java
               src/scratchpad/webapp/samples/jxforms/stylesheets
                        jxforms-default.xsl jxforms2html.xsl
                        wizard2html.xsl
               src/scratchpad/webapp/samples/jxforms/view confirm.xml
                        deployment.xml system.xml userIdentity.xml
               src/scratchpad/webapp/samples/petstore/stylesheets
                        form2html.xsl site2html.xsl
               src/scratchpad/webapp/samples/petstore/view/jexl Cart.xml
                        Category.xml Checkout.xml ConfirmOrder.xml
                        IncludeBottom.xml IncludeMyList.xml
                        IncludeQuickHeader.xml IncludeTop.xml Item.xml
                        NewAccountForm.xml NewOrderForm.xml Product.xml
                        SearchProducts.xml ShippingForm.xml SignonForm.xml
                        ViewOrder.xml index.xml
               src/scratchpad/webapp/samples/petstore/view/jxforms
                        EditAccountInformation.xml
                        EditProfileInformation.xml EditUserInformation.xml
               src/scratchpad/webapp/samples/petstore/view/jxpath Cart.xml
                        Category.xml Checkout.xml ConfirmOrder.xml
                        IncludeBottom.xml IncludeMyList.xml
                        IncludeQuickHeader.xml IncludeTop.xml Item.xml
                        NewAccountForm.xml NewOrderForm.xml Product.xml
                        SearchProducts.xml ShippingForm.xml SignonForm.xml
                        ViewOrder.xml index.xml
  Log:
  Modified namespace uri's to conform to Cocoon conventions
  
  Revision  Changes    Path
  1.10      +17 -13    cocoon-2.1/src/scratchpad/src/org/apache/cocoon/generation/JXFormsGenerator.java
  
  Index: JXFormsGenerator.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/src/org/apache/cocoon/generation/JXFormsGenerator.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- JXFormsGenerator.java	1 May 2003 09:35:42 -0000	1.9
  +++ JXFormsGenerator.java	3 May 2003 20:36:12 -0000	1.10
  @@ -119,7 +119,7 @@
           };
   
       final static String NS = 
  -        "http://cocoon.apache.org/jxforms/2002/cr";
  +        "http://apache.org/cocoon/jxforms/1.0";
   
       // Non XForms elements
       final static String FORM = "form";
  @@ -205,7 +205,7 @@
               if (absolute) {
                   ctx = root;
               }
  -            Pointer ptr = jxpath.getPointer(ctx, "???");
  +            Pointer ptr = jxpath.getPointer(ctx, string);
               if (ptr == null) {
                   return null;
               }
  @@ -972,7 +972,7 @@
                                            localName, raw, attrs, expr);
                       newEvent = startItemSet;
                   } else if (isReadonlyInputControl(localName)) {
  -                    String refStr = attrs.getValue("ref");
  +                    String refStr = attrs.getValue(REF);
                       XPathExpr ref = 
                           compileExpr(refStr, locator);
                       StartReadonlyInputControl startInputControl = 
  @@ -982,7 +982,7 @@
                                                                          namespaceURI, localName, raw, attrs));
                       newEvent = startInputControl;
                   } else if (isInputControl(localName)) {
  -                    String refStr = attrs.getValue("ref");
  +                    String refStr = attrs.getValue(REF);
                       if (refStr == null) {
                           throw new SAXParseException("\""+localName + "\" requires a \"ref\" attribute", locator, null);
                       }
  @@ -1387,11 +1387,15 @@
                       }
                       JXPathContext localJXPathContext = 
                           jxpathContextFactory.newContext(null, value);
  -                    String path = "";
  -                    if (contextPath != null) {
  -                        path = contextPath + "/.";
  -                    } 
  -                    path += startElement.attributes.getValue(REF);
  +                    String path = contextPath;
  +                    if (ref.string != null) {
  +                        if (path != null) {
  +                            path += "/.";
  +                        } else {
  +                            path = "";
  +                        }
  +                        path += ref.string;
  +                    }
                       execute(consumer,
                               form,
                               currentView,
  @@ -1437,9 +1441,9 @@
                       JXPathContext localJXPathContext = 
                           jxpathContextFactory.newContext(null, value);
                       AttributesImpl attrs = new AttributesImpl();
  -                    attrs.addAttribute(null, "ref", "ref", "CDATA",
  +                    attrs.addAttribute(null, REF, REF, "CDATA",
                                          ptr.asPath());
  -                    consumer.startElement(NS, "item", "item",
  +                    consumer.startElement(NS, ITEM, ITEM,
                                             attrs);
                       String path = "";
                       if (contextPath != null) {
  @@ -1449,12 +1453,12 @@
                       execute(consumer,
                               form,
                               currentView,
  -                            ptr.asPath(),
  +                            path,
                               rootContext,
                               localJXPathContext,
                               startItemSet.next,
                               startItemSet.endItemSet);
  -                    consumer.endElement(NS, "item", "item");
  +                    consumer.endElement(NS, ITEM, ITEM);
                   }
                   ev = startItemSet.endItemSet.next;
                   continue;
  
  
  
  1.4       +1 -1      cocoon-2.1/src/scratchpad/src/org/apache/cocoon/generation/JXTemplateGenerator.java
  
  Index: JXTemplateGenerator.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/src/org/apache/cocoon/generation/JXTemplateGenerator.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- JXTemplateGenerator.java	30 Apr 2003 05:14:03 -0000	1.3
  +++ JXTemplateGenerator.java	3 May 2003 20:36:12 -0000	1.4
  @@ -663,7 +663,7 @@
   
   
       final static String NS = 
  -        "http://cocoon.apache.org/templates/jx/1.0";
  +        "http://apache.org/cocoon/templates/jx/1.0";
   
       final static String TEMPLATE = "template";
       final static String FOR_EACH = "forEach";
  
  
  
  1.3       +1 -1      cocoon-2.1/src/scratchpad/src/org/apache/cocoon/generation/TraxGenerator.java
  
  Index: TraxGenerator.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/src/org/apache/cocoon/generation/TraxGenerator.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- TraxGenerator.java	1 May 2003 22:52:39 -0000	1.2
  +++ TraxGenerator.java	3 May 2003 20:36:12 -0000	1.3
  @@ -82,7 +82,7 @@
   import java.lang.reflect.Method;
   
   /**
  - * <p>XSLT Generator: works by taking java bean as an input "document"</p>
  + * <p>XSLT Generator: works by taking a Java Bean as an input "document"</p>
    */
   
   public class TraxGenerator extends TraxTransformer implements Generator {
  
  
  
  1.2       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/jxforms/stylesheets/jxforms-default.xsl
  
  Index: jxforms-default.xsl
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/jxforms/stylesheets/jxforms-default.xsl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- jxforms-default.xsl	27 Apr 2003 01:57:05 -0000	1.1
  +++ jxforms-default.xsl	3 May 2003 20:36:12 -0000	1.2
  @@ -10,7 +10,7 @@
   
   -->
   <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  -  xmlns:xf="http://cocoon.apache.org/jxforms/2002/cr"
  +  xmlns:xf="http://apache.org/cocoon/jxforms/1.0"
   	exclude-result-prefixes="xalan" >
   
           <xsl:template match="/">
  
  
  
  1.2       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/jxforms/stylesheets/jxforms2html.xsl
  
  Index: jxforms2html.xsl
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/jxforms/stylesheets/jxforms2html.xsl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- jxforms2html.xsl	27 Apr 2003 01:57:05 -0000	1.1
  +++ jxforms2html.xsl	3 May 2003 20:36:12 -0000	1.2
  @@ -28,7 +28,7 @@
   
   <xsl:stylesheet version="1.0" 
       xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
  -    xmlns:xf="http://cocoon.apache.org/jxforms/2002/cr">
  +  xmlns:xf="http://apache.org/cocoon/jxforms/1.0">
   
      <xsl:output method = "xml" omit-xml-declaration = "no"  /> 
     
  
  
  
  1.2       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/jxforms/stylesheets/wizard2html.xsl
  
  Index: wizard2html.xsl
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/jxforms/stylesheets/wizard2html.xsl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- wizard2html.xsl	27 Apr 2003 01:57:05 -0000	1.1
  +++ wizard2html.xsl	3 May 2003 20:36:12 -0000	1.2
  @@ -12,7 +12,7 @@
   
   -->
   <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  -  xmlns:xf="http://cocoon.apache.org/jxforms/2002/cr"
  +  xmlns:xf="http://apache.org/cocoon/jxforms/1.0"
   	exclude-result-prefixes="xalan" >
   	<xsl:template match="document">
   		<html>
  
  
  
  1.3       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/jxforms/view/confirm.xml
  
  Index: confirm.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/jxforms/view/confirm.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- confirm.xml	28 Apr 2003 05:37:05 -0000	1.2
  +++ confirm.xml	3 May 2003 20:36:12 -0000	1.3
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document xmlns:xf="http://cocoon.apache.org/jxforms/2002/cr">
  +<document xmlns:xf="http://apache.org/cocoon/jxforms/1.0">
     <xf:form id="form-feedback" view="confirm" action="" method="GET">
       <xf:label>Confirm Input</xf:label>
       <!-- from page1 -->
  
  
  
  1.2       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/jxforms/view/deployment.xml
  
  Index: deployment.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/jxforms/view/deployment.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- deployment.xml	27 Apr 2003 01:57:05 -0000	1.1
  +++ deployment.xml	3 May 2003 20:36:12 -0000	1.2
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document xmlns:xf="http://cocoon.apache.org/jxforms/2002/cr">
  +<document xmlns:xf="http://apache.org/cocoon/jxforms/1.0">
   	<xf:form id="form-feedback" view="deployment" action="" method="GET">
   		<xf:label>Cocoon Deployment Information</xf:label>
   		<error>
  
  
  
  1.2       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/jxforms/view/system.xml
  
  Index: system.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/jxforms/view/system.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- system.xml	27 Apr 2003 01:57:05 -0000	1.1
  +++ system.xml	3 May 2003 20:36:12 -0000	1.2
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document xmlns:xf="http://cocoon.apache.org/jxforms/2002/cr">
  +<document xmlns:xf="http://apache.org/cocoon/jxforms/1.0">
     <xf:form id="form-feedback" view="system" action="" method="GET">
       <xf:label>System Information</xf:label>
       <error>
  
  
  
  1.3       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/jxforms/view/userIdentity.xml
  
  Index: userIdentity.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/jxforms/view/userIdentity.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- userIdentity.xml	27 Apr 2003 22:13:36 -0000	1.2
  +++ userIdentity.xml	3 May 2003 20:36:12 -0000	1.3
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<document xmlns:xf="http://cocoon.apache.org/jxforms/2002/cr">
  +<document xmlns:xf="http://apache.org/cocoon/jxforms/1.0">
     <xf:form id="form-feedback" view="userIdentity" action="" method="GET">
       <xf:label>Personal Information</xf:label>
       <error>
  
  
  
  1.4       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/stylesheets/form2html.xsl
  
  Index: form2html.xsl
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/stylesheets/form2html.xsl,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- form2html.xsl	30 Apr 2003 09:39:02 -0000	1.3
  +++ form2html.xsl	3 May 2003 20:36:12 -0000	1.4
  @@ -1,5 +1,5 @@
   <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  -  xmlns:xf="http://cocoon.apache.org/jxforms/2002/cr"
  +  xmlns:xf="http://apache.org/cocoon/jxforms/1.0"
   	exclude-result-prefixes="xalan" >
   
           <xsl:template match="/">
  
  
  
  1.9       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/stylesheets/site2html.xsl
  
  Index: site2html.xsl
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/stylesheets/site2html.xsl,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- site2html.xsl	30 Apr 2003 09:39:02 -0000	1.8
  +++ site2html.xsl	3 May 2003 20:36:12 -0000	1.9
  @@ -1,7 +1,7 @@
   <?xml version="1.0" encoding="utf-8"?>
   
   
  -<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xf="http://cocoon.apache.org/jxforms/2002/cr"
  +<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
   	exclude-result-prefixes="xalan" >
   
   	<xsl:template match="site">
  
  
  
  1.7       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/Cart.xml
  
  Index: Cart.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/Cart.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- Cart.xml	23 Apr 2003 20:44:58 -0000	1.6
  +++ Cart.xml	3 May 2003 20:36:12 -0000	1.7
  @@ -1,4 +1,4 @@
  -<html xmlns:t="http://cocoon.apache.org/templates/jx/1.0">
  +<html xmlns:t="http://apache.org/cocoon/templates/jx/1.0">
   <body>
   <t:import uri="view/jexl/IncludeTop.xml"/>
   <table border="0" width="100%" cellspacing="0" cellpadding="0">
  
  
  
  1.6       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/Category.xml
  
  Index: Category.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/Category.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- Category.xml	30 Apr 2003 09:52:55 -0000	1.5
  +++ Category.xml	3 May 2003 20:36:12 -0000	1.6
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="${accountForm.signOn}" view="jexl">
           <backpointer name="Main Menu" do="index.do" />
           <category name="${category.name}">
  
  
  
  1.5       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/Checkout.xml
  
  Index: Checkout.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/Checkout.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Checkout.xml	23 Apr 2003 20:44:58 -0000	1.4
  +++ Checkout.xml	3 May 2003 20:36:12 -0000	1.5
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="${accountForm.signOn}" view="c">
           <cart name="Checkout Summary">
               <backpointer name="Shopping Cart" do="viewCart.do" />
  
  
  
  1.4       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/ConfirmOrder.xml
  
  Index: ConfirmOrder.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/ConfirmOrder.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ConfirmOrder.xml	23 Apr 2003 20:44:58 -0000	1.3
  +++ ConfirmOrder.xml	3 May 2003 20:36:12 -0000	1.4
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="${accountForm.signOn}" view="jexl">
           <backpointer name="Main Menu" do="index.do" />
           <message>Please confirm the information below and then press continue...</message>
  
  
  
  1.4       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/IncludeBottom.xml
  
  Index: IncludeBottom.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/IncludeBottom.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- IncludeBottom.xml	23 Apr 2003 20:44:58 -0000	1.3
  +++ IncludeBottom.xml	3 May 2003 20:36:12 -0000	1.4
  @@ -1,4 +1,4 @@
  -<c:template xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<c:template xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
   <br />
   <c:if test="${accountForm.account != null}">
     <c:if test="${accountForm.account.username != null}">
  
  
  
  1.4       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/IncludeMyList.xml
  
  Index: IncludeMyList.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/IncludeMyList.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- IncludeMyList.xml	23 Apr 2003 20:44:58 -0000	1.3
  +++ IncludeMyList.xml	3 May 2003 20:36:12 -0000	1.4
  @@ -1,4 +1,4 @@
  -<t:template xmlns:t="http://cocoon.apache.org/templates/jx/1.0">
  +<t:template xmlns:t="http://apache.org/cocoon/templates/jx/1.0">
   <t:if test="${myList != null}">
   <p> </p>
   <table align="right" bgcolor="#008800" border="0" cellspacing="2" cellpadding="3">
  
  
  
  1.4       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/IncludeQuickHeader.xml
  
  Index: IncludeQuickHeader.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/IncludeQuickHeader.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- IncludeQuickHeader.xml	23 Apr 2003 20:44:58 -0000	1.3
  +++ IncludeQuickHeader.xml	3 May 2003 20:36:12 -0000	1.4
  @@ -1,4 +1,4 @@
  -<t:template xmlns:t="http://cocoon.apache.org/templates/jx/1.0">
  +<t:template xmlns:t="http://apache.org/cocoon/templates/jx/1.0">
   
   <center>
   <a href="viewCategory.do?categoryId=FISH">
  
  
  
  1.4       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/IncludeTop.xml
  
  Index: IncludeTop.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/IncludeTop.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- IncludeTop.xml	23 Apr 2003 20:44:58 -0000	1.3
  +++ IncludeTop.xml	3 May 2003 20:36:12 -0000	1.4
  @@ -1,4 +1,4 @@
  -<t:template xmlns:t="http://cocoon.apache.org/templates/jx/1.0">
  +<t:template xmlns:t="http://apache.org/cocoon/templates/jx/1.0">
   
   <table background="images/bkg-topbar.gif" border="0" cellspacing="0" cellpadding="5" width="100%">
     <tbody>
  
  
  
  1.4       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/Item.xml
  
  Index: Item.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/Item.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Item.xml	23 Apr 2003 20:44:58 -0000	1.3
  +++ Item.xml	3 May 2003 20:36:12 -0000	1.4
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="${accountForm.signOn}" view="jexl">
           <backpointer name="${product.name}" do="viewProduct.do?productId=${product.productId}"/>
           <item id="${item.itemId}">
  
  
  
  1.4       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/NewAccountForm.xml
  
  Index: NewAccountForm.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/NewAccountForm.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- NewAccountForm.xml	23 Apr 2003 20:44:58 -0000	1.3
  +++ NewAccountForm.xml	3 May 2003 20:36:12 -0000	1.4
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="${accountForm.signOn}" view="jexl">
           <form method="POST" styleId="workingAccountForm" action="${continuation.id}.kont">
   <!--
  
  
  
  1.4       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/NewOrderForm.xml
  
  Index: NewOrderForm.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/NewOrderForm.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- NewOrderForm.xml	23 Apr 2003 20:44:58 -0000	1.3
  +++ NewOrderForm.xml	3 May 2003 20:36:12 -0000	1.4
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="${accountForm.signOn}" view="jexl">
           <form method="POST" styleId="workingOrderForm" action="${continuation.id}.kont">
           <panel>
  
  
  
  1.4       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/Product.xml
  
  Index: Product.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/Product.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Product.xml	23 Apr 2003 20:44:58 -0000	1.3
  +++ Product.xml	3 May 2003 20:36:12 -0000	1.4
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="${accountForm.signOn}" view="jexl">
           <backpointer name="${product.category}" do="viewCategory.do?categoryId=${product.category}"/>
           <product name="${product.name}">
  
  
  
  1.6       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/SearchProducts.xml
  
  Index: SearchProducts.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/SearchProducts.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- SearchProducts.xml	23 Apr 2003 20:44:58 -0000	1.5
  +++ SearchProducts.xml	3 May 2003 20:36:12 -0000	1.6
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="${accountForm.signOn}" view="jexl">
           <backpointer name="Main Menu" do="index.do" />
           <search>
  
  
  
  1.5       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/ShippingForm.xml
  
  Index: ShippingForm.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/ShippingForm.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ShippingForm.xml	23 Apr 2003 20:44:58 -0000	1.4
  +++ ShippingForm.xml	3 May 2003 20:36:12 -0000	1.5
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="${accountForm.signOn}" view="jexl">
           <backpointer name="Main Menu" do="index.do" />
           <form method="POST" styleId="workingOrderForm" action="${continuation.id}.kont">
  
  
  
  1.5       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/SignonForm.xml
  
  Index: SignonForm.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/SignonForm.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- SignonForm.xml	23 Apr 2003 20:44:58 -0000	1.4
  +++ SignonForm.xml	3 May 2003 20:36:12 -0000	1.5
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="${accountForm.signOn}" view="jexl">
           <form method="POST" label="signon" action="${continuation.id}.kont">
               <message type="warning">${message}</message>
  
  
  
  1.5       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/ViewOrder.xml
  
  Index: ViewOrder.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/ViewOrder.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ViewOrder.xml	23 Apr 2003 20:44:58 -0000	1.4
  +++ ViewOrder.xml	3 May 2003 20:36:12 -0000	1.5
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="${accountForm.signOn}" view="jexl">
           <backpointer name="Main Menu" do="index.do" />
           <message></message>
  
  
  
  1.4       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jexl/index.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- index.xml	23 Apr 2003 20:44:58 -0000	1.3
  +++ index.xml	3 May 2003 20:36:12 -0000	1.4
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="${accountForm.signOn}" view="jexl">
               <welcome>
                   <c:if test="${!accountForm.signOn}">
  
  
  
  1.2       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxforms/EditAccountInformation.xml
  
  Index: EditAccountInformation.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxforms/EditAccountInformation.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- EditAccountInformation.xml	30 Apr 2003 09:39:02 -0000	1.1
  +++ EditAccountInformation.xml	3 May 2003 20:36:13 -0000	1.2
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<site xmlns:xf="http://cocoon.apache.org/jxforms/2002/cr" 
  +<site xmlns:xf="http://apache.org/cocoon/jxforms/1.0" 
      signOn="false" view="xsp">
     <editAccountForm>
   	<xf:form id="petstore-edit-account" view="edit-account-info" action="petstore" method="GET" class="petstore-form">
  
  
  
  1.2       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxforms/EditProfileInformation.xml
  
  Index: EditProfileInformation.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxforms/EditProfileInformation.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- EditProfileInformation.xml	30 Apr 2003 09:39:02 -0000	1.1
  +++ EditProfileInformation.xml	3 May 2003 20:36:13 -0000	1.2
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<site xmlns:xf="http://cocoon.apache.org/jxforms/2002/cr" 
  +<site xmlns:xf="http://apache.org/cocoon/jxforms/1.0" 
    signOn="false" view="xsp">
    <editAccountForm>
   	<xf:form id="petstore-edit-account" view="edit-profile" action="petstore" method="GET">
  
  
  
  1.2       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxforms/EditUserInformation.xml
  
  Index: EditUserInformation.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxforms/EditUserInformation.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- EditUserInformation.xml	30 Apr 2003 09:39:02 -0000	1.1
  +++ EditUserInformation.xml	3 May 2003 20:36:13 -0000	1.2
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<site xmlns:xf="http://cocoon.apache.org/jxforms/2002/cr" 
  +<site xmlns:xf="http://apache.org/cocoon/jxforms/1.0" 
      signOn="false" view="xsp">
     <editAccountForm>
   	<xf:form id="petstore-edit-account" view="edit-user-info" action="petstore" method="GET" class="petstore-form">
  
  
  
  1.9       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/Cart.xml
  
  Index: Cart.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/Cart.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- Cart.xml	23 Apr 2003 20:44:59 -0000	1.8
  +++ Cart.xml	3 May 2003 20:36:13 -0000	1.9
  @@ -1,4 +1,4 @@
  -<html xmlns:t="http://cocoon.apache.org/templates/jx/1.0">
  +<html xmlns:t="http://apache.org/cocoon/templates/jx/1.0">
   <body>
   <t:import uri="view/jxpath/IncludeTop.xml"/>
   <table border="0" width="100%" cellspacing="0" cellpadding="0">
  
  
  
  1.5       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/Category.xml
  
  Index: Category.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/Category.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Category.xml	23 Apr 2003 20:44:59 -0000	1.4
  +++ Category.xml	3 May 2003 20:36:13 -0000	1.5
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="#{accountForm/signOn}" view="jxpath">
           <backpointer name="Main Menu" do="index.do" />
           <category name="#{category/name}">
  
  
  
  1.6       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/Checkout.xml
  
  Index: Checkout.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/Checkout.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- Checkout.xml	30 Apr 2003 09:50:58 -0000	1.5
  +++ Checkout.xml	3 May 2003 20:36:13 -0000	1.6
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="#{accountForm/signOn}" view="jxpath">
           <cart name="Checkout Summary">
               <backpointer name="Shopping Cart" do="viewCart.do" />
  
  
  
  1.6       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/ConfirmOrder.xml
  
  Index: ConfirmOrder.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/ConfirmOrder.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- ConfirmOrder.xml	23 Apr 2003 20:44:59 -0000	1.5
  +++ ConfirmOrder.xml	3 May 2003 20:36:13 -0000	1.6
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="#{accountForm/signOn}" view="jxpath">
           <backpointer name="Main Menu" do="index.do" />
           <message>Please confirm the information below and then press continue...</message>
  
  
  
  1.5       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/IncludeBottom.xml
  
  Index: IncludeBottom.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/IncludeBottom.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- IncludeBottom.xml	23 Apr 2003 20:44:59 -0000	1.4
  +++ IncludeBottom.xml	3 May 2003 20:36:13 -0000	1.5
  @@ -1,4 +1,4 @@
  -<c:template xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<c:template xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
   <br />
   <c:if test="#{accountForm/account}">
     <c:if test="#{accountForm/account/username}">
  
  
  
  1.5       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/IncludeMyList.xml
  
  Index: IncludeMyList.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/IncludeMyList.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- IncludeMyList.xml	23 Apr 2003 20:44:59 -0000	1.4
  +++ IncludeMyList.xml	3 May 2003 20:36:13 -0000	1.5
  @@ -1,4 +1,4 @@
  -<t:template xmlns:t="http://cocoon.apache.org/templates/jx/1.0">
  +<t:template xmlns:t="http://apache.org/cocoon/templates/jx/1.0">
   <t:if test="#{myList}">
   <p> </p>
   <table align="right" bgcolor="#008800" border="0" cellspacing="2" cellpadding="3">
  
  
  
  1.4       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/IncludeQuickHeader.xml
  
  Index: IncludeQuickHeader.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/IncludeQuickHeader.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- IncludeQuickHeader.xml	23 Apr 2003 20:44:59 -0000	1.3
  +++ IncludeQuickHeader.xml	3 May 2003 20:36:13 -0000	1.4
  @@ -1,4 +1,4 @@
  -<t:template xmlns:t="http://cocoon.apache.org/templates/jx/1.0">
  +<t:template xmlns:t="http://apache.org/cocoon/templates/jx/1.0">
   
   <center>
   <a href="viewCategory.do?categoryId=FISH">
  
  
  
  1.5       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/IncludeTop.xml
  
  Index: IncludeTop.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/IncludeTop.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- IncludeTop.xml	23 Apr 2003 20:44:59 -0000	1.4
  +++ IncludeTop.xml	3 May 2003 20:36:13 -0000	1.5
  @@ -1,4 +1,4 @@
  -<t:template xmlns:t="http://cocoon.apache.org/templates/jx/1.0">
  +<t:template xmlns:t="http://apache.org/cocoon/templates/jx/1.0">
   
   <table background="images/bkg-topbar.gif" border="0" cellspacing="0" cellpadding="5" width="100%">
     <tbody>
  
  
  
  1.5       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/Item.xml
  
  Index: Item.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/Item.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Item.xml	23 Apr 2003 20:44:59 -0000	1.4
  +++ Item.xml	3 May 2003 20:36:13 -0000	1.5
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="#{accountForm/signOn}" view="jxpath">
           <backpointer name="#{product/name}" do="viewProduct.do?productId=#{product/productId}"/>
           <item id="#{item/itemId}">
  
  
  
  1.5       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/NewAccountForm.xml
  
  Index: NewAccountForm.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/NewAccountForm.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- NewAccountForm.xml	23 Apr 2003 20:44:59 -0000	1.4
  +++ NewAccountForm.xml	3 May 2003 20:36:13 -0000	1.5
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="#{accountForm/signOn}" view="jxpath">
           <form method="POST" styleId="workingAccountForm" action="#{$continuation/id}.kont">
   <!--
  
  
  
  1.7       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/NewOrderForm.xml
  
  Index: NewOrderForm.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/NewOrderForm.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- NewOrderForm.xml	23 Apr 2003 20:44:59 -0000	1.6
  +++ NewOrderForm.xml	3 May 2003 20:36:13 -0000	1.7
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="#{accountForm/signOn}" view="jxpath">
           <form method="POST" styleId="workingOrderForm" action="#{$continuation/id}.kont">
           <panel>
  
  
  
  1.5       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/Product.xml
  
  Index: Product.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/Product.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Product.xml	23 Apr 2003 20:44:59 -0000	1.4
  +++ Product.xml	3 May 2003 20:36:13 -0000	1.5
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="#{accountForm/signOn}" view="jxpath">
           <backpointer name="#{product/category}" do="viewCategory.do?categoryId=#{product/category}"/>
           <product name="#{product/name}">
  
  
  
  1.6       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/SearchProducts.xml
  
  Index: SearchProducts.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/SearchProducts.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- SearchProducts.xml	23 Apr 2003 20:44:59 -0000	1.5
  +++ SearchProducts.xml	3 May 2003 20:36:13 -0000	1.6
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="#{accountForm/signOn}" view="jxpath">
           <backpointer name="Main Menu" do="index.do" />
           <search>
  
  
  
  1.5       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/ShippingForm.xml
  
  Index: ShippingForm.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/ShippingForm.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ShippingForm.xml	23 Apr 2003 20:44:59 -0000	1.4
  +++ ShippingForm.xml	3 May 2003 20:36:13 -0000	1.5
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="#{accountForm/signOn}" view="jxpath">
           <backpointer name="Main Menu" do="index.do" />
           <form method="POST" styleId="workingOrderForm" action="#{$continuation/id}.kont">
  
  
  
  1.6       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/SignonForm.xml
  
  Index: SignonForm.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/SignonForm.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- SignonForm.xml	30 Apr 2003 05:14:36 -0000	1.5
  +++ SignonForm.xml	3 May 2003 20:36:13 -0000	1.6
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="#{accountForm/signOn}" view="jxpath">
           <form method="POST" label="signon" action="#{$continuation/id}.kont">
               <message type="warning">#{//message}</message>
  
  
  
  1.6       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/ViewOrder.xml
  
  Index: ViewOrder.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/ViewOrder.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- ViewOrder.xml	23 Apr 2003 20:44:59 -0000	1.5
  +++ ViewOrder.xml	3 May 2003 20:36:13 -0000	1.6
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="#{accountForm/signOn}" view="jxpath">
           <backpointer name="Main Menu" do="index.do" />
           <message></message>
  
  
  
  1.5       +1 -1      cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/scratchpad/webapp/samples/petstore/view/jxpath/index.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- index.xml	23 Apr 2003 20:44:59 -0000	1.4
  +++ index.xml	3 May 2003 20:36:13 -0000	1.5
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<page xmlns:c="http://cocoon.apache.org/templates/jx/1.0">
  +<page xmlns:c="http://apache.org/cocoon/templates/jx/1.0">
       <site signOn="#{accountForm/signOn}" view="jxpath">
               <welcome>
                   <c:if test="#{not(accountForm/signOn)}">