You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cactus-dev@jakarta.apache.org by vm...@apache.org on 2003/05/25 16:49:41 UTC

cvs commit: jakarta-cactus/samples/jetty/conf/sample/build build.xml

vmassol     2003/05/25 07:49:41

  Modified:    anttasks build.xml
               .        build-common.xml
               documentation build.xml
               framework build.xml
               integration/ant build.xml
               samples/jetty/conf/sample/build build.xml
  Log:
  Added a new "project.doc.version" Ant property that contains the text version that will be printed on web documentation (also renamed project.version.previous to project.doc.version.previous). This is to support user-friendly automated nightly web site publishing by Gump.
  
  Revision  Changes    Path
  1.39      +2 -2      jakarta-cactus/anttasks/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/anttasks/build.xml,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -r1.38 -r1.39
  --- build.xml	18 May 2003 20:24:22 -0000	1.38
  +++ build.xml	25 May 2003 14:49:41 -0000	1.39
  @@ -140,8 +140,8 @@
               public="true"
               version="true"
               use="true"
  -            windowtitle="${project.name.text} ${project.version}"
  -            doctitle="${project.name.text} ${project.version}"
  +            windowtitle="${project.name.text} ${project.doc.version}"
  +            doctitle="${project.name.text} ${project.doc.version}"
               bottom="Copyright © ${year} Apache Software Foundation.
                       All Rights Reserved.">
           </javadoc>
  
  
  
  1.22      +2 -1      jakarta-cactus/build-common.xml
  
  Index: build-common.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/build-common.xml,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- build-common.xml	19 May 2003 19:53:26 -0000	1.21
  +++ build-common.xml	25 May 2003 14:49:41 -0000	1.22
  @@ -19,7 +19,8 @@
       
       <!-- Project version -->
       <property name="project.version" value="1.5dev"/>
  -    <property name="project.version.previous" value="1.4.1"/>
  +    <property name="project.doc.version" value="1.5dev"/>
  +    <property name="project.doc.version.previous" value="1.4.1"/>
   
       <!-- Prefix to add to all distributable files -->
       <property name="project.prefix" value="jakarta"/>
  
  
  
  1.48      +4 -4      jakarta-cactus/documentation/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/documentation/build.xml,v
  retrieving revision 1.47
  retrieving revision 1.48
  diff -u -r1.47 -r1.48
  --- build.xml	18 May 2003 12:52:59 -0000	1.47
  +++ build.xml	25 May 2003 14:49:41 -0000	1.48
  @@ -238,9 +238,9 @@
               <param name="title" expression="Cactus Documentation"/>
               <param name="copyright"
                   expression="${year} The Apache Software Foundation"/>
  -            <param name="project.version" expression="${project.version}"/>
  +            <param name="project.version" expression="${project.doc.version}"/>
               <param name="project.version.previous"
  -                expression="${project.version.previous}"/>
  +                expression="${project.doc.version.previous}"/>
               <param name="last.updated.date" expression="${TODAY}"/>
   
               <!-- Location of the xdoc directory relative to where the
  @@ -337,7 +337,7 @@
           <clover-setup initstring="${clover.initstring.12}"/>
   
           <clover-report>
  -            <current title="Cactus ${project.version} for J2EE API 1.2"
  +            <current title="Cactus ${project.doc.version} for J2EE API 1.2"
                   outfile="${dist.doc.dir}/clover-12">
                   <format type="html"/>
               </current>
  @@ -364,7 +364,7 @@
           <clover-setup initstring="${clover.initstring.13}"/>
   
           <clover-report>
  -            <current title="Cactus ${project.version} for J2EE API 1.3"
  +            <current title="Cactus ${project.doc.version} for J2EE API 1.3"
                   outfile="${dist.doc.dir}/clover-13">
                   <format type="html"/>
               </current>
  
  
  
  1.60      +2 -2      jakarta-cactus/framework/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/framework/build.xml,v
  retrieving revision 1.59
  retrieving revision 1.60
  diff -u -r1.59 -r1.60
  --- build.xml	24 May 2003 17:07:35 -0000	1.59
  +++ build.xml	25 May 2003 14:49:41 -0000	1.60
  @@ -361,8 +361,8 @@
               protected="true"
               version="true"
               use="true"
  -            windowtitle="${project.name.text} ${project.version}"
  -            doctitle="${project.name.text} ${project.version}"
  +            windowtitle="${project.name.text} ${project.doc.version}"
  +            doctitle="${project.name.text} ${project.doc.version}"
               overview="${src.java.share.dir}/overview.html"
               bottom="Copyright &amp;copy; ${year} Apache Software Foundation.
                       All Rights Reserved.">
  
  
  
  1.33      +2 -2      jakarta-cactus/integration/ant/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/integration/ant/build.xml,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -r1.32 -r1.33
  --- build.xml	20 May 2003 06:47:44 -0000	1.32
  +++ build.xml	25 May 2003 14:49:41 -0000	1.33
  @@ -457,8 +457,8 @@
               public="true"
               version="true"
               use="true"
  -            windowtitle="${project.name.text} ${project.version}"
  -            doctitle="${project.name.text} ${project.version}"
  +            windowtitle="${project.name.text} ${project.doc.version}"
  +            doctitle="${project.name.text} ${project.doc.version}"
               bottom="Copyright &amp;copy; ${year} Apache Software Foundation.
                       All Rights Reserved.">
   
  
  
  
  1.4       +2 -2      jakarta-cactus/samples/jetty/conf/sample/build/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/samples/jetty/conf/sample/build/build.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build.xml	18 May 2003 23:10:29 -0000	1.3
  +++ build.xml	25 May 2003 14:49:41 -0000	1.4
  @@ -320,8 +320,8 @@
               public="true"
               version="true"
               use="true"
  -            windowtitle="${project.name.text} ${project.version}"
  -            doctitle="${project.name.text} ${project.version}"
  +            windowtitle="${project.name.text} ${project.doc.version}"
  +            doctitle="${project.name.text} ${project.doc.version}"
               bottom="Copyright &amp;copy; ${year} Apache Software Foundation. All Rights Reserved.">
   
               <sourcepath>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: cactus-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: cactus-dev-help@jakarta.apache.org