Changeset 329

Show
Ignore:
Timestamp:
12/22/07 17:12:59 (6 months ago)
Author:
mrook
Message:

#200 - Add 'ignoreexternals attribute, fix some documentation

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2.3/classes/phing/tasks/ext/svn/SvnBaseTask.php

    r325 r329  
    144144 
    145145        /** 
    146          * Returns the forec switch 
     146         * Returns the force switch 
    147147         */ 
    148148        function getForce() 
     
    184184 
    185185        /** 
    186          * Sets the password of the user to export 
     186         * Sets the no-auth-cache switch 
    187187         */ 
    188188        function setNoCache($value) 
     
    192192 
    193193        /** 
    194          * Returns the password 
     194         * Returns the no-auth-cache switch 
    195195         */ 
    196196        function getNoCache() 
     
    200200         
    201201        /** 
    202          * Toggles recursive behavior 
     202         * Sets the non-recursive switch 
    203203         */ 
    204204        function setRecursive($value) 
     
    208208         
    209209        /** 
    210          * Returns status of recursive behavior 
     210         * Returns the non-recursive switch 
    211211         */ 
    212212        function getRecursive() 
    213213        { 
    214214                return isset( $this->svnSwitches['non-recursive'] ) ? $this->svnSwitches['non-recursive'] : ''; 
     215        } 
     216 
     217        /** 
     218         * Sets the ignore-externals switch 
     219         */ 
     220        function setIgnoreExternals($value) 
     221        { 
     222                $this->svnSwitches['ignore-externals'] = $value; 
     223        } 
     224         
     225        /** 
     226         * Returns the ignore-externals switch 
     227         */ 
     228        function getIgnoreExternals() 
     229        { 
     230                return isset( $this->svnSwitches['ignore-externals'] ) ? $this->svnSwitches['ignore-externals'] : ''; 
    215231        } 
    216232         
  • branches/2.3/docs/phing_guide/book/chapters/appendixes/AppendixC-OptionalTasks.html

    r328 r329  
    15761576      <td>Yes</td> 
    15771577    </tr> 
     1578    <tr> 
     1579      <td>recursive</td> 
     1580      <td>Boolean</td> 
     1581      <td>Recursive behavior</td> 
     1582      <td>true</td> 
     1583      <td>No</td> 
     1584    </tr> 
     1585    <tr> 
     1586      <td>ignoreexternals</td> 
     1587      <td>Boolean</td> 
     1588      <td>Ignore externals definitions</td> 
     1589      <td>false</td> 
     1590      <td>No</td> 
     1591    </tr> 
    15781592  </tbody> 
    15791593</table> 
     
    16601674      <td>Yes</td> 
    16611675    </tr> 
     1676    <tr> 
     1677      <td>recursive</td> 
     1678      <td>Boolean</td> 
     1679      <td>Recursive behavior</td> 
     1680      <td>true</td> 
     1681      <td>No</td> 
     1682    </tr> 
     1683    <tr> 
     1684      <td>ignoreexternals</td> 
     1685      <td>Boolean</td> 
     1686      <td>Ignore externals definitions</td> 
     1687      <td>false</td> 
     1688      <td>No</td> 
     1689    </tr> 
    16621690  </tbody> 
    16631691</table> 
     
    17671795    <tr> 
    17681796      <td>nocache</td> 
    1769       <td>String</td> 
     1797      <td>Boolean</td> 
    17701798      <td>Connection credentials will not be cached</td> 
    1771       <td>boolean</td> 
     1799      <td>false</td> 
    17721800      <td>No</td> 
    17731801    </tr> 
     
    17781806      <td>none</td> 
    17791807      <td>Yes</td> 
     1808    </tr> 
     1809    <tr> 
     1810      <td>recursive</td> 
     1811      <td>Boolean</td> 
     1812      <td>Recursive behavior</td> 
     1813      <td>true</td> 
     1814      <td>No</td> 
     1815    </tr> 
     1816    <tr> 
     1817      <td>ignoreexternals</td> 
     1818      <td>Boolean</td> 
     1819      <td>Ignore externals definitions</td> 
     1820      <td>false</td> 
     1821      <td>No</td> 
    17801822    </tr> 
    17811823  </tbody>