You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by cr...@apache.org on 2003/01/19 01:40:44 UTC

cvs commit: jakarta-struts/doc/userGuide building_controller.xml building_model.xml building_view.xml configuration.xml dev_bean.xml dev_html.xml dev_logic.xml dev_nested.xml dev_template.xml dev_tiles.xml dev_util.xml dev_utils.xml dev_validator.xml index.xml installation-1.0.xml installation-ip.xml installation-ipas.xml installation-jetty.xml installation-jr30.xml installation-novell.xml installation-oas.xml installation-sas.xml installation-tc.xml installation-ubs72.xml installation-was352-x.xml installation-was352.xml installation-wls5.xml installation.xml introduction.xml preface.xml release-notes-1.0-b1.xml release-notes-1.0-b2.xml release-notes-1.0-b3.xml release-notes-1.0.1.xml release-notes-1.0.2.xml release-notes-1.0.xml release-notes-1.1-b1.xml release-notes-1.1-b2.xml release-notes-1.1-b3.xml release-notes.xml struts-bean.xml struts-html.xml struts-logic.xml struts-nested.xml struts-template.xml struts-tiles.xml

craigmcc    2003/01/18 16:40:43

  Modified:    .        build-webapps.xml build.xml
               doc/stylesheets userGuide.xsl
               doc/userGuide building_controller.xml building_model.xml
                        building_view.xml configuration.xml dev_bean.xml
                        dev_html.xml dev_logic.xml dev_nested.xml
                        dev_template.xml dev_tiles.xml dev_util.xml
                        dev_utils.xml dev_validator.xml index.xml
                        installation-1.0.xml installation-ip.xml
                        installation-ipas.xml installation-jetty.xml
                        installation-jr30.xml installation-novell.xml
                        installation-oas.xml installation-sas.xml
                        installation-tc.xml installation-ubs72.xml
                        installation-was352-x.xml installation-was352.xml
                        installation-wls5.xml installation.xml
                        introduction.xml preface.xml
                        release-notes-1.0-b1.xml release-notes-1.0-b2.xml
                        release-notes-1.0-b3.xml release-notes-1.0.1.xml
                        release-notes-1.0.2.xml release-notes-1.0.xml
                        release-notes-1.1-b1.xml release-notes-1.1-b2.xml
                        release-notes-1.1-b3.xml release-notes.xml
                        struts-bean.xml struts-html.xml struts-logic.xml
                        struts-nested.xml struts-template.xml
                        struts-tiles.xml
  Added:       doc/images printer.gif
  Log:
  Add printer-friendly versions of all the pages in the user guide.  The
  bulk of the change was in the stylesheet -- the only change to the docs
  themselves was the <document uri="..."> values.
  
  We definitely need to clean the build process up, either now or in 1.2.
  For example, it's not obvious to me why all the doc sections don't share
  the same stylesheet, or why we have duplicate build stuff in the
  "compile.website" target and the target for the documentation webapp.
  
  Revision  Changes    Path
  1.19      +14 -2     jakarta-struts/build-webapps.xml
  
  Index: build-webapps.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/build-webapps.xml,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- build-webapps.xml	31 Dec 2002 07:29:16 -0000	1.18
  +++ build-webapps.xml	19 Jan 2003 00:40:41 -0000	1.19
  @@ -206,10 +206,22 @@
              extension=".html" style="${doc.dir}/stylesheets/resources.xsl"
               includes="*.xml"/>
       <!-- Create the user guide -->
  +    <!--   ... browser version ... -->
       <style   basedir="${doc.dir}/userGuide"
                destdir="${build.home}/documentation/userGuide"
  -           extension=".html" style="${doc.dir}/stylesheets/userGuide.xsl"
  -            includes="*.xml"/>
  +           extension=".html" style="../stylesheets/userGuide.xsl"
  +            includes="*.xml">
  +      <param name="relative-path" expression=".."/>
  +    </style>
  +    <!--   ... printer version ... -->
  +    <mkdir       dir="${build.home}/documentation/userGuide/printer"/>
  +    <style   basedir="${doc.dir}/userGuide"
  +             destdir="${build.home}/documentation/userGuide/printer"
  +           extension=".html" style="../stylesheets/userGuide.xsl"
  +            includes="*.xml">
  +      <param name="relative-path" expression="../.."/>
  +      <param name="project-menu" expression="nomenu"/>
  +    </style>
       <!-- Copy the basic documentation files -->
       <copy      todir="${build.home}/documentation">
         <fileset   dir="${doc.dir}">
  
  
  
  1.94      +13 -1     jakarta-struts/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/build.xml,v
  retrieving revision 1.93
  retrieving revision 1.94
  diff -u -r1.93 -r1.94
  --- build.xml	7 Jan 2003 05:42:55 -0000	1.93
  +++ build.xml	19 Jan 2003 00:40:41 -0000	1.94
  @@ -810,10 +810,22 @@
              extension=".html" style="../stylesheets/resources.xsl"
               includes="*.xml"/>
       <!-- Create the user guide -->
  +    <!--   ... browser version ... -->
       <style   basedir="${doc.dir}/userGuide"
                destdir="${build.home}/documentation/userGuide"
              extension=".html" style="../stylesheets/userGuide.xsl"
  -            includes="*.xml"/>
  +            includes="*.xml">
  +      <param name="relative-path" expression=".."/>
  +    </style>
  +    <!--   ... printer version ... -->
  +    <mkdir       dir="${build.home}/documentation/userGuide/printer"/>
  +    <style   basedir="${doc.dir}/userGuide"
  +             destdir="${build.home}/documentation/userGuide/printer"
  +           extension=".html" style="../stylesheets/userGuide.xsl"
  +            includes="*.xml">
  +      <param name="relative-path" expression="../.."/>
  +      <param name="project-menu" expression="nomenu"/>
  +    </style>
       <!-- Copy the basic documentation files -->
       <copy      todir="${build.home}/documentation">
         <fileset   dir="${doc.dir}">
  
  
  
  1.1                  jakarta-struts/doc/images/printer.gif
  
  	<<Binary file>>
  
  
  1.12      +79 -17    jakarta-struts/doc/stylesheets/userGuide.xsl
  
  Index: userGuide.xsl
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/stylesheets/userGuide.xsl,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- userGuide.xsl	7 Jan 2003 05:57:36 -0000	1.11
  +++ userGuide.xsl	19 Jan 2003 00:40:41 -0000	1.12
  @@ -7,15 +7,30 @@
   
   
     <!-- Output method -->
  -  <xsl:output method="html" indent="no"/>
  -  
  -
  -  <!-- Defined variables -->
  -  <xsl:variable name="body-bg"   select="'#ffffff'"/>
  -  <xsl:variable name="body-fg"   select="'#000000'"/>
  -  <xsl:variable name="body-link" select="'#023264'"/>
  -  <xsl:variable name="banner-bg" select="'#023264'"/>
  -  <xsl:variable name="banner-fg" select="'#ffffff'"/>
  +  <xsl:output method="html"
  +            encoding="iso-8859-1"
  +              indent="no"/>
  +
  +
  +  <!-- Defined parameters (overrideable) -->
  +  <xsl:param    name="home-href"         select="'http://jakarta.apache.org/'"/>
  +  <xsl:param    name="home-logo"         select="'/images/jakarta-logo.gif'"/>
  +  <xsl:param    name="home-name"         select="'The Jakarta Project'" />
  +  <xsl:param    name="printer-logo"      select="'/images/printer.gif'"/>
  +  <xsl:param    name="printer-name"      select="'Print-Friendly Version'"/>
  +  <xsl:param    name="project-href"      select="'http://jakarta.apache.org/struts/'"/>
  +  <xsl:param    name="project-logo"      select="'/images/struts.gif'"/>
  +  <xsl:param    name="project-menu"      select="'menu'"/>
  +  <xsl:param    name="project-name"      select="'Struts Framework'"/>
  +  <xsl:param    name="relative-path"     select="'.'"/>
  +
  +
  +  <!-- Defined variables (non-overrideable) -->
  +  <xsl:variable name="body-bg"           select="'#ffffff'"/>
  +  <xsl:variable name="body-fg"           select="'#000000'"/>
  +  <xsl:variable name="body-link"         select="'#023264'"/>
  +  <xsl:variable name="banner-bg"         select="'#023264'"/>
  +  <xsl:variable name="banner-fg"         select="'#ffffff'"/>
   
   
     <!-- Process an entire document into an HTML page -->
  @@ -52,22 +67,69 @@
       <table border="0" width="100%" cellspacing="5">
   
         <tr><td colspan="2">
  -        <a href="http://jakarta.apache.org">
  -        <img src="../images/jakarta-logo.gif" align="left" border="0"/>
  +
  +        <xsl:comment>
  +          JAKARTA LOGO
  +        </xsl:comment>
  +        <xsl:variable name="alt">
  +          <xsl:value-of select="$home-name"/>
  +        </xsl:variable>
  +        <xsl:variable name="href">
  +          <xsl:value-of select="$home-href"/>
  +        </xsl:variable>
  +        <xsl:variable name="src">
  +          <xsl:value-of select="$relative-path"/><xsl:value-of select="$home-logo"/>
  +        </xsl:variable>
  +        <a href="{$href}">
  +        <img src="{$src}" align="left" alt="{$alt}" border="0"/>
           </a>
  -        <a href="http://jakarta.apache.org/struts">
  -        <img src="../images/struts.gif" align="right" border="0"/>
  +
  +        <xsl:comment>
  +          STRUTS LOGO
  +        </xsl:comment>
  +        <xsl:variable name="alt">
  +          <xsl:value-of select="$project-name"/>
  +        </xsl:variable>
  +        <xsl:variable name="href">
  +          <xsl:value-of select="$project-href"/>
  +        </xsl:variable>
  +        <xsl:variable name="src">
  +          <xsl:value-of select="$relative-path"/><xsl:value-of select="$project-logo"/>
  +        </xsl:variable>
  +        <a href="{$href}">
  +        <img src="{$src}" align="right" alt="{$alt}" border="0"/>
           </a>
  +
         </td></tr>
   
         <tr><td colspan="2">
           <hr/>
         </td></tr>
   
  +      <xsl:if test="$project-menu = 'menu'">
  +        <tr><td colspan="2" align="center">
  +          <xsl:variable name="alt">
  +            <xsl:value-of select="$printer-name"/>
  +          </xsl:variable>
  +          <xsl:variable name="url">
  +            <xsl:value-of select="/document/@url"/>
  +          </xsl:variable>
  +          <xsl:variable name="src">
  +            <xsl:value-of select="$relative-path"/><xsl:value-of select="$printer-logo"/>
  +          </xsl:variable>
  +          <a href="printer/{$url}">
  +            <img src="{$src}" alt="{$alt}" border="0"/>
  +            <xsl:value-of select="$printer-name"/>
  +          </a>
  +        </td></tr>
  +      </xsl:if>
  +
         <tr>
  -        <td width="120" valign="top">
  -          <xsl:apply-templates select="$project"/>
  -        </td>
  +        <xsl:if test="$project-menu = 'menu'">
  +          <td width="120" valign="top">
  +            <xsl:apply-templates select="$project"/>
  +          </td>
  +        </xsl:if>
   
           <td valign="top">
             <xsl:apply-templates select="body"/>
  
  
  
  1.55      +1 -1      jakarta-struts/doc/userGuide/building_controller.xml
  
  Index: building_controller.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/building_controller.xml,v
  retrieving revision 1.54
  retrieving revision 1.55
  diff -u -r1.54 -r1.55
  --- building_controller.xml	18 Jan 2003 22:13:10 -0000	1.54
  +++ building_controller.xml	19 Jan 2003 00:40:41 -0000	1.55
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./building_controller.xml">
  +<document url="building_controller.html">
   
   <!--
   // ======================================================================== 78
  
  
  
  1.18      +1 -1      jakarta-struts/doc/userGuide/building_model.xml
  
  Index: building_model.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/building_model.xml,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- building_model.xml	29 Dec 2002 11:45:45 -0000	1.17
  +++ building_model.xml	19 Jan 2003 00:40:41 -0000	1.18
  @@ -4,7 +4,7 @@
   // ======================================================================== 78
   -->
   
  -<document url="./building_model.xml">
  +<document url="building_model.html">
   
   <properties>
       <author>Craig R. McClanahan</author>
  
  
  
  1.27      +1 -1      jakarta-struts/doc/userGuide/building_view.xml
  
  Index: building_view.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/building_view.xml,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- building_view.xml	29 Dec 2002 11:45:45 -0000	1.26
  +++ building_view.xml	19 Jan 2003 00:40:41 -0000	1.27
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./building_view.xml">
  +<document url="building_view.html">
   
   <!--
   // ======================================================================== 78
  
  
  
  1.14      +1 -1      jakarta-struts/doc/userGuide/configuration.xml
  
  Index: configuration.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/configuration.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- configuration.xml	18 Jan 2003 22:11:04 -0000	1.13
  +++ configuration.xml	19 Jan 2003 00:40:41 -0000	1.14
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./configuration.xml">
  +<document url="configuration.html">
   
   <properties>
       <title>The Struts User's Guide - Configuring Applications</title>
  
  
  
  1.5       +1 -1      jakarta-struts/doc/userGuide/dev_bean.xml
  
  Index: dev_bean.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/dev_bean.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- dev_bean.xml	27 Dec 2002 09:25:33 -0000	1.4
  +++ dev_bean.xml	19 Jan 2003 00:40:41 -0000	1.5
  @@ -1,5 +1,5 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
  -<document url="./resources.xml">
  +<document url="dev_bean.html">
   
   <!--
   // ======================================================================== 78
  
  
  
  1.3       +1 -1      jakarta-struts/doc/userGuide/dev_html.xml
  
  Index: dev_html.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/dev_html.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- dev_html.xml	31 Aug 2002 13:15:02 -0000	1.2
  +++ dev_html.xml	19 Jan 2003 00:40:41 -0000	1.3
  @@ -1,5 +1,5 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
  -<document url="./resources.xml">
  +<document url="dev_html.html">
   <properties>
    <author>Craig R. McClanahan</author>
    <author>Ted Husted</author>
  
  
  
  1.4       +1 -1      jakarta-struts/doc/userGuide/dev_logic.xml
  
  Index: dev_logic.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/dev_logic.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- dev_logic.xml	17 Dec 2002 06:48:52 -0000	1.3
  +++ dev_logic.xml	19 Jan 2003 00:40:41 -0000	1.4
  @@ -1,5 +1,5 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
  -<document url="./resources.xml">
  +<document url="dev_logic.html">
   <properties>
    <author>Craig R. McClanahan</author>
    <author>Mike Schachter</author>
  
  
  
  1.3       +1 -1      jakarta-struts/doc/userGuide/dev_nested.xml
  
  Index: dev_nested.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/dev_nested.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- dev_nested.xml	31 Aug 2002 13:15:02 -0000	1.2
  +++ dev_nested.xml	19 Jan 2003 00:40:41 -0000	1.3
  @@ -1,5 +1,5 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
  -<document url="./resources.xml">
  +<document url="dev_nested.html">
   <properties>
   <author>Arron Bates</author>
   <title>The Struts User's Guide - Nested Taglib Guide</title>
  
  
  
  1.4       +1 -1      jakarta-struts/doc/userGuide/dev_template.xml
  
  Index: dev_template.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/dev_template.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- dev_template.xml	26 Oct 2002 00:01:05 -0000	1.3
  +++ dev_template.xml	19 Jan 2003 00:40:41 -0000	1.4
  @@ -1,5 +1,5 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
  -<document url="./resources.xml">
  +<document url="dev_template.html">
   <properties>
     <author>David Geary</author> 
     <author>Ted Husted</author> 
  
  
  
  1.13      +1 -1      jakarta-struts/doc/userGuide/dev_tiles.xml
  
  Index: dev_tiles.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/dev_tiles.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- dev_tiles.xml	24 Dec 2002 01:50:07 -0000	1.12
  +++ dev_tiles.xml	19 Jan 2003 00:40:41 -0000	1.13
  @@ -1,5 +1,5 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
  -<document url="./resources.xml">
  +<document url="dev_tiles.html">
   <properties>
   <author>Cedric Dumoulin</author>
   <title>
  
  
  
  1.3       +1 -1      jakarta-struts/doc/userGuide/dev_util.xml
  
  Index: dev_util.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/dev_util.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- dev_util.xml	31 Aug 2002 13:15:02 -0000	1.2
  +++ dev_util.xml	19 Jan 2003 00:40:41 -0000	1.3
  @@ -1,5 +1,5 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
  -<document url="./resources.xml">
  +<document url="dev_util.html">
   <properties>
     <author>Craig R. McClanahan</author> 
     <title>The Struts User's Guide - Utilities Guide</title>
  
  
  
  1.2       +1 -1      jakarta-struts/doc/userGuide/dev_utils.xml
  
  Index: dev_utils.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/dev_utils.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- dev_utils.xml	29 Jun 2002 03:21:02 -0000	1.1
  +++ dev_utils.xml	19 Jan 2003 00:40:41 -0000	1.2
  @@ -1,5 +1,5 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
  -<document url="./resources.xml">
  +<document url="dev_utils.html">
   <properties>
   <author>Ted Husted</author> 
   <title>The Struts User's Guide - Utilities Guide</title>
  
  
  
  1.20      +1 -1      jakarta-struts/doc/userGuide/dev_validator.xml
  
  Index: dev_validator.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/dev_validator.xml,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- dev_validator.xml	27 Dec 2002 11:15:06 -0000	1.19
  +++ dev_validator.xml	19 Jan 2003 00:40:41 -0000	1.20
  @@ -1,5 +1,5 @@
   <?xml version="1.0" encoding="ISO-8859-1"?>
  -<document url="./resources.xml">
  +<document url="dev_validator.html">
   
   <!--
   // ======================================================================== 78
  
  
  
  1.31      +2 -2      jakarta-struts/doc/userGuide/index.xml
  
  Index: index.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/index.xml,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- index.xml	18 Jan 2003 22:11:04 -0000	1.30
  +++ index.xml	19 Jan 2003 00:40:41 -0000	1.31
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./index.xml">
  +<document url="index.html">
   
     <properties>
       <author>Craig R. McClanahan</author>
  @@ -125,7 +125,7 @@
                   <li><a href="building_controller.html#logging">4.10 Using The Commons Logging Interface</a></li>                
                   </ul></li>
   
  -             <li>5. Configuring Applications</li>
  +             <li><a href="configuration.html">5. Configuring Applications</a></li>
                   <ul>
                   <li><a href="configuration.html#config-overview">5.1 Overview</a></li>
                   <li><a href="configuration.html#struts-config">5.2 The Struts Configuration File</a>
  
  
  
  1.2       +1 -1      jakarta-struts/doc/userGuide/installation-1.0.xml
  
  Index: installation-1.0.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/installation-1.0.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- installation-1.0.xml	20 Feb 2002 00:41:14 -0000	1.1
  +++ installation-1.0.xml	19 Jan 2003 00:40:41 -0000	1.2
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./installation-1.0.xml">
  +<document url="installation-1.0.html">
   
     <properties>
       <author>Craig R. McClanahan</author>
  
  
  
  1.3       +1 -1      jakarta-struts/doc/userGuide/installation-ip.xml
  
  Index: installation-ip.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/installation-ip.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- installation-ip.xml	31 Aug 2002 13:15:02 -0000	1.2
  +++ installation-ip.xml	19 Jan 2003 00:40:41 -0000	1.3
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./installation-ip.xml">
  +<document url="installation-ip.html">
   <properties>
   <author>Stanley Santiago</author>
   <title>The Struts Framework Project - Installation - iPlanet</title>
  
  
  
  1.4       +1 -1      jakarta-struts/doc/userGuide/installation-ipas.xml
  
  Index: installation-ipas.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/installation-ipas.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- installation-ipas.xml	24 Dec 2002 01:50:07 -0000	1.3
  +++ installation-ipas.xml	19 Jan 2003 00:40:41 -0000	1.4
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./installation-ipas.xml">
  +<document url="installation-ipas.html">
       <properties>
           <author>John Ueltzhoeffer</author>
           <title>The Struts Framework Project - Installation - iPortal Application Server</title>
  
  
  
  1.3       +1 -1      jakarta-struts/doc/userGuide/installation-jetty.xml
  
  Index: installation-jetty.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/installation-jetty.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- installation-jetty.xml	31 Aug 2002 13:15:02 -0000	1.2
  +++ installation-jetty.xml	19 Jan 2003 00:40:41 -0000	1.3
  @@ -1,6 +1,6 @@
   <?xml version="1.0"?>
   
  -<document url="./installation-ip.xml">
  +<document url="installation-ip.html">
   
   <properties>
     <author>Paul Runyan</author>
  
  
  
  1.4       +1 -1      jakarta-struts/doc/userGuide/installation-jr30.xml
  
  Index: installation-jr30.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/installation-jr30.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- installation-jr30.xml	24 Dec 2002 01:50:07 -0000	1.3
  +++ installation-jr30.xml	19 Jan 2003 00:40:41 -0000	1.4
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./installation-jr30.xml">
  +<document url="installation-jr30.html">
   
     <properties>
       <author>Eric Wu</author>
  
  
  
  1.2       +1 -1      jakarta-struts/doc/userGuide/installation-novell.xml
  
  Index: installation-novell.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/installation-novell.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- installation-novell.xml	8 Dec 2002 00:54:34 -0000	1.1
  +++ installation-novell.xml	19 Jan 2003 00:40:41 -0000	1.2
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./installation-novell.xml">
  +<document url="installation-novell.html">
   
     <properties>
       <author>John Berry</author>
  
  
  
  1.3       +1 -1      jakarta-struts/doc/userGuide/installation-oas.xml
  
  Index: installation-oas.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/installation-oas.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- installation-oas.xml	31 Aug 2002 13:15:02 -0000	1.2
  +++ installation-oas.xml	19 Jan 2003 00:40:41 -0000	1.3
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./installation-oas.xml">
  +<document url="installation-oas.html">
   
     <properties>
       <title>The Struts Framework Project - Installation - Orion Application Server</title>
  
  
  
  1.3       +1 -1      jakarta-struts/doc/userGuide/installation-sas.xml
  
  Index: installation-sas.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/installation-sas.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- installation-sas.xml	31 Aug 2002 13:15:02 -0000	1.2
  +++ installation-sas.xml	19 Jan 2003 00:40:41 -0000	1.3
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./installation-sas.xml">
  +<document url="installation-sas.html">
   
     <properties>
      <author>John Rousseau</author>
  
  
  
  1.3       +1 -1      jakarta-struts/doc/userGuide/installation-tc.xml
  
  Index: installation-tc.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/installation-tc.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- installation-tc.xml	31 Aug 2002 13:15:02 -0000	1.2
  +++ installation-tc.xml	19 Jan 2003 00:40:41 -0000	1.3
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./installation-tc.xml">
  +<document url="installation-tc.html">
   
     <properties>
       <author>Craig R. McClanahan</author>
  
  
  
  1.4       +1 -1      jakarta-struts/doc/userGuide/installation-ubs72.xml
  
  Index: installation-ubs72.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/installation-ubs72.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- installation-ubs72.xml	24 Dec 2002 01:50:07 -0000	1.3
  +++ installation-ubs72.xml	19 Jan 2003 00:40:41 -0000	1.4
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./installation-ubs72.xml">
  +<document url="installation-ubs72.html">
   
     <properties>
       <author>Mike Schachter</author>
  
  
  
  1.3       +1 -1      jakarta-struts/doc/userGuide/installation-was352-x.xml
  
  Index: installation-was352-x.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/installation-was352-x.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- installation-was352-x.xml	31 Aug 2002 13:15:02 -0000	1.2
  +++ installation-was352-x.xml	19 Jan 2003 00:40:41 -0000	1.3
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./installation-was352-x.xml">
  +<document url="installation-was352-x.html">
   
     <properties>
     <author>Chris Assenza</author>
  
  
  
  1.4       +1 -1      jakarta-struts/doc/userGuide/installation-was352.xml
  
  Index: installation-was352.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/installation-was352.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- installation-was352.xml	24 Dec 2002 01:50:07 -0000	1.3
  +++ installation-was352.xml	19 Jan 2003 00:40:41 -0000	1.4
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./installation-was352.xml">
  +<document url="installation-was352.html">
   
     <properties>
     <author>dIon Gillard</author>
  
  
  
  1.3       +1 -1      jakarta-struts/doc/userGuide/installation-wls5.xml
  
  Index: installation-wls5.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/installation-wls5.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- installation-wls5.xml	31 Aug 2002 13:15:02 -0000	1.2
  +++ installation-wls5.xml	19 Jan 2003 00:40:41 -0000	1.3
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./installation-wls5.xml">
  +<document url="installation-wls5.html">
   
     <properties>
       <author>Robert Hayden</author>
  
  
  
  1.25      +1 -1      jakarta-struts/doc/userGuide/installation.xml
  
  Index: installation.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/installation.xml,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- installation.xml	29 Dec 2002 21:06:49 -0000	1.24
  +++ installation.xml	19 Jan 2003 00:40:41 -0000	1.25
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./installation.xml">
  +<document url="installation.html">
   
     <properties>
       <author>Craig R. McClanahan</author>
  
  
  
  1.16      +1 -1      jakarta-struts/doc/userGuide/introduction.xml
  
  Index: introduction.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/introduction.xml,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- introduction.xml	29 Dec 2002 11:45:44 -0000	1.15
  +++ introduction.xml	19 Jan 2003 00:40:41 -0000	1.16
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./introduction.xml">
  +<document url="introduction.html">
   
     <properties>
       <author>Craig R. McClanahan</author>
  
  
  
  1.19      +1 -1      jakarta-struts/doc/userGuide/preface.xml
  
  Index: preface.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/preface.xml,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- preface.xml	29 Dec 2002 18:06:59 -0000	1.18
  +++ preface.xml	19 Jan 2003 00:40:41 -0000	1.19
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./technologies.xml">
  +<document url="preface.html">
   
     <properties>
       <author>Ted Husted</author>
  
  
  
  1.3       +1 -1      jakarta-struts/doc/userGuide/release-notes-1.0-b1.xml
  
  Index: release-notes-1.0-b1.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/release-notes-1.0-b1.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- release-notes-1.0-b1.xml	24 Dec 2002 01:50:07 -0000	1.2
  +++ release-notes-1.0-b1.xml	19 Jan 2003 00:40:41 -0000	1.3
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./release-notes-1.0-b1.xml">
  +<document url="release-notes-1.0-b1.html">
   
     <properties>
       <author>Craig R. McClanahan</author>
  
  
  
  1.3       +1 -1      jakarta-struts/doc/userGuide/release-notes-1.0-b2.xml
  
  Index: release-notes-1.0-b2.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/release-notes-1.0-b2.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- release-notes-1.0-b2.xml	24 Dec 2002 01:50:08 -0000	1.2
  +++ release-notes-1.0-b2.xml	19 Jan 2003 00:40:41 -0000	1.3
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./release-notes-1.0-b2.xml">
  +<document url="release-notes-1.0-b2.html">
   
     <properties>
       <author>Craig R. McClanahan</author>
  
  
  
  1.3       +1 -1      jakarta-struts/doc/userGuide/release-notes-1.0-b3.xml
  
  Index: release-notes-1.0-b3.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/release-notes-1.0-b3.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- release-notes-1.0-b3.xml	24 Dec 2002 01:50:08 -0000	1.2
  +++ release-notes-1.0-b3.xml	19 Jan 2003 00:40:41 -0000	1.3
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./release-notes-1.0-b3.xml">
  +<document url="release-notes-1.0-b3.html">
   
     <properties>
       <author>Craig R. McClanahan</author>
  
  
  
  1.3       +1 -1      jakarta-struts/doc/userGuide/release-notes-1.0.1.xml
  
  Index: release-notes-1.0.1.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/release-notes-1.0.1.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- release-notes-1.0.1.xml	24 Dec 2002 01:50:08 -0000	1.2
  +++ release-notes-1.0.1.xml	19 Jan 2003 00:40:41 -0000	1.3
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./release-notes-1.0.1.xml">
  +<document url="release-notes-1.0.1.html">
   
     <properties>
       <author>Craig R. McClanahan</author>
  
  
  
  1.2       +1 -1      jakarta-struts/doc/userGuide/release-notes-1.0.2.xml
  
  Index: release-notes-1.0.2.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/release-notes-1.0.2.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- release-notes-1.0.2.xml	20 Feb 2002 00:41:14 -0000	1.1
  +++ release-notes-1.0.2.xml	19 Jan 2003 00:40:41 -0000	1.2
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./release-notes-1.0.2.xml">
  +<document url="release-notes-1.0.2.html">
   
     <properties>
       <author>Craig R. McClanahan</author>
  
  
  
  1.3       +1 -1      jakarta-struts/doc/userGuide/release-notes-1.0.xml
  
  Index: release-notes-1.0.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/release-notes-1.0.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- release-notes-1.0.xml	24 Dec 2002 01:50:08 -0000	1.2
  +++ release-notes-1.0.xml	19 Jan 2003 00:40:41 -0000	1.3
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./release-notes-1.0.xml">
  +<document url="release-notes-1.0.html">
   
     <properties>
       <author>Craig R. McClanahan</author>
  
  
  
  1.5       +1 -1      jakarta-struts/doc/userGuide/release-notes-1.1-b1.xml
  
  Index: release-notes-1.1-b1.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/release-notes-1.1-b1.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- release-notes-1.1-b1.xml	24 Dec 2002 01:50:08 -0000	1.4
  +++ release-notes-1.1-b1.xml	19 Jan 2003 00:40:41 -0000	1.5
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./release-notes-1.1-b1.xml">
  +<document url="release-notes-1.1-b1.html">
   
     <properties>
       <author>Craig R. McClanahan</author>
  
  
  
  1.6       +1 -1      jakarta-struts/doc/userGuide/release-notes-1.1-b2.xml
  
  Index: release-notes-1.1-b2.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/release-notes-1.1-b2.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- release-notes-1.1-b2.xml	24 Dec 2002 01:50:08 -0000	1.5
  +++ release-notes-1.1-b2.xml	19 Jan 2003 00:40:41 -0000	1.6
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./release-notes.xml">
  +<document url="release-notes-1.1-b2.html">
   
     <properties>
       <author>Craig R. McClanahan</author>
  
  
  
  1.2       +1 -1      jakarta-struts/doc/userGuide/release-notes-1.1-b3.xml
  
  Index: release-notes-1.1-b3.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/release-notes-1.1-b3.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- release-notes-1.1-b3.xml	31 Dec 2002 03:12:11 -0000	1.1
  +++ release-notes-1.1-b3.xml	19 Jan 2003 00:40:41 -0000	1.2
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./release-notes.xml">
  +<document url="release-notes-1.1-b3.html">
   
     <properties>
       <author>Craig R. McClanahan</author>
  
  
  
  1.20      +1 -1      jakarta-struts/doc/userGuide/release-notes.xml
  
  Index: release-notes.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/release-notes.xml,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- release-notes.xml	29 Dec 2002 20:51:55 -0000	1.19
  +++ release-notes.xml	19 Jan 2003 00:40:41 -0000	1.20
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./release-notes.xml">
  +<document url="release-notes.html">
   
     <properties>
       <author>Craig R. McClanahan</author>
  
  
  
  1.9       +1 -1      jakarta-struts/doc/userGuide/struts-bean.xml
  
  Index: struts-bean.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/struts-bean.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- struts-bean.xml	13 Jan 2003 00:05:59 -0000	1.8
  +++ struts-bean.xml	19 Jan 2003 00:40:41 -0000	1.9
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./struts-bean.xml">
  +<document url="struts-bean.html">
   
   <properties>
     <author>Craig R. McClanahan</author>
  
  
  
  1.48      +1 -1      jakarta-struts/doc/userGuide/struts-html.xml
  
  Index: struts-html.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/struts-html.xml,v
  retrieving revision 1.47
  retrieving revision 1.48
  diff -u -r1.47 -r1.48
  --- struts-html.xml	17 Jan 2003 06:06:55 -0000	1.47
  +++ struts-html.xml	19 Jan 2003 00:40:41 -0000	1.48
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./struts-html.xml">
  +<document url="struts-html.html">
   
   <properties>
     <author>Craig R. McClanahan</author>
  
  
  
  1.12      +1 -1      jakarta-struts/doc/userGuide/struts-logic.xml
  
  Index: struts-logic.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/struts-logic.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- struts-logic.xml	13 Jan 2003 00:06:00 -0000	1.11
  +++ struts-logic.xml	19 Jan 2003 00:40:42 -0000	1.12
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./struts-logic.xml">
  +<document url="struts-logic.html">
   
   <properties>
     <author>Craig R. McClanahan</author>
  
  
  
  1.15      +1 -1      jakarta-struts/doc/userGuide/struts-nested.xml
  
  Index: struts-nested.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/struts-nested.xml,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- struts-nested.xml	24 Dec 2002 01:50:08 -0000	1.14
  +++ struts-nested.xml	19 Jan 2003 00:40:42 -0000	1.15
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./struts-bean.xml">
  +<document url="struts-nested.html">
   
   <properties>
     <author>Arron Bates</author>
  
  
  
  1.4       +1 -1      jakarta-struts/doc/userGuide/struts-template.xml
  
  Index: struts-template.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/struts-template.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- struts-template.xml	20 Nov 2002 04:29:26 -0000	1.3
  +++ struts-template.xml	19 Jan 2003 00:40:42 -0000	1.4
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./struts-template.xml">
  +<document url="struts-template.html">
   
   <properties>
     <author>David Geary</author>
  
  
  
  1.7       +1 -1      jakarta-struts/doc/userGuide/struts-tiles.xml
  
  Index: struts-tiles.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/struts-tiles.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- struts-tiles.xml	24 Dec 2002 01:50:08 -0000	1.6
  +++ struts-tiles.xml	19 Jan 2003 00:40:42 -0000	1.7
  @@ -1,5 +1,5 @@
   <?xml version="1.0"?>
  -<document url="./tiles.xml">
  +<document url="struts-tiles.html">
   
   <properties>
     <author>Cedric Dumoulin</author>
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: cvs commit: jakarta-struts/doc/userGuide building_controller.xml building_model.xml building_view.xml configuration.xml dev_bean.xml dev_html.xml dev_logic.xml dev_nested.xml dev_template.xml dev_tile

Posted by "Craig R. McClanahan" <cr...@apache.org>.

On 19 Jan 2003 craigmcc@apache.org wrote:

>   Add printer-friendly versions of all the pages in the user guide.  The
>   bulk of the change was in the stylesheet -- the only change to the docs
>   themselves was the <document uri="..."> values.
>

I forgot to note that I cribbed the basic idea from some enhancements to
the stylesheets for Tomcat 4.1 docs that Glenn Nielsen recently added.

Craig


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>