Changeset 18 in tailor


Ignore:
Timestamp:
06/21/04 20:53:03 (9 years ago)
Author:
lele@…
Hash name:
20040621185303-97f81-89bd37986b5cb6d696a25990588fe9cd9094b4d1
Message:

Some docs here and there

Location:
vcpx
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • vcpx/cvs.py

    r17 r18  
    55# :Autore:   Lele Gaifax <lele@nautilus.homeip.net> 
    66#  
     7 
     8""" 
     9This module contains supporting classes for CVS. To get a 
     10cross-repository revision number ala Subversion, the implementation 
     11uses `cvsps` to fetch the changes from the upstream repository. 
     12""" 
    713 
    814__docformat__ = 'reStructuredText' 
     
    7985                    SyncronizableTargetWorkingDir): 
    8086 
     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     
    81103    ## UpdatableSourceWorkingDir 
    82104     
  • vcpx/darcs.py

    r17 r18  
    55# :Autore:   Lele Gaifax <lele@nautilus.homeip.net> 
    66#  
     7 
     8""" 
     9This module contains supporting classes for the `darcs` versioning system. 
     10""" 
    711 
    812__docformat__ = 'reStructuredText' 
  • vcpx/svn.py

    r16 r18  
    55# :Autore:   Lele Gaifax <lele@nautilus.homeip.net> 
    66# 
     7 
     8""" 
     9This module contains supporting classes for Subversion. 
     10""" 
    711 
    812__docformat__ = 'reStructuredText' 
Note: See TracChangeset for help on using the changeset viewer.