diff options
author | Yoni Rabkin <yonirabkin@member.fsf.org> | 2014-04-17 10:55:13 -0400 |
---|---|---|
committer | Yoni Rabkin <yonirabkin@member.fsf.org> | 2014-04-17 10:55:13 -0400 |
commit | 28b08a423e8795b1c033a5dea9b70be4af51fa5a (patch) | |
tree | 45f8300f574c993f3416033868eeeccbc82f4143 | |
parent | 757d80870d130e27536d83461a2067a67c6dcecd (diff) |
* doc/rt-liberation.texinfo: Document new features.
-rw-r--r-- | doc/rt-liberation.texinfo | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/doc/rt-liberation.texinfo b/doc/rt-liberation.texinfo index 6bb2292..1b7cbf5 100644 --- a/doc/rt-liberation.texinfo +++ b/doc/rt-liberation.texinfo @@ -435,6 +435,11 @@ Scroll the text of the ticket browser downward. @findex rt-liber-browser-move Move the ticket to a different queue. +@item P +@kindex P (ticket browser) +@findex rt-liber-browser-prioritize +Set the numerical priority level of the ticket at point. + @end table @menu @@ -470,7 +475,8 @@ ID number of the ticket in the RT database. @item %s Subject line. @item %c -Ticket creation time. +Ticket creation time. The format to display the time is specified in +the variable @var{rt-liber-browser-time-format-string}. @item %S Ticket status (``open'', ``new'' etc.) @item %r @@ -483,6 +489,8 @@ Creator of the ticket. Owner of the ticket. @item %q The queue originating the ticket. +@item %p +The numerical priority of the ticket @end table Here is an example implementation of @@ -505,7 +513,10 @@ would break the font-locking regular expressions. (insert (rt-liber-format " %o <== %R" ticket))) @end lisp - +The function @dfn{rt-liber-high-priority-p} can be used to apply a +different face or text to a ticket if it is high priority. A ticket is +considered high priority if its value is strictly higher than +@var{rt-liber-browser-priority-cutoff} |