~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2005-11-09 20:48:24 UTC
  • Revision ID: aaron.bentley@utoronto.ca-20051109204824-ad8771b15f74b6f6
Renamed force-reweave-inventory to fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
        from clean_tree import clean_tree
32
32
        clean_tree('.', ignored=ignored, detritus=detritus, dry_run=dry_run)
33
33
 
 
34
Option.OPTIONS['no-collapse'] = Option('no-collapse')
 
35
Option.OPTIONS['no-antialias'] = Option('no-antialias')
 
36
Option.OPTIONS['cluster'] = Option('cluster')
34
37
Option.OPTIONS['merge-branch'] = Option('merge-branch',type=str)
35
38
 
36
39
class cmd_graph_ancestry(bzrlib.commands.Command):
37
40
    """Produce ancestry graphs using dot.
38
41
    
39
42
    Output format is detected according to file extension.  Some of the more
40
 
    common output formats are html, png, gif, svg, ps.  An extension of '.dot'
41
 
    will cause a dot graph file to be produced.  HTML output has mouseovers
42
 
    that show the commit message.
 
43
    common output formats are png, gif, svg, ps.  An extension of '.dot' will
 
44
    cause a dot graph file to be produced.
43
45
 
44
46
    Branches are labeled r?, where ? is the revno.  If they have no revno,
45
47
    with the last 5 characters of their revision identifier are used instead.
46
 
 
47
 
    The value starting with d is "(maximum) distance from the null revision".
48
48
    
49
49
    If --merge-branch is specified, the two branches are compared and a merge
50
50
    base is selected.
55
55
    red      OTHER history
56
56
    orange   COMMON history
57
57
    blue     COMMON non-history ancestor
58
 
    green    Merge base (COMMON ancestor farthest from the null revision)
59
 
    dotted   Ghost revision (missing from branch storage)
 
58
    dotted   Missing from branch storage
60
59
 
61
 
    Ancestry is usually collapsed by skipping revisions with a single parent
 
60
    Ancestry is usually collapsed by removing revisions with a single parent
62
61
    and descendant.  The number of skipped revisions is shown on the arrow.
63
62
    This feature can be disabled with --no-collapse.
64
63
 
69
68
    be disabled with --no-antialias.
70
69
    """
71
70
    takes_args = ['branch', 'file']
72
 
    takes_options = [Option('no-collapse', help="Do not skip simple nodes"), 
73
 
                     Option('no-antialias',
74
 
                     help="Do not use rsvg to produce antialiased output"), 
75
 
                     Option('merge-branch', type=str, 
76
 
                     help="Use this branch to calcuate a merge base"), 
77
 
                     Option('cluster', help="Use clustered output.")]
 
71
    takes_options = ['no-collapse', 'no-antialias', 'merge-branch', 'cluster']
78
72
    def run(self, branch, file, no_collapse=False, no_antialias=False,
79
73
        merge_branch=None, cluster=False):
80
74
        import graph
91
85
    """
92
86
    aliases = ['fetch-missing']
93
87
    takes_args = ['branch?']
94
 
    takes_options = [Option('no-fix')]
95
 
    def run(self, branch=None, no_fix=False):
 
88
    def run(self, branch=None):
96
89
        from fetch_ghosts import fetch_ghosts
97
 
        fetch_ghosts(branch, no_fix)
 
90
        fetch_ghosts(branch)
98
91
 
99
92
strip_help="""Strip the smallest prefix containing num leading slashes  from \
100
93
each file name found in the patch file."""
112
105
 
113
106
 
114
107
class cmd_shelve(bzrlib.commands.Command):
115
 
    """Temporarily remove some text changes from the current tree.
 
108
    """Temporarily remove some changes from the current tree.
116
109
    Use 'unshelve' to restore these changes.
117
110
 
118
 
    Shelve is intended to help separate several sets of text changes that have
119
 
    been inappropriately mingled.  If you just want to get rid of all changes
120
 
    (text and otherwise) and you don't need to restore them later, use revert.
121
 
    If you want to shelve all text changes at once, use shelve --all.
122
 
 
123
 
    If filenames are specified, only changes to those files will be shelved.
 
111
    If filenames are specified, only changes to those files will be unshelved.
124
112
    If a revision is specified, all changes since that revision will may be
125
 
    shelved.
 
113
    unshelved.
126
114
    """
127
115
    takes_args = ['file*']
128
 
    takes_options = [Option('all', 
129
 
                            help='Shelve all changes without prompting'), 
130
 
                     'message', 'revision']
 
116
    takes_options = ['all', 'message', 'revision']
131
117
    def run(self, all=False, file_list=None, message=None, revision=None):
132
118
        if file_list is not None and len(file_list) > 0:
133
119
            branchdir = file_list[0]
154
140
        return s.unshelve()
155
141
 
156
142
class cmd_shell(bzrlib.commands.Command):
157
 
    """Begin an interactive shell tailored for bzr.
158
 
    Bzr commands can be used without typing bzr first, and will be run natively
159
 
    when possible.  Tab completion is tailored for bzr.  The shell prompt shows
160
 
    the branch nick, revno, and path.
161
 
 
162
 
    If it encounters any moderately complicated shell command, it will punt to
163
 
    the system shell.
164
 
 
165
 
    Example:
166
 
    $ bzr shell
167
 
    bzr bzrtools:287/> status
168
 
    modified:
169
 
      __init__.py
170
 
    bzr bzrtools:287/> status --[TAB][TAB]
171
 
    --all        --help       --revision   --show-ids
172
 
    bzr bzrtools:287/> status --
173
 
    """
174
143
    def run(self):
175
144
        import shell
176
 
        return shell.run_shell()
177
 
 
178
 
class cmd_branch_history(bzrlib.commands.Command):
179
 
    """\
180
 
    Display the revision history with reference to lines of development.
181
 
 
182
 
    Each different committer or branch nick is considered a different line of
183
 
    development.  Committers are treated as the same if they have the same
184
 
    name, or if they have the same email address.
185
 
    """
186
 
    takes_args = ["branch?"]
187
 
    def run(self, branch=None):
188
 
        from branchhistory import branch_history 
189
 
        return branch_history(branch)
 
145
        shell.run_shell()
190
146
 
191
147
commands = [cmd_shelve, cmd_unshelve, cmd_clean_tree, cmd_graph_ancestry,
192
 
            cmd_fetch_ghosts, cmd_patch, cmd_shell, cmd_fix, cmd_branch_history]
 
148
            cmd_fetch_ghosts, cmd_patch, cmd_shell, cmd_fix]
193
149
 
194
150
command_decorators = []
195
151