Changeset 18 in tailor
- Timestamp:
- 06/21/04 20:53:03 (9 years ago)
- Hash name:
- 20040621185303-97f81-89bd37986b5cb6d696a25990588fe9cd9094b4d1
- Location:
- vcpx
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
vcpx/cvs.py
r17 r18 5 5 # :Autore: Lele Gaifax <lele@nautilus.homeip.net> 6 6 # 7 8 """ 9 This module contains supporting classes for CVS. To get a 10 cross-repository revision number ala Subversion, the implementation 11 uses `cvsps` to fetch the changes from the upstream repository. 12 """ 7 13 8 14 __docformat__ = 'reStructuredText' … … 79 85 SyncronizableTargetWorkingDir): 80 86 87 """ 88 An instance of this class represent a read/write CVS working directory, 89 so that it can be used both as source of patches, or as a target 90 repository. 91 92 They use `cvsps` to actual fetch the changesets metadata from the 93 server, so that we can reasonably group related changes that would 94 otherwise be sparsed, as CVS is file-centric. 95 96 To accomodate this, the last revision (from cvsps point of view) 97 imported in the repository is stored in a file in the `CVS` 98 directory at the root of the working copy. This shouldn't 99 interfere with the normal operations, but since the file isn't 100 versioned you may easily loose it.... 101 """ 102 81 103 ## UpdatableSourceWorkingDir 82 104 -
vcpx/darcs.py
r17 r18 5 5 # :Autore: Lele Gaifax <lele@nautilus.homeip.net> 6 6 # 7 8 """ 9 This module contains supporting classes for the `darcs` versioning system. 10 """ 7 11 8 12 __docformat__ = 'reStructuredText' -
vcpx/svn.py
r16 r18 5 5 # :Autore: Lele Gaifax <lele@nautilus.homeip.net> 6 6 # 7 8 """ 9 This module contains supporting classes for Subversion. 10 """ 7 11 8 12 __docformat__ = 'reStructuredText'
Note: See TracChangeset
for help on using the changeset viewer.
