diff options
author | mkanat%bugzilla.org <> | 2009-01-07 22:22:08 +0100 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-01-07 22:22:08 +0100 |
commit | 559f89582199e4ca531398a5cadd03632526d525 (patch) | |
tree | 152c46e8fae572662b9004a9658f44dcc874f96b /template/en/default/global | |
parent | 1ef4ee777a69bc857fb1b4ee95e2521904d1a5cc (diff) | |
download | bugzilla-559f89582199e4ca531398a5cadd03632526d525.tar.gz bugzilla-559f89582199e4ca531398a5cadd03632526d525.tar.xz |
Bug 450403: Add ability to view comments via the web service (Bug.comments)
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=dkl, a=mkanat
Diffstat (limited to 'template/en/default/global')
-rw-r--r-- | template/en/default/global/code-error.html.tmpl | 6 | ||||
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/template/en/default/global/code-error.html.tmpl b/template/en/default/global/code-error.html.tmpl index 37e052f81..da8f902d4 100644 --- a/template/en/default/global/code-error.html.tmpl +++ b/template/en/default/global/code-error.html.tmpl @@ -345,6 +345,12 @@ a <code>[% param FILTER html %]</code> argument, and that argument was not set. + [% ELSIF error == "params_required" %] + [% title = "Missing Parameter" %] + The function <code>[% function FILTER html %]</code> requires + that you set one of the following parameters: + <code>[% params.join(', ') FILTER html %]</code> + [% ELSIF error == "product_empty_group_controls" %] [% title = "Missing Group Controls" %] New settings must be defined to edit group controls for diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 191f6eebd..d92b04622 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -239,10 +239,16 @@ [% title = "Chart Too Large" %] Sorry, but 2000 x 2000 is the maximum size for a chart. + [% ELSIF error == "comment_id_invalid" %] + [% id FILTER html %] is not a valid comment id. + [% ELSIF error == "comment_invalid_isprivate" %] You tried to modify the privacy of comment id [% id FILTER html %], but that is not a valid comment on this [% terms.bug %]. + [% ELSIF error == "comment_is_private" %] + Comment id [% id FILTER html %] is private. + [% ELSIF error == "comment_required" %] [% title = "Comment Required" %] You have to specify a |