diff options
author | gerv%gerv.net <> | 2002-04-29 07:24:40 +0200 |
---|---|---|
committer | gerv%gerv.net <> | 2002-04-29 07:24:40 +0200 |
commit | 33a7321c31f455886f2ba2592471f366fb3bc9f2 (patch) | |
tree | 1b7c606dcce86d8a622d65188bef7865e5b11dc8 /template | |
parent | 3d2f41a6774cd0bfa5b631072c7ecea727c1f272 (diff) | |
download | bugzilla-33a7321c31f455886f2ba2592471f366fb3bc9f2.tar.gz bugzilla-33a7321c31f455886f2ba2592471f366fb3bc9f2.tar.xz |
Bug 137623 - showdependencytree.cgi has minor grammatical and formatting issues. Patch by gerv; r=bbaetz, justdave.
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/dependency-tree.html.tmpl | 37 |
1 files changed, 13 insertions, 24 deletions
diff --git a/template/en/default/bug/dependency-tree.html.tmpl b/template/en/default/bug/dependency-tree.html.tmpl index bf8aa2d64..23cb6f094 100644 --- a/template/en/default/bug/dependency-tree.html.tmpl +++ b/template/en/default/bug/dependency-tree.html.tmpl @@ -23,27 +23,21 @@ [% PROCESS global/header.html.tmpl title = "Dependency tree for Bug $bugid" - h1 = "Dependency tree for bug <a href=\"show_bug.cgi?id=$bugid\">$bugid</a>" + h1 = "Dependency tree for <a href=\"show_bug.cgi?id=$bugid\">bug $bugid</a>" style = "strike { background-color: #d9d9d9; color: #000000; }" %] [% PROCESS depthControlToolbar %] [%# Display the tree of bugs that this bug depends on. %] -<h3>Bugs that bug <a href="show_bug.cgi?id=[% bugid %]">[% bugid %]</a> depends on +<h3>[% hide_resolved ? "Open b" : "B" %]ugs that <a href="show_bug.cgi?id=[% bugid %]">bug [% bugid %]</a> depends on</h3> [% IF dependson_ids.size > 0 %] - (<a href="buglist.cgi?bug_id=[% dependson_ids.join(",") %]">view as bug list</a> + ( + [% IF maxdepth -%]Up to [% maxdepth %] level[% "s" IF maxdepth > 1 %] deep | [% END %] + <a href="buglist.cgi?bug_id=[% dependson_ids.join(",") %]">view as bug list</a> [% IF canedit && dependson_ids.size > 1 %] | <a href="buglist.cgi?bug_id=[% dependson_ids.join(",") %]&tweak=1">change several</a> [% END %]) - [% IF maxdepth || hide_resolved %] - <small><b> - (Only [% "open" IF hide_resolved %] bugs - [% " whose depth is less than $maxdepth" IF maxdepth %] - will be shown) - </b></small> - [% END %] - </h3> [% INCLUDE display_tree tree=dependson_tree bug_id=bugid %] [% ELSE %] </h3> @@ -51,20 +45,14 @@ [% END %] [%# Display the tree of bugs that this bug blocks. %] -<h3>Bugs that bug <a href="show_bug.cgi?id=[% bugid %]">[% bugid %]</a> blocks +<h3>[% hide_resolved ? "Open b" : "B" %]ugs that <a href="show_bug.cgi?id=[% bugid %]">bug [% bugid %]</a> blocks</h3> [% IF blocked_ids.size > 0 %] - (<a href="buglist.cgi?bug_id=[% blocked_ids.join(",") %]">view as bug list</a> + ( + [% IF maxdepth -%]Up to [% maxdepth %] level[% "s" IF maxdepth > 1 %] deep | [% END %] + <a href="buglist.cgi?bug_id=[% blocked_ids.join(",") %]">view as bug list</a> [% IF canedit && blocked_ids.size > 1 %] | <a href="buglist.cgi?bug_id=[% blocked_ids.join(",") %]&tweak=1">change several</a> [% END %]) - [% IF maxdepth || hide_resolved %] - <small><b> - (Only [% "open" IF hide_resolved %] bugs - [% " whose depth is less than $maxdepth" IF maxdepth %] - will be shown) - </b></small> - [% END %] - </h3> [% INCLUDE display_tree tree=blocked_tree bug_id=bugid %] [% ELSE %] </h3> @@ -90,7 +78,7 @@ [[% IF dep.milestone %][% dep.milestone FILTER html %], [% END %] [% dep.assignee_email FILTER html %]] - [% IF dep.seen %] - <i><This bug appears elsewhere in this tree></i></a> + <i>This bug appears elsewhere in this tree.</i></a> [% ELSE %] [% dep.summary FILTER html %].</a> [% END %] @@ -168,7 +156,7 @@ [%# Limit entry form: the button can not do anything when total depth is less than two, so disable it %] <input name="maxdepth" size="4" maxlength="4" value="[% - maxdepth > 0 ? maxdepth : "" + maxdepth > 0 && maxdepth <= realdepth ? maxdepth : "" %]"> <input name="id" type="hidden" value="[% bugid %]"> <input name="hide_resolved" type="hidden" value="[% hide_resolved %]"> @@ -201,7 +189,8 @@ [%# Unlimited button %] <input name="id" type="hidden" value="[% bugid %]"> <input name="hide_resolved" type="hidden" value="[% hide_resolved %]"> - <input type="submit" value=" Unlimited "> + <input type="submit" value=" Unlimited " + [% maxdepth == 0 || maxdepth == realdepth ? "disabled" : "" %]> </form> </td> </tr> |