You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by cz...@apache.org on 2001/10/01 15:39:04 UTC

cvs commit: xml-cocoon2/webapp/WEB-INF/db cocoondb.properties

cziegeler    01/10/01 06:39:04

  Modified:    .        build.xml
               documentation sitemap.xmap
               documentation/stylesheets document2html.xsl site2xhtml.xsl
               documentation/xdocs book.xml site-book.xml xsp-internals.xml
               documentation/xdocs/userdocs index.xml
               documentation/xdocs/userdocs/generators generators.xml
                        jsp-generator.xml
               documentation/xdocs/userdocs/serializers serializers.xml
               documentation/xdocs/userdocs/transformers
                        i18n-transformer.xml transformers.xml
               webapp/WEB-INF/db cocoondb.properties
  Added:       documentation/xdocs/userdocs/generators telnet.txt
  Removed:     documentation root.uris userdocs.uris
                        userdocs_generators.uris userdocs_serializers.uris
                        userdocs_transformers.uris
               documentation/resources bar-border-bottom.gif
                        bar-border-left.gif bar-border-right.gif
                        bar-border-top.gif bar-bottom-left.gif
                        bar-bottom-right.gif bar-top-left.gif
                        bar-top-right.gif bottom.gif button-asf-hi.gif
                        button-asf-lo.gif button-w3c-hi.gif
                        button-w3c-lo.gif button-xml-hi.gif
                        button-xml-lo.gif close.gif dot.gif join.gif
                        line.gif logo.gif note.gif right.gif separator.gif
                        void.gif
               documentation/xdocs telnet.txt
  Log:
  One step further: The documentation is automatically build recursively by starting at index.html. No need for .uris files! Next step will be the graphics...
  
  Revision  Changes    Path
  1.70      +6 -10     xml-cocoon2/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/build.xml,v
  retrieving revision 1.69
  retrieving revision 1.70
  diff -u -r1.69 -r1.70
  --- build.xml	2001/09/28 13:41:27	1.69
  +++ build.xml	2001/10/01 13:39:03	1.70
  @@ -1223,8 +1223,9 @@
     <target name="newdocs" depends="prepare,package">
   
       <mkdir dir="${build.context}"/>
  +    <mkdir dir="${build.context}/images"/>
  +    <mkdir dir="${build.context}/resources"/>
       <mkdir dir="${build.docs}"/>
  -    <mkdir dir="${build.docs}/images"/>
       <mkdir dir="${build.dir}/work"/>
   
       <copy todir="${build.context}" filtering="on">
  @@ -1233,17 +1234,16 @@
           <exclude name="images/**"/>
         </fileset>
       </copy>
  +    <copy file="changes.xml" tofile="${build.context}/xdocs/changes.xml" filtering="on"/>
  +    <copy file="todo.xml"    tofile="${build.context}/xdocs/todo.xml" filtering="on"/>
   
       <copy todir="${build.context}/resources" filtering="off">
         <fileset dir="${context.dir}/resources"/>
       </copy>
   
  -    <copy todir="${build.docs}/images" filtering="off">
  +    <copy todir="${build.context}/images" filtering="off">
         <fileset dir="${context.dir}/images"/>
       </copy>
  -    <copy todir="${build.docs}/resources" filtering="off">
  -      <fileset dir="${context.dir}/resources"/>
  -    </copy>
   
       <java classname="org.apache.cocoon.Main" fork="true">
         <arg value="-c${build.context}/"/>
  @@ -1251,11 +1251,7 @@
         <arg value="-w${build.dir}/work"/>
         <arg value="-l${build.dir}/work/cocoon.log"/>
         <arg value="-uINFO"/>
  -      <arg value="-f${context.dir}/root.uris"/>
  -      <arg value="-f${context.dir}/userdocs.uris"/>
  -      <arg value="-f${context.dir}/userdocs_generators.uris"/>
  -      <arg value="-f${context.dir}/userdocs_serializers.uris"/>
  -      <arg value="-f${context.dir}/userdocs_transformers.uris"/>
  +      <arg value="index.html"/>
         <classpath>
           <path refid="classpath"/>
           <fileset dir="${build.dir}">
  
  
  
  1.2       +42 -11    xml-cocoon2/documentation/sitemap.xmap
  
  Index: sitemap.xmap
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/documentation/sitemap.xmap,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- sitemap.xmap	2001/09/28 13:41:27	1.1
  +++ sitemap.xmap	2001/10/01 13:39:03	1.2
  @@ -27,14 +27,7 @@
        <encoding>iso8859-1</encoding>
      </map:serializer>
      <map:serializer name="xml"    mime-type="text/xml"         src="org.apache.cocoon.serialization.XMLSerializer"/>
  -   <map:serializer name="fo2pdf" mime-type="application/pdf"  src="org.apache.cocoon.serialization.FOPSerializer"/>
  -<!--   <map:serializer name="svgxml" mime-type="image/svg-xml"    src="org.apache.cocoon.serialization.XMLSerializer">
  -    <doctype-public>-//W3C//DTD SVG 20000303 Stylable//EN</doctype-public>
  -    <doctype-system>http://www.w3.org/TR/2000/03/WD-SVG-20000303/</doctype-system>
  -   </map:serializer>
  -   <map:serializer name="svg2png" mime-type="image/png"       src="org.apache.cocoon.serialization.SVGSerializer">
  -     <parameter name="background_color" type="color" value="#FFFFFF"/>
  -   </map:serializer> -->
  +   <map:serializer name="links"                               src="org.apache.cocoon.serialization.LinkSerializer"/>
     </map:serializers>
   
     <map:matchers default="wildcard">
  @@ -42,6 +35,19 @@
     </map:matchers>
    </map:components>
   
  +<!-- =========================== Views =================================== -->
  +
  + <map:views>
  +  <map:view name="content" from-label="content">
  +   <map:serialize type="xml"/>
  +  </map:view>
  +
  +  <map:view name="links" from-position="last">
  +   <map:serialize type="links"/>
  +  </map:view>
  +
  + </map:views>
  +
   <!-- =========================== Pipelines ================================= -->
   
    <map:pipelines>
  @@ -50,6 +56,16 @@
       <map:redirect-to uri="index.html"/>
      </map:match>
   
  +   <!-- Fix for javadocs -->
  +   <map:match pattern="**javadocs/**">
  +    <map:read src="resources/script.js" mime-type="text"/>
  +   </map:match>
  +
  +   <!-- Fix for samples -->
  +   <map:match pattern="samples/**">
  +    <map:read src="resources/script.js" mime-type="text"/>
  +   </map:match>
  +
      <map:match pattern="**book.xml">
        <map:generate src="xdocs/{1}book.xml"/>
        <map:transform src="stylesheets/book2menu.xsl"/>
  @@ -90,17 +106,32 @@
      </map:match>
   
      <!-- ================  Static  =========================== -->
  +   <map:match pattern="**resources/script.js">
  +    <map:read src="resources/script.js" mime-type="text"/>
  +   </map:match>
  +
  +   <map:match pattern="**.txt">
  +    <map:read src="xdocs/{1}.txt" mime-type="text"/>
  +   </map:match>
   
      <map:match pattern="**images/*.png">
  -    <map:read src="resources/images/{2}.png" mime-type="image/png"/>
  +    <map:read src="images/{2}.png" mime-type="image/png"/>
      </map:match>
   
      <map:match pattern="**images/*.jpg">
  -    <map:read src="resources/images/{2}.jpg" mime-type="image/jpeg"/>
  +    <map:read src="images/{2}.jpg" mime-type="image/jpeg"/>
      </map:match>
   
      <map:match pattern="**images/*.gif">
  -    <map:read src="resources/images/{2}.gif" mime-type="image/gif"/>
  +    <map:read src="images/{2}.gif" mime-type="image/gif"/>
  +   </map:match>
  +
  +   <map:match pattern="**resources/**.gif">
  +    <map:read src="resources/{2}.gif" mime-type="image/gif"/>
  +   </map:match>
  +
  +   <map:match pattern="**graphics/**">
  +    <map:read src="images/logo.gif" mime-type="image/gif"/>
      </map:match>
   
      <map:handle-errors>
  
  
  
  1.2       +45 -45    xml-cocoon2/documentation/stylesheets/document2html.xsl
  
  Index: document2html.xsl
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/documentation/stylesheets/document2html.xsl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- document2html.xsl	2001/09/28 13:41:28	1.1
  +++ document2html.xsl	2001/10/01 13:39:03	1.2
  @@ -44,22 +44,22 @@
      <div align="right">
       <table border="0" width="98%" cellspacing="0" cellpadding="0">
         <tr>
  -        <td width="9" height="7" valign="bottom" align="right"><img src="resources/bar-top-left.gif" width="9" height="7" vspace="0" hspace="0" border="0"/></td>
  -        <td background="resources/bar-border-top.gif"><img src="resources/void.gif" width="1" height="5" vspace="0" hspace="0" border="0"/></td>
  -        <td width="9" height="7" valign="bottom" align="left"><img src="resources/bar-top-right.gif" width="9" height="7" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" height="7" valign="bottom" align="right"><img src="images/bar-top-left.gif" width="9" height="7" vspace="0" hspace="0" border="0"/></td>
  +        <td background="images/bar-border-top.gif"><img src="images/void.gif" width="1" height="5" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" height="7" valign="bottom" align="left"><img src="images/bar-top-right.gif" width="9" height="7" vspace="0" hspace="0" border="0"/></td>
         </tr>
         <tr>
  -        <td width="9" background="resources/bar-border-left.gif"><img src="resources/void.gif" width="9" height="1" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" background="images/bar-border-left.gif"><img src="images/void.gif" width="9" height="1" vspace="0" hspace="0" border="0"/></td>
           <td width="100%" bgcolor="#0086b2">
             <font size="+1" face="arial,helvetica,sanserif" color="#ffffff">
  -            <img src="resources/void.gif" width="5" height="5" vspace="0" hspace="0" border="0"/><b><xsl:value-of select="@title"/></b></font>
  +            <img src="images/void.gif" width="5" height="5" vspace="0" hspace="0" border="0"/><b><xsl:value-of select="@title"/></b></font>
            </td>
  -        <td width="9" background="resources/bar-border-right.gif"><img src="resources/void.gif" width="9" height="1" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" background="images/bar-border-right.gif"><img src="images/void.gif" width="9" height="1" vspace="0" hspace="0" border="0"/></td>
         </tr>
         <tr>
  -        <td width="9" height="12" valign="top" align="right"><img src="resources/bar-bottom-left.gif" width="9" height="12" vspace="0" hspace="0" border="0"/></td>
  -        <td background="resources/bar-border-bottom.gif"><img src="resources/void.gif" height="12" vspace="0" hspace="0" border="0"/></td>
  -        <td width="9" height="12" valign="top" align="left"><img src="resources/bar-bottom-right.gif" width="9" height="12" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" height="12" valign="top" align="right"><img src="images/bar-bottom-left.gif" width="9" height="12" vspace="0" hspace="0" border="0"/></td>
  +        <td background="images/bar-border-bottom.gif"><img src="images/void.gif" height="12" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" height="12" valign="top" align="left"><img src="images/bar-bottom-right.gif" width="9" height="12" vspace="0" hspace="0" border="0"/></td>
         </tr>
        </table>
        <table border="0" width="98%" cellspacing="0" cellpadding="0">
  @@ -77,22 +77,22 @@
      <div align="right">
       <table border="0" width="95%" cellspacing="0" cellpadding="0">
         <tr>
  -        <td width="9" height="7" valign="bottom" align="right"><img src="resources/bar-top-left.gif" width="9" height="7" vspace="0" hspace="0" border="0"/></td>
  -        <td background="resources/bar-border-top.gif"><img src="resources/void.gif" width="1" height="5" vspace="0" hspace="0" border="0"/></td>
  -        <td width="9" height="7" valign="bottom" align="left"><img src="resources/bar-top-right.gif" width="9" height="7" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" height="7" valign="bottom" align="right"><img src="images/bar-top-left.gif" width="9" height="7" vspace="0" hspace="0" border="0"/></td>
  +        <td background="images/bar-border-top.gif"><img src="images/void.gif" width="1" height="5" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" height="7" valign="bottom" align="left"><img src="images/bar-top-right.gif" width="9" height="7" vspace="0" hspace="0" border="0"/></td>
         </tr>
         <tr>
  -        <td width="9" background="resources/bar-border-left.gif"><img src="resources/void.gif" width="9" height="1" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" background="images/bar-border-left.gif"><img src="images/void.gif" width="9" height="1" vspace="0" hspace="0" border="0"/></td>
           <td width="100%" bgcolor="#0086b2">
             <font face="arial,helvetica,sanserif" color="#ffffff">
  -            <img src="resources/void.gif" width="5" height="5" vspace="0" hspace="0" border="0"/><b><xsl:value-of select="@title"/></b></font>
  +            <img src="images/void.gif" width="5" height="5" vspace="0" hspace="0" border="0"/><b><xsl:value-of select="@title"/></b></font>
            </td>
  -        <td width="9" background="resources/bar-border-right.gif"><img src="resources/void.gif" width="9" height="1" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" background="images/bar-border-right.gif"><img src="images/void.gif" width="9" height="1" vspace="0" hspace="0" border="0"/></td>
         </tr>
         <tr>
  -        <td width="9" height="12" valign="top" align="right"><img src="resources/bar-bottom-left.gif" width="9" height="12" vspace="0" hspace="0" border="0"/></td>
  -        <td background="resources/bar-border-bottom.gif"><img src="resources/void.gif" width="1" height="12" vspace="0" hspace="0" border="0"/></td>
  -        <td width="9" height="12" valign="top" align="left"><img src="resources/bar-bottom-right.gif" width="9" height="12" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" height="12" valign="top" align="right"><img src="images/bar-bottom-left.gif" width="9" height="12" vspace="0" hspace="0" border="0"/></td>
  +        <td background="images/bar-border-bottom.gif"><img src="images/void.gif" width="1" height="12" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" height="12" valign="top" align="left"><img src="images/bar-bottom-right.gif" width="9" height="12" vspace="0" hspace="0" border="0"/></td>
         </tr>
        </table>
        <table border="0" width="95%" cellspacing="0" cellpadding="0">
  @@ -110,22 +110,22 @@
      <div align="right">
       <table border="0" width="90%" cellspacing="0" cellpadding="0">
         <tr>
  -        <td width="9" height="7" valign="bottom" align="right"><img src="resources/bar-top-left.gif" width="9" height="7" vspace="0" hspace="0" border="0"/></td>
  -        <td background="resources/bar-border-top.gif"><img src="resources/void.gif" width="1" height="5" vspace="0" hspace="0" border="0"/></td>
  -        <td width="9" height="7" valign="bottom" align="left"><img src="resources/bar-top-right.gif" width="9" height="7" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" height="7" valign="bottom" align="right"><img src="images/bar-top-left.gif" width="9" height="7" vspace="0" hspace="0" border="0"/></td>
  +        <td background="images/bar-border-top.gif"><img src="images/void.gif" width="1" height="5" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" height="7" valign="bottom" align="left"><img src="images/bar-top-right.gif" width="9" height="7" vspace="0" hspace="0" border="0"/></td>
         </tr>
         <tr>
  -        <td width="9" background="resources/bar-border-left.gif"><img src="resources/void.gif" width="9" height="1" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" background="images/bar-border-left.gif"><img src="images/void.gif" width="9" height="1" vspace="0" hspace="0" border="0"/></td>
           <td width="100%" bgcolor="#0086b2">
             <font size="-1" face="arial,helvetica,sanserif" color="#ffffff">
  -            <img src="resources/void.gif" width="5" height="5" vspace="0" hspace="0" border="0"/><b><xsl:value-of select="@title"/></b></font>
  +            <img src="images/void.gif" width="5" height="5" vspace="0" hspace="0" border="0"/><b><xsl:value-of select="@title"/></b></font>
            </td>
  -        <td width="9" background="resources/bar-border-right.gif"><img src="resources/void.gif" width="9" height="1" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" background="images/bar-border-right.gif"><img src="images/void.gif" width="9" height="1" vspace="0" hspace="0" border="0"/></td>
         </tr>
         <tr>
  -        <td width="9" height="12" valign="top" align="right"><img src="resources/bar-bottom-left.gif" width="9" height="12" vspace="0" hspace="0" border="0"/></td>
  -        <td background="resources/bar-border-bottom.gif"><img src="resources/void.gif" width="1" height="12" vspace="0" hspace="0" border="0"/></td>
  -        <td width="9" height="12" valign="top" align="left"><img src="resources/bar-bottom-right.gif" width="9" height="12" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" height="12" valign="top" align="right"><img src="images/bar-bottom-left.gif" width="9" height="12" vspace="0" hspace="0" border="0"/></td>
  +        <td background="images/bar-border-bottom.gif"><img src="images/void.gif" width="1" height="12" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" height="12" valign="top" align="left"><img src="images/bar-bottom-right.gif" width="9" height="12" vspace="0" hspace="0" border="0"/></td>
         </tr>
        </table>
        <table border="0" width="90%" cellspacing="0" cellpadding="0">
  @@ -143,22 +143,22 @@
      <div align="right">
       <table border="0" width="85%" cellspacing="0" cellpadding="0">
         <tr>
  -        <td width="9" height="7" valign="bottom" align="right"><img src="resources/bar-top-left.gif" width="9" height="7" vspace="0" hspace="0" border="0"/></td>
  -        <td background="resources/bar-border-top.gif"><img src="resources/void.gif" width="1" height="5" vspace="0" hspace="0" border="0"/></td>
  -        <td width="9" height="7" valign="bottom" align="left"><img src="resources/bar-top-right.gif" width="9" height="7" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" height="7" valign="bottom" align="right"><img src="images/bar-top-left.gif" width="9" height="7" vspace="0" hspace="0" border="0"/></td>
  +        <td background="images/bar-border-top.gif"><img src="images/void.gif" width="1" height="5" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" height="7" valign="bottom" align="left"><img src="images/bar-top-right.gif" width="9" height="7" vspace="0" hspace="0" border="0"/></td>
         </tr>
         <tr>
  -        <td width="9" background="resources/bar-border-left.gif"><img src="resources/void.gif" width="9" height="1" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" background="images/bar-border-left.gif"><img src="images/void.gif" width="9" height="1" vspace="0" hspace="0" border="0"/></td>
           <td width="100%" bgcolor="#0086b2">
             <font size="-2" face="arial,helvetica,sanserif" color="#ffffff">
  -            <img src="resources/void.gif" width="5" height="5" vspace="0" hspace="0" border="0"/><b><xsl:value-of select="@title"/></b></font>
  +            <img src="images/void.gif" width="5" height="5" vspace="0" hspace="0" border="0"/><b><xsl:value-of select="@title"/></b></font>
            </td>
  -        <td width="9" background="resources/bar-border-right.gif"><img src="resources/void.gif" width="9" height="1" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" background="images/bar-border-right.gif"><img src="images/void.gif" width="9" height="1" vspace="0" hspace="0" border="0"/></td>
         </tr>
         <tr>
  -        <td width="9" height="12" valign="top" align="right"><img src="resources/bar-bottom-left.gif" width="9" height="12" vspace="0" hspace="0" border="0"/></td>
  -        <td background="resources/bar-border-bottom.gif"><img src="resources/void.gif" width="1" height="12" vspace="0" hspace="0" border="0"/></td>
  -        <td width="9" height="12" valign="top" align="left"><img src="resources/bar-bottom-right.gif" width="9" height="12" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" height="12" valign="top" align="right"><img src="images/bar-bottom-left.gif" width="9" height="12" vspace="0" hspace="0" border="0"/></td>
  +        <td background="images/bar-border-bottom.gif"><img src="images/void.gif" width="1" height="12" vspace="0" hspace="0" border="0"/></td>
  +        <td width="9" height="12" valign="top" align="left"><img src="images/bar-bottom-right.gif" width="9" height="12" vspace="0" hspace="0" border="0"/></td>
         </tr>
        </table>
        <table border="0" width="85%" cellspacing="0" cellpadding="0">
  @@ -193,7 +193,7 @@
       <table width="100%" cellspacing="3" cellpadding="0" border="0">
         <tr>
           <td width="28" valign="top">
  -          <img src="resources/note.gif" width="28" height="29" vspace="0" hspace="0" border="0" alt="Note"/>
  +          <img src="images/note.gif" width="28" height="29" vspace="0" hspace="0" border="0" alt="Note"/>
           </td>
           <td valign="top">
             <font size="-1" face="arial,helvetica,sanserif" color="#000000">
  @@ -211,19 +211,19 @@
      <div align="center">
       <table cellspacing="4" cellpadding="0" border="0">
       <tr>
  -      <td bgcolor="#0086b2" width="1" height="1"><img src="resources/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
  -      <td bgcolor="#0086b2" height="1"><img src="resources/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
  -      <td bgcolor="#0086b2" width="1" height="1"><img src="resources/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
  +      <td bgcolor="#0086b2" width="1" height="1"><img src="images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
  +      <td bgcolor="#0086b2" height="1"><img src="images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
  +      <td bgcolor="#0086b2" width="1" height="1"><img src="images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
       </tr>
       <tr>
  -      <td bgcolor="#0086b2" width="1"><img src="resources/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
  +      <td bgcolor="#0086b2" width="1"><img src="images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
         <td bgcolor="#ffffff"><pre><xsl:apply-templates/></pre></td>
  -      <td bgcolor="#0086b2" width="1"><img src="resources/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
  +      <td bgcolor="#0086b2" width="1"><img src="images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
       </tr>
       <tr>
  -      <td bgcolor="#0086b2" width="1" height="1"><img src="resources/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
  -      <td bgcolor="#0086b2" height="1"><img src="resources/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
  -      <td bgcolor="#0086b2" width="1" height="1"><img src="resources/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
  +      <td bgcolor="#0086b2" width="1" height="1"><img src="images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
  +      <td bgcolor="#0086b2" height="1"><img src="images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
  +      <td bgcolor="#0086b2" width="1" height="1"><img src="images/void.gif" width="1" height="1" vspace="0" hspace="0" border="0"/></td>
       </tr>
       </table>
      </div>
  
  
  
  1.2       +15 -15    xml-cocoon2/documentation/stylesheets/site2xhtml.xsl
  
  Index: site2xhtml.xsl
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/documentation/stylesheets/site2xhtml.xsl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- site2xhtml.xsl	2001/09/28 13:41:28	1.1
  +++ site2xhtml.xsl	2001/10/01 13:39:03	1.2
  @@ -14,13 +14,13 @@
           <table width="100%" cellspacing="0" cellpadding="0" border="0">
             <tr>
               <td width="135" height="60" rowspan="3" valign="top" align="left">
  -              <img width="135" height="60" src="resources/logo.gif" hspace="0" vspace="0" border="0"/>
  +              <img width="135" height="60" src="images/logo.gif" hspace="0" vspace="0" border="0"/>
               </td>
  -            <td width="100%" height="5" valign="top" align="left" colspan="2" background="resources/line.gif">
  -              <img width="1" height="5" src="resources/line.gif" hspace="0" vspace="0" border="0" align="left"/>
  +            <td width="100%" height="5" valign="top" align="left" colspan="2" background="images/line.gif">
  +              <img width="1" height="5" src="images/line.gif" hspace="0" vspace="0" border="0" align="left"/>
               </td>
               <td width="29" height="60"  rowspan="3" valign="top" align="left">
  -              <img width="29" height="60" src="resources/right.gif" hspace="0" vspace="0" border="0"/>
  +              <img width="29" height="60" src="images/right.gif" hspace="0" vspace="0" border="0"/>
               </td>
             </tr>
             <tr>
  @@ -28,31 +28,31 @@
                 <!-- img src="graphics/{$id}-header.jpg" width="456" height="35" hspace="0" vspace="0" border="0" alt="{header/title}" align="right"/ -->           </td>
             </tr>
             <tr>
  -            <td width="100%" height="20" valign="top" align="left" bgcolor="#0086b2" background="resources/bottom.gif">
  -              <img width="3" height="20" src="resources/bottom.gif" hspace="0" vspace="0" border="0" align="left"/>
  +            <td width="100%" height="20" valign="top" align="left" bgcolor="#0086b2" background="images/bottom.gif">
  +              <img width="3" height="20" src="images/bottom.gif" hspace="0" vspace="0" border="0" align="left"/>
               </td>
  -            <td align="right" bgcolor="#0086b2" height="20" valign="top" width="288" background="resources/bottom.gif">
  +            <td align="right" bgcolor="#0086b2" height="20" valign="top" width="288" background="images/bottom.gif">
                 <table border="0" cellpadding="0" cellspacing="0" width="288">
                   <tr>
                     <td width="96" height="20" valign="top" align="left">
                       <a href="http://xml.apache.org/" onMouseOver="rolloverOn('xml');" onMouseOut="rolloverOff('xml');" target="new">
  -                      <img alt="http://xml.apache.org/" width="96" height="20" src="resources/button-xml-lo.gif"
  +                      <img alt="http://xml.apache.org/" width="96" height="20" src="images/button-xml-lo.gif"
                              name="xml" hspace="0" vspace="0" border="0"
  -                           onLoad="rolloverLoad('xml','resources/button-xml-hi.gif','resources/button-xml-lo.gif');"/>
  +                           onLoad="rolloverLoad('xml','images/button-xml-hi.gif','images/button-xml-lo.gif');"/>
                       </a>
                     </td>
                     <td width="96" height="20" valign="top" align="left">
                       <a href="http://www.apache.org/" onMouseOver="rolloverOn('asf');" onMouseOut="rolloverOff('asf');" target="new">
  -                      <img alt="http://www.apache.org/" width="96" height="20" src="resources/button-asf-lo.gif"
  +                      <img alt="http://www.apache.org/" width="96" height="20" src="images/button-asf-lo.gif"
                              name="asf" hspace="0" vspace="0" border="0"
  -                           onLoad="rolloverLoad('asf','resources/button-asf-hi.gif','resources/button-asf-lo.gif');"/>
  +                           onLoad="rolloverLoad('asf','images/button-asf-hi.gif','images/button-asf-lo.gif');"/>
                       </a>
                     </td>
                     <td width="96" height="20" valign="top" align="left">
                       <a href="http://www.w3.org/" onMouseOver="rolloverOn('w3c');" onMouseOut="rolloverOff('w3c');" target="new">
  -                      <img alt="http://www.w3.org/" width="96" height="20" src="resources/button-w3c-lo.gif"
  +                      <img alt="http://www.w3.org/" width="96" height="20" src="images/button-w3c-lo.gif"
                              name="w3c" hspace="0" vspace="0" border="0"
  -                           onLoad="rolloverLoad('w3c','resources/button-w3c-hi.gif','resources/button-w3c-lo.gif');"/>
  +                           onLoad="rolloverLoad('w3c','images/button-w3c-hi.gif','images/button-w3c-lo.gif');"/>
                       </a>
                     </td>
                   </tr>
  @@ -67,14 +67,14 @@
   			<table border="0" cellpadding="0" cellspacing="0" width="120">
   			      <tr>
   					<td align="left" valign="top">
  -						<img border="0" height="14" hspace="0" src="resources/join.gif" vspace="0" width="120"/>
  +						<img border="0" height="14" hspace="0" src="images/join.gif" vspace="0" width="120"/>
   						<br/>
   					</td>
   				</tr>
   				<xsl:copy-of select="/site/menu/node()|@*"/>
   				<tr>
   					<td valign="top" align="left">
  -						<img border="0" height="14" hspace="0" src="resources/close.gif" vspace="0" width="120"/>
  +						<img border="0" height="14" hspace="0" src="images/close.gif" vspace="0" width="120"/>
   						<br/>
   					</td>
   				</tr>
  
  
  
  1.2       +4 -4      xml-cocoon2/documentation/xdocs/book.xml
  
  Index: book.xml
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/documentation/xdocs/book.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- book.xml	2001/09/28 13:41:28	1.1
  +++ book.xml	2001/10/01 13:39:03	1.2
  @@ -11,8 +11,8 @@
     </menu>
   
     <menu label="Install">
  -    <menu-item label="Install" href="installing.html"/>
  -    <menu-item label="Jars" href="jars.html"/>
  +    <menu-item label="Install" href="installing.html" xlink:role="install"/>
  +    <menu-item label="Jars" href="jars.html" xlink:role="install"/>
     </menu>
   
     <menu label="Sub-Projects">
  @@ -61,8 +61,8 @@
   
     <menu label="Sub-Projects">
       <faq    id="faq"       label="FAQ File"   href="faq.html"      />
  -    <changes id="changes" label="Changes" href="changes.html"/>
  -    <todo    id="todo" label="Todo" href="todo.html"/>
  +    <!-- changes id="changes" label="Changes" href="changes.html"/>
  +    <todo    id="todo" label="Todo" href="todo.html"/ -->
     </menu>
   
     <menu label="Sub-Projects">
  
  
  
  1.2       +1 -1      xml-cocoon2/documentation/xdocs/site-book.xml
  
  Index: site-book.xml
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/documentation/xdocs/site-book.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- site-book.xml	2001/09/28 13:41:29	1.1
  +++ site-book.xml	2001/10/01 13:39:03	1.2
  @@ -95,7 +95,7 @@
     <page id="3rdparty" label="3rd Party" source="3rdparty.xml"/>
     <page id="patches" label="Patch Queue" source="patches.xml"/>
   <separator/>
  -  <external href="../cocoon/index.html"  label="@docname@ 1 Site"/>
  +  <!-- external href="../cocoon/index.html"  label="@docname@ 1 Site"/ -->
   <separator/>
     <faq    id="faq"       label="FAQ File"   source="faq.xml"      />
     <changes id="changes" label="Changes" source="changes.xml"/>
  
  
  
  1.2       +1 -1      xml-cocoon2/documentation/xdocs/xsp-internals.xml
  
  Index: xsp-internals.xml
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/documentation/xdocs/xsp-internals.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- xsp-internals.xml	2001/09/28 13:41:29	1.1
  +++ xsp-internals.xml	2001/10/01 13:39:03	1.2
  @@ -1306,7 +1306,7 @@
        This section describes how the above described framework is
        used to implement XSP in particular. For a description of
        logicsheet authoring requirements for XSP in Java, see
  -     <link href="logicsheet-concepts#java-logicsheets">
  +     <link href="logicsheet-concepts.html#java-logicsheets">
          XSLT Logicsheets and XSP for Java.
        </link>
      </p>
  
  
  
  1.2       +1 -1      xml-cocoon2/documentation/xdocs/userdocs/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/documentation/xdocs/userdocs/index.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- index.xml	2001/09/28 13:41:30	1.1
  +++ index.xml	2001/10/01 13:39:03	1.2
  @@ -280,7 +280,7 @@
     <p>The sitemap physically represents the central repository for web site
     administration, where the URI space and its handling is maintained.</p>
   
  -  <p>Please, take a look at the <link href="sitemap.html">sitemap documentation</link>
  +  <p>Please, take a look at the <link href="../sitemap.html">sitemap documentation</link>
        for more information on this.</p>
   
   </s1>
  
  
  
  1.2       +1 -1      xml-cocoon2/documentation/xdocs/userdocs/generators/generators.xml
  
  Index: generators.xml
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/documentation/xdocs/userdocs/generators/generators.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- generators.xml	2001/09/28 13:41:30	1.1
  +++ generators.xml	2001/10/01 13:39:04	1.2
  @@ -20,7 +20,7 @@
   			<p>A generator is the starting point of an xml pipeline. It generates XML 
   	                              content as SAX events and initialize the pipeline processing. 
   			   For more information on generators
  -                     see <link href="sitemap.html">the sitemap</link>.
  +                     see <link href="../../sitemap.html">the sitemap</link>.
         	      </p>
   		 </s1>
   		 <s1 title="The Generators in @doctitle@">
  
  
  
  1.2       +1 -1      xml-cocoon2/documentation/xdocs/userdocs/generators/jsp-generator.xml
  
  Index: jsp-generator.xml
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/documentation/xdocs/userdocs/generators/jsp-generator.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- jsp-generator.xml	2001/09/28 13:41:30	1.1
  +++ jsp-generator.xml	2001/10/01 13:39:04	1.2
  @@ -41,7 +41,7 @@
                       select the appropriate JSPEngine component. 
                       The default is a JSPEngine working with Tomcat's JSP servlet engine Jasper.
                       You may override the cocoon.roles by your own my.roles, as described 
  -                    in the <link href="faqs.html">FAQs</link>.
  +                    in the <link href="..\..\faq.html">FAQs</link>.
                     </p>
                     <p>The JSPEngine component of Tomcat's JSPEngine is implemented in JSPEngineImpl. 
                       If you want to use another JSPEngine component, you may specify it in a my.roles file.
  
  
  
  1.1                  xml-cocoon2/documentation/xdocs/userdocs/generators/telnet.txt
  
  Index: telnet.txt
  ===================================================================
  POST /cocoon/request1 HTTP/1.1
  Content-Type: text/plain
  Content-Length:1513
  
  <?xml version="1.0"?>
  <Orders>
  	<OrderID>20259</OrderID>
  	<CustomerID>WWWWWWW</CustomerID>
  	<EmployeeID>6</EmployeeID>
  	<OrderDate>2001-05-05 00:00:00</OrderDate>
  	<RequiredDate>2001-06-05 00:00:00</RequiredDate>
  	<ShippedDate>2001-06-01 00:00:00</ShippedDate>
  	<ShipVia>1</ShipVia>
  	<Freight>11.6100</Freight>
  	<ShipName>Thoms White</ShipName>
  	<ShipAddress>Somestr. 48</ShipAddress>
  	<ShipCity>Munster</ShipCity>
  	<ShipRegion>West</ShipRegion>
  	<ShipPostalCode>00000</ShipPostalCode>
  	<ShipCountry>Germany</ShipCountry>
  	<OrderDetails>
  		<OrderID>20259</OrderID>
  		<ProductID>51</ProductID>
  		<UnitPrice>42.4000</UnitPrice>
  		<Quantity>40</Quantity>
  		<Discount>0.0</Discount>
  	</OrderDetails>
  	<OrderDetails>
  		<OrderID>20259</OrderID>
  		<ProductID>14</ProductID>
  		<UnitPrice>18.6000</UnitPrice>
  		<Quantity>9</Quantity>
  		<Discount>0.0</Discount>
  	</OrderDetails>
  	<OrderDetails>
  		<OrderID>20259</OrderID>
  		<ProductID>7</ProductID>
  		<UnitPrice>12.4000</UnitPrice>
  		<Quantity>30</Quantity>
  		<Discount>0.0</Discount>
  	</OrderDetails>
  	<Customers>
  		<CustomerID>WWWWWWW</CustomerID>
  		<CompanyName>Thomas White</CompanyName>
  		<ContactName>Karin Black</ContactName>
  		<ContactTitle>Marketing Manager</ContactTitle>
  		<Address>Somestr. 48</Address>
  		<City>Munster</City>
  		<Region>West</Region>
  		<PostalCode>00000</PostalCode>
  		<Country>Germany</Country>
  		<Phone>xxxx-yyyyyy</Phone>
  		<Fax>xxxx-yyyyyy</Fax>
  	</Customers>
  </Orders>
  
  
  1.2       +1 -1      xml-cocoon2/documentation/xdocs/userdocs/serializers/serializers.xml
  
  Index: serializers.xml
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/documentation/xdocs/userdocs/serializers/serializers.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- serializers.xml	2001/09/28 13:41:31	1.1
  +++ serializers.xml	2001/10/01 13:39:04	1.2
  @@ -20,7 +20,7 @@
   		 <s1 title="Overview">
   			<p>A serializer is the end point of an xml pipeline. It transform SAX 
                        events in binary or char streams for final client consumption. For more information about transformers
  -                     see <link href="sitemap.html">the sitemap</link>.
  +                     see <link href="../../sitemap.html">the sitemap</link>.
         	      </p>
   		 </s1>
   		 <s1 title="The Serializers in @doctitle@">
  
  
  
  1.2       +1 -1      xml-cocoon2/documentation/xdocs/userdocs/transformers/i18n-transformer.xml
  
  Index: i18n-transformer.xml
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/documentation/xdocs/userdocs/transformers/i18n-transformer.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- i18n-transformer.xml	2001/09/28 13:41:31	1.1
  +++ i18n-transformer.xml	2001/10/01 13:39:04	1.2
  @@ -383,7 +383,7 @@
   			<s2 title="Contacts">
   				<p>
   					Feel free to contact for any comments and improvement ideas either directly <link href="mailto:kpiroumian@flagship.ru">Konstantin Piroumian</link> 
  -					or through the <link href="/cocoon/mail-lists.html">@docname@ Mail List</link>.
  +					or through the <link href="../../mail-lists.html">@docname@ Mail List</link>.
   				</p>
   			</s2>
   		</s1>
  
  
  
  1.2       +1 -1      xml-cocoon2/documentation/xdocs/userdocs/transformers/transformers.xml
  
  Index: transformers.xml
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/documentation/xdocs/userdocs/transformers/transformers.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- transformers.xml	2001/09/28 13:41:31	1.1
  +++ transformers.xml	2001/10/01 13:39:04	1.2
  @@ -20,7 +20,7 @@
   		 <s1 title="Overview">
   			<p>A transformer is the central point in the pipeline. It transform 
                        SAX events in SAX events. For more information about transformers
  -                     see <link href="sitemap.html">the sitemap</link>.
  +                     see <link href="../../sitemap.html">the sitemap</link>.
         	      </p>
   		 </s1>
   		 <s1 title="The Transformers in @doctitle@">
  
  
  
  1.2       +2 -2      xml-cocoon2/webapp/WEB-INF/db/cocoondb.properties
  
  Index: cocoondb.properties
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/webapp/WEB-INF/db/cocoondb.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- cocoondb.properties	2001/05/09 20:50:09	1.1
  +++ cocoondb.properties	2001/10/01 13:39:04	1.2
  @@ -1,4 +1,4 @@
   #HSQL database
  -#Mon Apr 09 11:18:40 EDT 2001
  +#Mon Oct 01 11:28:21 CEST 2001
   version=1.6
  -modified=no
  +modified=yes
  
  
  

----------------------------------------------------------------------
In case of troubles, e-mail:     webmaster@xml.apache.org
To unsubscribe, e-mail:          cocoon-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: cocoon-cvs-help@xml.apache.org