From: Emmanuel S. <se...@us...> - 2005-02-01 10:45:25
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/list In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26301/fr/default/list Modified Files: list.html.tmpl table.html.tmpl Log Message: 2.18rc3 -> 2.18 (3/4) Index: list.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/list/list.html.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** list.html.tmpl 16 Jan 2005 20:52:48 -0000 1.3 --- list.html.tmpl 1 Feb 2005 10:45:16 -0000 1.4 *************** *** 23,26 **** --- 23,27 ---- # searchtype: string. Type of search - either "series", "saved" or undef. # ... + # defaultsavename: string. The default name for saving the query. #%] *************** *** 160,164 **** <td valign="middle"> ! <a href="query.cgi?[% urlquerypart FILTER html %]">Ãditer cette requête</a> </td> --- 161,169 ---- <td valign="middle"> ! [% editqueryname = searchname OR defaultsavename OR '' %] ! <a href="query.cgi?[% urlquerypart FILTER html %] ! [% IF editqueryname != '' %]&known_name= ! [% editqueryname FILTER url_quote %] ! [% END %]">Ãditer cette requête</a> </td> *************** *** 180,184 **** <input type="hidden" name="cmdtype" value="doit"> <input type="hidden" name="remtype" value="asnamed"> ! <input type="text" name="newqueryname" size="20"> </form> </td> --- 185,190 ---- <input type="hidden" name="cmdtype" value="doit"> <input type="hidden" name="remtype" value="asnamed"> ! <input type="text" name="newqueryname" size="20" ! value="[% defaultsavename FILTER html %]"> </form> </td> Index: table.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/list/table.html.tmpl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** table.html.tmpl 15 Dec 2004 13:06:25 -0000 1.3 --- table.html.tmpl 1 Feb 2005 10:45:16 -0000 1.4 *************** *** 75,78 **** --- 75,81 ---- <table class="bz_buglist" cellspacing="0" cellpadding="4" width="100%"> <colgroup> + [% IF dotweak %] + <col class="bz_checkbox_column"> + [% END %] <col class="bz_id_column"> [% FOREACH id = displaycolumns %] *************** *** 85,94 **** <th> </th> [% END %] ! <th colspan="[% splitheader ? 2 : 1 %]"> [% IF sorted_by_relevance %] ID [% ELSE %] <a href="buglist.cgi? ! [% urlquerypart FILTER html %]&order=bugs.bug_id">ID</a> [% END %] </th> --- 88,99 ---- <th> </th> [% END %] ! <th colspan="[% splitheader ? 2 : 1 %]" class="first-child"> [% IF sorted_by_relevance %] ID [% ELSE %] <a href="buglist.cgi? ! [% urlquerypart FILTER html %]&order=bugs.bug_id ! [%-#%]&query_based_on= ! [% defaultsavename OR searchname FILTER html %]">ID</a> [% END %] </th> *************** *** 129,133 **** <a href="buglist.cgi?[% urlquerypart FILTER html %]&order= [% column.name FILTER url_quote FILTER html %] ! [% ",$qorder" FILTER html IF order %]"> [%- abbrev.$id.title || field_descs.$id || column.title -%]</a> [% END %] --- 134,140 ---- <a href="buglist.cgi?[% urlquerypart FILTER html %]&order= [% column.name FILTER url_quote FILTER html %] ! [% ",$qorder" FILTER html IF order %] ! [%-#%]&query_based_on= ! [% defaultsavename OR searchname FILTER html %]"> [%- abbrev.$id.title || field_descs.$id || column.title -%]</a> [% END %] *************** *** 149,158 **** [% END %] ! <tr class="bz_[% bug.bug_severity FILTER css_class_quote %] ! bz_[% bug.priority FILTER css_class_quote %] ! bz_[% bug.bug_status FILTER css_class_quote %] ! [%+ "bz_$bug.resolution" FILTER css_class_quote IF bug.resolution %] ! [%+ "bz_secure" IF bug.isingroups %] ! [%+ count % 2 == 1 ? "bz_odd" : "bz_even" %] "> --- 156,165 ---- [% END %] ! <tr class="bz_[% bug.bug_severity FILTER css_class_quote -%] ! bz_[% bug.priority FILTER css_class_quote -%] ! bz_[% bug.bug_status FILTER css_class_quote -%] ! [%+ "bz_$bug.resolution" FILTER css_class_quote IF bug.resolution -%] ! [%+ "bz_secure" IF bug.isingroups -%] ! [%+ count % 2 == 1 ? "bz_odd" : "bz_even" -%] "> |