/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 brzlib/help_topics/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 14:47:52 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521144752-8o6jt0a6xat9g7lm
More renames; commands in output, environment variables.

Show diffs side-by-side

added added

removed removed

Lines of Context:
597
597
 
598
598
known_env_variables = [
599
599
    ("BZRPATH", "Path where bzr is to look for shell plugin external commands."),
600
 
    ("BZR_EMAIL", "E-Mail address of the user. Overrides EMAIL."),
 
600
    ("BRZ_EMAIL", "E-Mail address of the user. Overrides EMAIL."),
601
601
    ("EMAIL", "E-Mail address of the user."),
602
 
    ("BZR_EDITOR", "Editor for editing commit messages. Overrides EDITOR."),
 
602
    ("BRZ_EDITOR", "Editor for editing commit messages. Overrides EDITOR."),
603
603
    ("EDITOR", "Editor for editing commit messages."),
604
 
    ("BZR_PLUGIN_PATH", "Paths where bzr should look for plugins."),
605
 
    ("BZR_DISABLE_PLUGINS", "Plugins that bzr should not load."),
606
 
    ("BZR_PLUGINS_AT", "Plugins to load from a directory not in BZR_PLUGIN_PATH."),
607
 
    ("BZR_HOME", "Directory holding .bazaar config dir. Overrides HOME."),
608
 
    ("BZR_HOME (Win32)", "Directory holding bazaar config dir. Overrides APPDATA and HOME."),
609
 
    ("BZR_REMOTE_PATH", "Full name of remote 'bzr' command (for bzr+ssh:// URLs)."),
610
 
    ("BZR_SSH", "Path to SSH client, or one of paramiko, openssh, sshcorp, plink or lsh."),
611
 
    ("BZR_LOG", "Location of .bzr.log (use '/dev/null' to suppress log)."),
612
 
    ("BZR_LOG (Win32)", "Location of .bzr.log (use 'NUL' to suppress log)."),
613
 
    ("BZR_COLUMNS", "Override implicit terminal width."),
614
 
    ("BZR_CONCURRENCY", "Number of processes that can be run concurrently (selftest)"),
615
 
    ("BZR_PROGRESS_BAR", "Override the progress display. Values are 'none' or 'text'."),
616
 
    ("BZR_PDB", "Control whether to launch a debugger on error."),
617
 
    ("BZR_SIGQUIT_PDB", "Control whether SIGQUIT behaves normally or invokes a breakin debugger."),
618
 
    ("BZR_TEXTUI_INPUT", "Force console input mode for prompts to line-based (instead of char-based)."),
 
604
    ("BRZ_PLUGIN_PATH", "Paths where bzr should look for plugins."),
 
605
    ("BRZ_DISABLE_PLUGINS", "Plugins that bzr should not load."),
 
606
    ("BRZ_PLUGINS_AT", "Plugins to load from a directory not in BRZ_PLUGIN_PATH."),
 
607
    ("BRZ_HOME", "Directory holding .bazaar config dir. Overrides HOME."),
 
608
    ("BRZ_HOME (Win32)", "Directory holding bazaar config dir. Overrides APPDATA and HOME."),
 
609
    ("BRZ_REMOTE_PATH", "Full name of remote 'bzr' command (for bzr+ssh:// URLs)."),
 
610
    ("BRZ_SSH", "Path to SSH client, or one of paramiko, openssh, sshcorp, plink or lsh."),
 
611
    ("BRZ_LOG", "Location of .bzr.log (use '/dev/null' to suppress log)."),
 
612
    ("BRZ_LOG (Win32)", "Location of .bzr.log (use 'NUL' to suppress log)."),
 
613
    ("BRZ_COLUMNS", "Override implicit terminal width."),
 
614
    ("BRZ_CONCURRENCY", "Number of processes that can be run concurrently (selftest)"),
 
615
    ("BRZ_PROGRESS_BAR", "Override the progress display. Values are 'none' or 'text'."),
 
616
    ("BRZ_PDB", "Control whether to launch a debugger on error."),
 
617
    ("BRZ_SIGQUIT_PDB", "Control whether SIGQUIT behaves normally or invokes a breakin debugger."),
 
618
    ("BRZ_TEXTUI_INPUT", "Force console input mode for prompts to line-based (instead of char-based)."),
619
619
    ]
620
620
 
621
621
def _env_variables(topic):