/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: Andrew Bennetts
  • Date: 2009-12-03 05:57:41 UTC
  • mfrom: (4857 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4869.
  • Revision ID: andrew.bennetts@canonical.com-20091203055741-vmmg0fmjgjw2pwvu
MergeĀ lp:bzr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
251
251
        out += "\nSupported modifiers::\n\n  " + \
252
252
            '  '.join(decl)
253
253
 
 
254
    out += """\
 
255
\nBazaar supports all of the standard parts within the URL::
 
256
 
 
257
  <protocol>://[user[:password]@]host[:port]/[path]
 
258
 
 
259
allowing URLs such as::
 
260
 
 
261
  http://bzruser:BadPass@bzr.example.com:8080/bzr/trunk
 
262
 
 
263
For bzr+ssh:// and sftp:// URLs, Bazaar also supports paths that begin
 
264
with '~' as meaning that the rest of the path should be interpreted
 
265
relative to the remote user's home directory.  For example if the user
 
266
``remote`` has a  home directory of ``/home/remote`` on the server
 
267
shell.example.com, then::
 
268
 
 
269
  bzr+ssh://remote@shell.example.com/~/myproject/trunk
 
270
 
 
271
would refer to ``/home/remote/myproject/trunk``.
 
272
"""
 
273
 
254
274
    return out
255
275
 
256
276
 
293
313
--builtin      Use the built-in version of a command, not the plugin version.
294
314
               This does not suppress other plugin effects.
295
315
--no-plugins   Do not process any plugins.
 
316
--concurrency  Number of processes that can be run concurrently (selftest).
296
317
 
297
318
--profile      Profile execution using the hotshot profiler.
298
319
--lsprof       Profile execution using the lsprof profiler.
564
585
BZR_SSH          Path to SSH client, or one of paramiko, openssh, sshcorp, plink.
565
586
BZR_LOG          Location of .bzr.log (use '/dev/null' to suppress log).
566
587
BZR_LOG (Win32)  Location of .bzr.log (use 'NUL' to suppress log).
 
588
BZR_CONCURRENCY  Number of processes that can be run concurrently (selftest).
567
589
================ =================================================================
568
590
"""
569
591