Changeset 879 in tailor
- Timestamp:
- 10/05/05 14:27:13 (8 years ago)
- Hash name:
- 20051005122713-d4f9e-9466f1ee7eedf849536ed6d97876a16f50de142e
- Files:
-
- 1 deleted
- 1 edited
- 1 moved
-
README (modified) (4 diffs)
-
vcpx/bzr.py (deleted)
-
vcpx/bzr.py (moved) (moved from vcpx/bzrng.py) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
README
r874 r879 512 512 more projects. The first part of the name up to the first colon 513 513 indicates 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``. 516 516 517 517 When a repository is used as a `source`, it must indicate its origin … … 523 523 Each repository may then impose a particular external binary to be 524 524 used, as done in the example above for ``hg``. Actually two of them, 525 `bzr ng` and `hglib`, accept an option ``python-path`` to indicate525 `bzr` and `hglib`, accept an option ``python-path`` to indicate 526 526 where the BazaarNG Python library is located. 527 527 … … 592 592 593 593 [project] 594 target = bzr ng:target594 target = bzr:target 595 595 root-directory = /tmp/prova 596 596 state-file = tailor.state … … 600 600 start-revision = Almost arbitrarily tagging this as version 0.8 601 601 602 [bzr ng:target]602 [bzr:target] 603 603 python-path = /opt/src/bzr.dev 604 604 subdir = bzrside -
vcpx/bzr.py
r878 r879 23 23 import re 24 24 25 class Bzr ngWorkingDir(UpdatableSourceWorkingDir, SyncronizableTargetWorkingDir):25 class BzrWorkingDir(UpdatableSourceWorkingDir, SyncronizableTargetWorkingDir): 26 26 ## UpdatableSourceWorkingDir 27 27 28 28 def _changesetFromRevision(self, parent, revision): 29 29 """ 30 Generate changeset for the given Bzr Ngrevision30 Generate changeset for the given Bzr revision 31 31 """ 32 32 from changes import ChangesetEntry, Changeset
Note: See TracChangeset
for help on using the changeset viewer.
