wiki-archive/twiki/data/TWiki/CommentPlugin.txt,v

586 lines
34 KiB
Plaintext

head 1.6;
access;
symbols;
locks; strict;
comment @# @;
1.6
date 2007.01.16.04.11.59; author TWikiContributor; state Exp;
branches;
next 1.5;
1.5
date 2006.10.25.00.21.57; author TWikiContributor; state Exp;
branches;
next 1.4;
1.4
date 2006.06.25.16.26.31; author TWikiContributor; state Exp;
branches;
next 1.3;
1.3
date 2006.04.01.05.55.28; author TWikiContributor; state Exp;
branches;
next 1.2;
1.2
date 2006.02.01.12.01.22; author TWikiContributor; state Exp;
branches;
next 1.1;
1.1
date 2004.08.08.03.00.49; author PeterThoeny; state Exp;
branches;
next ;
desc
@none
@
1.6
log
@buildrelease
@
text
@%META:TOPICINFO{author="TWikiContributor" date="1111929255" format="1.0" version="6"}%
---+!! Comment Plugin
<!--
PLEASE DO NOT EDIT THIS TOPIC
It is automatically generated from the subversion repository, and any changes
you make will simply be overwritten the next time a release is generated.
Instead, you could check your fix in, raise a bug in the Bugs web, or mail thge author.
-->
*Comment Plugin lets users quickly post comments to a page without an edit/preview/save cycle.*
<div class="twikiBroadcastMessage" style="background-color:#ffc;">WARNING: TWiki-4 only. If you want to use this plugin with an earlier version of TWiki, please use [[http://twiki.org/cgi-bin/attach/Plugins/CommentPlugin?filename=CommentPlugin.zip&revInfo=1][revision 31 of the zip]].</div>
%TOC%
---++ Features
Inserts an edit box into the page that allows users to type in and save comments. Comments can be made
* in different formats (as defined by a template),
* in both forward and reverse chronological order,
* signed or unsigned, dated or undated (as defined by a template),
* in other topics, or other positions within the current topic.
---++ Syntax Rules
Write the command =%<nop>COMMENT{= _attributes_ =}%= anywhere in a TWiki topic. =%<nop>COMMENT%= is also legal.
#StandardAttrs
The following attributes are recognized (see also [[#MoreAttrs][additional attributes]]):
| *Name* | *Description* |
| =type= | This is the name of the template to use for this comment. Comment templates are defined in a TWiki template - see [[#TemPlates][Customisation]], below. If this attribute is not defined, the type is whatever is defined by COMMENTPLUGIN_DEFAULT_TYPE, either in this topic or in your WebPreferences. By default this is 'below'. |
| =default= | Default text to put into the textarea of the prompt. |
| =target= | Name of the topic to add the comment to. Defaults to the current topic. |
| =location= | Regular expression specifying the comment location in the target topic. Read _carefully_ below! |
| =mode= | For compatability with older versions only, synonymous with =type= |
| =nonotify= | Set to "on" to disable change notification for target topics |
| =noform= | Set to "on" to disable the automatic form that encloses your comment block - _remember_ to insert =&lt;form&gt;= tags yourself! See CommentPluginExamples#noform for an example. |
| =nopost= | Set to "on" to disable insertion of the posted text into the topic. |
| =remove= | Set to "on" to remove the comment prompt after the first time it is clicked. |
| =button= | Button label text; by default =Add comment=. |
---+++ Positioning the comment
=%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.
---++++ Location relative to <code>%COMMENT</code> tag
The default _location_ is the =%COMMENT= tag itself. For example:
<verbatim>
%COMMENT{type="below"}%
</verbatim>
will add comments in the current topic, directly below the =%COMMENT= tag.
---++++ Location relative to a TWiki anchor
The =target= attribute may specify a web, and may also specify an anchor within the target topic; for example,
<verbatim>
%COMMENT{type="above" target="%MAINWEB%.PersonalRemarks#InsertHere"}%
</verbatim>
This uses a standard TWiki in-topic anchor as the insertion location. See %TWIKIWEB%.TextFormattingRules for more about TWiki anchors.
---++++ Location relative to an arbitrary text string
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,
<verbatim>
%COMMENT{type="above" location="Flights of Fancy"}%
</verbatim>
will place comments above the first occurence of the string =Flights of Fancy= in the current topic.
*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.
I look forward to someone leveraging this feature to create - for example - threaded conversations using =%COMMENT=.
If you specify an anchor _and_ a =location=, the anchor will be ignored.
---+++ Default templates
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.
A set of default comment templates are shipped with the plugin. These are:
| *Template type* | *Description* |
| =top= | Comments, signed and dated (server time), added at top of the topic (the anchor is ignored) |
| =bottom= | Comments, signed and dated (server time), added at end of the target topic (the anchor is ignored) |
| =above= | Comments, signed and dated (server time), added immediately before the target anchor, or the =%COMMENT= if no anchor is specified |
| =below= | Comments, signed and dated (server time), added immediately below the target anchor, or the =%COMMENT= if no anchor is specified |
| =threadmode= | Wiki thread mode comment, signed and dated (server time) |
| =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>) |
| =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>) |
Your local installation may add more template types as well - see [[#TemPlates][Customisation]], below.
#TemPlates
---++ Customisation
Customisation of the comment plugin requires
* familiarity with HTML forms
* some familiarity with the [[%TWIKIWEB%.TWikiTemplates][TWiki templating language]].
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.
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.
---+++ Defining custom templates
By default, =templates/comments.tmpl= includes the topic %TWIKIWEB%.CommentPluginTemplate, which contains all the shipped standard templates and in turn includes %TWIKIWEB%.<nop>UserCommentsTemplate that can include non-standard customisations.
This allows for several levels of customisation:
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).
1 To add *site-wide local template customisations*, add them to %TWIKIWEB%.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.
1 To override templates on a *web-by-web basis*, add a topic =UserCommentsTemplate= to the web (this will replace %TWIKIWEB%.<nop>UserCommentsTemplate)
1 To override templates *for a specific skin*, add them to %TWIKIWEB%.<nop>UserComments&lt;Skin&gt;Template (where &lt;Skin&gt; is the name of the skin with the first letter capitalised, e.g. Pattern)
%X% Templates are picked up by following the [[TWikiTemplates#Finding_Templates][standard TWiki rules]] for locating template files. Note that you can use =%TMPL:INCLUDE= to include other files of templates.
---+++ Customisation example
Provide both a =PROMPT= and an =OUTPUT= definition:
<verbatim>
%TMPL:DEF{PROMPT:myComment}%%TMPL:P{promptbox}%%TMPL:END%
%TMPL:DEF{OUTPUT:myComment}%%TMPL:P{outputoneliner}%%POS:TOP%
%TMPL:END%
</verbatim>
Call your custom comment with:
<verbatim>
%COMMENT{type="myComment"}%
</verbatim>
---+++ The =PROMPT= template
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.
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!
#MoreAttrs
---++++ Providing attribute values
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:
<pre>
&lt;textarea rows=%rows|3% cols="%cols|50%" value="%tval|Rubbish%">
</pre>
and the %COMMENT tag is:
<pre>
%<nop>COMMENT{type="example" cols="75"}%
</pre>
then the template will be expanded as
<pre>
&lt;textarea rows="3" cols="75" value="Rubbish">
</pre>
---++++ Special variables
As well as support for all the usual TWiki variables in templates, the following special variables are supported in the =PROMPT= definition:
| *Variable* | *Description* |
| =%<nop>DISABLED%= | Set to 'disabled' when you cannot comment (e.g. in preview mode). |
| =%<nop>MESSAGE%= | The text specified by =default=. This may be overridden by a helpful message when the prompt is DISABLED. |
*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:
| *CGI parameter* | *Description* |
| =comment_action= | Must be =save= to get the CommentPlugin to perform |
| =comment_type= | Type of the OUTPUT template |
| =comment_index= | Zero-based index of the %COMMENT in the source topic. Used to place a post relative to an existing %COMMENT. |
| =comment_anchor= | Anchor taken from the =target= spec |
| =comment_location= | As passed to %COMMENT |
| =comment_nonotify= | As passed to %COMMENT |
| =comment_remove= | Zero-based index of a %COMMENT to remove from the target topic |
| =comment_nopost= | As passed to %COMMENT |
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:
<verbatim>
<form method="post" action="%SCRIPTURL{save}%/%WEB%/%TOPIC%">
<input type="submit" value="I Approve" />
<input type="hidden" name="comment_action" value="save" />
<input type="hidden" name="comment_type" value="bottom" />
<input type="hidden" name="comment" value="I Approve" />
</form>
</verbatim>
---+++ The =OUTPUT= template
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.
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:
| =%<nop>POS:TOP%= | If present, comments will be inserted *at the top of the topic* i.e. before any other text |
| =%<nop>POS:BOTTOM%= | If present, comments will be inserted *at the end of the topic* i.e. after all existing text |
| =%<nop>POS:BEFORE%= | If present, comments will be inserted <b>immediately before the =%<nop>COMMENT%= tag</b> |
| =%<nop>POS:AFTER%= | If present, comments will be inserted <b>immediately after the =%<nop>COMMENT%= tag</b> |
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=
All the usual TWikiVariables that can be used in a topic template can also be used in an =OUTPUT= template. See %TWIKIWEB%.TWikiVariables for details.
---++ Settings
<!-- required for compatibility
* Set SHORTDESCRIPTION = Allows users to quickly post comments to a page without an edit/preview/save cycle.
* Name of file in the 'templates' directory that contains the comment templates. The default 'comments.tmpl' automatically includes user templates from %TWIKIWEB%.CommentPluginTemplate
* Set TEMPLATES = comments
* Default template type (if not present, defaults to "below")
* Set DEFAULT_TYPE = above
-->
Two TWiki Preference variables are recognised by the CommentPlugin:
| *Preference* | *Default* | *Description* |
| =%<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 %TWIKIWEB%.CommentPluginTemplate, which in turn includes %TWIKIWEB%.UserCommentsTemplate. |
| =%<nop>COMMENTPLUGIN_DEFAULT_TYPE%= | =above= | Default template type |
These can be set in !TWikiPreferences, in !WebPreferences or in individual topics.
---++ Plugin Installation Instructions
* This plugin is pre-installed in most TWiki releases. However if you need to upgrade the plugin for any reason:
* Download the archive file from the Plugin web (see below)
* Unpack the archive in your twiki installation directory.
* You may need to correct file permissions
* Run ==%TOPIC%_installer== to automatically check and install other modules that this module depends on, and enable the plugin.
* Alternatively,
* Manually resolve the dependencies listed below.
None
* Use =configure= to enable the plugin
---++ Plugin Info
| Plugin Author: | TWiki:Main.DavidWeller, TWiki:Main.PeterMasiar, TWiki:Main.CrawfordCurrie http://www.c-dot.co.uk |
| Change History: | |
| 11358 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item2802'>Item2802</a> 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 |
| 11118 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item2322'>Item2322</a> removed span tag around oneliner bullet output |
| 8788 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1465'>Item1465</a> Item1577: reverted 8433 to fix inclusion of correct user templates |
| 8787 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1573'>Item1573</a> renamed standard templates topic to avoid naming clash on Windows, where filenames are case-insensitive |
| 8433 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1465'>Item1465</a> Fix 'TWiki.' to '%TWIKIWEB%.'; also fixed include 'UserComments' to 'UserCommentsTemplate' (at least that is what the doc suggests) |
| 7427 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item845'>Item845</a> removed duplicate date in default comments; stick with server time |
| 7251 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item810'>Item810</a> fix for user template inclusion; reorganised templates to make customisation easier |
| 5906 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item143'>Item143</a> apache warning from comment plugin when !CommentsTmpl.txt not found |
| 5519 | !CommentPluginOnAnchorsBroken: incorporated !JacobEisinger's fix |
| 5518 | !CommentPluginOnAnchorsBroken: incorporated !OlivierBerger's fix |
| 5455 | On Niels Kodslo's prompting, removed the global recursion prevention that I believe is no longer needed. |
| 5280 | Removed templates, and some minor fixes |
| 5250 | Removed newlines from prompt box |
| 4902 | Changed to use viewauth. Moved templates into user topics. |
| 4901 | Added templates in user webs support |
| 4897 | Fixes for disabling during preview; re-enabled old legacy parameters |
| 4889 | Chopped down from !PeterMasiar version, removing several parameters, savecomment script, changing way templates are done. Major rewrite, atcherly. |
| 4882 | Update from !PeterMasiar's 2.0 version, plus documentation and small code improvements. |
| 4745 | 06 Mar 2002 initial commit |
| Perl Version: | >= 5.6.1 |
| Plugin Home: | TWiki:Plugins/%TOPIC% |
| Feedback: | TWiki:Plugins/%TOPIC%Dev |
__Related Topics:__ %TWIKIWEB%.TWikiPreferences, %TWIKIWEB%.TWikiPlugins
-- TWiki:Main/CrawfordCurrie - 05:07:17 16 January 2007
@
1.5
log
@buildrelease
@
text
@d1 1
a1 1
%META:TOPICINFO{author="TWikiContributor" date="1111929255" format="1.0" version="5"}%
a13 1
This plugin allows users to quickly post comments to a page without an edit/preview/save cycle.
d15 3
a17 1
*WARNING: TWiki-4 only. If you want to use this plugin with an earlier version of TWiki, please see [[http://twiki.org/cgi-bin/view/Plugins/%TOPIC%?rev=1.57][here]]*
d20 2
a21 1
---+ Features
d29 1
a29 1
---+ Syntax Rules
d31 1
a31 1
Write the command =%<nop>COMMENT{= _attributes_ =}%= anywhere in a TWiki topic. %<nop>COMMENT% is also legal.
d34 1
a34 1
The following attributes are [[#MoreAttrs][recognised]]
d37 1
d42 4
a45 1
| =noform= | Set to "on" to disable the automatic form that encloses your comment block - _remember_ to insert =&lt;FORM&gt;= tags yourself! |
d47 1
a47 1
---++ Positioning the comment
d50 1
a50 1
---+++ Location relative to <code>%COMMENT</code> tag
d57 1
a57 1
---+++ Location relative to a TWiki anchor
d64 1
a64 1
---+++ Location relative to an arbitrary text string
d77 1
a77 1
---++ Default templates
d93 1
a93 1
---+ Customisation
d95 1
a95 1
* familiarity with HTML forms,
d100 10
a109 5
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. By default, this template includes the topic %TWIKIWEB%.CommentPluginTemplate, which contains all the shipped standard templates and in turn includes %TWIKIWEB%.<nop>UserCommentsTemplate. This allows for several levels of customisation:
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).
1 To add site-wide local template customisations, add them to %TWIKIWEB%.<nop>UserCommentsTemplate. You can redefine the standard templates here if you want, and your definitions will override the standard definitions.
1 To override templates on a web-by-web basis, add a topic !UserCommentsTemplate to the web (this will replace %TWIKIWEB%.<nop>UserCommentsTemplate)
1 To override templates for a specific skin, add them to %TWIKIWEB%.<nop>UserComments&lt;Skin&gt;Template (where &lt;Skin&gt; is the name of the skin with the first letter capitalised, e.g. Pattern)
d113 16
a128 1
---++ The =PROMPT= template
d131 1
a131 1
Only the input fields of the form need be defined. The plugin automatically generates the <code>&gt;form&lt;</code> and <code>&gt:/form&lt;</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!
d134 1
d148 1
a150 1
| =%<nop>MESSAGE%= | A helpful generated message, either a lock message or a reminder to refresh. |
d152 1
d154 22
a175 2
---++ The =OUTPUT= template
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.
d187 2
a188 2
---+ Settings
* Description:
d190 1
a190 1
* Name of file in the 'templates' directory that contains the comment templates. The default 'comments.tmpl' automatically includes user templates from %TWIKIWEB%.CommentsTmpl
d192 10
a201 4
* default template type (if not present, defaults to "below")
* Set DEFAULT_TYPE = below
---+ Plugin Installation Instructions
d203 10
a212 7
* Download the archive file from the Plugin web (see below)
* Unpack the archive in your twiki installation directory.
* You may need to correct file permissions.
* Run ==%TOPIC%_installer== to automatically check and install other modules that this module depends on. You can also do this step manually. Dependencies:
None
* Visit =configure= in your TWiki installation, and enable the plugin in the {Plugins} section.
---+ Plugin Info
d215 19
a233 18
| 11118 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item2322'>Item2322</a> removed span tag around oneliner bullet output |
| 8788 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1465'>Item1465</a> Item1577: reverted 8433 to fix inclusion of correct user templates |
| 8787 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1573'>Item1573</a> renamed standard templates topic to avoid naming clash on Windows, where filenames are case-insensitive |
| 8433 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item1465'>Item1465</a> Fix 'TWiki.' to '%TWIKIEB%.'; also fixed include 'UserComments' to 'UserCommentsTemplate' (at least that is what the doc suggests) |
| 7427 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item845'>Item845</a> removed duplicate date in default comments; stick with server time |
| 7251 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item810'>Item810</a> fix for user template inclusion; reorganised templates to make customisation easier |
| 5906 | <a rel='nofollow' href='http://develop.twiki.org/~develop/cgi-bin/view/Bugs/Item143'>Item143</a> apache warning from comment plugin when CommentsTmpl.txt not foudn |
| 5519 | CommentPluginOnAnchorsBroken: incorporated JacobEisinger's fix |
| 5518 | CommentPluginOnAnchorsBroken: incorporated OlivierBerger's fix |
| 5455 | On Niels Kodslo's prompting, removed the global recursion prevention that I believe is no longer needed. |
| 5280 | Removed templates, and some minor fixes |
| 5250 | Removed newlines from prompt box |
| 4902 | Changed to use viewauth. Moved templates into user topics. |
| 4901 | Added templates in user webs support |
| 4897 | Fixes for disabling during preview; re-enabled old legacy parameters |
| 4889 | Chopped down from PeterMasiar version, removing several parameters, savecomment script, changing way templates are done. Major rewrite, atcherly. |
| 4882 | Update from PeterMasiar's 2.0 version, plus documentation and small code improvements. |
| 4745 | 06Mar 2002 initial commit |
d240 1
a240 1
-- TWiki:Main/CrawfordCurrie - 02:16:06 25 October 2006
@
1.4
log
@buildrelease
@
text
@d1 1
a1 1
%META:TOPICINFO{author="TWikiContributor" date="1111929255" format="1.0" version="4"}%
d158 1
d182 1
a182 1
-- TWiki:Main/CrawfordCurrie - 02:19:11 26 June 2006
@
1.3
log
@buildrelease
@
text
@d1 1
a1 1
%META:TOPICINFO{author="TWikiContributor" date="1111929255" format="1.0" version="3"}%
d181 1
a181 1
-- TWiki:Main/CrawfordCurrie - 21:44:41 31 March 2006
@
1.2
log
@buildrelease
@
text
@d1 1
a1 1
%META:TOPICINFO{author="TWikiContributor" date="1111929255" format="1.0" version="2"}%
d5 9
d16 1
a16 3
_( Discussion in TWiki:Plugins/CommentPluginDev )_
__Note: this version of the CommentPlugin will _not_ work with TWiki versions released prior to June 2005__
d94 5
a98 5
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. By default, this template includes the topic %TWIKIWEB%.CommentsTemplate, which contains all the shipped standard templates and in turn includes %TWIKIWEB%.<nop>UserCommentsTemplate. This allows for several levels of customisation:
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).
1 To add site-wide local template customisations, add them to %TWIKIWEB%.<nop>UserCommentsTemplate. You can redefine the standard templates here if you want, and your definitions will override the standard definitions.
1 To override templates on a web-by-web basis, add a topic !UserCommentsTemplate to the web (this will replace %TWIKIWEB%.<nop>UserCommentsTemplate)
1 To override templates for a specific skin, add them to %TWIKIWEB%.<nop>UserComments&lt;Skin&gt;Template (where &lt;Skin&gt; is the name of the skin with the first letter capitalised, e.g. Pattern)
d149 4
a152 4
* Download the archive file from the Plugin web (see below)
* Unpack the archive in your twiki installation directory.
* You may need to correct file permissions.
* Run ==%TOPIC%_installer== to automatically check and install other modules that this module depends on. You can also do this step manually. Dependencies:
d154 1
a154 1
* Visit =configure= in your TWiki installation, and enable the plugin in the {Plugins} section.
d157 18
a174 2
| Change History: | Please refer to the TWiki Subversion repository for a complete change history of this plugin. |
| Dependencies: | None |
d181 1
a181 1
-- TWiki:Main/CrawfordCurrie - 23:00:07 01 February 2006
@
1.1
log
@none
@
text
@d1 2
a2 1
%META:TOPICINFO{author="PeterThoeny" date="1091934049" format="1.0" version="1.1"}%
d9 2
d27 1
a27 1
| =type= | (Required) This is the name of the template to use for this comment. Comment templates are defined in a TWiki template - see [[#TemPlates][Customisation]], below. If this attribute is not defined, the type is whatever is defined by COMMENTPLUGIN_DEFAULT_TYPE, either in this topic or in your WebPreferences. By default this is 'below'. |
d32 1
d60 2
d65 2
d69 7
a75 6
| =top= | Comments, signed and dated, added at top of the topic (the anchor is ignored) |
| =bottom= | Comments, signed and dated, added at end of the target topic (the anchor is ignored) |
| =above= | Comments, signed and dated, added immediately before the target anchor, or the =%COMMENT= if no anchor is specified |
| =below= | Comments, signed and dated, added immediately below the target anchor, or the =%COMMENT= if no anchor is specified |
| =tableprepend= | Comments, signed and dated, formatted as an HTML table row, added below the anchor (which must be in an HTML &lt;table>) |
| =tableappend= | Comments, signed and dated, formatted as an HTML table row, added above the anchor (which must be in an HTML &lt;table>) |
d85 7
a91 1
The plugin picks up its templates from a standard TWiki template file, named "comments". This allows different templates to be defined for different TWiki skins. This template file may include other template files, or may include a topic from a user web (this is an extension to the normal handling of =%TMPL:INCLUDE= described in the documentation). The shipped plugin defines default templates in =comments.tmpl= and then includes the topic TWiki.CommentsTmpl. If you want to define your own templates, add them to TWiki.UserTemplates. Note that you can use =%TMPL:INCLUDE= in this file to include other files of templates. Note also that if you want to override any of the default templates shipped with the plugin, you can simply do so by defining them in TWiki.UserTemplates, and they will replace the installed versions.
d93 1
a93 1
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.
d98 1
a98 1
Only the input fields of the form need be defined. The plugin automatically generates the <code>&gt;form&lt;</code> and <code>&gt:/form&lt;</code> tags. *Note* that you must define a "submit" button if you want the form to work!
d107 1
a107 1
%<nop>COMMENT{type="example" rows="5" cols="20"}%
d111 1
a111 1
&lt;textarea rows=5 cols="20" value="Rubbish">
d117 1
a117 1
| =%<nop>DISABLED%= | Set to 'disabled' when you cannot comment (see [[#HandlingPageLock][Important Note regarding Locks]], below). |
d130 1
a130 10
#HandlingPageLock
---+ Important Note regarding Locks
The plugin checks if the page is locked for edit. When a locked page is displayed in 'view' mode, comment input is automatically disabled.
Note that if the page was read long time ago, it's possible that page was locked by another user *after* it was read, and the lock is still outstanding. In this case, comments cannot be saved, and you will be redirected to a "topic is locked" page. You then have two options:
* *Cancel* - throw away your comment and return to viewing the page.
* *Back* - *WARNING* some browsers might requery the page and *lose* your comments - so test how your browser behaves before using the Back button.
To help avoid edit conflict, a reminder to refresh the page before entering comments is the default text for a =%COMMENT=. When the target page is known to be locked, the =PROMPT= form is automatically disabled.
d135 1
a135 1
* templates; includes user templates from TWiki.CommentsTmpl
d138 1
a138 1
* Set DEFAULT_TYPE = above
d141 7
a147 19
* Make sure you have the TWiki:Plugins/SharedCode module installed. Among other things, TWiki:Plugins/SharedCode includes a compatibility module that enables plugins to use new TWiki features with earlier TWiki releases. If you don't already have it, install it now.
* Download the ZIP file from the Plugin web (see below)
* Unzip ==%TOPIC%.zip== in your twiki installation directory. Content:
| *File:* | *Description:* |
| ==data/TWiki/CommentPlugin.txt== | Plugin doc page (this page) |
| ==data/TWiki/CommentsTmpl.txt== | Example user templates |
| ==templates/comments.tmpl== | Master comment templates |
| ==lib/TWiki/Plugins/CommentPlugin.pm== | Plugin Perl module |
| ==lib/TWiki/Plugins/CommentPlugin/Comment.pm== | Plugin Perl module |
| ==lib/TWiki/Plugins/CommentPlugin/Templates.pm== | Plugin Perl module |
| ==lib/TWiki/Plugins/CommentPlugin/test.zip== | Tests |
| ==lib/TWiki/Plugins/CommentPlugin/build.pl== | Build file |
* The Plugin depends on the =viewauth= script to authenticate the user. As described in %TWIKIWEB%.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.
If installed correctly, you should see a =%COMMENT= edit box below here.
%COMMENT{type="top" target="Sandbox.Comments"}%
d149 4
a152 16
| Plugin Author: | v1.0 TWiki:Main/DavidWeller v2.0 TWiki:Main/PeterMasiar v3.0 TWiki:Main/CrawfordCurrie |
| Plugin Version: | 3.0 |
| Change History: | <!-- Most recent first --> 3.003 11 Apr 2004: Minor line termination problem fixed, and "security" hyphen on standard comment removed and replaced with a bulleted list. |
| | 3.002 6 April 2004: Applied patches (thanks Peter Thoeny) for multiple comment adding, BOTTOM and TOP inside meta-data, and moved example to Sandbox. |
| | 3.001 13 March 2004: Modified to use viewauth save technique (safer), add nonotify parameter, move templates fully into topics, with a hook for site-specifics, support %<nop>COMMENT%, internationalisation fixes |
| | 3.000 18 Feb 2004: TWiki:Main/CrawfordCurrie rewrote for standard templates and other user requests. Recognition to Patrice Fournier and Sam Abrams for terrific testing and patch support. |
| | 7 Feb 2004: TWiki:Main/CrawfordCurrie rewrote this page and CommentTemplates in an effort to make the plugin more user friendly. Added {TIME} variable. Also updated CVS. |
| | 23 Sep 2003 TWiki:Main/PeterMasiar: 80% rewrite/refactor, adding templates |
| | 15 July 2003: TWiki:Main/PeterMasiar added "reminder" parameter and feature to pass comments to oopslockedcomments.tmpl template to copy-paste later |
| | 5 March 2002 Bug fixes, TWiki:Main/JonLambert created oopslockedcomments.tmpl template |
| | 24 Feb 2002 added a few more user requests, made "English" text configurable |
| | 4 Dec 2001: 1.01 release, changed name to CommentPlugin, added $button var, changed textarea WRAP setting to "soft" |
| | 30 Nov 2001: Initial version |
| Dependencies: | |
| Perl Version: | 5.0 |
d158 1
a158 4
-- TWiki:Main/DavidWeller - 05 Mar 2002 <br>
-- TWiki:Main/PeterMasiar - 15 Jul 2003, 23 Sep 2003<br>
-- TWiki:Main/CrawfordCurrie - 21 May 2004
@