e6ec1813a0f8369c356052b7058b6d11d0841d70
[platal.git] / templates / admin / wiki.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2007 Polytechnique.org                             *}
4 {*  http://opensource.polytechnique.org/                                  *}
5 {*                                                                        *}
6 {*  This program is free software; you can redistribute it and/or modify  *}
7 {*  it under the terms of the GNU General Public License as published by  *}
8 {*  the Free Software Foundation; either version 2 of the License, or     *}
9 {*  (at your option) any later version.                                   *}
10 {*                                                                        *}
11 {*  This program is distributed in the hope that it will be useful,       *}
12 {*  but WITHOUT ANY WARRANTY; without even the implied warranty of        *}
13 {*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *}
14 {*  GNU General Public License for more details.                          *}
15 {*                                                                        *}
16 {*  You should have received a copy of the GNU General Public License     *}
17 {*  along with this program; if not, write to the Free Software           *}
18 {*  Foundation, Inc.,                                                     *}
19 {*  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA               *}
20 {*                                                                        *}
21 {**************************************************************************}
22
23 <h1>Pages wiki du site</h1>
24
25 {literal}
26 <script type="text/javascript">
27 // <!--
28   function check_all_boxes(form,action) {
29     var boxes = document.getElementById(form).getElementsByTagName('input');
30     for (var i=0; i<boxes.length; i++) if (boxes[i].type == 'checkbox') {
31       if (action == 'toggle')
32         boxes[i].checked = !boxes[i].checked;
33       else
34         boxes[i].checked = action;
35     }
36     return false;
37   }
38   var toggle = 0;
39   function replie() {
40     if (toggle == 1) return;
41     toggle = 2;
42     var cat=$.trim($(this).parent().text().replace(/(.*)\([0-9]+\)/, "$1"));
43     $("tr[@id^=row/"+cat+"/]").hide();
44     $(this).attr('src', 'images/k1.gif').unbind("click", replie).click(deplie);
45     setTimeout("toggle = 0;", 10);
46   }
47   function deplie(image) {
48     if (toggle == 2) return;
49     toggle = 1;
50     var cat=$.trim($(this).parent().text().replace(/(.*)\([0-9]+\)/, "$1"));
51     $("tr[@id^=row/"+cat+"/]").show();
52     $(this).attr('src', 'images/k2.gif').unbind("click", deplie).click(replie);
53     setTimeout("toggle = 0;", 10);
54   }
55   $(document).ready(function() {
56     $("tr.pair img[@alt=-]").css("cursor","pointer").each(replie);
57   });
58 // -->
59 </script>
60 {/literal}
61
62 <p class="center">
63   {icon name=magnifier"} <a href="Site/AllRecentChanges">Voir les changements récents</a>
64 </p>
65
66 <form action="admin/wiki/update" method="post" id="update_pages">
67 <table class="bicol">
68   <tr>
69     <th>
70       page
71     </th>
72     <th>
73       lecture
74     </th>
75     <th>
76       écriture
77     </th>
78     <th class="action">
79       action
80     </th>
81   </tr>
82 {foreach from=$wiki_pages key=cat item=pages}
83   <tr class="pair">
84     <td colspan="4" style="margin-top: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; height: 20px">
85       <img src="images/k2.gif" alt="-" width="9" height="21" />
86       {$cat} ({$pages|@count}) <a href="{$cat}/RecentChanges">{icon name=magnifier title="Changements récents"}</a>
87     </td>
88   </tr>
89 {foreach from=$pages item=perm key=page name=pages}
90   <tr id="row/{$cat}/{$page}" class="impair" onmouseover="this.className='pair';" onmouseout="this.className='impair';">
91     <td style="margin-top: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; height: 20px">
92       {if $smarty.foreach.pages.last}
93       <img src="images/L.gif" alt="L" width="12" height="21" />
94       {else}
95       <img src="images/T.gif" alt="|" style="width: 12px: height: 21px" />
96       {/if}
97       <a href="{$cat}/{$page}">{$page}</a>{if $perm.cached}*{/if} <a href="{$cat}/{$page}?action=edit" class="indice">{icon name=page_edit title='éditer'}</a>
98     </td>
99     <td class="center" style="margin-top: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; height: 20px">
100       {$perm.read}
101     </td>
102     <td class="center" style="margin-top: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; height: 20px">
103       {$perm.edit}
104     </td>
105     <td class="action" style="margin-top: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; height: 20px">
106       <input type="checkbox" name="{$cat}/{$page}"/>
107     </td>
108   </tr>
109 {/foreach}
110 {/foreach}
111   <tr class="pair">
112     <td class="action" colspan="4">
113       <span onclick="check_all_boxes('update_pages', true)">{icon name=tick title='tout cocher'}</span>
114       <span onclick="check_all_boxes('update_pages', false)">{icon name=cross title='tout décocher'}</span>
115       <span onclick="check_all_boxes('update_pages', 'toggle')">{icon name=arrow_refresh title='toggle'}</span>
116     </td>
117   </tr>
118   <tr class="pair">
119     <td>
120       Attribue les permissions aux pages cochées :
121     </td>
122     <td>
123       <select name="read">
124         <option value=""> - </option>
125         {html_options options=$perms_opts}
126       </select>
127     </td>
128     <td>
129       <select name="edit">
130         <option value=""> - </option>
131         {html_options options=$perms_opts}
132       </select>
133     </td>
134     <td class="option">
135       <input type="submit" value="ok"/>
136     </td>
137   </tr>
138 </table>
139 </form>
140
141 <p class="smaller">
142   * : les pages marquées d'une astérisque sont actuellement disponibles en cache (accès plus rapide)
143 </p>
144 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}