warning This is an experimental version of CommentPlugin.

support How to configure your Foswiki to install from this repository

In lib/LocalSite.cfg, add this web's URL to {ExtensionsRepositories}:
Foswiki.org=(http://foswiki.org/Extensions/,http://foswiki.org/pub/Extensions/);Local=(http://www.foswiki.org/Extensions/Testing/,http://www.foswiki.org/pub/Extensions/Testing/)

Read more about configuring Extension repositories

Documentation

Comment Plugin

Comment Plugin lets users quickly post comments to a page without an edit/preview/save cycle.

Related topics: CommentPluginTemplates? , %SANDBOXWEB%.CommentPluginExamples

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.

Supports the definition of custom templates for prompts and for formatting what is placed into topics.

Supports custom access controls, allowing you to use it to add content to topics where the commenting user doesn't have CHANGE permissions.

Syntax

Write %COMMENT{attributes}% anywhere in a topic.

  • A %COMMENT% without parameters shows a simple text box.
  • The following standard attributes are recognized
    Name Description Default
    type This is the name of the template to use for this comment. Comment templates are defined in a Foswiki template - see 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. below
    default Default text to put into the textarea of the prompt.  
    target Name of the topic to add the comment to the current topic
    location Regular expression specifying the comment location in the target topic. Read carefully the CommentPlugin documentation!  
    mode For compatibility with older versions only, synonymous with type  
    nonotify Set to "on" to disable change notification for target topics off
    noform Set to "on" to disable the automatic form that encloses your comment block - remember to insert <form> tags yourself! See CommentPluginExamples:noform for an example. off
    nopost Set to "on" to disable insertion of the posted text into the topic. off
    remove Set to "on" to remove the comment prompt after the first time it is clicked. off
    button Button label text Add comment

(See also additional attributes)

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 %COMMENT tag

The default location is the %COMMENT tag itself. For example:
%COMMENT{type="below"}%
will add comments in the current topic, directly below the %COMMENT tag.

Location relative to an anchor

The target attribute may specify a web, and may also specify an anchor within the target topic; for example,
%COMMENT{type="above" target="%MAINWEB%.PersonalRemarks#InsertHere"}%
This uses a standard in-topic anchor as the insertion location. See TextFormattingRules for more about Foswiki 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,
%COMMENT{type="above" location="Flights of Fancy"}%
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.
Also note that you cannot have the text location=" just before the location.

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 - see also CommentPluginTemplates? :
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
belowthreadmode Comments, signed and dated, added recurse after comment box
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 <table>)
tableappend Comments, signed and dated (server time), formatted as an HTML table row, added above the anchor (which must be in an HTML <table>)
action Action added to action table directly above comment box (see Plugin Installation Instructions below for important notes)
table Tablerows adding on end
toctalk Talk using TOC adding on end
bookmark Create a list of annotated bookmarks
return Post to a different topic and return

Your local installation may add more template types as well - see Customisation, below.

Customisation

Customisation of the comment plugin requires
  • familiarity with HTML forms
  • some familiarity with the Skin Templates.

To define a comment type, you have to provide at least 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 template file, templates/comments.tmpl. This allows different templates to be defined for different Foswiki skins.

Defining custom templates

By default, templates/comments.tmpl includes the topic CommentPluginTemplate, which contains all the shipped standard templates and in turn includes System.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).
  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.
  3. To override templates on a web-by-web basis, add a topic UserCommentsTemplate to the web (this will replace System.UserCommentsTemplate)
  4. To override templates for a specific skin, add them to System.UserComments<Skin>Template (where <Skin> is the name of the skin with the first letter capitalised, e.g. Pattern)

You can also define a comment template in a topic, by passing the topic location with templatetopic. For example:
%COMMENT{
   type="blogpost"
   templatetopic="BlogPostCommentTemplate"
   target="%TOPIC%"
   button="Add comment"
}%

templatetopic accepts topic or web.topic syntax. See an example in CommentPluginExamples:templatetopic? .

ALERT! Templates are picked up by following the standard 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:

%TMPL:DEF{PROMPT:myComment}%%TMPL:P{promptbox}%%TMPL:END%
%TMPL:DEF{OUTPUT:myComment}%%TMPL:P{outputoneliner}%%POS:TOP%
%TMPL:END%

Call your custom comment with:

%COMMENT{type="myComment"}%

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 %URLPARAM%s.

The FORM template

The FORM template can optionally be provided if you want to explicitly define the form (the <form> and </form> tHTML ags) that wraps around the PROMPT template. If you don't define a FORM=template, one is automatically generated for you (unless the =noform="on" parameter is given).

Providing attribute values

If an attribute is given to the %COMMENT tag that is not one of the 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 %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:
<textarea rows="%rows|3%" cols="%cols|50%" value="%tval|Rubbish%">
and the %COMMENT tag is:
%COMMENT{type="example" cols="75"}%
then the template will be expanded as
<textarea rows="3" cols="75" value="Rubbish">

Special macros

As well as support for all the usual macros in templates, the following special macros are supported in the PROMPT definition:
Macro Description
%DISABLED% Set to 'disabled' when you cannot comment (e.g. in preview mode).
%MESSAGE% The text specified by default. This may be overridden by a helpful message when the prompt is DISABLED.

Within a FORM definition, the body of the prompt is expanded to replace the %COMMENTPROMPT% macro.

EXPERT Note that when a comment is saved, the rest 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
comment_templatetopic As passed to %COMMENT
comment_target Alternate save topic 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:
<form method="post" action="%SCRIPTURL{restauth}%/CommentPlugin/comment" >
<input type="submit" value="I Approve" />
<input type="hidden" name="topic" value="%WEB%/%TOPIC%" />
<input type="hidden" name="endPoint" value="%WEB%/%TOPIC%" />
<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>

Customisation example with custom form template

ALERT! This method has critical differences from the version shipped with Foswiki 1.1.4! (Identified by ALERT!)
Write a custom form in a topic.
  • ALERT! In the form, the action must be %SCRIPTURL{"rest"}%/CommentPlugin/comment. The save script used in previous versions will not work.
  • ALERT! In the form, the topic must be set to a valid, existing Web.Topic. topic is validated by the rest script which will reject the request if invalid.
  • ALERT! In the form, if the target topic will be provided by user input, use the comment_target input field to identify the target, otherwise it defaults to topic setting. comment_target is more flexible and can omit the Web part.
  • In the form set the location of the prompt with %COMMENTPROMPT%; the prompt will be positioned here.
  • In %COMMENT use parameter noform="on"
  • In %COMMENT use parameter templatetopic to point to the topic with the form template

Example form:
%TMPL:DEF{FORM:example}%
<form method="post" action="%SCRIPTURL{rest}%/CommentPlugin/comment" enctype="application/x-www-form-urlencoded" name="examplecomment" id="examplecomment">
<input type="hidden" name="topic"  value="%BASEWEB%/%BASETOPIC%" /> 
<input type="hidden" name="redirectto" value="%BASEWEB%.%BASETOPIC%" />
%COMMENTPROMPT%
</form>
%TMPL:END%

Example comment:
%COMMENT{
   type="example"
   templatetopic="%SANDBOXWEB%.CommentPluginTemplateExample"
   target="%TOPIC%"
   button="Add comment"
}%

The OUTPUT template

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.

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:

%POS:TOP% If present, comments will be inserted at the top of the topic i.e. before any other text
%POS:BOTTOM% If present, comments will be inserted at the end of the topic i.e. after all existing text
%POS:BEFORE% If present, comments will be inserted immediately before the %COMMENT% tag
%POS:AFTER% If present, comments will be inserted immediately after the %COMMENT% tag
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

%COMMENTPROMPT% Use with a custom form. If present, the comment prompt will be positioned here.

All the usual macros? that can be used in a topic template can also be used in an OUTPUT template.

Custom access controls

Using configure, the plugin can be configured to use a different access control domain than the default CHANGE. This allows you to use the plugin to add content to topics where the commenting user does not have CHANGE (or even VIEW) access.

Settings

Two preference settings are recognised by the CommentPlugin:
Preference Default Description
%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 CommentPluginTemplate, which in turn includes UserCommentsTemplate.
%COMMENTPLUGIN_DEFAULT_TYPE% above Default template type
These can be set in %USERSWEB%.SitePreferences, in WebPreferences, or in individual topics.

#Installation

Installation Instructions

You do not need to install anything in the browser to use this extension. The following instructions are for the administrator who installs the extension on the server.

Open configure, and open the "Extensions" section. Use "Find More Extensions" to get a list of available extensions. Select "Install".

If you have any problems, or if the extension isn't available in configure, then you can still install manually from the command-line. See http://foswiki.org/Support/ManuallyInstallingExtensions for more help.

Note that if you want to use the action template then you must also:
  1. Install the Foswiki:Extensions/ActionTrackerPlugin;
  2. Put the CommentPlugin before the ActionTrackerPlugin in the {PluginsOrder} configuration option (in configure)

Upgrade Instructions

This plugin has been significantly changed from the 10 April 2011 version shipped with Foswiki 1.1.4.

Info

Another great extension from the WikiRing - working together to improve your wiki experience!

Plugin Author: Foswiki:Main.CrawfordCurrie http://www.c-dot.co.uk inspired by the work of TWiki:Main.DavidWeller and TWiki:Main.PeterMasiar
Copyright: © 2004, Foswiki:Main.CrawfordCurrie
© 2004-2010 Foswiki:System.ProjectContributor
License: GPL (GNU General Public License)
Release: 2.0.3
Version: 13766 (2012-01-20)
Change History:  
10 Apr 2011 Foswikitask:Item10263: remove wrap="soft" to make templates validate. This version is shipped with Foswiki 1.1.3
19 Nov 2010 Foswikitask:Item10050 - CommentPlugin prompt must not add newlines that prevent COMMENT inside TML tables
21 Oct 2010 Foswikitask:Item3499 - support COMMENT (and other) ACL preferences. Foswikitask:Item9592: added AJAX example.
21 Oct 2010 Foswikitask:Item9857 - Restored the CommentPluginTemplate to how it was before. All the changes done to make it look nice causes many errors. Never again add newlines, never again add trailing \ on existing templates. It does not always work.
31 Jul 2010 Foswikitask:Item9415 - Documentation updates
27 May 2010 Moved example topic CommentPluginExamples to Sandbox web.
24 Feb 2010 Foswikitask:Item8611 - block comments resulting from calls to saveTopic from within an afterSaveHandler
12 Sep 2009 Foswikitask:Item8269 - Targeting anchors broken by Item727 is fixed.
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
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.
15 Jan 2008 Foswikitask:Item727 - data loss issue when missing anchor or location
13 Jan 2009 Foswikitask:Item736 - Make CommentPlugin aware of CompareRevisionsAddOn? bin script.
16 Dec 2008 Foswiki version
06 Mar 2002 initial commit
Home: http://foswiki.org/Extensions/CommentPlugin
Support: http://foswiki.org/Support/CommentPlugin

Support

Question Status Last modified
How to make a custom defined template visible only to logged in users Asked 14 Sep 2011 - 05:34
Installing Comment Plugin Answered 10 Dec 2010 - 10:48
Using pop-up calendar for Due Date Asked 29 Aug 2010 - 10:47
Using Comment form "action" and TwistyPlugin Asked 29 Aug 2010 - 10:07
CommentPluginHolidayList Answered 21 Jul 2010 - 09:47
How can I use select values already in a topic when defining a custom skin for CommentPlugin? Answered 01 Jul 2009 - 20:06
CommentPlugin doesn't properly index comments Closed unanswered 07 Feb 2009 - 21:24
Anonymous comments possible without logging into foswiki? Answered 07 Feb 2009 - 21:24

Ask a new question

Can't find your problem here, or would you like to post a request? Ask a question on CommentPlugin.

Bug Tracker

Active Items

Id Summary Priority Current State Creation Date Last Edit
Item2310 RevComment doesn´t work with NatEdit and PatternSkin Normal New 30 Oct 2009 - 13:26 30 Oct 2009 - 13:26
Item11068 RevComment? vs Comment Normal New 25 Aug 2011 - 13:17 25 Aug 2011 - 13:17
Item11249 View of rev comments missing Enhancement New 10 Nov 2011 - 23:09 11 Nov 2011 - 01:33
Item11270 Conflict with CommentPlugin Normal Waiting for Feedback 21 Nov 2011 - 01:55 10 Jan 2012 - 14:13
Item5897 If COMMENT specifies target and target is missing, content disappears Normal Confirmed 07 Aug 2008 - 22:31 15 Jan 2012 - 06:02
Item11443 CommentPlugin throws an oops that asserts with a taint error Normal Being Worked On 15 Jan 2012 - 05:56 16 Jan 2012 - 02:33
Item10191 Comment plugin issue Normal Waiting for Feedback 26 Dec 2010 - 04:21 16 Jan 2012 - 05:19
Item11447 CommentPlugin "noform" style examples don't work with new plugin Normal Being Worked On 16 Jan 2012 - 04:45 30 Jan 2012 - 08:13
Item11448 {GuestCanComment} setting is not implemented Normal Being Worked On 16 Jan 2012 - 16:26 22 Feb 2012 - 03:45

Discussion

CommentPlugin Development

This is the topic to discuss development of download CommentPlugin

help If you need support, go to Support.CommentPlugin where you can ask questions and find answers to previously asked questions. warning If you want to report a bug, or a feature request, go to Tasks.CommentPlugin where you can see already submitted issues and where you can submit a new bug report or feature request.

Active Items

Id Summary Priority Current State Creation Date Last Edit
Item2310 RevComment doesn´t work with NatEdit and PatternSkin Normal New 30 Oct 2009 - 13:26 30 Oct 2009 - 13:26
Item11068 RevComment? vs Comment Normal New 25 Aug 2011 - 13:17 25 Aug 2011 - 13:17
Item11249 View of rev comments missing Enhancement New 10 Nov 2011 - 23:09 11 Nov 2011 - 01:33
Item11270 Conflict with CommentPlugin Normal Waiting for Feedback 21 Nov 2011 - 01:55 10 Jan 2012 - 14:13
Item5897 If COMMENT specifies target and target is missing, content disappears Normal Confirmed 07 Aug 2008 - 22:31 15 Jan 2012 - 06:02
Item11443 CommentPlugin throws an oops that asserts with a taint error Normal Being Worked On 15 Jan 2012 - 05:56 16 Jan 2012 - 02:33
Item10191 Comment plugin issue Normal Waiting for Feedback 26 Dec 2010 - 04:21 16 Jan 2012 - 05:19
Item11447 CommentPlugin "noform" style examples don't work with new plugin Normal Being Worked On 16 Jan 2012 - 04:45 30 Jan 2012 - 08:13
Item11448 {GuestCanComment} setting is not implemented Normal Being Worked On 16 Jan 2012 - 16:26 22 Feb 2012 - 03:45

Discussion

To discuss development of this extensions please go to Development.CommentPlugin.

Download

Topic attachments
I Attachment Action Size Date Who Comment
CommentPlugin.md5md5 CommentPlugin.md5 manage 0.2 K 20 Jan 2012 - 17:32 GeorgeClark  
CommentPlugin.sha1sha1 CommentPlugin.sha1 manage 0.2 K 20 Jan 2012 - 17:32 GeorgeClark  
CommentPlugin.tgztgz CommentPlugin.tgz manage 22.4 K 20 Jan 2012 - 17:31 GeorgeClark  
CommentPlugin.zipzip CommentPlugin.zip manage 31.8 K 20 Jan 2012 - 17:31 GeorgeClark  
CommentPlugin_installerEXT CommentPlugin_installer manage 5.1 K 20 Jan 2012 - 17:32 GeorgeClark  

Topic revision: r3 - 20 Jan 2012 - 17:32:26 - GeorgeClark
 
The copyright of the content on this website is held by the contributing authors, except where stated elsewhere. see CopyrightStatement. Creative Commons LicenseGet Foswiki at sourceforge.net. Fast, secure and Free Open Source software downloads