Changeset 329
- Timestamp:
- 12/22/07 18:12:59 (3 years ago)
- Location:
- branches/2.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.3/classes/phing/tasks/ext/svn/SvnBaseTask.php
r325 r329 144 144 145 145 /** 146 * Returns the for ecswitch146 * Returns the force switch 147 147 */ 148 148 function getForce() … … 184 184 185 185 /** 186 * Sets the password of the user to export186 * Sets the no-auth-cache switch 187 187 */ 188 188 function setNoCache($value) … … 192 192 193 193 /** 194 * Returns the password194 * Returns the no-auth-cache switch 195 195 */ 196 196 function getNoCache() … … 200 200 201 201 /** 202 * Toggles recursive behavior202 * Sets the non-recursive switch 203 203 */ 204 204 function setRecursive($value) … … 208 208 209 209 /** 210 * Returns status of recursive behavior210 * Returns the non-recursive switch 211 211 */ 212 212 function getRecursive() 213 213 { 214 214 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'] : ''; 215 231 } 216 232 -
branches/2.3/docs/phing_guide/book/chapters/appendixes/AppendixC-OptionalTasks.html
r328 r329 1576 1576 <td>Yes</td> 1577 1577 </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> 1578 1592 </tbody> 1579 1593 </table> … … 1660 1674 <td>Yes</td> 1661 1675 </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> 1662 1690 </tbody> 1663 1691 </table> … … 1767 1795 <tr> 1768 1796 <td>nocache</td> 1769 <td> String</td>1797 <td>Boolean</td> 1770 1798 <td>Connection credentials will not be cached</td> 1771 <td> boolean</td>1799 <td>false</td> 1772 1800 <td>No</td> 1773 1801 </tr> … … 1778 1806 <td>none</td> 1779 1807 <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> 1780 1822 </tr> 1781 1823 </tbody>
Note: See TracChangeset
for help on using the changeset viewer.
