none
[openafs-wiki.git] / TWiki / EditTablePlugin.mdwn
1 # <a name="Edit Table Plugin"></a><a name=" Edit Table Plugin"></a> Edit Table Plugin
2
3 This plugin allows you to edit TWiki tables using edit fields and drop down boxes. Tables have an **[ Edit table ]** button if preceeded by an `%EDITTABLE{...}%` variable. Each column can be a text field, a drop down box, a date field, etc. Multiple tables per topic are editable, but only one at a time can be edited.
4
5 <div>
6   <ul>
7     <li><a href="#Per Table Settings"> Per Table Settings</a><ul>
8         <li><a href="#Initial Values"> Initial Values</a></li>
9         <li><a href="#Date Field Type"> Date Field Type</a></li>
10       </ul>
11     </li>
12     <li><a href="#Per Cell Settings"> Per Cell Settings</a></li>
13     <li><a href="#Table Buttons"> Table Buttons</a></li>
14     <li><a href="#Examples"> Examples</a></li>
15     <li><a href="#Plugin Settings"> Plugin Settings</a></li>
16     <li><a href="#Limitations and Known Issues"> Limitations and Known Issues</a></li>
17     <li><a href="#Plugin Installation Instructions"> Plugin Installation Instructions</a></li>
18     <li><a href="#License"> License</a></li>
19     <li><a href="#Plugin Info"> Plugin Info</a></li>
20   </ul>
21 </div>
22
23 ## <a name="Per Table Settings"></a> Per Table Settings
24
25 Add a `%EDITTABLE{...}%` variable just before an existing table to make it editable, or add the variable anywhere in a topic to start a new table. Parameters:
26
27 <table border="1" cellpadding="0" cellspacing="0">
28   <tr>
29     <th bgcolor="#99CCCC"><strong> Parameter </strong></th>
30     <th bgcolor="#99CCCC"><strong> Comment </strong></th>
31     <th bgcolor="#99CCCC"><strong> Default </strong></th>
32   </tr>
33   <tr>
34     <td><code>header</code></td>
35     <td> Specify the header format of a new table like <code>"|*Food*|*Drink*|"</code>. Useful to start a table with only a button </td>
36     <td> (no header) </td>
37   </tr>
38   <tr>
39     <td><code>format</code></td>
40     <td> The format of one column when editing the table. A cell can be a text input field, or any of these edit field types:%BR% - Text input field (1 line):%BR%   <code>| text, &lt;size&gt;, &lt;initial value&gt; |</code> %BR% - Textarea input field:%BR%   <code>| textarea, &lt;rows&gt;x&lt;columns&gt;, &lt;initial value&gt; |</code> %BR% - Drop down box: %BR%   <code>| select, &lt;size&gt;, &lt;option 1&gt;, &lt;option 2&gt;, etc |</code> %BR% - Fixed label: %BR%   <code>| label, 0, &lt;label text&gt; |</code> %BR% - Row number: %BR%   <code>| row, &lt;offset&gt; |</code> %BR% - Date: %BR%   <code>| date, &lt;size&gt;, &lt;initial value&gt;, &lt;DHTML date format&gt; |</code></td>
41     <td><code>"text, 16"</code> %BR% for all cells </td>
42   </tr>
43   <tr>
44     <td><code>changerows</code></td>
45     <td> Rows can be added and removed if <code>"on"</code>;<br /> Rows can be added but not removed if <code>"add"</code></td>
46     <td><code>CHANGEROWS</code> %BR% Plugin setting </td>
47   </tr>
48   <tr>
49     <td><code>quietsave</code></td>
50     <td> Quiet Save button is shown if <code>"on"</code>, hidden if <code>"off"</code></td>
51     <td><code>QUIETSAVE</code> %BR% Plugin setting </td>
52   </tr>
53   <tr>
54     <td><code>include</code></td>
55     <td> Other topic defining the EDITTABLE parameters. The first %EDITTABLE% in the topic is used. This is useful if you have many topics with the same table format and you want to update the format in one place. </td>
56     <td> (none) </td>
57   </tr>
58   <tr>
59     <td><code>helptopic</code></td>
60     <td> Topic name containing help text shown below the table when editing a table. The %STARTINCLUDE% and %STOPINCLUDE% variables can be used in the topic to specify what is shown. </td>
61     <td> (no help text) </td>
62   </tr>
63   <tr>
64     <td><code>headerislabel</code></td>
65     <td> Table header cells are read-only (labels) if <code>"on"</code>; header cells can be edited if <code>"off"</code> or "0" </td>
66     <td><code>"on"</code></td>
67   </tr>
68   <tr>
69     <td><code>editbutton</code></td>
70     <td> Set edit button text, e.g. <code>"Edit this table"</code>; set button image with alt text, e.g. <code>"Edit table, %PUBURL%/%TWIKIWEB%/TWikiDocGraphics/edittopic.gif"</code>; hide edit button at the end of the table with <code>"hide"</code> (Note: Button is automatically hidden if an edit button is present in a cell) </td>
71     <td><code>EDITBUTTON</code> %BR% Plugin setting </td>
72   </tr>
73 </table>
74
75 ### <a name="Initial Values"></a> Initial Values
76
77 By default, variables in `<initial value>` (of text input field) and `<label text>` (of fixed label) get expanded when a new row is added. This can be used for example to add a timestamp to a label. You can escape characters if you do not want that:
78
79 <table border="1" cellpadding="0" cellspacing="0">
80   <tr>
81     <th bgcolor="#99CCCC"><strong> Text: </strong></th>
82     <th bgcolor="#99CCCC"><strong> To Escape: </strong></th>
83   </tr>
84   <tr>
85     <td><code>$quot</code></td>
86     <td> Double quote (<code>"</code>). Alternatively write <code>\"</code> to escape it </td>
87   </tr>
88   <tr>
89     <td><code>$percnt</code></td>
90     <td> Percent sign (<code>%</code>) </td>
91   </tr>
92   <tr>
93     <td><code>$dollar</code></td>
94     <td> Dollar sign (<code>$</code>) </td>
95   </tr>
96   <tr>
97     <td><code>$nop</code> or <code>$nop()</code></td>
98     <td> Is a "no operation" </td>
99   </tr>
100 </table>
101
102 ### <a name="Date Field Type"></a> Date Field Type
103
104 <img src="http://www.dementia.org/twiki//view/EditTablePluginCalendarExample.gif" width="549" height="210" alt="Edit Table Calendar Example" /> The `date` field type allows one to choose a date with a popup calendar. Popup calendar works for Netscape 6.0 or better, all other Gecko-based browsers, Internet Explorer 5.0 or better for Windows, Opera 7 and Konqueror 3.1.2. The `...` button is inactive if the browser cannot support the popup calendar. It uses the nice [Mishoo DHTML calendar](http://dynarch.com/mishoo/calendar.epl), see also TWiki:Codev/JavaScriptDatePickerForForm <br />
105
106 ## <a name="Per Cell Settings"></a> Per Cell Settings
107
108 An individual edit field type can be defined for each table cell. Place an `%EDITCELL{ "type, ..." }%` variable at the end of the cell content. This is useful to override the per column `%EDITTABLE{ format="..." }%` settings, or to create tables with key/value rows. All edit field types of the `format="..."` parameter are supported. For example, to define a text field, type: `| cell content %EDITCELL{ "text, 20" }% |`
109
110 It is also possible to place the edit button inside a cell instead of default location below the table. Type `| %EDITCELL{ "editbutton, 1, Edit this table" }% |` to show a button, or `| %EDITCELL{ "editbutton, 1, Edit table, Image-URL" }% |` to show a button image with alternate text.
111
112 **_Note:_** The `%EDITCELL{ }%=variable cannot be used by itself; place an =%EDITTABLE{ }%=variable at the beginning of a table where you want to use =%EDITCELL{ }%` variables.
113
114 ## <a name="Table Buttons"></a> Table Buttons
115
116 <form>
117   <ul>
118     <li> In page view mode: <ul>
119         <li><input name="et" onclick="return(false);" type="submit" value="Edit table" /> - turn the table into edit mode </li>
120       </ul>
121     </li>
122     <li> In edit mode: <ul>
123         <li><input name="etsave" onclick="return(false);" type="submit" value="Save table" /> - save your changes </li>
124         <li><input name="etqsave" onclick="return(false);" type="submit" value="Quiet save" /> - save your changes without alerting subscribed [[Main/WebNotify]] users </li>
125         <li><input name="etaddrow" onclick="return(false);" type="submit" value="Add row" /> - add row to the table (if enabled) </li>
126         <li><input name="etdelrow" onclick="return(false);" type="submit" value="Delete last row" /> - remove last row from the table (if enabled) </li>
127         <li><input name="etcancel" onclick="return(false);" type="submit" value="Cancel" /> - cancel without saving and release edit lock </li>
128       </ul>
129     </li>
130   </ul>
131 </form>
132
133 ## <a name="Examples"></a> Examples
134
135 Line before table: `%EDITTABLE{ header="|*Nr*|*Text field sandbox*|*Drop down sandbox*|*Timestamp*|" format="| row, -1 | text, 20, init | select, 1, one, two, three, four | label, 0, %SERVERTIME{"$day $mon $year $hour:$min"}% |" changerows="on" }%` <a name="edittable1"></a>
136
137 <div>
138   <form action="http://www.dementia.org/twiki/viewauth#edittable1" method="post" name="edittable1"><input name="ettablenr" type="hidden" value="1" /> <input name="etedit" type="hidden" value="on" /><table border="1" cellpadding="0" cellspacing="0">
139       <tr>
140         <th bgcolor="#99CCCC"><strong> Nr </strong></th>
141         <th bgcolor="#99CCCC"><strong> Text field sandbox </strong></th>
142         <th bgcolor="#99CCCC"><strong> Drop down sandbox </strong></th>
143         <th bgcolor="#99CCCC"><strong> Timestamp </strong></th>
144       </tr>
145       <tr>
146         <td> 1 </td>
147         <td> hello table </td>
148         <td> one </td>
149         <td> 26 Jun 2002 12:30 </td>
150       </tr>
151       <tr>
152         <td> 2 </td>
153         <td>   </td>
154         <td> two </td>
155         <td> 27 Jun 2002 12:40 </td>
156       </tr>
157     </table><input name="etrows" type="hidden" value="3" /> <input type="submit" value="Edit table" /></form>
158 </div>
159
160 If this plugin is installed you will see an **[ Edit table ]** button above; when you click on it you get this form:
161
162 <form>
163   <table border="1" cellpadding="0" cellspacing="1">
164     <tr>
165       <th bgcolor="#99CCCC"> Nr </th>
166       <th bgcolor="#99CCCC"> Text field sandbox </th>
167       <th bgcolor="#99CCCC"> Drop down sandbox </th>
168       <th bgcolor="#99CCCC"> Timestamp </th>
169     </tr>
170     <tr>
171       <td bgcolor="#FFFFFF"> 1<input name="etcell2x1" type="hidden" value="1" /></td>
172       <td bgcolor="#FFFFFF"><input name="etcell2x2" size="20" type="text" value="hello table" /></td>
173       <td bgcolor="#FFFFFF"><select name="etcell2x3" size="1"><option selected>one</option>
174           <option>two</option>
175           <option>three</option>
176           <option>four</option></select></td>
177       <td bgcolor="#FFFFFF"> 26 Jun 2002 12:30<input name="etcell2x4" type="hidden" value="26 Jun 2002 12:30" /></td>
178     </tr>
179     <tr>
180       <td bgcolor="#FFFF99"> 2<input name="etcell3x1" type="hidden" value="2" /></td>
181       <td bgcolor="#FFFF99"><input name="etcell3x2" size="20" type="text" value="" /></td>
182       <td bgcolor="#FFFF99"><select name="etcell3x3" size="1"><option>one</option>
183           <option selected>two</option>
184           <option>three</option>
185           <option>four</option></select></td>
186       <td bgcolor="#FFFF99"> 27 Jun 2002 12:40<input name="etcell3x4" type="hidden" value="27 Jun 2002 12:40" /></td>
187     </tr>
188   </table><input name="etsave" onclick="return(false);" type="submit" value="Save table" /> <input name="etqsave" onclick="return(false);" type="submit" value="Quiet save" /> <input name="etaddrow" onclick="return(false);" type="submit" value="Add row" /> <input name="etdelrow" onclick="return(false);" type="submit" value="Delete last row" /> <input name="etcancel" onclick="return(false);" type="submit" value="Cancel" /> (demo only, these buttons do not work) </form>
189
190 The following example shows a simple table with key/value rows. The default edit field type for the value column is a text field. This is overloaded by a selector for the Gender, and a date picker for the DOB. This is typically used by TWiki applications where new topics with tables are created based on a template topic.
191
192 <table>
193   <tr>
194     <td valign="top"> You type: <pre>
195 %EDITTABLE{ format="| label | text, 40 |" }%
196 |*Key*|*Value*|
197 | Name: | John Smith |
198 | Gender: | M %EDITCELL{select, 1, , F, M}% |
199 | DOB: | 1999/12/31 %EDITCELL{date, 10}% |
200 | City: | New York |
201 </pre></td>
202     <td valign="top"> Screenshot: <img alt="EDITCELL Example in view mode" height="141" src="http://www.dementia.org/twiki//view/ScreenshotEditCell1.gif" width="149" /></td>
203     <td valign="top"> Screenshot in edit mode: <img alt="EDITCELL Example in edit mode" height="164" src="http://www.dementia.org/twiki//view/ScreenshotEditCell2.gif" width="276" /></td>
204   </tr>
205 </table>
206
207 ## <a name="Plugin Settings"></a> Plugin Settings
208
209 Plugin settings are stored as preferences variables. To reference a plugin setting write <code>**%&lt;plugin&gt;\_&lt;setting&gt;%**</code>, for example, <code>**%EDITTABLEPLUGIN\_SHORTDESCRIPTION%**</code>
210
211 - One line description, shown in the [[TextFormattingRules]] topic:
212   - Set SHORTDESCRIPTION = Edit TWiki tables using edit fields, date pickers and drop down boxes
213
214 - Set DEBUG to 1 to get debug messages in `data/debug.txt`. Default: `0`
215   - Set DEBUG = 0
216
217 - Default for change rows flag: `on`, `off`, `add`
218   - Set CHANGEROWS = on
219
220 - Default flag for quiet save option: `on` to show the Quiet Save button, `off` to hide
221   - Set QUIETSAVE = on
222
223 - Default edit button: Specify `button text`, or specify `alternate text, image URL`
224   - #Set EDITBUTTON = Edit table
225   - Set EDITBUTTON = Edit this table, ![edittable.gif](http://www.dementia.org/twiki//view/edittable.gif)
226
227 - Date format of [Mishoo DHTML calendar](http://dynarch.com/mishoo/calendar.epl):
228   - Set JSCALENDARDATEFORMAT = %Y/%m/%d
229
230 - Language of DHTML calendar, pointing to attached `calendar-<code>.js` language file: `en`, `af`, `br`, `ca`, `cs-win`, `da`, `de`, `du`, `el`, `es`, `fr`, `hr`, `hr-utf8`, `hu`, `it`, `jp`, `nl`, `no`, `pl`, `pt`, `ro`, `ru`, `sk`, `sp`, `sv`, `tr`, `zh`
231   - Set JSCALENDARLANGUAGE = en
232
233 - Additional options of DHTML calendar:
234   - Set JSCALENDAROPTIONS =
235
236 **_Note:_** The Plugin looks for the `JSCALENDAR*` settings first in the TWiki Preferences, then in above Plugin settings
237
238 ## <a name="Limitations and Known Issues"></a> Limitations and Known Issues
239
240 - This Plugin does not support TWiki table formatting like Multi-span cells (e.g. `| ... ||`) and cell justification (e.g. `|  centered  |   right |`).
241 - There is a performance issue when editing a large table, say, with more then 50 rows.
242 - The Plugin fails if the table is at the very end of the topic (without a new line) Always ensure there is a newline after the table
243 - Variables like `%ATTACHURL%` get expanded unless they are in a label.
244 - You cannot put two %EDITTABLE% statements on the same line in the source.
245 - You can include %-vars now in select values, by quoting them with &lt;nop&gt;, as in %&lt;nop&gt;X% for %X%, say for instance: <br />`select,1,%<nop>X%,%<nop>Y%`
246
247 ## <a name="Plugin Installation Instructions"></a> Plugin Installation Instructions
248
249 **_Note:_** You do not need to install anything on the browser to use this Plugin. The following instructions are for the administrator who installs the plugin on the server where TWiki is running.
250
251 - Download the ZIP file from the Plugin web (see below)
252 - Unzip <code>**%TOPIC%.zip**</code> in your twiki installation directory. Content: <table border="1" cellpadding="0" cellspacing="0">
253   <tr>
254     <th bgcolor="#99CCCC"><strong> File: </strong></th>
255     <th bgcolor="#99CCCC"><strong> Description: </strong></th>
256   </tr>
257   <tr>
258     <td><code><b>data/TWiki/%TOPIC%.txt</b></code></td>
259     <td> Plugin topic </td>
260   </tr>
261   <tr>
262     <td><code><b>data/TWiki/%TOPIC%.txt,v</b></code></td>
263     <td> Plugin topic repository </td>
264   </tr>
265   <tr>
266     <td><code><b>lib/TWiki/Plugins/%TOPIC%.pm</b></code></td>
267     <td> Plugin Perl module </td>
268   </tr>
269   <tr>
270     <td><code><b>pub/TWiki/%TOPIC%/edittable.gif</b></code></td>
271     <td> Edit table button image </td>
272   </tr>
273   <tr>
274     <td><code><b>pub/TWiki/%TOPIC%/*.gif</b></code></td>
275     <td> Screenshots and Mishoo DHTML calendar images </td>
276   </tr>
277   <tr>
278     <td><code><b>pub/TWiki/%TOPIC%/README</b></code></td>
279     <td> Mishoo DHTML calendar README </td>
280   </tr>
281   <tr>
282     <td><code><b>pub/TWiki/%TOPIC%/release-notes.html</b></code></td>
283     <td> Mishoo DHTML calendar release notes </td>
284   </tr>
285   <tr>
286     <td><code><b>pub/TWiki/%TOPIC%/*.js</b></code></td>
287     <td> Mishoo DHTML calendar JavaScript files </td>
288   </tr>
289   <tr>
290     <td><code><b>pub/TWiki/%TOPIC%/calendar-system.css</b></code></td>
291     <td> Mishoo DHTML calendar stylesheet </td>
292   </tr>
293 </table>
294 - The Plugin depends on the `viewauth` script to authenticate the user. As described in [[TWikiAccessControl]], copy the `view` script to `viewauth` (or better, create a symbolic link) and add `viewauth` to the list of authenticated scripts in the `.htaccess` file.
295 - The Mishoo DHTML calendar 0.9.5 is preinstalled and should work without any configuration. If you wish to use another language, specify the in the Plugin settings, or create a new language files, attach it to the Plugin topic, and change the Plugin settings
296 - Test if the Plugin is correctly installed:
297   - Check above example if there is an **[ Edit table ]** button below the table in above example
298   - Click on **[ Edit table ]**, make changes and save the table
299
300 ## <a name="License"></a> License
301
302 - The Edit Table Plugin is released under the [GPL](http://www.gnu.org/licenses/gpl.html)
303 - The [Mishoo DHTML calendar](http://dynarch.com/mishoo/calendar.epl) bundled with this Plugin was created by Mihai Bazon and is released under the [LGPL](http://www.gnu.org/licenses/lgpl.html) -- thanks Mihai for the great tool :-)
304
305 ## <a name="Plugin Info"></a> Plugin Info
306
307 <table border="1" cellpadding="0" cellspacing="0">
308   <tr>
309     <td align="right"> Plugin Author: </td>
310     <td> TWiki:Main/PeterThoeny </td>
311   </tr>
312   <tr>
313     <td align="right"> Plugin Version: </td>
314     <td> 02 Mar 2004 </td>
315   </tr>
316   <tr>
317     <td align="right"> Change History: </td>
318     <td>  </td>
319   </tr>
320   <tr>
321     <td align="right"> 02 Mar 2004: </td>
322     <td> Default for <code>%EDITCELL{editbutton}%</code> is EDITBUTTON preference </td>
323   </tr>
324   <tr>
325     <td align="right"> 27 Feb 2004: </td>
326     <td> Added QUIETSAVE setting and <code>quietsave</code> parameter; image for Edit button </td>
327   </tr>
328   <tr>
329     <td align="right"> 18 Feb 2004: </td>
330     <td> Doc fixes; allow edit button anywhere in a cell not just at the end of a cell </td>
331   </tr>
332   <tr>
333     <td align="right"> 17 Feb 2004: </td>
334     <td> Added per cell definition of edit field types with <code>%EDITCELL{}%</code> variable; added <code>headerislabel</code> and <code>editbutton</code> parameters </td>
335   </tr>
336   <tr>
337     <td align="right"> 20 Dec 2003: </td>
338     <td> Fixed bug where calendar did not work after adding a row (TWiki:Main/PaulineCheung); added all language files of Mishoo DHTML calendar 0.9.5 </td>
339   </tr>
340   <tr>
341     <td align="right"> 13 Dec 2003: </td>
342     <td> Added CHANGEROWS, JSCALENDARDATEFORMAT, JSCALENDARLANGUAGE, JSCALENDAROPTIONS settings </td>
343   </tr>
344   <tr>
345     <td align="right"> 16 Oct 2003: </td>
346     <td> small typo fixed (garbled if ---+ header on top) </td>
347   </tr>
348   <tr>
349     <td align="right"> 15 Oct 2003: </td>
350     <td> new date field type with javascript calendar - CN </td>
351   </tr>
352   <tr>
353     <td align="right"> 14 Oct 2003: </td>
354     <td> docfix: the documentation page was an old one - CN </td>
355   </tr>
356   <tr>
357     <td align="right"> 13 Oct 2003: </td>
358     <td> bugfix: %-vars in select were resetted to first on add/del row - CN </td>
359   </tr>
360   <tr>
361     <td align="right"> 18 Sep 2003: </td>
362     <td> incompatibility: changed default of <code>changerows</code> to <code>on</code>; support for %-vars, Quiet save for saving without notification; all other fixes in Dev topic integrated - CN </td>
363   </tr>
364   <tr>
365     <td align="right"> 08 Nov 2002: </td>
366     <td> Prevent variable expansion in label text; added escape characters </td>
367   </tr>
368   <tr>
369     <td align="right"> 27 Jun 2002: </td>
370     <td> New <code>helptopic</code> parameter </td>
371   </tr>
372   <tr>
373     <td align="right"> 26 Jun 2002: </td>
374     <td> Support for variables in included EDITTABLE parameters; fixed problem with HTML in cells </td>
375   </tr>
376   <tr>
377     <td align="right"> 21 May 2002: </td>
378     <td> Added fixed label format; new <code>changerows="add"</code> parameter </td>
379   </tr>
380   <tr>
381     <td align="right"> 27 Apr 2002: </td>
382     <td> Fixed bug where text after a double quote in a cell disappeared </td>
383   </tr>
384   <tr>
385     <td align="right"> 18 Apr 2002: </td>
386     <td> Fixed bug where table was breaking when pasting multiple lines into an edit field using Netscape on Unix </td>
387   </tr>
388   <tr>
389     <td align="right"> 08 Apr 2002: </td>
390     <td> Check for change permission and edit lock of topic </td>
391   </tr>
392   <tr>
393     <td align="right"> 05 Apr 2002: </td>
394     <td> Initial version </td>
395   </tr>
396   <tr>
397     <td align="right"> CPAN Dependencies: </td>
398     <td> none </td>
399   </tr>
400   <tr>
401     <td align="right"> Other Dependencies: </td>
402     <td><a href="http://dynarch.com/mishoo/calendar.epl" target="_top">Mishoo DHTML calendar</a> (version 0.9.5 preinstalled); TWiki version 01 Feb 2003 or later </td>
403   </tr>
404   <tr>
405     <td align="right"> Perl Version: </td>
406     <td> 5.0 </td>
407   </tr>
408   <tr>
409     <td align="right"> TWiki:Plugins/Benchmark: </td>
410     <td>[[TWiki/GoodStyle]] 98%, [[TWiki/FormattedSearch]] 98%, %TOPIC% 95% </td>
411   </tr>
412   <tr>
413     <td align="right"> Plugin Home: </td>
414     <td><a href="http://TWiki.org/cgi-bin/view/Plugins/%TOPIC%" target="_top">http://TWiki.org/cgi-bin/view/Plugins/%TOPIC%</a></td>
415   </tr>
416   <tr>
417     <td align="right"> Feedback: </td>
418     <td><a href="http://TWiki.org/cgi-bin/view/Plugins/%TOPIC%Dev" target="_top">http://TWiki.org/cgi-bin/view/Plugins/%TOPIC%Dev</a></td>
419   </tr>
420 </table>
421
422 **_Related Topics:_** [[TWikiPreferences]], [[TWikiPlugins]]
423
424 -- TWiki:Main/PeterThoeny - 02 Mar 2004