1 {**************************************************************************}
3 {* Copyright (C) 2003-2013 Polytechnique.org *}
4 {* http://opensource.polytechnique.org/ *}
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. *}
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. *}
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 *}
21 {**************************************************************************}
23 <h1>Pages wiki du site</h1>
26 <script type="text/javascript">
28 function checkAllBoxes(form, action)
30 var boxes = document.getElementById(form).getElementsByTagName('input');
31 for (var i = 0; i < boxes.length; ++i) {
32 if (boxes[i].type == 'checkbox') {
33 if (action == 'toggle') {
34 boxes[i].checked = !boxes[i].checked;
36 boxes[i].checked = action;
43 function toggleCategory(cat)
45 if ($('#category_' + cat).find('.wiki_root').attr('src') == 'images/k1.gif') {
46 $('#category_' + cat).find('.wiki_root').attr('src', 'images/k2.gif');
48 $('#category_' + cat).find('.wiki_root').attr('src', 'images/k1.gif');
52 while ($('#row_' + cat + '_' + i).length != 0) {
53 $('#row_' + cat + '_' + i).toggle();
63 <a href="Site/AllRecentChanges?action=rss&user={$smarty.session.hruid}&hash={$smarty.session.user->token}" style="display:block;float:right" title="Changements">{icon name=feed title='fil rss'}</a>
64 {icon name=magnifier} <a href="Site/AllRecentChanges">Voir les changements récents</a>
67 <form action="admin/wiki/update" method="post" id="update_pages">
74 <th class="action">action</th>
76 {foreach from=$wiki_pages key=cat item=pages}
78 <td colspan="4" style="margin-top: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; height: 20px"
79 id="category_{$cat}" onclick="toggleCategory('{$cat}');">
80 <img class="wiki_root" src="images/k1.gif" alt="-" width="9" height="21" />
81 <span class="wiki_category">{$cat}</span> ({$pages|@count}) <a href="{$cat}/RecentChanges">{icon name=magnifier title="Changements récents"}</a>
84 {foreach from=$pages item=perm key=page name=pages}
85 <tr id="row_{$cat}_{$smarty.foreach.pages.index}" class="impair" style="display: none"
86 onmouseover="this.className='pair';" onmouseout="this.className='impair';">
87 <td style="margin-top: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; height: 20px">
88 {if $smarty.foreach.pages.last}
89 <img src="images/L.gif" alt="L" width="12" height="21" />
91 <img src="images/T.gif" alt="|" style="width: 12px: height: 21px" />
93 <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>
95 <td class="center" style="margin-top: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; height: 20px">
96 {assign var=read value=$perm.read}
99 <td class="center" style="margin-top: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; height: 20px">
100 {assign var=edit value=$perm.edit}
103 <td class="action" style="margin-top: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; height: 20px">
104 <a href="admin/wiki/rename/{$cat}.{$page}" onclick="var newname=prompt('Déplacer la page {$cat}.{$page} vers :', '{$cat}.{$page}'); if (!newname) return false; this.href += '/' + newname + '?token={xsrf_token}';">{icon name=book_next title='déplacer'}</a>
105 <a href="admin/wiki/delete/{$cat}.{$page}?token={xsrf_token}" onclick="return confirm('Supprimer la page {$cat}.{$page} ?');">{icon name=cross title='supprimer'}</a>
106 <input type="checkbox" name="{$cat}/{$page}"/>
112 <td colspan="3"></td>
114 <span onclick="checkAllBoxes('update_pages', true)">{icon name=tick title='tout cocher'}</span>
115 <span onclick="checkAllBoxes('update_pages', false)">{icon name=cross title='tout décocher'}</span>
116 <span onclick="checkAllBoxes('update_pages', 'toggle')">{icon name=arrow_refresh title='toggle'}</span>
121 Attribue les permissions aux pages cochées :
125 <option value=""> - </option>
126 {html_options options=$perms_opts}
131 <option value=""> - </option>
132 {html_options options=$perms_opts}
135 <td class="option center">
136 <input type="submit" value="ok"/>
143 <th class="action">action</th>
149 * : les pages marquées d'une astérisque sont actuellement disponibles en cache (accès plus rapide).
151 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}