Changeset 85

Show
Ignore:
Timestamp:
07/10/06 12:37:02 (2 years ago)
Author:
bernhard
Message:

Fix for ticket #45 ("The user guide is not up-to-date: the whole includepath task and the classpath attribute of the nested phpunit2/batchtest tag are missing.")

Files:

Legend:

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

    r56 r85  
    723723</table> 
    724724 
     725<h2><a name="IfTask"></a>IfTask</h2> 
     726<p>Sets the PHP include_path configuration option for the duration of this phing run.</p> 
     727<h3>Example</h3> 
     728<pre>&lt;includepath classpath=&quot;new/path/here&quot; /&gt; 
     729&lt;includepath classpath=&quot;path1:path2&quot; /&gt;</pre> 
     730<h3>Attributes</h3> 
     731<table> 
     732  <thead> 
     733    <tr> 
     734      <th>Name</th> 
     735      <th>Type</th> 
     736      <th>Description</th> 
     737      <th>Default</th> 
     738      <th>Required</th> 
     739    </tr> 
     740  </thead> 
     741  <tbody> 
     742    <tr> 
     743      <td>classpath</td> 
     744      <td>String</td> 
     745      <td>the new include path[s]</td> 
     746      <td>n/a</td> 
     747      <td>Yes</td> 
     748    </tr> 
     749  </tbody> 
     750</table> 
     751 
    725752<h2><a name="ForeachTask"></a>ForeachTask</h2> 
    726753<p>The foreach task iterates over a list, a list of paths, or both. If both, list 
     
    778805  </tbody> 
    779806</table> 
     807 
     808<h2><a name="IncludePathTask"></a>IncludePathTask</h2> 
     809<p>Sets the PHP include_path configuration option for the duration of this phing run.</p> 
     810<h3>Example</h3> 
     811<pre>&lt;includepath classpath=&quot;new/path/here&quot; /&gt; 
     812&lt;includepath classpath=&quot;path1:path2&quot; /&gt;</pre> 
     813<h3>Attributes</h3> 
     814<table> 
     815  <thead> 
     816    <tr> 
     817      <th>Name</th> 
     818      <th>Type</th> 
     819      <th>Description</th> 
     820      <th>Default</th> 
     821      <th>Required</th> 
     822    </tr> 
     823  </thead> 
     824  <tbody> 
     825    <tr> 
     826      <td>classpath</td> 
     827      <td>String</td> 
     828      <td>the new include path[s]</td> 
     829      <td>n/a</td> 
     830      <td>Yes</td> 
     831    </tr> 
     832  </tbody> 
     833</table> 
     834 
    780835<h2><a name="InputTask"></a>InputTask</h2> 
    781836<p> The <em>InputTask</em> can be used to interactively set property values based 
     
    806861      <td>propertyName</td> 
    807862      <td>String</td> 
    808       <td> The name of the property to set.</td> 
     863      <td>The name of the property to set.</td> 
    809864      <td>n/a</td> 
    810865      <td>Yes</td> 
     
    813868      <td>defaultValue</td> 
    814869      <td>String</td> 
    815       <td> The default value to be set if no new value is provided.</td> 
     870      <td>The default value to be set if no new value is provided.</td> 
    816871      <td>n/a</td> 
    817872      <td>Yes</td> 
  • trunk/docs/phing_guide/book/chapters/appendixes/AppendixC-OptionalTasks.html

    r57 r85  
    642642                  <td>exclude</td> 
    643643                  <td>String</td> 
    644                   <td> A list of classes to exclude from the pattern matching. For example, when you have two baseclasses <em>BaseWebTest</em> and 
     644                  <td>A list of classes to exclude from the pattern matching. For example, when you have two baseclasses <em>BaseWebTest</em> and 
    645645                  <em>BaseMathTest</em>, which are included a number of testcases (and thus added to the list of testclasses), you can exclude those 
    646646                  classes from the list by typing <em>exclude=&quot;BaseWebTest BaseMathTest&quot;</em>.</td> 
     647                  <td>n/a</td> 
     648                  <td>No</td> 
     649                </tr> 
     650                <tr> 
     651                  <td>classpath</td> 
     652                  <td>String</td> 
     653                  <td>Used to define more paths on which - besides the PHP include_path - to look for the test files.</td> 
    647654                  <td>n/a</td> 
    648655                  <td>No</td> 
  • trunk/docs/phing_guide/book/toc/FrameToC.html

    r57 r85  
    9898<li><a href="../chapters/appendixes/AppendixB-CoreTasks.html#ExecTask" target="Content">ExecTask</a></li> 
    9999<li><a href="../chapters/appendixes/AppendixB-CoreTasks.html#ExitTask" target="Content">ExitTask</a></li> 
     100<li><a href="../chapters/appendixes/AppendixB-CoreTasks.html#IfTask" target="Content">IfTask</a></li> 
    100101<li><a href="../chapters/appendixes/AppendixB-CoreTasks.html#ForeachTask" target="Content">ForeachTask</a></li> 
     102<li><a href="../chapters/appendixes/AppendixB-CoreTasks.html#IncludePathTask" target="Content">IncludePathTask</a></li> 
    101103<li><a href="../chapters/appendixes/AppendixB-CoreTasks.html#InputTask" target="Content">InputTask</a></li> 
    102104<li><a href="../chapters/appendixes/AppendixB-CoreTasks.html#MkdirTask" target="Content">MkdirTask</a></li> 
  • trunk/docs/phing_guide/book/toc/ToC.html

    r57 r85  
    8383<li><a href="../chapters/appendixes/AppendixB-CoreTasks.html#ExecTask">ExecTask</a></li> 
    8484<li><a href="../chapters/appendixes/AppendixB-CoreTasks.html#ExitTask">ExitTask</a></li> 
     85<li><a href="../chapters/appendixes/AppendixB-CoreTasks.html#IfTask">IfTask</a></li> 
    8586<li><a href="../chapters/appendixes/AppendixB-CoreTasks.html#ForeachTask">ForeachTask</a></li> 
     87<li><a href="../chapters/appendixes/AppendixB-CoreTasks.html#IncludePathTask">IncludePathTask</a></li> 
    8688<li><a href="../chapters/appendixes/AppendixB-CoreTasks.html#InputTask">InputTask</a></li> 
    8789<li><a href="../chapters/appendixes/AppendixB-CoreTasks.html#MkdirTask">MkdirTask</a></li>