~kosova/+junk/tuxfamily-twiki

« back to all changes in this revision

Viewing changes to foswiki/data/System/CommentPlugin.txt

  • Committer: James Michael DuPont
  • Date: 2009-07-18 19:58:49 UTC
  • Revision ID: jamesmikedupont@gmail.com-20090718195849-vgbmaht2ys791uo2
added foswiki

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
%META:TOPICINFO{author="ProjectContributor" date="1170597947" format="1.1" version="1"}%
 
2
 
 
3
---+!! Comment Plugin
 
4
 
 
5
<!--
 
6
 
 
7
   PLEASE DO NOT EDIT THIS TOPIC
 
8
 
 
9
   It is automatically generated from the subversion repository, and any changes
 
10
   you make will simply be overwritten the next time a release is generated.
 
11
 
 
12
   Instead, you could check your fix in, raise a bug in the Bugs web, or mail thge author.
 
13
-->
 
14
 
 
15
RELEASE 04 Jun 2009
 
16
 
 
17
*Comment Plugin lets users quickly post comments to a page without an edit/preview/save cycle.*
 
18
 
 
19
%TOC{title="On this page:"}%
 
20
 
 
21
Related topics: CommentPluginTemplates, CommentPluginExamples
 
22
 
 
23
---++ Features
 
24
 
 
25
Inserts an edit box into the page that allows users to type in and save comments. Comments can be made
 
26
   * in different formats (as defined by a template),
 
27
   * in both forward and reverse chronological order,  
 
28
   * signed or unsigned, dated or undated (as defined by a template),
 
29
   * in other topics, or other positions within the current topic.
 
30
 
 
31
---++ Syntax
 
32
#StandardAttrs
 
33
Write =%<nop>COMMENT{<i>attributes</i>}%= anywhere in a topic.
 
34
%INCLUDE{"%SYSTEMWEB%.VarCOMMENT" section="comment_attributes"}%
 
35
(See also [[#MoreAttrs][additional attributes]])
 
36
 
 
37
---+++ Positioning the comment
 
38
=%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.
 
39
 
 
40
---++++ Location relative to <code>%COMMENT</code> tag
 
41
The default _location_ is the =%COMMENT= tag itself. For example:
 
42
<verbatim>
 
43
%COMMENT{type="below"}%
 
44
</verbatim>
 
45
will add comments in the current topic, directly below the =%COMMENT= tag.
 
46
 
 
47
---++++ Location relative to an anchor
 
48
The =target= attribute may specify a web, and may also specify an anchor within the target topic; for example, 
 
49
<verbatim>
 
50
%COMMENT{type="above" target="%MAINWEB%.PersonalRemarks#InsertHere"}%
 
51
</verbatim>
 
52
This uses a standard in-topic anchor as the insertion location. See %SYSTEMWEB%.TextFormattingRules for more about Foswiki anchors.
 
53
 
 
54
---++++ Location relative to an arbitrary text string
 
55
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,
 
56
<verbatim>
 
57
%COMMENT{type="above" location="Flights of Fancy"}%
 
58
</verbatim>
 
59
will place comments above the first occurence of the string =Flights of Fancy= in the current topic.
 
60
 
 
61
*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%
 
62
Also note that you cannot have the text =location="= just before the location.
 
63
 
 
64
I look forward to someone leveraging this feature to create - for example - threaded conversations using =%COMMENT=.
 
65
 
 
66
If you specify an anchor _and_ a =location=, the anchor will be ignored.
 
67
 
 
68
---+++ Default templates
 
69
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.
 
70
 
 
71
A set of default comment templates are shipped with the plugin - see also CommentPluginTemplates:
 
72
| *Template type* | *Description* |
 
73
| =top= | Comments, signed and dated (server time), added at top of the topic (the anchor is ignored) |
 
74
| =bottom= | Comments, signed and dated (server time), added at end of the target topic (the anchor is ignored) |
 
75
| =above= | Comments, signed and dated (server time), added immediately before the target anchor, or the =%COMMENT= if no anchor is specified |
 
76
| =below= | Comments, signed and dated (server time), added immediately below the target anchor, or the =%COMMENT= if no anchor is specified |
 
77
| =belowthreadmode= | Comments, signed and dated, added recurse after comment box |
 
78
| =threadmode= | Wiki thread mode comment, signed and dated (server time) |
 
79
| =tableprepend= | Comments, signed and dated (server time), formatted as an HTML table row, added below the anchor (which must be in an HTML &lt;table>) |
 
80
| =tableappend= | Comments, signed and dated (server time), formatted as an HTML table row, added above the anchor (which must be in an HTML &lt;table>) |
 
81
| =action= | Action added to action table directly above comment box (see <a href="#Installation">Plugin Installation Instructions</a> below for important notes) |
 
82
| =table= | Tablerows adding on end |
 
83
| =toctalk= | Talk using TOC adding on end |
 
84
| =bookmark= | Create a list of annotated bookmarks |
 
85
| =return= | Post to a different topic and return |
 
86
 
 
87
Your local installation may add more template types as well - see [[#TemPlates][Customisation]], below.
 
88
 
 
89
#TemPlates
 
90
---++ Customisation
 
91
Customisation of the comment plugin requires
 
92
   * familiarity with HTML forms
 
93
   * some familiarity with the [[%SYSTEMWEB%.SkinTemplates][Skin Templates]].
 
94
 
 
95
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.
 
96
 
 
97
The plugin picks up these template definitions from a standard template file, =templates/comments.tmpl=. This allows different templates to be defined for different Foswiki skins.
 
98
 
 
99
---+++ Defining custom templates
 
100
By default, =templates/comments.tmpl= includes the topic %SYSTEMWEB%.CommentPluginTemplate, which contains all the shipped standard templates and in turn includes %SYSTEMWEB%.<nop>UserCommentsTemplate that can include non-standard customisations.
 
101
 
 
102
This allows for several levels of customisation:
 
103
   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).
 
104
   1 To add *site-wide local template customisations*, add them to %SYSTEMWEB%.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.
 
105
   1 To override templates on a *web-by-web basis*, add a topic =UserCommentsTemplate= to the web (this will replace %SYSTEMWEB%.<nop>UserCommentsTemplate)
 
106
   1 To override templates *for a specific skin*, add them to %SYSTEMWEB%.<nop>UserComments&lt;Skin&gt;Template (where &lt;Skin&gt; is the name of the skin with the first letter capitalised, e.g. Pattern)
 
107
 
 
108
You can also define a *comment template in a topic*, by passing the topic location with =templatetopic=. For example:
 
109
<blockquote>
 
110
<verbatim>
 
111
%COMMENT{type="blogpost" templatetopic="BlogPostCommentTemplate" target="%TOPIC%" button="Add comment" }%
 
112
</verbatim>
 
113
 
 
114
=templatetopic= accepts =topic= or =web.topic= syntax. See an example in [[CommentPluginExamples#TemplateTopic][CommentPluginExamples:templatetopic]].
 
115
</blockquote>
 
116
 
 
117
 
 
118
%X% Templates are picked up by following the [[SkinTemplates#FindingTemplates][standard rules for locating template files]]. Note that you can use =%TMPL:INCLUDE= to include other files of templates. %BR%
 
119
 
 
120
---+++ Customisation example
 
121
Provide both a =PROMPT= and an =OUTPUT= definition:
 
122
 
 
123
<verbatim>
 
124
%TMPL:DEF{PROMPT:myComment}%%TMPL:P{promptbox}%%TMPL:END%
 
125
%TMPL:DEF{OUTPUT:myComment}%%TMPL:P{outputoneliner}%%POS:TOP%
 
126
%TMPL:END%
 
127
</verbatim>
 
128
 
 
129
Call your custom comment with:
 
130
 
 
131
<verbatim>
 
132
%COMMENT{type="myComment"}%
 
133
</verbatim>
 
134
 
 
135
---+++ The =PROMPT= template
 
136
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 <code>%<nop>URLPARAM%</code>s.
 
137
 
 
138
Only the input fields of the form need be defined. The plugin automatically generates the <code>&lt;form&gt;</code> and <code>&lt;/form&gt;</code> 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!
 
139
 
 
140
#MoreAttrs
 
141
---++++ Providing attribute values
 
142
If an attribute is given to the =%COMMENT= tag that is not one of the [[#StandardAttrs][standard attributes]], 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 <code>%</code><i>param</i><code>|</code><i>default</i><code>%</code> (e.g. <code>%rows|3%</code>, <code>%button|Push me%</code>) are expanded to the values given in the <code>%COMMENT</code>. For example, if the =PROMPT= template 'example' contains:
 
143
<pre>
 
144
&lt;textarea rows=%rows|3% cols="%cols|50%" value="%tval|Rubbish%">
 
145
</pre>
 
146
and the %COMMENT tag is:
 
147
<pre>
 
148
%<nop>COMMENT{type="example" cols="75"}%
 
149
</pre>
 
150
then the template will be expanded as
 
151
<pre>
 
152
&lt;textarea rows="3" cols="75" value="Rubbish">
 
153
</pre>
 
154
 
 
155
---++++ Special macros
 
156
As well as support for all the usual macros in templates, the following special macros are supported in the =PROMPT= definition:
 
157
    | *Macro* | *Description* |
 
158
    | =%<nop>DISABLED%= | Set to 'disabled' when you cannot comment (e.g. in preview mode). |
 
159
    | =%<nop>MESSAGE%= | The text specified by =default=. This may be overridden by a helpful message when the prompt is DISABLED. |
 
160
 
 
161
*EXPERT* Note that when a comment is saved, the =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:
 
162
| *CGI parameter* | *Description* |
 
163
| =comment_action= | Must be =save= to get the CommentPlugin to perform |
 
164
| =comment_type= | Type of the OUTPUT template |
 
165
| =comment_index= | Zero-based index of the %COMMENT in the source topic. Used to place a post relative to an existing %COMMENT. |
 
166
| =comment_anchor= | Anchor taken from the =target= spec |
 
167
| =comment_location= | As passed to %COMMENT |
 
168
| =comment_nonotify= | As passed to %COMMENT |
 
169
| =comment_remove= | Zero-based index of a %COMMENT to remove from the target topic |
 
170
| =comment_nopost= | As passed to %COMMENT |
 
171
| =comment_templatetopic= | As passed to %COMMENT |
 
172
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:
 
173
<verbatim>
 
174
<form method="post" action="%SCRIPTURL{save}%/%WEB%/%TOPIC%">
 
175
<input type="submit" value="I Approve" />
 
176
<input type="hidden" name="comment_action" value="save" />
 
177
<input type="hidden" name="comment_type" value="bottom" />
 
178
<input type="hidden" name="comment" value="I Approve" />
 
179
</form>
 
180
</verbatim>
 
181
 
 
182
---++++ Customisation example with custom form template
 
183
Write a custom form in a topic.
 
184
   * In the form set the location of the prompt with =%<nop>COMMENTPROMPT%=; the prompt will be positioned here.
 
185
   * In %COMMENT use parameter =noform="on"=
 
186
   * In %COMMENT use parameter =templatetopic= to point to the topic with the form template
 
187
 
 
188
Example form:
 
189
<verbatim>
 
190
%TMPL:DEF{FORM:example}%
 
191
<form method="post" action="%SCRIPTURL{save}%/%BASEWEB%/%BASETOPIC%" enctype="application/x-www-form-urlencoded" name="examplecomment" id="examplecomment">
 
192
<input type="hidden" name="redirectto" value="%BASEWEB%.%BASETOPIC%" />
 
193
%COMMENTPROMPT%
 
194
</form>
 
195
%TMPL:END%
 
196
</verbatim>
 
197
 
 
198
Example comment:
 
199
<verbatim>
 
200
%COMMENT{noform="on" type="example" templatetopic="Sandbox.CommentPluginTemplateExample" target="%TOPIC%" button="Add comment" }%
 
201
</verbatim>
 
202
 
 
203
---+++ The =OUTPUT= template
 
204
The =OUTPUT= template defines the format for the text that actually gets embedded into the topic. All the usual macros 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.
 
205
 
 
206
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:
 
207
 
 
208
    | =%<nop>POS:TOP%= | If present, comments will be inserted *at the top of the topic* i.e. before any other text |
 
209
    | =%<nop>POS:BOTTOM%= | If present, comments will be inserted *at the end of the topic* i.e. after all existing text |
 
210
    | =%<nop>POS:BEFORE%= | If present, comments will be inserted <b>immediately before the =%<nop>COMMENT%= tag</b> |
 
211
    | =%<nop>POS:AFTER%= | If present, comments will be inserted <b>immediately after the =%<nop>COMMENT%= tag</b> |
 
212
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=
 
213
 
 
214
    | =%<nop>COMMENTPROMPT%= | Use with a custom form. If present, the comment prompt will be positioned here. |
 
215
    
 
216
All the [[TemplateTopics#TemplateTopicsVars][usual macros]] that can be used in a topic template can also be used in an =OUTPUT= template.
 
217
 
 
218
---++ Settings
 
219
<!-- Not used by the plugin
 
220
   * Set SHORTDESCRIPTION = Quickly post comments to a page without an edit/preview/save cycle.
 
221
-->
 
222
Two [[%SYSTEMWEB%.PreferenceSettings][preference settings]] are recognised by the CommentPlugin:
 
223
| *Preference* | *Default* | *Description* |
 
224
| =%<nop>COMMENTPLUGIN_TEMPLATES%= | =comments= | Name of template file in the 'templates' directory that contains the comment templates. The default 'comments.tmpl' automatically includes user templates from %SYSTEMWEB%.CommentPluginTemplate, which in turn includes %SYSTEMWEB%.UserCommentsTemplate. |
 
225
| =%<nop>COMMENTPLUGIN_DEFAULT_TYPE%= | =above= | Default template type |
 
226
These can be set in !%USERSWEB%.SitePreferences, in !WebPreferences, or in individual topics.
 
227
 
 
228
#Installation
 
229
---++ Plugin Installation Instructions
 
230
   * This plugin is pre-installed in most releases. However if you need to upgrade the plugin for any reason:
 
231
   * Download the archive file from the Extensions web (see below)
 
232
   * Unpack the archive in your Foswiki installation directory.
 
233
      * You may need to correct file permissions
 
234
   * Run ==%TOPIC%_installer== to automatically check and install other modules that this module depends on, and enable the plugin.
 
235
   * Alternatively,
 
236
      * Manually resolve the dependencies listed below.
 
237
      None
 
238
   * Use =configure= to enable the plugin
 
239
 
 
240
Note that if you want to use the =action= template then you must also:
 
241
   1 Install the Foswiki:Extensions/ActionTrackerPlugin;
 
242
   1 Put the !CommentPlugin *before* the !ActionTrackerPlugin in the ={PluginsOrder}= configuration option (in =configure=)
 
243
 
 
244
---++ Plugin Info
 
245
 
 
246
Another great extension from the <a style="text-decoration:none" href="http://wikiring.com"><img src="%ATTACHURLPATH%/wikiringlogo20x20.png" alt="" /> *WikiRing* </a> - working together to improve your wiki experience!
 
247
 
 
248
|  Plugin Author: | Foswiki:Main.CrawfordCurrie http://www.c-dot.co.uk inspired by the work of TWiki:Main.DavidWeller and TWiki:Main.PeterMasiar |
 
249
|  Copyright: | &copy; 2004, TWiki:Main.CrawfordCurrie<br />&copy; 2004-2009 Foswiki:%SYSTEMWEB%.ProjectContributor |
 
250
|  License: | GPL ([[http://www.gnu.org/copyleft/gpl.html][GNU General Public License]]) |
 
251
|  Plugin Version: | 4263 (2009-06-21) |
 
252
|  Change History: | |
 
253
|  04 Jun 2009 | Foswikitask:Item1668 - The action template used with !ActionTrackerPlugin now uses new syntax ending with %ENDACTION. This makes each action item appear on a new line. Additionally new lines are now correctly saved as html br tags and not as html encoded br tag <br /> Foswikitask:Item1640 - Templates shipped with the plugin no longer encodes the user date entered when the date is saved so that it is possible for the user to use macros. |
 
254
|  15 Jan 2008 | Foswikitask:Item727 - data loss issue when missing anchor or location |
 
255
|  13 Jan 2009 | Foswikitask:Item736 - Make !CommentPlugin aware of CompareRevisionsAddOn bin script. |
 
256
|  16 Dec 2008 | Foswiki version |
 
257
|  03 Aug 2008 | The TWiki 4.2.1 release version | 
 
258
|  11 Apr 2008 | TWikibug:Item5518 corrected the template definition for bulletabove |
 
259
|  05 Sep 2007 | TWikibug:Item3689 corrected =location= handling TWikibug:Item4181 added VarCOMMENT TWikibug:Item4402 corrected access check |
 
260
|  22 Jun 2007 | Removed the long-deprecated =%TIME= (use %GMTIME instead). Minor doc changes |
 
261
|  14021 | TWikibug:Item3755 Fixed incorrect handling of line terminators when targeting an anchor |
 
262
|  13311 | Added option to define a comment template in any topic. Pass the topic location with =templatetopic= (either =topic= or =web.topic=). See an example in [[CommentPluginExamples#TemplateTopic][CommentPluginExamples:templatetopic]]. |
 
263
|  12822 | TWikibug:Item3598 minor doc fixes |
 
264
|  12750 | TWikibug:Item3510 added a note about the changed template spec in TWiki 4.1.0. Code remains unchanged |
 
265
|  11358 | TWikibug:Item2802 moved SHORTDESCRIPTION to .pm. Coded up TWiki:main.PankajPant's suggestions as =nopost= and =remove=. Added default text for the %COMMENT as requested by TWiki:Main.AndyGlew |
 
266
|  11118 | TWikibug:Item2322 removed span tag around oneliner bullet output |
 
267
|  8788 | TWikibug:Item1465  Item1577: reverted 8433 to fix inclusion of correct user templates |
 
268
|  8787 | TWikibug:Item1573  renamed standard templates topic to avoid naming clash on Windows, where filenames are case-insensitive |
 
269
|  8433 | TWikibug:Item1465  Fix 'TWiki.' to '%SYSTEMWEB%.'; also fixed include 'UserComments' to 'UserCommentsTemplate' (at least that is what the doc suggests) |
 
270
|  7427 | TWikibug:Item845  removed duplicate date in default comments; stick with server time |
 
271
|  7251 | TWikibug:Item810  fix for user template inclusion; reorganised templates to make customisation easier |
 
272
|  5906 | TWikibug:Item143  apache warning from comment plugin when !CommentsTmpl.txt not found |
 
273
|  5519 | !CommentPluginOnAnchorsBroken: incorporated !JacobEisinger's fix |
 
274
|  5518 | !CommentPluginOnAnchorsBroken: incorporated !OlivierBerger's fix |
 
275
|  5455 | On Niels Kodslo's prompting, removed the global recursion prevention that I believe is no longer needed. |
 
276
|  5280 | Removed templates, and some minor fixes |
 
277
|  5250 | Removed newlines from prompt box |
 
278
|  4902 | Changed to use viewauth. Moved templates into user topics. |
 
279
|  4901 | Added templates in user webs support |
 
280
|  4897 | Fixes for disabling during preview; re-enabled old legacy parameters |
 
281
|  4889 | Chopped down from !PeterMasiar version, removing several parameters, savecomment script, changing way templates are done. Major rewrite, atcherly. |
 
282
|  4882 | Update from !PeterMasiar's 2.0 version, plus documentation and small code improvements. |
 
283
|  4745 | 06 Mar 2002 initial commit |
 
284
|  Plugin Home: | http://foswiki.org/Extensions/%TOPIC% |
 
285
|  Support: | http://foswiki.org/Support/%TOPIC% |
 
286
 
 
287
*Related Topics:* %USERSWEB%.SitePreferences, [[%SYSTEMWEB%.Plugins][Plugins]]
 
288
 
 
289
%META:FILEATTACHMENT{name="wikiringlogo20x20.png" attr="h" comment="" version="1"}%