From: Emmanuel S. <se...@us...> - 2004-12-15 13:06:42
|
Update of /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18697/default/bug Modified Files: comments.html.tmpl edit.html.tmpl show.html.tmpl show.xml.tmpl Log Message: deuxieme partie de la migration 2.18rc2 -> 2.18rc3 Index: show.xml.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/show.xml.tmpl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** show.xml.tmpl 6 Sep 2004 20:41:11 -0000 1.1.1.1 --- show.xml.tmpl 15 Dec 2004 13:06:24 -0000 1.2 *************** *** 54,57 **** --- 54,58 ---- [% IF displayfields.long_desc %] [% FOREACH c = bug.longdescs %] + [% NEXT IF c.isprivate && !UserInGroup(Param("insidergroup")) %] <long_desc> <who>[% c.email FILTER xml %]</who> *************** *** 64,67 **** --- 65,69 ---- [% IF displayfields.attachment %] [% FOREACH a = bug.attachments %] + [% NEXT IF c.isprivate && !UserInGroup(Param("insidergroup")) %] <attachment> <attachid>[% a.attachid %]</attachid> Index: comments.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/comments.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** comments.html.tmpl 1 Nov 2004 10:26:59 -0000 1.2 --- comments.html.tmpl 15 Dec 2004 13:06:24 -0000 1.3 *************** *** 68,71 **** --- 68,72 ---- <input type="hidden" name="when-[% count %]" value="[% comment.when %]"> <input type="checkbox" name="isprivate-[% count %]" value="1" + id="isprivate-[% count %]" [% " checked=\"checked\"" IF comment.isprivate %]> Privé </i> Index: show.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/show.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** show.html.tmpl 1 Nov 2004 10:26:59 -0000 1.2 --- show.html.tmpl 15 Dec 2004 13:06:24 -0000 1.3 *************** *** 39,43 **** h2 = filtered_desc h3 = "Modifié pour la dernière fois : $filtered_timestamp" - style_urls = [ "css/edit_bug.css" ] bodyattrs = bodyattrs %] --- 39,42 ---- Index: edit.html.tmpl =================================================================== RCS file: /cvsroot/bugzilla-fr/Bugzilla-fr_2.18/fr/default/bug/edit.html.tmpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** edit.html.tmpl 1 Nov 2004 10:26:59 -0000 1.2 --- edit.html.tmpl 15 Dec 2004 13:06:24 -0000 1.3 *************** *** 53,57 **** replytext = "(In reply to comment #" + id + ")\n" + replytext + "\n"; ! /* <textarea id="comment"> */ var textarea = document.getElementById('comment'); textarea.value += replytext; --- 53,63 ---- replytext = "(In reply to comment #" + id + ")\n" + replytext + "\n"; ! [% IF Param("insidergroup") && UserInGroup(Param("insidergroup")) %] ! if (document.getElementById('isprivate-'+id).checked) { ! document.getElementById('newcommentprivacy').checked = 'checked'; ! } ! [% END %] ! ! /* <textarea id="comment"> */ var textarea = document.getElementById('comment'); textarea.value += replytext; *************** *** 233,237 **** <td align="right"> ! <b><a href="page.cgi?id=fields.html#severity">S<u>é</u>vérité</a> :</b> </td> [% PROCESS select selname = "bug_severity" accesskey => "e" %] --- 239,243 ---- <td align="right"> ! <b><a href="page.cgi?id=fields.html#bug_severity">S<u>é</u>vérité</a> :</b> </td> [% PROCESS select selname = "bug_severity" accesskey => "e" %] *************** *** 447,451 **** <b><u>C</u>ommentaires Supplémentaires :</b> [% IF Param("insidergroup") && UserInGroup(Param("insidergroup")) %] ! <input type="checkbox" name="commentprivacy" value="1"> Private [% END %] <br> --- 453,458 ---- <b><u>C</u>ommentaires Supplémentaires :</b> [% IF Param("insidergroup") && UserInGroup(Param("insidergroup")) %] ! <input type="checkbox" name="commentprivacy" value="1" ! id="newcommentprivacy"> Privé [% END %] <br> |