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><span>On this page:</span><ul>
6     <li><a href="#Features"> Features</a></li>
7     <li><a href="#Syntax"> Syntax</a><ul>
8         <li><a href="#Positioning the comment"> Positioning the comment</a><ul>
9             <li><a href="#Location relative to %COMMENT ta"> Location relative to <code>%COMMENT</code> tag</a></li>
10             <li><a href="#Location relative to a TWiki anc"> Location relative to a TWiki anchor</a></li>
11             <li><a href="#Location relative to an arbitrar"> Location relative to an arbitrary text string</a></li>
12           </ul>
13         </li>
14         <li><a href="#Default templates"> Default templates</a></li>
15       </ul>
16     </li>
17     <li><a href="#Customisation"> Customisation</a><ul>
18         <li><a href="#Defining custom templates"> Defining custom templates</a></li>
19         <li><a href="#Customisation example"> Customisation example</a></li>
20         <li><a href="#The <code>PROMPT</code> template"> The PROMPT template</a><ul>
21             <li><a href="#Providing attribute values"> Providing attribute values</a></li>
22             <li><a href="#Special variables"> Special variables</a></li>
23             <li><a href="#Customisation example with custo"> Customisation example with custom form template</a></li>
24           </ul>
25         </li>
26         <li><a href="#The <code>OUTPUT</code> template"> The OUTPUT template</a></li>
27       </ul>
28     </li>
29     <li><a href="#Settings"> Settings</a></li>
30     <li><a href="#Plugin Installation Instructions"> Plugin Installation Instructions</a></li>
31     <li><a href="#Plugin Info"> Plugin Info</a></li>
32   </ul>
33 </div>
34
35 Related topics: [[CommentPluginTemplates]], [[CommentPluginExamples]]
36
37 <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>
38
39 ## <a name="Features"></a> Features
40
41 Inserts an edit box into the page that allows users to type in and save comments. Comments can be made
42
43 - in different formats (as defined by a template),
44 - in both forward and reverse chronological order,
45 - signed or unsigned, dated or undated (as defined by a template),
46 - in other topics, or other positions within the current topic.
47
48 ## <a name="Syntax"></a> Syntax
49
50 <a name="StandardAttrs"></a> Write <code>%COMMENT\{_attributes_\}%</code> anywhere in a TWiki topic.
51
52 (See also [[additional attributes|Main/WebHome#MoreAttrs]])
53
54 ### <a name="Positioning the comment"></a> Positioning the comment
55
56 `%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.
57
58 #### <a name="Location relative to %COMMENT ta"></a> Location relative to `%COMMENT` tag
59
60 The default _location_ is the `%COMMENT` tag itself. For example:
61
62     %COMMENT{type="below"}%
63
64 will add comments in the current topic, directly below the `%COMMENT` tag.
65
66 #### <a name="Location relative to a TWiki anc"></a> Location relative to a TWiki anchor
67
68 The `target` attribute may specify a web, and may also specify an anchor within the target topic; for example,
69
70     %COMMENT{type="above" target="%MAINWEB%.PersonalRemarks#InsertHere"}%
71
72 This uses a standard TWiki in-topic anchor as the insertion location. See [[TextFormattingRules]] for more about TWiki anchors.
73
74 #### <a name="Location relative to an arbitrar"></a> Location relative to an arbitrary text string
75
76 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,
77
78     %COMMENT{type="above" location="Flights of Fancy"}%
79
80 will place comments above the first occurence of the string `Flights of Fancy` in the current topic.
81
82 **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. %BR% Also note that you cannot have the text `location="` just before the location.
83
84 I look forward to someone leveraging this feature to create - for example - threaded conversations using `%COMMENT`.
85
86 If you specify an anchor _and_ a `location`, the anchor will be ignored.
87
88 ### <a name="Default templates"></a> Default templates
89
90 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.
91
92 A set of default comment templates are shipped with the plugin - see also [[CommentPluginTemplates]]:
93
94 <table border="1" cellpadding="0" cellspacing="0">
95   <tr>
96     <th bgcolor="#99CCCC"><strong> Template type </strong></th>
97     <th bgcolor="#99CCCC"><strong> Description </strong></th>
98   </tr>
99   <tr>
100     <td><code>top</code></td>
101     <td> Comments, signed and dated (server time), added at top of the topic (the anchor is ignored) </td>
102   </tr>
103   <tr>
104     <td><code>bottom</code></td>
105     <td> Comments, signed and dated (server time), added at end of the target topic (the anchor is ignored) </td>
106   </tr>
107   <tr>
108     <td><code>above</code></td>
109     <td> Comments, signed and dated (server time), added immediately before the target anchor, or the <code>%COMMENT</code> if no anchor is specified </td>
110   </tr>
111   <tr>
112     <td><code>below</code></td>
113     <td> Comments, signed and dated (server time), added immediately below the target anchor, or the <code>%COMMENT</code> if no anchor is specified </td>
114   </tr>
115   <tr>
116     <td><code>belowthreadmode</code></td>
117     <td> Comments, signed and dated, added recurse after comment box </td>
118   </tr>
119   <tr>
120     <td><code>threadmode</code></td>
121     <td> Wiki thread mode comment, signed and dated (server time) </td>
122   </tr>
123   <tr>
124     <td><code>tableprepend</code></td>
125     <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>
126   </tr>
127   <tr>
128     <td><code>tableappend</code></td>
129     <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>
130   </tr>
131   <tr>
132     <td><code>action</code></td>
133     <td> Action added to action table directly above comment box (see <a href="#Installation">Plugin Installation Instructions</a> below for immportant notes) </td>
134   </tr>
135   <tr>
136     <td><code>table</code></td>
137     <td> Tablerows adding on end </td>
138   </tr>
139   <tr>
140     <td><code>toctalk</code></td>
141     <td> Talk using TOC adding on end </td>
142   </tr>
143   <tr>
144     <td><code>bookmark</code></td>
145     <td> Create a list of annotated bookmarks </td>
146   </tr>
147   <tr>
148     <td><code>return</code></td>
149     <td> Post to a different topic and return </td>
150   </tr>
151 </table>
152
153 Your local installation may add more template types as well - see [[Customisation|Main/WebHome#TemPlates]], below.
154
155 <a name="TemPlates"></a>
156
157 ## <a name="Customisation"></a> Customisation
158
159 Customisation of the comment plugin requires
160
161 - familiarity with HTML forms
162 - some familiarity with the [[TWiki templating language|TWiki/TWikiTemplates]].
163
164 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.
165
166 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.
167
168 ### <a name="Defining custom templates"></a> Defining custom templates
169
170 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.
171
172 This allows for several levels of customisation:
173
174 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).
175 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.
176 3. To override templates on a **web-by-web basis**, add a topic `UserCommentsTemplate` to the web (this will replace TWiki.UserCommentsTemplate)
177 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)
178
179 You can also define a **comment template in a topic**, by passing the topic location with `templatetopic`. For example:
180
181 > %COMMENT{type="blogpost" templatetopic="BlogPostCommentTemplate" target="%TOPIC%" button="Add comment" }%
182 >
183 > `templatetopic` accepts `topic` or `web.topic` syntax. See an example in [[CommentPluginExamples:templatetopic|Main/CommentPluginExamples#TemplateTopic]].
184
185 %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. %BR% %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.
186
187 ### <a name="Customisation example"></a> Customisation example
188
189 Provide both a `PROMPT` and an `OUTPUT` definition:
190
191     %TMPL:DEF{PROMPT:myComment}%%TMPL:P{promptbox}%%TMPL:END%
192     %TMPL:DEF{OUTPUT:myComment}%%TMPL:P{outputoneliner}%%POS:TOP%
193     %TMPL:END%
194
195 Call your custom comment with:
196
197     %COMMENT{type="myComment"}%
198
199 ### <a name="The &lt;code&gt;PROMPT&lt;/code&gt; template"></a> The `PROMPT` template
200
201 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.
202
203 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!
204
205 <a name="MoreAttrs"></a>
206
207 #### <a name="Providing attribute values"></a> Providing attribute values
208
209 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:
210
211     <textarea rows=%rows|3% cols="%cols|50%" value="%tval|Rubbish%">
212
213 and the %COMMENT tag is:
214
215     %COMMENT{type="example" cols="75"}%
216
217 then the template will be expanded as
218
219     <textarea rows="3" cols="75" value="Rubbish">
220
221 #### <a name="Special variables"></a> Special variables
222
223 As well as support for all the usual TWiki variables in templates, the following special variables are supported in the `PROMPT` definition:
224
225 <table border="1" cellpadding="0" cellspacing="0">
226   <tr>
227     <th bgcolor="#99CCCC"><strong> Variable </strong></th>
228     <th bgcolor="#99CCCC"><strong> Description </strong></th>
229   </tr>
230   <tr>
231     <td><code>%DISABLED%</code></td>
232     <td> Set to 'disabled' when you cannot comment (e.g. in preview mode). </td>
233   </tr>
234   <tr>
235     <td><code>%MESSAGE%</code></td>
236     <td> The text specified by <code>default</code>. This may be overridden by a helpful message when the prompt is DISABLED. </td>
237   </tr>
238 </table>
239
240 **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:
241
242 <table border="1" cellpadding="0" cellspacing="0">
243   <tr>
244     <th bgcolor="#99CCCC"><strong> CGI parameter </strong></th>
245     <th bgcolor="#99CCCC"><strong> Description </strong></th>
246   </tr>
247   <tr>
248     <td><code>comment_action</code></td>
249     <td> Must be <code>save</code> to get the [[Main/CommentPlugin]] to perform </td>
250   </tr>
251   <tr>
252     <td><code>comment_type</code></td>
253     <td> Type of the OUTPUT template </td>
254   </tr>
255   <tr>
256     <td><code>comment_index</code></td>
257     <td> Zero-based index of the %COMMENT in the source topic. Used to place a post relative to an existing %COMMENT. </td>
258   </tr>
259   <tr>
260     <td><code>comment_anchor</code></td>
261     <td> Anchor taken from the <code>target</code> spec </td>
262   </tr>
263   <tr>
264     <td><code>comment_location</code></td>
265     <td> As passed to %COMMENT </td>
266   </tr>
267   <tr>
268     <td><code>comment_nonotify</code></td>
269     <td> As passed to %COMMENT </td>
270   </tr>
271   <tr>
272     <td><code>comment_remove</code></td>
273     <td> Zero-based index of a %COMMENT to remove from the target topic </td>
274   </tr>
275   <tr>
276     <td><code>comment_nopost</code></td>
277     <td> As passed to %COMMENT </td>
278   </tr>
279   <tr>
280     <td><code>comment_templatetopic</code></td>
281     <td> As passed to %COMMENT </td>
282   </tr>
283 </table>
284
285 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:
286
287     <form method="post" action="%SCRIPTURL{save}%/%WEB%/%TOPIC%">
288     <input type="submit" value="I Approve" />
289     <input type="hidden" name="comment_action" value="save" />
290     <input type="hidden" name="comment_type" value="bottom" />
291     <input type="hidden" name="comment" value="I Approve" />
292     </form>
293
294 #### <a name="Customisation example with custo"></a> Customisation example with custom form template
295
296 Write a custom form in a topic.
297
298 - In the form set the location of the prompt with `%COMMENTPROMPT%`; the prompt will be positioned here.
299 - In %COMMENT use parameter `noform="on"`
300 - In %COMMENT use parameter `templatetopic` to point to the topic with the form template
301
302 Example form:
303
304     %TMPL:DEF{FORM:example}%
305     <form method="post" action="%SCRIPTURL{save}%/%BASEWEB%/%BASETOPIC%" enctype="application/x-www-form-urlencoded" name="examplecomment" id="examplecomment">
306     <input type="hidden" name="redirectto" value="%BASEWEB%.%BASETOPIC%" />
307     %COMMENTPROMPT%
308     </form>
309     %TMPL:END%
310
311 Example comment:
312
313     %COMMENT{noform="on" type="example" templatetopic="Sandbox.CommentPluginTemplateExample" target="%TOPIC%" button="Add comment" }%
314
315 ### <a name="The &lt;code&gt;OUTPUT&lt;/code&gt; template"></a> The `OUTPUT` template
316
317 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.
318
319 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:
320
321 <table border="1" cellpadding="0" cellspacing="0">
322   <tr>
323     <td><code>%POS:TOP%</code></td>
324     <td> If present, comments will be inserted <strong>at the top of the topic</strong> i.e. before any other text </td>
325   </tr>
326   <tr>
327     <td><code>%POS:BOTTOM%</code></td>
328     <td> If present, comments will be inserted <strong>at the end of the topic</strong> i.e. after all existing text </td>
329   </tr>
330   <tr>
331     <td><code>%POS:BEFORE%</code></td>
332     <td> If present, comments will be inserted <b>immediately before the <code>%COMMENT%</code> tag</b></td>
333   </tr>
334   <tr>
335     <td><code>%POS:AFTER%</code></td>
336     <td> If present, comments will be inserted <b>immediately after the <code>%COMMENT%</code> tag</b></td>
337   </tr>
338 </table>
339
340 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`
341
342 <table border="1" cellpadding="0" cellspacing="0">
343   <tr>
344     <td><code>%COMMENTPROMPT%</code></td>
345     <td> Use with a custom form. If present, the comment prompt will be positioned here. </td>
346   </tr>
347 </table>
348
349 All the usual [[TWikiVariables]] that can be used in a topic template can also be used in an `OUTPUT` template. See [[TWikiVariables]] for details.
350
351 ## <a name="Settings"></a> Settings
352
353 Two TWiki Preference variables are recognised by the [[CommentPlugin]]:
354
355 <table border="1" cellpadding="0" cellspacing="0">
356   <tr>
357     <th bgcolor="#99CCCC"><strong> Preference </strong></th>
358     <th bgcolor="#99CCCC"><strong> Default </strong></th>
359     <th bgcolor="#99CCCC"><strong> Description </strong></th>
360   </tr>
361   <tr>
362     <td><code>%COMMENTPLUGIN_TEMPLATES%</code></td>
363     <td><code>comments</code></td>
364     <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>
365   </tr>
366   <tr>
367     <td><code>%COMMENTPLUGIN_DEFAULT_TYPE%</code></td>
368     <td><code>above</code></td>
369     <td> Default template type </td>
370   </tr>
371 </table>
372
373 These can be set in TWikiPreferences, in WebPreferences or in individual topics.
374
375 #Installation
376
377 ## <a name="Plugin Installation Instructions"></a> Plugin Installation Instructions
378
379 - This plugin is pre-installed in most TWiki releases. However if you need to upgrade the plugin for any reason:
380 - Download the archive file from the Plugin web (see below)
381 - Unpack the archive in your twiki installation directory.
382   - You may need to correct file permissions
383 - Run <code>**%TOPIC%\_installer**</code> to automatically check and install other modules that this module depends on, and enable the plugin.
384 - Alternatively,
385   - Manually resolve the dependencies listed below. None
386 - Use `configure` to enable the plugin
387
388 Note that if you want to use the `action` template then you must also:
389
390 1. Install the TWiki:Plugins/ActionTrackerPlugin;
391 2. Put the CommentPlugin **before** the ActionTrackerPlugin in the `{PluginsOrder}` configuration option (in `configure`)
392
393 ## <a name="Plugin Info"></a> Plugin Info
394
395 Another great TWiki extension from the [![](http://www.dementia.org/twiki//view/wikiringlogo20x20.png) **WikiRing** ](http://wikiring.com) - working together to improve your wiki experience!
396
397 <table border="1" cellpadding="0" cellspacing="0">
398   <tr>
399     <td align="right"> Plugin Author: </td>
400     <td> TWiki:Main.CrawfordCurrie <a href="http://www.c-dot.co.uk" target="_top">http://www.c-dot.co.uk</a> inspired by the work of TWiki:Main.DavidWeller and TWiki:Main.PeterMasiar </td>
401   </tr>
402   <tr>
403     <td align="right"> Plugin Version: </td>
404     <td> 03 Aug 2008 17791 (30 Mar 2009) </td>
405   </tr>
406   <tr>
407     <td align="right"> Change History: </td>
408     <td>   </td>
409   </tr>
410   <tr>
411     <td align="right"> 03 Aug 2008 </td>
412     <td> The TWiki 4.2.1 release version </td>
413   </tr>
414   <tr>
415     <td align="right"> 11 Apr 2008 </td>
416     <td> TWikibug:Item5518 corrected the template definition for bulletabove </td>
417   </tr>
418   <tr>
419     <td align="right"> 5 Sep 2007 </td>
420     <td> TWikibug:Item3689 corrected <code>location</code> handling TWikibug:Item4181 added [[Main/VarCOMMENT]] TWikibug:Item4402 corrected access check </td>
421   </tr>
422   <tr>
423     <td align="right"> 22 Jun 2007 </td>
424     <td> Removed the long-deprecated <code>%TIME</code> (use %GMTIME instead). Minor doc changes </td>
425   </tr>
426   <tr>
427     <td align="right"> 14021 </td>
428     <td> TWikibug:Item3755 Fixed incorrect handling of line terminators when targeting an anchor </td>
429   </tr>
430   <tr>
431     <td align="right"> 13311 </td>
432     <td> Added option to define a comment template in any topic. Pass the topic location with <code>templatetopic</code> (either <code>topic</code> or <code>web.topic</code>). See an example in [[Main/CommentPluginExamples#TemplateTopic]]. </td>
433   </tr>
434   <tr>
435     <td align="right"> 12822 </td>
436     <td> TWikibug:Item3598 minor doc fixes </td>
437   </tr>
438   <tr>
439     <td align="right"> 12750 </td>
440     <td> TWikibug:Item3510 added a note about the changed template spec in TWiki 4.1.0. Code remains unchanged </td>
441   </tr>
442   <tr>
443     <td align="right"> 11358 </td>
444     <td> TWikibug:Item2802 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>
445   </tr>
446   <tr>
447     <td align="right"> 11118 </td>
448     <td> TWikibug:Item2322 removed span tag around oneliner bullet output </td>
449   </tr>
450   <tr>
451     <td align="right"> 8788 </td>
452     <td> TWikibug:Item1465 Item1577: reverted 8433 to fix inclusion of correct user templates </td>
453   </tr>
454   <tr>
455     <td align="right"> 8787 </td>
456     <td> TWikibug:Item1573 renamed standard templates topic to avoid naming clash on Windows, where filenames are case-insensitive </td>
457   </tr>
458   <tr>
459     <td align="right"> 8433 </td>
460     <td> TWikibug:Item1465 Fix 'TWiki.' to 'TWiki.'; also fixed include 'UserComments' to 'UserCommentsTemplate' (at least that is what the doc suggests) </td>
461   </tr>
462   <tr>
463     <td align="right"> 7427 </td>
464     <td> TWikibug:Item845 removed duplicate date in default comments; stick with server time </td>
465   </tr>
466   <tr>
467     <td align="right"> 7251 </td>
468     <td> TWikibug:Item810 fix for user template inclusion; reorganised templates to make customisation easier </td>
469   </tr>
470   <tr>
471     <td align="right"> 5906 </td>
472     <td> TWikibug:Item143 apache warning from comment plugin when CommentsTmpl.txt not found </td>
473   </tr>
474   <tr>
475     <td align="right"> 5519 </td>
476     <td> CommentPluginOnAnchorsBroken: incorporated JacobEisinger's fix </td>
477   </tr>
478   <tr>
479     <td align="right"> 5518 </td>
480     <td> CommentPluginOnAnchorsBroken: incorporated OlivierBerger's fix </td>
481   </tr>
482   <tr>
483     <td align="right"> 5455 </td>
484     <td> On Niels Kodslo's prompting, removed the global recursion prevention that I believe is no longer needed. </td>
485   </tr>
486   <tr>
487     <td align="right"> 5280 </td>
488     <td> Removed templates, and some minor fixes </td>
489   </tr>
490   <tr>
491     <td align="right"> 5250 </td>
492     <td> Removed newlines from prompt box </td>
493   </tr>
494   <tr>
495     <td align="right"> 4902 </td>
496     <td> Changed to use viewauth. Moved templates into user topics. </td>
497   </tr>
498   <tr>
499     <td align="right"> 4901 </td>
500     <td> Added templates in user webs support </td>
501   </tr>
502   <tr>
503     <td align="right"> 4897 </td>
504     <td> Fixes for disabling during preview; re-enabled old legacy parameters </td>
505   </tr>
506   <tr>
507     <td align="right"> 4889 </td>
508     <td> Chopped down from PeterMasiar version, removing several parameters, savecomment script, changing way templates are done. Major rewrite, atcherly. </td>
509   </tr>
510   <tr>
511     <td align="right"> 4882 </td>
512     <td> Update from PeterMasiar's 2.0 version, plus documentation and small code improvements. </td>
513   </tr>
514   <tr>
515     <td align="right"> 4745 </td>
516     <td> 06 Mar 2002 initial commit </td>
517   </tr>
518   <tr>
519     <td align="right"> Copyright: </td>
520     <td> © 2004, TWiki:Main.CrawfordCurrie<br />© 2004-2007 TWiki:TWiki.TWikiContributor </td>
521   </tr>
522   <tr>
523     <td align="right"> License: </td>
524     <td> GPL (<a href="http://www.gnu.org/copyleft/gpl.html" target="_top">GNU General Public License</a>) </td>
525   </tr>
526   <tr>
527     <td align="right"> Plugin Home: </td>
528     <td> TWiki:Plugins/%TOPIC% </td>
529   </tr>
530   <tr>
531     <td align="right"> Feedback: </td>
532     <td> TWiki:Plugins/%TOPIC%Dev </td>
533   </tr>
534 </table>
535
536 **_Related Topics:_** [[TWikiPreferences]], [[TWikiPlugins]]