258 <td><a href="#Subversion.vcsImport">vcsImport</a></td> |
258 <td><a href="#Subversion.vcsImport">vcsImport</a></td> |
259 <td>Public method used to import the project into the Subversion repository.</td> |
259 <td>Public method used to import the project into the Subversion repository.</td> |
260 </tr> |
260 </tr> |
261 <tr> |
261 <tr> |
262 <td><a href="#Subversion.vcsInit">vcsInit</a></td> |
262 <td><a href="#Subversion.vcsInit">vcsInit</a></td> |
263 <td></td> |
263 <td>Public method used to initialize the subversion repository.</td> |
264 </tr> |
264 </tr> |
265 <tr> |
265 <tr> |
266 <td><a href="#Subversion.vcsInitConfig">vcsInitConfig</a></td> |
266 <td><a href="#Subversion.vcsInitConfig">vcsInitConfig</a></td> |
267 <td></td> |
267 <td>Public method to initialize the VCS configuration.</td> |
268 </tr> |
268 </tr> |
269 <tr> |
269 <tr> |
270 <td><a href="#Subversion.vcsLogBrowser">vcsLogBrowser</a></td> |
270 <td><a href="#Subversion.vcsLogBrowser">vcsLogBrowser</a></td> |
271 <td>Public method used to browse the log of a file/directory from the Subversion repository.</td> |
271 <td>Public method used to browse the log of a file/directory from the Subversion repository.</td> |
272 </tr> |
272 </tr> |
294 <td><a href="#Subversion.vcsRegisteredState">vcsRegisteredState</a></td> |
294 <td><a href="#Subversion.vcsRegisteredState">vcsRegisteredState</a></td> |
295 <td>Public method used to get the registered state of a file in the vcs.</td> |
295 <td>Public method used to get the registered state of a file in the vcs.</td> |
296 </tr> |
296 </tr> |
297 <tr> |
297 <tr> |
298 <td><a href="#Subversion.vcsRemove">vcsRemove</a></td> |
298 <td><a href="#Subversion.vcsRemove">vcsRemove</a></td> |
299 <td></td> |
299 <td>Public method used to remove a file/directory from the Subversion repository.</td> |
300 </tr> |
300 </tr> |
301 <tr> |
301 <tr> |
302 <td><a href="#Subversion.vcsRepositoryInfos">vcsRepositoryInfos</a></td> |
302 <td><a href="#Subversion.vcsRepositoryInfos">vcsRepositoryInfos</a></td> |
303 <td>Public method to retrieve information about the repository.</td> |
303 <td>Public method to retrieve information about the repository.</td> |
304 </tr> |
304 </tr> |
1343 </dl> |
1343 </dl> |
1344 <a NAME="Subversion.vcsInit" ID="Subversion.vcsInit"></a> |
1344 <a NAME="Subversion.vcsInit" ID="Subversion.vcsInit"></a> |
1345 <h4>Subversion.vcsInit</h4> |
1345 <h4>Subversion.vcsInit</h4> |
1346 <b>vcsInit</b>(<i>vcsDir, noDialog=False</i>) |
1346 <b>vcsInit</b>(<i>vcsDir, noDialog=False</i>) |
1347 |
1347 |
|
1348 <p> |
|
1349 Public method used to initialize the subversion repository. |
|
1350 </p> |
|
1351 <p> |
|
1352 The subversion repository has to be initialized from outside eric |
|
1353 because the respective command always works locally. Therefore we |
|
1354 always return TRUE without doing anything. |
|
1355 </p> |
|
1356 <dl> |
|
1357 |
|
1358 <dt><i>vcsDir</i></dt> |
|
1359 <dd> |
|
1360 name of the VCS directory (string) |
|
1361 </dd> |
|
1362 <dt><i>noDialog</i></dt> |
|
1363 <dd> |
|
1364 flag indicating quiet operations (boolean) |
|
1365 </dd> |
|
1366 </dl> |
|
1367 <dl> |
|
1368 <dt>Return:</dt> |
|
1369 <dd> |
|
1370 always TRUE |
|
1371 </dd> |
|
1372 </dl> |
1348 <a NAME="Subversion.vcsInitConfig" ID="Subversion.vcsInitConfig"></a> |
1373 <a NAME="Subversion.vcsInitConfig" ID="Subversion.vcsInitConfig"></a> |
1349 <h4>Subversion.vcsInitConfig</h4> |
1374 <h4>Subversion.vcsInitConfig</h4> |
1350 <b>vcsInitConfig</b>(<i>project</i>) |
1375 <b>vcsInitConfig</b>(<i>project</i>) |
1351 |
1376 |
|
1377 <p> |
|
1378 Public method to initialize the VCS configuration. |
|
1379 </p> |
|
1380 <p> |
|
1381 This method ensures, that an ignore file exists. |
|
1382 </p> |
|
1383 <dl> |
|
1384 |
|
1385 <dt><i>project</i></dt> |
|
1386 <dd> |
|
1387 reference to the project (Project) |
|
1388 </dd> |
|
1389 </dl> |
1352 <a NAME="Subversion.vcsLogBrowser" ID="Subversion.vcsLogBrowser"></a> |
1390 <a NAME="Subversion.vcsLogBrowser" ID="Subversion.vcsLogBrowser"></a> |
1353 <h4>Subversion.vcsLogBrowser</h4> |
1391 <h4>Subversion.vcsLogBrowser</h4> |
1354 <b>vcsLogBrowser</b>(<i>name, isFile=False</i>) |
1392 <b>vcsLogBrowser</b>(<i>name, isFile=False</i>) |
1355 |
1393 |
1356 <p> |
1394 <p> |
1504 </dl> |
1542 </dl> |
1505 <a NAME="Subversion.vcsRemove" ID="Subversion.vcsRemove"></a> |
1543 <a NAME="Subversion.vcsRemove" ID="Subversion.vcsRemove"></a> |
1506 <h4>Subversion.vcsRemove</h4> |
1544 <h4>Subversion.vcsRemove</h4> |
1507 <b>vcsRemove</b>(<i>name, project=False, noDialog=False</i>) |
1545 <b>vcsRemove</b>(<i>name, project=False, noDialog=False</i>) |
1508 |
1546 |
|
1547 <p> |
|
1548 Public method used to remove a file/directory from the Subversion |
|
1549 repository. |
|
1550 </p> |
|
1551 <p> |
|
1552 The default operation is to remove the local copy as well. |
|
1553 </p> |
|
1554 <dl> |
|
1555 |
|
1556 <dt><i>name</i></dt> |
|
1557 <dd> |
|
1558 file/directory name to be removed (string or list of |
|
1559 strings)) |
|
1560 </dd> |
|
1561 <dt><i>project</i></dt> |
|
1562 <dd> |
|
1563 flag indicating deletion of a project tree (boolean) |
|
1564 (not needed) |
|
1565 </dd> |
|
1566 <dt><i>noDialog</i></dt> |
|
1567 <dd> |
|
1568 flag indicating quiet operations |
|
1569 </dd> |
|
1570 </dl> |
|
1571 <dl> |
|
1572 <dt>Return:</dt> |
|
1573 <dd> |
|
1574 flag indicating successfull operation (boolean) |
|
1575 </dd> |
|
1576 </dl> |
1509 <a NAME="Subversion.vcsRepositoryInfos" ID="Subversion.vcsRepositoryInfos"></a> |
1577 <a NAME="Subversion.vcsRepositoryInfos" ID="Subversion.vcsRepositoryInfos"></a> |
1510 <h4>Subversion.vcsRepositoryInfos</h4> |
1578 <h4>Subversion.vcsRepositoryInfos</h4> |
1511 <b>vcsRepositoryInfos</b>(<i>ppath</i>) |
1579 <b>vcsRepositoryInfos</b>(<i>ppath</i>) |
1512 |
1580 |
1513 <p> |
1581 <p> |