~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2009-02-23 15:29:35 UTC
  • mfrom: (3943.7.7 bzr.code_style_cleanup)
  • mto: This revision was merged to the branch mainline in revision 4033.
  • Revision ID: john@arbash-meinel.com-20090223152935-oel9m92mwcc6nb4h
Merge the removal of all trailing whitespace, and resolve conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
126
126
 
127
127
    topics = topic_registry.keys()
128
128
    lmax = max(len(topic) for topic in topics)
129
 
        
 
129
 
130
130
    out = []
131
131
    for topic in topics:
132
132
        summary = topic_registry.get_summary(topic)
191
191
            #doc = indent_re.sub('', doc)
192
192
            while (doc[-2:] == '\n\n' or doc[-1:] == ' '):
193
193
                doc = doc[:-1]
194
 
        
 
194
 
195
195
        # Note: The leading : here are HACKs to get reStructuredText
196
196
        # 'field' formatting - we know that the prefix ends in a ':'.
197
197
        out.append(":%s\n\t%s" % (i.prefix, summary))
324
324
"""Standard Options
325
325
 
326
326
Standard options are legal for all commands.
327
 
      
 
327
 
328
328
--help, -h     Show help message.
329
329
--verbose, -v  Display more information.
330
330
--quiet, -q    Only display errors and warnings.
382
382
 
383
383
Another possible use for a checkout is to use it with a treeless repository
384
384
containing your branches, where you maintain only one working tree by
385
 
switching the master branch that the checkout points to when you want to 
 
385
switching the master branch that the checkout points to when you want to
386
386
work on a different branch.
387
387
 
388
388
Obviously to commit on a checkout you need to be able to write to the master
403
403
              checkout
404
404
  update      Pull any changes in the master branch in to your checkout
405
405
  commit      Make a commit that is sent to the master branch. If you have
406
 
              a heavy checkout then the --local option will commit to the 
 
406
              a heavy checkout then the --local option will commit to the
407
407
              checkout without sending the commit to the master
408
408
  bind        Change the master branch that the commits in the checkout will
409
409
              be sent to
419
419
 
420
420
Repositories are a form of database. Bzr will usually maintain this for
421
421
good performance automatically, but in some situations (e.g. when doing
422
 
very many commits in a short time period) you may want to ask bzr to 
 
422
very many commits in a short time period) you may want to ask bzr to
423
423
optimise the database indices. This can be done by the 'bzr pack' command.
424
424
 
425
425
By default just running 'bzr init' will create a repository within the new
727
727
                        "Help on status flags")
728
728
def get_bugs_topic(topic):
729
729
    from bzrlib import bugtracker
730
 
    return ("Bug Tracker Settings\n\n" + 
 
730
    return ("Bug Tracker Settings\n\n" +
731
731
        bugtracker.tracker_registry.help_topic(topic))
732
732
topic_registry.register('bugs', get_bugs_topic, 'Bug tracker settings')
733
733
topic_registry.register('env-variables', _env_variables,
824
824
            returned instead of plain text.
825
825
        """
826
826
        result = topic_registry.get_detail(self.topic)
827
 
        # there is code duplicated here and in bzrlib/plugin.py's 
 
827
        # there is code duplicated here and in bzrlib/plugin.py's
828
828
        # matching Topic code. This should probably be factored in
829
829
        # to a helper function and a common base class.
830
830
        if additional_see_also is not None: