OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Re: [docbook-apps] epub3 - copying the images, using Ant


On Fri, March 15, 2013 12:10 pm, Kerry, Richard wrote:
...
> 1.  Building epub3 output from DocBook.

...
> Is there a way in Ant of doing a copy based on data which only becomes
> available during the build process ?

Write the filename list, one line per filename, to a text file and use a
@includesfile to refer to that file.  E.g., from one of my projects:

    <copy
        todir="${build.dir}/${epub}/OPS">
      <fileset dir="${notes.dir}"
               includesfile="${build.dir}/${epub}-figurelist.txt" />
    </copy>

Regards,


Tony Graham                                   tgraham@mentea.net
Consultant                                 http://www.mentea.net
Mentea       13 Kelly's Bay Beach, Skerries, Co. Dublin, Ireland
 --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --
    XML, XSL-FO and XSLT consulting, training and programming



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]