From: Emmanuel S. <se...@us...> - 2004-12-15 13:06:44
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/list In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18697/default/list Modified Files: list-simple.html.tmpl table.html.tmpl Log Message: deuxieme partie de la migration 2.18rc2 -> 2.18rc3 Index: list-simple.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/list/list-simple.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** list-simple.html.tmpl 16 Nov 2004 22:02:22 -0000 1.2 --- list-simple.html.tmpl 15 Dec 2004 13:06:25 -0000 1.3 *************** *** 42,45 **** --- 42,46 ---- <head> <title>[% title %]</title> + <base href="[% Param("urlbase") %]"> <link href="css/buglist.css" rel="stylesheet" type="text/css"> </head> Index: table.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/list/table.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** table.html.tmpl 16 Nov 2004 22:02:22 -0000 1.2 --- table.html.tmpl 15 Dec 2004 13:06:25 -0000 1.3 *************** *** 141,148 **** [% FOREACH bug = bugs %] ! [% FLUSH IF loop.count() % 10 == 1 %] [%# At the beginning of every hundred bugs in the list, start a new table. %] ! [% IF loop.count() % 100 == 1 %] [% tableheader %] [% END %] --- 141,149 ---- [% FOREACH bug = bugs %] ! [% count = loop.count() %] ! [% FLUSH IF count % 10 == 1 %] [%# At the beginning of every hundred bugs in the list, start a new table. %] ! [% IF count() % 100 == 1 %] [% tableheader %] [% END %] *************** *** 151,156 **** bz_[% bug.priority FILTER css_class_quote %] bz_[% bug.bug_status FILTER css_class_quote %] ! bz_[% bug.resolution FILTER css_class_quote %] ! [%+ "bz_secure" IF bug.isingroups %]"> [% IF dotweak %] --- 152,160 ---- 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" %] ! "> ! [% IF dotweak %] *************** *** 159,164 **** </td> [% END %] ! <td> <a href="show_bug.cgi?id=[% bug.bug_id %]">[% bug.bug_id %]</a> </td> --- 163,169 ---- </td> [% END %] ! <td class="first-child"> <a href="show_bug.cgi?id=[% bug.bug_id %]">[% bug.bug_id %]</a> + <span style="display: none">[%+ '[SEC]' IF bug.secure_mode %]</span> </td> *************** *** 189,191 **** [% END %] - --- 194,195 ---- |