Changeset 239
- Timestamp:
- 09/10/07 15:19:46 (10 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/docs/phing_guide/book/chapters/appendixes/AppendixC-OptionalTasks.html
r226 r239 23 23 implement the tasks. So if you are searching for the reference to the <code><phplint></code> 24 24 tag, for example, you will want to look at the reference of PhpLintTask. </p> 25 25 26 26 <h2><a name="DbDeployTask"></a>DbDeployTask</h2> 27 27 <p>The <em>DbDeployTask</em> creates .sql files for making revisions to a database, based on dbdeploy conventions centering around a changelog table in the database. See <a href="http://dbdeploy.com/documentation/getting-started/rules-for-using-dbdeploy/">rules for using dbdeploy</a> for more information. You will need a changelog table like so:</p> … … 40 40 <taskdef name="dbdeploy" classname="phing.tasks.ext.dbdeploy.DbDeployTask"/> 41 41 42 <dbdeploy 42 <dbdeploy 43 43 url="sqlite:${project.basedir}/data/db.sqlite"> 44 44 userid="dbdeploy" … … 914 914 <h3>Examples</h3> 915 915 <pre> 916 <phpdoc title=" Phing Documentation" \916 <phpdoc title="API Documentation" 917 917 destdir="apidocs" 918 source path="classes/phing"918 sourcecode="no" 919 919 output="HTML:Smarty:PHP"> 920 <fileset dir="./classes" >921 <include name="**/*.php" >920 <fileset dir="./classes"> 921 <include name="**/*.php" /> 922 922 </fileset> 923 <projdocfileset dir="." >924 <include name="README" >925 <include name="INSTALL" >926 <include name="CHANGELOG" >923 <projdocfileset dir="."> 924 <include name="README" /> 925 <include name="INSTALL" /> 926 <include name="CHANGELOG" /> 927 927 </projdocfileset> 928 928 </phpdoc>
