diff options
author | W. Trevor King <wking@drexel.edu> | 2008-12-04 10:32:10 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2008-12-04 10:32:10 -0500 |
commit | d1dfc45b051b0e14c0e2d7ed6dbf1d32927d7bfb (patch) | |
tree | 7d236d73762bbc654ae6f864b576b802e68b9a4b /.be/settings | |
parent | ca347e86bef7bbdd0d1007beaf283f29ec1bbdff (diff) | |
download | bugseverywhere-d1dfc45b051b0e14c0e2d7ed6dbf1d32927d7bfb.tar.gz |
bug severity verification now works with per-tree severities.
I adjusted the YAML format following
http://pyyaml.org/ticket/11
Unicode support
To remove '!!python/unicode' escapes and allow unicode in the output.
We can always have unicode in the output because the output is encoded
(as per the BugFile.encoding setting) before being sent to the outside
world.
Diffstat (limited to '.be/settings')
-rw-r--r-- | .be/settings | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/.be/settings b/.be/settings index 26f81cd..807b33c 100644 --- a/.be/settings +++ b/.be/settings @@ -1,15 +1,17 @@ rcs_name: bzr + severities: -- name: wishlist - description: A feature that could improve usefulness, but not a bug. -- name: minor - description: The standard bug level. -- name: moderate - description: Yet another bug severity. -- name: serious - description: A bug that requires workarounds. -- name: critical - description: A bug that prevents some features from working at all. -- name: fatal - description: A bug that makes the package unusable. +- - wishlist + - A feature that could improve usefulness, but not a bug. +- - minor + - The standard bug level. +- - moderate + - Yet another bug severity. +- - serious + - A bug that requires workarounds. +- - critical + - A bug that prevents some features from working at all. +- - fatal + - A bug that makes the package unusable. + |