Changeset 879 in tailor


Ignore:
Timestamp:
10/05/05 14:27:13 (8 years ago)
Author:
Jelmer Vernooij <jelmer@…>
Hash name:
20051005122713-d4f9e-9466f1ee7eedf849536ed6d97876a16f50de142e
Message:

bzrng-replace-bzr
Remove the old 'bzr' backend and replace it with the 'bzrng' (bzrlib-based)
backend.

Files:
1 deleted
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • README

    r874 r879  
    512512more projects.  The first part of the name up to the first colon 
    513513indicates the `kind` of the repository, one of ``arx``, ``baz``, ``bzr``, 
    514 ``bzrng``, ``cdv``, ``cvs``, ``darcs``, ``git``, ``hg``, ``hglib``, 
    515 ``monotone``, ``svn``, ``svndump`` and ``tla``. 
     514``cdv``, ``cvs``, ``darcs``, ``git``, ``hg``, ``hglib``, ``monotone``,  
     515``svn``, ``svndump`` and ``tla``. 
    516516 
    517517When a repository is used as a `source`, it must indicate its origin 
     
    523523Each repository may then impose a particular external binary to be 
    524524used, as done in the example above for ``hg``. Actually two of them, 
    525 `bzrng` and `hglib`, accept an option ``python-path`` to indicate 
     525`bzr` and `hglib`, accept an option ``python-path`` to indicate 
    526526where the BazaarNG Python library is located. 
    527527 
     
    592592 
    593593    [project] 
    594     target = bzrng:target 
     594    target = bzr:target 
    595595    root-directory = /tmp/prova 
    596596    state-file = tailor.state 
     
    600600    start-revision = Almost arbitrarily tagging this as version 0.8 
    601601 
    602     [bzrng:target] 
     602    [bzr:target] 
    603603    python-path = /opt/src/bzr.dev 
    604604    subdir = bzrside 
  • vcpx/bzr.py

    r878 r879  
    2323import re 
    2424 
    25 class BzrngWorkingDir(UpdatableSourceWorkingDir, SyncronizableTargetWorkingDir): 
     25class BzrWorkingDir(UpdatableSourceWorkingDir, SyncronizableTargetWorkingDir): 
    2626    ## UpdatableSourceWorkingDir 
    2727 
    2828    def _changesetFromRevision(self, parent, revision): 
    2929        """ 
    30         Generate changeset for the given BzrNg revision 
     30        Generate changeset for the given Bzr revision 
    3131        """ 
    3232        from changes import ChangesetEntry, Changeset 
Note: See TracChangeset for help on using the changeset viewer.