summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2020-05-13 12:19:34 +0200
committerRicardo Wurmus <rekado@elephly.net>2020-05-13 12:19:34 +0200
commit2b87dd22bd9ef4d5d2e769c8e6ddf94c10a5ec3e (patch)
tree395493fa3f962cc77770e457e7fbcf84d1473962
parentb38db15f2a7f7f9ba9431748f593bf97c991260d (diff)
view/html: Document severities and tags.
-rw-r--r--mumi/web/view/html.scm36
1 files changed, 36 insertions, 0 deletions
diff --git a/mumi/web/view/html.scm b/mumi/web/view/html.scm
index c297366..3ce0a12 100644
--- a/mumi/web/view/html.scm
+++ b/mumi/web/view/html.scm
@@ -158,6 +158,12 @@ simple query language. Here is a list of supported query terms:")
"submitter:me")
", "
(span (@ (class "filter"))
+ "severity:serious")
+ ", "
+ (span (@ (class "filter"))
+ "tag:easy")
+ ", "
+ (span (@ (class "filter"))
"date:2d..now")
", "
(span (@ (class "filter"))
@@ -277,6 +283,36 @@ some examples.")
" for all messages where rekado has commented. "
"The filter matches both the email address and the name."))
(tr
+ (td (span (@ (class "filter")) "severity:<type>"))
+ (td "Issues that have been marked with the given severity, e.g. "
+ (span (@ (class "filter")) "severity:serious")
+ " for all issues that have been labelled as serious bugs. "
+ "The following severities are recognized: "
+ (strong "critical") ", "
+ (strong "grave") ", "
+ (strong "serious") ", "
+ (strong "important") ", "
+ (strong "normal") ", "
+ (strong "minor") ", and "
+ (strong "wishlist") "."))
+ (tr
+ (td (span (@ (class "filter")) "tag:<type>"))
+ (td "Issues that have been tagged with the given tag, e.g. "
+ (span (@ (class "filter")) "tag:easy")
+ " for all easy issues that are suitable for newcomers. "
+ "The following tags are recognized: "
+ (strong "patch") ", "
+ (strong "wontfix") ", "
+ (strong "moreinfo") ", "
+ (strong "unreproducible") ", "
+ (strong "fixed") ", "
+ (strong "notabug") ", "
+ (strong "pending") ", "
+ (strong "help") ", "
+ (strong "security") ", "
+ (strong "confirmed") ", and "
+ (strong "easy") "."))
+ (tr
(td (span (@ (class "filter")) "date:<start>..<end>"))
(td "Issues submitted within the provided range. "
(strong "start") " and " (strong "end") " can be one of "