Changeset 1949 for trunk/build.xml

Show
Ignore:
Timestamp:
05/14/2007 06:52:34 AM (20 months ago)
Author:
xue
Message:

clean up build script.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r1918 r1949  
    5050    <exclude name="**/pradolite.php" /><!-- will be generated --> 
    5151    <exclude name="**/prado-cli.php" /><!-- will be copied later --> 
    52     <exclude name="framework/Configuration/**" /><!-- not ready yet --> 
    53     <exclude name="framework/Web/UI/WebControls/Login*.*" /><!-- not ready yet --> 
    54     <exclude name="**/Web/Security/**" /><!-- not ready yet --> 
    55     <exclude name="**/TFeedService.php" /><!-- not ready yet --> 
    56     <exclude name="**/IFeedContentProvider.php" /><!-- not ready yet --> 
    5752    <include name="framework/**/*"/> 
    5853  </fileset> 
     
    152147  </target> 
    153148 
    154    
    155149<!-- bulid compact prado package definitions --> 
    156150 
     
    158152    <mkdir dir="${build.compact.dir}" /> 
    159153        <mkdir dir="${build.compact.dir}/docs" /> 
    160         <mkdir dir="${build.compact.dir}/prado-db" />    
     154        <mkdir dir="${build.compact.dir}/prado-db" /> 
    161155    <compact-package output="${build.compact.dir}/prado-db/collections.php" strip="${compact-strip-comments}"> 
    162156      <filelist dir="framework" files="PradoBase.php,TComponent.php,Exceptions/TException.php,interfaces.php" /> 
     
    170164    <append destFile="${build.compact.dir}/readme.txt">PRADO Framework for PHP 5, version ${prado.version}. See docs/ directory for documentation.</append> 
    171165 
    172         <prado-quickstart-docs output="${build.compact.dir}/docs"  
    173                 pages="Advanced/Collections.page,Fundamentals/Components.page"/>   
     166        <prado-quickstart-docs output="${build.compact.dir}/docs" 
     167                pages="Advanced/Collections.page,Fundamentals/Components.page"/> 
    174168  </target> 
    175169