diff options
author | gerv%gerv.net <> | 2002-08-20 06:17:18 +0200 |
---|---|---|
committer | gerv%gerv.net <> | 2002-08-20 06:17:18 +0200 |
commit | 9c0a26d3a5a35788694f5f284c69b995a3298c86 (patch) | |
tree | 15cc4cfb1e5e9fb7bcc3898530776f44c7b52492 /template/en/default/bug | |
parent | e6fff23fcd99b09511b62c4db4eca658fe5257c4 (diff) | |
download | bugzilla-9c0a26d3a5a35788694f5f284c69b995a3298c86.tar.gz bugzilla-9c0a26d3a5a35788694f5f284c69b995a3298c86.tar.xz |
Bug 143286 - Add support for Insiders, Private comments, Private Attachments. Patch by bugreport@peshkin.net; r=gerv.
Diffstat (limited to 'template/en/default/bug')
-rw-r--r-- | template/en/default/bug/comments.html.tmpl | 32 | ||||
-rw-r--r-- | template/en/default/bug/edit.html.tmpl | 7 | ||||
-rw-r--r-- | template/en/default/bug/show-multiple.html.tmpl | 2 |
3 files changed, 30 insertions, 11 deletions
diff --git a/template/en/default/bug/comments.html.tmpl b/template/en/default/bug/comments.html.tmpl index f1f8e762e..7a8ae73db 100644 --- a/template/en/default/bug/comments.html.tmpl +++ b/template/en/default/bug/comments.html.tmpl @@ -19,8 +19,9 @@ # Contributor(s): Gervase Markham <gerv@gerv.net> #%] -[% DEFAULT start_at = 0 %] +[% DEFAULT start_at = 0 mode = "show" %] [% count = 0 %] +[% isinsider = Param("insidergroup") && UserInGroup(Param("insidergroup")) %] [% FOREACH comment = comments %] [% IF count >= start_at %] [% PROCESS a_comment %] @@ -35,14 +36,25 @@ [%############################################################################%] [% BLOCK a_comment %] - [% IF count > 0 %] - <br> - <i>------- Additional Comment - <a name="c[% count %]" href="#c[% count %]">#[% count %]</a> From - <a href="mailto:[% comment.email FILTER html %]">[% comment.name FILTER html %]</a> - [%+ comment.time %] ------- - </i> - [% END %] + [% IF NOT comment.isprivate || isinsider %] + <div [% "class=\"bz_private\"" IF comment.isprivate %]> + [% IF count > 0 %] + <br> + <i>------- Additional Comment + <a name="c[% count %]" href="#c[% count %]">#[% count %]</a> From + <a href="mailto:[% comment.email FILTER html %]">[% comment.name FILTER html %]</a> + [%+ comment.time %] ------- + </i> + [% END %] + [% IF mode == "edit" && isinsider %] + <i> + <input type=hidden name="oisprivate-[% count %]" + value="[% comment.isprivate %]"> + <input type=hidden name="when-[% count %]" value="[% comment.when %]"> + <input type=checkbox name="isprivate-[% count %]" value="1" + [% " checked=\"checked\"" IF comment.isprivate %]> Private + </i> + [% END %] [%# Don't indent the <pre> block, since then the spaces are displayed in the # generated HTML @@ -50,4 +62,6 @@ <pre> [%- quoteUrls(comment.body) -%] </pre> + </div> + [% END %] [% END %] diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl index 502952ef2..9cf33b8b5 100644 --- a/template/en/default/bug/edit.html.tmpl +++ b/template/en/default/bug/edit.html.tmpl @@ -28,6 +28,7 @@ h2 = filtered_desc h3 = "Last modified: $bug.calc_disp_date" header_html = navigation_links + style_urls = [ "css/edit_bug.css" ] %] [% END %] @@ -310,6 +311,9 @@ <br> <b>Additional <u>C</u>omments:</b> + [% IF Param("insidergroup") && UserInGroup(Param("insidergroup")) %] + <input type="checkbox" name="commentprivacy" value="1"> Private + [% END %] <br> <textarea wrap="hard" name="comment" rows="10" cols="80" accesskey="c"></textarea> @@ -482,7 +486,6 @@ value="[% Param("move-button-text") %]"> [% END %] </p> -</form> [%# *** Additional Comments *** %] @@ -502,8 +505,10 @@ [% PROCESS bug/comments.html.tmpl comments = bug.comments + mode = "edit" %] +</form> <hr> [% PROCESS bug/navigate.html.tmpl %] diff --git a/template/en/default/bug/show-multiple.html.tmpl b/template/en/default/bug/show-multiple.html.tmpl index 7c3e7407f..0c089e9c5 100644 --- a/template/en/default/bug/show-multiple.html.tmpl +++ b/template/en/default/bug/show-multiple.html.tmpl @@ -22,8 +22,8 @@ [% PROCESS global/header.html.tmpl title = "Full Text Bug Listing" + style_urls = [ "css/show_multiple.css" ] %] - [% IF bugs.first %] [% FOREACH bug = bugs %] [% PROCESS bug_display %] |