Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 294269 Details for
Bug 406151
3.5: Additional Red Hat specific whiteboard bug fields.whiteboards (qa,devel,internal) and the access restrictions for those.
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Patch to add devel,qa,internal, and fixed in whiteboard fields (v1)
extra_whiteboard_fixed_in.patch (text/plain), 22.20 KB, created by
David Lawrence
on 2008-02-07 21:11:03 UTC
(
hide
)
Description:
Patch to add devel,qa,internal, and fixed in whiteboard fields (v1)
Filename:
MIME Type:
Creator:
David Lawrence
Created:
2008-02-07 21:11:03 UTC
Size:
22.20 KB
patch
obsolete
>Index: buglist.cgi >=================================================================== >RCS file: /cvs/qa/rh_bugzilla_3/buglist.cgi,v >retrieving revision 1.3 >diff -u -r1.3 buglist.cgi >--- buglist.cgi 20 Jan 2008 16:37:08 -0000 1.3 >+++ buglist.cgi 7 Feb 2008 21:09:55 -0000 >@@ -651,6 +651,10 @@ > DefineColumn("short_short_desc" , "bugs.short_desc" , "Summary" ); > DefineColumn("short_desc" , "bugs.short_desc" , "Summary" ); > DefineColumn("status_whiteboard" , "bugs.status_whiteboard" , "Whiteboard" ); >+DefineColumn("devel_whiteboard" , "bugs.devel_whiteboard" , "Devel Whiteboard" ); >+DefineColumn("qa_whiteboard" , "bugs.qa_whiteboard" , "QA Whiteboard" ); >+DefineColumn("internal_whiteboard" , "bugs.internal_whiteboard" , "Internal Whiteboard"); >+DefineColumn("fixed_in" , "bugs.fixed_in" , "Fixed In" ); > DefineColumn("component" , "map_components.name" , "Component" ); > DefineColumn("product" , "map_products.name" , "Product" ); > DefineColumn("classification" , "map_classifications.name" , "Classification" ); >Index: colchange.cgi >=================================================================== >RCS file: /cvs/qa/rh_bugzilla_3/colchange.cgi,v >retrieving revision 1.1.1.1 >diff -u -r1.1.1.1 colchange.cgi >--- colchange.cgi 19 Nov 2007 22:11:21 -0000 1.1.1.1 >+++ colchange.cgi 7 Feb 2008 21:09:55 -0000 >@@ -51,7 +51,7 @@ > push(@masterlist, "classification"); > } > >-push(@masterlist, ("product", "component", "version", "op_sys")); >+push(@masterlist, ("product", "component", "version", "op_sys", "fixed_in")); > > if (Bugzilla->params->{"usevotes"}) { > push (@masterlist, "votes"); >@@ -69,6 +69,15 @@ > if (Bugzilla->params->{"usestatuswhiteboard"}) { > push(@masterlist, "status_whiteboard"); > } >+if (Bugzilla->user->in_group('devel')) { >+ push(@masterlist, "devel_whiteboard"); >+} >+if (Bugzilla->user->in_group('qa')) { >+ push(@masterlist, "qa_whiteboard"); >+} >+if (Bugzilla->user->in_group('internalwhiteboard')) { >+ push(@masterlist, "internal_whiteboard"); >+} > if (Bugzilla::Keyword::keyword_count()) { > push(@masterlist, "keywords"); > } >Index: post_bug.cgi >=================================================================== >RCS file: /cvs/qa/rh_bugzilla_3/post_bug.cgi,v >retrieving revision 1.4 >diff -u -r1.4 post_bug.cgi >--- post_bug.cgi 5 Feb 2008 22:34:17 -0000 1.4 >+++ post_bug.cgi 7 Feb 2008 21:09:55 -0000 >@@ -154,6 +154,9 @@ > version > target_milestone > status_whiteboard >+ devel_whiteboard >+ qa_whiteboard >+ internal_whiteboard > > estimated_time > deadline >Index: process_bug.cgi >=================================================================== >RCS file: /cvs/qa/rh_bugzilla_3/process_bug.cgi,v >retrieving revision 1.12 >diff -u -r1.12 process_bug.cgi >--- process_bug.cgi 5 Feb 2008 22:33:50 -0000 1.12 >+++ process_bug.cgi 7 Feb 2008 21:09:56 -0000 >@@ -279,7 +279,8 @@ > # them twice. > my @set_fields = qw(op_sys rep_platform priority bug_severity > component target_milestone version >- bug_file_loc status_whiteboard short_desc >+ bug_file_loc status_whiteboard devel_whiteboard >+ qa_whiteboard internal_whiteboard fixed_in short_desc > deadline remaining_time estimated_time); > push(@set_fields, 'assigned_to') if !$cgi->param('set_default_assignee'); > push(@set_fields, 'qa_contact') if !$cgi->param('set_default_qa_contact'); >Index: query.cgi >=================================================================== >RCS file: /cvs/qa/rh_bugzilla_3/query.cgi,v >retrieving revision 1.2 >diff -u -r1.2 query.cgi >--- query.cgi 4 Feb 2008 04:54:54 -0000 1.2 >+++ query.cgi 7 Feb 2008 21:09:56 -0000 >@@ -127,7 +127,11 @@ > "changedin", "votes", "short_desc", "short_desc_type", > "long_desc", "long_desc_type", "bug_file_loc", > "bug_file_loc_type", "status_whiteboard", >- "status_whiteboard_type", "bug_id", >+ "status_whiteboard_type", "devel_whiteboard", >+ "devel_whiteboard_type", "qa_whiteboard", >+ "qa_whiteboard_type", "internal_whiteboard", >+ "internal_whiteboard_type", "fixed_in", >+ "fixed_in_type", "bug_id", > "bugidtype", "keywords", "keywords_type", > "x_axis_field", "y_axis_field", "z_axis_field", > "chart_format", "cumulate", "x_labels_vertical", >Index: Bugzilla/Bug.pm >=================================================================== >RCS file: /cvs/qa/rh_bugzilla_3/Bugzilla/Bug.pm,v >retrieving revision 1.16 >diff -u -r1.16 Bug.pm >--- Bugzilla/Bug.pm 4 Feb 2008 22:25:26 -0000 1.16 >+++ Bugzilla/Bug.pm 7 Feb 2008 21:09:59 -0000 >@@ -93,6 +93,10 @@ > resolution > short_desc > status_whiteboard >+ devel_whiteboard >+ qa_whiteboard >+ internal_whiteboard >+ fixed_in > target_milestone > version > ), >@@ -131,7 +135,11 @@ > remaining_time => \&_check_remaining_time, > rep_platform => \&_check_rep_platform, > short_desc => \&_check_short_desc, >- status_whiteboard => \&_check_status_whiteboard, >+ status_whiteboard => \&_check_status_whiteboard, >+ devel_whiteboard => \&_check_devel_whiteboard, >+ qa_whiteboard => \&_check_qa_whiteboard, >+ internal_whiteboard => \&_check_internal_whiteboard, >+ fixed_in => \&_check_fixed_in, > }; > > # Set up validators for custom fields. >@@ -196,6 +204,10 @@ > resolution > short_desc > status_whiteboard >+ devel_whiteboard >+ qa_whiteboard >+ internal_whiteboard >+ fixed_in > target_milestone > version > ); >@@ -303,6 +315,10 @@ > # is off. > # C<target_milestone> - When this bug is expected to be fixed. > # C<status_whiteboard> - A string. >+# C<devel_whiteboard> - A string. >+# C<qa_whiteboard> - A string. >+# C<internal_whiteboard> - A string. >+# C<fixed_in> - The version/release/milestone that the problem was fixed. > # C<bug_status> - The initial status of the bug, a string. > # C<bug_file_loc> - The URL field. > # >@@ -1386,7 +1402,11 @@ > return $short_desc; > } > >-sub _check_status_whiteboard { return defined $_[1] ? $_[1] : ''; } >+sub _check_status_whiteboard { return defined $_[1] ? $_[1] : ''; } >+sub _check_devel_whiteboard { return defined $_[1] && Bugzilla->user->in_group('devel') ? $_[1] : ''; } >+sub _check_qa_whiteboard { return defined $_[1] && Bugzilla->user->in_group('qa') ? $_[1] : ''; } >+sub _check_internal_whiteboard { return defined $_[1] && Bugzilla->user->in_group('internalwhiteboard') ? $_[1] : ''; } >+sub _check_fixed_in { return defined $_[1] ? $_[1] : ''; } > > # Unlike other checkers, this one doesn't return anything. > sub _check_strict_isolation { >@@ -1566,8 +1586,9 @@ > reporter_accessible cclist_accessible > classification_id classification > product component version rep_platform op_sys >- bug_status resolution dup_id >- bug_file_loc status_whiteboard keywords >+ bug_status resolution dup_id fixed_in >+ bug_file_loc status_whiteboard devel_whiteboard >+ qa_whiteboard internal_whiteboard keywords > priority bug_severity target_milestone > dependson blocked votes everconfirmed > reporter assigned_to cc estimated_time >@@ -1930,11 +1951,15 @@ > } > } > } >-sub set_status_whiteboard { $_[0]->set('status_whiteboard', $_[1]); } >-sub set_summary { $_[0]->set('short_desc', $_[1]); } >-sub set_target_milestone { $_[0]->set('target_milestone', $_[1]); } >-sub set_url { $_[0]->set('bug_file_loc', $_[1]); } >-sub set_version { $_[0]->set('version', $_[1]); } >+sub set_status_whiteboard { $_[0]->set('status_whiteboard', $_[1]); } >+sub set_devel_whiteboard { $_[0]->set('devel_whiteboard', $_[1]) if Bugzilla->user->in_group('devel'); } >+sub set_qa_whiteboard { $_[0]->set('qa_whiteboard', $_[1]) if Bugzilla->user->in_group('qa'); } >+sub set_internal_whiteboard { $_[0]->set('internal_whiteboard', $_[1]) if Bugzilla->user->in_group('internalwhiteboard'); } >+sub set_fixed_in { $_[0]->set('fixed_in', $_[1]); } >+sub set_summary { $_[0]->set('short_desc', $_[1]); } >+sub set_target_milestone { $_[0]->set('target_milestone', $_[1]); } >+sub set_url { $_[0]->set('bug_file_loc', $_[1]); } >+sub set_version { $_[0]->set('version', $_[1]); } > > ######################## > # "Add/Remove" Methods # >@@ -2896,6 +2921,12 @@ > { > $activity_visible = > Bugzilla->user->in_group(Bugzilla->params->{'timetrackinggroup'}) ? 1 : 0; >+ } elsif ($fieldname eq 'qa_whiteboard') { >+ $activity_visible = Bugzilla->user->in_group('qa') ? 1 : 0; >+ } elsif ($fieldname eq 'devel_whiteboard') { >+ $activity_visible = Bugzilla->user->in_group('devel') ? 1 : 0; >+ } elsif ($fieldname eq 'internal_whiteboard') { >+ $activity_visible = Bugzilla->user->in_group('internalwhiteboard') ? 1 : 0; > } else { > $activity_visible = 1; > } >Index: Bugzilla/BugMail.pm >=================================================================== >RCS file: /cvs/qa/rh_bugzilla_3/Bugzilla/BugMail.pm,v >retrieving revision 1.5 >diff -u -r1.5 BugMail.pm >--- Bugzilla/BugMail.pm 4 Feb 2008 22:25:30 -0000 1.5 >+++ Bugzilla/BugMail.pm 7 Feb 2008 21:10:00 -0000 >@@ -587,6 +587,21 @@ > && !($user->groups->{Bugzilla->params->{'insidergroup'}}) > ) { > $add_diff = 0; >+ } elsif (exists($diff->{'fieldname'}) && >+ $diff->{'fieldname'} eq 'internal_whiteboard') { >+ if ($user->groups->{'internalwhiteboard'}) { >+ $add_diff = 1; >+ } >+ } elsif (exists($diff->{'fieldname'}) && >+ $diff->{'fieldname'} eq 'qa_whiteboard') { >+ if ($user->groups->{'qa'}) { >+ $add_diff = 1; >+ } >+ } elsif (exists($diff->{'fieldname'}) && >+ $diff->{'fieldname'} eq 'devel_whiteboard') { >+ if ($user->groups->{'devel'}) { >+ $add_diff = 1; >+ } > } else { > $add_diff = 1; > } >Index: Bugzilla/Field.pm >=================================================================== >RCS file: /cvs/qa/rh_bugzilla_3/Bugzilla/Field.pm,v >retrieving revision 1.1.1.1 >diff -u -r1.1.1.1 Field.pm >--- Bugzilla/Field.pm 19 Nov 2007 22:11:21 -0000 1.1.1.1 >+++ Bugzilla/Field.pm 7 Feb 2008 21:10:00 -0000 >@@ -145,6 +145,13 @@ > {name => 'bug_status', desc => 'Status', in_new_bugmail => 1}, > {name => 'status_whiteboard', desc => 'Status Whiteboard', > in_new_bugmail => 1}, >+ {name => 'devel_whiteboard', desc => 'Devel Whiteboard', >+ in_new_bugmail => 1}, >+ {name => 'qa_whiteboard', desc => 'QA Whiteboard', >+ in_new_bugmail => 1}, >+ {name => 'internal_whiteboard', desc => 'Internal Whiteboard', >+ in_new_bugmail => 1}, >+ {name => 'fixed_in', desc => 'Fixed In', in_new_bugmail => 1}, > {name => 'keywords', desc => 'Keywords', in_new_bugmail => 1}, > {name => 'resolution', desc => 'Resolution'}, > {name => 'bug_severity', desc => 'Severity', in_new_bugmail => 1}, >Index: Bugzilla/Search.pm >=================================================================== >RCS file: /cvs/qa/rh_bugzilla_3/Bugzilla/Search.pm,v >retrieving revision 1.6 >diff -u -r1.6 Search.pm >--- Bugzilla/Search.pm 4 Feb 2008 04:54:54 -0000 1.6 >+++ Bugzilla/Search.pm 7 Feb 2008 21:10:02 -0000 >@@ -399,7 +399,8 @@ > } > > foreach my $f ("short_desc", "long_desc", "bug_file_loc", >- "status_whiteboard") { >+ "status_whiteboard", "devel_whiteboard", "qa_whiteboard", >+ "internal_whiteboard", "fixed_in") { > if (defined $params->param($f)) { > my $s = trim($params->param($f)); > if ($s ne "") { >Index: template/en/default/bug/edit.html.tmpl >=================================================================== >RCS file: /cvs/qa/rh_bugzilla_3/template/en/default/bug/edit.html.tmpl,v >retrieving revision 1.7 >diff -u -r1.7 edit.html.tmpl >--- template/en/default/bug/edit.html.tmpl 31 Jan 2008 17:47:51 -0000 1.7 >+++ template/en/default/bug/edit.html.tmpl 7 Feb 2008 21:10:03 -0000 >@@ -596,11 +596,38 @@ > [% IF Param('usestatuswhiteboard') %] > <tr> > <td class="field_label"> >- <label for="status_whiteboard" accesskey="w"><b><u>W</u>hiteboard</b></label>: >+ <label for="status_whiteboard" accesskey="w"><b>Status <u>W</u>hiteboard</b></label>: > </td> > [% PROCESS input inputname => "status_whiteboard" size => "40" colspan => 2 %] > </tr> > [% END %] >+ >+ [% IF user.in_group('devel') %] >+ <tr> >+ <td class="field_label"> >+ <label for="devel_whiteboard"><b>Devel Whiteboard</b></label>: >+ </td> >+ [% PROCESS input inputname => "devel_whiteboard" size => "40" colspan => 2 %] >+ </tr> >+ [% END %] >+ >+ [% IF user.in_group('qa') %] >+ <tr> >+ <td class="field_label"> >+ <label for="qa_whiteboard"><b>QA Whiteboard</b></label>: >+ </td> >+ [% PROCESS input inputname => "qa_whiteboard" size => "40" colspan => 2 %] >+ </tr> >+ [% END %] >+ >+ [% IF user.in_group('internalwhiteboard') %] >+ <tr> >+ <td class="field_label"> >+ <label for="internal_whiteboard"><b>Internal Whiteboard</b></label>: >+ </td> >+ [% PROCESS input inputname => "internal_whiteboard" size => "40" colspan => 2 %] >+ </tr> >+ [% END %] > > [% IF use_keywords %] > <tr> >Index: template/en/default/bug/knob.html.tmpl >=================================================================== >RCS file: /cvs/qa/rh_bugzilla_3/template/en/default/bug/knob.html.tmpl,v >retrieving revision 1.1.1.1 >diff -u -r1.1.1.1 knob.html.tmpl >--- template/en/default/bug/knob.html.tmpl 19 Nov 2007 22:11:21 -0000 1.1.1.1 >+++ template/en/default/bug/knob.html.tmpl 7 Feb 2008 21:10:03 -0000 >@@ -45,6 +45,10 @@ > </label> > [% IF bug.isopened && !bug_status.is_open %] > and set the resolution to [% PROCESS select_resolution field = "knob_${bug_status.id}" %] >+ <br> >+ Fixed in version >+ <input name="fixed_in" size="10" maxsize="20" value="[% bug.fixed_in FILTER html %]"> >+ <br> > [% END %] > <br> > [% END %] >@@ -70,6 +74,9 @@ > </label> > [% PROCESS select_resolution field = "knob_change_resolution" %] > <br> >+ Fixed in version >+ <input name="fixed_in" size="10" maxsize="20" value="[% bug.fixed_in FILTER html %]"> >+ <br> > [% END %] > [% END %] > >Index: template/en/default/bug/show-multiple.html.tmpl >=================================================================== >RCS file: /cvs/qa/rh_bugzilla_3/template/en/default/bug/show-multiple.html.tmpl,v >retrieving revision 1.1.1.1 >diff -u -r1.1.1.1 show-multiple.html.tmpl >--- template/en/default/bug/show-multiple.html.tmpl 19 Nov 2007 22:11:21 -0000 1.1.1.1 >+++ template/en/default/bug/show-multiple.html.tmpl 7 Feb 2008 21:10:04 -0000 >@@ -175,6 +175,17 @@ > [% IF Param("usestatuswhiteboard") %] > [% PROCESS row cell = "status_whiteboard" fullrow = 1 %] > [% END %] >+ [% IF user.in_group("devel") %] >+ [% PROCESS row cell = "devel_whiteboard" fullrow = 1 %] >+ [% END %] >+ [% IF user.in_group("qa") %] >+ [% PROCESS row cell = "qa_whiteboard" fullrow = 1 %] >+ [% END %] >+ [% IF user.in_group("internalwhiteboard") %] >+ [% PROCESS row cell = "internal_whiteboard" fullrow = 1 %] >+ [% END %] >+ >+ [% PROCESS row cell = "fixed_in" fullrow = 1 %] > > [% USE Bugzilla %] > [% field_counter = 0 %] >Index: template/en/default/global/field-descs.none.tmpl >=================================================================== >RCS file: /cvs/qa/rh_bugzilla_3/template/en/default/global/field-descs.none.tmpl,v >retrieving revision 1.1.1.1 >diff -u -r1.1.1.1 field-descs.none.tmpl >--- template/en/default/global/field-descs.none.tmpl 19 Nov 2007 22:11:21 -0000 1.1.1.1 >+++ template/en/default/global/field-descs.none.tmpl 7 Feb 2008 21:10:04 -0000 >@@ -61,7 +61,11 @@ > "setting" => "Setting", > "settings" => "Settings", > "short_desc" => "Summary", >- "status_whiteboard" => "Whiteboard", >+ "status_whiteboard" => "Status Whiteboard", >+ "devel_whiteboard" => "Devel Whiteboard", >+ "qa_whiteboard" => "QA Whiteboard", >+ "internal_whiteboard" => "Internal Whiteboard", >+ "fixed_in" => "Fixed In", > "target_milestone" => "Target Milestone", > "version" => "Version", > "votes" => "Votes", >Index: template/en/default/list/edit-multiple.html.tmpl >=================================================================== >RCS file: /cvs/qa/rh_bugzilla_3/template/en/default/list/edit-multiple.html.tmpl,v >retrieving revision 1.2 >diff -u -r1.2 edit-multiple.html.tmpl >--- template/en/default/list/edit-multiple.html.tmpl 8 Jan 2008 02:06:42 -0000 1.2 >+++ template/en/default/list/edit-multiple.html.tmpl 7 Feb 2008 21:10:04 -0000 >@@ -239,6 +239,42 @@ > </tr> > [% END %] > >+ [% IF user.in_group('devel') %] >+ <tr> >+ <td align="right"> >+ <b>Devel Whiteboard:</b> >+ </td> >+ <td colspan="7"> >+ <input name="devel_whiteboard" >+ value="[% dontchange FILTER html %]" size="60"> >+ </td> >+ </tr> >+ [% END %] >+ >+ [% IF user.in_group('qa') %] >+ <tr> >+ <td align="right"> >+ <b>QA Whiteboard:</b> >+ </td> >+ <td colspan="7"> >+ <input name="qa_whiteboard" >+ value="[% dontchange FILTER html %]" size="60"> >+ </td> >+ </tr> >+ [% END %] >+ >+ [% IF user.in_group('internalwhiteboard') %] >+ <tr> >+ <td align="right"> >+ <b>Internal Whiteboard:</b> >+ </td> >+ <td colspan="7"> >+ <input name="internal_whiteboard" >+ value="[% dontchange FILTER html %]" size="60"> >+ </td> >+ </tr> >+ [% END %] >+ > [% USE Bugzilla %] > [% FOREACH field = Bugzilla.get_fields({ obsolete => 0, custom => 1 }) %] > <tr> >Index: template/en/default/list/table.html.tmpl >=================================================================== >RCS file: /cvs/qa/rh_bugzilla_3/template/en/default/list/table.html.tmpl,v >retrieving revision 1.2 >diff -u -r1.2 table.html.tmpl >--- template/en/default/list/table.html.tmpl 14 Jan 2008 15:37:49 -0000 1.2 >+++ template/en/default/list/table.html.tmpl 7 Feb 2008 21:10:04 -0000 >@@ -49,16 +49,20 @@ > "reporter_realname" => { maxlength => 20 , ellipsis => "..." } , > "qa_contact" => { maxlength => 30 , ellipsis => "..." , title => "QAContact" } , > "qa_contact_realname" => { maxlength => 20 , ellipsis => "..." , title => "QAContact" } , >- "resolution" => { maxlength => 4 } , >- "short_desc" => { wrap => 1 } , >- "short_short_desc" => { maxlength => 60 , ellipsis => "..." , wrap => 1 } , >- "status_whiteboard" => { title => "Whiteboard" , wrap => 1 } , >- "component" => { maxlength => 8 , title => "Comp" } , >- "product" => { maxlength => 8 } , >- "version" => { maxlength => 5 , title => "Vers" } , >- "op_sys" => { maxlength => 4 } , >- "target_milestone" => { title => "TargetM" } , >- "percentage_complete" => { format_value => "%d %%" } , >+ "resolution" => { maxlength => 4 } , >+ "short_desc" => { wrap => 1 } , >+ "short_short_desc" => { maxlength => 60 , ellipsis => "..." , wrap => 1 } , >+ "status_whiteboard" => { title => "StatusWhiteboard" , wrap => 1 } , >+ "devel_whiteboard" => { title => "DevelWhiteboard" , wrap => 1 } , >+ "qa_whiteboard" => { title => "QAWhiteboard" , wrap => 1 } , >+ "internal_whiteboard" => { title => "InternalWhiteboard" , wrap => 1 } , >+ "fixed_in" => { title => "Fixed In", wrap => 1 }, >+ "component" => { maxlength => 8 , title => "Comp" } , >+ "product" => { maxlength => 8 } , >+ "version" => { maxlength => 5 , title => "Vers" } , >+ "op_sys" => { maxlength => 4 } , >+ "target_milestone" => { title => "TargetM" } , >+ "percentage_complete" => { format_value => "%d %%" } , > } > %] > >Index: template/en/default/search/form.html.tmpl >=================================================================== >RCS file: /cvs/qa/rh_bugzilla_3/template/en/default/search/form.html.tmpl,v >retrieving revision 1.1.1.1 >diff -u -r1.1.1.1 form.html.tmpl >--- template/en/default/search/form.html.tmpl 19 Nov 2007 22:11:21 -0000 1.1.1.1 >+++ template/en/default/search/form.html.tmpl 7 Feb 2008 21:10:05 -0000 >@@ -269,10 +269,17 @@ > accesskey => 'c' }, > { name => "bug_file_loc", description => "The <u>U</u>RL", > accesskey => 'u' }, >- { name => "status_whiteboard", description => "<u>W</u>hiteboard", >- accesskey => 'w' } ] %] >- >- [% UNLESS field.name == 'status_whiteboard' AND NOT Param('usestatuswhiteboard') %] >+ { name => "status_whiteboard", description => "Status <u>W</u>hiteboard", >+ accesskey => 'w' }, >+ { name => "devel_whiteboard", description => "Devel Whiteboard" }, >+ { name => "qa_whiteboard", description => "QA Whiteboard" }, >+ { name => "internal_whiteboard", description => "Internal Whiteboard"}, >+ { name => "fixed_in", description => "Fixed In"} ] %] >+ >+ [% UNLESS (field.name == 'status_whiteboard' AND NOT Param('usestatuswhiteboard')) >+ || (field.name == 'devel_whiteboard' AND NOT user.in_group('devel')) >+ || (field.name == 'qa_whiteboard' AND NOT user.in_group('qa')) >+ || (field.name == 'internal_whiteboard' AND NOT user.in_group('internalwhiteboard')) %] > <tr> > <th align="right"> > <label for="[% field.name %]" accesskey="[% field.accesskey %]">[% field.description %]</label>:
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
dkl
: review-
dkl
: review-
Actions:
View
|
Diff
Attachments on
bug 406151
:
294263
|
294269
|
294706
|
294730