![]() |
![]() |
![]() |
|||||||||
|
Comment PluginRelated topics: CommentPluginTemplates, CommentPluginExamples
FeaturesInserts an edit box into the page that allows users to type in and save comments. Comments can be made
Syntax
Write
(See also additional attributes)
Positioning the comment
Location relative to
|
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 Customization, below.
Customization of the comment plugin requires
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.
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 customizations.
This allows for several levels of customization:
comments.tmpl
to include a different topic (this customization will be lost next time you upgrade, though).
UserCommentsTemplate
to the web (this will replace TWiki.UserCommentsTemplate)
You can also define a comment template in a topic, by passing the topic location with a templatetopic
parameter. 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.
If you use any topic other than UserCommentTemplate, it is critically important that you include this line at the end of your comment template topic:
%TMPL:INCLUDE{"%SYSTEMWEB%.CommentPlugin"}%Without this line your templates will not be picked up.
Templates are picked up by following the standard TWiki rules for locating template files. Note that you can use
%TMPL:INCLUDE%
to include other files of templates.
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.
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"}%
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.
Note that you must define a "submit" button if you want the form to work!
Only the input fields of the form need be defined. The plugin automatically generates the <form>
and </form>
tags, with these two exceptions:
noform="on"
parameter. In this case, the PROMPT
template has to specify the form tags and some additional hidden input fields. See CommentPluginExamples#noform example.
PROMPT
template contains %COMMENTFORMSTART%
and %COMMENTFORMEND%
, which gives control over where to add the form tags and the hidden input fields: %COMMENTFORMSTART%
- HTML form start tag
%COMMENTFORMEND%
- hidden input fields and HTML form end tag
The latter feature can be used to define a PROMPT
template that contains more than one form, such as a comment plugin prompt form, and a second form with a "notify authors" button (see TWiki:Plugins.NotifyAuthorsPlugin).
Example PROMPT
template with two forms:
%TMPL:DEF{PROMPT:two_form_demo}% %COMMENTFORMSTART% <!-- form start tag --> <textarea %DISABLED% rows="%rows|5%" cols="%cols|80%" name="comment"></textarea> <input %DISABLED% type="submit" value="%button|Add comment%" class="twikiButton" /> %COMMENTFORMEND% <!-- hidden input fields and form end tag --> %NOTIFYAUTHORS% <!-- second form with notify authors button --> %TMPL:END%
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">
As well as support for all the usual TWiki variables in templates, the following special variables are supported in the PROMPT
definition:
Variable | 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. |
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 |
comment_templatetopic |
As passed to %COMMENT |
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{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>
Write a custom form in a topic.
%COMMENTPROMPT%
; the prompt will be positioned here.
noform="on"
templatetopic
to point to the topic with the form template
Example form:
%TMPL:DEF{FORM:example}% <form method="post" action="%SCRIPTURL{save}%/%BASEWEB%/%BASETOPIC%" enctype="application/x-www-form-urlencoded" name="examplecomment" id="examplecomment"> <input type="hidden" name="redirectto" value="%BASEWEB%.%BASETOPIC%" /> %COMMENTPROMPT% </form> %TMPL:END%
Example comment:
%COMMENT{noform="on" type="example" templatetopic="Sandbox.CommentPluginTemplateExample" target="%TOPIC%" button="Add comment" }%
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:
%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 COMMENTPLUGIN_DEFAULT_TYPE
%COMMENTPROMPT% |
Use with a custom form. If present, the comment prompt will be positioned here. |
All the usual TWikiVariables that can be used in a topic template can also be used in an OUTPUT
template. See TWikiVariables for details.
Plugin settings are stored as preferences settings. Do not change the settings here, they are here only for illustration purposes showing the default values. Define the settings in Main.TWikiPreferences, in a WebPreferences or in individual topics. For example, to customize the COMMENTPLUGIN_DEFAULT_TYPE
setting, add a * Set COMMENTPLUGIN_DEFAULT_TYPE = ...
bullet in Main.TWikiPreferences.
twiki/templates
directory that contains the comment templates. The default 'comments.tmpl' automatically includes user templates from TWiki.CommentPluginTemplate, which in turn includes TWiki.UserCommentsTemplate.
This plugin is pre-installed. TWiki administrators can upgrade the plugin as needed on the TWiki server.
CommentPlugin.zip
in your twiki installation directory.
Note that if you want to use the action
template then you must also:
{PluginsOrder}
configuration option (in configure
)
Plugin Author: | TWiki:Main.CrawfordCurrie![]() ![]() ![]() ![]() |
Copyright: | © 2004, TWiki:Main.CrawfordCurrie![]() © 2009 TWiki:Main.SopanShewale ![]() © 2004-2018 TWiki:Main.PeterThoeny ![]() © 2004-2018 TWiki:TWiki.TWikiContributor ![]() |
License: | GPL (GNU General Public License![]() |
Plugin Version: | 2018-07-05 |
2018-07-05: | TWikibug:Item7841![]() |
2016-01-08: | TWikibug:Item7708![]() |
2015-01-10: | TWikibug:Item7604![]() |
2013-02-10: | TWikibug:Item7141![]() ![]() |
2013-02-06: | TWikibug:Item7139![]() ![]() |
2013-01-09: | TWikibug:Item7123![]() |
2013-01-04: | TWikibug:Item7115![]() ![]() |
2012-11-16: | TWikibug:Item7039![]() ![]() |
2012-11-12: | TWikibug:Item6967![]() ![]() |
2012-11-11: | TWikibug:Item7020![]() ![]() |
2012-09-26: | TWikibug:Item6945![]() |
2012-09-26: | TWikibug:Item6944![]() |
2011-06-16: | TWikibug:Item6754![]() ![]() |
2011-06-12: | TWikibug:Item6725![]() ![]() |
2011-03-28: | TWikibug:Item6672![]() |
2010-12-11: | TWikibug:Item6530![]() ![]() |
2010-05-16: | TWikibug:Item6433![]() |
2010-03-19 | TWikibug:Item6404![]() ![]() |
2010-02-27 | TWikibug:Item6276![]() ![]() |
2009-01-21 | TWikibug:Item6163![]() ![]() ![]() |
03 Aug 2008 | The TWiki 4.2.1 release version |
11 Apr 2008 | TWikibug:Item5518![]() |
5 Sep 2007 | TWikibug:Item3689![]() location handling TWikibug:Item4181![]() ![]() |
22 Jun 2007 | Removed the long-deprecated %TIME (use %GMTIME instead). Minor doc changes |
14021 | TWikibug:Item3755![]() |
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. |
12822 | TWikibug:Item3598![]() |
12750 | TWikibug:Item3510![]() |
11358 | TWikibug:Item2802![]() nopost and remove . Added default text for the %COMMENT as requested by TWiki:Main.AndyGlew![]() |
11118 | TWikibug:Item2322![]() |
8788 | TWikibug:Item1465![]() |
8787 | TWikibug:Item1573![]() |
8433 | TWikibug:Item1465![]() |
7427 | TWikibug:Item845![]() |
7251 | TWikibug:Item810![]() |
5906 | TWikibug:Item143![]() |
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 |
Related Topics: CommentPluginTemplates, CommentPluginExamples, TWikiPreferences, TWikiPlugins