~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/__init__.py

(andrew) Add 'location-alias' help topic. (#337834)

Show diffs side-by-side

added added

removed removed

Lines of Context:
245
245
        out += "\nSupported modifiers::\n\n  " + \
246
246
            '  '.join(decl)
247
247
 
 
248
    out += """\
 
249
\nBazaar supports all of the standard parts within the URL::
 
250
 
 
251
  <protocol>://[user[:password]@]host[:port]/[path]
 
252
 
 
253
allowing URLs such as::
 
254
 
 
255
  http://bzruser:BadPass@bzr.example.com:8080/bzr/trunk
 
256
 
 
257
Many commands that accept URLs also accept location aliases too.  See
 
258
`bzr help location-alias`.
 
259
"""
 
260
 
248
261
    return out
249
262
 
250
263
 
713
726
                        'Types of conflicts and what to do about them')
714
727
topic_registry.register('debug-flags', _load_from_file,
715
728
                        'Options to show or record debug information')
 
729
topic_registry.register('location-alias', _load_from_file,
 
730
                        'Aliases for remembered locations')
716
731
topic_registry.register('log-formats', _load_from_file,
717
732
                        'Details on the logging formats available')
718
733
topic_registry.register('diverged-branches', _load_from_file,