Resource | Required Server Environment * |
---|---|
Perl | 5.005_03 or higher (5.8.4 or higher is recommended) |
RCS | 5.7 or higher (including GNU diff ) Optional, TWiki includes a pure perl implementation of RCS that can be used instead (though it's slower) |
GNU diff | GNU diff 2.7 or higher is required when not using the all-Perl RcsLite. Install on PATH if not included with RCS (check version with diff -v ) Must be the version used by RCS, to avoid problems with binary attachments - RCS may have hard-coded path to diff |
Other external programs | fgrep, egrep |
Cron/scheduler | • Unix: cron • Windows: cron equivalents |
Web server | Apache is well supported; for other servers, see the TWiki:Codev.CategoryCookbook lists |
Module | Preferred version |
---|---|
Algorithm::Diff | |
CGI::Carp | >=1.26 |
Config | >=0 |
Cwd | >=3.05 |
Data::Dumper | >=2.121 |
Error | |
File::Copy | >=2.06 |
File::Find | >=1.05 |
File::Spec | >=3.05 |
FileHandle | >=2.01 |
IO::File | >=1.10 |
Text::Diff | |
Time::Local | >=1.11 |
Module | Preferred version | Description |
---|---|---|
CGI::Cookie | >=1.24 | Used for session support |
CGI::Session | >=3.95 | Used for session support |
Digest::base | ||
Digest::SHA1 | ||
Jcode | Used for I18N support with perl 5.6 | |
Locale::Maketext::Lexicon | >=0 | Used for I18N support |
Net::SMTP | >=2.29 | Used for sending mail |
Unicode::Map | Used for I18N support with perl 5.6 | |
Unicode::Map8 | Used for I18N support with perl 5.6 | |
Unicode::MapUTF8 | Used for I18N support with perl 5.6 | |
Unicode::String | Used for I18N support with perl 5.6 | |
URI | Used for configure |
perl -e 'use FileHandle; print $FileHandle::VERSION."\n"'
data
and pub
directories and to lib/LocalSite.cfg
. Everything else should be read-only./usr/bin/perl
. If it's somewhere else, change the path to Perl in the first line of each script in the twiki/bin
directory. .cgi
or .pl
). If necessary, rename all files in twiki/bin
(i.e. rename view
to view.pl
etc). If you do this, make sure you set the ScriptSuffix
option in configure
(Step 6)./twiki/bin/LocalLib.cfg
. /twiki/bin/LocalLib.cfg.txt
. $twikiLibPath
, which must point to the absolute file path of your twiki/lib
e.g. /home/httpd/twiki/lib
. $CPANBASE
to point to your personal CPAN install. Don't forget that the webserver user has to be able to read those files as well.bin/configure
script from your browser.httpd.conf
file in twiki_httpd_conf.txt
at the root of the package. This file also contains advice on securing your installation. There's also a script called tools/rewriteshebang.pl
to help you in fixing up the shebang lines in your CGI scripts.configure
script from your browser, and resolve any errors or warnings it tells you about.http://yourdomain.com/twiki/bin/view
and start TWiki-ing away!
configure
script and make sure you have resolved all errors, and are happy that you understand any warnings.
Failing that, please check the topics listed below, they include some important tips for HP-UX, Solaris, OS/390, and many other platforms."UpgradeTwiki"
, and is found in the root of the distribution. It can be run by any user, though you will need to make sure you correct permissions so the webserver user can write all files in the new installation when you have finished. The upgrade script does not write to your existing installation.
The upgrade script will upgrade the TWiki core only. Plugins will need to be upgraded separately.
It will:
UpgradeTwiki
script available, see TWiki:Codev.UpgradeTWikidistro/
distro/
new_twiki
. This directory must not already exist.distro/
and run: ./UpgradeTwiki <full path to existing_twiki's setlib.cfg> <full path to new_twiki>
cgi-bin/configure
UpgradeTwiki
will give you the final instructions.
There are a few points worth noting:
UpgradeTwiki
may not be able to merge all the changes you made in your existing TWiki into the new installation, but it will tell you which ones it couldn't deal withUpgradeTwiki
creates the new installation in a new directory tree. It makes a complete copy of all your existing data, so:data/
directory in your existing installation, these are reproduced as actual directories in the new structure. It is up to you to pull these sub-directories out again and re-symlink as neededUpgradeTwiki
doesn't deal with custom templates or Plugins, you will have to reinstall these in the new installation.UpgradeTwiki
more robust.
configure
interface for the new install.configure
, then copy the new TWiki.cfg
to LocalSite.cfg
, and edit LocalSite?.cfg. Remove all the settings that you didn't change in your previous install, and change the remaining settings to the values from your old TWiki.cfg..htpasswd
files on the server. These files can be unique to TWiki, or can be shared with other applications (such as an Apache webserver). A variety of password encodings are supported for flexibility when re-using existing files. See the descriptive comments in the Security Settings section of the configure
interface for more details.
configure
interface.
configure
interface toTemplateLogin
login manager (on the Security Settings pane)..htpasswd
files, check that a new line with the username and encrypted password is added to the .htpasswd
file. If not, you probably got a path wrong, or the permissions may not allow the webserver user to write to that file.pub
area, unless they are only accessed through the viewfile
script. If your pub
directory is set up in the webserver to allow open access you may want to add .htaccess
files in there to restrict access.
name=""
parameter of the input tags must start with: "Twk0..."
(if this is an optional entry), or "Twk1..."
(if this is a required entry). This ensures that the fields are carried over into the user home page correctly.
REMOTE_USER
environment variable, which is set when you enable authentication in the webserver.
The advantage of this scheme is that if you have an existing website authentication scheme using Apache modules such as mod_auth_ldap
or mod_auth_mysql
you can just plug in directly to them.
The disadvantage is that because the user identity is cached in the browser, you can log in, but you can't log out again.
TWiki maps the REMOTE_USER
that was used to log in to the webserver to a WikiName using the table in TWikiUsers. This table is updated whenever a user registers, so users can choose not to register (in which case their webserver login name is used for their signature) or register (in which case that login name is mapped to their WikiName).
The same private .htpasswd
file used in TWiki Template Login can be used to authenticate Apache users, using the Apache Basic Authentication support. This allows the TWiki registration support to maintain usernames and passwords.
mod_auth
ApacheLogin
login manager..htpasswd
entries..htaccess
file in the twiki/bin
directory.twiki/bin/.htaccess.txt
that you can copy and change. The comments in the file explain what need to be done..htaccess
does not have the desired effect, you may need to "AllowOverride All" for the directory in httpd.conf
(if you have root access; otherwise, email web server support) pub
area, unless they are only accessed through the viewfile
script. If your pub
directory is set up to allow open access you may want to add .htaccess
files in there as well to restrict access name=""
parameter of the input tags must start with: "Twk0..."
(if this is an optional entry), or "Twk1..."
(if this is a required entry). This ensures that the fields are carried over into the user home page correctly. .htpasswd
file. If not, you may have got a path wrong, or the permissions may not allow the webserver user to write to that file.bin/logon
script accomplishes this. The bin/logon
script must be setup in the bin/.htaccess
file to be a script which requires a valid user
. However, once authenticated, it will simply redirect the user to the view URL for the page from which the logon
script was linked.
%SESSION_VARIABLE{ "varName" }% %SESSION_VARIABLE{ "varName" set="varValue" }% %SESSION_VARIABLE{ "varName" clear="" }%
pthoeny
. This name is normally passed to TWiki by the REMOTE_USER
environment variable, and used internally. Login Usernames are maintained by your system administrator.PeterThoeny
, is recorded when you register using TWikiRegistration; doing so also generates a personal home page in the Main web.configure
. The default is to use your WikiName as a login name.
NOTE: To correctly enter a WikiName - your own or someone else's - be sure to include the Main web name in front of the Wiki username, followed by a period, and no spaces. Ex:This pointsMain.WikiUsername
or%MAINWEB%.WikiUsername
WikiUser
to the Main web, where user registration pages are stored, no matter which web it's entered in. Without the web prefix, the name appears as a NewTopic? everywhere but in the Main web.
TWiki/ChangePassword
):TWiki/ResetPassword
):configure
Web | Sitemap | VIEW | CHANGE | RENAME | |||
---|---|---|---|---|---|---|---|
Listed | DENY | ALLOW | DENY | ALLOW | DENY | ALLOW | |
Main ... | |||||||
TWiki ... | TWikiAdminGroup | TWikiAdminGroup | |||||
TestCases ... | on |
Main
web, like the TWikiAdminGroup. To create a new group:Edit
TWikiGroups by entering a new topic with a name that ends in Group
. Example:SomeGroup
Set GROUP = < list of Users and/or Groups >
Set ALLOWTOPICCHANGE = < list of Users and/or Groups >
Set GROUP = Main.SomeUser, Main.OtherUser, Main.SomeGroup
Set ALLOWTOPICCHANGE = Main.TWikiAdminGroup
SuperAdminGroup
as described above and add the wikinames of a group of Users who are always allowed to edit/view topics e.g.Set GROUP= ElizabethWindsor?,Main.TonyBlair
Set DENYWEBVIEW = < comma-delimited list of Users and Groups >
Set ALLOWWEBVIEW = < comma-delimited list of Users and Groups >
Set DENYWEBCHANGE = < comma-delimited list of Users and Groups >
Set ALLOWWEBCHANGE = < comma-delimited list of Users and Groups >
Set DENYWEBRENAME = < comma-delimited list of Users and Groups >
Set ALLOWWEBRENAME = < comma-delimited list of Users and Groups >
Set ALLOWWEBVIEW =
Set DENYWEBVIEW =
Set DENYTOPICVIEW = < comma-delimited list of Users and Groups >
Set ALLOWTOPICVIEW = < comma-delimited list of Users and Groups >
Set DENYTOPICCHANGE = < comma-delimited list of Users and Groups >
Set ALLOWTOPICCHANGE = < comma-delimited list of Users and Groups >
Set DENYTOPICRENAME = < comma-delimited list of Users and Groups >
Set ALLOWTOPICRENAME = < comma-delimited list of Users and Groups >
Set ALLOWTOPICVIEW =
Set DENYTOPICVIEW =
mod_rewrite
module, and configure your webserver to redirect accesses to attachments to the TWiki viewfile
script. For example,
ScriptAlias /twiki/bin/ /filesystem/path/to/twiki/bin/ Alias /twiki/pub/ /filesystem/path/to/twiki/pub/ RewriteEngine on RewriteRule ^/twiki/pub/TWiki/(.*)$ /twiki/pub/TWiki/$1 [L,PT] RewriteRule ^/twiki/pub/([^\/]+)/([^\/]+)/([^\/]+)$ /twiki/bin/viewfile/$1/$2?filename=$3 [L,PT]That way all the controls that apply to the topic also apply to attachments to the topic. Other types of webserver have similar support. Note: Images embedded in topics will load much slower since each image will be delivered by the
viewfile
script.
all webs
search option from accessing obfuscated webs. Do so by enabling the NOSEARCHALL
variable in WebPreferences:Set NOSEARCHALL = on
Set DENYWEBVIEW = < list of Users and Groups >
Set ALLOWWEBVIEW = < list of Users and Groups >
DENYWEBVIEW
is evaluated before ALLOWWEBVIEW
. Access is denied if the authenticated person is in the DENYWEBVIEW
list, or not in the ALLOWWEBVIEW
list. Access is granted in case DENYWEBVIEW
and ALLOWWEBVIEW
is not defined.NOSEARCHALL
variable in its WebPreferences topic:Set NOSEARCHALL = on
Set DENYWEBVIEW = < list of Users and Groups >
Set ALLOWWEBVIEW = < list of Users and Groups >
DENYWEBVIEW
is evaluated before ALLOWWEBVIEW
. Access is denied if the authenticated person is in the DENYWEBVIEW
list, or not in the ALLOWWEBVIEW
list. Access is granted in case DENYWEBVIEW
and ALLOWWEBVIEW
is not defined.NOSEARCHALL
variable in its WebPreferences topic:Set NOSEARCHALL = on
<!--
* Set DENYTOPICCHANGE = Main.SomeGroup
-->
Formatting Command: | You write: | You get: | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Paragraphs: Blank lines will create new paragraphs. |
1st paragraph 2nd paragraph | 1st paragraph 2nd paragraph | ||||||||||||||||||
Headings: Three or more dashes at the beginning of a line, followed by plus signs and the heading text. One plus creates a top level heading, two pluses a second level heading, etc. The maximum heading depth is 6. You can create a table of contents with the %TOC% variable. If you want to exclude a heading from the TOC, put !! after the ---+ .
![]() |
---++ Sushi ---+++ Maguro ---++++!! Exclude from TOC |
SushiMaguroExclude from TOC |
||||||||||||||||||
Bold Text: Words get shown in bold by enclosing them in * asterisks.
|
*Bold* | Bold | ||||||||||||||||||
Italic Text: Words get shown in italic by enclosing them in _ underscores.
|
_Italic_ | Italic | ||||||||||||||||||
Bold Italic: Words get shown in bold italic by enclosing them in __ double-underscores.
|
__Bold italic__ | Bold italic | ||||||||||||||||||
Fixed Font: Words get shown in fixed font by enclosing them in = equal signs.
|
=Fixed font= |
Fixed font
|
||||||||||||||||||
Bold Fixed Font: Words get shown in bold fixed font by enclosing them in double equal signs.
|
==Bold fixed== |
Bold fixed
|
||||||||||||||||||
![]() * _ __ = == ) indicator
with normal punctuation, such as commas and full stops.
![]() |
_This works_, _this does not _ |
This works, _this does not _ |
||||||||||||||||||
Separator (horizontal rule): Three or more three dashes at the beginning of a line.. |
------- |
|
||||||||||||||||||
Bulleted list: Multiple of three spaces, an asterisk, and another space. |
* bullet item level 1 * bullet item level 2 * back to level 1 |
|
||||||||||||||||||
![]() |
* A bullet broken over three lines. This text is not indented |
| ||||||||||||||||||
Numbered List: Multiple of three spaces, a type character, a dot, and another space. Several types are available besides a number:
|
1. Mammals 1. Rodents A. Rats A. Mice A. Capybaras i. Bats 1. Pipistrelle 1. Horseshoe (lesser) |
|
||||||||||||||||||
Definition List: Three spaces, a dollar sign, the term, a colon, a space, followed by the definition. |
$ Sushi: Japan $ Dim Sum: S.F. |
|
||||||||||||||||||
Table: Each row of the table is a line containing of one or more cells. Each cell starts and ends with a vertical bar '|'. Any spaces at the beginning of a line are ignored.
![]() |
| *L* | *C* | *R* | | A2 | 2 | 2 | | A3 | 3 | 3 | | multi span ||| | A4-6 | \ four \ | four | |
|
||||||||||||||||||
WikiWord Links: CapitalizedWordsStuckTogether (or WikiWords) will produce a link automatically. If you want to link to a topic in a different TWiki web write Otherweb.TopicName . (The link label is the the name of the web if it is WebHome, otherwise it is the topic name)
|
WebNotify %MAINWEB%.TWikiUsers | WebNotify TWikiUsers | ||||||||||||||||||
Verbatim (Literal) text: Surround code excerpts and other formatted text with <verbatim> and </verbatim> tags.
![]() verbatim tags disable HTML code. Use <pre> and </pre> tags instead if you want the HTML code within the tags to be interpreted.
NOTE: VARIABLES are still Set within verbatim tags (this is a historical peculiarity)
|
<verbatim> class CatAnimal { void purr() { <code here> } } </verbatim> |
class CatAnimal { void purr() { <code here> } } |
||||||||||||||||||
Anchors: You can define a reference inside a TWiki topic (called an anchor name) and link to that. To define an anchor write #AnchorName at the beginning of a line. The anchor name must be a WikiWord. To link to an anchor name use the [[MyTopic#MyAnchor]] syntax. You can omit the topic name if you want to link within the same topic.
|
[[WikiWord#NotThere]] [[#MyAnchor][Jump]] #MyAnchor To here | WikiWord#NotThere Jump To here | ||||||||||||||||||
Forced Links: You can create a forced internal link by enclosing words in double square brackets. Text within the brackets may contain optional spaces; the topic name is formed by capitalizing the initial letter and by removing the spaces; for example, [[text formatting FAQ]] links to topic TextFormattingFAQ. You can also refer to a different web and use anchors.
![]() |
[[wiki syntax]] [[%MAINWEB%.TWiki users]] escaped: ![[wiki syntax]] | wiki syntax Main.TWiki users escaped: [[wiki syntax]] | ||||||||||||||||||
Specific Links: You can create a link where you specify the link text and the URL separately using nested square brackets [[reference][text]] . Internal link references (e.g. WikiSyntax) and URLs (e.g. http://TWiki.org/) are both supported.
The rules described under Forced Links apply for internal link references.
![]() |
[[WikiSyntax][wiki syntax]] [[http://gnu.org][GNU]] [[mailto:a@b.street][mail]] | wiki syntax GNU mail | ||||||||||||||||||
Prevent a Link: Prevent a WikiWord from being linked by prepending it with an exclamation mark. |
!SunOS | SunOS | ||||||||||||||||||
Disable Links: You can disable automatic linking of WikiWords by surrounding text with <noautolink> and </noautolink> tags. Each tag must be on a line by itself.
|
<noautolink> RedHat & SuSE </noautolink> | RedHat & SuSE |
<p />
paragraph tags on empty lines, which causes problems if done between HTML tags that do not allow paragraph tags, like for example between table tags.<...>
- of an HTML tag must be on the same line, or the tag will be broken.
<script>
tags in for your TWiki applications. However note that your TWiki administrator can disable <script>
in topics, and may have chosen to do so for security considerations. TWiki markup and TWikiVariables are not expanded inside script tags.
http://...
, https://...
, ftp://...
, gopher://...
, news://...
, file://...
, telnet://...
and mailto:...@...
are linked automatically.name@domain.com
are linked automatically.[[Square bracket rules]]
let you easily create non-WikiWord links.[[http://yahoo.com Yahoo home page]]
as an easier way of doing external links with descriptive text for the link, such as Yahoo home page.%
that are expanded on the fly.
%TOC%
: Automatically generates a table of contents based on headings in a topic - see the top of this page for an example.%WEB%
: The current web, is TWiki.%TOPIC%
: The current topic name, is TextFormattingRules.%ATTACHURL%
: The attachment URL of the current topic. Example usage: If you attach a file to a topic you can refer to it as %ATTACHURL%/image.gif
to show the URL of the file or the image in your text.%INCLUDE{"SomeTopic"}%
: Server side include, includes another topic. The current TWiki web is the default web. Example: %INCLUDE{"TWiki.SiteMap"}%
%SEARCH{"sushi"}%
: Inline search showing the search result embedded in a topic. FormattedSearch gives you control over formatting, useful for creating web-based applications.%BR%
to start a new line. %RED% Red %ENDCOLOR% and %BLUE% blue %ENDCOLOR% colors
to get: Red and blue colors. %H% Help, %T% Tip, %X% Alert
to get: !%SOMEVARIABLE%
to get: %SOMEVARIABLE%.%PLUGINDESCRIPTIONS%
:
ExternalSite:Page
text to external sites based on aliases defined in the %RULESTOPIC% topic :-)
for :cool:
for :cool:"$SUM( $ABOVE() )"
to tables located in TWiki topics.<filename>
is not displayed. How can I show it as it is?'<'
and '>'
characters have a special meaning in HTML, they define HTML tags. You need to escape them, so write '<'
instead of '<'
, and '>'
instead of '>'
. 'prog <filename>'
to get 'prog <filename>'
.'&'
character sometimes not displayed?'&'
character has a special meaning in HTML, it starts a so called character entity, i.e. '©'
is the ©
copyright character. You need to escape '&'
to see it as it is, so write '&'
instead of '&'
. 'This & that'
to get 'This & that'
.%VARIABLE%
- that expand into content whenever a page is rendered for viewing. Some variables can even take parameters - %VARIABLE{parameter="value"}%
.
!%TOPIC%
to get %TOPIC%.Examples:Spaces between the = sign and the value will be ignored. You can split a value over several lines by starting following lines with [multiple of 3 spaces] - as long as you don't try to use * as the first character on the following line.
Set VARIABLENAME = value
Set VARIABLENAME = value
Example:Whatever you include in your Variable will be expanded on display, exactly as if it had been entered directly.* Set VARIABLENAME = value starts here and continues here
Example: Create a custom logo variableYou can also set preference variables on a topic by clicking the link
- To place a logo anywhere in a web by typing
%MYLOGO%
, define the Variable on the web's WebPreferences page, and upload a logo file, ex:mylogo.gif
. You can upload by attaching the file to WebPreferences, or, to avoid clutter, to any other topic in the same web, ex:LogoTopic
- Sample variable setting in WebPreferences:
Set MYLOGO = %PUBURLPATH%/TWiki/LogoTopic/mylogo.gif
Edit topic preference settings
under More topic actions
. Preferences set in this manner are not visible in the topic text, but take effect nevertheless.
Local
in place of Set
in the variable definition. For example, if the user sets the following in their home topic:
* Set EDITBOXHEIGHT = 10 * Local EDITBOXHEIGHT = 20Then when they are editing any other topic, they will get a 10 high edit box. However when they are editing their home topic, they will get a 20 high edit box.
Local
can be used wherever a preference needs to take a different value depending on where the current operation is being performed.
Use this powerful feature with great care! %ALL_VARIABLES% can be used to get a listing of the values of all variables in their evaluation order, so you can see variable scope if you get confused.
%INCLUDINGTOPIC%
, %INCLUDE%
, and the mighty %SEARCH%
.%ACTIVATEDPLUGINS%
%ATTACHURL%
http://scoobydoo/CLEAN/pub/TWiki/TWikiVariablesAtoM
%ATTACHURL%/image.gif
%ATTACHURLPATH%
/CLEAN/pub/TWiki/TWikiVariablesAtoM
configure
. This is used in certain password encodings, and in login templates as part of the login prompt.%AUTHREALM%
%TOPIC%
if there is no INCLUDE%BASETOPIC%
%WEB%
in case there is no include.%BASEWEB%
%DATE%
17 Dec 2005
%DISPLAYTIME%
17 Dec 2005 - 13:32
%GMTIME%
%DISPLAYTIME{"format"}%
%DISPLAYTIME{"$hou:$min"}%
expands to 13:32
%ENCODE{"string"}%
Parameter: | Description: | Default: |
---|---|---|
"string" | String to encode | required (can be empty) |
type="entity" | Encode special characters into HTML entities, like a double quote into " | URL encoding |
type="url" | Encode special characters for URL parameter use, like a double quote into %22 | (this is the default) |
%ENCODE{"spaced name"}%
expands to spaced%20name
%ENDSECTION{"name"}%
Parameter: | Description: | Default: |
---|---|---|
"name" | Name of the section. Must be unique inside a topic, and must match with a previous %SECTION% variable. | Mandatory parameter without a default |
%FAILEDPLUGINS%
%FORMFIELD{"fieldname"}%
Parameter: | Description: | Default: |
---|---|---|
"fieldname" | The name of a TWiki form field | required |
topic="..." | Topic where form data is located. May be of the form Web.TopicName | Current topic |
format="..." | Format string. $value expands to the field value, and $title expands to the field title | "$value" |
default="..." | Text shown when no value is defined for the field | "" |
alttext="..." | Text shown when field is not found in the form | "" |
%FORMFIELD{"ProjectName" topic="Projects.SushiProject" default="(not set)" alttext="ProjectName field found"}%
%GMTIME%
17 Dec 2005 - 13:32
%GMTIME{"format"}%
Variable: | Unit: | Example |
---|---|---|
$seconds | seconds | 59 |
$minutes | minutes | 59 |
$hours | hours | 23 |
$day | day of month | 31 |
$wday | day of the Week (Sun, Mon, Tue, Wed, Thu, Fri, Sat) | Thu |
$dow | day of the week (Sun = 0) | 2 |
$week | number of week in year (ISO 8601) | 34 |
$month | month in ISO format | Dec |
$mo | 2 digit month | 12 |
$year | 4 digit year | 1999 |
$ye | 2 digit year | 99 |
$tz | either "GMT" (if set to gmtime), or "Local" (if set to servertime) | GMT |
$iso | ISO format timestamp | 2005-12-17T13:32Z |
$rcs | RCS format timestamp | 2005/12/17 13:32:22 |
$http | E-mail & http format timestamp | Sat, 17 Dec 2005 13:32:22 GMT |
$epoch | Number of seconds since 00:00 on 1st January, 1970 | 1134826342 |
%GMTIME{"$day $month, $year - $hour:$min:$sec"}%
expands to 17 Dec, 2005 - 13:32:22
%HOMETOPIC%
WebHome
, renders as WebHome%HTTP%
%HTTP{'Header-name'}%
%HTTP% | |
%HTTP{"Accept-language"}% | |
%HTTP{"User-Agent"}% |
%HTTPS%
%HTTPS{'Header-name'}%
%HTTP_HOST%
%ICON{"name"}%
or %ICON{"type"}%
arrowbright
, bubble
, choice-yes
, hand
bmp
, doc
, gif
, hlp
, html
, mp3
, pdf
, ppt
, txt
, xls
, xml
, zip
%ICON{"info"}%
expands to %ICONPATH{"name"}%
or %ICONPATH{"type"}%
%ICONPATH{"info"}%
expands to http://scoobydoo/CLEAN/pub/TWiki/TWikiDocGraphics/info.gif
which renders as %IF{"CONDITION" then="THEN" else="ELSE"}%
CONDITION
evaluates to TRUE
, then THEN
will be shown; otherwise ELSE
will be shown.%IF{}%
statements%INCLUDE{"page" ...}%
Parameter: | Description: | Default: |
---|---|---|
"SomeTopic" | The name of a topic located in the current web, i.e. %INCLUDE{"WebNotify"}% | |
"Web.Topic" | A topic in another web, i.e. %INCLUDE{"TWiki.SiteMap"}% | |
"http://..." | A full qualified URL, i.e. %INCLUDE{"http://twiki.org:80/index.html"}% . Supported content types are text/html and text/plain . ![]() | |
pattern="..." | A RegularExpression pattern to include a subset of a topic or page | none |
rev="2" | Include a previous topic revision; N/A for URLs | top revision |
warn="off" | Warn if topic include fails: Fail silently (if off ); output default warning (if set to on ); else, output specific text (use $topic for topic name) | on preferences setting |
section="name" | Includes only the specified section, as defined in the included topic by the SECTION and ENDSECTION variables | |
PARONE="val 1" | Any other parameter will be defined as a variable within the scope of the included topic. The example parameters on the left will result in %PARONE% and %PARTWO% being defined within the included topic. |
%TOPIC%
in case there is no include%INCLUDINGTOPIC%
%WEB%
if there is no INCLUDE.%INCLUDINGWEB%
PO
files) to TWiki. Those are the languages in which TWiki's user interface is available.%LANGUAGES{...}%
Parameter: | Description: | Default: |
---|---|---|
format | format for each item. See below for variables available in the format string. | " * $langname" |
sep | separator between items. | "\n" (newline) |
format
variables: Variable | Meaning |
---|---|
$langname | language's name, as informed by the translators |
$langtag | language's tag. Ex: en , pt-br , etc. |
%LOCALSITEPREFS%
%LOGIN%
%LOGOUT%
%MAKETEXT{"string" args="..."}
Parameter | Description | Default |
---|---|---|
"text" or string="text" | The text to be displayed. | none |
args="param1, param2" | a comma-separated list of arguments to be interpolated in the string, replacing the [_N] placeholders in it. | none |
%MAKETEXT{string="Notes:"}%
%MAKETEXT{"Contact [_1] if you have any questions." args="%WIKIWEBMASTER%"}%
%MAKETEXT{"Did you want to [[[_1]][reset [_2]'s password]]?" args="TWiki.ResetPassword,%WIKIUSERNAME%"}%
string
to the current user's language only if it has such string in its translation table for that language.&
) followed by one letter (one of a...z, A...Z) (say, X
) in the translatable string will be translated to <span class='twikiAccessKey'>X</span>
. This is used to implement access keys. If you want to write an actual amperstand that stays just before a letter, write two consecutive amperstands (&&
): they will be transformed in just one._
) are reserved. You should not use translatable phrases starting with an underscore.%MAINWEB%
Main
formfield
item is the most likely to be useful to casual users.%META{ "item" ...}%
Item | Options | Description |
---|---|---|
"formfield" | name="..." - name of the field. The field value can be shortened as described in FormattedSearch for $formfield | Show a single form field |
"form" | none | Generates the table showing the form fields. See Form Templates |
"attachments" | all="on" to show hidden attachments | Generates the table showing the attachments |
"moved" | none | Details of any topic moves |
"parent" | dontrecurse="on" : By default recurses up tree, this has some cost. nowebhome="on" : Suppress WebHome. prefix="..." : Prefix that goes before parents, but only if there are parents, default "" . suffix="..." : Suffix, only appears if there are parents, default "" . separator="..." : Separator between parents, default is " > " . | Generates the parent link |
%METASEARCH{...}%
Parameter: | Description: | Default: |
---|---|---|
type="topicmoved" | What sort of search is required? "topicmoved" if search for a topic that may have been moved "parent" if searching for topics that have a specific parent i.e. its children "field" if searching for topics that have a particular form field value (use the name and value parameters to specify which field to search) | required |
web="%WEB%" | Wiki web to search: A web, a list of webs separated by whitespace, or all webs. | current web |
topic="%TOPIC%" | The topic the search relates to, for topicmoved and parent searches | current topic |
name | form field to search, for field type searches. May be a regular expression (see SEARCH). | |
value | form field value, for field type searches. May be a regular expression (see SEARCH). | |
title="Title" | Text that is prefixed to any search results | empty |
default="none" | Default text shown if no search hit | empty |
%METASEARCH{type="topicmoved" web="%WEB%" topic="%TOPIC%" title="This topic used to exist and was moved to: "}%
%METASEARCH{type="parent" web="%WEB%" topic="%TOPIC%" title="Children: "}%
%METASEARCH{type="field" name="Country" value="China"}%
%NOP%
%NOP{...}%
%NOTIFYTOPIC%
WebNotify
, renders as WebNotify%PLUGINDESCRIPTIONS%
ExternalSite:Page
text to external sites based on aliases defined in the %RULESTOPIC% topic :-)
for :cool:
for :cool:"$SUM( $ABOVE() )"
to tables located in TWiki topics.$TWiki::Plugins::VERSION
number, also indicating the version of the Func module%PLUGINVERSION%
1.1
%PLUGINVERSION{"name"}%
%PLUGINVERSION{"InterwikiPlugin"}%
expands to $Rev$
%PUBURL%
http://scoobydoo/CLEAN/pub
%PUBURL%/%WEB%/OtherTopic/image.gif
%PUBURLPATH%
/CLEAN/pub
keywords=TWiki.TWikiDocumentation;keywords=skin;keywords=plain;skin=plain
%URLPARAM{}%
.%REMOTE_ADDR%
%REMOTE_PORT%
%REMOTE_USER%
%REVINFO%
r0 - 27 Oct 2005 - 01:50 - TWikiContributor
%REVINFO{"format"}%
Parameter: | Description: | Default: |
---|---|---|
"format" | Format of revision information, see supported variables below | "r1.$rev - $date - $wikiusername" |
web="..." | Name of web | Current web |
topic="..." | Topic name | Current topic |
rev="1.5" | Specific revison number | Latest revision |
Variable: | Unit: | Example |
---|---|---|
$web | Name of web | Current web |
$topic | Topic name | Current topic |
$rev | Revison number. Prefix r1. to get the usual r1.5 format | 5 |
$date | Revision date | 11 Jul 2004 |
$username | Login username of revision | jsmith |
$wikiname | WikiName of revision | JohnSmith |
$wikiusername | WikiName with Main web prefix | Main.JohnSmith |
%REVINFO{"$date - $wikiusername" rev="1.1"}%
returns revision info of first revisionviewauth.cgi
)%SCRIPTNAME%
.pl
or .cgi
%SCRIPTSUFFIX%
%SCRIPTURL%
http://scoobydoo/CLEAN/bin
"}%L%/viewauth%SCRIPTSUFFIX%/%WEB%/%TOPIC%
which expands to http://scoobydoo/CLEAN/bin/viewauth/TWiki/TWikiVariablesNtoZ
%SCRIPTURL{"script"}%
http://scoobydoo/CLEAN/bin/script
%SCRIPTURL{"viewauth"}%/TWiki/TWikiVariablesNtoZ
which expands to http://scoobydoo/CLEAN/bin/viewauth/TWiki/TWikiVariablesNtoZ
%SCRIPTURLPATH%
/CLEAN/bin
%SEARCH{"text" ...}%
Parameter: | Description: | Default: |
---|---|---|
"text" | Search term. Is a keyword search, literal search or regular expression search, depending on the type parameter. SearchHelp has more | required |
search="text" | (Alternative to above) | N/A |
web="Name" web="Main, Know" web="all" | Comma-separated list of webs to search. The special word all means all webs that doe not have the NOSEARCHALL variable set to on in their WebPreferences. You can specifically exclude webs from an all search using a minus sign - for example, web="all,-Secretweb" . | Current web |
topic="WebPreferences" topic="*Bug" | Limit search to topics: A topic, a topic with asterisk wildcards, or a list of topics separated by comma. | All topics in a web |
excludetopic="Web*" excludetopic="WebHome, WebChanges" | Exclude topics from search: A topic, a topic with asterisk wildcards, or a list of topics separated by comma. | None |
type="keyword" type="literal" type="regex" | Do a keyword search like soap "web service" -shampoo ; a literal search like web service ; or RegularExpression search like soap;web service;!shampoo | %SEARCHVAR- DEFAULTTYPE% preferences setting (literal) |
scope="topic" scope="text" scope="all" | Search topic name (title); the text (body) of topic; or all (both) | "text" |
order="topic" order="created" order="modified" order="editby" order "formfield(name)"= | Sort the results of search by the topic names, topic creation time, last modified time, last editor, or named field of TWikiForms. The sorting is done web by web; if you want to sort across webs, create a formatted table and sort it with TablePlugin's initsort. Note that dates are sorted most recent date last (i.e at the bottom of the table). | Sort by topic name |
limit="all" limit="16" | Limit the number of results returned. This is done after sorting if order is specified | All results |
date="..." | limits the results to those pages with latest edit time in the given TimeInterval. | All results |
reverse="on" | Reverse the direction of the search | Ascending search |
casesensitive="on" | Case sensitive search | Ignore case |
bookview="on" | BookView search, e.g. show complete topic text | Show topic summary |
nonoise="on" | Shorthand for nosummary="on" nosearch="on" nototal="on" zeroresults="off" noheader="on" noempty="on" | Off |
=nosummary="on" | Show topic title only | Show topic summary |
nosearch="on" | Suppress search string | Show search string |
noheader="on" | Suppress search header Topics: Changed: By: | Show search header, unless seach is inline and a format is specified (Cairo compatibility) |
nototal="on" | Do not show number of topics found | Show number |
zeroresults="off" | Suppress all output if there are no hits | zeroresults="on" , displays: "Number of topics: 0" |
noempty="on" | Suppress results for webs that have no hits. | Show webs with no hits |
header="..." format="..." | Custom format results: see FormattedSearch for usage, variables & examples | Results in table |
expandvariables="on" | Expand variables before applying a FormattedSearch on a search hit. Useful to show the expanded text, e.g. to show the result of a SpreadSheetPlugin %CALC{}% instead of the formula | Raw text |
multiple="on" | Multiple hits per topic. Each hit can be formatted. The last token is used in case of a regular expression ";" and search | Only one hit per topic |
nofinalnewline="on" | If on , the search variable does not end in a line by itself. Any text continuing immediately after the search variable on the same line will be rendered as part of the table generated by the search, if appropriate. | off |
recurse="on" | Recurse into subwebs, if subwebs are enabled. | off |
separator=", " | Line separator between hits | Newline "$n" |
%SEARCH{"wiki" web="Main" scope="topic"}%
%SEARCH{"FAQ" scope="topic" nosearch="on" nototal="on" header="| *Topic: * | *Summary: * |" format="| $topic | $summary |"%
(displays results in a table with header - details)%TABLE{}%
variable just before the %SEARCH{}%
to alter the output of a search. Example: %TABLE{ tablewidth="90%" }%
%SECTION{"name"}%
Parameter: | Description: | Default: |
---|---|---|
"name" | Name of the section. Must be unique inside a topic. | Mandatory parameter without a default |
%SERVERTIME%
17 Dec 2005 - 13:32
%GMTIME%
%SERVERTIME{"format"}%
%SERVERTIME{"$hou:$min"}%
expands to 13:32
%SESSION_VARIABLE{"name"}%
%SESSION_VARIABLE{"name" set="value"}%
%SESSION_VARIABLE{"name" clear=""}%
AUTHUSER
session variable, and is read-only%SESSIONID%
%SESSIONVAR%
%SPACEDTOPIC%
TWiki%20*Variables%20*Nto%20*Z
%STOPINCLUDE%
variable. A normal view of the topic shows everything exept the %STARTINCLUDE%
variable itself. An optional parameter can be used to control whether the content is expanded.%STARTINCLUDE%
%STARTINCLUDE{param}%
%STATISTICSTOPIC%
WebStatistics
, renders as WebStatistics%STOPINCLUDE%
variable itself.%STOPINCLUDE%
%TOC%
%TOC{"SomeTopic" ...}%
"---++ text"
) and HTML ("<h2>text</h2>"
) are taken into account. Any heading text after "!!"
is excluded from the TOC; for example, write "---+!! text"
if you do not want to list a header in the TOCParameter: | Description: | Default: |
---|---|---|
"TopicName" | topic name | Current topic |
web="Name" | Name of web | Current web |
depth="2" | Limit depth of headings shown in TOC | 6 |
title="Some text" | Title to appear at top of TOC | none |
%TOC{depth="2"}%
%TOC{"TWikiDocumentation" web="TWiki" title="Contents:"}%
%TOPIC%
TWikiVariablesNtoZ
, renders as TWikiVariablesNtoZ$name
variable gets expanded to the topic name; the $web
variable gets expanded to the name of the web.%TOPICLIST{"format" ...}%
Parameter: | Description: | Default: |
---|---|---|
"format" | Format of one line, may include $name and $web variables | "$name" |
format="format" | (Alternative to above) | "$name" |
separator=", " | line separator | "\n" (new line) |
web="Name" | Name of web | Current web |
%TOPICLIST{" * $web.$name"}%
creates a bullet list of all topics%TOPICLIST{separator=", "}%
creates a comma separated list of all topics%TOPICLIST{" <option>$name</option>"}%
creates an option list (for drop down menus)%TWIKIWEB%
TWiki
%URLPARAM{"name"}%
Parameter: | Description: | Default: |
---|---|---|
"name" | The name of a URL parameter | required |
default="..." | Default value in case parameter is empty or missing | empty string |
newline="<br />" | Convert newlines in textarea to other delimiters | no conversion |
encode="entity" | Encode special characters into HTML entities, like a double quote into " . This is needed if text is put into an HTML form field | no encoding |
encode="url" | Encode special characters for URL parameter use, like a double quote into %22 | no encoding |
multiple="on" multiple="[[$item]]" | If set, gets all selected elements of a <select multiple="multiple"> tag. A format can be specified, with $item indicating the element, e.g. multiple="Option: $item" | first element |
separator=", " | Separator between multiple selections. Only relevant if multiple is specified | "\n" (new line) |
%URLPARAM{"skin"}%
returns print
for a .../view/TWiki/TWikiVariablesNtoZ?skin=print
URL.jsmith
, WIKINAME like JohnSmith
and WIKIUSERNAME like Main.JohnSmith
. Un-authenticated users are all TWikiGuest.%USERNAME%
TWikiAdminGroup
LANGUAGE
preference is set, it's used as user's language instead of any language detected from the browser.LANGUAGE
at a non per-user way, so each user can choose his/her preferred language.%VAR{"NAME" web="Web"}%
%WEBBGCOLOR%
of the Main web write %VAR{"WEBBGCOLOR" web="Main"}%
, which expands to #FFEFA6
%WEB%
TWiki
NOSEARCHALL=on
preference variable. The "format"
defines the format of one web item. The $name
variable gets expanded to the name of the web, $qname
gets expanded to double quoted name, $marker
to marker
where web matches selection
.%WEBLIST{"format" ...}%
Parameter: | Description: | Default: |
---|---|---|
"format" | Format of one line, may include $name variable. (to support HierarchicalWebs?, there are 2 added variables $webindent and $indentedname ) | "$name" |
format="format" | (Alternative to above) | "$name" |
separator=", " | line separator | "\n" (new line) |
webs="public" | comma sep list of Web, public expands to all non-hidden | "public" |
marker="selected" | Text for $marker where item matches selection , otherwise equals "" | "selected" |
selection="%WEB%" | Current value to be selected in list | section="%WEB%" |
%WEBLIST{" * [[$name.WebHome]]"}%
creates a bullet list of all webs.%WEBLIST{"<option $marker value=$qname>$name</option>" webs="Trash,public" selection="TWiki" separator=" "}%
Dropdown of all public Webs + Trash Web, current Web highlighted.%WEBPREFSTOPIC%
WebPreferences
, renders as WebPreferences%WIKILOGOURL%
defined in WebPreferences instead. This variables value is defined in lib/TWiki.cfg::$wikiHomeUrl which is marked deprecated. Will be removed in future versions.%WIKINAME%
TWikiAdminGroup
%WIKIPREFSTOPIC%
TWikiPreferences
, renders as TWikiPreferences%WIKITOOLNAME%
TWiki
%WIKIUSERNAME%
Main.TWikiAdminGroup
, renders as TWikiAdminGroup%WIKIUSERSTOPIC%
TWikiUsers
, with Main prefix renders as TWikiUsers%WIKIVERSION%
Wed, 14 Dec 2005 build 7851
Attach
link at the bottom of the page. The Attach
screen lets you browse for a file, add a comment, and upload it. The uploaded file will show up in the File Attachment table.*.php
files are renamed to *.php.txt
so that no one can place code that would be read in a .php file. %ATTACHFILESIZELIMIT%
variable of the TWikiPreferences, currently set at 10000 KB.Manage
on the Attachment to be moved.Move
. The attachment and its version history are moved. The original location is stored as topic Meta Data.Trash
, topic TrashAttachment
.
Attach
file: Sample.txt
Edit
topic and enter: %ATTACHURL%/Sample.txt
Preview
: %ATTACHURL%/Sample.txt
text appears as: /CLEAN/pub/TWiki/FileAttachment/Sample.txt, a link to the text file.%PUBURLPATH%/%WEB%/OtherTopic/Sample.txt
(if it's within the same web)%PUBURLPATH%/Otherweb/OtherTopic/Sample.txt
(if it's in a different web)Attach
file: Sample.txt
Edit
topic and write text: %INCLUDE{"%ATTACHURL%/Sample.txt"}%
Attach
file: Smile.gif
Edit
topic and write text: %ATTACHURL%/Smile.gif
Preview
: text appears as /CLEAN/pub/TWiki/FileAttachment/Smile.gif, an image.
I Attachment Action Size Date Who Comment Sample.txt manage 0.1 K 22 Jul 2000 - 19:37 UploadingUser Just a sample Smile.gif manage 0.1 K 22 Jul 2000 - 19:38 UploadingUser Smiley face
Manage
link takes you to a new page that looks a bit like this (depending on what skin is selected):
h
means the attachment is hidden, it isn't listed when viewing a topic.Hide file
checkbox, then click Change properties
.Input type | Type field | Size field | Value field |
---|---|---|---|
One or more checkboxes | checkbox | number of items per line | comma list of item labels |
One or more checkboxes, plus Set and Clear buttons | checkbox+buttons | (same) | (same) |
One or more radio buttons (radio buttons are mutually exclusive; only one can be selected) | radio | (same) | (same) |
Read-only label text | label | ignored | text |
Drop-down menu or scrollable box | select | 1 for drop down, 2 and up for scrollable box | comma-separated list of options |
A one-line text field | text | text box width in number of characters | initial text, if a new topic is created with a form template |
A text box | textarea | columns x rows, e.g. 80x6 ; default size is 40x5 | initial text, if a new topic is created with a form template |
YourForm
, ExpenseReportForm
, InfoCategoryForm
, RecordReviewForm
, whatever you need.Name
, Type
, Size
, Values
, Tooltip message
, and Attributes
(see sample below).Example: WebFormYou can also retrieve possible values for select, checkbox or radio types from other topics:
| *Name* | *Type* | *Size* | *Values* | *Tooltip message* | *Attributes* |
| TopicClassification | select | 1 | NoDisclosure, PublicSupported, PublicFAQ | blah blah... | |
| OperatingSystem | checkbox | 3 | OsHPUX, OsLinux, OsSolaris, OsWin | blah blah... | |
| OsVersion | text | 16 | | blah blah... | |
Name Type Size Values Tooltip message Attributes TopicClassification select 1 NoDisclosure, PublicSupported, PublicFAQ blah blah... OperatingSystem checkbox 3 OsHPUX, OsLinux, OsSolaris, OsWin blah blah... OsVersion text 16 blah blah...
Example: WebFormField values can also be obtained as the result of a FormattedSearch. For example,
- In the WebForm topic, define the form:
Name Type Size Values Tooltip message Attributes TopicClassification select 1 blah blah... OperatingSystem checkbox 3 blah blah... OsVersion text 16 blah blah...
Leave the
Values
field blank.
- Then in the TopicClassification topic, define the possible values:
Name Type Tooltip message NoDisclosure option blah blah... Public Supported option blah blah... Public FAQ option blah blah...
%SEARCH{"Office$" scope="topic" web="%MAINWEB%" nototal="on" nosummary="on" nosearch="on" regex="on" format="Main.$topic" separator=", " }%
when used in the value field of the form definition, will take the set of field values to be all topic names in the Main web which end in "Office".
Notes:[[...]]
links. This notation can also be used when referencing another topic to obtain field values, but one wants to use a name other than the topic name as the name of the field. [[...]]
notation.Tooltip message
column is used as a tooltip for the field name (only if field name is a WikiName) - you only see the tooltip in edit view.Attributes
column is used to define special behavior for that form field (multiple attributes can be entered, with or without separators):H
indicates that this field should not be shown in view mode. However, the field is available for editing and storing information.M
indicates that this field is mandatory. The topic cannot be saved unless a value is provided for this field. If the field is found empty during topic save, an error is raised and the user is redirected to an oops page. Mandatory fields are indicated by an asteriks next to the field name. WEBFORMS
variable in WebPreferences is optional and defines a list of possible form templates.
Example:
- Set WEBFORMS = BugForm, FeatureForm, Books.BookLoanForm
WEBFORMS
enabled, an extra button is added to the edit view. If the topic doesn't have a Form, an Add Form button appears at the end of the topic. If a Form is present, a Change button appears in the top row of the Form. The buttons open a screen that enables selection of a form specified in WEBFORMS
, or the No form option.WebTopicEditTemplate
topic in a web, or a new topic that serves as an application specific template topic. Initial Form values can be set there.formtemplate
parameter in the (edit or save) URL. Initial values can then be provided in the URLs or as form values:name
, ex: ?BugPriority=1
namevalue=1
, ex: ?ColorRed=1
. <form name="newtopic" action="%SCRIPTURL{"edit"}%/%WEB%/"> <input type="hidden" name="formtemplate" value="MyForm" /> New topic name <input type="text" name="topic" size="40" /> <input type="submit" value="Create" /> </form>
SubmitExpenseReport
topic where you can create new expense reports, a SubmitVacationRequest
topic, and so on. These can specify the required template topic with its associated form. Template topics has more.FORMFIELD
, SEARCH
and METASEARCH
variables in TWikiVariables, and TWiki Formatted Search.
Example
TWiki users often want to have an overview of topics they contributed to. With the$formfield
parameter it is easy to display the value of a classification field next to the topic link:| *Topic* | *Classification* | %SEARCH{"Main.UserName" scope="text" regex="off" nosearch="on" nototal="on" order="modified" reverse="on" format="|<b>[[$web.$topic][$topic]]</b> |<nop>$formfield(TopicClassification) |" web="Sandbox"}%
checkbox
+multi
anywhere in the nametext
fields when a topic is saved. If you need linefeeds in a field, make sure it is a textarea
.twikicatitems.tmpl
. The replacement Form Template must be set as the first item in the WebPreferences variable WEBFORMS
. If missing, pages will display, but attempting to edit results in an error message.
The new Form Template system should work with old Category Table data with no special conversion. Data is assigned to Meta variables the first time an imported topic is edited and saved in the new system.
data/warning.txt
.
%TMPL:<key>%
and %TMPL:<key>{"attr"}%
.%TMPL:INCLUDE{"file"}%
: Includes a template file. The file is found as described below.%TMPL:DEF{"block"}%
: Define a block. Text between this and the %TMPL:END%
directive is not used in-place, but is saved for later use with %TMPL:P
. Leading and trailing whitespace is ignored.%TMPL:END%
: Ends a block definition.%TMPL:P{"var"}%
: Includes a previously defined block.%{...}%
: is a comment.twiki.tmpl
master template, like twiki.print.tmpl
, that redefines the header and footer.%TMPL:DEF{"x"}% x%P%z%TMPL:END%
then %TMPL:P{"x" P="y"}%
will expand to xyz
.
Note that parameters can simply be ignored; for example=%TMPL:P{"x"}%= will expand to x%P%z.
Any alphanumeric characters can be used in parameter names. You are highly recommended to use parameter names that cannot be confused with TWikiVariables.
Note that three parameter names, context
, then
and else
are reserved. They are used to support a limited form of "if" condition that you can use to select which of two templates to use, based on a context identifier:
%TMPL:DEF{"link_inactive"}%<input type="button" disabled value="Link>%TMPL:END% %TMPL:DEF{"link_active"}%<input type="button" onclick="link()" value="Link" />%TMPL:END% %TMPL:P{context="inactive" then="inactive_link" else="active_link"}% for %CONTEXT%When the "inactive" context is set, then this will expand the "link_inactive" template; otherwise it will expand the "link_active" template. See IfStatements for details of supported context identifiers.
twiki/templates
directory, or can also be read from user topics. As an example, twiki/templates/view.tmpl
is the default template file for the twiki/bin/view
script.
Templates that are included using %TMPL:INCLUDE%
are also found using the same search algorithm, unless you explicitly put '.tmpl'
at the end of the template name. In this case, the string is assumed to be the full name of a template in the templates
directory, and the algorithm isn't used.
TWiki uses the following search order to determine which template file or topic to use for a particular script. The skin path is set as described in TWikiSkins.
For example, theLegend:
- templates/web/script.skin.tmpl for each skin on the skin path
this usage is supported for compatibility only and is deprecated. Store web-specific templates in TWiki topics instead.
- templates/script.skin.tmpl for each skin on the skin path
- templates/web/script.tmpl
this usage is supported for compatibility only and is deprecated. Store web-specific templates in TWiki topics instead.
- templates/script.tmpl
- The TWiki topic web.topic if the template name can be parsed into web.topic
- The TWiki topic web.SkinSkinScriptTemplate for each skin on the skin path
- The TWiki topic web.ScriptTemplate
- The TWiki topic TWiki.SkinSkinScriptTemplate for each skin on the skin path
- The TWiki topic TWiki.ScriptTemplate
- script refers to the script name, e.g
view
,edit
- Script refers to the same, but with the first character capitalized, e.g
View
- skin refers to a skin name, e.g
dragon
,pattern
. All skins are checked at each stage, in the order they appear in the skin path.- Skin refers to the same, but with the first character capitalized, e.g
Dragon
- web refers to the current web
example
template file will be searched for in the following places, when the current web is Thisweb
and the skin path is print,pattern
:templates/Thisweb/example.print.tmpl
deprecated; don't rely on ittemplates/Thisweb/example.pattern.tmpl
deprecated; don't rely on ittemplates/example.print.tmpl
templates/example.pattern.tmpl
templates/Thisweb/example.tmpl
deprecated; don't rely on ittemplates/example.tmpl
Thisweb.PrintSkinExampleTemplate
Thisweb.PatternSkinExampleTemplate
Thisweb.ExampleTemplate
TWiki.PrintSkinExampleTemplate
TWiki.PatternSkinExampleTemplate
TWiki.ExampleTemplate
view
and edit
scripts, for example when a topic-specific template is required. Two preference variables can be user to override the templates used:VIEW_TEMPLATE
sets the template to be used for viewing a topicEDIT_TEMPLATE
sets the template for editing a topic.view
and edit
respectively. The template search order is as specified above.
%TMPL:DEF
and %TMPL:END%
) to define common sections that appear in two or more other templates. twiki.tmpl
is the default master template.
Template variable: Defines: %TMPL:DEF{"sep"}% "|" separator %TMPL:DEF{"htmldoctype"}% Start of all HTML pages %TMPL:DEF{"standardheader"}% Standard header (ex: view, index, search) %TMPL:DEF{"simpleheader"}% Simple header with reduced links (ex: edit, attach, oops) %TMPL:DEF{"standardfooter"}% Footer, excluding revision and copyright parts %TMPL:DEF{"oops"}% Skeleton of oops dialog
When you create a new topic, TWiki locates a topic to use as a content template according to the following search order:
Topic Name: What it is: WebTopicViewTemplate Error page shown when you try to view a nonexistent topic WebTopicNonWikiTemplate Alert page shown when you try to view a nonexistent topic with a non-WikiName WebTopicEditTemplate Default text shown when you create a new topic.
templatetopic
CGI parameterThe
Variable: Description: %DATE%
Signature format date. See TWikiVariables#VarDATE %GMTIME%
Date/time. See TWikiVariables#VarGMTIME %GMTIME{...}%
Formatted date/time. See TWikiVariables#VarGMTIME2 %NOP%
A no-operation variable that gets removed. Useful to prevent a SEARCH from hitting an edit template topic; also useful to escape a variable like %URLPARAM%NOP%{...}%
%NOP{ ... }%
Text that gets removed when a new topic based on the template is created. See notes below. %SERVERTIME%
Date/time. See TWikiVariables#VarSERVERTIME %SERVERTIME{...}%
Formatted date/time. See TWikiVariables#VarSERVERTIME2 %USERNAME%
Login name of user who is instantiating the new topic, e.g. TWikiAdminGroup? %URLPARAM{"name"}%
Value of a named URL parameter %WIKINAME%
WikiName of user who is instantiating the new topic, e.g. TWikiAdminGroup %WIKIUSERNAME%
User name of user who is instantiating the new tpoic, e.g. Main.TWikiAdminGroup
NOP
tag is used to embed text that you do not want expanded when a new topic based on the template is created. For example, you might want to write in the template:
This template can only be changed by: * Set ALLOWTOPICCHANGE = WikiMastersGroupThis will restrict who can edit the template, but will get removed when a topic based on the template is created.
%NOP%
(or %NOP{}%
can be used to prevent expansion of TWiki variables that would otherwise be expanded during topic creation e.g. %SERVERTIME%
.
Notes:%NOP{ ... }%
can span multiple lines. }%
pattern is "non-greedy", that is, it stops at the first occurence. That means you have to protect variables with parameters located inside %NOP{ ... }%
. To do this, insert a %NOP%
between }
and %
. Example: %NOP{ %GMTIME{"$year"}%NOP%% }%
.templatetopic
specifies ExampleTopicTemplate as the template topic to use. Here is the HTML source of the form:
<form name="new" action="%SCRIPTURL{"edit"}%/%INTURLENCODE{"%WEB%"}%/"> * New example topic: <input type="text" name="topic" value="ExampleTopic%SERVERTIME{$yearx$mox$day}%" size="23" /> <input type="hidden" name="templatetopic" value="ExampleTopicTemplate" /> <input type="hidden" name="topicparent" value="%TOPIC%" /> <input type="hidden" name="onlywikiname" value="on" /> <input type="hidden" name="onlynewtopic" value="on" /> <input type="submit" class="twikiSubmit" value="Create" /> (date format is <nop>YYYYxMMxDD) </form>See TWikiScripts for details of the parameters that the
edit
script understands.
%WIKIUSERNAME%
and %DATE%
variables in your topic templates to include the signature of the person creating a new topic. The variables are expanded into fixed text when a new topic is created. The standard signature is: -- %WIKIUSERNAME% - %DATE%
[[%SCRIPTURL{"edit"}%/%WEB%/BugIDXXXXXXXXXX?templatetopic=BugTemplate&topicparent=%TOPIC%&t=%SERVERTIME{"$day$hour$min$sec"}%][Create new item]]
oopsbase.tmpl
and an example oops dialog oopstest.tmpl
based on the base template. %A% NOTE: This isn't the release version, just a quick, simple demo.
%TMPL:P{"sep"}%
%TMPL:DEF{"sep"}% | %TMPL:END% <html> <head> <title> %WIKITOOLNAME% . %WEB% . %TOPIC% %.TMPL:P{"titleaction"}%</title> <base href="%SCRIPTURL{"view"}%/%WEB%/%TOPIC%"> <meta name="robots" content="noindex"> </head> <body bgcolor="#FFFFFF"> <table width="100%" border="0" cellpadding="3" cellspacing="0"> <tr> <td bgcolor="%WEBBGCOLOR%" rowspan="2" valign="top" width="1%"> <a href="%WIKIHOMEURL%"> <img src="%PUBURLPATH%/wikiHome.gif" border="0"></a> </td> <td> <b>%WIKITOOLNAME% . %WEB% . </b><font size="+2"> <B>%TOPIC%</b> %TMPL:P{"titleaction"}%</font> </td> </tr> <tr bgcolor="%WEBBGCOLOR%"> <td colspan="2"> %TMPL:P{"webaction"}% </td> </tr> </table> --- ++ %TMPL:P{"heading"}% %TMPL:P{"message"}% <table width="100%" border="0" cellpadding="3" cellspacing="0"> <tr bgcolor="%WEBBGCOLOR%"> <td valign="top"> Topic <b>%TOPIC%</b> . { %TMPL:P{"topicaction"}% } </td> </tr> </table> </body>
</table > %TMPL:DEF{"titleaction"}% (test =titleaction=) %TMPL:END% %TMPL:DEF{"webaction"}% test =webaction= %TMPL:END% %TMPL:DEF{"heading"}% Test heading %TMPL:END% %TMPL:DEF{"message"}% Test =message=. Blah blah blah blah blah blah blah blah blah blah blah... * Some more blah blah blah blah blah blah blah blah blah blah... * Param1: %PARAM1% * Param2: %PARAM2% * Param3: %PARAM3% * Param4: %PARAM4% %TMPL:END% %TMPL:DEF{"topicaction"}% Test =topicaction=: [[%WEB%.%TOPIC%][OK]] %TMPL:P{"sep"}% [[%TWIKIWEB%.TWikiRegistration][Register]] %TMPL:END% %TMPL:INCLUDE{"oopsbase"}%Sample screen shot of oopstest.tmpl
With URL:.../bin/oops/Sandbox/TestTopic2?template=oopstest¶m1=WebHome¶m2=WebNotify
Related Topics: TWikiSkins, DeveloperDocumentationCategory, AdminDocumentationCategory
![]()
TWiki Skins
Skins overlay regular templates with alternate header/footer layouts; topic text is not affectedOverview
Skins are customized TWikiTemplates files. You can use skins to change the look of a TWiki topic, for example, the layout of the header and footer. Rendered text between header and footer does not change. You can also use skins to define an alternate view, like a view optimized for printing.Defining Skins
Skin files are located in thetwiki/templates
directory and are named with the syntax:<scriptname>.<skin>.tmpl
. For example, the Printable skin for theview
template isview.print.tmpl
. Skin files may also be defined in TWiki topics - see TWikiTemplates for details. Use the existing TWikiTemplates (likeview.tmpl
) or skin files as a base for your own skin, name it for exampleview.myskin.tmpl
.Note: Two skin names have reserved meanings;
text
skin, and skin names starting withrss
have hard-coded meanings. The following template files are referenced in the TWiki core code, and must be defined in thetemplates
directory for a skin to work. Remember that if a skin doesn't define a template, then TWiki will fall back to the default version of the file. Certain template files are expected to provide certain TMPL:DEFs - these are listed in sub-bullets.
addform
attachagain
attachnew
attachtables
ATTACH:files:footer
,ATTACH:files:header
,ATTACH:files:row
,ATTACH:versions:footer
,ATTACH:versions:header
,ATTACH:versions:row
changeform
changes
edit
form
formtables
FORM:display:footer
,FORM:display:header
,FORM:display:row
login
LOG_IN
,LOG_IN_BANNER
,LOG_OUT
,LOGGED_IN_BANNER
,NEW_USER_NOTE
,UNRECOGNISED_USER
mirrorlink
mirrornote
moveattachment
oopsaccessdenied
no_such_topic
,no_such_web
,only_group
,topic_access
oopsattention
already_exists
,bad_email
,bad_ver_code
,bad_wikiname
,base_web_missing
,confirm
,created_web
,delete_err
,illegally_named_upload
,invalid_web_color
,invalid_web_name
,in_a_group
,mandatory_field
,merge_notice
,missing_action
,missing_fields
,move_err
,missing_action
,no_form_def
,no_users_to_reset
,notwikiuser
,oversized_upload
,password_changed
,password_mismatch
,problem_adding
,remove_user_done
,rename_err
,rename_not_wikiword
,rename_topic_exists
,rename_web_err
,rename_web_exists
,rename_web_prerequisites
,reset_bad
,reset_ok
,save_error
,send_mail_error
,thanks
,topic_exists
,unrecognized_action
,web_creation_error
,web_exists
,web_missing
,wrong_password
,zero_size_upload
oopsleaseconflict
active
,old
oopsmirror
oopssaveerr
preview
rdiff
registernotify
registernotifyadmin
rename
renameconfirm
renamedelete
renameweb
renamewebconfirm
renamewebdelete
searchbookview
searchformat
search
settings
view
twiki.tmpl
is a master template conventionally used by other templates, but not used directly by code.Variables in Skins
You can use template variables, TWikiVariables, and other predefined variables to compose your skins. Some commonly used variables in skins:
Variable: Expanded to: %WEBLOGONAME%
Filename of web logo %WEBLOGOIMG%
Image URL of web logo %WEBLOGOURL%
Link of web logo %WEBLOGOALT%
Alt text of web logo %WIKILOGOURL%
Link of page logo %WIKILOGOIMG%
Image URL of page logo %WIKILOGOALT%
Alt text of page logo %WEBBGCOLOR%
Web-specific background color, defined in the WebPreferences %WIKITOOLNAME%
The name of your TWiki site %SCRIPTURL%
The script URL of TWiki %SCRIPTSUFFIX%
The script suffix, ex: .pl
,.cgi
%WEB%
The name of the current web. Note: It is recommended to URL-encode the variable in form actions with %INTURLENCODE{"%WEB%"}%
for proper handling in an internationalized environment%TOPIC%
The name of the current topic. Note: It is recommended to URL-encode the variable in form actions with %INTURLENCODE{"%TOPIC%"}%
for proper handling in an internationalized environment%WEBTOPICLIST%
Common links of current web, defined in the WebPreferences. It includes a Go box %TEXT%
The topic text, e.g. the content that can be edited %META{"form"}%
TWikiForm, if any %META{"attachments"}%
FileAttachment table %META{"parent"}%
The topic parent %EDITTOPIC%
Edit link %REVTITLE%
The revision title, if any, ex: (r1.6)
%REVINFO%
Revision info, ex: r1.6 - 24 Dec 2002 - 08:12 GMT - TWikiAdminGroup
%WEBCOPYRIGHT%
Copyright notice, defined in the WebPreferences %BROADCASTMESSAGE%
Broadcast message at the beginning of your view template, can be used to alert users of scheduled downtimes; is set in TWikiPreferences The "Go" Box and Navigation Box
The%WEBTOPICLIST%
includes a "Go" box, also called "Jump" box, to jump to a topic. The box also understands URLs, e.g. you can type http://www.google.com/ to jump to an external web site. The feature is handy if you build a skin that has a select box of frequently used links, like Intranet home, employee database, sales database and such. A little JavaScript gets into action on the onSelect method of the select tag to fill the selected URL into the "Go" box field, then submits the form. Here is an example form that has a select box and the "Go" box for illustration purposes. You need to have JavaScript enabled for this to work:Using Cascading Style Sheets
Although work is underway at TWiki:Codev.CssClassNames, the regular templates files currently do not use style sheets. Many skin developers, however, choose to use them; it helps in separating style from content. Example: To use a style sheet for the broadcast message, add this toview.myskin.tmpl
:<style type="text/css"> .broadcastmessage { background: yellow; display:block; border-style:solid;border-width: 2px;border-color:red; } .broadcastmessage strong {color: red} </style>Then add a div tag to the%BROADCASTMESSAGE%
variable located after the#PageTop
anchor or after the opening form tag:<div class="broadcastmessage"> %BROADCASTMESSAGE% </div>Attachment Tables
Controlling the look and feel of attachment tables is a little bit more complex than for the rest of a skin. By default the attachment table is a standard TWiki table, and the look is controlled in the same way as other tables. In a very few cases you may want to change the content of the table as well. The format of standard attachment tables is defined through the use of special TWiki template macros which by default are defined in thetemplates/twiki.tmpl
template using the%TMPL:DEF
macro syntax described in TWikiTemplates. These macros are:The format of tables of file versions in the Upload screen are also formattable, using the macros:
Macro Description ATTACH:files:header
Standard title bar ATTACH:files:row
Standard row ATTACH:files:footer
Footer for all screens ATTACH:files:header:A
Title bar for upload screens, with attributes column ATTACH:files:row:A
Row for upload screen ATTACH:files:footer:A
Footer for all screens The
Macro Description ATTACH:versions:header
Header for versions table on upload screen ATTACH:versions:row
Row format for versions table on upload screen ATTACH:versions:footer
Footer for versions table on upload screen ATTACH:row
macros are expanded for each file in the attachment table, using the following special tags:Note: it is easy to change the look and feel for an entire site by editing the
Tag Description %A_URL%
URL that will recover the file %A_REV%
Revision of this file %A_ICON%
A file icon suitable for representing the attachment content %A_FILE%
The name of the file %A_SIZE%
The size of the file %A_DATE%
The date the file was uploaded %A_USER%
The user who uploaded it %A_COMMENT%
The comment they put in when uploading it %A_ATTRS%
The attributes of the file as seen on the upload screen e.g "h" for a hidden file twiki.tmpl
template file. However, to simplify upgrading, you should avoid doing this. Instead, write a skin-specific template file e.g.attach.myskin.tmpl
and use%TMPL:INCLUDE{attach.myskin.tmpl}%
to include it in each of your skin files. As long as it is included after twiki.tmpl, your macro definitions will override the defaults defined there.Packaging and Publishing Skins
See TWiki:Plugins/SkinPackagingHowTo and TWiki:Plugins/SkinDeveloperFAQBrowsing Installed Skins
You can try all installed skins in TWikiSkinBrowser.Activating Skins
TWiki uses a skin search path, which lets you combine skins additively. The skin path is defined using a combination of TWikiVariables and URL parameters. TWiki works by asking for a template for a particular function - for example, 'view'. The detail of how templates are searched for is described in TWikiTemplates, but in summary, the templates directory is searched for a file calledview.
skin.tmpl
, where skin is the name of the skin e.g.pattern
. If no template is found, then the fallback is to useview.tmpl
. Each skin on the path is searched for in turn. For example, if you have set the skin path tolocal,pattern
thenview.local.tmpl
will be searched for first, thenview.pattern.tmpl
and finallyview.tmpl
. The basic skin is defined by setting the%SKIN%
TWiki Variable:You can also add a parameter to the URL, such as
Set SKIN = catskin, bearskin
?skin=catskin, bearskin
. Example activation of PlainSkin that removes all page decoration: Setting%SKIN%
(or the?skin
parameter in the URL) replaces the existing skin path setting. You can also extend the existing skin path as well, using covers.This pushes a different skin to the front of the skin search path (so for our example above, that final skin path will be
Set COVER = ruskin
ruskin, catskin, bearskin
). There is also an equivalentcover
URL parameter. The full skin path is built up as follows:%SKIN%
(or?skin
if it is set), then%COVER%
is added, then?cover
.Hard Coded Skins
Thetext
skin is reserved for TWiki internal use. Skin names starting withrss
also have a special meaning; if one or more of the skins in the skin path starts with 'rss' then 8-bit characters will be encoded as XML entities in the output, and thecontent-type
header will be forced totext/xml
. Related Topics: AdminDocumentationCategory, DeveloperDocumentationCategory
TWiki Formatted Search Results
Inline search feature allows flexible formatting of search result The default output format of a%SEARCH{...}%
is a table consisting of topic names and topic summaries. Use theformat="..."
parameter to customize the search result. The format parameter typically defines a bullet or a table row containing variables, such as%SEARCH{ "food" format="| $topic | $summary |" }%
.Syntax
Two parameters can be used to specify a customized search result: 1.header="..."
parameter Use the header parameter to specify the header of a search result. It should correspond to the format of the format parameter. This parameter is optional.
Example:header="| *Topic:* | *Summary:* |"
2.format="..."
parameter Use the format parameter to specify the format of one search hit.
Example:format="| $topic | $summary |"
Variables that can be used in the format string:
Name: Expands To: $web
Name of the web $topic
Topic name $topic(20)
Topic name, "- " hyphenated each 20 characters $topic(30, -<br />)
Topic name, hyphenated each 30 characters with separator "-<br />" $topic(40, ...)
Topic name, shortended to 40 characters with "..." indication $parent
Name of parent topic; empty if not set $parent(20)
Name of parent topic, same hyphenation/shortening like $topic()
$text
Formatted topic text. In case of a multiple="on"
search, it is the line found for each search hit.$locked
LOCKED flag (if any) $date
Time stamp of last topic update, e.g. 17 Dec 2005 - 13:32
$isodate
Time stamp of last topic update, e.g. 2005-12-17T13:32Z
$rev
Number of last topic revision, e.g. 4
$username
Login name of last topic update, e.g. jsmith
$wikiname
Wiki user name of last topic update, e.g. JohnSmith
$wikiusername
Wiki user name of last topic update, like Main.JohnSmith
$createdate
Time stamp of topic revision 1 $createusername
Login name of topic revision 1, e.g. jsmith
$createwikiname
Wiki user name of topic revision 1, e.g. JohnSmith
$createwikiusername
Wiki user name of topic revision 1, e.g. Main.JohnSmith
$summary
Topic summary, just the plain text, all formatting and line breaks removed; up to 162 characters $summary(50)
Topic summary, up to 50 characters shown $summary(showvarnames)
Topic summary, with %ALLTWIKI{...}%
variables shown asALLTWIKI{...}
$summary(noheader)
Topic summary, with leading ---+ headers
removed
Note: The tokens can be combined, for example$summary(100, showvarnames, noheader)
$summary
Summary of changes between latest rev and previous rev $summary(n)
Summary of changes between latest rev and rev n $formname
The name of the form attached to the topic; empty if none $formfield(name)
The field value of a form field; for example, $formfield(TopicClassification)
would get expanded toPublicFAQ
. This applies only to topics that have a TWikiForm$formfield(name, 10)
Form field value, "- " hyphenated each 10 characters $formfield(name, 20, -<br />)
Form field value, hyphenated each 20 characters with separator "-<br />" $formfield(name, 30, ...)
Form field value, shortended to 30 characters with "..." indication $pattern(reg-exp)
A regular expression pattern to extract some text from a topic (does not search meta data; use $formfield
instead). In case of amultiple="on"
search, the pattern is applied to the line found in each search hit.
• Specify a RegularExpression that covers the whole text (topic or line), which typically starts with.*
, and must end in.*
• Put text you want to keep in parenthesis, like$pattern(.*?(from here.*?to here).*)
• Example:$pattern(.*?\*.*?Email\:\s*([^\n\r]+).*)
extracts the email address from a bullet of format* Email: ...
• This example has non-greedy.*?
patterns to scan for the first occurance of the Email bullet; use greedy.*
patterns to scan for the last occurance
• Limitation: Do not use.*)
inside the pattern, e.g.$pattern(.*foo(.*)bar.*)
does not work, but$pattern(.*foo(.*?)bar.*)
does
• Note: Make sure that the integrity of a web page is not compromised; for example, if you include an HTML table make sure to include everything including the table end tag$count(reg-exp)
Count of number of times a regular expression pattern appears in the text of a topic (does not search meta data). Follows guidelines for use and limitations outlined above under $pattern(reg-exp)
. Example:$count(.*?(---[+][+][+][+]) .*)
counts the number of <H4> headers in a page.$n
or$n()
New line. Use $n()
if followed by alphanumeric character, e.g. writeFoo$n()Bar
instead ofFoo$nBar
$nop
or$nop()
Is a "no operation". This variable gets removed; useful for nested search $quot
Double quote ( "
). Alternatively write\"
to escape it$percnt
Percent sign ( %
)$dollar
Dollar sign ( $
)Examples
Bullet list showing topic name and summary
Write this:%SEARCH{ "FAQ" scope="topic" nosearch="on" nototal="on" header=" * *Topic: Summary:*" format=" * [[$topic]]: $summary" }%
To get this:
- Topic: Summary:
- TWikiFAQ: Frequently Asked Questions About TWiki This is a real FAQ, and also a demo of one easily implemented knowledge base solution. See how it's done, click Edit . ...
- TWikiFaqTemplate: FAQ: Answer: Back to: TWikiFAQ
- TextFormattingFAQ: Text Formatting FAQ The most frequently asked questions about text formatting are answered. Also, TextFormattingRules contains the complete TWiki shorthand system ...
Table showing form field values of topics with a form
In a web where there is a form that contains aTopicClassification
field, anOperatingSystem
field and anOsVersion
field we could write:| *Topic:* | *OperatingSystem:* | *OsVersion:* |
%SEARCH{ "[T]opicClassification.*?value=\"[P]ublicFAQ\"" scope="text" regex="on" nosearch="on" nototal="on" format="| [[$topic]] | $formfield(OperatingSystem) | $formfield(OsVersion) |" }%
To get this:
Topic: OperatingSystem: OsVersion: IncorrectDllVersionW32PTH10DLL OsWin 95/98 WinDoze95Crash OsWin 95 Extract some text from a topic using regular expression
Write this:%SEARCH{ "__Back to\:__ TWikiFAQ" scope="text" regex="on" nosearch="on" nototal="on" header="TWiki FAQs:" format=" * $pattern(.*?FAQ\:[\n\r]*([^\n\r]+).*) [[$topic][Answer...]]" }%
To get this: TWiki FAQs:
- How can I create a simple TWiki Form based application? Answer...
- How do I delete or rename a topic? Answer...
- How do I delete or rename a file attachment? Answer...
- Why does the topic revision not increase when I edit a topic? Answer...
- TWiki has a GPL (GNU General Public License). What is GPL? Answer...
- I've problems with the WebSearch. There is no Search Result on any inquiry. By clicking the Index topic it's the same problem. Answer...
- What happens if two of us try to edit the same topic simultaneously? Answer...
- I would like to install TWiki on my server. Can I get the source? Answer...
- So what is this WikiWiki thing exactly? Answer...
- Everybody can edit any page, this is scary. Doesn't that lead to chaos? Answer...
Nested Search
Search can be nested. For example, search for some topics, then form a new search for each topic found in the first search. The idea is to build the nested search string using a formatted search in the first search. Here is an example. Let's search for all topics that contain the word "culture" (first search), and let's find out where each topic found is linked from (second search).Write this:
- First search:
%SEARCH{ "culture" format=" * $topic is referenced by: (list all references)" nosearch="on" nototal="on" }%
- Second search. For each hit we want this search:
%SEARCH{ "(topic found in first search)" format="$topic" nosearch="on" nototal="on" separator=", " }%
- Now let's nest the two. We need to escape the second search, e.g. the first search will build a valid second search string. Note that we escape the second search so that it does not get evaluated prematurely by the first search:
- Use
$percnt
to escape the leading percent of the second search- Use
\"
to escape the double quotes- Use
$dollar
to escape the$
of$topic
- Use
$nop
to escape the}%
sequence%SEARCH{ "culture" format=" * $topic is referenced by:$n * $percntSEARCH{ \"$topic\" format=\"$dollartopic\" nosearch=\"on\" nototal=\"on\" separator=\", \" }$nop%" nosearch="on" nototal="on" }%
To get this:Note: Nested search can be slow, especially if you nest more then 3 times. Nesting is limited to 16 levels. For each new nesting level you need to "escape the escapes", e.g. write
- ATasteOfTWiki is referenced by:
- FormattedSearch is referenced by:
- DakarReleaseNotes, EditTablePlugin, EmptyPlugin, HeadlinesPlugin, ManagingWebs, PreferencesPlugin, RenderListPlugin, SearchHelp, SearchPatternCookbook, SlideShowPlugin, SpreadSheetPlugin, TWikiDocumentation, TWikiForms, TWikiHistory, TWikiReferenceManual, TWikiScripts, TWikiSiteTools, TWikiUpgradeTo01Dec2001, TWikiUpgradeTo01Feb2003, TWikiVariablesAtoM, TWikiVariablesNtoZ, TextFormattingRules, WelcomeGuest
- TWikiAccessControl is referenced by:
- EditTablePlugin, FileAttachment, MainFeatures, ManagingTopics, ManagingUsers, SitePermissions, TWikiAccessControl, TWikiDocumentation, TWikiForms, TWikiHistory, TWikiPreferences, TWikiReferenceManual, TWikiScripts, TWikiSiteTools, TWikiTopics, TWikiTutorial, TWikiUpgradeTo01Dec2000, TWikiUpgradeTo01Dec2001, TWikiUserAuthentication, TWikiVariables, WebPreferences, WebPreferencesHelp, WelcomeGuest, WikiCulture, WikiWord
- TWikiSite is referenced by:
- AdminToolsCategory, InstantEnhancements, InterwikiPlugin, ManagingWebs, StartingPoints, TWikiDocumentation, TWikiGlossary, TWikiInstallationGuide, TWikiPreferences, TWikiReferenceManual, TWikiRegistration, TWikiSite, TWikiTopics, TWikiTutorial, TWikiUpgradeTo01Dec2000, TWikiUsersGuide, WabiSabi, WebLeftBar, WebSiteTools, WelcomeGuest, WhatIsWikiWiki, WikiCulture, WikiReferences
- WabiSabi is referenced by:
- WelcomeGuest is referenced by:
- WikiCulture is referenced by:
$dollarpercntSEARCH{
for level three,$dollardollarpercntSEARCH{
for level four, etc.Most recently changed pages
Write this:%SEARCH{ "\.*" scope="topic" regex="on" nosearch="on" nototal="on" order="modified" reverse="on" format="| [[$topic]] | $wikiusername | $date |" limit="7" }%
To get this:
TWikiScripts TWikiGuest 17 Dec 2005 - 11:55 TWikiDocGraphics TWikiGuest 17 Dec 2005 - 11:55 RenameWeb TWikiGuest 17 Dec 2005 - 11:55 IfStatements TWikiGuest 17 Dec 2005 - 11:55 TWikiAccessControl TWikiContributor 11 Nov 2005 - 14:23 TWikiVariablesNtoZ TWikiContributor 27 Oct 2005 - 01:50 TWikiVariablesAtoM TWikiContributor 27 Oct 2005 - 01:05 Search with conditional output
A regular expression search is flexible, but there are limitations. For example, you cannot show all topics that are up to exactly one week old, or create a report that shows all records with invalid form fields or fields within a certain range, etc. You need some additional logic to format output based on a condition:This requires the TWiki:Plugins.SpreadSheetPlugin. The following example shows all topics that are up to exactly one week old. Write this:
- Specify a search which returns more hits then you need
- For each search hit apply a spreadsheet formula to determine if the hit is needed
- If needed, format and output the result
- Else supress the search hit
%CALC{$SET(weekold, $TIMEADD($TIME(), -7, day))}%
%SEARCH{ "." scope="topic" regex="on" nosearch="on" nototal="on" order="modified" reverse="on" format="$percntCALC{$IF($TIME($date) < $GET(weekold), <nop>, | [[$topic]] | $wikiusername | $date | $rev |)}$percnt" limit="100" }%
To get this:
- The first line sets the
weekold
variable to the serialized date of exactly one week ago- The SEARCH has a deferred CALC. The
$percnt
makes sure that the CALC gets executed once for each search hit- The CALC compares the date of the topic with the
weekold
date- If topic is older, a
<nop>
is returned, which gets removed at the end of the TWiki rendering process- Otherwise, the search hit is formatted and returned
TWikiScripts TWikiGuest 17 Dec 2005 - 11:55 1 TWikiDocGraphics TWikiGuest 17 Dec 2005 - 11:55 1 RenameWeb TWikiGuest 17 Dec 2005 - 11:55 1 IfStatements TWikiGuest 17 Dec 2005 - 11:55 1 DakarReleaseNotes TWikiGuest 17 Dec 2005 - 11:55 1 TWikiPreferencesForm TWikiGuest 17 Dec 2005 - 11:54 1 WebLeftBarSearch TWikiGuest 17 Dec 2005 - 11:54 1 PatternSkinCssCookbookEditTableStyle ArthurClemens? 10 Dec 2005 - 21:11 2 Embedding search forms to return a formatted result
Use an HTML form and an embedded formatted search on the same topic. You can link them together with an%URLPARAM{"..."}%
variable. Example: Write this:<form action="%SCRIPTURL{"view"}%/%WEB%/%TOPIC%"> Find Topics: <input type="text" name="q" size="32" value="%URLPARAM{"q"}%" /> <input type="submit" class="twikiSubmit" value="Search" /> </form> Result: %SEARCH{ search="%URLPARAM{"q"}%" format=" * $web.$topic: %BR% $summary" nosearch="on" }%To get this: Result: Number of topics: 0 Related Topics: UserDocumentationCategory
TWiki Meta Data
Additional topic data, program-generated or from TWikiForms, is stored inMETA
variable name/value pairsOverview
TWikiMetaData usesMETA
variables to store topic data that's separate from the main free-form content. This includes program-generated info like FileAttachment and topic movement data, and user-defined TWikiForms info. UseMETA
variables to format and display Meta Data.Meta Data Syntax
- Format is the same as in TWikiVariables, except all fields have a key.
%META:<type>{key1="value1" key2="value2" ...}%
- Order of fields within the meta variables is not defined, except that if there is a field with key
name
, this appears first for easier searching (note the order of the variables themselves is defined).
- Each meta variable is on one line.
\n
(new line) is represented in values by%_N_
and"
(double-quotes) by%_Q_%
.Example of Format%META:TOPICINFO{version="1.6" date="976762663" author="LastEditorWikiName" format="1.0"}% text of the topic %META:TOPICMOVED{from="Codev.OldName" to="Codev.NewName" by="TopicMoverWikiName" date="976762680"}% %META:TOPICPARENT{name="NavigationByTopicContext"}% %META:FILEATTACHMENT{name="Sample.txt" version="1.3" ... }% %META:FILEATTACHMENT{name="Smile.gif" version="1.1" ... }% %META:FORM{name="WebFormTemplate"}% %META:FIELD{name="OperatingSystem" value="OsWin"}% %META:FIELD{name="TopicClassification" value="PublicFAQ"}%Meta Data Specifications
The current version of Meta Data is 1.0, with support for the following variables.META:TOPICINFO
Key Comment version Same as RCS version date integer, unix time, seconds since start 1970 author last to change topic, is the REMOTE_USER format Format of this topic, will be used for automatic format conversion META:TOPICMOVED
This is optional, exists if topic has ever been moved. If a topic is moved more than once, only the most recent META:TOPICMOVED meta variable exists in the topic, older ones are to be found in the rcs history.%META:TOPICMOVED{from="Codev.OldName" to="Codev.NewName" by="talintj" date="976762680"}%
Notes:
Key Comment from Full name, i.e., web.topic to Full name, i.e., web.topic by Who did it, is the REMOTE_USER, not WikiName date integer, unix time, seconds since start 1970
- at present version number is not supported directly, it can be inferred from the RCS history.
- there is only one META:TOPICMOVED in a topic, older move information can be found in the RCS history.
META:TOPICPARENT
Key Comment name The topic from which this was created, WebHome if done from Go
, othewise topic where?
or form used. Normally just topic, but is full web.topic format if parent is in a different Web. Renaming a Web will then only break a few of these references or they can be scanned and fixed.META:FILEATTACHMENT
Extra fields that are added if an attachment is moved:
Key Comment name Name of file, no path. Must be unique within topic version Same as RCS revision path Full path file was loaded from size In bytes date integer, unix time, seconds since start 1970 user the REMOTE_USER, not WikiName comment As supplied when file uploaded attr h
if hidden, optional
Key Comment movedfrom full topic name - web.topic movedby the REMOTE_USER, not WikiName movedto full topic name - web.topic moveddate integer, unix time, seconds since start 1970 META:FORM
Key Comment name A topic name - the topic represents one of the TWikiForms. Can optionally include the web name (i.e., web.topic), but doesn't normally META:FIELD
Should only be present if there is a META:FORM entry. Note that this data is used when viewing a topic, the form template definition is not read.
Key Name name Ties to entry in TWikiForms template, is title with all bar alphanumerics and . removed title Full text from TWikiForms template value Value user has supplied via form Recommended Sequence
There is no absolute need for Meta Data variables to be listed in a specific order within a topic, but it makes sense to do so a couple of good reasons:The recommended sequence is:
- form fields remain in the order they are defined
- the
diff
function output appears in a logical order
META:TOPICINFO
META:TOPICPARENT
(optional)- text of topic
META:TOPICMOVED
(optional)META:FILEATTACHMENT
(0 or more entries)META:FORM
(optional)META:FIELD
(0 or more entries; FORM required)Viewing Meta Data in Page Source
When viewing a topic theRaw Text
link can be clicked to show the text of a topic (i.e., as seen when editing). This is done by addingraw=on
to URL.raw=debug
shows the meta data as well as the topic data, ex: debug view for this topicRendering Meta Data
Meta Data is rendered with the %META% variable. This is mostly used in theview
,preview
andedit
scripts. You can render form fields in topic text by using the FORMFIELD variable. Example:
%FORMFIELD{"TopicClassification"}%
For details, see TWikiVariables#VarFORMFIELD. Current support covers:
Variable usage: Comment: %META{"form"}%
Show form data, see TWikiForms. %META{"formfield"}%
Show form field value. Parameter: name="field_name"
. Example:
%META{ "formfield" name="TopicClassification" }%
%META{"attachments"}%
Show attachments, except for hidden ones. Options:
all="on"
: Show all attachments, including hidden ones.%META{"moved"}%
Details of any topic moves. %META{"parent"}%
Show topic parent. Options:
dontrecurse="on"
: By default recurses up tree, at some cost.
nowebhome="on"
: Suppress WebHome.
prefix="..."
: Prefix for parents, only if there are parents, default""
.
suffix="..."
: Suffix, only appears if there are parents, default""
.
separator="..."
: Separator between parents, default is" > "
.Known Issues
At present, there is no Meta Data support for Plugins. However, the format is readily extendable and theMeta.pm
code that supports the format needs only minor alteration. Related Topics: DeveloperDocumentationCategory, UserDocumentationCategory
TWiki Plugins
Plug-in enhanced feature add-ons, with a Plugin API for developersOverview
You can add Plugins to extend TWiki functionality, without altering the core code. A plug-in approach lets you:Everything to do with TWiki Plugins - demos, new releases, downloads, development, general discussion - is available at TWiki.org, in the TWiki:Plugins web. TWiki plugins are developed and contributed by interested members of the community. Plugins are provided on an 'as is' basis; they are not a part of TWiki, but are independently developed and maintained.
- add virtually unlimited features while keeping the main TWiki code compact and efficient;
- heavily customize an installation and still do clean updates to new versions of TWiki;
- rapidly develop new TWiki functions in Perl using the Plugin API.
Installing Plugins
Each TWiki Plugin comes with its own documentation: Step-by-step installation instructions, a detailed description of any special requirements, version details, and a working example for testing. Many plugins have an install script that automates these steps for you. Special Requests: Some Plugins need certain Perl modules to be preinstalled on the host system. Plugins may also use other resources, like graphics, other modules, applications, templates. You should be able to find detailed instructions are in the Plugin documentation. Each Plugin has a standard release topic, located in the TWiki:Plugins web at TWiki.org. There's usually a number of other related topics, such as a developers page, and an appraisal page.On-Site Pretesting
The recommended approach to testing new Plugins before making them public is to create a second local TWiki installation, and test the plugin there. You can allow selected users access to the test area. Once you are satisifed that it won't compromise your main installation, you can install it there as well. InstalledPlugins shows which Plugins are: 1) installed, 2) loading properly and 3) what TWiki:Codev.PluginHandlers they invoke. Any failures are shown in the Errors section. The%FAILEDPLUGINS%
variable can be used to debug failures. You may also want to check your webserver error log and the various TWiki log files.Some Notes on Plugin Performance
The performance of the system depends to some extent on the number of Plugins installed and on the Plugin implementation. Some Plugins impose no measurable performance decrease, some do. For example, a Plugin might use many Perl libraries that need to be initialized with each page view (unless you run mod_perl). You can only really tell the performance impact by installing the Plugin and by measuring the performance with and without the new Plugin. Use the TWiki:Plugins.PluginBenchmarkAddOn, or test manually with the Apacheab
utility. Example on Unix:
time wget -qO /dev/null http://scoobydoo/CLEAN/bin/view/TWiki/AbcPlugin
If you need to install an "expensive" Plugin, and you need its functionality only in one web, you can place the Plugin topic into that web. TWiki will initialize the Plugin only if the Plugin topic is found (which won't be the case for other webs.)
Managing Installed Plugins
Some Plugins require additional settings or offer extra options that you have to select. Also, you may want to make a Plugin available only in certain webs, or temporarily disable it. And may want to list all available Plugins in certain topics. You can handle all of these management tasks with simple procedures.Enabling Plugins
Plugins can be enabled and disabled with the configure script. An installed Plugin needs to be enabled before it can be used.Plugin Evaluation Order
By default, TWiki executes Plugins in alphabetical oder on Plugin name. It is possible to change the order, for example to evaluate a database variables before the speadsheet CALCs. This can be done with the configure script.Plugin Specific Settings
Plugin-specific settings are done in individual Plugin topics. Two settings are standard for each Plugin:
- One line description, used to form the bullets describing the Plugins in the TextFormattingRules topic:
Set SHORTDESCRIPTION = Create dynamic foo bar reports
- Debug Plugin, output can be seen in
data/debug.txt
. Set to 0=off or 1=on:
Set DEBUG = 0
- The settings can be retrieved as Preferences variables like
%<pluginname>_<var>%
. For example,%DEFAULTPLUGIN_SHORTDESCRIPTION%
shows the description of the DefaultPlugin.Listing Active Plugins
Plugin status variables let you list all active Plugins wherever needed.On this TWiki site, the enabled Plugins are: CommentPlugin, EditTablePlugin, InterwikiPlugin, PreferencesPlugin, SlideShowPlugin, SmiliesPlugin, SpreadSheetPlugin, TablePlugin.
%ACTIVATEDPLUGINS%
%PLUGINDESCRIPTIONS%
- CommentPlugin (Dakar, 6827): Allows users to quickly post comments to a page without an edit/preview/save cycle.
- EditTablePlugin (Dakar, 6827): Edit TWiki tables using edit fields, date pickers and drop down boxes
- InterwikiPlugin (Dakar, $Rev$): Link
ExternalSite:Page
text to external sites based on aliases defined in the %RULESTOPIC% topic- PreferencesPlugin (Dakar, 6827): Allows editing of preferences using fields predefined in a form
- SlideShowPlugin (Dakar, $Rev$): Create web based presentations based on topics with headings.
- SmiliesPlugin (Dakar, 6827): Render smilies as icons, like
:-)
foror
:cool:
for :cool:- SpreadSheetPlugin (Dakar, 6827): Add spreadsheet calculation like
"$SUM( $ABOVE() )"
to tables located in TWiki topics.- TablePlugin (Dakar, 6850): Control attributes of tables and sorting of table columns
%FAILEDPLUGINS%
Plugin Errors CommentPlugin none EditTablePlugin none InterwikiPlugin none PreferencesPlugin none SlideShowPlugin none SmiliesPlugin none SpreadSheetPlugin none TablePlugin none 8 plugins
Handler Plugins afterAttachmentSaveHandler afterCommonTagsHandler afterEditHandler afterSaveHandler beforeAttachmentSaveHandler beforeCommonTagsHandler beforeEditHandler beforeSaveHandler CommentPlugin commonTagsHandler CommentPlugin
EditTablePlugin
SlideShowPlugin
SmiliesPlugin
SpreadSheetPluginearlyInitPlugin endRenderingHandler initPlugin CommentPlugin
EditTablePlugin
InterwikiPlugin
PreferencesPlugin
SlideShowPlugin
SmiliesPlugin
SpreadSheetPlugin
TablePlugininitializeUserHandler insidePREHandler modifyHeaderHandler mergeHandler outsidePREHandler postRenderingHandler EditTablePlugin
PreferencesPluginpreRenderingHandler InterwikiPlugin
PreferencesPlugin
SmiliesPlugin
TablePluginredirectCgiQueryHandler registrationHandler renderFormFieldForEditHandler renderWikiWordHandler startRenderingHandler writeHeaderHandler The TWiki Plugin API
The Application Programming Interface (API) for TWiki Plugins provides the specifications for hooking into the core TWiki code from your external Perl Plugin module.Available Core Functions
The TWikiFuncDotPm? module (lib/TWiki/Func.pm
) describes all the interfaces available to Plugins. Plugins should only use the interfaces described in this module.Note: If you use other core functions not described in
Func.pm
, you run the risk of creating security holes. Also, your Plugin will likely break and require updating when you upgrade to a new version of TWiki.Predefined Hooks
In addition to TWiki core functions, Plugins can use predefined hooks, or call backs, as described in thelib/TWiki/Plugins/EmptyPlugin.pm
module.TWiki:Codev/StepByStepRenderingOrder helps you decide which rendering handler to use.
- All but the initPlugin are disabled. To enable a call back, remove
DISABLE_
from the function name.Hints on Writing Fast Plugins
- Delay initialization as late as possible. For example, if your plugin is a simple syntax processor, you might delay loading extra Perl modules until you actually see the syntax in the text.
- For example, use an
eval
block like this:
eval { require IPC::Run }
return "<font color=\"red\">SamplePlugin: Can't load required modules ($@)</font>" if $@;
- You can use a flag to avoid running the initialization twice
- The TWiki:Plugins.PluginBenchmarkAddOn comes in handy to measure and fine-tune the performance of your Plugin
Plugin Version Detection
To eliminate the incompatibility problems bound to arise from active open Plugin development, a Plugin versioning system is provided for automatic compatibility checking.
- All modules require a
$VERSION='0.000'
variable, beginning at1.000
.
- The
initPlugin
handler should check all dependencies and return TRUE if the initialization is OK or FALSE if something went wrong.
- The Plugin initialization code does not register a Plugin that returns FALSE (or that has no
initPlugin
handler).
$TWiki::Plugins::VERSION
in theTWiki::Plugins
module contains the TWiki Plugin API version, currently 1.1.
- You can also use the
%PLUGINVERSION{}%
variable to query the Plugin API version or the version of installed Plugins.Security
- Badly written plugins can open huge security holes in TWiki. This is especially true if care isn't taken to prevent execution of arbitrary commands on the server.
- Don't allow sensitive configuration data to be edited by users. it is better to add sensitive configuration options to the TWiki::cfg hash than adding it as preferences in the plugin topic
- See TWiki:Plugins.MailInContrib for an example of this
- TWiki:Plugins.BuildContrib can help you with this
- Always use the TWiki::Sandbox to execute commands.
- Always audit the plugins you install, and make sure you are happy with the level of security provided. While every effort is made to monitor plugin authors activities, at the end of the day they are uncontrolled user contributions.
Creating Plugins
With a reasonable knowledge of the Perl scripting language, you can create new Plugins or modify and extend existing ones. Basic plug-in architecture uses an Application Programming Interface (API), a set of software instructions that allow external code to interact with the main program. The TWiki Plugin API Plugins by providing a programming interface for TWiki.Anatomy of a Plugin
A basic TWiki Plugin consists of two elements:The Perl module can be a block of code that connects with TWiki alone, or it can include other elements, like other Perl modules (including other Plugins), graphics, TWiki templates, external applications (ex: a Java applet), or just about anything else it can call. In particular, files that should be web-accessible (graphics, Java applets ...) are best placed as attachments of the
- a Perl module, ex:
MyFirstPlugin.pm
- a documentation topic, ex:
MyFirstPlugin.txt
MyFirstPlugin
topic. Other needed Perl code is best placed in alib/TWiki/Plugins/MyFirstPlugin/
directory. The Plugin API handles the details of connecting your Perl module with main TWiki code. When you're familiar with the Plugin API, you're ready to develop Plugins.Creating the Perl Module
Copy filelib/TWiki/Plugins/EmptyPlugin.pm
to<name>Plugin.pm
. TheEmptyPlugin.pm
module contains mostly empty functions, so it does nothing, but it's ready to be used. Customize it. Refer to the Plugin API specs for more information. If your Plugin uses its own modules and objects, you must include the name of the Plugin in the package name. For example, writePackage MyFirstPlugin::Attrs;
instead of justPackage Attrs;
. Then call it using:use TWiki::Plugins::MyFirstPlugin::Attrs; $var = MyFirstPlugin::Attrs->new();Measuring and Improving the Plugin Performance
A high quality Plugin performs well. You can use the TWiki:Plugins.PluginBenchmarkAddOn to measure your TWiki:Plugins.PluginBenchmarks. The data is needed as part of the Documentation Topic. See also Hints on Writing Fast Plugins.Writing the Documentation Topic
The Plugin documentation topic contains usage instructions and version details. It serves the Plugin files as FileAttachments for downloading. (The doc topic is also included in the distribution package.) To create a documentation topic:
- Copy the Plugin topic template from TWiki.org. To copy the text, go to TWiki:Plugins/PluginPackage and:
- enter the Plugin name in the "How to Create a Plugin" section
- click Create
- select all in the Edit box & copy
- Cancel the edit
- go back to your site to the TWiki web
- In the GoBox enter your Plugin name, for example
MyFirstPlugin
, press enter and create the new topic- paste & save new Plugin topic on your site
- Customize your Plugin topic.
- Important: In case you plan to publish your Plugin on TWiki.org, use Interwiki names for author names and links to TWiki.org topics, such as TWiki:Main/TWikiAdminGroup. This is important because links should work properly in a Plugin topic installed on any TWiki, not just on TWiki.org.
- Document the performance data you gathered while measuring the performance
- Save your topic, for use in packaging and publishing your Plugin.
OUTLINE: Doc Topic Contents
Check the Plugins web on TWiki.org for the latest Plugin doc topic template. Here's a quick overview of what's covered: Syntax Rules: <Describe any special text formatting that will be rendered.>" Example: <Include an example of the Plugin in action. Possibly include a static HTML version of the example to compare if the installation was a success!>" Plugin Settings: <Description and settings for custom Plugin %VARIABLES%, and those required by TWiki.>"Plugin Installation Instructions: <Step-by-step set-up guide, user help, whatever it takes to install and run, goes here.>" Plugin Info: <Version, credits, history, requirements - entered in a form, displayed as a table. Both are automatically generated when you create or edit a page in the TWiki:Plugins web.>"
- Plugins Preferences <If user settings are needed, explain... Entering values works exactly like TWikiPreferences and WebPreferences: six (6) spaces and then:>"
- Set <EXAMPLE = value added>
Packaging for Distribution
The TWiki:Plugins.BuildContrib is a powerful build environment that is used by the TWiki project to build TWiki itself, as well as many of the plugins. You don't have to use it, but it is highly recommended! If you don't want (or can't) use the BuildContrib, then a minimum Plugin release consists of a Perl module with a WikiName that ends inPlugin
, ex:MyFirstPlugin.pm
, and a documentation page with the same name(MyFirstPlugin.txt
).
- Distribute the Plugin files in a directory structure that mirrors TWiki. If your Plugin uses additional files, include them all:
lib/TWiki/Plugins/MyFirstPlugin.pm
data/TWiki/MyFirstPlugin.txt
pub/TWiki/MyFirstPlugin/uparrow.gif
[a required graphic]- Create a zip archive with the Plugin name (
MyFirstPlugin.zip
) and add the entire directory structure from Step 1. The archive should look like this:
lib/TWiki/Plugins/MyFirstPlugin.pm
data/TWiki/MyFirstPlugin.txt
pub/TWiki/MyFirstPlugin/uparrow.gif
Publishing for Public Use
You can release your tested, packaged Plugin to the TWiki community through the TWiki:Plugins web. All Plugins submitted to TWiki.org are available for download and further development in TWiki:Plugins/PluginPackage. Publish your plugin by following these steps:
- Post the Plugin documentation topic in the TWiki:Plugins/PluginPackage:
- enter the Plugin name in the "How to Create a Plugin" section, for example
MyFirstPlugin
- paste in the topic text from Writing the Documentation Topic and save
- Attach the distribution zip file to the topic, ex:
MyFirstPlugin.zip
- Link from the doc page to a new, blank page named after the Plugin, and ending in
Dev
, ex:MyFirstPluginDev
. This is the discussion page for future development. (User support for Plugins is handled in TWiki:Support.)- Put the Plugin into the SVN repository, see TWiki:Plugins/ReadmeFirst (optional)
Once you have done the above steps once, you can use the BuildContrib to upload updates to your plugin. Thank you very much for sharing your Plugin with the TWiki community
![]()
Recommended Storage of Plugin Specific Data
Plugins sometimes need to store data. This can be Plugin internal data such as cache data, or data generated for browser consumption such as images. Plugins should store data using TWikiFuncDotPm? functions that support saving and loading of topics and attachments.Plugin Internal Data
You can create a Plugin "work area" using theTWiki::Func::getWorkArea()
function, which gives you a persistant directory where you can store data files. By default they will not be web accessible. The directory is guaranteed to exist, and to be writable by the webserver user. For convenience,TWiki::Func::storeFile()
andTWiki::Func::readFile()
are provided to persistently store and retrieve simple data in this area.Web Accessible Data
Topic specific data such as generated images can be stored in the topics attachment area, which is web accessible. Use theTWiki::Func::saveAttachment()
function to store the data. Recommendation for file name:Web specific data can be stored in the Plugin's attachment area, which is web accessible. Use the
- Prefix the filename with an underscore (the leading underscore avoids a nameclash with files attached to the same topic)
- Identify where the attachment originated from, typically by including the Plugin name in the file name
- Use only alphanumeric characters, underscores, dashes and periods to avoid platform dependency issues and URL issues
- Example:
_FooBarPlugin_img123.gif
TWiki::Func::saveAttachment()
function to store the data. Recommendation for file names in Plugin attachment area:
- Prefix the filename with an underscore
- Include the name of the web in the filename
- Use only alphanumeric characters, underscores, dashes and periods to avoid platform dependency issues and URL issues
- Example:
_Main_roundedge-ul.gif
Handling deprecated functions
From time-to-time, the TWiki developers will add new functions to the interface (either to TWikiFuncDotPm?, or new handlers). Sometimes these improvements mean that old functions have to be deprecated to keep the code manageable. FIXME: The following is not KISS When this happens, the deprecated functions will be supported in the interface for at least one more TWiki release (i.e. one more after the one they are first deprecated in). When a plugin uses (or defines) the deprecated function, a warning will be generated in the TWiki warnings log. Admins who see these warnings in their logs should check TWiki.org and if necessary, contact the plugin author, for an updated version of the plugin. Updated plugins may still need to define deprecated handlers for compatibility with old TWiki versions. In this case, the plugin package that defines old handlers can set a flag to prevent the warnings from being issued. This is done by defining a global hash that maps from the handler name to theTWiki::Plugins
version in which the handler was first deprecated. For example, if we need to define theendRenderingHandler
for compatibility withTWiki::Plugins
versions before 1.1, we would add this to the plugin:package TWiki::Plugins::SinkPlugin; use vars qw( %TWikiCompatibility ); $TWikiCompatibility{endRenderingHandler} = 1.1;If the currently-running TWiki version is 1.1 or later, then the handler will not be called and the warning will not be issued. TWiki with versions ofTWiki::Plugins
before 1.1 will still call the handler as required. There is no way to prevent warnings from being issued when deprecated functions in the TWikiFuncDotPm? interface are called. In this case, plugins authors should be encouraged recode their plugins as described in the TWikiFuncDotPm? documentation of the deprecated function. Related Topics: DeveloperDocumentationCategory, AdminDocumentationCategory
Warning: Can't find topic TWikiFuncDotPm
TWiki CGI Scripts
TWiki uses a set of scripts in thebin
directory. This topic describes the interfaces to some of those scripts. All the scripts can be called from the CGI environment or from the command-line.
- TWiki System Requirements
- Basic Installation
- Next Steps (optional)
- Troubleshooting
- TWiki Upgrade Guide
- Overview
- Upgrade Requirements
- Major Changes Compared to TWiki Cairo
- Automated Upgrade Procedure
- Manual Upgrade Procedure
- Password Management
- New User Registration
- Login Management
- Sessions
- TWiki Username vs. Login Username
- Changing Passwords
- Controlling access to individual scripts
- How to choose an authentication method
- TWiki Access Control
- Permissions settings of the webs on this TWiki site
- TWiki Text Formatting
- TWiki Variables
- Setting Variables
- Predefined Variables
- ACTIVATEDPLUGINS -- list of currently activated plugins
- ATTACHURL -- full URL for attachments in the current topic
- ATTACHURLPATH -- path of the attachment URL of the current topic
- AUTHREALM -- authentication realm
- BASETOPIC -- base topic where an INCLUDE started
- BASEWEB -- base web where an INCLUDE started
- DATE -- signature format date
- DISPLAYTIME -- display time
- DISPLAYTIME{"format"} -- formatted display time
- ENCODE{"string"} -- encodes a string
- ENDSECTION{"name"} -- marks the end of a named section
- FAILEDPLUGINS -- debugging for plugins that failed to load, and handler list
- FORMFIELD{"format"} -- renders a field in the form attached to some topic
- GMTIME -- GM time
- GMTIME{"format"} -- formatted GM time
- HOMETOPIC -- home topic in each web
- HTTP -- get HTTP headers
- HTTPS -- get HTTPS headers
- HTTP_HOST -- environment variable
- ICON{"name"} -- small documentation graphic or icon of common attachment types
- ICONPATH{"name"} -- url path of small documentation graphic or icon of common attachment types
- IF{"condition" ...} -- simple conditionals
- INCLUDE{"page"} -- include other topic or web page
- INCLUDINGTOPIC -- name of topic that includes current topic
- INCLUDINGWEB -- web that includes current topic
- LANGUAGES -- list available TWiki languages
- LOCALSITEPREFS -- web.topicname of site preferences topic
- LOGIN -- present a full login link
- LOGOUT -- present a full logout link
- MAKETEXT -- creates text using TWiki's I18N infrastructure
- MAINWEB -- name of Main web
- META -- displays meta-data
- METASEARCH -- special search of meta data
- NOP -- template text not to be expanded in instantiated topics
- NOTIFYTOPIC -- name of the notify topic
- PLUGINDESCRIPTIONS -- list of plugin descriptions
- PLUGINVERSION -- the version of the TWiki Plugin API
- PLUGINVERSION{"name"} -- the version of an installed Plugin
- PUBURL -- the base URL of attachments
- PUBURLPATH -- the base URL path of attachments
- QUERYSTRING -- full, unprocessed string of parameters to this URL
- REMOTE_ADDR -- environment variable
- REMOTE_PORT -- environment variable
- REMOTE_USER -- environment variable
- REVINFO -- revision information of current topic
- REVINFO{"format"} -- formatted revision information of topic
- SCRIPTNAME -- name of current script
- SCRIPTSUFFIX -- script suffix
- SCRIPTURL -- script URL
- SCRIPTURLPATH -- script URL path
- SEARCH{"text"} -- search content
- SECTION{"name"} -- marks the start of a named section
- SERVERTIME -- server time
- SERVERTIME{"format"} -- formatted server time
- SESSION_VARIABLE -- get, set or clear a session variable
- SESSIONID -- unique ID for this session
- SESSIONVAR -- name of CGI and session variable that stores the session ID
- SPACEDTOPIC -- topic name, spaced and URL-encoded
- STARTINCLUDE -- start position of topic text if included
- STATISTICSTOPIC -- name of statistics topic
- STOPINCLUDE -- end position of topic text if included
- TOC -- table of contents of current topic
- TOC{"Topic"} -- table of contents
- TOPIC -- name of current topic
- TOPICLIST{"format"} -- topic index of a web
- TWIKIWEB -- name of TWiki documentation web
- URLPARAM{"name"} -- get value of a URL parameter
- USERNAME -- your login username
- USERLANGUAGE -- current user's language
- VAR{"NAME" web="Web"} -- get a preference value from another web
- WEB -- name of current web
- WEBLIST{"format"} -- index of all webs
- WEBPREFSTOPIC -- name of web preferences topic
- WIKIHOMEURL -- site home URL
- WIKINAME -- your Wiki username
- WIKIPREFSTOPIC -- name of site-wide preferences topic
- WIKITOOLNAME -- name of your TWiki site
- WIKIUSERNAME -- your Wiki username with web prefix
- WIKIUSERSTOPIC -- name of topic listing all registers users
- WIKIVERSION -- the version of the installed TWiki engine
- File Attachments
- TWiki Forms
- TWiki Templates
- TWiki Skins
- TWiki Formatted Search Results
- TWiki Meta Data
- TWiki Plugins
- TWiki CGI Scripts
- TWiki Site Tools
- Managing Topics
- Managing Webs
- Manage Users
- TWiki CSS
General Information
CGI environment
In the CGI environment parameters are passed to the scripts via the URL and URL parameters. Environment variables are also used to determine the user performing the action. If the environment is not set up, the default TWiki user is used (usuallyguest
).Command-line
You must be cd'd to thetwiki/bin
directory to run the scripts from the command line. Parameters are passed using '-name' - for example,$ cd /usr/local/twiki/bin $ save -topic MyWeb.MyTopic -user admin -action save -text "New text of the topic"All parameters require a value.Common parameters
All the scripts accept a number of common parameters. The first two components of the URL after the script name are taken as the web and the topic, respectively. Standard URL parameters are:
Parameter Description Default topic
If this is set to a URL, TWiki will immediately redirect to that URL. Otherwise it overrides the URL and is taken as the topic name (you can pass Web.TopicName) user
Command-line only; set the name of the user performing the action. Note: this usage is inherently insecure, as it bypasses webserver login constraints. For this reason only authorised users should be allowed to execute scripts from the command line. skin
Overrides the default skin path (see TWikiSkins) cover
Specifies temporary skin path to prepend to the skin path for this script only (see TWikiSkins) The
save
save
script performs a range of save-related functions, as selected by theaction
parameter.Any errors will cause a redirect to an
Parameter Description Default action_save=1
default; save, return to view, dontnotify is OFF action_quietsave=1
save, and return to view, dontnotify
is ONaction_checkpoint
save and redirect to the edit script, dontnotify
is ONaction_cancel
exit without save, return to view action_preview
preview edited text action_addform
Redirect to the "change form" page. action_replaceform...
Redirect to the "change form" page. action_delRev
Administrators only delete the most recent revision of the topic - all other parameters are ignored action_repRev
Administrators only replace the text of the most recent revision of the topic with the text in the text
parameter.text
must included embedded meta-data tags. All other parameters are ignored.onlynewtopic
If set, error if topic already exists onlywikiname
If set, error if topic name is not a WikiWord dontnotify
if defined, suppress change notification templatetopic
Name of a topic to use as a template for the text and form text
New text of the topic forcenewrevision
if set, forces a revision even if TWiki thinks one isn't needed topicparent
If 'none' remove any current topic parent. If the name of a topic, set the topic parent to this. formtemplate
if defined, use the named template for the form editaction
When action is checkpoint
,add form
orreplace form...
, this is used as theaction
parameter to theedit
script that is redirected to after the save is complete.originalrev
Revision on which the edit started. oops
page. The parameters are interpreted in according to the following rules.Merging is only enabled if the topic text comes from
- The first sequence of ten or more
X
characters in the topic name will be converted to a number such that the resulting topic name is unique in the target web.- When the action is
save
,checkpoint
,quietsave
, orpreview
:
- The new text is taken from the
text
parameter, if it is defined,
- otherwise it is taken from the
templatetopic
, if it is defined,- otherwise it is taken from the previous version of the topic, if it exists,
- otherwise it is assumed to be empty, and
forcenewrevision
is set.- The name of the new form is taken from the
formtemplate
, if defined
- otherwise it is taken from the
templatetopic
, if defined,- otherwise it is taken from the previous version of the topic, if any,
- otherwise no form is attached.
- The value for each field in the form is taken from the query, if it is defined
- otherwise it is taken from the
templatetopic
, if defined,- otherwise it is taken from the previous version of the topic, if any,
- otherwise it defaults to the empty string.
text
andoriginalrev
is > 0 and is not the same as the revision number of the most recent revision. If merging is enabled both the topic and the meta-data are merged. Form field values are passed in parameters named 'field' - for example, if I have a fieldStatus
the parameter name isStatus
.This script is mainly used for rendering pages containing error messages, though it is also used for some functional actions such as manage pages (move topic etc).
oops
oops
templates are used with theoops
script to generate system messages. This is done to make internationalisation or other local customisations simple. Theoops
script supports the following parameters:
Parameter Description Default template
Name of the template file to display def
Optional, can be set to the name of a single definition within template
. This definition will be instantiated in thetemplate
wherever %INSTANTIATE% is seen. This lets you use a single template file for many messages. For an example, seeoopsmanagebad.tmpl
.paramN
Where N is an integer from 1 upwards. These values will be substituted into template
for %PARAM1% etc.The
edit
edit
scipt understands the following parameters, typically supplied by HTML input fields:Form field values are passed in parameters named 'field' - for example, if I have a field
Parameter Description Default action
Optional. Use the editaction
template instead of the standardedit
, and ifaction=text
, then hide the formonlynewtopic
If set, error if topic already exists onlywikiname
If set, error if topic name is not a WikiWord templatetopic
The name of the template topic, copied to get the initial content text
Initial text for the topic topicparent
The parent topic formtemplate
Name of the form to instantiate in the topic. Overrides the form set in the templatetopic
if defined.contenttype
Optional parameter that defines the application type to write into the CGI header. Defaults to text/html
. May be used to invoke alternative client applicationsanyname
Any parameter can passed to the new topic; if the template topic contains %URLPARAM{"anyname"}%
, it will be replaced by its valuebreaklock
If set, any lease conflicts will be ignored, and the edit will proceed even if someone is already editing the topic. Status
the parameter name isStatus
.The
- The first sequence of ten or more
X
characters in the topic name will be converted on save to a number such that the resulting topic name is unique in the target web.skin
parameter has a special interpretation for the edit script. Ifskin-
is set, then it will override the TWikiVariable?%EDIT_SKIN%
, which is used to set up the default editor skin.Used for viewing topics.
view
%W% For historical reasons, the view script has a special interpretation of the
Parameter Description Default raw=on
Shows the text of the topic in a scrollable textarea raw=debug
As raw=on
, but also shows the metadata (forms etc) associated with the topic.raw=text
Shows only the source of the topic, as plain text (Content-type: text/plain). This is useful when you want to extract the source of a topic to a local file on disc. contenttype
Allows you to specify a different Content-Type: (e.g. contenttype=text/plain
)rev
Revision to view (e.g. rev=45
)template
Allows you to specify a different skin template, overriding the 'view' template the view script would normally use. The default template is view
. For example, you could specify http://scoobydoo/CLEAN/bin/view/TWiki/TWikiScripts?template=edit. This is mainly useful when you have specialised templates for a TWiki Application.text
skin. If theskin=text
parameter is given, it is used like this: http://.../view/MyWeb/MyTopic?skin=text&contenttype=text/plain&raw=on which shows the topic as plain text; useful for those who want to download plain text for the topic. Usingskin=text
this way is DEPRECATED, and this hack will be removed in a future release. Useraw=text
instead.Used for viewing attachments. Normally, a site will publish the attachments (
viewfile
pub
) directory using a URL. However if it contains sensitive information, you will want to protect attachments using TWikiAccessControls. In this case, you can use theviewfile
script to give access to attachments while still checking access controls.
Parameter Description Default filename
name of attachment rev
Revision to view This script is deprecated. Its functions are covered by the
preview
save
script.
configure
configure
is the browser script used for inspection and configuration of the TWiki configuration. None of the parameters to this script are useable for any purpose exceptconfigure
.Renders the differences between version of a TwikiTopic?
rdiff
TODO:
Parameter Description Default rev1 the higher revision rev2 the lower revision render the rendering style {sequential, sidebyside, raw, debug} DIFFRENDERSTYLE, sequential
type history, diff, last} history diff, version to version, last version to previous diff
context number of lines of context
- add a {word} render style
Used for renaming topics.
rename
Parameter Description Default skin
skin(s) to use newweb
new web name newtopic
new topic name breaklock
attachment
confirm
if defined, requires a second level of confirmation currentwebonly
if defined, searches current web only for links to this topic nonwikiword
if defined, a non-wikiword is acceptable for the new topic name Attach a file to a topic. CGI parameters are:
attach
Parameter Description Default filename
Name of attachment
upload
Parameter Description Default hidefile
if defined, will not show file in attachment table filepath
filename
filecomment
Comment to associate with file in attachment table createlink
if defined, will create a link to file at end of topic changeproperties
CGI gateway to the
search
%SEARCH%
functionality driven by the following CGI parameters:
Parameter: Description: Default: "text"
Search term. Is a keyword search, literal search or regular expression search, depending on the type
parameter. SearchHelp has morerequired search="text"
(Alternative to above) N/A web="Name"
web="Main, Know"
web="all"
Comma-separated list of webs to search. The special word all
means all webs that doe not have theNOSEARCHALL
variable set toon
in their WebPreferences. You can specifically exclude webs from anall
search using a minus sign - for example,web="all,-Secretweb"
.Current web topic="WebPreferences"
topic="*Bug"
Limit search to topics: A topic, a topic with asterisk wildcards, or a list of topics separated by comma. All topics in a web excludetopic="Web*"
excludetopic="WebHome, WebChanges"
Exclude topics from search: A topic, a topic with asterisk wildcards, or a list of topics separated by comma. None type="keyword"
type="literal"
type="regex"
Do a keyword search like soap "web service" -shampoo
; a literal search likeweb service
; or RegularExpression search likesoap;web service;!shampoo
%SEARCHVAR- DEFAULTTYPE%
preferences setting (literal)scope="topic"
scope="text"
scope="all"
Search topic name (title); the text (body) of topic; or all (both) "text"
order="topic"
order="created"
order="modified"
order="editby"
order
"formfield(name)"=Sort the results of search by the topic names, topic creation time, last modified time, last editor, or named field of TWikiForms. The sorting is done web by web; in case you want to sort across webs, create a formatted table and sort it with TablePlugin's initsort Sort by topic name limit="all"
limit="16"
Limit the number of results returned. This is done after sorting if order
is specifiedAll results date="..."
limits the results to those pages with latest edit time in the given TimeInterval. All results reverse="on"
Reverse the direction of the search Ascending search casesensitive="on"
Case sensitive search Ignore case bookview="on"
BookView search, e.g. show complete topic text Show topic summary nonoise="on"
Shorthand for nosummary="on" nosearch="on" nototal="on" zeroresults="off" noheader="on" noempty="on"
Off nosummary="on"
Show topic title only Show topic summary nosearch="on"
Suppress search string Show search string noheader="on"
Suppress search header
Topics: Changed: By:Show search header nototal="on"
Do not show number of topics found Show number zeroresults="off"
Suppress all output if there are no hits zeroresults="on"
, displays: "Number of topics: 0"noempty="on"
Suppress results for webs that have no hits. Show webs with no hits header="..."
format="..."
Custom format results: see FormattedSearch for usage, variables & examples Results in table expandvariables="on"
Expand variables before applying a FormattedSearch on a search hit. Useful to show the expanded text, e.g. to show the result of a SpreadSheetPlugin %CALC{}%
instead of the formulaRaw text multiple="on"
Multiple hits per topic. Each hit can be formatted. The last token is used in case of a regular expression ";" and search Only one hit per topic nofinalnewline="on"
If on
, the search variable does not end in a line by itself. Any text continuing immediately after the search tag on the same line will be rendered as part of the table generated by the search, if appropriate.off
separator=", "
Line separator between hits Newline "$n"
Shows all the changes in the given web. The
changes
changes
script can receive one parameter:The main difference between invoking this script or using WebChanges is that WebChanges is based on a
Parameter Description Default minor
If 0, show only major changes. If 1, show all the changes (both minor and major) 0 %SEARCH%
, while this script reads thechanges
file in each web, making it a faster alternative. NOTE: The result fromchanges
script and the topic WebChanges can be different, if thechanges
file is deleted from a web. In particular, in new installations thechanges
script will return no results while the WebChanges topic will.Performs a range of management functions.
manage
Parameter Description Default action
One of createweb
,deleteUserAccount
,editSettings
orsaveSettings
none
action=createweb
Parameter Description Default newweb
Name of the new web '' baseweb
Name of the web to copy to create the new web '' webbgcolor
value for WEBBGCOLOR '' sitemapwhat
Value for SITEMAPWHAT '' sitemapuseto
Value for SITEMAPUSETO '' nosearchall
Value for NOSEARCHALL '' Unregisters (removes) the currently logged-in user.
action=deleteUserAccount
Parameter Description Default password
Users' password none No parameters
action=editSettings
See BulkRegistration.
action=bulkRegister
Parameter Description Default OverwriteHomeTopics
Whether to overwrite existing home topics or not false EmailUsersWithDetails
Whether to mail registered users or not false LogTopic
Topic to save the log in Same as topic name, with 'Result' appended.
action=saveSettings
All other parameters may be interpreted as form fields, depending on the current form definition in the topic.
Parameter Description Default text
Text of the topic '' originalrev
Revision that the edit started on Most recent revision
passwd
Other parameters as described under
Parameter Description Default action
one of changePassword
orresetPassword
none manage
,action=changePassword
.
action=changePassword
Parameter Description Default username
Username oldpassword
Existing password (plain text) password
New password (plain text) passwordA
New password confirmation (plain text) TopicName
?
register
Parameter Description Default action
register
orverify
orresetPassword
orapprove
resetpasswd
Parameter Description Default LoginName
list of usernames to reset none Introduction
? ''
statistics
Related Topics: AdminDocumentationCategory, DeveloperDocumentationCategory
Parameter Description Default webs
list of webs to run stats on none
TWiki Site Tools
Utilities for searching, navigation, and monitoring site activity TWiki Site Tools include utilities for navigating, searching and keeping up with site activity. Preferences can be configured by web or site-wide. You are currently in the TWiki web. In particular, TWiki provides two highly configurable, automated site monitoring tools, WebNotify, to email alerts when topics are edited, and WebStatistics, to generate detailed activity reports.WebNotify - recent changes alert
Each TWiki web has an automatic email alert service that sends a list of recent changes on a preset schedule, like once a day. Users can subscribe and unsubscribe using WebNotify in each web. The Perl scriptmailnotify
is called by a background process at regular intervals. The script sends an automated email to subscribed users if topics were changed in a web since the script was last run.
- You can create a WebNotify link using TWikiVariables with
%NOTIFYTOPIC%
Web Changes Notification Service
Each TWiki web has an automatic email notification service that sends you an email with links to all of the topics modified since the last alert. Subscribers are listed WebNotify in "bullet lists" following one of the following formats: three spaces * [ webname . ] wikiName - SMTP mail address
three spaces * [ webName . ] wikiName
three spaces * SMTP mail address
three spaces * SMTP mail address : topics
three spaces * [ webname . ] wikiName : topics where topics is a space-separated list of topic names.For example:
- Specify topics without a Web. prefix
- Topics must exist in this web.
- Topics may be specified using * wildcards
- Each topic may optionally be followed by an integer in parentheses, indicating the depth of the tree of children below that topic. Changes in all these children will be detected and reported along with changes to the topic itself. Note This uses the TWiki "Topic parent" feature.
- Each topic may optionally be preceded by a '+' or '-' sign. The '+' sign means "subscribe to this topic" (the same as not putting anything). The '-' sign means "don't send notifications regarding this topic". This allows users to elect to filter out changes to certain topics (and their children, to an arbitrary depth). Topic filters ('-') take precedence over topic includes ('+').
* daisy@flowers.com * daisy@flowers.com: Web* * DaisyCutter: Petal* (1) WeedKillers (3) Red*Phlox * StarTrekFan: * - *Wars - *sInTheirEyes - *shipTroopersA user may be listed many times in the WebNotify topic. Where a user has several lines in WebNotify that all match the same topic, they will only be notified of changes to that topic once. If a TWiki group is listed for notification, the group will be recursively expanded to the email addresses of all members. Note for System Administrators: Notification is supported by an add-on to the TWiki kernel called the MailerContrib. See the MailerContrib topic for details of how to set this service up. You can also use%MAINWEB%
instead ofMain
, but this is not necessary even if you have renamed the main web by configuring{MainWebName}
in configure.WebSearch - search TWiki site
WebSearch is an extremely fast and flexible search facility, part of the core TWiki feature set. WebSearchAdvanced offers more options, including:See also: SearchHelp for help; TWikiVariables and FormattedSearch for including hard-coded searches in text.
- topic title or full-text search
- regular expressions
- search within web or site-wide
- index-style A-Z alphabetical listing sorted topic title
- many more
WebChanges - what's new
To check for the most recently edited topics while on-site, use the WebChanges link, usually located in the toolbar. It lists the most recently modified topics, newest first, along with the first couple of lines of the page content. This is simply a presetSEARCH
. The number of topics listed by thelimit
parameter.:%SEARCH{ ".*" web="TWiki" regex="on" nosearch="on" order="modified"
reverse="on" limit="50" }%WebIndex - list of topics
WebIndex lists all web topics in alphabetical order, with the first couple of lines of text. This is simply a presetSEARCH
:%SEARCH{ "\.*" scope="topic" regex="on" nosearch="on" }%WebStatistics - site statistics
You can generate a listing manually, or on an automated schedule, of visits to individual pages, on a per web basis. Compiled as a running total on a monthly basis. Includes totals for Topic Views, Topic Saves, Attachment Uploads, Most Popular Topics with number of views, and Top Contributors showing total of saves and attachment uploads. Previous months are saved.
- You can create a WebStatistics link using TWikiVariables with
%STATISTICSTOPIC%
Configuring for automatic operation
- You can automatically generate usage statistics for all webs. To enable this:
- Make sure variable {Log}{view}, {Log}{save} and *{Log}{upload} in are set in configure. This will generate log file entries (see below).
- The WebStatistics topic must be present in all webs where you want to have statistics. You can use the topic in the Main web as a template.
- Call the
twiki/bin/statistics
script from a cron job, once a day is recommended. This will update the WebStatistics topics in all webs.- Attention: The script must run as the same user as the CGI scripts are running, which is user
nobody
on many systems. Example crontab entry:
0 0 * * * (cd /path/to/twiki/bin; ./statistics >/dev/null 2>&1)
- There is a workaround in case you can't run the script as user
nobody
: Run the utilitytwiki/bin/geturl
in your cron job and specify the URL of thetwiki/bin/statistics
script as a parameter. Example:
0 0 * * * (cd /path/to/twiki/bin; ./geturl mydomain.com /urlpath/to/twiki/bin/statistics >/dev/null 2>&1)
Generating statistics manually by URL
- The
twiki/bin/statistics
script can also be executed as a CGI script, just enter the URL in your browser. Examples:
- Update current month for all webs:
http://scoobydoo/CLEAN/bin/statistics
- Update current month for Main web only:
http://scoobydoo/CLEAN/bin/statistics/Main
- Update January 2000 for Main web:
http://scoobydoo/CLEAN/bin/statistics/Main?logdate=200512
Log Files
TWiki generates monthly log files which are used by the statistics script
- The log file is defined by the {LogFileName} setting in configure
- The file name is
log<year><month>.txt
- Example path name:
twiki/logs/log200512.txt
- Each access gets logged as:
| <time> | <wikiusername> | <action> | <web>.<topic> | <extra info> | <IP address> |
- Example log entry:
| 17 Dec 2005 - 13:32 | TWikiGuest | view | WebRss | | 66.124.232.02 |
- Actions are logged if enabled in configure by the {Log}{action} flags
- Logged actions:
Script Action name Extra info attach attach
when viewing attach screen of previous uploaded attachment: filename
changes changes
edit edit
when editing non-existing topic: (not exist)
rdiff rdiff
higher and lower revision numbers: 4 3
register regstart
WikiUserName, e-Mail address, LoginName: user attempts to register
register register
E-mail address: user successfully registers
register bulkregister
WikiUserName of new, e-mail address, admin ID rename rename
when moving topic: moved to Newweb.NewTopic
rename move
when moving attachment: Attachment filename moved to Newweb.NewTopic
passwd resetpasswd
LoginName, WikiName, E-mail address, success code from addUserPassword passwd changepasswd
LoginName, WikiName save save
when replacing existing revision: repRev 3
when user checks the minor changes box:dontNotify
search search
search string upload upload
filename view view
when viewing non-existing topic: (not exist)
when viewing previous topic revision:r3
Configuring outgoing mail
Outgoing mail is required for TWikiRegistration and for recent changes alert. TWiki will use theNet::SMTP
module if it is installed on your system. Set this with theSMTPMAILHOST
variable in TWikiPreferences. The notify e-mail uses the defaultchanges.tmpl
template, or a skin if activated in the TWikiPreferences. mailnotify also relies on two hidden files in eachtwiki/data/Web
directory:.changes
and.mailnotify.
Make sure both are writable by your web server process..changes
contains a list of changes; go ahead and make this empty..mailnotify
contains a timestamp of the last time notification was done. You can use an external mail program, such assendmail
, if theNet::SMTP
module is not installed. Set the program path in{MailProgram}
in configure.
Net::SMTP can be easily disabled (if there is an installation error) by setting
SMTPMAILHOST
in TWikiPreferences to an empty value.
You can set a separate
SMTPSENDERHOST
variable to define the mail sender host (some SMTP installations require this).Setting the automatic e-mail schedule
For Unix platforms: Edit thecron
table so thatmailnotify
is called in an interval of your choice. Please consultman crontab
of how to modify the table that schedules program execution at certain intervals. Example:% crontab -e 0 2 * * * (cd /path/to/twiki/bin; ./mailnotify -q)The above line will run mailnotify nightly at 02:00. The-q
switch suppresses all normal output. For ISP installations: Many ISPs don't allow hosted accounts direct cron access, as it's often used for things that can heavily load the server. Workaround scripts are available. On Windows: You can use a scheduled task if you have administrative privileges. TWiki:Codev/CronTabWin is a free scheduler for Windows.Site Permissions
Related Topics: AdminDocumentationCategory, AdminToolsCategory
- TWikiAccessControl describes how to restrict read and write access to topics and webs, by users and groups
- SitePermissions lists the permissions settings of the webs on this TWiki site
Managing Topics
Browser-based rename, move, and delete for individual topicsOverview
You can use browser-based controls to change a topic's name, move it to another TWiki web, or delete it to a hiddenTrash
web.How to Rename/Move/Delete a Topic
- Click on
[More]
(bottom right of page) on the topic to be changed, then, in the new screen, on[Rename/move]
. You can now rename and/or move/delete in one operation:- Move/Delete: Select the target web if other than the current web - choose
Trash
to delete a topic.- Rename: Enter the new topic name - default is current name
NOTE: You'll be warned if any of the topics to be affected are locked (being edited), or if there is a name conflict.
- Prevent updates by unchecking individual items on the list of referring links - these topics will NOT to be updated with the new name (by default, all referring links will be updated).
- Click on
[Rename/Move]
: the topic will be renamed and links to the topic updated as requested.
- If any of the referring pages are locked then they will be listed: you can correct these later by again pressing
[Rename/Move]
.There is a Put back feature that allows you to undo a
Rename/Move/Delete
- an instruction line and undo link will appear at the bottom of the modified topic. This allows you to revert from the last modification only.Deleted Topics: How to Clear the Trash
Deleted topics are moved to a specialTrash
web - they are NOT physically erased from the server. All webs shareTrash
- in case of a name conflict with a topic alreadyTrash
, the user is alerted and asked to choose a new name. TheTrash
web should be be cleared periodically, by archiving (saving) the text and RCS files if required (recommended), then deleting them from theTrash
directory.
This can only be done from on the server, not through the browser.
Since simple FTP access to the
Trash
directory is all that's required for maintenance, it's possible to grantTrash
admin privileges to multiple users, while strictly limiting server access.Redirecting from an Old Topic
You can use TWikiMetaData to place a command in the WebTopicViewTemplate and WebTopicNonWikiTemplate that will indicate that a topic has been moved by searching for the tag %META:TOPICMOVED{...}%. Customize something like this:%<nop>METASEARCH{type="topicmoved" web="%WEB%" topic="%TOPIC%" title="This topic used to exist and was moved to: "}%How Rename/Move Works
- %SEARCH%, with a special template, finds and displays all occurrences of the topic name in other topics, site-wide. These referring links are by default automatically changed to the new topic and/or web name. This includes relevant TWikiMetaData definitions.
- User can omit one or more topics from the update list by unchecking them.
<pre>
and<verbatim>
are honoured - no changes are made to text within these areas.- The topic is moved (if locks allow).
- References are changed (locks and permissions permitting).
- Any referring topics that can't be changed due to locks are listed - user can take note and change them at another time.
How Referring Topics Are Found
First, matching topics in the current web are listed - matches are totopic
. Next, all webs (including the current one) are listed that matchweb.topic
. All webs will be searched during rename, even ifNOSEARCHALL
is defined on a web, though access permissions will of course be honoured. Changed references are kept are as short as possible, ex:topic
is used in preference toweb.topic
.Effect of User Access Settings
User permissions affect the Rename function in various ways. To rename a topic, you need bothALLOWTOPICCHANGE
andALLOWTOPICRENAME
permission for that topic. To alter referring topics, you need change permission. See TWikiAccessControl for information on setting up access permissions.Special Considerations
Consider carefully whether to make browser-based Rename/Move/Delete widely available, or to restrict it to an administrator/moderator group. Allowing all users to easily manipulate topics can be extremely useful in refactoring a busy web or site. However, there are at least two significant potential drawbacks to take into account:Ultimately, the size, objectives, and policies of your TWiki site, the real-world behavior of your user group, and most importantly, the initial TWiki site management leadership, will determine the most effective implementation of this feature, and the success of the site overall.
- When referring links are updated, the modified topics appear in WebChanges, creating the impression that editorial changes were made. This can undermine the usefulness of WebChanges.
- Due to current limitations, fairly heavy use of Rename/Move/Delete functions can lead to an accumulation of minor technical problems (ex: broken links) and usability issues (ex: user confusion). If Rename... is used heavily, these negatives will obviously increase, in number and effect.
Known Issues
Rename/Move is fairly complicated due to the dynamic generation of links. Ideally, it would be possible to run the required part of rendering in a way that would allow identification of the text to be changed. Unfortunately, these hooks don't exist in TWiki at present. Instead, %SEARCH% is used with a special template to show the text to be changed, and the selected topics are then altered. One drawback is thatsearch
can show matches that will not be updated due to case differences. Other mismatches with actual rendered output are also possible as the approaches are so different. The following shows some limitations of square bracket processing.Related Topics: UserDocumentationCategory, AdminDocumentationCategory[[Old Topic]] => [[NewTopic][Old Topic]] [[old topic]] => [[NewTopic][old topic]] [[old t opic]] => not changed [[OldTopic]] => [[NewTopic]]
Managing Webs
Adding webs is a web based operation; renaming and deleting webs are manual operations done directly on the serverOverview
A TWikiSite is divided into webs; each one represents one subject, one area of collaboration. Administrators (in the TWikiAdminGroup) can add/rename/delete webs.Choose Web Template
There are two methods used to create a new web. First you can use a specially designed TemplateWeb. This is an invisible web that begins with an underscore "_" character (for example_default
). All topics in the template web will be copied into your new web. The second method is to use an existing web as a template web. This may be useful if you already have a web that you like to use as a starting point. Only topics that have names beginning with Web... (like "WebHome", "WebNotify", etc.) are copied. In either case you will want to be sure to verify that your new web has all the custom modifications that you desire.Adding a New Web
Notes:
- Attachments will NOT get copied over along with their topics
- While creating the new web, TWiki will update the following variables in the WebPreferences:
WEBBGCOLOR
,SITEMAPLIST
,SITEMAPWHAT
,SITEMAPUSETO
andNOSEARCHALL
. These variables are used to dynamically generate the SiteMap- TWiki does not edit the TWiki.TWikiPreferences to update the
WIKIWEBLIST
. This must be done by handRenaming or Deleting a Web
Rename a web via the Tools section in each web's WebPreferences topic. You may delete a web by moving it into a Trash web.Permissions
You may only rename a web if you have permissions to rename all the topics within that web, including any topics in that web's subwebs. You will also need permissions to update any topics containing references to that web.Edit Conflicts
If anyone is editing a topic which requires updating, or which lives in the web being renamed, a second confirmation screen will come up which will indicate which topics are still locked for edit. You may continue to hit the refresh button until an edit lease is obtained for each topic which requires updating (the "Refresh" button will change to "Submit"), or hit "Cancel", which will cancel your edit lease on all affected topics.Renaming the webs in the distribution
If you plan to rename the Main web, remember that TWiki stores user and group topics in%MAINWEB%
, which by default isMain
(this is assigned in the site configuration). That means that every WikiName signature -Main.SomeUserName
- points to it and would need updating (unless the variable,%MAINWEB%.SomeUserName
, is used throughout). This potentially large change can be performed automatically with the renameweb function mentioned above, in the Main.WebPreferences topic. If you want to rename the TWiki web, remember it is referred to by%TWIKIWEB%
which is also defined by a configuration setting.Hierarchical Webs
Hierarchical web support is enabled by turning on the{EnableHierarchicalWebs}
setting inconfigure
. Without this setting, TWiki will only allow a single level of hierarchy (webs). If you set this, you can use multiple levels, like a directory tree, i.e. webs within webs.Note: You might not need hierarchical webs. TWiki topics already have a parent/child relationship within a web, which is shown in the breadcrumb. Try to keep the number of webs to a minimum in order to keep search and cross-referencing simple. You can create hierarchical webs via the Adding a New Web form above, by using a slash- or dot-separated path name which is based on an existing web name in the Name of new web: field. Example: To create a subweb named
Bar
inside a web namedFoo
, useFoo/Bar
orFoo.Bar
as the new web name in the form above.Subweb Preferences are Inherited
The preferences of a subweb are inherited from the parent web and overridden locally. Preferences are ultimately inherited from the TWiki.TWikiPreferences topic. Example Preference Inheritance forSandbox/TestWeb/SubWeb.SubWebTopic
topic:
TWiki.TWikiPreferences
site-wide preferencesSandbox.WebPreferences
inherits from and overrides settings inTWiki.TWikiPreferences
Sandbox/TestWeb.WebPreferences
inherits from and overrides settings inSandbox.WebPreferences
Sandbox/TestWeb/SubWeb.WebPreferences
inherits from and overrides settings inSandbox/TestWeb.WebPreferences
Sandbox/TestWeb/SubWeb.SubWebTopic
inherits from and overrides settings inSandbox/TestWeb/SubWeb.WebPreferences
Navigation
The Pattern skin (default) indicates Subwebs by indententing them in the sidebar relative to their level in the hierarchy. Related Topics: AdminDocumentationCategory, AdminToolsCategory
Manage Users
Register users on your TWiki site; change/reset/install passwords; remove user accountsAuthentication and Access Control
- TWikiUserAuthentication describes options of user authentication
- TWikiAccessControl describes how to define groups and how to restrict access to content
Register User
It is not necessary to have user home pages in the TWiki system for Authentication to work - see TWikiUserAuthentication for deatils.
- TWikiRegistration is for users to fill out a form
- NewUserTemplate can be changed to customize user home pages, it can optionally use the UserForm to define user fields as meta data
- BulkRegistration is for administrators to use to set up one or more accounts: either from a table or from an external file
Change, Reset and Install Passwords
- ChangePassword is for users who can remember their password and want to change it
- ResetPassword is for users who cannot remember their password; a system generated password is emailed to them
- BulkResetPassword if for administrators who want to reset many passwords at once
Removing User Accounts
To remove a user account (FredQuimby, who logs in as "fred"):Note: Consider leaving the user topic file in place so their past signatures and revision author entries don't end up looking like AnUncreatedTopic?. If you want to make it clear the user is no longer with the organization or has been banished, replace the topic content with a note to that effect. The existance of the UserName topic should also prevent that user name from being re-used, sealing the potential security hole regarding inherited permissions.. Related Topics: AdminDocumentationCategory
- If you are using a
.htpasswd
file, edit the.htpasswd
file to delete the line startingfred:
- Remove the
FredQuimby - fred
line from the Main.TWikiUsers topic- Remove
FredQuimby
from all groups and from all theALLOWWEB/ALLOWTOPIC...
declarations, if any.
Note: If you fail to do this you risk creating a security hole, as the next user to register with the wikiname FredQuimby will inherit the old FredQuimby's permissions.- [optional] Delete their user topic Main.FredQuimby.
TWiki CSS
Listing of CSS class names emitted from TWiki core code and standard plugins, for the Dakar release.Who should read this document?
Most html elements generated by TWiki core code now have Cascading Style Sheet (CSS) tags. Skin builders and others who want to change the appearance of the default TWiki installation or any of the skins can use this document to see what styles can be created for these html elements.Naming conventions
A wide range of standard styles are used in the TWiki core code and topics, and more are used in plugins. The following is an exhaustive list of all styles defined by the Pattern skin. For the most part, the names are the only documentation of the purpose of the style. For more information on how these styles are used, read the code (sorry!)
- All TWiki class names have the prefix
twiki
. So: twikiAlert, twikiToc, etcetera. Remember that CSS class names are case sensitive - TWiki CSS uses lowercasetw
.- TWiki uses class names only (.twikiDiffTable) and no id names (#twikiDiffTable), to allow multiple class names. Class names are written using the dot prefix.
- If you define your own CSS classes, it is preferable that you do not use the
twiki
prefix to prevent undesired overriding effects.TWiki styles in core code
.twikiAlert Client.pm, Form.pm, Statistics.pm .twikiFirstCol Render.pm .twikiForm Render.pm .twikiNew Changes.pm, Search.pm .twikiHelp Changes.pm .twikiTopRow Manage.pm .twikiSummary Manage.pm .twikiGrayText Manage.pm .twikiCheckBox Manage.pm .twikiLink Render.pm .twikiNewLink Render.pm .twikiAnchorLink Render.pm .twikiEmulatedLink Preview.pm .twikiWebIndent TWiki.pm
.twikiEditFormTextField Form.pm .twikiEditFormLabelField Form.pm .twikiEditFormTextAreaField Form.pm .twikiEditFormCheckboxButton Form.pm .twikiEditFormCheckboxField Form.pm .twikiRadioButton Form.pm .twikiEditFormRadioField Form.pm .twikiEditFormError Form.pm
.twikiDiffTable RDiff.pm .twikiDiffDeletedHeader RDiff.pm .twikiDiffDeletedMarker RDiff.pm .twikiDiffDeletedText RDiff.pm .twikiDiffAddedHeader RDiff.pm .twikiDiffAddedMarker RDiff.pm .twikiDiffAddedText RDiff.pm .twikiDiffChangedHeader RDiff.pm .twikiDiffChangedText RDiff.pm .twikiDiffUnchangedText RDiff.pm .twikiDiffUnchangedTextContents RDiff.pm .twikiDiffLineNumberHeader RDiff.pm
.twikiToc TWiki.pm .twikiTocTitle TWiki.pm TWiki Styles in Plugins
.twikiTable TablePlugin .twikiSortedAscendingCol TablePlugin .twikiSortedDescendingCol TablePlugin .twikiFirstCol TablePlugin TWiki Styles in Templates
.twikiFormTable formtables.tmpl, form.tmpl .twikiFormTableHRow formtables.tmpl, form.tmpl .twikiFormTableRow formtables.tmpl .twikiAttachments attachtables.tmpl .twikiEditForm form.tmpl .twikiSubmit .twikiButton .twikiLeft .twikiRight .twikiClear .twikiHidden .twikiSmall .twikiBottomRow .twikiSRAuthor .twikiSRRev .twikiPageForm .twikiSeparator .twikiAccessKey .twikiLinkLabel TWiki Styles in topics
.twikiBroadcastMessage TWikiPreferences Tips
PatternSkin makes extensive use of CSS in its templates. Read the PatternSkin topic and PatternSkinCss to learn more about creating your own CSS-based skin. Practical introduction to CSS: http://www.w3.org/Style/LieBos2e/enter/ Related Topics: TWikiSkins, PatternSkin, DeveloperDocumentationCategory, AdminDocumentationCategory