[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]
Subject: Re: [docbook-apps] Re: docbook-xsl 'graphics'
Boris Schaeling wrote:
> What program do you use to upload your book?
ftp.
fireftp, ftp plugin for firefox
I also ask as I wonder if I
> can improve my publishing process: I build my books on my local computer
> and use then another program to upload only HTML files (and referenced
> files).
I have used ant, which is very efficient.
<target name="upload" depends ="docbook">
<ftp server="upload.ftp. interface"
userid="username"
password="password"
passive="yes"
remotedir="${upload.target.dir}"
verbose="yes"
>
<fileset dir="html">
<include name="**/*.html"/>
<include name="graphics/*.png"/>
<include name="graphics/callouts/*.png"/>
</fileset>
</ftp>
<tstamp>
<format property="fintim" pattern="E @ H:m a" locale="en,UK"/>
</tstamp>
<echo>Finished on ${fintim}</echo>
</target>
HTH
regards
--
Dave Pawson
XSLT XSL-FO FAQ.
http://www.dpawson.co.uk
[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]