From a5996961f534b606e2057b901909759cb5d4d3fd Mon Sep 17 00:00:00 2001 From: "gerv%gerv.net" <> Date: Fri, 26 Apr 2002 00:21:24 +0000 Subject: Bug 139928 - cvs remove templates from template/default directory. These templates now all live in template/en/default, for l10n purposes. --- template/default/show/activity.html.tmpl | 91 ---- template/default/show/bug-activity.html.tmpl | 43 -- template/default/show/choose_bug.html.tmpl | 36 -- template/default/show/choose_xml.html.tmpl | 47 -- template/default/show/comments.tmpl | 54 --- template/default/show/dependency-graph.html.tmpl | 98 ---- template/default/show/dependency-tree.html.tmpl | 209 --------- template/default/show/multiple.tmpl | 156 ------- template/default/show/navigate.html.tmpl | 54 --- template/default/show/show_bug.html.tmpl | 540 ----------------------- 10 files changed, 1328 deletions(-) delete mode 100644 template/default/show/activity.html.tmpl delete mode 100644 template/default/show/bug-activity.html.tmpl delete mode 100644 template/default/show/choose_bug.html.tmpl delete mode 100644 template/default/show/choose_xml.html.tmpl delete mode 100644 template/default/show/comments.tmpl delete mode 100644 template/default/show/dependency-graph.html.tmpl delete mode 100644 template/default/show/dependency-tree.html.tmpl delete mode 100644 template/default/show/multiple.tmpl delete mode 100644 template/default/show/navigate.html.tmpl delete mode 100644 template/default/show/show_bug.html.tmpl (limited to 'template/default/show') diff --git a/template/default/show/activity.html.tmpl b/template/default/show/activity.html.tmpl deleted file mode 100644 index 43529bd23..000000000 --- a/template/default/show/activity.html.tmpl +++ /dev/null @@ -1,91 +0,0 @@ - -[%# The contents of this file are subject to the Mozilla Public - # License Version 1.1 (the "License"); you may not use this file - # except in compliance with the License. You may obtain a copy of - # the License at http://www.mozilla.org/MPL/ - # - # Software distributed under the License is distributed on an "AS - # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or - # implied. See the License for the specific language governing - # rights and limitations under the License. - # - # The Original Code is the Bugzilla Bug Tracking System. - # - # The Initial Developer of the Original Code is Netscape Communications - # Corporation. Portions created by Netscape are - # Copyright (C) 1998 Netscape Communications Corporation. All - # Rights Reserved. - # - # Contributor(s): Gervase Markham - #%] - -[%# INTERFACE: - # operations: array of hashes. May be empty. Each has has three members: - # who: string. who performed the operation - # when: string. when they performed it - # changes: hash. Details of what they changed. This hash has three - # compulsory and one optional member: - # field: string. The name of the field - # removed: string. What was removed from the field - # added: string. What was added to the field - # attach_id: integer. If the change was adding an attachment, its id. - # incomplete_data: boolean. True if some of the data is incomplete (because - # it was affected by an old Bugzilla bug.) - #%] - -[% IF incomplete_data %] -

- There used to be a bug Bugzilla which caused activity data - to be lost if there was a large number of cc's or dependencies. That - has been fixed, however, there was some data already lost on this bug - that could not be regenerated. The changes that the script could not - reliably determine are prefixed by '?'. -

-[% END %] - -[% IF operations.size > 0 %] - - - - - - - - - - [% FOREACH operation = operations %] - - - - [% FOREACH change = operation.changes %] - [% "" IF loop.index > 0 %] - - - - [% END %] - - [% END %] -
WhoWhenWhatRemovedAdded
- [% operation.who %] - - [% operation.when %] -
- [% IF change.attachid %] - - Attachment #[% change.attachid %] - [% END %] - [% change.field %] - - [% IF change.removed %] - [% change.removed FILTER html %] - [% ELSE %] -   - [% END %] - - [% IF change.added %] - [% change.added FILTER html %] - [% ELSE %] -   - [% END %] -
-[% END %] diff --git a/template/default/show/bug-activity.html.tmpl b/template/default/show/bug-activity.html.tmpl deleted file mode 100644 index 387ba6d6c..000000000 --- a/template/default/show/bug-activity.html.tmpl +++ /dev/null @@ -1,43 +0,0 @@ - -[%# The contents of this file are subject to the Mozilla Public - # License Version 1.1 (the "License"); you may not use this file - # except in compliance with the License. You may obtain a copy of - # the License at http://www.mozilla.org/MPL/ - # - # Software distributed under the License is distributed on an "AS - # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or - # implied. See the License for the specific language governing - # rights and limitations under the License. - # - # The Original Code is the Bugzilla Bug Tracking System. - # - # The Initial Developer of the Original Code is Netscape Communications - # Corporation. Portions created by Netscape are - # Copyright (C) 1998 Netscape Communications Corporation. All - # Rights Reserved. - # - # Contributor(s): Gervase Markham - #%] - -[%# INTERFACE: - # bug_id: integer. The bug ID. - # - # This template also needs to be called with the interface to the - # activity.html.tmpl template fulfilled. - #%] - -[% INCLUDE global/header - title = "Changes made to bug $bug_id" - h1 = "Activity log" - h2 = "Bug $bug_id" - %] - -
- -[% INCLUDE show/activity.html.tmpl %] - -

- Back to bug [% bug_id %] -

- -[% INCLUDE global/footer %] diff --git a/template/default/show/choose_bug.html.tmpl b/template/default/show/choose_bug.html.tmpl deleted file mode 100644 index b776ff255..000000000 --- a/template/default/show/choose_bug.html.tmpl +++ /dev/null @@ -1,36 +0,0 @@ - -[%# The contents of this file are subject to the Mozilla Public - # License Version 1.1 (the "License"); you may not use this file - # except in compliance with the License. You may obtain a copy of - # the License at http://www.mozilla.org/MPL/ - # - # Software distributed under the License is distributed on an "AS - # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or - # implied. See the License for the specific language governing - # rights and limitations under the License. - # - # The Original Code is the Bugzilla Bug Tracking System. - # - # The Initial Developer of the Original Code is Netscape Communications - # Corporation. Portions created by Netscape are - # Copyright (C) 1998 Netscape Communications Corporation. All - # Rights Reserved. - # - # Contributor(s): Gervase Markham - #%] - -[% UNLESS header_done %] - [% INCLUDE global/header - title = "Search by bug number" - %] -[% END %] - -
-

- You may find a single bug by entering its bug id here: - - -

-
- -[% INCLUDE global/footer %] diff --git a/template/default/show/choose_xml.html.tmpl b/template/default/show/choose_xml.html.tmpl deleted file mode 100644 index 4456534f5..000000000 --- a/template/default/show/choose_xml.html.tmpl +++ /dev/null @@ -1,47 +0,0 @@ - -[%# The contents of this file are subject to the Mozilla Public - # License Version 1.1 (the "License"); you may not use this file - # except in compliance with the License. You may obtain a copy of - # the License at http://www.mozilla.org/MPL/ - # - # Software distributed under the License is distributed on an "AS - # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or - # implied. See the License for the specific language governing - # rights and limitations under the License. - # - # The Original Code is the Bugzilla Bug Tracking System. - # - # The Initial Developer of the Original Code is Netscape Communications - # Corporation. Portions created by Netscape are - # Copyright (C) 1998 Netscape Communications Corporation. All - # Rights Reserved. - # - # Contributor(s): Gervase Markham - #%] - -[% INCLUDE global/header - title = "Display bugs as XML" - %] - -
- - - - - - - - - - -
- Display bugs as XML by entering a list of bug numbers here: - - - -
  - (e.g. 1000, 2467, 852) -
-
- -[% INCLUDE global/footer %] diff --git a/template/default/show/comments.tmpl b/template/default/show/comments.tmpl deleted file mode 100644 index 27177486e..000000000 --- a/template/default/show/comments.tmpl +++ /dev/null @@ -1,54 +0,0 @@ - -[%# The contents of this file are subject to the Mozilla Public - # License Version 1.1 (the "License"); you may not use this file - # except in compliance with the License. You may obtain a copy of - # the License at http://www.mozilla.org/MPL/ - # - # Software distributed under the License is distributed on an "AS - # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or - # implied. See the License for the specific language governing - # rights and limitations under the License. - # - # The Original Code is the Bugzilla Bug Tracking System. - # - # The Initial Developer of the Original Code is Netscape Communications - # Corporation. Portions created by Netscape are - # Copyright (C) 1998 Netscape Communications Corporation. All - # Rights Reserved. - # - # Contributor(s): Gervase Markham - #%] - -[% DEFAULT start_at = 0 %] -[% count = 0 %] -[% FOREACH comment = comments %] - [% IF count >= start_at %] - [% PROCESS a_comment %] - [% END %] - - [% count = count + 1 %] -[% END %] - - -[%############################################################################%] -[%# Block for individual comments #%] -[%############################################################################%] - -[% BLOCK a_comment %] - [% IF count > 0 %] -
- ------- Additional Comment - #[% count %] From - [% comment.name FILTER html %] - [%+ comment.time %] ------- - - [% END %] - -
-[%# Don't indent the
 block, since then the spaces are displayed in the
-  # generated HTML
-  #%]
-
-  [%- quoteUrls(comment.body) -%]
-
-[% END %] diff --git a/template/default/show/dependency-graph.html.tmpl b/template/default/show/dependency-graph.html.tmpl deleted file mode 100644 index fff5f1b4d..000000000 --- a/template/default/show/dependency-graph.html.tmpl +++ /dev/null @@ -1,98 +0,0 @@ - -[%# The contents of this file are subject to the Mozilla Public - # License Version 1.1 (the "License"); you may not use this file - # except in compliance with the License. You may obtain a copy of - # the License at http://www.mozilla.org/MPL/ - # - # Software distributed under the License is distributed on an "AS - # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or - # implied. See the License for the specific language governing - # rights and limitations under the License. - # - # The Original Code is the Bugzilla Bug Tracking System. - # - # The Initial Developer of the Original Code is Netscape Communications - # Corporation. Portions created by Netscape are - # Copyright (C) 1998 Netscape Communications Corporation. All - # Rights Reserved. - # - # Contributor(s): Gervase Markham - #%] - -[%# INTERFACE: - # bug_id: integer. The number of the bug(s). - # multiple_bugs: boolean. True if bug_id contains > 1 bug number. - # doall: boolean. True if we are displaying every bug in the database. - # showsummary: boolean. True if we are showing bug summaries. - # rankdir: string. "TB" if we are ranking top-to-bottom, - "LR" if left-to-right. - # image_url: string. The URL of the graphic showing the dependencies. - # map_url: string. The URL of the map file for the image. - #%] - -[% title = "Dependency Graph" - h1 = title - %] - -[% IF NOT multiple_bugs %] - [% title = "$title for bug $bug_id" - h1 = "$h1 for bug $bug_id" - %] -[% END %] - -[% INCLUDE global/header %] - -

- Green circles represent open bugs. -

- - - - - -
- -
- - - - - - - - - - - - - - - - -
- Bug numbers: - -
- - Show every bug in the system with dependencies -
- - Show the summaries of all displayed bugs -
- -
- -
- -[% INCLUDE global/footer %] diff --git a/template/default/show/dependency-tree.html.tmpl b/template/default/show/dependency-tree.html.tmpl deleted file mode 100644 index fb6163b24..000000000 --- a/template/default/show/dependency-tree.html.tmpl +++ /dev/null @@ -1,209 +0,0 @@ - -[%# The contents of this file are subject to the Mozilla Public - # License Version 1.1 (the "License"); you may not use this file - # except in compliance with the License. You may obtain a copy of - # the License at http://www.mozilla.org/MPL/ - # - # Software distributed under the License is distributed on an "AS - # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or - # implied. See the License for the specific language governing - # rights and limitations under the License. - # - # The Original Code is the Bugzilla Bug Tracking System. - # - # The Initial Developer of the Original Code is Netscape Communications - # Corporation. Portions created by Netscape are - # Copyright (C) 1998 Netscape Communications Corporation. All - # Rights Reserved. - # - # Contributor(s): Tobias Burnus - # Ville Skyttä - # Myk Melez - #%] - -[% PROCESS global/header - title = "Dependency tree for Bug $bugid" - h1 = "Dependency tree for bug $bugid" - style = "strike { background-color: #d9d9d9; color: #000000; }" -%] - -[% PROCESS depthControlToolbar %] - -[%# Display the tree of bugs that this bug depends on. %] -

Bugs that bug [% bugid %] depends on -[% IF dependson_ids.size > 0 %] - (view as bug list - [% IF canedit && dependson_ids.size > 1 %] - | change several - [% END %]) - [% IF maxdepth || hide_resolved %] - - (Only [% "open" IF hide_resolved %] bugs - [% " whose depth is less than $maxdepth" IF maxdepth %] - will be shown) - - [% END %] -

- [% INCLUDE display_tree tree=dependson_tree bug_id=bugid %] -[% ELSE %] - -

None

-[% END %] - -[%# Display the tree of bugs that this bug blocks. %] -

Bugs that bug [% bugid %] blocks -[% IF blocked_ids.size > 0 %] - (view as bug list - [% IF canedit && blocked_ids.size > 1 %] - | change several - [% END %]) - [% IF maxdepth || hide_resolved %] - - (Only [% "open" IF hide_resolved %] bugs - [% " whose depth is less than $maxdepth" IF maxdepth %] - will be shown) - - [% END %] -

- [% INCLUDE display_tree tree=blocked_tree bug_id=bugid %] -[% ELSE %] - -

None

-[% END %] - -[% PROCESS depthControlToolbar %] - -[% PROCESS global/footer %] - - -[%###########################################################################%] -[%# Block to display a tree #%] -[%###########################################################################%] - -[% BLOCK display_tree %] - -[% END %] - -[%###########################################################################%] -[%# Block for depth control toolbar #%] -[%###########################################################################%] - -[% BLOCK depthControlToolbar %] - - - [%# Hide/show resolved button - Swaps text depending on the state of hide_resolved %] - - - - - - - - - - - - - - - - -
-
- - [% IF maxdepth %] - - [% END %] - - -
-
- Max Depth: - -   - -
- [%# set to one form %] - - - - -
-
-
- [%# Minus one form - Allow subtracting only when realdepth and maxdepth > 1 %] - - - - -
-
-
- [%# Limit entry form: the button can not do anything when total depth - is less than two, so disable it %] - - - - -
-
-
- [%# plus one form - Disable button if total depth < 2, or if depth set to unlimited %] - - [% IF maxdepth %] - - [% END %] - - = realdepth ? - "disabled" : "" - %]> -
-
-
- [%# Unlimited button %] - - - -
-
-[% END %] diff --git a/template/default/show/multiple.tmpl b/template/default/show/multiple.tmpl deleted file mode 100644 index 8313323aa..000000000 --- a/template/default/show/multiple.tmpl +++ /dev/null @@ -1,156 +0,0 @@ - -[%# The contents of this file are subject to the Mozilla Public - # License Version 1.1 (the "License"); you may not use this file - # except in compliance with the License. You may obtain a copy of - # the License at http://www.mozilla.org/MPL/ - # - # Software distributed under the License is distributed on an "AS - # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or - # implied. See the License for the specific language governing - # rights and limitations under the License. - # - # The Original Code is the Bugzilla Bug Tracking System. - # - # The Initial Developer of the Original Code is Netscape Communications - # Corporation. Portions created by Netscape are - # Copyright (C) 1998 Netscape Communications Corporation. All - # Rights Reserved. - # - # Contributor(s): Terry Weissman - # Gervase Markham - #%] - -[% INCLUDE global/header - title = "Full Text Bug Listing" -%] - -[% IF bugs.first %] - [% FOREACH bug = bugs %] - [% PROCESS bug_display %] - [% END %] -[% ELSE %] -

- You'd have more luck if you gave me some bug numbers. -

-[% END %] - -[% INCLUDE global/footer %] - - -[%###########################################################################%] -[%# Block for an individual bug #%] -[%###########################################################################%] - -[% BLOCK bug_display %] - -
- - Bug [% bug.bug_id %] - [% bug.short_desc FILTER html %] - -
- - - - - [% PROCESS cell attr = { description => "Product", - name => "product" } %] - [% PROCESS cell attr = { description => "Version", - name => "version" } %] - [% PROCESS cell attr = { description => "Platform", - name => "rep_platform" } %] - - - - [% PROCESS cell attr = { description => "OS/Version", - name => "op_sys" } %] - [% PROCESS cell attr = { description => "Status", - name => "bug_status" } %] - [% PROCESS cell attr = { description => "Severity", - name => "bug_severity" } %] - [% PROCESS cell attr = { description => "Priority", - name => "priority" } %] - - - - [% PROCESS cell attr = { description => "Resolution", - name => "resolution" } %] - [% PROCESS cell attr = { description => "Assigned To", - name => "assigned_to" } %] - [% PROCESS cell attr = { description => "Reported By", - name => "reporter" } %] - [% IF Param('useqacontact') %] - [% PROCESS cell attr = { description => "QA Contact", - name => "qa_contact" } %] - [% END %] - - - - - - - - - - - - - - - - [% IF use_keywords %] - - - - [% END %] - - [% IF Param("usestatuswhiteboard") %] - - - - [% END %] - - - - -
- Bug#: - [% bug.bug_id %] -
- Component:  - [% bug.component %] - - [% IF Param('usetargetmilestone') %] - Target Milestone:  - [% bug.target_milestone FILTER html %] - [% END %] -
- URL:  - [% bug.bug_file_loc FILTER html %] -
- Summary: [% bug.short_desc FILTER html %] -
- Keywords:  [% bug.keywords FILTER html %] -
- Status Whiteboard:  - [% bug.status_whiteboard FILTER html %] -
- Description: -
- - [% PROCESS show/comments.tmpl - comments = bug.comments %] - -
-[% END %] - - -[%###########################################################################%] -[%# Block for standard table cells #%] -[%###########################################################################%] - -[% BLOCK cell %] - - [% attr.description%]:  - [% bug.${attr.name} FILTER html %] - -[% END %] diff --git a/template/default/show/navigate.html.tmpl b/template/default/show/navigate.html.tmpl deleted file mode 100644 index 3713e0a0d..000000000 --- a/template/default/show/navigate.html.tmpl +++ /dev/null @@ -1,54 +0,0 @@ - -[%# The contents of this file are subject to the Mozilla Public - # License Version 1.1 (the "License"); you may not use this file - # except in compliance with the License. You may obtain a copy of - # the License at http://www.mozilla.org/MPL/ - # - # Software distributed under the License is distributed on an "AS - # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or - # implied. See the License for the specific language governing - # rights and limitations under the License. - # - # The Original Code is the Bugzilla Bug Tracking System. - # - # The Initial Developer of the Original Code is Netscape Communications - # Corporation. Portions created by Netscape are - # Copyright (C) 1998 Netscape Communications Corporation. All - # Rights Reserved. - # - # Contributor(s): Gervase Markham - #%] - -[% IF bug_list.size > 0 %] - [% this_bug_idx = lsearch(bug_list, bug.bug_id) %] - Bug List: - [% IF this_bug_idx != -1 %] - ([% this_bug_idx + 1 %] of [% bug_list.size %]) - [% END %] - - First - Last - - [% IF this_bug_idx != -1 %] - [% IF this_bug_idx > 0 %] - [% prev_bug = this_bug_idx - 1 %] - Prev - [% ELSE %] - Prev - [% END %] - - [% IF this_bug_idx + 1 < bug_list.size %] - [% next_bug = this_bug_idx + 1 %] - Next - [% ELSE %] - Next - [% END %] - [% ELSE %] - (This bug is not in your list) - [% END %] - -   Show list -[% END %] - -     Query page -     Enter new bug diff --git a/template/default/show/show_bug.html.tmpl b/template/default/show/show_bug.html.tmpl deleted file mode 100644 index 9b77c23a2..000000000 --- a/template/default/show/show_bug.html.tmpl +++ /dev/null @@ -1,540 +0,0 @@ - -[%# The contents of this file are subject to the Mozilla Public - # License Version 1.1 (the "License"); you may not use this file - # except in compliance with the License. You may obtain a copy of - # the License at http://www.mozilla.org/MPL/ - # - # Software distributed under the License is distributed on an "AS - # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or - # implied. See the License for the specific language governing - # rights and limitations under the License. - # - # The Original Code is the Bugzilla Bug Tracking System. - # - # The Initial Developer of the Original Code is Netscape Communications - # Corporation. Portions created by Netscape are - # Copyright (C) 1998 Netscape Communications Corporation. All - # Rights Reserved. - # - # Contributor(s): Gervase Markham - #%] - -[% filtered_desc = bug.short_desc FILTER html %] -[% UNLESS header_done %] - [% INCLUDE global/header - title = "Bug $bug.bug_id - $bug.short_desc" - h1 = "Bugzilla Bug $bug.bug_id" - h2 = filtered_desc - extra = navigation_links() - %] -[% END %] - -[% PROCESS show/navigate.html.tmpl %] - -
- -
- - - - - -[%# *** Platform Reporter Product OS AddCC *** %] - - - - - - - - - - [% PROCESS select selname = "rep_platform" %] - - - - - - - - [% PROCESS select selname => "product" %] - - - [% PROCESS select selname => "op_sys" %] - - - - - -[%# *** Component Version CC Priority Severity AssignedTo Milestone *** %] - - - - - - - - - [% PROCESS select selname => "version" %] - - - - - - - - - - - - [% PROCESS select selname => "priority" %] - - - - - - - - - [% PROCESS select selname = "bug_severity" %] - - - - - - - - - [% IF Param("usetargetmilestone") && bug.target_milestone %] - - [% PROCESS select selname = "target_milestone" %] - [% ELSE %] - - [% END %] - - -[%# *** QAContact URL Summary Whiteboard Keywords *** %] - - [% IF Param('useqacontact') %] - - - - - [% END %] - - - - - - - - - - - - [% IF Param('usestatuswhiteboard') %] - - - - - [% END %] - - [% IF use_keywords %] - - - - [% END %] -
- Bug#: - - - [% bug.bug_id %] -   - Platform: - - Reporter: - - [% bug.reporter FILTER html %] -
- Product: - - OS: - - Add CC: - - -
- - - Component: - - - -   - Version: - - CC: - - [% IF bug.cc %] - -
- Remove selected CCs -
- [% ELSE %] - - [% END %] -
- - Status: - - [% bug.bug_status FILTER html %]  - Priority: -
- - Resolution: - - [% bug.resolution FILTER html %]  - Severity: -
- - Assigned To: - - [% bug.assigned_to FILTER html %]  - - Target Milestone: - -  
- QA Contact: - - -
- - [% IF bug.bug_file_loc %] - URL: - [% ELSE %] - URL: - [% END %] - - - -
- Summary: - - -
- Status Whiteboard: - - -
- - Keywords: - - - -
- -[%# *** Attachments *** %] - - [% INCLUDE attachment/list.atml - attachments = bug.attachments - bugid = bug.bug_id %] - -[%# *** Dependencies Votes *** %] - - [% IF Param('usedependencies') %] - - - [% PROCESS dependencies - dep = { title => "depends on", fieldname => "dependson" } %] - - - - - [% PROCESS dependencies - dep = { title => "blocks", fieldname => "blocked" } %] - -
- Show - dependency tree - - [% IF Param('webdotbase') %] -
- Show - dependency graph - [% END %] -
- [% END %] - - [% IF use_votes %] - - - - - -
- Votes: - - [% bug.votes %]    - Show - votes for this bug    - Vote - for this bug -
- [% END %] - -[%# *** Comments Groups *** %] - -
- Additional Comments: -
- -
- - [% IF groups.size > 0 %] -
- Only users in the selected groups can view this bug: -
- (Unchecking all boxes makes this a public bug.) -
-
- - [% FOREACH group = groups %] -      - - [% group.description %] -
- [% END %] - - [% IF NOT user.inallgroups %] - - Only members of a group can change the visibility of a bug for - that group - -
- [% END %] - - [% IF bug.inagroup %] -

- But users in the roles selected below can always view this bug: -
- - (The assignee - [% IF (Param('useqacontact')) %] - and QA contact - [% END %] - can always see a bug, and this section does not take effect unless - the bug is restricted to at least one group.) - -

- -

- Reporter - CC List -

- [% END %] - [% END %] - -[%# *** Knob *** %] - -
- - Leave as [% bug.bug_status FILTER html %]  - [% bug.resolution FILTER html %] -
- - [% knum = 1 %] - - [% IF bug.bug_status == "UNCONFIRMED" && - (user.canedit || user.canconfirm) %] - - Confirm bug (change status to NEW) -
- [% knum = knum + 1 %] - [% END %] - - [% IF user.canedit %] - [% IF bug.isopened %] - [% IF bug.bug_status != "ASSIGNED" %] - - Accept bug ( - [% "confirm bug, " IF bug.isunconfirmed %]change - status to ASSIGNED) -
- [% knum = knum + 1 %] - [% END %] - - [% IF bug.resolution %] - - Clear the resolution (remove the current resolution of - [% bug.resolution FILTER html %])
- [% knum = knum + 1 %] - [% END %] - - - Resolve bug, changing resolution to - -
- [% knum = knum + 1 %] - - - Resolve bug, mark it as duplicate of bug # - -
- [% knum = knum + 1 %] - - - Reassign bug to - -
- [% IF bug.isunconfirmed %] -      - and confirm bug (change status to NEW) -
- [% END %] - [% knum = knum + 1 %] - - - Reassign bug to owner - [% "and QA contact" IF useqacontact %] - of selected component -
- [% IF bug.isunconfirmed %] -      - and confirm bug (change status to NEW) -
- [% END %] - [% knum = knum + 1 %] - [% ELSE %] - [% IF bug.resolution != "MOVED" || - (bug.resolution == "MOVED" && user.canmove) %] - Reopen bug -
- [% knum = knum + 1 %] - [% END %] - [% IF bug.bug_status == "RESOLVED" %] - - Mark bug as VERIFIED
- [% knum = knum + 1 %] - [% END %] - [% IF bug.bug_status != "CLOSED" %] - - Mark bug as CLOSED
- [% knum = knum + 1 %] - [% END %] - [% END %] - [% END %] - - - -

- - - View Bug Activity -   |   - Format For Printing - - - - [% IF user.canmove %] -   |   - - [% END %] -

-
- -[%# *** Additional Comments *** %] - - - - - - -
- - Description: - - - Opened: [% bug.creation_ts %] -
-
- -[% PROCESS show/comments.tmpl - comments = bug.comments - %] - -
- -[% PROCESS show/navigate.html.tmpl %] - -
- -[% INCLUDE global/footer %] - - -[%############################################################################%] -[%# Block for dependencies #%] -[%############################################################################%] - -[% BLOCK dependencies %] - Bug [% bug.bug_id %] [%+ dep.title %]: - - [% FOREACH depbug = bug.${dep.fieldname} %] - [% GetBugLink(depbug, depbug) %][% " " %] - [% END %] - - - - -[% END %] - - -[%############################################################################%] -[%# Block for SELECT fields #%] -[%############################################################################%] - -[% BLOCK select %] - - - -   -[% END %] -- cgit v1.2.1