none
[openafs-wiki.git] / TWiki / CommentPlugin.mdwn
1 # <a name="Comment Plugin"></a><a name=" Comment Plugin"></a> Comment Plugin
2
3 **Comment Plugin lets users quickly post comments to a page without an edit/preview/save cycle.**
4
5 <div style="background-color: #ffc">WARNING: TWiki-4 only. If you want to use this plugin with an earlier version of TWiki, please use <a href="http://twiki.org/cgi-bin/attach/Plugins/CommentPlugin?filename=CommentPlugin.zip&revInfo=1" target="_top">revision 31 of the zip</a>.</div>
6
7 <div>
8   <ul>
9     <li><a href="#Features"> Features</a></li>
10     <li><a href="#Syntax Rules"> Syntax Rules</a><ul>
11         <li><a href="#Positioning the comment"> Positioning the comment</a><ul>
12             <li><a href="#Location relative to %COMMENT ta"> Location relative to <code>%COMMENT</code> tag</a></li>
13             <li><a href="#Location relative to a TWiki anc"> Location relative to a TWiki anchor</a></li>
14             <li><a href="#Location relative to an arbitrar"> Location relative to an arbitrary text string</a></li>
15           </ul>
16         </li>
17         <li><a href="#Default templates"> Default templates</a></li>
18       </ul>
19     </li>
20     <li><a href="#Customisation"> Customisation</a><ul>
21         <li><a href="#Defining custom templates"> Defining custom templates</a></li>
22         <li><a href="#Customisation example"> Customisation example</a></li>
23         <li><a href="#The <code>PROMPT</code> template"> The PROMPT template</a><ul>
24             <li><a href="#Providing attribute values"> Providing attribute values</a></li>
25             <li><a href="#Special variables"> Special variables</a></li>
26           </ul>
27         </li>
28         <li><a href="#The <code>OUTPUT</code> template"> The OUTPUT template</a></li>
29       </ul>
30     </li>
31     <li><a href="#Settings"> Settings</a></li>
32     <li><a href="#Plugin Installation Instructions"> Plugin Installation Instructions</a></li>
33     <li><a href="#Plugin Info"> Plugin Info</a></li>
34   </ul>
35 </div>
36
37 ## <a name="Features"></a> Features
38
39 Inserts an edit box into the page that allows users to type in and save comments. Comments can be made
40
41 - in different formats (as defined by a template),
42 - in both forward and reverse chronological order,
43 - signed or unsigned, dated or undated (as defined by a template),
44 - in other topics, or other positions within the current topic.
45
46 ## <a name="Syntax Rules"></a> Syntax Rules
47
48 Write the command `%COMMENT{` _attributes_ `}%` anywhere in a TWiki topic. `%COMMENT%` is also legal.
49
50 <a name="StandardAttrs"></a> The following attributes are recognized (see also [[additional attributes|Main/WebHome#MoreAttrs]]):
51
52 <table border="1" cellpadding="0" cellspacing="0">
53   <tr>
54     <th bgcolor="#99CCCC"><strong> Name </strong></th>
55     <th bgcolor="#99CCCC"><strong> Description </strong></th>
56   </tr>
57   <tr>
58     <td><code>type</code></td>
59     <td> This is the name of the template to use for this comment. Comment templates are defined in a TWiki template - see [[Main/WebHome#TemPlates]], below. If this attribute is not defined, the type is whatever is defined by COMMENTPLUGIN_DEFAULT_TYPE, either in this topic or in your [[Main/WebPreferences]]. By default this is 'below'. </td>
60   </tr>
61   <tr>
62     <td><code>default</code></td>
63     <td> Default text to put into the textarea of the prompt. </td>
64   </tr>
65   <tr>
66     <td><code>target</code></td>
67     <td> Name of the topic to add the comment to. Defaults to the current topic. </td>
68   </tr>
69   <tr>
70     <td><code>location</code></td>
71     <td> Regular expression specifying the comment location in the target topic. Read <em>carefully</em> below! </td>
72   </tr>
73   <tr>
74     <td><code>mode</code></td>
75     <td> For compatability with older versions only, synonymous with <code>type</code></td>
76   </tr>
77   <tr>
78     <td><code>nonotify</code></td>
79     <td> Set to "on" to disable change notification for target topics </td>
80   </tr>
81   <tr>
82     <td><code>noform</code></td>
83     <td> Set to "on" to disable the automatic form that encloses your comment block - <em>remember</em> to insert <code>&lt;form&gt;</code> tags yourself! See [[Main/CommentPluginExamples#noform]] for an example. </td>
84   </tr>
85   <tr>
86     <td><code>nopost</code></td>
87     <td> Set to "on" to disable insertion of the posted text into the topic. </td>
88   </tr>
89   <tr>
90     <td><code>remove</code></td>
91     <td> Set to "on" to remove the comment prompt after the first time it is clicked. </td>
92   </tr>
93   <tr>
94     <td><code>button</code></td>
95     <td> Button label text; by default <code>Add comment</code>. </td>
96   </tr>
97 </table>
98
99 ### <a name="Positioning the comment"></a> Positioning the comment
100
101 `%COMMENT` supports several ways to specify _where_ a comment should be inserted in the target topic. This is referred to as the _location_ of the comment.
102
103 #### <a name="Location relative to %COMMENT ta"></a> Location relative to `%COMMENT` tag
104
105 The default _location_ is the `%COMMENT` tag itself. For example:
106
107     %COMMENT{type="below"}%
108
109 will add comments in the current topic, directly below the `%COMMENT` tag.
110
111 #### <a name="Location relative to a TWiki anc"></a> Location relative to a TWiki anchor
112
113 The `target` attribute may specify a web, and may also specify an anchor within the target topic; for example,
114
115     %COMMENT{type="above" target="%MAINWEB%.PersonalRemarks#InsertHere"}%
116
117 This uses a standard TWiki in-topic anchor as the insertion location. See [[TextFormattingRules]] for more about TWiki anchors.
118
119 #### <a name="Location relative to an arbitrar"></a> Location relative to an arbitrary text string
120
121 Getting more sophisticated, you can also specify a regular expression for the target location using the `location` parameter. The target topic is searched for the regular expression, and the comment inserted relative to the string that the search matched. For example,
122
123     %COMMENT{type="above" location="Flights of Fancy"}%
124
125 will place comments above the first occurence of the string `Flights of Fancy` in the current topic.
126
127 **Warning** of course, if a user's comment contains the string "Flights of Fancy" they may and up _changing the location_ for the next comment! Also, if you use a tag in the location, then you've just inserted another tag in the page that contains the `%COMMENT`! So be very careful how you specify the RE for `location`. Note that the RE is matched using perl "multiple line" mode, so ^ and $ match the start of a line and the end of a line respectively.
128
129 I look forward to someone leveraging this feature to create - for example - threaded conversations using `%COMMENT`.
130
131 If you specify an anchor _and_ a `location`, the anchor will be ignored.
132
133 ### <a name="Default templates"></a> Default templates
134
135 Templates are used to define the "comment style" i.e. how comments appear in the page. The default is to add comments in "Blog like" style using bulleted lists, with the most recent comment at the top, but many other styles are available such as tables or Wiki thread mode comments. It is easy to define your own customer styles as well.
136
137 A set of default comment templates are shipped with the plugin. These are:
138
139 <table border="1" cellpadding="0" cellspacing="0">
140   <tr>
141     <th bgcolor="#99CCCC"><strong> Template type </strong></th>
142     <th bgcolor="#99CCCC"><strong> Description </strong></th>
143   </tr>
144   <tr>
145     <td><code>top</code></td>
146     <td> Comments, signed and dated (server time), added at top of the topic (the anchor is ignored) </td>
147   </tr>
148   <tr>
149     <td><code>bottom</code></td>
150     <td> Comments, signed and dated (server time), added at end of the target topic (the anchor is ignored) </td>
151   </tr>
152   <tr>
153     <td><code>above</code></td>
154     <td> Comments, signed and dated (server time), added immediately before the target anchor, or the <code>%COMMENT</code> if no anchor is specified </td>
155   </tr>
156   <tr>
157     <td><code>below</code></td>
158     <td> Comments, signed and dated (server time), added immediately below the target anchor, or the <code>%COMMENT</code> if no anchor is specified </td>
159   </tr>
160   <tr>
161     <td><code>threadmode</code></td>
162     <td> Wiki thread mode comment, signed and dated (server time) </td>
163   </tr>
164   <tr>
165     <td><code>tableprepend</code></td>
166     <td> Comments, signed and dated (server time), formatted as an HTML table row, added below the anchor (which must be in an HTML &lt;table&gt;) </td>
167   </tr>
168   <tr>
169     <td><code>tableappend</code></td>
170     <td> Comments, signed and dated (server time), formatted as an HTML table row, added above the anchor (which must be in an HTML &lt;table&gt;) </td>
171   </tr>
172 </table>
173
174 Your local installation may add more template types as well - see [[Customisation|Main/WebHome#TemPlates]], below.
175
176 <a name="TemPlates"></a>
177
178 ## <a name="Customisation"></a> Customisation
179
180 Customisation of the comment plugin requires
181
182 - familiarity with HTML forms
183 - some familiarity with the [[TWiki templating language|TWiki/TWikiTemplates]].
184
185 To define a comment type, you have to provide two simple template definitions in the template file; one for the prompt box, and one for the generated output. If we have a template type "mytype", these are named `PROMPT:mytype` and `OUTPUT:mytype` respectively. See `comments.tmpl` in the templates directory for examples.
186
187 The plugin picks up these template definitions from a standard TWiki template file, `templates/comments.tmpl`. This allows different templates to be defined for different TWiki skins.
188
189 ### <a name="Defining custom templates"></a> Defining custom templates
190
191 By default, `templates/comments.tmpl` includes the topic [[CommentPluginTemplate]], which contains all the shipped standard templates and in turn includes TWiki.UserCommentsTemplate that can include non-standard customisations.
192
193 This allows for several levels of customisation:
194
195 1. To **override all default templates, everywhere**, change `comments.tmpl` to include a different topic (this customisation will be lost next time you upgrade, though).
196 2. To add **site-wide local template customisations**, add them to [[UserCommentsTemplate]] (create if it does not exist yet). You can redefine the standard templates here if you want, and your definitions will override the standard definitions.
197 3. To override templates on a **web-by-web basis**, add a topic `UserCommentsTemplate` to the web (this will replace TWiki.UserCommentsTemplate)
198 4. To override templates **for a specific skin**, add them to TWiki.UserComments&lt;Skin&gt;Template (where &lt;Skin&gt; is the name of the skin with the first letter capitalised, e.g. Pattern)
199
200 %X% Templates are picked up by following the [[standard TWiki rules|Main/TWikiTemplates#Finding_Templates]] for locating template files. Note that you can use `%TMPL:INCLUDE` to include other files of templates.
201
202 %X% Note that from TWiki release 4.1.0 leading and trailing whitespace is no longer stripped. This means that when you upgrade to TWiki 4.1.X you may need to remove the first line break in your custom comment templates. See [[TWikiReleaseNotes04x01]] for more information.
203
204 ### <a name="Customisation example"></a> Customisation example
205
206 Provide both a `PROMPT` and an `OUTPUT` definition:
207
208     %TMPL:DEF{PROMPT:myComment}%%TMPL:P{promptbox}%%TMPL:END%
209     %TMPL:DEF{OUTPUT:myComment}%%TMPL:P{outputoneliner}%%POS:TOP%
210     %TMPL:END%
211
212 Call your custom comment with:
213
214     %COMMENT{type="myComment"}%
215
216 ### <a name="The &lt;code&gt;PROMPT&lt;/code&gt; template"></a> The `PROMPT` template
217
218 The `PROMPT` template defines the contents of an HTML form that is used to capture the comment. This form invokes the comment generator when submitted. Parameters to the comment generator are defined using standard HTML input fields, such as `input`, `textarea` and `select`. The user enters values for these parameters, and these are then available when the `OUTPUT` template is expanded, in the form of `%URLPARAM%`s.
219
220 Only the input fields of the form need be defined. The plugin automatically generates the `<form>` and `</form>` tags, unless you specify `noform="on"`, in which case you have to provide them yourself. **Note** that you must define a "submit" button if you want the form to work!
221
222 <a name="MoreAttrs"></a>
223
224 #### <a name="Providing attribute values"></a> Providing attribute values
225
226 If an attribute is given to the `%COMMENT` tag that is not one of the [[standard attributes|Main/WebHome#StandardAttrs]], then that attribute is taken as the name of a parameter to be expanded in the `PROMPT` template. Expressions in the template of the form `%`_param_`|`_default_`%` (e.g. `%rows|3%`, `%button|Push me%`) are expanded to the values given in the `%COMMENT`. For example, if the `PROMPT` template 'example' contains:
227
228     <textarea rows=%rows|3% cols="%cols|50%" value="%tval|Rubbish%">
229
230 and the %COMMENT tag is:
231
232     %COMMENT{type="example" cols="75"}%
233
234 then the template will be expanded as
235
236     <textarea rows="3" cols="75" value="Rubbish">
237
238 #### <a name="Special variables"></a> Special variables
239
240 As well as support for all the usual TWiki variables in templates, the following special variables are supported in the `PROMPT` definition:
241
242 <table border="1" cellpadding="0" cellspacing="0">
243   <tr>
244     <th bgcolor="#99CCCC"><strong> Variable </strong></th>
245     <th bgcolor="#99CCCC"><strong> Description </strong></th>
246   </tr>
247   <tr>
248     <td><code>%DISABLED%</code></td>
249     <td> Set to 'disabled' when you cannot comment (e.g. in preview mode). </td>
250   </tr>
251   <tr>
252     <td><code>%MESSAGE%</code></td>
253     <td> The text specified by <code>default</code>. This may be overridden by a helpful message when the prompt is DISABLED. </td>
254   </tr>
255 </table>
256
257 **EXPERT** Note that when a comment is saved, the TWiki `save` script is invoked on the target topic, with a number of parameters provided by the comment form. Normally the [[CommentPlugin]] will provide these fields in the form, but experts can also provide the fields themselves in order to get finer control over what is submitted, or you might want to define your own HTML forms that do comment submission. The parameters that the [[CommentPlugin]] recognises are as follows:
258
259 <table border="1" cellpadding="0" cellspacing="0">
260   <tr>
261     <th bgcolor="#99CCCC"><strong> CGI parameter </strong></th>
262     <th bgcolor="#99CCCC"><strong> Description </strong></th>
263   </tr>
264   <tr>
265     <td><code>comment_action</code></td>
266     <td> Must be <code>save</code> to get the [[Main/CommentPlugin]] to perform </td>
267   </tr>
268   <tr>
269     <td><code>comment_type</code></td>
270     <td> Type of the OUTPUT template </td>
271   </tr>
272   <tr>
273     <td><code>comment_index</code></td>
274     <td> Zero-based index of the %COMMENT in the source topic. Used to place a post relative to an existing %COMMENT. </td>
275   </tr>
276   <tr>
277     <td><code>comment_anchor</code></td>
278     <td> Anchor taken from the <code>target</code> spec </td>
279   </tr>
280   <tr>
281     <td><code>comment_location</code></td>
282     <td> As passed to %COMMENT </td>
283   </tr>
284   <tr>
285     <td><code>comment_nonotify</code></td>
286     <td> As passed to %COMMENT </td>
287   </tr>
288   <tr>
289     <td><code>comment_remove</code></td>
290     <td> Zero-based index of a %COMMENT to remove from the target topic </td>
291   </tr>
292   <tr>
293     <td><code>comment_nopost</code></td>
294     <td> As passed to %COMMENT </td>
295   </tr>
296 </table>
297
298 Note that `comment_location` overrides `comment_anchor`, and both override `comment_index`. Example, shows an "I Approve" button that adds your approval signature to the end of the topic:
299
300     <form method="post" action="%SCRIPTURL{save}%/%WEB%/%TOPIC%">
301     <input type="submit" value="I Approve" />
302     <input type="hidden" name="comment_action" value="save" />
303     <input type="hidden" name="comment_type" value="bottom" />
304     <input type="hidden" name="comment" value="I Approve" />
305     </form>
306
307 ### <a name="The &lt;code&gt;OUTPUT&lt;/code&gt; template"></a> The `OUTPUT` template
308
309 The `OUTPUT` template defines the format for the text that actually gets embedded into the topic. All the usual TWiki variables are available in the `PROMPT` definition, but note that they get expanded _when the comment is inserted in the text_, so time, date and username will refer to the time and date when the comment was made, and the user who made it.
310
311 There are also four position tags that are used to indicate where the comment should be placed, relative to the `location` defined in the `%COMMENT` tag:
312
313 <table border="1" cellpadding="0" cellspacing="0">
314   <tr>
315     <td><code>%POS:TOP%</code></td>
316     <td> If present, comments will be inserted <strong>at the top of the topic</strong> i.e. before any other text </td>
317   </tr>
318   <tr>
319     <td><code>%POS:BOTTOM%</code></td>
320     <td> If present, comments will be inserted <strong>at the end of the topic</strong> i.e. after all existing text </td>
321   </tr>
322   <tr>
323     <td><code>%POS:BEFORE%</code></td>
324     <td> If present, comments will be inserted <b>immediately before the <code>%COMMENT%</code> tag</b></td>
325   </tr>
326   <tr>
327     <td><code>%POS:AFTER%</code></td>
328     <td> If present, comments will be inserted <b>immediately after the <code>%COMMENT%</code> tag</b></td>
329   </tr>
330 </table>
331
332 Note that these position tags are obviously mutually exclusive. If you define more than one, the result is undefined. If none is present, the default is taken from the plugin setting `DEFAULT_TYPE`
333
334 All the usual [[TWikiVariables]] that can be used in a topic template can also be used in an `OUTPUT` template. See [[TWikiVariables]] for details.
335
336 ## <a name="Settings"></a> Settings
337
338 Two TWiki Preference variables are recognised by the [[CommentPlugin]]:
339
340 <table border="1" cellpadding="0" cellspacing="0">
341   <tr>
342     <th bgcolor="#99CCCC"><strong> Preference </strong></th>
343     <th bgcolor="#99CCCC"><strong> Default </strong></th>
344     <th bgcolor="#99CCCC"><strong> Description </strong></th>
345   </tr>
346   <tr>
347     <td><code>%COMMENTPLUGIN_TEMPLATES%</code></td>
348     <td><code>comments</code></td>
349     <td> Name of template file in the 'templates' directory that contains the comment templates. The default 'comments.tmpl' automatically includes user templates from [[TWiki/CommentPluginTemplate]], which in turn includes [[TWiki/UserCommentsTemplate]]. </td>
350   </tr>
351   <tr>
352     <td><code>%COMMENTPLUGIN_DEFAULT_TYPE%</code></td>
353     <td><code>above</code></td>
354     <td> Default template type </td>
355   </tr>
356 </table>
357
358 These can be set in TWikiPreferences, in WebPreferences or in individual topics.
359
360 ## <a name="Plugin Installation Instructions"></a> Plugin Installation Instructions
361
362 - This plugin is pre-installed in most TWiki releases. However if you need to upgrade the plugin for any reason:
363 - Download the archive file from the Plugin web (see below)
364 - Unpack the archive in your twiki installation directory.
365   - You may need to correct file permissions
366 - Run <code>**%TOPIC%\_installer**</code> to automatically check and install other modules that this module depends on, and enable the plugin.
367 - Alternatively,
368   - Manually resolve the dependencies listed below. None
369 - Use `configure` to enable the plugin
370
371 ## <a name="Plugin Info"></a> Plugin Info
372
373 <table border="1" cellpadding="0" cellspacing="0">
374   <tr>
375     <td align="right"> Plugin Author: </td>
376     <td> TWiki:Main.DavidWeller, TWiki:Main.PeterMasiar, TWiki:Main.CrawfordCurrie <a href="http://www.c-dot.co.uk" target="_top">http://www.c-dot.co.uk</a></td>
377   </tr>
378   <tr>
379     <td align="right"> Copyright: </td>
380     <td> © 2004, TWiki:Main.CrawfordCurrie<br />© 2004-2007 TWiki:TWiki.TWikiContributor </td>
381   </tr>
382   <tr>
383     <td align="right"> License: </td>
384     <td> GPL (<a href="http://www.gnu.org/copyleft/gpl.html" target="_top">GNU General Public License</a>) </td>
385   </tr>
386   <tr>
387     <td align="right"> Plugin Version: </td>
388     <td> 12750 (04 Feb 2007) </td>
389   </tr>
390   <tr>
391     <td align="right"> Change History: </td>
392     <td>  </td>
393   </tr>
394   <tr>
395     <td align="right"> 12750 </td>
396     <td><a href="http://develop.twiki.org/~twiki4/cgi-bin/view/Bugs/Item3510" rel="nofollow">Item3510</a> added a note about the changed template spec in TWiki 4.1.0. Code remains unchanged </td>
397   </tr>
398   <tr>
399     <td align="right"> 11358 </td>
400     <td><a href="http://develop.twiki.org/~twiki4/cgi-bin/view/Bugs/Item2802" rel="nofollow">Item2802</a> moved SHORTDESCRIPTION to .pm. Coded up TWiki:main.PankajPant's suggestions as <code>nopost</code> and <code>remove</code>. Added default text for the %COMMENT as requested by TWiki:Main.AndyGlew </td>
401   </tr>
402   <tr>
403     <td align="right"> 11118 </td>
404     <td><a href="http://develop.twiki.org/~twiki4/cgi-bin/view/Bugs/Item2322" rel="nofollow">Item2322</a> removed span tag around oneliner bullet output </td>
405   </tr>
406   <tr>
407     <td align="right"> 8788 </td>
408     <td><a href="http://develop.twiki.org/~twiki4/cgi-bin/view/Bugs/Item1465" rel="nofollow">Item1465</a> Item1577: reverted 8433 to fix inclusion of correct user templates </td>
409   </tr>
410   <tr>
411     <td align="right"> 8787 </td>
412     <td><a href="http://develop.twiki.org/~twiki4/cgi-bin/view/Bugs/Item1573" rel="nofollow">Item1573</a> renamed standard templates topic to avoid naming clash on Windows, where filenames are case-insensitive </td>
413   </tr>
414   <tr>
415     <td align="right"> 8433 </td>
416     <td><a href="http://develop.twiki.org/~twiki4/cgi-bin/view/Bugs/Item1465" rel="nofollow">Item1465</a> Fix 'TWiki.' to 'TWiki.'; also fixed include 'UserComments' to 'UserCommentsTemplate' (at least that is what the doc suggests) </td>
417   </tr>
418   <tr>
419     <td align="right"> 7427 </td>
420     <td><a href="http://develop.twiki.org/~twiki4/cgi-bin/view/Bugs/Item845" rel="nofollow">Item845</a> removed duplicate date in default comments; stick with server time </td>
421   </tr>
422   <tr>
423     <td align="right"> 7251 </td>
424     <td><a href="http://develop.twiki.org/~twiki4/cgi-bin/view/Bugs/Item810" rel="nofollow">Item810</a> fix for user template inclusion; reorganised templates to make customisation easier </td>
425   </tr>
426   <tr>
427     <td align="right"> 5906 </td>
428     <td><a href="http://develop.twiki.org/~twiki4/cgi-bin/view/Bugs/Item143" rel="nofollow">Item143</a> apache warning from comment plugin when CommentsTmpl.txt not found </td>
429   </tr>
430   <tr>
431     <td align="right"> 5519 </td>
432     <td> CommentPluginOnAnchorsBroken: incorporated JacobEisinger's fix </td>
433   </tr>
434   <tr>
435     <td align="right"> 5518 </td>
436     <td> CommentPluginOnAnchorsBroken: incorporated OlivierBerger's fix </td>
437   </tr>
438   <tr>
439     <td align="right"> 5455 </td>
440     <td> On Niels Kodslo's prompting, removed the global recursion prevention that I believe is no longer needed. </td>
441   </tr>
442   <tr>
443     <td align="right"> 5280 </td>
444     <td> Removed templates, and some minor fixes </td>
445   </tr>
446   <tr>
447     <td align="right"> 5250 </td>
448     <td> Removed newlines from prompt box </td>
449   </tr>
450   <tr>
451     <td align="right"> 4902 </td>
452     <td> Changed to use viewauth. Moved templates into user topics. </td>
453   </tr>
454   <tr>
455     <td align="right"> 4901 </td>
456     <td> Added templates in user webs support </td>
457   </tr>
458   <tr>
459     <td align="right"> 4897 </td>
460     <td> Fixes for disabling during preview; re-enabled old legacy parameters </td>
461   </tr>
462   <tr>
463     <td align="right"> 4889 </td>
464     <td> Chopped down from PeterMasiar version, removing several parameters, savecomment script, changing way templates are done. Major rewrite, atcherly. </td>
465   </tr>
466   <tr>
467     <td align="right"> 4882 </td>
468     <td> Update from PeterMasiar's 2.0 version, plus documentation and small code improvements. </td>
469   </tr>
470   <tr>
471     <td align="right"> 4745 </td>
472     <td> 06 Mar 2002 initial commit </td>
473   </tr>
474   <tr>
475     <td align="right"> Perl Version: </td>
476     <td> &gt;= 5.6.1 </td>
477   </tr>
478   <tr>
479     <td align="right"> Plugin Home: </td>
480     <td> TWiki:Plugins/%TOPIC% </td>
481   </tr>
482   <tr>
483     <td align="right"> Feedback: </td>
484     <td> TWiki:Plugins/%TOPIC%Dev </td>
485   </tr>
486 </table>
487
488 **_Related Topics:_** [[TWikiPreferences]], [[TWikiPlugins]]
489
490 -- TWiki:Main/CrawfordCurrie - 15:45:58 03 March 2007