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 %RED% **_Note:_** Please use TWiki:Sandbox.EditTablePluginTesting if you want to try out this Plugin %ENDCOLOR%
161
162 If this plugin is installed you will see an **[ Edit table ]** button above; if you were to click on it (please don't, use TWiki:Sandbox.EditTablePluginTesting for testing) you get this form:
163
164 <form>
165   <table border="1" cellpadding="0" cellspacing="1">
166     <tr>
167       <th bgcolor="#99CCCC"> Nr </th>
168       <th bgcolor="#99CCCC"> Text field sandbox </th>
169       <th bgcolor="#99CCCC"> Drop down sandbox </th>
170       <th bgcolor="#99CCCC"> Timestamp </th>
171     </tr>
172     <tr>
173       <td bgcolor="#FFFFFF"> 1<input name="etcell2x1" type="hidden" value="1" /></td>
174       <td bgcolor="#FFFFFF"><input name="etcell2x2" size="20" type="text" value="hello table" /></td>
175       <td bgcolor="#FFFFFF"><select name="etcell2x3" size="1"><option selected>one</option>
176           <option>two</option>
177           <option>three</option>
178           <option>four</option></select></td>
179       <td bgcolor="#FFFFFF"> 26 Jun 2002 12:30<input name="etcell2x4" type="hidden" value="26 Jun 2002 12:30" /></td>
180     </tr>
181     <tr>
182       <td bgcolor="#FFFF99"> 2<input name="etcell3x1" type="hidden" value="2" /></td>
183       <td bgcolor="#FFFF99"><input name="etcell3x2" size="20" type="text" value="" /></td>
184       <td bgcolor="#FFFF99"><select name="etcell3x3" size="1"><option>one</option>
185           <option selected>two</option>
186           <option>three</option>
187           <option>four</option></select></td>
188       <td bgcolor="#FFFF99"> 27 Jun 2002 12:40<input name="etcell3x4" type="hidden" value="27 Jun 2002 12:40" /></td>
189     </tr>
190   </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>
191
192 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.
193
194 <table>
195   <tr>
196     <td valign="top"> You type: <pre>
197 %EDITTABLE{ format="| label | text, 40 |" }%
198 |*Key*|*Value*|
199 | Name: | John Smith |
200 | Gender: | M %EDITCELL{select, 1, , F, M}% |
201 | DOB: | 1999/12/31 %EDITCELL{date, 10}% |
202 | City: | New York |
203 </pre></td>
204     <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>
205     <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>
206   </tr>
207 </table>
208
209 ## <a name="Plugin Settings"></a> Plugin Settings
210
211 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>
212
213 - One line description, shown in the [[TextFormattingRules]] topic:
214   - Set SHORTDESCRIPTION = Edit TWiki tables using edit fields, date pickers and drop down boxes
215
216 - Set DEBUG to 1 to get debug messages in `data/debug.txt`. Default: `0`
217   - Set DEBUG = 0
218
219 - Default for change rows flag: `on`, `off`, `add`
220   - Set CHANGEROWS = on
221
222 - Default flag for quiet save option: `on` to show the Quiet Save button, `off` to hide
223   - Set QUIETSAVE = on
224
225 - Default edit button: Specify `button text`, or specify `alternate text, image URL`
226   - #Set EDITBUTTON = Edit table
227   - Set EDITBUTTON = Edit this table, ![edittable.gif](http://www.dementia.org/twiki//view/edittable.gif)
228
229 - Date format of [Mishoo DHTML calendar](http://dynarch.com/mishoo/calendar.epl):
230   - Set JSCALENDARDATEFORMAT = %Y/%m/%d
231
232 - 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`
233   - Set JSCALENDARLANGUAGE = en
234
235 - Additional options of DHTML calendar:
236   - Set JSCALENDAROPTIONS =
237
238 **_Note:_** The Plugin looks for the `JSCALENDAR*` settings first in the TWiki Preferences, then in above Plugin settings
239
240 ## <a name="Limitations and Known Issues"></a> Limitations and Known Issues
241
242 - This Plugin does not support TWiki table formatting like Multi-span cells (e.g. `| ... ||`) and cell justification (e.g. `|  centered  |   right |`)
243 - There is a performance issue when editing a large table, say, with more then 50 rows
244 - Variables like `%ATTACHURL%` get expanded unless they are in a label
245 - You cannot put two `%EDITTABLE{}%` statements on the same line in the source
246 - 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%`
247
248 ## <a name="Plugin Installation Instructions"></a> Plugin Installation Instructions
249
250 **_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.
251
252 - Download the ZIP file from the Plugin web (see below)
253 - Unzip <code>**%TOPIC%.zip**</code> in your twiki installation directory. Content: <table border="1" cellpadding="0" cellspacing="0">
254   <tr>
255     <th bgcolor="#99CCCC"><strong> File: </strong></th>
256     <th bgcolor="#99CCCC"><strong> Description: </strong></th>
257   </tr>
258   <tr>
259     <td><code><b>data/TWiki/%TOPIC%.txt</b></code></td>
260     <td> Plugin topic </td>
261   </tr>
262   <tr>
263     <td><code><b>data/TWiki/%TOPIC%.txt,v</b></code></td>
264     <td> Plugin topic repository </td>
265   </tr>
266   <tr>
267     <td><code><b>lib/TWiki/Plugins/%TOPIC%.pm</b></code></td>
268     <td> Plugin Perl module </td>
269   </tr>
270   <tr>
271     <td><code><b>pub/TWiki/%TOPIC%/edittable.gif</b></code></td>
272     <td> Edit table button image </td>
273   </tr>
274   <tr>
275     <td><code><b>pub/TWiki/%TOPIC%/*.gif</b></code></td>
276     <td> Screenshots and Mishoo DHTML calendar images </td>
277   </tr>
278   <tr>
279     <td><code><b>pub/TWiki/%TOPIC%/README</b></code></td>
280     <td> Mishoo DHTML calendar README </td>
281   </tr>
282   <tr>
283     <td><code><b>pub/TWiki/%TOPIC%/release-notes.html</b></code></td>
284     <td> Mishoo DHTML calendar release notes </td>
285   </tr>
286   <tr>
287     <td><code><b>pub/TWiki/%TOPIC%/*.js</b></code></td>
288     <td> Mishoo DHTML calendar JavaScript files </td>
289   </tr>
290   <tr>
291     <td><code><b>pub/TWiki/%TOPIC%/calendar-system.css</b></code></td>
292     <td> Mishoo DHTML calendar stylesheet </td>
293   </tr>
294 </table>
295 - 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.
296 - 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
297 - Test if the Plugin is correctly installed:
298   - Check above example if there is an **[ Edit table ]** button below the table in above example
299   - Click on **[ Edit table ]**, make changes and save the table
300
301 ## <a name="License"></a> License
302
303 - The Edit Table Plugin is released under the [GPL](http://www.gnu.org/licenses/gpl.html)
304 - 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 :-)
305
306 ## <a name="Plugin Info"></a> Plugin Info
307
308 <table border="1" cellpadding="0" cellspacing="0">
309   <tr>
310     <td align="right"> Plugin Author: </td>
311     <td> TWiki:Main/PeterThoeny </td>
312   </tr>
313   <tr>
314     <td align="right"> Plugin Version: </td>
315     <td> 01 Aug 2004 </td>
316   </tr>
317   <tr>
318     <td align="right"> Change History: </td>
319     <td>  </td>
320   </tr>
321   <tr>
322     <td align="right"> 01 Aug 2004: </td>
323     <td> Fixed bug where edittable did not work if at the end of a topic </td>
324   </tr>
325   <tr>
326     <td align="right"> 07 Apr 2004: </td>
327     <td> Fixed bug where two tables got updated when you edit and save a table included into a topic containing other edit tables </td>
328   </tr>
329   <tr>
330     <td align="right"> 02 Mar 2004: </td>
331     <td> Default for <code>%EDITCELL{editbutton}%</code> is EDITBUTTON preference </td>
332   </tr>
333   <tr>
334     <td align="right"> 27 Feb 2004: </td>
335     <td> Added QUIETSAVE setting and <code>quietsave</code> parameter; image for Edit button </td>
336   </tr>
337   <tr>
338     <td align="right"> 18 Feb 2004: </td>
339     <td> Doc fixes; allow edit button anywhere in a cell not just at the end of a cell </td>
340   </tr>
341   <tr>
342     <td align="right"> 17 Feb 2004: </td>
343     <td> Added per cell definition of edit field types with <code>%EDITCELL{}%</code> variable; added <code>headerislabel</code> and <code>editbutton</code> parameters </td>
344   </tr>
345   <tr>
346     <td align="right"> 20 Dec 2003: </td>
347     <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>
348   </tr>
349   <tr>
350     <td align="right"> 13 Dec 2003: </td>
351     <td> Added CHANGEROWS, JSCALENDARDATEFORMAT, JSCALENDARLANGUAGE, JSCALENDAROPTIONS settings </td>
352   </tr>
353   <tr>
354     <td align="right"> 16 Oct 2003: </td>
355     <td> small typo fixed (garbled if ---+ header on top) </td>
356   </tr>
357   <tr>
358     <td align="right"> 15 Oct 2003: </td>
359     <td> new date field type with javascript calendar - CN </td>
360   </tr>
361   <tr>
362     <td align="right"> 14 Oct 2003: </td>
363     <td> docfix: the documentation page was an old one - CN </td>
364   </tr>
365   <tr>
366     <td align="right"> 13 Oct 2003: </td>
367     <td> bugfix: %-vars in select were resetted to first on add/del row - CN </td>
368   </tr>
369   <tr>
370     <td align="right"> 18 Sep 2003: </td>
371     <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>
372   </tr>
373   <tr>
374     <td align="right"> 08 Nov 2002: </td>
375     <td> Prevent variable expansion in label text; added escape characters </td>
376   </tr>
377   <tr>
378     <td align="right"> 27 Jun 2002: </td>
379     <td> New <code>helptopic</code> parameter </td>
380   </tr>
381   <tr>
382     <td align="right"> 26 Jun 2002: </td>
383     <td> Support for variables in included EDITTABLE parameters; fixed problem with HTML in cells </td>
384   </tr>
385   <tr>
386     <td align="right"> 21 May 2002: </td>
387     <td> Added fixed label format; new <code>changerows="add"</code> parameter </td>
388   </tr>
389   <tr>
390     <td align="right"> 27 Apr 2002: </td>
391     <td> Fixed bug where text after a double quote in a cell disappeared </td>
392   </tr>
393   <tr>
394     <td align="right"> 18 Apr 2002: </td>
395     <td> Fixed bug where table was breaking when pasting multiple lines into an edit field using Netscape on Unix </td>
396   </tr>
397   <tr>
398     <td align="right"> 08 Apr 2002: </td>
399     <td> Check for change permission and edit lock of topic </td>
400   </tr>
401   <tr>
402     <td align="right"> 05 Apr 2002: </td>
403     <td> Initial version </td>
404   </tr>
405   <tr>
406     <td align="right"> CPAN Dependencies: </td>
407     <td> none </td>
408   </tr>
409   <tr>
410     <td align="right"> Other Dependencies: </td>
411     <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>
412   </tr>
413   <tr>
414     <td align="right"> Perl Version: </td>
415     <td> 5.0 </td>
416   </tr>
417   <tr>
418     <td align="right"> TWiki:Plugins/Benchmark: </td>
419     <td>[[TWiki/GoodStyle]] 98%, [[TWiki/FormattedSearch]] 98%, %TOPIC% 95% </td>
420   </tr>
421   <tr>
422     <td align="right"> Plugin Home: </td>
423     <td><a href="http://TWiki.org/cgi-bin/view/Plugins/%TOPIC%" target="_top">http://TWiki.org/cgi-bin/view/Plugins/%TOPIC%</a></td>
424   </tr>
425   <tr>
426     <td align="right"> Feedback: </td>
427     <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>
428   </tr>
429 </table>
430
431 **_Related Topics:_** [[TWikiPreferences]], [[TWikiPlugins]]
432
433 -- TWiki:Main/PeterThoeny - 01 Aug 2004