Changeset 745 in tailor


Ignore:
Timestamp:
09/02/05 15:07:46 (8 years ago)
Author:
lele@…
Hash name:
20050902130746-97f81-68846274e015a8515a796993a2e3ca7cea845a04
Message:

Forward port of documentation fixes by D.Love

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • vcpx/cvsps.py

    r680 r745  
    88""" 
    99This module contains supporting classes for CVS. To get a 
    10 cross-repository revision number ala Subversion, the implementation 
     10cross-repository revision number a la Subversion, the implementation 
    1111uses `cvsps` to fetch the changes from the upstream repository. 
    1212""" 
     
    134134 
    135135    """ 
    136     An instance of this class represent a read/write CVS working directory, 
    137     so that it can be used both as source of patches, or as a target 
    138     repository. 
     136    An instance of this class represents a read/write CVS working 
     137    directory, so that it can be used both as a source of patches and 
     138    as a target repository. 
    139139 
    140140    It uses `cvsps` to do the actual fetch of the changesets metadata 
     
    215215            # and thus new_revision is always None for them), and it's 
    216216            # going to be deleted, do not execute a 'cvs update', that 
    217             # in some cases does not what one would expect. Instead, 
     217            # in some cases does not do what one would expect. Instead, 
    218218            # remove it with everything it contains (that should be 
    219219            # just a single "CVS" subdir, btw) 
     
    254254    def _checkoutUpstreamRevision(self, revision): 
    255255        """ 
    256         Concretely do the checkout of the upstream sources. Use `revision` as 
    257         the name of the tag to get, or as a date if it starts with a number. 
     256        Concretely do the checkout of the upstream sources. Use 
     257        `revision` as the name of the tag to get, or as a date if it 
     258        starts with a number. 
    258259 
    259260        Return the last applied changeset. 
     
    376377        Verify that the hierarchy down to the entry is under CVS. 
    377378 
    378         If the directory containing the entry does not exists, 
    379         create it and make it appear as under CVS so that succeding 
     379        If the directory containing the entry does not exist, 
     380        create it and make it appear as under CVS so that a subsequent 
    380381        'cvs update' will work. 
    381382        """ 
     
    423424 
    424425            # Add the "new" directory to the changeset, so that the 
    425             # replayer get its name 
     426            # replayer gets its name 
    426427 
    427428            entry = changeset.addEntry(path, None) 
  • vcpx/darcs.py

    r676 r745  
    433433        from os import rename 
    434434 
    435         # Check to see if the oldentry is still there. If it does, 
     435        # Check to see if the oldentry is still there. If it is, 
    436436        # that probably means one thing: it's been moved and then 
    437437        # replaced, see svn 'R' event. In this case, rename the 
  • vcpx/tailor.py

    r736 r745  
    140140            # Make printouts be encoded as well. A better solution would be 
    141141            # using the replace mechanism of the encoder, and keep printing 
    142             # in the user LC_CTYPE/LANG setting. 
     142            # in the user's LC_CTYPE/LANG setting. 
    143143 
    144144            import codecs, sys 
     
    185185    RecogOption("--encoding", metavar="CHARSET", default=None, 
    186186                help="Force the output encoding to given CHARSET, rather " 
    187                      "then using the user default settings specified in the " 
    188                      "environment."), 
     187                     "then using the user's default settings specified " 
     188                     "in the environment."), 
    189189] 
    190190 
     
    201201                default=False, 
    202202                help="Remove the first line of the upstream changelog. This " 
    203                      "is intended to go in pair with --patch-name-format, " 
    204                      "when using it's 'firstlogline' variable to build the " 
     203                     "is intended to pair with --patch-name-format, " 
     204                     "when using its 'firstlogline' variable to build the " 
    205205                     "name of the patch."), 
    206206    RecogOption("-N", "--refill-changelogs", action="store_true", 
     
    232232                     "with a slash. Since it's used in the description of the " 
    233233                     "target repository, you may want to give it a value with " 
    234                      "darcs too even if it is otherwise ignored."), 
     234                     "darcs too, even though it is otherwise ignored."), 
    235235    RecogOption("-r", "--revision", "--start-revision", dest="start_revision", 
    236236                metavar="REV", 
  • README

    r725 r745  
    8585 
    8686There's even a standard setup.py that you may use to install the 
    87 script using Python conventional distutils. 
     87script using Python's conventional distutils. 
    8888 
    8989.. [#] Darcs 1.0.2 is too old, 1.0.3 is good, 1.0.4 (the fourth 
     
    594594also a `wiki page`_ that may give you some other hints.  The 
    595595development of Tailor is mainly driven by user requests at this point, 
    596 and the preferred comunication media is the dedicated `mailing list`_ 
     596and the preferred comunication medium is the dedicated `mailing list`_ 
    597597[#]_. 
    598598 
     
    604604    
    605605I will be more than happy to answer any doubt, question or suggestion 
    606 you may have on it. I'm usually hanging as "lelit" on the IRC channel 
    607 devoted to darcs on the `freenode.net` network. Do not hesitate to 
    608 contact me either by email or chatting there. 
     606you may have on it. I'm usually hanging out as "lelit" on the IRC 
     607channel devoted to darcs on the `freenode.net` network. Do not 
     608hesitate to contact me either by email or chatting there. 
    609609 
    610610.. [#] I wish to say a big `Thank you` to `Zooko <zooko@zooko.com>`_, 
Note: See TracChangeset for help on using the changeset viewer.