You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by jo...@apache.org on 2003/11/18 19:08:18 UTC

cvs commit: cocoon-2.1/tools/targets admin-build.xml

joerg       2003/11/18 10:08:18

  Modified:    tools/targets admin-build.xml
  Log:
  - "generate-blocks.properties" added
  - "announcement" xslt made file-based instead of directory-based,
    fixed path separators to linux style
  
  Revision  Changes    Path
  1.2       +12 -7     cocoon-2.1/tools/targets/admin-build.xml
  
  Index: admin-build.xml
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/tools/targets/admin-build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- admin-build.xml	18 Nov 2003 17:20:23 -0000	1.1
  +++ admin-build.xml	18 Nov 2003 18:08:18 -0000	1.2
  @@ -13,13 +13,18 @@
   
     <!-- Create the announcements -->
     <target name="announcement" depends="prepare-docs">
  -    <copy file="announcement.xml" tofile="${build.context}\xdocs\announcement.xml" filtering="on"/>
  -    <xslt basedir="${build.context}\xdocs"
  -           destdir="${build}"
  -           style="${build.context}\stylesheets\announcement2txt.xsl"
  -           includes="announcement.xml"
  -           extension=".txt"
  -           force="true"/>
  +    <copy file="announcement.xml" tofile="${build.context}/xdocs/announcement.xml" filtering="on"/>
  +    <xslt in="${build.context}/xdocs/announcement.xml"
  +          out="${build}/announcement.txt"
  +          style="${build.context}/stylesheets/announcement2txt.xsl"
  +          force="true"/>
  +  </target>
  +
  +  <target name="generate-blocks.properties" depends="init">
  +    <xslt in="gump.xml"
  +          out="blocks.properties"
  +          style="${tools.src}/gump2blocks.properties.xsl"
  +          force="true"/>
     </target>
   
   <!-- === Gump Targets ====================================================== -->