Changeset 3302

Show
Ignore:
Timestamp:
05/03/08 18:03:37 (3 months ago)
Author:
borning
Message:

trying to debug cruisecontrol

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/opus_docs/build.xml

    r3301 r3302  
    11<project name="opus_docs" basedir="."> 
    2 <echo>starting opus_docs build</echo> 
     2    <echo>entering opus_docs build</echo> 
    33        <property name="webdir" value="/projects/urbansim5/www.urbansim.org/" /> 
    44        <property name="pythonpathdir" value="${basedir}/.." /> 
    55        <property environment="env" /> 
    6 <echo>starting build-latex-docs </echo> 
    76 
     7    <echo>defining build-latex-docs </echo> 
    88        <target name="build-latex-docs"> 
     9        <echo>starting build-latex-docs </echo> 
    910                <exec executable="python" failonerror="true"> 
    1011                        <env key="PYTHONPATH" path="${pythonpathdir}:${env.PYTHONPATH}" /> 
     
    1213                </exec> 
    1314        </target> 
    14 <echo>starting build-tutorials</echo> 
    1515 
     16    <echo>defining build-tutorials</echo> 
    1617        <target name="build-tutorials"> 
     18            <echo>starting build-tutorials</echo> 
    1719                <exec executable="python" failonerror="true"> 
    1820                        <env key="PYTHONPATH" path="${pythonpathdir}:${env.PYTHONPATH}" /> 
     
    2022                </exec> 
    2123        </target> 
    22 <echo>starting copy-to-webserver</echo> 
    23  
     24         
     25    <echo>defining copy-to-webserver</echo> 
    2426        <target name="copy-to-webserver"> 
     27            <echo>starting copy-to-webserver</echo> 
    2528                <move file="${basedir}/manual/opus-userguide.pdf" tofile="${webdir}/docs/opus-userguide.pdf" /> 
    2629                <move file="${basedir}/manual/opus-userguide" tofile="${webdir}/docs/opus-userguide" /> 
     
    3639 
    3740        <target name="cruisecontrol" depends="build-latex-docs, build-tutorials, copy-to-webserver" /> 
     41    <echo>leaving opus_docs build</echo> 
    3842 
    3943</project>