You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@velocity.apache.org by da...@apache.org on 2001/03/02 18:29:56 UTC

cvs commit: jakarta-velocity/whiteboard/daveb/pdfvsl build.xml

daveb       01/03/02 09:29:51

  Modified:    whiteboard/daveb/pdfvsl build.xml
  Log:
  Made output directory
  
  Revision  Changes    Path
  1.2       +7 -4      jakarta-velocity/whiteboard/daveb/pdfvsl/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity/whiteboard/daveb/pdfvsl/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml	2001/03/02 04:15:42	1.1
  +++ build.xml	2001/03/02 17:29:41	1.2
  @@ -3,7 +3,7 @@
       <!-- Initialization properties -->
       <property name="project.name"   value="site"/>
       <property name="docs.src" value="../../../xdocs"/>
  -    <property name="docs.dest" value="."/>
  +    <property name="docs.dest" value="output"/>
   
       <target name="prepare">
           <available classname="org.apache.velocity.anakia.AnakiaTask" property="AnakiaTask.present"/>
  @@ -18,8 +18,11 @@
   
       <target name="docs" depends="prepare-error" if="AnakiaTask.present">
           <taskdef name="anakia" classname="org.apache.velocity.anakia.AnakiaTask"/>
  -        <taskdef name="fop" classname="org.apache.fop.tools.anttasks.Fop"/>
  +        <taskdef name="fop" classname="org.apache.fop.tools.anttasks.Fop"/>	
   	
  +	<delete dir="${docs.dest}"/>
  +	<mkdir dir="${docs.dest}"/>
  +
   	<anakia basedir="${docs.src}" destdir="${docs.dest}/"
                extension=".fo" style="pdfsite.vsl"
                includes="**/*.xml"
  @@ -28,8 +31,8 @@
   	
   	<!-- Make big XML doc here -->
   	
  -	<fop fofile="index.fo" 
  -	    pdffile="index.pdf"
  +	<fop fofile="${docs.dest}/anakia.fo" 
  +	    pdffile="${docs.dest}/anakia.pdf"
   	/>
           
       </target>
  
  
  

Re: cvs commit: jakarta-velocity/whiteboard/daveb/pdfvsl build.xml

Posted by Dave Bryson <da...@miceda-data.com>.
On Fri, 02 Mar 2001, you wrote:
> on 3/2/01 9:29 AM, "daveb@apache.org" <da...@apache.org> wrote:
> 
> > 
> > - <fop fofile="index.fo"
> > -     pdffile="index.pdf"
> > + <fop fofile="${docs.dest}/anakia.fo"
> > +     pdffile="${docs.dest}/anakia.pdf"
> 
> hey dave,
> 
> could you please not put tabs in things?

Sorry. I'll clean that up tonight.
-- 
Dave Bryson
daveb@miceda-data.com
----------------------


Re: cvs commit: jakarta-velocity/whiteboard/daveb/pdfvsl build.xml

Posted by Jon Stevens <jo...@latchkey.com>.
on 3/2/01 9:29 AM, "daveb@apache.org" <da...@apache.org> wrote:

> 
> - <fop fofile="index.fo"
> -     pdffile="index.pdf"
> + <fop fofile="${docs.dest}/anakia.fo"
> +     pdffile="${docs.dest}/anakia.pdf"

hey dave,

could you please not put tabs in things?

thx.

-jon