aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/command
diff options
context:
space:
mode:
Diffstat (limited to 'libbe/command')
-rw-r--r--libbe/command/severity.py14
-rw-r--r--libbe/command/status.py20
2 files changed, 32 insertions, 2 deletions
diff --git a/libbe/command/severity.py b/libbe/command/severity.py
index c510bc4..3aea386 100644
--- a/libbe/command/severity.py
+++ b/libbe/command/severity.py
@@ -99,6 +99,18 @@ Severity levels are:
%s
You can overide the list of allowed severities on a per-repository basis.
-See "be set --help" for more details.
+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.
""" % ('\n '.join(severity_levels))
return ret
diff --git a/libbe/command/status.py b/libbe/command/status.py
index e034bef..e708e8f 100644
--- a/libbe/command/status.py
+++ b/libbe/command/status.py
@@ -111,6 +111,24 @@ Inactive status levels are:
%s
You can overide the list of allowed statuses on a per-repository basis.
-See "be set --help" for more details.
+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.
""" % ('\n '.join(active_statuses), '\n '.join(inactive_statuses))
return ret