Changeset 239

Show
Ignore:
Timestamp:
09/10/07 15:19:46 (10 months ago)
Author:
mrook
Message:

Fix typos and attribute (closes issue #143)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/docs/phing_guide/book/chapters/appendixes/AppendixC-OptionalTasks.html

    r226 r239  
    2323  implement the tasks. So if you are searching for the reference to the <code>&lt;phplint&gt;</code> 
    2424  tag, for example, you will want to look at the reference of PhpLintTask. </p> 
    25    
     25 
    2626<h2><a name="DbDeployTask"></a>DbDeployTask</h2> 
    2727<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> 
     
    4040&lt;taskdef name=&quot;dbdeploy&quot; classname=&quot;phing.tasks.ext.dbdeploy.DbDeployTask&quot;/&gt; 
    4141 
    42 &lt;dbdeploy  
     42&lt;dbdeploy 
    4343  url=&quot;sqlite:${project.basedir}/data/db.sqlite&quot;&gt; 
    4444  userid=&quot;dbdeploy&quot; 
     
    914914<h3>Examples</h3> 
    915915<pre> 
    916 &lt;phpdoc title=&quot;Phing Documentation&quot; \ 
     916&lt;phpdoc title=&quot;API Documentation&quot; 
    917917  destdir=&quot;apidocs&quot; 
    918   sourcepath=&quot;classes/phing&quot; 
     918  sourcecode=&quot;no&quot; 
    919919  output=&quot;HTML:Smarty:PHP&quot;&gt; 
    920    &lt;fileset dir=&quot;./classes&quot; &gt; 
    921       &lt;include name=&quot;**/*.php&quot;&gt; 
     920   &lt;fileset dir=&quot;./classes&quot;&gt; 
     921      &lt;include name=&quot;**/*.php&quot; /&gt; 
    922922   &lt;/fileset&gt; 
    923    &lt;projdocfileset dir=&quot;.&quot; &gt; 
    924       &lt;include name=&quot;README&quot;&gt; 
    925       &lt;include name=&quot;INSTALL&quot;&gt; 
    926       &lt;include name=&quot;CHANGELOG&quot;&gt; 
     923   &lt;projdocfileset dir=&quot;.&quot;&gt; 
     924      &lt;include name=&quot;README&quot; /&gt; 
     925      &lt;include name=&quot;INSTALL&quot; /&gt; 
     926      &lt;include name=&quot;CHANGELOG&quot; /&gt; 
    927927   &lt;/projdocfileset&gt; 
    928928&lt;/phpdoc&gt;