~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revisionspec.py

Fix up inter_changes with dirstate both C and python.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2010 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
 
 
17
 
 
18
 
from bzrlib.lazy_import import lazy_import
19
 
lazy_import(globals(), """
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
 
20
18
import bisect
21
19
import datetime
 
20
import re
22
21
 
23
22
from bzrlib import (
24
 
    branch as _mod_branch,
 
23
    errors,
25
24
    osutils,
26
25
    revision,
27
26
    symbol_versioning,
28
 
    workingtree,
29
 
    )
30
 
""")
31
 
 
32
 
from bzrlib import (
33
 
    errors,
34
 
    lazy_regex,
35
 
    registry,
36
27
    trace,
 
28
    tsort,
37
29
    )
38
30
 
39
31
 
117
109
        return RevisionInfo(branch, revno, revision_id)
118
110
 
119
111
 
 
112
# classes in this list should have a "prefix" attribute, against which
 
113
# string specs are matched
 
114
SPEC_TYPES = []
 
115
_revno_regex = None
 
116
 
 
117
 
120
118
class RevisionSpec(object):
121
119
    """A parsed revision specification."""
122
120
 
123
121
    help_txt = """A parsed revision specification.
124
122
 
125
 
    A revision specification is a string, which may be unambiguous about
126
 
    what it represents by giving a prefix like 'date:' or 'revid:' etc,
127
 
    or it may have no prefix, in which case it's tried against several
128
 
    specifier types in sequence to determine what the user meant.
 
123
    A revision specification can be an integer, in which case it is
 
124
    assumed to be a revno (though this will translate negative values
 
125
    into positive ones); or it can be a string, in which case it is
 
126
    parsed for something like 'date:' or 'revid:' etc.
129
127
 
130
128
    Revision specs are an UI element, and they have been moved out
131
129
    of the branch class to leave "back-end" classes unaware of such
138
136
 
139
137
    prefix = None
140
138
    wants_revision_history = True
141
 
    dwim_catchable_exceptions = (errors.InvalidRevisionSpec,)
142
 
    """Exceptions that RevisionSpec_dwim._match_on will catch.
143
 
 
144
 
    If the revspec is part of ``dwim_revspecs``, it may be tried with an
145
 
    invalid revspec and raises some exception. The exceptions mentioned here
146
 
    will not be reported to the user but simply ignored without stopping the
147
 
    dwim processing.
148
 
    """
 
139
 
 
140
    def __new__(cls, spec, _internal=False):
 
141
        if _internal:
 
142
            return object.__new__(cls, spec, _internal=_internal)
 
143
 
 
144
        symbol_versioning.warn('Creating a RevisionSpec directly has'
 
145
                               ' been deprecated in version 0.11. Use'
 
146
                               ' RevisionSpec.from_string()'
 
147
                               ' instead.',
 
148
                               DeprecationWarning, stacklevel=2)
 
149
        return RevisionSpec.from_string(spec)
149
150
 
150
151
    @staticmethod
151
152
    def from_string(spec):
160
161
 
161
162
        if spec is None:
162
163
            return RevisionSpec(None, _internal=True)
163
 
        match = revspec_registry.get_prefix(spec)
164
 
        if match is not None:
165
 
            spectype, specsuffix = match
166
 
            trace.mutter('Returning RevisionSpec %s for %s',
167
 
                         spectype.__name__, spec)
168
 
            return spectype(spec, _internal=True)
 
164
        for spectype in SPEC_TYPES:
 
165
            if spec.startswith(spectype.prefix):
 
166
                trace.mutter('Returning RevisionSpec %s for %s',
 
167
                             spectype.__name__, spec)
 
168
                return spectype(spec, _internal=True)
169
169
        else:
170
 
            # Otherwise treat it as a DWIM, build the RevisionSpec object and
171
 
            # wait for _match_on to be called.
172
 
            return RevisionSpec_dwim(spec, _internal=True)
 
170
            # RevisionSpec_revno is special cased, because it is the only
 
171
            # one that directly handles plain integers
 
172
            # TODO: This should not be special cased rather it should be
 
173
            # a method invocation on spectype.canparse()
 
174
            global _revno_regex
 
175
            if _revno_regex is None:
 
176
                _revno_regex = re.compile(r'^(?:(\d+(\.\d+)*)|-\d+)(:.*)?$')
 
177
            if _revno_regex.match(spec) is not None:
 
178
                return RevisionSpec_revno(spec, _internal=True)
 
179
 
 
180
            raise errors.NoSuchRevisionSpec(spec)
173
181
 
174
182
    def __init__(self, spec, _internal=False):
175
183
        """Create a RevisionSpec referring to the Null revision.
179
187
            called directly. Only from RevisionSpec.from_string()
180
188
        """
181
189
        if not _internal:
 
190
            # XXX: Update this after 0.10 is released
182
191
            symbol_versioning.warn('Creating a RevisionSpec directly has'
183
192
                                   ' been deprecated in version 0.11. Use'
184
193
                                   ' RevisionSpec.from_string()'
243
252
        """
244
253
        return self.in_history(context_branch).rev_id
245
254
 
246
 
    def as_tree(self, context_branch):
247
 
        """Return the tree object for this revisions spec.
248
 
 
249
 
        Some revision specs require a context_branch to be able to determine
250
 
        the revision id and access the repository. Not all specs will make
251
 
        use of it.
252
 
        """
253
 
        return self._as_tree(context_branch)
254
 
 
255
 
    def _as_tree(self, context_branch):
256
 
        """Implementation of as_tree().
257
 
 
258
 
        Classes should override this function to provide appropriate
259
 
        functionality. The default is to just call '.as_revision_id()'
260
 
        and get the revision tree from context_branch's repository.
261
 
        """
262
 
        revision_id = self.as_revision_id(context_branch)
263
 
        return context_branch.repository.revision_tree(revision_id)
264
 
 
265
255
    def __repr__(self):
266
256
        # this is mostly for helping with testing
267
257
        return '<%s %s>' % (self.__class__.__name__,
268
258
                              self.user_spec)
269
 
 
 
259
    
270
260
    def needs_branch(self):
271
261
        """Whether this revision spec needs a branch.
272
262
 
276
266
 
277
267
    def get_branch(self):
278
268
        """When the revision specifier contains a branch location, return it.
279
 
 
 
269
        
280
270
        Otherwise, return None.
281
271
        """
282
272
        return None
284
274
 
285
275
# private API
286
276
 
287
 
class RevisionSpec_dwim(RevisionSpec):
288
 
    """Provides a DWIMish revision specifier lookup.
289
 
 
290
 
    Note that this does not go in the revspec_registry because by definition
291
 
    there is no prefix to identify it.  It's solely called from
292
 
    RevisionSpec.from_string() because the DWIMification happen when _match_on
293
 
    is called so the string describing the revision is kept here until needed.
294
 
    """
295
 
 
296
 
    help_txt = None
297
 
    # We don't need to build the revision history ourself, that's delegated to
298
 
    # each revspec we try.
299
 
    wants_revision_history = False
300
 
 
301
 
    _revno_regex = lazy_regex.lazy_compile(r'^(?:(\d+(\.\d+)*)|-\d+)(:.*)?$')
302
 
 
303
 
    # The revspecs to try
304
 
    _possible_revspecs = []
305
 
 
306
 
    def _try_spectype(self, rstype, branch):
307
 
        rs = rstype(self.spec, _internal=True)
308
 
        # Hit in_history to find out if it exists, or we need to try the
309
 
        # next type.
310
 
        return rs.in_history(branch)
311
 
 
312
 
    def _match_on(self, branch, revs):
313
 
        """Run the lookup and see what we can get."""
314
 
 
315
 
        # First, see if it's a revno
316
 
        if self._revno_regex.match(self.spec) is not None:
317
 
            try:
318
 
                return self._try_spectype(RevisionSpec_revno, branch)
319
 
            except RevisionSpec_revno.dwim_catchable_exceptions:
320
 
                pass
321
 
 
322
 
        # Next see what has been registered
323
 
        for objgetter in self._possible_revspecs:
324
 
            rs_class = objgetter.get_obj()
325
 
            try:
326
 
                return self._try_spectype(rs_class, branch)
327
 
            except rs_class.dwim_catchable_exceptions:
328
 
                pass
329
 
 
330
 
        # Try the old (deprecated) dwim list:
331
 
        for rs_class in dwim_revspecs:
332
 
            try:
333
 
                return self._try_spectype(rs_class, branch)
334
 
            except rs_class.dwim_catchable_exceptions:
335
 
                pass
336
 
 
337
 
        # Well, I dunno what it is. Note that we don't try to keep track of the
338
 
        # first of last exception raised during the DWIM tries as none seems
339
 
        # really relevant.
340
 
        raise errors.InvalidRevisionSpec(self.spec, branch)
341
 
 
342
 
    @classmethod
343
 
    def append_possible_revspec(cls, revspec):
344
 
        """Append a possible DWIM revspec.
345
 
 
346
 
        :param revspec: Revision spec to try.
347
 
        """
348
 
        cls._possible_revspecs.append(registry._ObjectGetter(revspec))
349
 
 
350
 
    @classmethod
351
 
    def append_possible_lazy_revspec(cls, module_name, member_name):
352
 
        """Append a possible lazily loaded DWIM revspec.
353
 
 
354
 
        :param module_name: Name of the module with the revspec
355
 
        :param member_name: Name of the revspec within the module
356
 
        """
357
 
        cls._possible_revspecs.append(
358
 
            registry._LazyObjectGetter(module_name, member_name))
359
 
 
360
 
 
361
277
class RevisionSpec_revno(RevisionSpec):
362
278
    """Selects a revision using a number."""
363
279
 
364
280
    help_txt = """Selects a revision using a number.
365
281
 
366
282
    Use an integer to specify a revision in the history of the branch.
367
 
    Optionally a branch can be specified.  A negative number will count
368
 
    from the end of the branch (-1 is the last revision, -2 the previous
369
 
    one). If the negative number is larger than the branch's history, the
370
 
    first revision is returned.
 
283
    Optionally a branch can be specified. The 'revno:' prefix is optional.
 
284
    A negative number will count from the end of the branch (-1 is the
 
285
    last revision, -2 the previous one). If the negative number is larger
 
286
    than the branch's history, the first revision is returned.
371
287
    Examples::
372
288
 
373
 
      revno:1                   -> return the first revision of this branch
 
289
      revno:1                   -> return the first revision
374
290
      revno:3:/path/to/branch   -> return the 3rd revision of
375
291
                                   the branch '/path/to/branch'
376
292
      revno:-1                  -> The last revision in a branch.
407
323
                dotted = False
408
324
            except ValueError:
409
325
                # dotted decimal. This arguably should not be here
410
 
                # but the from_string method is a little primitive
 
326
                # but the from_string method is a little primitive 
411
327
                # right now - RBC 20060928
412
328
                try:
413
329
                    match_revno = tuple((int(number) for number in revno_spec.split('.')))
425
341
            revs_or_none = None
426
342
 
427
343
        if dotted:
 
344
            branch.lock_read()
428
345
            try:
429
 
                revision_id = branch.dotted_revno_to_revision_id(match_revno,
430
 
                    _cache_reverse=True)
431
 
            except errors.NoSuchRevision:
432
 
                raise errors.InvalidRevisionSpec(self.user_spec, branch)
 
346
                revision_id_to_revno = branch.get_revision_id_to_revno_map()
 
347
                revisions = [revision_id for revision_id, revno
 
348
                             in revision_id_to_revno.iteritems()
 
349
                             if revno == match_revno]
 
350
            finally:
 
351
                branch.unlock()
 
352
            if len(revisions) != 1:
 
353
                return branch, None, None
433
354
            else:
434
355
                # there is no traditional 'revno' for dotted-decimal revnos.
435
356
                # so for  API compatability we return None.
436
 
                return branch, None, revision_id
 
357
                return branch, None, revisions[0]
437
358
        else:
438
359
            last_revno, last_revision_id = branch.last_revision_info()
439
360
            if revno < 0:
463
384
        else:
464
385
            return self.spec[self.spec.find(':')+1:]
465
386
 
466
 
# Old compatibility
 
387
# Old compatibility 
467
388
RevisionSpec_int = RevisionSpec_revno
468
389
 
469
 
 
470
 
 
471
 
class RevisionIDSpec(RevisionSpec):
472
 
 
473
 
    def _match_on(self, branch, revs):
474
 
        revision_id = self.as_revision_id(branch)
475
 
        return RevisionInfo.from_revision_id(branch, revision_id, revs)
476
 
 
477
 
 
478
 
class RevisionSpec_revid(RevisionIDSpec):
 
390
SPEC_TYPES.append(RevisionSpec_revno)
 
391
 
 
392
 
 
393
class RevisionSpec_revid(RevisionSpec):
479
394
    """Selects a revision using the revision id."""
480
395
 
481
396
    help_txt = """Selects a revision using the revision id.
482
397
 
483
398
    Supply a specific revision id, that can be used to specify any
484
 
    revision id in the ancestry of the branch.
 
399
    revision id in the ancestry of the branch. 
485
400
    Including merges, and pending merges.
486
401
    Examples::
487
402
 
490
405
 
491
406
    prefix = 'revid:'
492
407
 
493
 
    def _as_revision_id(self, context_branch):
 
408
    def _match_on(self, branch, revs):
494
409
        # self.spec comes straight from parsing the command line arguments,
495
410
        # so we expect it to be a Unicode string. Switch it to the internal
496
411
        # representation.
 
412
        revision_id = osutils.safe_revision_id(self.spec, warn=False)
 
413
        return RevisionInfo.from_revision_id(branch, revision_id, revs)
 
414
 
 
415
    def _as_revision_id(self, context_branch):
497
416
        return osutils.safe_revision_id(self.spec, warn=False)
498
417
 
 
418
SPEC_TYPES.append(RevisionSpec_revid)
499
419
 
500
420
 
501
421
class RevisionSpec_last(RevisionSpec):
547
467
        revno, revision_id = self._revno_and_revision_id(context_branch, None)
548
468
        return revision_id
549
469
 
 
470
SPEC_TYPES.append(RevisionSpec_last)
550
471
 
551
472
 
552
473
class RevisionSpec_before(RevisionSpec):
554
475
 
555
476
    help_txt = """Selects the parent of the revision specified.
556
477
 
557
 
    Supply any revision spec to return the parent of that revision.  This is
558
 
    mostly useful when inspecting revisions that are not in the revision history
559
 
    of a branch.
560
 
 
 
478
    Supply any revision spec to return the parent of that revision.
561
479
    It is an error to request the parent of the null revision (before:0).
 
480
    This is mostly useful when inspecting revisions that are not in the
 
481
    revision history of a branch.
562
482
 
563
483
    Examples::
564
484
 
565
485
      before:1913    -> Return the parent of revno 1913 (revno 1912)
566
486
      before:revid:aaaa@bbbb-1234567890  -> return the parent of revision
567
487
                                            aaaa@bbbb-1234567890
568
 
      bzr diff -r before:1913..1913
569
 
            -> Find the changes between revision 1913 and its parent (1912).
570
 
               (What changes did revision 1913 introduce).
571
 
               This is equivalent to:  bzr diff -c 1913
 
488
      bzr diff -r before:revid:aaaa..revid:aaaa
 
489
            -> Find the changes between revision 'aaaa' and its parent.
 
490
               (what changes did 'aaaa' introduce)
572
491
    """
573
492
 
574
493
    prefix = 'before:'
575
 
 
 
494
    
576
495
    def _match_on(self, branch, revs):
577
496
        r = RevisionSpec.from_string(self.spec)._match_on(branch, revs)
578
497
        if r.revno == 0:
621
540
                'No parents for revision.')
622
541
        return parents[0]
623
542
 
 
543
SPEC_TYPES.append(RevisionSpec_before)
624
544
 
625
545
 
626
546
class RevisionSpec_tag(RevisionSpec):
632
552
    """
633
553
 
634
554
    prefix = 'tag:'
635
 
    dwim_catchable_exceptions = (errors.NoSuchTag, errors.TagsNotSupported)
636
555
 
637
556
    def _match_on(self, branch, revs):
638
557
        # Can raise tags not supported, NoSuchTag, etc
643
562
    def _as_revision_id(self, context_branch):
644
563
        return context_branch.tags.lookup_tag(self.spec)
645
564
 
 
565
SPEC_TYPES.append(RevisionSpec_tag)
646
566
 
647
567
 
648
568
class _RevListToTimestamps(object):
683
603
      date:yesterday            -> select the first revision since yesterday
684
604
      date:2006-08-14,17:10:14  -> select the first revision after
685
605
                                   August 14th, 2006 at 5:10pm.
686
 
    """
 
606
    """    
687
607
    prefix = 'date:'
688
 
    _date_regex = lazy_regex.lazy_compile(
 
608
    _date_re = re.compile(
689
609
            r'(?P<date>(?P<year>\d\d\d\d)-(?P<month>\d\d)-(?P<day>\d\d))?'
690
610
            r'(,|T)?\s*'
691
611
            r'(?P<time>(?P<hour>\d\d):(?P<minute>\d\d)(:(?P<second>\d\d))?)?'
709
629
        elif self.spec.lower() == 'tomorrow':
710
630
            dt = today + datetime.timedelta(days=1)
711
631
        else:
712
 
            m = self._date_regex.match(self.spec)
 
632
            m = self._date_re.match(self.spec)
713
633
            if not m or (not m.group('date') and not m.group('time')):
714
634
                raise errors.InvalidRevisionSpec(self.user_spec,
715
635
                                                 branch, 'invalid date')
749
669
        else:
750
670
            return RevisionInfo(branch, rev + 1)
751
671
 
 
672
SPEC_TYPES.append(RevisionSpec_date)
752
673
 
753
674
 
754
675
class RevisionSpec_ancestor(RevisionSpec):
799
720
            revision_a = revision.ensure_null(branch.last_revision())
800
721
            if revision_a == revision.NULL_REVISION:
801
722
                raise errors.NoCommits(branch)
802
 
            if other_location == '':
803
 
                other_location = branch.get_parent()
804
723
            other_branch = Branch.open(other_location)
805
724
            other_branch.lock_read()
806
725
            try:
818
737
            branch.unlock()
819
738
 
820
739
 
 
740
SPEC_TYPES.append(RevisionSpec_ancestor)
821
741
 
822
742
 
823
743
class RevisionSpec_branch(RevisionSpec):
832
752
      branch:/path/to/branch
833
753
    """
834
754
    prefix = 'branch:'
835
 
    dwim_catchable_exceptions = (errors.NotBranchError,)
836
755
 
837
756
    def _match_on(self, branch, revs):
838
757
        from bzrlib.branch import Branch
840
759
        revision_b = other_branch.last_revision()
841
760
        if revision_b in (None, revision.NULL_REVISION):
842
761
            raise errors.NoCommits(other_branch)
843
 
        if branch is None:
844
 
            branch = other_branch
845
 
        else:
846
 
            try:
847
 
                # pull in the remote revisions so we can diff
848
 
                branch.fetch(other_branch, revision_b)
849
 
            except errors.ReadOnlyError:
850
 
                branch = other_branch
 
762
        # pull in the remote revisions so we can diff
 
763
        branch.fetch(other_branch, revision_b)
851
764
        try:
852
765
            revno = branch.revision_id_to_revno(revision_b)
853
766
        except errors.NoSuchRevision:
864
777
            raise errors.NoCommits(other_branch)
865
778
        return last_revision
866
779
 
867
 
    def _as_tree(self, context_branch):
868
 
        from bzrlib.branch import Branch
869
 
        other_branch = Branch.open(self.spec)
870
 
        last_revision = other_branch.last_revision()
871
 
        last_revision = revision.ensure_null(last_revision)
872
 
        if last_revision == revision.NULL_REVISION:
873
 
            raise errors.NoCommits(other_branch)
874
 
        return other_branch.repository.revision_tree(last_revision)
875
 
 
876
 
    def needs_branch(self):
877
 
        return False
878
 
 
879
 
    def get_branch(self):
880
 
        return self.spec
881
 
 
 
780
SPEC_TYPES.append(RevisionSpec_branch)
882
781
 
883
782
 
884
783
class RevisionSpec_submit(RevisionSpec_ancestor):
923
822
            self._get_submit_location(context_branch))
924
823
 
925
824
 
926
 
class RevisionSpec_annotate(RevisionIDSpec):
927
 
 
928
 
    prefix = 'annotate:'
929
 
 
930
 
    help_txt = """Select the revision that last modified the specified line.
931
 
 
932
 
    Select the revision that last modified the specified line.  Line is
933
 
    specified as path:number.  Path is a relative path to the file.  Numbers
934
 
    start at 1, and are relative to the current version, not the last-
935
 
    committed version of the file.
936
 
    """
937
 
 
938
 
    def _raise_invalid(self, numstring, context_branch):
939
 
        raise errors.InvalidRevisionSpec(self.user_spec, context_branch,
940
 
            'No such line: %s' % numstring)
941
 
 
942
 
    def _as_revision_id(self, context_branch):
943
 
        path, numstring = self.spec.rsplit(':', 1)
944
 
        try:
945
 
            index = int(numstring) - 1
946
 
        except ValueError:
947
 
            self._raise_invalid(numstring, context_branch)
948
 
        tree, file_path = workingtree.WorkingTree.open_containing(path)
949
 
        tree.lock_read()
950
 
        try:
951
 
            file_id = tree.path2id(file_path)
952
 
            if file_id is None:
953
 
                raise errors.InvalidRevisionSpec(self.user_spec,
954
 
                    context_branch, "File '%s' is not versioned." %
955
 
                    file_path)
956
 
            revision_ids = [r for (r, l) in tree.annotate_iter(file_id)]
957
 
        finally:
958
 
            tree.unlock()
959
 
        try:
960
 
            revision_id = revision_ids[index]
961
 
        except IndexError:
962
 
            self._raise_invalid(numstring, context_branch)
963
 
        if revision_id == revision.CURRENT_REVISION:
964
 
            raise errors.InvalidRevisionSpec(self.user_spec, context_branch,
965
 
                'Line %s has not been committed.' % numstring)
966
 
        return revision_id
967
 
 
968
 
 
969
 
class RevisionSpec_mainline(RevisionIDSpec):
970
 
 
971
 
    help_txt = """Select mainline revision that merged the specified revision.
972
 
 
973
 
    Select the revision that merged the specified revision into mainline.
974
 
    """
975
 
 
976
 
    prefix = 'mainline:'
977
 
 
978
 
    def _as_revision_id(self, context_branch):
979
 
        revspec = RevisionSpec.from_string(self.spec)
980
 
        if revspec.get_branch() is None:
981
 
            spec_branch = context_branch
982
 
        else:
983
 
            spec_branch = _mod_branch.Branch.open(revspec.get_branch())
984
 
        revision_id = revspec.as_revision_id(spec_branch)
985
 
        graph = context_branch.repository.get_graph()
986
 
        result = graph.find_lefthand_merger(revision_id,
987
 
                                            context_branch.last_revision())
988
 
        if result is None:
989
 
            raise errors.InvalidRevisionSpec(self.user_spec, context_branch)
990
 
        return result
991
 
 
992
 
 
993
 
# The order in which we want to DWIM a revision spec without any prefix.
994
 
# revno is always tried first and isn't listed here, this is used by
995
 
# RevisionSpec_dwim._match_on
996
 
dwim_revspecs = symbol_versioning.deprecated_list(
997
 
    symbol_versioning.deprecated_in((2, 4, 0)), "dwim_revspecs", [])
998
 
 
999
 
RevisionSpec_dwim.append_possible_revspec(RevisionSpec_tag)
1000
 
RevisionSpec_dwim.append_possible_revspec(RevisionSpec_revid)
1001
 
RevisionSpec_dwim.append_possible_revspec(RevisionSpec_date)
1002
 
RevisionSpec_dwim.append_possible_revspec(RevisionSpec_branch)
1003
 
 
1004
 
revspec_registry = registry.Registry()
1005
 
def _register_revspec(revspec):
1006
 
    revspec_registry.register(revspec.prefix, revspec)
1007
 
 
1008
 
_register_revspec(RevisionSpec_revno)
1009
 
_register_revspec(RevisionSpec_revid)
1010
 
_register_revspec(RevisionSpec_last)
1011
 
_register_revspec(RevisionSpec_before)
1012
 
_register_revspec(RevisionSpec_tag)
1013
 
_register_revspec(RevisionSpec_date)
1014
 
_register_revspec(RevisionSpec_ancestor)
1015
 
_register_revspec(RevisionSpec_branch)
1016
 
_register_revspec(RevisionSpec_submit)
1017
 
_register_revspec(RevisionSpec_annotate)
1018
 
_register_revspec(RevisionSpec_mainline)
 
825
SPEC_TYPES.append(RevisionSpec_submit)