/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/__init__.py

  • Committer: Aaron Bentley
  • Date: 2008-02-24 16:42:13 UTC
  • mfrom: (3234 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3235.
  • Revision ID: aaron@aaronbentley.com-20080224164213-eza1lzru5bwuwmmj
Merge with bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
271
271
               "callgrind.out" or end with ".callgrind", the output will be
272
272
               formatted for use with KCacheGrind. Otherwise, the output
273
273
               will be a pickle.
 
274
--coverage     Generate line coverage report in the specified directory.
274
275
 
275
276
See doc/developers/profiling.txt for more information on profiling.
276
277
A number of debug flags are also available to assist troubleshooting and
281
282
               error.
282
283
-Devil         Capture call sites that do expensive or badly-scaling
283
284
               operations.
 
285
-Dfetch        Trace history copying between repositories.
284
286
-Dhashcache    Log every time a working file is read to determine its hash.
285
287
-Dhooks        Trace hook execution.
 
288
-Dhpss         Trace smart protocol requests and responses.
286
289
-Dhttp         Trace http connections, requests and responses
287
 
-Dhpss         Trace smart protocol requests and responses.
288
290
-Dindex        Trace major index operations.
 
291
-Dknit         Trace knit operations.
289
292
-Dlock         Trace when lockdir locks are taken or released.
290
293
-Dmerge        Emit information for debugging merges.
291
294
"""
541
544
BZR_HOME         Directory holding .bazaar config dir. Overrides HOME.
542
545
BZR_HOME (Win32) Directory holding bazaar config dir. Overrides APPDATA and HOME.
543
546
BZR_REMOTE_PATH  Full name of remote 'bzr' command (for bzr+ssh:// URLs).
 
547
BZR_SSH          SSH client: paramiko (default), openssh, ssh, plink.
 
548
BZR_LOG          Location of .bzr.log (use '/dev/null' to suppress log).
 
549
BZR_LOG (Win32)  Location of .bzr.log (use 'NUL' to suppress log).
544
550
================ =================================================================
545
551
"""
546
552
 
615
621
                        "Help on status flags")
616
622
def get_bugs_topic(topic):
617
623
    from bzrlib import bugtracker
618
 
    return "Bug Tracker Settings\n\n" + \
619
 
        bugtracker.tracker_registry.help_topic(topic)
 
624
    return ("Bug Tracker Settings\n\n" + 
 
625
        bugtracker.tracker_registry.help_topic(topic))
620
626
topic_registry.register('bugs', get_bugs_topic, 'Bug tracker settings')
621
627
topic_registry.register('env-variables', _env_variables,
622
628
                        'Environment variable names and values')