eric7/Documentation/Source/eric7.Plugins.VcsPlugins.vcsSubversion.subversion.html

branch
eric7
changeset 8623
fced5aa98d41
parent 8596
d64760b2da50
child 8652
8cacde11f4fd
equal deleted inserted replaced
8622:149d51870ce8 8623:fced5aa98d41
161 <tr> 161 <tr>
162 <td><a href="#Subversion.svnRepoBrowser">svnRepoBrowser</a></td> 162 <td><a href="#Subversion.svnRepoBrowser">svnRepoBrowser</a></td>
163 <td>Public method to open the repository browser.</td> 163 <td>Public method to open the repository browser.</td>
164 </tr> 164 </tr>
165 <tr> 165 <tr>
166 <td><a href="#Subversion.svnResolve">svnResolve</a></td>
167 <td>Public method used to resolve conflicts of a file/directory.</td>
168 </tr>
169 <tr>
170 <td><a href="#Subversion.svnSbsDiff">svnSbsDiff</a></td>
171 <td>Public method used to view the difference of a file to the Mercurial repository side-by-side.</td>
172 </tr>
173 <tr>
174 <td><a href="#Subversion.svnSetProp">svnSetProp</a></td> 166 <td><a href="#Subversion.svnSetProp">svnSetProp</a></td>
175 <td>Public method used to add a property to a file/directory.</td> 167 <td>Public method used to add a property to a file/directory.</td>
176 </tr> 168 </tr>
177 <tr> 169 <tr>
178 <td><a href="#Subversion.svnShowChangelists">svnShowChangelists</a></td> 170 <td><a href="#Subversion.svnShowChangelists">svnShowChangelists</a></td>
237 <tr> 229 <tr>
238 <td><a href="#Subversion.vcsExport">vcsExport</a></td> 230 <td><a href="#Subversion.vcsExport">vcsExport</a></td>
239 <td>Public method used to export a directory from the Subversion repository.</td> 231 <td>Public method used to export a directory from the Subversion repository.</td>
240 </tr> 232 </tr>
241 <tr> 233 <tr>
234 <td><a href="#Subversion.vcsForget">vcsForget</a></td>
235 <td>Public method used to remove a file from the repository.</td>
236 </tr>
237 <tr>
242 <td><a href="#Subversion.vcsGetProjectBrowserHelper">vcsGetProjectBrowserHelper</a></td> 238 <td><a href="#Subversion.vcsGetProjectBrowserHelper">vcsGetProjectBrowserHelper</a></td>
243 <td>Public method to instanciate a helper object for the different project browsers.</td> 239 <td>Public method to instanciate a helper object for the different project browsers.</td>
244 </tr> 240 </tr>
245 <tr> 241 <tr>
246 <td><a href="#Subversion.vcsGetProjectHelper">vcsGetProjectHelper</a></td> 242 <td><a href="#Subversion.vcsGetProjectHelper">vcsGetProjectHelper</a></td>
293 <tr> 289 <tr>
294 <td><a href="#Subversion.vcsRepositoryInfos">vcsRepositoryInfos</a></td> 290 <td><a href="#Subversion.vcsRepositoryInfos">vcsRepositoryInfos</a></td>
295 <td>Public method to retrieve information about the repository.</td> 291 <td>Public method to retrieve information about the repository.</td>
296 </tr> 292 </tr>
297 <tr> 293 <tr>
294 <td><a href="#Subversion.vcsResolved">vcsResolved</a></td>
295 <td>Public method used to resolve conflicts of a file/directory.</td>
296 </tr>
297 <tr>
298 <td><a href="#Subversion.vcsRevert">vcsRevert</a></td> 298 <td><a href="#Subversion.vcsRevert">vcsRevert</a></td>
299 <td>Public method used to revert changes made to a file/directory.</td> 299 <td>Public method used to revert changes made to a file/directory.</td>
300 </tr>
301 <tr>
302 <td><a href="#Subversion.vcsSbsDiff">vcsSbsDiff</a></td>
303 <td>Public method used to view the difference of a file to the Mercurial repository side-by-side.</td>
300 </tr> 304 </tr>
301 <tr> 305 <tr>
302 <td><a href="#Subversion.vcsShutdown">vcsShutdown</a></td> 306 <td><a href="#Subversion.vcsShutdown">vcsShutdown</a></td>
303 <td>Public method used to shutdown the Subversion interface.</td> 307 <td>Public method used to shutdown the Subversion interface.</td>
304 </tr> 308 </tr>
828 <dt><i>projectPath</i></dt> 832 <dt><i>projectPath</i></dt>
829 <dd> 833 <dd>
830 path name of the project (string) 834 path name of the project (string)
831 </dd> 835 </dd>
832 </dl> 836 </dl>
833 <a NAME="Subversion.svnResolve" ID="Subversion.svnResolve"></a>
834 <h4>Subversion.svnResolve</h4>
835 <b>svnResolve</b>(<i>name</i>)
836
837 <p>
838 Public method used to resolve conflicts of a file/directory.
839 </p>
840 <dl>
841
842 <dt><i>name</i></dt>
843 <dd>
844 file/directory name to be resolved (string)
845 </dd>
846 </dl>
847 <a NAME="Subversion.svnSbsDiff" ID="Subversion.svnSbsDiff"></a>
848 <h4>Subversion.svnSbsDiff</h4>
849 <b>svnSbsDiff</b>(<i>name, extended=False, revisions=None</i>)
850
851 <p>
852 Public method used to view the difference of a file to the Mercurial
853 repository side-by-side.
854 </p>
855 <dl>
856
857 <dt><i>name</i></dt>
858 <dd>
859 file name to be diffed (string)
860 </dd>
861 <dt><i>extended</i></dt>
862 <dd>
863 flag indicating the extended variant (boolean)
864 </dd>
865 <dt><i>revisions</i></dt>
866 <dd>
867 tuple of two revisions (tuple of strings)
868 </dd>
869 </dl>
870 <dl>
871
872 <dt>Raises <b>ValueError</b>:</dt>
873 <dd>
874 raised to indicate an illegal name parameter type
875 </dd>
876 </dl>
877 <a NAME="Subversion.svnSetProp" ID="Subversion.svnSetProp"></a> 837 <a NAME="Subversion.svnSetProp" ID="Subversion.svnSetProp"></a>
878 <h4>Subversion.svnSetProp</h4> 838 <h4>Subversion.svnSetProp</h4>
879 <b>svnSetProp</b>(<i>name, recursive=False</i>) 839 <b>svnSetProp</b>(<i>name, recursive=False</i>)
880 840
881 <p> 841 <p>
1223 <dt>Return:</dt> 1183 <dt>Return:</dt>
1224 <dd> 1184 <dd>
1225 flag indicating an execution without errors (boolean) 1185 flag indicating an execution without errors (boolean)
1226 </dd> 1186 </dd>
1227 </dl> 1187 </dl>
1188 <a NAME="Subversion.vcsForget" ID="Subversion.vcsForget"></a>
1189 <h4>Subversion.vcsForget</h4>
1190 <b>vcsForget</b>(<i>name</i>)
1191
1192 <p>
1193 Public method used to remove a file from the repository.
1194 </p>
1195 <p>
1196 Note: svn does not support this operation. The method is implemented
1197 as a NoOp.
1198 </p>
1199 <dl>
1200
1201 <dt><i>name</i> (str or list of str)</dt>
1202 <dd>
1203 file/directory name to be removed
1204 </dd>
1205 </dl>
1228 <a NAME="Subversion.vcsGetProjectBrowserHelper" ID="Subversion.vcsGetProjectBrowserHelper"></a> 1206 <a NAME="Subversion.vcsGetProjectBrowserHelper" ID="Subversion.vcsGetProjectBrowserHelper"></a>
1229 <h4>Subversion.vcsGetProjectBrowserHelper</h4> 1207 <h4>Subversion.vcsGetProjectBrowserHelper</h4>
1230 <b>vcsGetProjectBrowserHelper</b>(<i>browser, project, isTranslationsBrowser=False</i>) 1208 <b>vcsGetProjectBrowserHelper</b>(<i>browser, project, isTranslationsBrowser=False</i>)
1231 1209
1232 <p> 1210 <p>
1566 <dt>Return:</dt> 1544 <dt>Return:</dt>
1567 <dd> 1545 <dd>
1568 string with ready formated info for display (string) 1546 string with ready formated info for display (string)
1569 </dd> 1547 </dd>
1570 </dl> 1548 </dl>
1549 <a NAME="Subversion.vcsResolved" ID="Subversion.vcsResolved"></a>
1550 <h4>Subversion.vcsResolved</h4>
1551 <b>vcsResolved</b>(<i>name</i>)
1552
1553 <p>
1554 Public method used to resolve conflicts of a file/directory.
1555 </p>
1556 <dl>
1557
1558 <dt><i>name</i></dt>
1559 <dd>
1560 file/directory name to be resolved (string)
1561 </dd>
1562 </dl>
1571 <a NAME="Subversion.vcsRevert" ID="Subversion.vcsRevert"></a> 1563 <a NAME="Subversion.vcsRevert" ID="Subversion.vcsRevert"></a>
1572 <h4>Subversion.vcsRevert</h4> 1564 <h4>Subversion.vcsRevert</h4>
1573 <b>vcsRevert</b>(<i>name</i>) 1565 <b>vcsRevert</b>(<i>name</i>)
1574 1566
1575 <p> 1567 <p>
1576 Public method used to revert changes made to a file/directory. 1568 Public method used to revert changes made to a file/directory.
1577 </p> 1569 </p>
1578 <dl> 1570 <dl>
1579 1571
1580 <dt><i>name</i></dt> 1572 <dt><i>name</i> (str)</dt>
1581 <dd> 1573 <dd>
1582 file/directory name to be reverted (string) 1574 file/directory name to be reverted
1575 </dd>
1576 </dl>
1577 <dl>
1578 <dt>Return:</dt>
1579 <dd>
1580 flag indicating, that the update contained an add
1581 or delete
1582 </dd>
1583 </dl>
1584 <dl>
1585 <dt>Return Type:</dt>
1586 <dd>
1587 bool
1588 </dd>
1589 </dl>
1590 <a NAME="Subversion.vcsSbsDiff" ID="Subversion.vcsSbsDiff"></a>
1591 <h4>Subversion.vcsSbsDiff</h4>
1592 <b>vcsSbsDiff</b>(<i>name, extended=False, revisions=None</i>)
1593
1594 <p>
1595 Public method used to view the difference of a file to the Mercurial
1596 repository side-by-side.
1597 </p>
1598 <dl>
1599
1600 <dt><i>name</i></dt>
1601 <dd>
1602 file name to be diffed (string)
1603 </dd>
1604 <dt><i>extended</i></dt>
1605 <dd>
1606 flag indicating the extended variant (boolean)
1607 </dd>
1608 <dt><i>revisions</i></dt>
1609 <dd>
1610 tuple of two revisions (tuple of strings)
1611 </dd>
1612 </dl>
1613 <dl>
1614
1615 <dt>Raises <b>ValueError</b>:</dt>
1616 <dd>
1617 raised to indicate an illegal name parameter type
1583 </dd> 1618 </dd>
1584 </dl> 1619 </dl>
1585 <a NAME="Subversion.vcsShutdown" ID="Subversion.vcsShutdown"></a> 1620 <a NAME="Subversion.vcsShutdown" ID="Subversion.vcsShutdown"></a>
1586 <h4>Subversion.vcsShutdown</h4> 1621 <h4>Subversion.vcsShutdown</h4>
1587 <b>vcsShutdown</b>(<i></i>) 1622 <b>vcsShutdown</b>(<i></i>)

eric ide

mercurial