aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2011-05-25 06:46:26 -0400
committerW. Trevor King <wking@drexel.edu>2011-05-25 06:46:26 -0400
commitb039ea6ef3f39b808f55405a3b6e06d88323dd6e (patch)
treee220e1944b21419eedeb06f69200f7d3a33f3de9
parentd93b6b2d9f3dbd3eb69ea1e3cae9d44c5650a4c2 (diff)
downloadbugseverywhere-b039ea6ef3f39b808f55405a3b6e06d88323dd6e.tar.gz
Move Tim Guirgies' help for status/severity overrides to .
-rw-r--r--libbe/command/set.py51
-rw-r--r--libbe/command/severity.py16
-rw-r--r--libbe/command/status.py22
3 files changed, 54 insertions, 35 deletions
diff --git a/libbe/command/set.py b/libbe/command/set.py
index b3eb583..d2da2ec 100644
--- a/libbe/command/set.py
+++ b/libbe/command/set.py
@@ -100,7 +100,56 @@ To unset a setting, set it to "none".
Allowed settings are:
-%s""" % ('\n'.join(get_bugdir_settings()),)
+%s
+
+Note that this command does not provide a good interface for some of
+these settings (yet!). You may need to edit the bugdir settings file
+(`.be/<bugdir>/settings`) manually. Examples for each troublesome
+setting are given below.
+
+Add the following lines to override the default severities and use
+your own:
+
+ severities:
+ - - target
+ - The issue is a target or milestone, not a bug.
+ - - wishlist
+ - A feature that could improve usefulness, but not a bug.
+
+You may add as many name/description pairs as you wish to have; they
+are sorted in order from least important at the top, to most important
+at the bottom. The target severity gets special handling by `be
+target`.
+
+Note that the values here _override_ the defaults. That means that if
+you like the defaults, and wish to keep them, you will have to copy
+them here before adding any of your own. See `be severity --help` for
+the current list.
+
+Add the following lines to override the default statuses and use your
+own:
+
+ active_status:
+ - - unconfirmed
+ - A possible bug which lacks independent existance confirmation.
+ - - open
+ - A working bug that has not been assigned to a developer.
+
+ inactive_status:
+ - - closed
+ - The bug is no longer relevant.
+ - - fixed
+ - The bug should no longer occur.
+
+You may add as many name/description pairs as you wish to have; they
+are sorted in order from most important at the top, to least important
+at the bottom.
+
+Note that the values here _override_ the defaults. That means that if
+you like the defaults, and wish to keep them, you will have to copy
+them here before adding any of your own. See `be status --help` for
+the current list.
+""" % ('\n'.join(get_bugdir_settings()),)
def get_bugdir_settings():
settings = []
diff --git a/libbe/command/severity.py b/libbe/command/severity.py
index 3aea386..4692b70 100644
--- a/libbe/command/severity.py
+++ b/libbe/command/severity.py
@@ -98,19 +98,7 @@ is specified, it will be assigned to the bug.
Severity levels are:
%s
-You can overide the list of allowed severities on a per-repository basis.
-In order to do so, you must edit your be settings file. This can be found within your .be/xxx-xxx directory.
-
-Add the following lines to override the default severities and use your own:
-
-severities:
- - - target
- - The issue is a target or milestone, not a bug.
- - - wishlist
- - A feature that could improve usefulness, but not a bug.
-
-You may add as many name/description pairs as you wish to have; they are sorted in order from least important at the top, to most important at the bottom.
-
-Note that the values here _override_ the defaults. That means that if you like the defaults, and wish to keep them, you will have to copy them here before adding any of your own.
+You can overide the list of allowed severities on a per-repository
+basis. See `be set --help` for details.
""" % ('\n '.join(severity_levels))
return ret
diff --git a/libbe/command/status.py b/libbe/command/status.py
index e708e8f..887ff05 100644
--- a/libbe/command/status.py
+++ b/libbe/command/status.py
@@ -110,25 +110,7 @@ Active status levels are:
Inactive status levels are:
%s
-You can overide the list of allowed statuses on a per-repository basis.
-In order to do so, you must edit your be settings file. This can be found within your .be/xxx-xxx directory.
-
-Add the following lines to override the default statuses and use your own:
-
-active_status:
- - - unconfirmed
- - A possible bug which lacks independent existance confirmation.
- - - open
- - A working bug that has not been assigned to a developer.
-
-inactive_status:
- - - closed
- - The bug is no longer relevant.
- - - fixed
- - The bug should no longer occur.
-
-You may add as many name/description pairs as you wish to have; they are sorted in order from most important at the top, to least important at the bottom.
-
-Note that the values here _override_ the defaults. That means that if you like the defaults, and wish to keep them, you will have to copy them here before adding any of your own.
+You can overide the list of allowed statuses on a per-repository
+basis. See `be set --help` for details.
""" % ('\n '.join(active_statuses), '\n '.join(inactive_statuses))
return ret