|
<-- -->
Using Variables
To use a variable type its name. For example,
- type
%T% to get (a preferences variable)
- type
%TOPIC% to get TWikiVariables (a predefined variable)
- type
%CALCULATE{ "$UPPER(Text)" }% to get TEXT (a variable defined by a plugin)
Note:
- To leave a variable unexpanded, precede it with an exclamation point, e.g. type
!%TOPIC% to get %TOPIC%
- Variables are expanded relative to the topic they are used in, not the topic they are defined in
- Type
%ALLVARIABLES% to get a full listing of all variables defined for a particular topic
Variable Names
Variable names must start with a letter, optionally followed by letters, numbers and underscore '_' characters. Both upper-case and lower-case characters can be used, %MYVAR% , %MyVar% , %My2ndVar% , and %My_Var% are valid names. Variables are case sensitive, e.g. %MyVAR% and %MYVAR% are not the same.
By convention all settings, predefined variables and variables handled by extensions are always UPPER-CASE.
Preferences Variables
Unlike predefined variables, preferences variables can be defined by the user in various places.
Setting Preferences Variables
You can set variables in all the following places:
- system level in TWiki.TWikiPreferences
- plugin topics (see TWikiPlugins)
- local site level in Main.TWikiPreferences
- user level in individual user topics in Main web
- If UserSubwebs is in effect, the topic specified by
%USERPREFSTOPIC% in the user's subweb is read instead
- If
$TWiki::cfg{DemoteUserPreferences} is true, this step is deferred to a later step. On this TWiki installation, $TWiki::cfg{DemoteUserPreferences} is false
- web level in WebPreferences of each web
- If
EXTRAPREFERENCES is defined at this point, it's regarded as having comma separated list of topics. Those topics are read in the listed order as if they were WebPreferences
- topic level in topics in webs
- session variables (if sessions are enabled)
- user level preferences are set at this point if
$TWiki::cfg{DemoteUserPreferences} is true as mentioned at the step 4
Settings at higher-numbered levels override settings of the same variable at lower numbered levels, unless the variable was included in the setting of FINALPREFERENCES at a lower-numbered level, in which case it is locked at the value it has at that level.
If you are setting a variable and using it in the same topic, note that TWiki reads all the variable settings from the saved version of the topic before it displays anything. This means you can use a variable anywhere in the topic, even if you set it somewhere inconspicuous near the end. But beware: it also means that if you change the setting of a variable you are using in the same topic, preview will show the wrong thing, and you must save the topic to see it correctly.
The syntax for setting variables is the same anywhere in TWiki (on its own TWiki bullet line, including nested bullets): [multiple of 3 spaces] * [space] Set [space] VARIABLENAME [space] = [space] value
Examples:
* Set VARIABLENAME1 = value
* Set VARIABLENAME2 = value
Spaces between the = sign and the value will be ignored. You can split a value over several lines by indenting following lines with spaces - as long as you don't try to use * as the first character on the following line.
Example:
* Set VARIABLENAME = value starts here
and continues here
Whatever you include in your variable will be expanded on display, exactly as if it had been entered directly.
Example: Create a custom logo variable
- To place a logo anywhere in a web by typing
%MYLOGO% , define the Variable on the web's WebPreferences topic, 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, e.g. LogoTopic . Sample variable setting in WebPreferences:
* Set MYLOGO = %PUBURL%/%WEB%/LogoTopic/mylogo.gif
You can also set preferences variables on a topic by clicking the link Edit topic preference settings under More topic actions . Use the same * Set VARIABLENAME = value syntax. Preferences set in this manner are not visible in the topic text, but take effect nevertheless.
Controlling User Level Preferences Override
By default, user level variables are set at the step 4 as stated in the previous section.
That means a user can finalise some preferences variables so that web level or topic level setting cannot override it.
This may result in a situation the web or page owner doesn't expect.
$TWiki::cfg{DemoteUserPreferences} has been introduced to avoid it.
If it's set to true, user level variables are set at the last step instead of the step 4.
But this is not enough.
To guarantee a certain result, you need to finalise critical preferences variables set at the web or topic level, which is cumbersome.
So preferences variables DENYUSERPREFEENCES and ALLOWUSERPREFERENCES have been introduced.
-
DENYUSERPREFEENCES and ALLOWUSERPREFERENCES may have comma separated list of variable names
- If a preferences variable is listed in
DENYUSERPREFEENCES , the variable cannot be overridden at the user level. There is a special value "all", which means no preferences variables can be overridden at the user level
- If
ALLOWUSERPREFERENCES is set and not empty, only the listed preferences variables can be overridden. There is a special value "all", which means any preferences variable can be overridden at the user level. But actually, "all" is not necessary since a blank value or not setting ALLOWUSERPREFERENCES has the same effect
-
DENYUSERPREFEENCES takes precedence over ALLOWUSERPREFERENCES . If a variable is listed on both, it cannot be overridden. If DENYUSERPREFEENCES is "all", the value of ALLOWUSERPREFERENCES doesn't matter.
For example, if you don't allow overriding at the user level at all:
* Set DENYUSERPREFERENCES = all
If you allow INYMCEPLUGIN_DISABLE and SKIN to be set at the user level:
* Set ALLOWUSERPREFERENCES = TINYMCEPLUGIN_DISABLE, SKIN
If you allow user preferences to set anything other than TINYMCEPLUGIN_DISABLE or SKIN :
* Set DENYUSERPREFERENCES = TINYMCEPLUGIN_DISABLE, SKIN
Please note DENYUSERPREFEENCES and ALLOWUSERPREFERENCES affect user preferences regardless of $TWiki::cfg{DemoteUserPreferences} .
You can set those variables at the site level while $TWiki::cfg{DemoteUserPreferences} setting to false.
If you do so, you should finalise DENYUSERPREFEENCES and ALLOWUSERPREFERENCES .
Otherwise, they might be overridden by user preferences.
You will get the most benefit of DENYUSERPREFEENCES and ALLOWUSERPREFERENCES by setting $TWiki::cfg{DemoteUserPreferences} to true.
That way, each web can specify how much user level preferences overriding is allowed.
Parameterized Variables (Macros)
It is possible to pass parameters to TWiki variables. This is called a macro in a programming language.
To define a parameterized variable, set a variable that contains other variables, such as:
* Set EXAMPLE = Example variable using %DEFAULT%, %PARAM1% and %PARAM2%
* Set DEMO = Demo using %DEFAULT{ default="(undefined)" }%,
%PARAM1{ default="(undefined)" }% and %PARAM2{ default="(undefined)" }%
A special %DEFAULT% variable denotes the default (nameless) parameter of the calling variable. Variables optionally may list a default="..." parameter that gets used in case the calling variable does not specify that parameter.
To use a parameterized variable (or call a macro), add parameters within the curly brackets, such as:
* %EXAMPLE{ "foo" PARAM1="bar" PARAM2="baz" }%
* %DEMO{ "demo" PARAM2="parameter 2" }% -- note that PARAM1 is missing
which resolves to:
- %EXAMPLE{ "foo" PARAM1="bar" PARAM2="baz" }%
- %DEMO{ "demo" PARAM2="parameter 2" }% -- note that PARAM1 is missing
Parameters in the variable definition are expanded using the following sequence:
- Parameter from variable call. In above example,
%PARAM1% gets expanded to bar .
- Session variable and preferences settings
Example
Define variables:
* Set DRINK = red wine
* Set FAVORITE = My %DEFAULT{default="favorite"}% dish is %DISH{default="steak"}%,
my %DEFAULT{default="favorite"}% drink is %DRINK%.
The default can be defined with a default parameter (%DISH{default="steak"}% ), or as a preferences setting (Set DRINK = ... ).
Use Variables:
%FAVORITE{ DISH="Sushi" DRINK="Sake" }%
Returns:
%FAVORITE{ DISH="Sushi" DRINK="Sake" }%
%FAVORITE{}%
Returns:
%FAVORITE{}%
%FAVORITE{ "preferred" }%
Returns:
%FAVORITE{ "preferred" }%
<--
Redefine what is defined in INCLUDE:
- Set EXAMPLE = Example variable using favorite, (undefined) and (undefined)
- Set DEMO = Demo using favorite, (undefined) and (undefined)
- Set DRINK = red wine
- Set FAVORITE = My favorite dish is steak, my favorite drink is %DRINK%.
-->
Access Control Variables
These are special types of preferences variables to control access to content. TWikiAccessControl explains these security settings in detail.
Local values for variables
Certain topics (a users home topic, web site and default preferences topics) have a problem; variables defined in those topics can have two meanings. For example, consider a user topic. A user may want to use a double-height edit box when they are editing their home topic - but only when editing their home topic. The rest of the time, they want to have a normal edit box. This separation is achieved using 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 = 20
Then 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! %ALLVARIABLES% 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.
Frequently Used Preferences Variables
The following preferences variables are frequently used. They are defined in TWikiPreferences#Miscellaneous_Settings:
-
%BB% - line break and bullet combined
-
%BB2% - level 2 bullet with line break
-
%BB3% - level 3 bullet with line break
-
%BB4% - level 4 bullet with line break
-
%BR% - line break
-
%BULLET% - bullet sign
-
%CARET% - caret symbol
-
%VBAR% - vertical bar
-
%H% - Help icon
-
%I% - Idea icon
-
%M% - Moved to icon
-
%N% - New icon
-
%P% - Refactor icon
-
%Q% - Question icon
-
%S% - Pick icon
-
%T% - Tip icon
-
%U% - Updated icon
-
%X% - Alert icon
-
%Y% - Done icon
-
%RED% text %ENDCOLOR% - colored text (also %YELLOW% , %ORANGE% , %PINK% , %PURPLE% , %TEAL% , %NAVY% , %BLUE% , %AQUA% , %LIME% , %GREEN% , %OLIVE% , %MAROON% , %BROWN% , %BLACK% , %GRAY% , %SILVER% , %WHITE% )
-
%REDBG% text %ENDBG% - colored background (also %YELLOWBG% , %ORANGEBG% , %PINKBG% , %PURPLEBG% , %TEALBG% , %NAVYBG% , %BLUEBG% , %AQUABG% , %LIMEBG% , %GREENBG% , %OLIVEBG% , %MAROONBG% , %BROWNBG% , %BLACKBG% , %GRAYBG% , %SILVERBG% , %WHITEBG% )
There are additional useful preferences variables defined in TWikiPreferences, in Main.TWikiPreferences, and in WebPreferences of every web.
Predefined Variables
Most predefined variables return values that were either set in the configuration when TWiki was installed, or taken from server info (such as current username, or date and time). Some, like %SEARCH% , are powerful and general tools.
- Show all TWiki Variables
- Predefined variables can be overridden by preferences variables (except a few such as TOPIC and WEB)
- Extensions may extend the set of predefined variables (see individual extension topics for details)
- Take the time to thoroughly read through ALL preference variables. If you actively configure your site, review variables periodically. They cover a wide range of functions, and it can be easy to miss the one perfect variable for something you have in mind. For example, see
%INCLUDINGTOPIC% , %INCLUDE% , and the mighty %SEARCH% .
Search or List Variables by Category
All TWiki Variables:
ACTIVATEDPLUGINS, ADDTOHEAD, ALLVARIABLES, AQUA, ATTACHURL, ATTACHURLPATH, AUTHREALM, BASETOPIC, BASEWEB, BB, BB2, BB3, BB4, BLACK, BLUE, BR, BROWN, BUBBLESIG, BULLET, CALC, CALCULATE, CARET, CHILDREN, COLORPICKER, COMMENT, CONTENTMODE, COPY, DASHBOARD, DATE, DATEPICKER, DISPLAYTIME, DISPLAYTIME2, EDITACTION, EDITFORM, EDITFORMFIELD, EDITTABLE, ENCODE, ENDBG, ENDCOLOR, ENDCOLUMNS, ENDSECTION, ENTITY, ENV, EXAMPLEVAR, FAILEDPLUGINS, FORM, FORMFIELD, FOURCOLUMNS, GET, GMTIME, GMTIME2, GRAY, GREEN, GROUPS, H, HEADLINES, HIDE, HIDEINPRINT, HOMETOPIC, HTTP, HTTPHOST, HTTPS, I, ICON, ICONURL, ICONURLPATH, IF, INCLUDE, INCLUDINGTOPIC, INCLUDINGWEB, JQENDTAB, JQENDTABPANE, JQTAB, JQTABPANE, LANGUAGE, LANGUAGES, LAQUO, LIME, LOCALSITEPREFS, LOGIN, LOGINURL, LOGOUT, LOGOUTURL, M, MAINWEB, MAKETEXT, MAROON, MDREPO, META, METASEARCH, N, NAVY, NBSP, NOP, NOTIFYTOPIC, OLIVE, ORANGE, P, PARENTBC, PARENTTOPIC, PINK, PLUGINDESCRIPTIONS, PLUGINVERSION, PUBURL, PUBURLPATH, PURPLE, Q, QUERYPARAMS, QUERYSTRING, RAQUO, RED, REDBG, REG, REMOTEADDR, REMOTEPORT, REMOTEUSER, RENDERLIST, REVINFO, REVINFO2, S, SCRIPTNAME, SCRIPTSUFFIX, SCRIPTURL, SCRIPTURL2, SCRIPTURLPATH, SCRIPTURLPATH2, SEARCH, SERVERTIME, SERVERTIME2, SESSIONID, SESSIONVAR, SESSIONVARIABLE, SET, SETGETDUMP, SILVER, SITENAME, SITESTATISTICSTOPIC, SLIDESHOWEND, SLIDESHOWSTART, SPACEDTOPIC, SPACEOUT, STARTINCLUDE, STARTSECTION, STATISTICSTOPIC, STOPINCLUDE, SYSTEMWEB, T, TABLE, TEAL, THREECOLUMNS, TM, TOC, TOC2, TOPIC, TOPICLIST, TOPICTITLE, TOPICURL, TWIKISHEET, TWIKIWEB, TWISTY, TWOCOLUMNS, U, URLPARAM, USERINFO, USERNAME, USERREPORT, USERSIG, USERSWEB, VAR, VBAR, WEB, WEBLIST, WEBPREFSTOPIC, WHITE, WIKIHOMEURL, WIKILOGOALT, WIKILOGOIMG, WIKILOGOURL, WIKINAME, WIKIPREFSTOPIC, WIKITOOLNAME, WIKIUSERNAME, WIKIUSERSTOPIC, WIKIVERSION, WIKIWEBMASTER, WIKIWEBMASTERNAME, WIP, X, Y, YELLOW, total 190 variables
Documenting TWiki Variables
This section is for people documenting TWiki variables of the TWiki core and TWiki extensions.
Each variable is documented in a topic named Var<name> in the TWiki web. For example, a %LIGHTSABER% variable has a documentation topic called VarLIGHTSABER. The topic is expected to have a specific format so that reports in this TWikiVariables topic, in TWikiVariablesSearch and in category topics work as expected.
Basic structure of a variable documentation topic:
- Parent set to TWikiVariables
- An anchor named the same like the topic, such as
#VarLIGHTSABER
- A
---+++ (level 3) heading with variable name, -- , short description
- A bullet with description of the variable (optional)
- A
Syntax: bullet with example syntax
- A
Parameters: bullet with a table explaining the parameters (optional)
- An
Example: bullet or two with examples
- An
Expands to: bullet with expanded variable (optional)
- A
Note: bullet with notes (optional)
- A
Category: bullet with one or more of the TWiki variables categories: AdministrationVariables, ApplicationsAndComponentsVariables, AttachmentsAndFilesVariables, ChartingAndDrawingVariables, DatabaseAndFormsVariables, DateAndTimeVariables, DevelopmentVariables, EditingAndContentUpdateVariables, EmailAndNotificationVariables, ExportAndPublishingVariables, FormattingAndRenderingVariables, ImportVariables, LinkingAndNavigationVariables, SearchingAndListingVariables, SecurityAndAccessControlVariables, SkinsAndTemplatesVariables, SystemInformationVariables, TablesAndSpreadsheetsVariables, UIAndVisualizationVariables, UsersAndAuthenticationVariables, WorkflowAndAutomationVariables
- A
Related: bullet with related links. Links have conditional IF so that links work properly locally in variable documentation topics and in the TWikiVariables topic
Example content of a VarLIGHTSABER topic:
#VarLIGHTSABER
---+++ LIGHTSABER -- laser sword to fend of unethical competition
* The =%<nop>LIGHTSABER{}%= variable is handled by the LightsaberPlugin.
* Syntax: =%<nop>LIGHTSABER{ _parameters_ }%=
* Parameters:
| *Parameter* | *Description* | *Default* |
| =color="..."= | Color: =red=, =glue=, =green= | =white= |
| =sound="..."= | Sound: =none=, =standard=, =loud= | =none= |
* Example: =%<nop>LIGHTSABER{ color="red" }%= shows a red Lightsaber
* Expands to: =%LIGHTSABER{ color="red" }%=
* Note: The Lightsaber is a fictional weapon in the Star Wars universe, a "laser sword."
* Category: FormattingAndRenderingVariables, UIAndVisualizationVariables
* Related: [[%IF{"'%INCLUDINGTOPIC%'='TWikiVariables'" then="#"}%VarPLASMA][PLASMA]], LightsaberPlugin
|
|
< < |
TWiki Formatted Search
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 the format="..." 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 |" }% . See %SEARCH{...}% for other search parameters, such as separator="" .
Syntax
Three parameters can be used to customize a 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:* |"
Variables that can be used in the header string:
Name: |
Expands To: |
$web |
Name of the web |
$n or $n() |
New line. Use $n() if followed by alphanumeric character, e.g. write Foo$n()Bar instead of Foo$nBar |
$nop or $nop() |
Is a "no operation". This variable gets removed; useful for nested search |
$quot or \" |
Double quote (" ) |
$aquot |
Apostrophe quote (' ) |
$percnt |
Percent sign (% ) |
$dollar |
Dollar sign ($ ) |
$lt |
Less than sign (< ) |
$gt |
Greater than sign (> ) |
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, shortened to 40 characters with "..." indication |
$topictitle |
Topic title, in order of sequence defined by: Form field named "Title", topic preference setting named TITLE, topic name |
$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. |
$text(encode:type) |
Same as above, but encoded in the specified type. Possible types are the same as in ENCODE. Though ENCODE can take the extra parameter, $text(encode:type) cannot. Example: $text(encode:html) |
$locked |
LOCKED flag (if any) |
$date |
Time stamp of last topic update, e.g. 2025-05-10 - 15:49 |
$isodate |
Time stamp of last topic update, e.g. 2025-05-10T15:49Z |
$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 TWiki variables, 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 as ALLTWIKI{...} |
$summary(expandvar) |
Topic summary, with %ALLTWIKI{...}% variables expanded |
$summary(noheader) |
Topic summary, with leading ---+ headers removed Note: The tokens can be combined, for example $summary(100, showvarnames, noheader) |
$changes |
Summary of changes between latest rev and previous rev |
$changes(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 to PublicFAQ . This applies only to topics that have a TWikiForm |
$formfield(name, encode:type) |
Form field value, encoded in the specified type. Possible types are the same as in ENCODE: quote , moderate , safe , entity , html , url and csv . The encode:type parameter can be combined with other parameters described below, but it needs to be the last parameter. Example: $formfield(Description, 20, encode:html) |
$formfield(name, render:display) |
Form field value, rendered for display. For example, a form field of type color will render as a colored box. If not specified, the raw value is returned, such as a color value #336699 . The render:display parameter can be combined with other parameters, but must be used after the parameters described below. |
$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, shortened to 30 characters with "..." indication |
$query(query-syntax) |
Access topic meta data using SQL-like QuerySearch syntax. Example: • $query(attachments.arraysize) returns the number of files attached to the current topic • $query(attachments[name~'*.gif'].size) returns an array with size of all .gif attachments, such as 848, 1425, 923 • $query(parent.name) is equivalent to $parent |
$query(query-syntax, quote:") |
Strings in QuerySearch result are quoted with the specified quote. Useful to triple-quote strings for use in SpreadSheetPlugin's CALCULATE, such as $query(attachments.comment, quote:''') which returns a list of triple-quoted attachment comment strings -- the spreadhseet funcions will work properly even if comment strings contain commas and parenthesis |
$query(query-syntax, encode:type) |
QuerySearch result is encoded in the specified type. This is in parallel to $formfield(name, encode:type) mentioned above |
$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 a multiple="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 e-mail 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 |
$pattern(reg-exp, encode:type) |
A text extracted by reg-exp is encoded in the specified type. This is in parallel to $formfield(name, encode:type) mentioned above |
$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. |
$ntopics |
Number of topics found in current web. This is the current topic count, not the total number of topics |
$tntopics |
The total number of topics matched |
$nwebs |
The number of webs searched |
$nhits |
Number of hits if multiple="on" . Cumulative across all topics in current web. Identical to $ntopics unless multiple="on" |
$n or $n() |
New line. Use $n() if followed by alphanumeric character, e.g. write Foo$n()Bar instead of Foo$nBar |
$nop or $nop() |
Is a "no operation". This variable gets removed; useful for nested search |
$quot or \" |
Double quote (" ) |
$aquot |
Apostrophe quote (' ) |
$percnt |
Percent sign (% ) |
$dollar |
Dollar sign ($ ) |
$lt |
Less than sign (< ) |
$gt |
Greater than sign (> ) |
3. footer="..." parameter
Use the footer parameter to specify the footer of a search result. It should correspond to the format of the format parameter. This parameter is optional. Example: footer="| *Topic* | *Summary* |"
Variables that can be used in the footer string:
Name: |
Expands To: |
$web |
Name of the web |
$ntopics |
Number of topics found in current web |
$tntopics |
The total number of topics matched |
$nwebs |
The number of webs searched |
$nhits |
Number of hits if multiple="on" . Cumulative across all topics in current web. Identical to $ntopics unless multiple="on" |
$n or $n() |
New line. Use $n() if followed by alphanumeric character, e.g. write Foo$n()Bar instead of Foo$nBar |
$nop or $nop() |
Is a "no operation". This variable gets removed; useful for nested search |
$quot or \" |
Double quote (" ) |
$aquot |
Apostrophe quote (' ) |
$percnt |
Percent sign (% ) |
$dollar |
Dollar sign ($ ) |
$lt |
Less than sign (< ) |
$gt |
Greater than sign (> ) |
4. default="..." parameter
Use the default parameter to specify a default message if there are no hits in a web. This parameter is optional. Example: default="| *Note* | Nothing found in the [[$web.WebHome][$web]] web |"
Variables that can be used in the default string:
Name: |
Expands To: |
$web |
Name of the web |
$n or $n() |
New line. Use $n() if followed by alphanumeric character, e.g. write Foo$n()Bar instead of Foo$nBar |
$nop or $nop() |
Is a "no operation". This variable gets removed; useful for nested search |
$quot or \" |
Double quote (" ) |
$aquot |
Apostrophe quote (' ) |
$percnt |
Percent sign (% ) |
$dollar |
Dollar sign ($ ) |
$lt |
Less than sign (< ) |
$gt |
Greater than sign (> ) |
Results pagination
When a search return many results, you may want to paginate them having the following line below the results.
«Prev 1 2 3 4 5 Next»
SearchResultsPagination describes how to do it.
Evaluation order of variables
By default, variables embedded in the format parameter of %SEARCH{}% are evaluated once before the search. This is OK for variables that do not change, such as %SCRIPTURLPATH% . Variables that should be evaluated once per search hit must be escaped. For example, to escape a conditional:
%IF{ "..." then="..." else="..." }%
write this:
format="$percntIF{ \"...\" then=\"...\" else=\"...\" }$percnt"
Examples
Here are some samples of formatted searches. The SearchPatternCookbook has other examples, such as creating a picklist of usernames, searching for topic children and more.
Bullet list showing topic name and summary
Write this:
%SEARCH{
"FAQ"
scope="topic"
nosearch="on"
nototal="on"
header=" * *Topic: Summary:*"
format=" * [[$topic]]: $summary"
footer=" * *Topic: Summary*"
}%
To get this:
- Topic: Summary:
- TWikiFAQ: Frequently Asked Questions About TWiki This is a real FAQ, and also a demo of an easily implemented knowledge base solution. To see how it`s done, view the source...
- TWikiFaqTemplate: FAQ: Answer: Back to: TWikiFAQ Contributors:
- TextFormattingFAQ: Text Formatting FAQ This topics lists frequently asked questions on text formatting. Text formatting applies to people who edit TWiki pages in raw edit mode . TextFormattingRules...
- Topic: Summary
Table showing form field values of topics with a form
In a web where there is a form that contains a TopicClassification field, an OperatingSystem field and an OsVersion field we could write:
| *Topic:* | *OperatingSystem:* | *OsVersion:* |
%SEARCH{ "[T]opicClassification.*?value=\"[P]ublicFAQ\"" scope="text" type="regex" nosearch="on" nototal="on" format="| [[$topic]] | $formfield(OperatingSystem) | $formfield(OsVersion) |" }%
To get this:
Extract some text from a topic using regular expression
Write this:
%SEARCH{
"__Back to\:__ TWikiFAQ"
scope="text"
type="regex"
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 Forms 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 is distributed under the 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...
- What does the "T" in TWiki stand for? 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).
- 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
Write this:
%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:
- ATasteOfTWiki is referenced by:
- FormattedSearch is referenced by:
- AnApplicationWithWikiForm, BackupRestorePlugin, EditTablePlugin, EmptyPlugin, FormatTokens, HeadlinesPlugin, IfStatements, InterwikiPlugin, ManagingWebs, PreferencesPlugin, QuerySearch, RegularExpression, RenderListPlugin, SearchHelp, SearchPatternCookbook, SearchResultsPagination, SetGetPlugin, SlideShowPlugin, SmiliesPlugin, SpreadSheetPlugin, TWikiAccessControl, TWikiDocumentation, TWikiForms, TWikiHistory, TWikiMetaData, TWikiReferenceManual, TWikiReleaseNotes04x00, TWikiReleaseNotes04x01, TWikiScripts, TWikiSearchDotPm, TWikiSheetPlugin, TWikiSiteTools, TWikiTip018, TWikiTopics, TWikiUISearchDotPm, TWikiVariablesQuickStart, TagMePlugin, TwistyPlugin, VarCHILDREN, VarEDITFORM, VarEDITFORMFIELD, VarFORM, VarFORMFIELD, VarMETA, VarMETASEARCH, VarSEARCH, VarURLPARAM, WatchlistPlugin, WebHome, WebLeftBar, WebTopMenu, WelcomeGuest
- TWikiAccessControl is referenced by:
- AllowWebCreateByUserMappingManager, AutonomousWebs, CopyingTopics, CustomUserGroupNotations, EditTablePlugin, FileAttachment, MainFeatures, ManagingTopics, ManagingUsers, ManagingWebs, PatternSkinCustomization, SitePermissions, SourceCode, TWikiAccessControl, TWikiDocumentation, TWikiForms, TWikiFuncDotPm, TWikiHistory, TWikiInstallationGuide, TWikiPreferences, TWikiReferenceManual, TWikiReleaseNotes04x01, TWikiReleaseNotes04x02, TWikiReleaseNotes06x00, TWikiScripts, TWikiSiteTools, TWikiTopics, TWikiTutorial, TWikiUserAuthentication, TWikiVariables, TagMePlugin, UserMasquerading, VarHIDE, VarSEARCH, WebPreferences, WebPreferencesHelp, WikiCulture, WikiWord
- TWikiSite is referenced by:
- AdminToolsCategory, InstantEnhancements, InterwikiPlugin, ManagingWebs, SiteMap, SiteStatisticsFooter, StartingPoints, TWikiAccessControl, TWikiDocumentation, TWikiGlossary, TWikiI18NDotPm, TWikiInstallationGuide, TWikiPreferences, TWikiReferenceManual, TWikiRegistration, TWikiReleaseNotes04x02, TWikiReleaseNotes05x00, TWikiReleaseNotes05x01, TWikiReleaseNotes06x00, TWikiScripts, TWikiSite, TWikiTopics, TWikiTutorial, TWikiUserAuthentication, TWikiUsersGuide, WabiSabi, WebHome, WebLeftBar, WebSiteTools, WebStatisticsFooter, WebTopMenu, WelcomeGuest, WhatDoesTWikiStandFor, WhatIsWikiWiki, WikiCulture, WikiReferences
- WabiSabi is referenced by:
- WhatIsWikiWiki is referenced by:
- WikiCulture is referenced by:
- WikiReferences is referenced by:
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 $dollarpercntSEARCH{ for level three, $dollardollarpercntSEARCH{ for level four, etc.
Note: Another option, instead of a nested search, is to create a hash. Refer to the blog TWiki:Blog.BlogEntry201603x1. A search using hashes, if possible, may be significantly faster than a nested search.
Most recently changed pages
Write this:
%SEARCH{
"\.*"
scope="topic"
type="regex"
nosearch="on"
nototal="on"
sort="modified"
reverse="on"
format="| [[$topic]] | $wikiusername | $date |"
limit="7"
}%=
To get this:
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:
- 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
This requires the TWiki:Plugins.SpreadSheetPlugin. The following example shows all topics in the Main web that have been updated in the last 7 days.
Write this:
%CALCULATE{$SET(weekold, $TIMEADD($TIME(), -7, day))}%
%SEARCH{ "." scope="topic" type="regex" web="Main" nonoise="on" sort="modified" reverse="on" format="$percntCALCULATE{$IF($TIME($date) < $GET(weekold), <nop>, | [[$web.$topic][$topic]] | $wikiusername | $date | $rev |)}$percnt" limit="100" }%
- The first line sets the
weekold variable to the serialized date of exactly one week ago
- The SEARCH has a deferred CALCULATE. The
$percnt makes sure that the CALCULATE gets executed once for each search hit
- The CALCULATE 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
- This example is for illustration only, it is easier to use the
date="..." paramter in SEARCH to restrict the date.
To get this:
The condition can be anything you like. To restrict search based on a date range it is easier to use the date="" parameter as shown in the next example.
Restrict search based on a date range
A search can be restricted based on a date range. The following example is identical to the previous one, showing all topics in the Main web that have been updated in the last 7 days.
Write this:
%SEARCH{
"."
scope="topic"
type="regex"
web="%USERSWEB%"
nonoise="on"
sort="modified"
reverse="on"
format="| [[$web.$topic][$topic]] | $wikiusername | $date | $rev |"
limit="100"
date="P1w/$today"
}%=
To get this:
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="%SCRIPTURLPATH{"view"}%/%WEB%/%TOPIC%">
Find Topics:
<input type="text" name="q" size="32" value="%URLPARAM{"q" encode="entity"}%" /> <input type="submit" class="twikiSubmit" value="Search" />
</form>
Result:
%SEARCH{
search="%URLPARAM{"q" encode="search"}%"
type="keyword"
format=" * $web.$topic: %BR% $summary"
nosearch="on"
}%
To get this:
Result:
Related Topics: UserDocumentationCategory, SearchHelp, VarSEARCH, VarENCODE, SearchResultsPagination, SearchPatternCookbook, RegularExpression, QuerySearch
-- Contributors: TWiki:Main.PeterThoeny, TWiki:Main.CrawfordCurrie, TWiki:Main.SopanShewale |
> > |
File Attachments
Each topic can have one or more files of any type attached to it by using the Attach screen to upload (or download) files from your local PC. Attachments are stored under revision control: uploads are automatically backed up; all previous versions of a modified file can be retrieved.
What Are Attachments Good For?
File Attachments can be used to archive data, or to create powerful customized groupware solutions, like file sharing and document management systems, and quick Web page authoring.
Document Management System
- You can use Attachments to store and retrieve documents (in any format, with associated graphics, and other media files); attach documents to specific TWiki topics; collaborate on documents with full revision control; distribute documents on a need-to-know basis using web and topic-level access control; create a central reference library that's easy to share with an user group spread around the world.
File Sharing
- For file sharing, FileAttachments on a series of topics can be used to quickly create a well-documented, categorized digital download center for all types of files: documents; graphics and other media; drivers and patches; applications; anything you can safely upload!
Web Authoring
- Through your Web browser, you can easily upload graphics (or sound files, or anything else you want to link to on a page) and place them on a single page, or use them across a web, or site-wide.
- NOTE: You can also add graphics - any files - directly, typically by FTP upload. This requires FTP access, and may be more convenient if you have a large number of files to load. FTP-ed files can't be managed using browser-based Attachment controls. You can use your browser to create TWikiVariables shortcuts, like this %H% =
.
Uploading Files
- Click on the
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.
- NOTE: The topic must already exist. It is a two step process if you want to attach a file to a non-existing topic; first create the topic, then add the file attachment.
- TWiki is capable of getting up to 10 files per upload session. Whether you can actually upload multiple files in one go from web user interface depends on skin.
- Any type of file can be uploaded. Some files that might pose a security risk are renamed, ex:
*.php files are renamed to *.php.txt so that no one can place code that would be read in a .php file.
- The previous upload path is retained for convenience. In case you make some changes to the local file and want to upload it, again you can copy the previous upload path into the Local file field.
- TWiki can limit the file size. This is defined by the
%ATTACHFILESIZELIMIT% variable of the TWikiPreferences, currently set at 10000 KB.
-
It's not recommended to upload files greater than a few hundred K through a browser. Large files can be extremely slow-loading, and often time out. Use an FTP site for large file uploads.
- Automatic attachments:
- When enabled, all files in a topic's attachment directory are shown as attachments to the topic - even if they were directly copied to the directory and never attached by using an 'Attach' link. This is a convenient way to quickly "attach" files to a topic without uploading them one by one; although at the cost of losing audit trail and version control.
- To enable this feature, set the {AutoAttachPubFiles} configuration option.
- NOTE: The automatic attachment feature can only be used by an administrator who has access to the server's file system.
Downloading Files
-
NOTE: There is no access control on individual attachments. If you need control over single files, create a separate topic per file and set topic-level access restrictions for each.
Moving Attachment Files
An attachment can be moved between topics.
- Click
Manage on the Attachment to be moved.
- On the control screen, select the new web and/or topic.
- Click
Move . The attachment and its version history are moved. The original location is stored as topic Meta Data.
Deleting Attachments
Move unwanted Attachments to web Trash , topic TrashAttachment .
Linking to Attached Files
- Once a file is attached it can be referenced in the topic. Example:
-
Attach file: Sample.txt
-
Edit topic and enter: %ATTACHURL%/Sample.txt
-
Preview : %ATTACHURL%/Sample.txt text appears as: /twiki/pub/TWiki/FileAttachment/Sample.txt, a link to the text file.
- To reference an attachment located in another topic, enter:
-
%PUBURLPATH%/%WEB%/OtherTopic/Sample.txt (if it's within the same web)
-
%PUBURLPATH%/Otherweb/OtherTopic/Sample.txt (if it's in a different web)
- Attached HTML files and text files can be inlined in a topic. Example:
-
Attach file: Sample.txt
-
Edit topic and write text: %INCLUDE{"%ATTACHURL%/Sample.txt"}%
- Content of attached file is shown inlined.
- Read more about INCLUDE in TWikiVariables
- GIF, JPG and PNG images can be attached and shown embedded in a topic. Example:
-
Attach file: Smile.gif
-
Edit topic and write text: %ATTACHURL%/Smile.gif
-
Preview : text appears as /twiki/pub/TWiki/FileAttachment/Smile.gif, an image.
File Attachment Contents Table
Files attached to a topic are displayed in a directory table, displayed at the bottom of the page, or optionally, hidden and accessed when you click Attach.
<--//twikiAttachments-->
File Attachment Controls
Clicking on a Manage link takes you to a new page that looks a bit like this (depending on what skin is selected):
<-- /twikiFormSteps-->
<--/patternTopicActions-->
- The first table is a list of all attachments, including their attributes. An
h means the attachment is hidden, it isn't listed when viewing a topic.
- The second table is all the versions of the attachment. Click on View to see that version. If it's the most recent version, you'll be taken to an URL that always displays the latest version, which is usually what you want.
- To change the comment on an attachment, enter a new comment and then click Change properties. Note that the comment listed against the specific version will not change, however the comment displayed when viewing the topic does change.
- To hide/unhide an attachment, enable the
Hide file checkbox, then click Change properties .
File names
File systems tend to be liberal about characters used in file names.
But there are characters which may cause problems if they are used in a file name of a TWiki attachment.
As such, when TWiki saves an uploaded file attachment, it's saved as a file whose name is cleansed to avoid problems.
Specifically:
- Space are replaed by underscores
- The
.txt extension is appended to some filenames for security reasons
- Characters such as
~ , $ , @ , % are removed
- Non-ASCII characters are deleted
When an attachment file name is altered by the process above, you are notified
Known Issues
- Unlike topics, attachments are not locked during editing. As a workaround, you can change the comment to indicate an attachment file is being worked on - the comment on the specific version isn't lost, it's there when you list all versions of the attachment.
- Attachments are not secured by default. Anyone can read them if they know the name of the web, topic and attachment. Ask your TWiki administrator if TWiki is configured to secure attachments.
|
|
TWiki Forms - Foundation of TWiki Applications
Add structure to content with forms attached to twiki topics. TWiki forms (with form fields) and formatted search are the base for building database applications.
Overview
By adding form-based input to free form content, you can structure topics with unlimited, easily searchable categories. A form is enabled for a web and can be added to a topic. The form data is shown in tabular format when the topic is viewed, and can be changed in edit mode using edit fields, radio buttons, check boxes and list boxes. Many different form types can be defined in a web, though a topic can only have one form attached to it at a time.
Typical steps to build an application based on TWiki forms:
- Define a form template
- Enable the form for a web
- Add the form to a template topic
- Build an HTML form to create new topics based on that template topic
- Build a FormattedSearch to list topics that share the same form
Tip: The blog How to Create a TWiki Application on TWiki.org is a good tutorial to get started with TWiki forms based applications.
Defining a Form
A Form Template specifies the fields in a form. A Form Template is simply a page containing a TWiki table, where each row of the table specifies one form field.
- Create a new topic with your form name:
YourForm , ExpenseReportForm , InfoCategoryForm , RecordReviewForm , whatever you need. The name of a Form Template topic must end in Form.
- Create a TWiki table, with each column representing one element of an entry field:
Name , Type , Size , Values , Tooltip message , and Attributes (see sample below).
- For each field, fill in a new line; for the type of field, select from the list.
- Save the topic
Example:
| *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... | |
See structure of a form for full details of what types are available and what all the columns mean.
You can also retrieve possible values for select , checkbox or radio types from other topics:
Example:
- In the WebForm topic, define the form:
Leave the Values field blank.
- Then in the TopicClassification topic, define the possible values:
| *Name* | | NoDisclosure | | Public Supported | | Public FAQ | Name | NoDisclosure | Public Supported | Public FAQ |
Field values can also be set using the result of expanding other TWiki variables. For example,
%SEARCH{"Office$" scope="topic" web="%USERSWEB%" nonoise="on" type="regex" format="$web.$topic" separator=", " }%
When used in the value field of the form definition, this will find all topic names in the Main web which end in "Office" and use them as the legal field values.
Adding a Form to a Topic
- To add a Form, follow the "More topic actions" link at the bottom of a topic, select "Add or Replace Form".
- Select a Form Template topic. These are topics with names ending in Form that contain a Form Template table.
- A Form is typically added to a template topic, either to the
WebTopicEditTemplate topic in a web, or a new topic that serves as an application specific template topic.
- Modify the template topic to set the initial Form values.
- Note: Initial values will not be set in the form of a new topic if you only use the formtemplate parameter.
Changing a Form
- To change a Form, follow the "More topic actions" link at the bottom of a topic, select "Add or Replace Form", and select a new Form.
- You can change a form definition, and TWiki will try to make sure you don't lose any data from the topics that use that form.
- If you add a new field to the form, then it will appear next time you edit a topic that uses the form.
- If you delete a field from the form, or change a field name, then the data will not be visible when you edit the topic (the changed form definition will be used). If you save the topic, the old data will be lost (though thanks to revision control, you can always see it in older versions of the topic)
- If two people edit the same topic containing a form at exactly the same time, and both change fields in the form, TWiki will try to merge the changes so that no data is lost.
Structure of a Form Template
A Form Template specifies the fields in a form. A Form Template is simply a page containing a TWiki table, where each row of the table specifies one form field.
Each row of the table defines one element of an input field:
Name |
Type |
Size |
Values |
Tooltip message |
Attributes |
The Name , Type and Size columns are required. Other columns are optional. The form template must have a header row, e.g. at least | *Name* | *Type* | *Size* | is required. Columns:
- Name column:
Name is the name of the form field.
- Type, Size, Value columns:
Type , Size and Value describe the type, size and initial value of this form field. Type text , checkbox , select and more are described in the Form Field Types section below.
- Tooltip message column: The
Tooltip message will be displayed when the cursor is hovered over the field in edit view.
- Attributes column:
Attributes may contain additional key="value" form field attributes, separated by space.
- A
hidden="1" attribute indicates that this field is hidden, e.g. not shown in view mode. However, the field is available for editing and storing information. The deprecated H attribute has the same function, it is still supported but might be removed in a future TWiki release. Tip: The TWiki form header is suppressed in view mode if all fields of the form are hidden. For better usability it is good to hide the whole form if the display and interaction of all form fields is done externally. For example, the display and modification of form field values can be done in a header topic that is included in each page.
- An
mandatory="1" attribute 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 asterisks next to the field name. The deprecated M attribute has the same function, it is still supported but might be removed in a future TWiki release.
- Additional form field type specific attributes can be used, such as
onfocus="..." and spellcheck=".." .
For example, a simple form just supporting entry of a name and a date would look as follows:
| *Name* | *Type* | *Size* |
| Name | text | 80 |
| Date | date | 30 |
Field Name Notes:
- Field names have to be unique.
- A very few field names are reserved. If you try to use one of these names, TWiki will automatically append an underscore to the name when the form is used.
- You can space out the title of the field, and it will still find the topic e.g.
Aeroplane Manufacturers is equivalent to AeroplaneManufacturers .
- If a
label field has no name, it will not be shown when the form is viewed, only when it is edited.
- Field names can in theory include any text, but you should stick to alphanumeric characters. If you want to use a non-wikiname for a
select , checkbox or radio field, and want to get the values from another topic, you can use [[...]] links. This notation can also be used when referencing another topic to obtain field values, but a name other than the topic name is required as the name of the field.
- Leading and trailing spaces are not significant.
Field Value Notes:
- The field value will be used to initialize a field when a form is created, unless specific values are given by the topic template or query parameters. The first item in the list for a select or radio type is the default item. For
label , text , and textarea fields the value may also contain commas. checkbox fields cannot be initialized through the form template.
- Leading and trailing spaces are not significant.
- Field values can also be generated through a FormattedSearch, which must yield a suitable table as the result.
- Variables in the initial values of a form definition get expanded when the form definition is loaded.
- If you want to use a
| character in the initial values field, you have to precede it with a backslash, thus: \| .
- You can use
<nop> to prevent TWiki variables from being expanded.
- The FormatTokens can be used to prevent expansion of other characters.
General Notes:
- The topic definition is not read when a topic is viewed.
- Form definition topics can be protected in the usual manner, using TWikiAccessControl, to limit who can change the form template and/or individual value lists. Note that view access is required to be able to edit topics that use the form definition, though view access to the form definition is not required to view a topic where the form has been used.
Form Field Types
Each table row of a form template defines one element of an input field:
Name |
Type |
Size |
Values |
Tooltip message |
Attributes |
Many types of form fields are available. Some are TWiki internal, some are provided by extensions. Find more TWiki form field extensions on TWiki.org. The Size , Value and Attributes depend on the Type used. Form field types:
Type |
Description |
Size |
Value |
text |
One-line text field |
Text box width in number of characters |
Initial (default) content |
textarea |
Multi-line text box |
Columns x rows, such as 80x6 ; default is 40x5 |
Initial (default) content |
label |
Read-only text label |
|
Text of the label |
checkbox |
One or more checkboxes that can be toggled individually |
Number of checkboxes shown per line |
Comma-space-separated list of item labels - can be a dynamic SEARCH |
checkbox+buttons |
Like checkbox , adding [Set] and [Clear] buttons |
radio |
Radio buttons, mutually exclusive; only one can be selected |
Number of radio buttons shown per line |
Comma-space-separated list of item labels - can be a dynamic SEARCH |
combobox |
Text field & select combination box, rendered as a text input field and a button to open up a selector box |
Text box width in number of characters |
Comma-space-separated list of options of the select box - can be a dynamic SEARCH |
select |
Select box, rendered as a picklist or a multi-row selector box depending on the size value |
• 1 : Show a picklist • Number > 1: Multi-row selector box of specified size • Range e.g. 3..10 : Multi-row selector box with variable size - the box will never be smaller than 3 items, never larger than 10, and will be 5 high if there are only 5 options |
Comma-space-separated list of options of the select box - can be a dynamic SEARCH |
select+multi |
Like select , turning multi-select on, to allow Shift+Click and Ctrl+Click to select (or deselect) multiple items |
select+values |
Like select , allowing definition of values that are different to the displayed text. An option is defined as value: title , where the value is the value passed on form submit, and title is the option text shown to the user. For example: | Field 9 | select+values | 3 | One, 2: Two, III: Three | Various values formats | shows but the values of options Two and Three are 2 and III , respectively. A legacy title=value syntax is supported as well, for example: One, Two=2, Three=III . |
select+multi+values |
Combination of select+multi and select+values |
color |
Single-line text box and a color picker to pick a color. The color can also be typed into the text box, such as #123456 . An attribute of type="popup" shows a button that, when clicked, opens a color picker popup. |
Text box width in number of characters |
Initial (default) color |
date |
Text input field and a button next to it to pick a date from a pop-up calendar. The date can also be typed into the text box. |
Text box width in number of characters |
Initial (default) date |
Note on Attributes:
- Common attributes: hidden, mandatory, class, form, onblur, onfocus, onchange, onselect, onmouseover, onmouseout, spellcheck, style, tabindex, title, translate
- Type-specific attributes:
-
text type: id, max, maxlength, min, pattern, placeholder
-
textarea type: autocomplete, id, maxlength, minlength, pattern, placeholder, wrap
-
label type: id, max, maxlength, min
-
combobox type: max, maxlength, min, pattern, placeholder
Values in Other Topics
As described above, you can also retrieve possible values for select, checkbox or radio types from other topics. For example, if you have a rows defined like this:
| *Name* | *Type* | *Size* |
| AeroplaneManufacturers | select | |
the TWiki will look for the topic AeroplaneManufacturers to get the possible values for the select .
The AeroplaneManufacturers topic must contain a table, where each row of the table describes a possible value. The table only requires one column, Name . Other columns may be present, but are ignored.
For example:
| *Name* |
| Routan |
| Focke-Wulf |
| De Havilland |
Notes:
- The
Values column must be empty in the referring form definition.
Using a form template on a different web
You can use a form template on a different web by specifying a form template in the WEB.TOPIC format.
In addition, you can put a comma separated list of webs in the TWIKIFORMPATH variable.
It's referred to only when a form template is spcified without a web (TOPIC instead of WEB.TOPIC).
The webs in TWIKIFORMPATH are examined in the listed order until the specified template is found.
TWIKIFORMPATH may contain TWiki variables. For example:
* Set TWIKIFORMPATH = %APPLICATION_WEB%, %WEB%
If TWIKIFORMPATH is defined, the current web is examined only if all the webs listed in it don't have the form template.
Extending the range of form data types
You can extend the range of data types accepted by forms by using TWikiPlugins. All such extended data types are single-valued (can only have one value) with the following exceptions:
- any type name starting with
checkbox
- any type name with
+multi anywhere in the name
Types with names like this can both take multiple values.
Hints and Tips
Editing Just Form Data, Without Topic Text
In some cases you want to change only the form data. You have the option of hiding the topic text with two methods:
- To display only the form whenever you edit a topic, set the preference variable EDITACTION to value
form (see details).
- To change the edit action in a URL, add a
action=form parameter to the edit URL string, such as %SCRIPTURL{edit}%/%BASEWEB%/%BASETOPIC%?t=%SERVERTIME{$epoch}%;action=form (see details).
Build an HTML Form to Create New Form-based Topics
New topics with a form are created by simple HTML forms asking for a topic name. For example, you can have a 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.
A Form Template specifies the fields in a form. A Form Template is simply a page containing a TWiki table, where each row of the table specifies one form field.
Update Specific Form Fields
All the form fields are shown and can be updated when editing a topic that has a form. It is possible to have more control over the layout of a form, or update just a subset of the form fields by using a custom HTML form. For example, in a bug tracker, each topic would include a header topic that shows a form with some fields to update specific form fields of the bug item. Use the EDITFORMFIELD variable to easily create this form in the header topic. Example:
%EDITFORMFIELD{ "form" type="start" action="save" topic="%BASETOPIC%" }%
| Priority: | %EDITFORMFIELD{ "Priority" topic="%BASETOPIC%" }% |
| Status: | %EDITFORMFIELD{ "Status" topic="%BASETOPIC%" }% |
| | %EDITFORMFIELD{ "form" type="submit" value="Update" }% |
%EDITFORMFIELD{ "LastUpdate" type="hidden" value="%SERVERTIME{$year-$mo-$day}%" }%
%EDITFORMFIELD{ "form" type="end" }%
Assuming the base topic has a BugForm with Priority and Status fields of type select, a LastUpdate field of type text, and some other fields. Above form shows a table with selectors for Priority and Status, and an Update button. On form submit, the Priority, Status and LastUpdate fields are updated in the base topic.
Searching for Form Data
TWiki Forms accept user-input data, stored as TWikiMetaData. Meta data also contains program-generated info about changes, attachments, etc. To find, format and display form and other meta data, see TWikiMetaData, EDITFORMFIELD, 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{"%USERSWEB%.UserName" scope="text" nosearch="on" nototal="on" sort="modified" reverse="on"
format="|<b>[[$web.$topic][$topic]]</b> |<nop>$formfield(TopicClassification) |" web="Sandbox"}%
Searching forms this way is obviously pretty inefficient, but it's easy to do. If you want better performance, take a look at some of the structured wiki extensions that support higher performance searching e.g. TWiki:Plugins.DBCachePlugin.
Gotcha!
- Some browsers may strip linefeeds from
text fields when a topic is saved. If you need linefeeds in a field, make sure it is a textarea .
|
|
< < |
File Attachments
Each topic can have one or more files of any type attached to it by using the Attach screen to upload (or download) files from your local PC. Attachments are stored under revision control: uploads are automatically backed up; all previous versions of a modified file can be retrieved.
What Are Attachments Good For?
File Attachments can be used to archive data, or to create powerful customized groupware solutions, like file sharing and document management systems, and quick Web page authoring.
Document Management System
- You can use Attachments to store and retrieve documents (in any format, with associated graphics, and other media files); attach documents to specific TWiki topics; collaborate on documents with full revision control; distribute documents on a need-to-know basis using web and topic-level access control; create a central reference library that's easy to share with an user group spread around the world.
File Sharing
- For file sharing, FileAttachments on a series of topics can be used to quickly create a well-documented, categorized digital download center for all types of files: documents; graphics and other media; drivers and patches; applications; anything you can safely upload!
Web Authoring
- Through your Web browser, you can easily upload graphics (or sound files, or anything else you want to link to on a page) and place them on a single page, or use them across a web, or site-wide.
- NOTE: You can also add graphics - any files - directly, typically by FTP upload. This requires FTP access, and may be more convenient if you have a large number of files to load. FTP-ed files can't be managed using browser-based Attachment controls. You can use your browser to create TWikiVariables shortcuts, like this %H% =
.
Uploading Files
- Click on the
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.
- NOTE: The topic must already exist. It is a two step process if you want to attach a file to a non-existing topic; first create the topic, then add the file attachment.
- TWiki is capable of getting up to 10 files per upload session. Whether you can actually upload multiple files in one go from web user interface depends on skin.
- Any type of file can be uploaded. Some files that might pose a security risk are renamed, ex:
*.php files are renamed to *.php.txt so that no one can place code that would be read in a .php file.
- The previous upload path is retained for convenience. In case you make some changes to the local file and want to upload it, again you can copy the previous upload path into the Local file field.
- TWiki can limit the file size. This is defined by the
%ATTACHFILESIZELIMIT% variable of the TWikiPreferences, currently set at 10000 KB.
-
It's not recommended to upload files greater than a few hundred K through a browser. Large files can be extremely slow-loading, and often time out. Use an FTP site for large file uploads.
- Automatic attachments:
- When enabled, all files in a topic's attachment directory are shown as attachments to the topic - even if they were directly copied to the directory and never attached by using an 'Attach' link. This is a convenient way to quickly "attach" files to a topic without uploading them one by one; although at the cost of losing audit trail and version control.
- To enable this feature, set the {AutoAttachPubFiles} configuration option.
- NOTE: The automatic attachment feature can only be used by an administrator who has access to the server's file system.
Downloading Files
-
NOTE: There is no access control on individual attachments. If you need control over single files, create a separate topic per file and set topic-level access restrictions for each.
Moving Attachment Files
An attachment can be moved between topics.
- Click
Manage on the Attachment to be moved.
- On the control screen, select the new web and/or topic.
- Click
Move . The attachment and its version history are moved. The original location is stored as topic Meta Data.
Deleting Attachments
Move unwanted Attachments to web Trash , topic TrashAttachment .
Linking to Attached Files
- Once a file is attached it can be referenced in the topic. Example:
-
Attach file: Sample.txt
-
Edit topic and enter: %ATTACHURL%/Sample.txt
-
Preview : %ATTACHURL%/Sample.txt text appears as: /twiki/pub/TWiki/FileAttachment/Sample.txt, a link to the text file.
- To reference an attachment located in another topic, enter:
-
%PUBURLPATH%/%WEB%/OtherTopic/Sample.txt (if it's within the same web)
-
%PUBURLPATH%/Otherweb/OtherTopic/Sample.txt (if it's in a different web)
- Attached HTML files and text files can be inlined in a topic. Example:
-
Attach file: Sample.txt
-
Edit topic and write text: %INCLUDE{"%ATTACHURL%/Sample.txt"}%
- Content of attached file is shown inlined.
- Read more about INCLUDE in TWikiVariables
- GIF, JPG and PNG images can be attached and shown embedded in a topic. Example:
-
Attach file: Smile.gif
-
Edit topic and write text: %ATTACHURL%/Smile.gif
-
Preview : text appears as /twiki/pub/TWiki/FileAttachment/Smile.gif, an image.
File Attachment Contents Table
Files attached to a topic are displayed in a directory table, displayed at the bottom of the page, or optionally, hidden and accessed when you click Attach.
<--//twikiAttachments-->
File Attachment Controls
Clicking on a Manage link takes you to a new page that looks a bit like this (depending on what skin is selected):
<-- /twikiFormSteps-->
<--/patternTopicActions-->
- The first table is a list of all attachments, including their attributes. An
h means the attachment is hidden, it isn't listed when viewing a topic.
- The second table is all the versions of the attachment. Click on View to see that version. If it's the most recent version, you'll be taken to an URL that always displays the latest version, which is usually what you want.
- To change the comment on an attachment, enter a new comment and then click Change properties. Note that the comment listed against the specific version will not change, however the comment displayed when viewing the topic does change.
- To hide/unhide an attachment, enable the
Hide file checkbox, then click Change properties .
File names
File systems tend to be liberal about characters used in file names.
But there are characters which may cause problems if they are used in a file name of a TWiki attachment.
As such, when TWiki saves an uploaded file attachment, it's saved as a file whose name is cleansed to avoid problems.
Specifically:
- Space are replaed by underscores
- The
.txt extension is appended to some filenames for security reasons
- Characters such as
~ , $ , @ , % are removed
- Non-ASCII characters are deleted
When an attachment file name is altered by the process above, you are notified
Known Issues
- Unlike topics, attachments are not locked during editing. As a workaround, you can change the comment to indicate an attachment file is being worked on - the comment on the specific version isn't lost, it's there when you list all versions of the attachment.
- Attachments are not secured by default. Anyone can read them if they know the name of the web, topic and attachment. Ask your TWiki administrator if TWiki is configured to secure attachments.
|
|
TWiki Templates
Definition of the templates used to render all HTML pages displayed in TWiki
Overview
Templates are plain text with embedded template directives that tell TWiki how to compose blocks of text together, to create something new.
There are two types of template:
- Master Templates: Define the HTML used to display TWiki pages.
- Template Topics: Define default text when you create a new topic
Tip: TWiki:TWiki.TWikiTemplatesSupplement on TWiki.org has supplemental documentation on TWiki templates.
Master Templates
TWiki uses master templates when composing the output from all actions, like topic view, edit, and preview.
This allows you to change the look and feel of all pages by editing just a few template files.
Master templates are also used in the definition of TWikiSkins.
Master templates are stored as text files with the extension .tmpl .
They are usually HTML with embedded template directives.
The directives are expanded when TWiki wants to generate a user interface screen.
How Template Directives Work
- Directives are of the form
%TMPL:<key>% and %TMPL:<key>{"attr"}% .
- Directives:
-
%TMPL:INCLUDE{"file"}% : Includes a template file. The file is found as described below.
-
%TMPL:DEF{"block"}% : Define a block. All text between this and the next %TMPL:END% directive is removed and saved for later use with %TMPL:P .
-
%TMPL:END% : Ends a block definition.
-
%TMPL:P{"var"}% : Includes a previously defined block.
-
%{...}% : is a comment.
- Two-pass processing lets you use a variable before or after declaring it.
- Templates and TWikiSkins work transparently and interchangeably. For example, you can create a skin that overloads only the
twiki.tmpl master template, like twiki.print.tmpl , that redefines the header and footer.
-
Use of template directives is optional: templates work without them.
-
NOTE: Template directives work only for templates: they do not get processed in normal topic text.
TMPL:P also supports simple parameters. For example, given the definition
%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.
Finding Templates
The master templates shipped with a twiki release are stored in the twiki/templates directory.
As an example, twiki/templates/view.tmpl is the default template file for the twiki/bin/view script.
You can save templates in other directories as long as they are listed in the {TemplatePath} configuration setting.
The {TemplatePath} is defined in the Miscellaneous section of the configure page.
You can also save templates in user topics (IF there is no possible template match in the templates directory).
The {TemplatePath} configuration setting defines which topics will be accepted as templates.
Templates that are included with an explicit '.tmpl' extension are looked for only in the templates/ directory.
For instance %TMPL:INCLUDE{"example.tmpl"}% will only return templates/example.tmpl , regardless of {TemplatePath} and SKIN settings.
The out-of-the-box setting of {TemplatePath} supports the following search order to determine which template file or topic to use for a particular script or %TMPL:INCLUDE{"script"}% statement.
The skin path is set as described in TWikiSkins.
- 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 aweb.atopic if the template name can be parsed into aweb.atopic
- The TWiki topic web.SkinSkinScriptTemplate for each skin on the skin path
- The TWiki topic web.ScriptTemplate
- The TWiki topic %SYSTEMWEB%.SkinSkinScriptTemplate for each skin on the skin path
- The TWiki topic %SYSTEMWEB%.ScriptTemplate
Legend:
- 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
For example, the 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 it
-
templates/Thisweb/example.pattern.tmpl deprecated; don't rely on it
-
templates/example.print.tmpl
-
templates/example.pattern.tmpl
-
templates/Thisweb/example.tmpl deprecated; don't rely on it
-
templates/example.tmpl
-
Thisweb.PrintSkinExampleTemplate
-
Thisweb.PatternSkinExampleTemplate
-
Thisweb.ExampleTemplate
-
TWiki.PrintSkinExampleTemplate
-
TWiki.PatternSkinExampleTemplate
-
TWiki.ExampleTemplate
Template names are usually derived from the name of the currently executing script; however it is also possible to override these settings in the view and edit scripts, for example when a topic-specific template is required. Two preference variables can be used to override the templates used:
-
VIEW_TEMPLATE sets the template to be used for viewing a topic
-
EDIT_TEMPLATE sets the template for editing a topic.
If these preferences are set locally (using Local instead of Set) for a topic, in WebPreferences, in Main.TWikiPreferences, or TWiki.TWikiPreferences (using Set), the indicated templates will be chosen for view and edit respectively. The template search order is as specified above.
Both VIEW_TEMPLATE and EDIT_TEMPLATE may contain TWiki variables, which are expanded.
For example, the following setting causes Item* topics to be displayed with the custom view template ItemViewTmpl while the other topics are displayed normally.
* Set VIEW_TEMPLATE = %IF{"'%CALCULATE{$SUBSTRING(%TOPIC%, 1, 4)}%' = 'Item'" then="ItemViewTmpl"}%
The following setting causes Item* topics to be edited with the editform template (edits only the TWiki form of the topic without editing the topic text) while the other topics are edited normally.
* Set EDIT_TEMPLATE = %IF{"'%CALCULATE{$SUBSTRING(%TOPIC%, 1, 4)}%' = 'Item'" then="editform"}%
Tip: If you want to override existing templates, without having to worry that your changes will get overwritten by the next TWiki update, change the {TemplatePath} so that another directory, such as the %USERSWEB% appears at the front. You can then put your own templates into that directory or web and these will override the standard templates. (Note that such will increase the lookup time for templates by searching your directory first.)
TMPL:INCLUDE recursion for piecewise customization, or mixing in new features
If there is recursion in the TMPL:INCLUDE chain (eg twiki.classic.tmpl contains %TMPL:INCLUDE{"twiki"}% , the templating system will include the next twiki.SKIN in the skin path.
For example, to create a customization of pattern skin, where you only want to over-ride the breadcrumbs for the view script, you can create only a view.yourlocal.tmpl:
%TMPL:INCLUDE{"view"}%
%TMPL:DEF{"breadcrumb"}% We don't want any crumbs %TMPL:END%
and then set SKIN=yourlocal,pattern
The default {TemplatePath} will not give you the desired result if you put these statements in the topic Thisweb.YourlocalSkinViewTemplate . The default {TemplatePath} will resolve the request to the template/view.pattern.tmpl , before it gets to the Thisweb.YourlocalSkinViewTemplate resolution. You can make it work by prefixing the {TemplatePath} with: $web.YourlocalSkin$nameTemplate .
Default master template
twiki.tmpl is the default master template. It defines the following sections.
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 |
Template Topics
The second type of template in TWiki are template topics. Template topics define the default text for new topics. There are four types of template topic:
Topic Name: |
What it is: |
WebTopicViewTemplate |
Alert page shown when you try to view a nonexistent topic. This page is usually used as a prompt to help you create a new topic. |
WebTopicNonWikiTemplate |
Alert page shown when you try to view a nonexistent topic with a non-WikiName. Again, this page is used as a prompt to help you create the new topic. |
WebTopicEditTemplate |
Default text used in a new topic. |
<MyCustomNamed>Template |
Whenever you create a topic ending in the word "Template", it is automatically added to the list of available templates in the "Use Template" drop down field on the WebCreateNewTopic page. |
When you create a new topic using the edit script, TWiki locates a topic to use as a content template according to the following search order:
- A topic name specified by the
templatetopic CGI parameter
- if no web is specified, the current web is searched first and then the TWiki web
- WebTopicEditTemplate in the current web
- WebTopicEditTemplate in the Main web
- WebTopicEditTemplate in the TWiki web
Variable Expansion
TWikiVariables located in template topics get expanded as follows when a new topic is created.
1. Default variable expansion
The following variables used in a template topic automatically get expanded when new topic is created based on it:
Variable: |
Description: |
%DATE% |
Signature format date. See VarDATE |
%GMTIME% |
Date/time. See VarGMTIME |
%GMTIME{...}% |
Formatted date/time. See 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, such as %URLPA%NOP%RAM{...}% escaping URLPARAM |
%STARTSECTION{type="templateonly"}% ... %ENDSECTION{type="templateonly"}% |
Text that gets removed when a new topic based on the template is created. See notes below. |
%SERVERTIME% |
Date/time. See VarSERVERTIME |
%SERVERTIME{...}% |
Formatted date/time. See VarSERVERTIME2 |
%USERNAME% |
Login name of user who is instantiating the new topic, e.g. guest |
%URLPARAM{"name"}% |
Value of a named URL parameter. See VarURLPARAM. |
%WIKINAME% |
WikiName of user who is instantiating the new topic, e.g. TWikiGuest |
%WIKIUSERNAME% |
User name of user who is instantiating the new tpoic, e.g. Main.TWikiGuest |
2. Preventing variable expansion
In a template topic, embed text that you do not want expanded inside a %STARTSECTION{type="templateonly"}% ... %ENDSECTION{type="templateonly"}% section. For example, you might want to write this in the template topic:
%STARTSECTION{type="templateonly"}%
This template can only be changed by:
* Set ALLOWTOPICCHANGE = Main.TWikiAdminGroup
%ENDSECTION{type="templateonly"}%
This will restrict who can edit the template topic, but will be removed when a new topic based on that template topic is created.
%NOP% can be used to prevent expansion of TWiki variables that would otherwise be expanded during topic creation. For example, escape %SERVERTIME% with %SER%NOP%VERTIME% .
3. Causing variable expansion in a section
You can forcefully expand TWikiVariables by placing them inside a type="expandvariables" section in the template topic, such as:
...
Example:
If you have the following content in a template topic:
* %SYSTEMWEB%.ATasteOfTWiki - view a short introductory presentation on TWiki for beginners
* %SYSTEMWEB%.WelcomeGuest - starting points on TWiki
* %SYSTEMWEB%.TWikiUsersGuide - complete TWiki documentation
* Sandbox.%HOMETOPIC% - try out TWiki on your own
* Sandbox.%TOPIC%Sandbox - just for me
you will get this raw text in new topics based on that template topic:
* TWiki.ATasteOfTWiki - view a short introductory presentation on TWiki for beginners
* TWiki.WelcomeGuest - starting points on TWiki
* TWiki.TWikiUsersGuide - complete TWiki documentation
* Sandbox.WebHome - try out TWiki on your own
* Sandbox.JimmyNeutronSandbox - just for me
4. Specifying variables to be expanded individually
You may want to mix variables to be expanded and variables not to be.
By prepending a variable name with EOTC__ (EOTC followed by two underscores; EOTC stands for Expand On Topic Creation), you can have the variable expanded.
Here's an example.
%EOTC__SEARCH{"."
topic="%URLPARAM{prefix}%*"
nonoise="on"
format="$percntINCLUDE{$topic}$percnt" separator="$n"
}%
This yields a series of %INCLUDE{...}% s, which are not expanded.
This is not achievable by an expandvariables section.
Specifying a Form
When you create a new topic based on a template, you often want the new topic to have a form attached to it. You can attach a form to the template topic, in which case it will be copied into the new topic.
Sometimes this isn't quite what you want, as it copies all the existing data from the template topic into the new topic. To avoid this and use the default values specified in the form definition instead, you can use the formtemplate CGI parameter to the edit script to specify the name of a form to attach.
See TWikiScripts for information about all the other parameters to edit .
Automatically Generated Unique Topic Names
For TWiki applications it is useful to be able to automatically generate unique topic names, such as BugID0001, BugID0002, etc. You can add AUTOINC<n> to the topic name in the edit and save scripts, and it will be replaced with an auto-incremented number on topic save. <n> is a number starting from 0, and may include leading zeros. Leading zeros are used to zero-pad numbers so that auto-incremented topic names can sort properly. Deleted topics are not re-used to ensure uniqueness of topic names. That is, the auto-incremented number is always higher than the existing ones, even if there are gaps in the number sequence.
Examples:
-
BugAUTOINC0 - creates topic names Bug0 , Bug1 , Bug2 , ... (does not sort properly)
-
ItemAUTOINC0000 - creates topic names Item0000 , Item0001 , Item0002 , ... (sorts properly up to 9999)
-
DocIDAUTOINC10001 - start with DocID10001 , DocID10002 , ... (sorts properly up to 99999; auto-links)
Characters after AUTOINC<n> are preserved, but are not taken into account when calculating the next increment. Use this to create topic names that have a unique identifier (serial number) and a descriptive text.
Example:
-
BlogAUTOINC0001-my-first-blog - creates topic name Blog0001-my-first-blog
-
BlogAUTOINC0001-my-crazy-cats - creates topic name Blog0002-my-crazy-cats
-
BlogAUTOINC0001-fondue-recipe - creates topic name Blog0003-fondue-recipe
Example link to create a new topic:
[[%SCRIPTURLPATH{edit}%/%WEB%/BugIDAUTOINC00001?templatetopic=BugTemplate;topicparent=%TOPIC%;t=%SERVERTIME{"$day$hour$min$sec"}%][Create new item]]
Note: After the save operation, the web client is redirected to the newly created topic by default. If the specified topic name contains AUTOINC<n> and you want to redirect to a different URL containing the newly created topic's name, you can use AUTOINC in the redirectto parameter. Let's say the specified topic name is ItemAUTOINC0001 , and redirectto is set to %SCRIPTURL{view}%/%WEB%/ViewerTopic?id=ItemAUTOINC . If the latest existing topic is Item0123 , a new topic named Item0124 is created, and the web client is redirected to ViewerTopic?id=Item0124 in the current web.
Template Topics in Action
Here is an example for creating new topics (in the Sandbox web) based on a specific template topic and form:
The above form asks for a topic name. A hidden input tag named templatetopic specifies ExampleTopicTemplate as the template topic to use. Here is the raw text of the form:
%EDITFORMFIELD{ "new" type="start" action="edit" topic="Sandbox.%TOPIC%" }%
* New example topic:
%EDITFORMFIELD{ "topic" type="text" value="ExampleTopicAUTOINC0001" size="30" }%
%EDITFORMFIELD{ "templatetopic" type="hidden" value="%SYSTEMWEB%.ExampleTopicTemplate" }%
%EDITFORMFIELD{ "topicparent" type="hidden" value="%HOMETOPIC%" }%
%EDITFORMFIELD{ "onlywikiname" type="hidden" value="on" }%
%EDITFORMFIELD{ "onlynewtopic" type="hidden" value="on" }%
%EDITFORMFIELD{ "form" type="submit" value="Create" }%
%EDITFORMFIELD{ "form" type="end" }%
Here is the equivalent form using a hand-crafted HTML form:
<form name="new" action="%SCRIPTURLPATH{edit}%/Sandbox/%HOMETOPIC%">
* New example topic:
<input type="text" name="topic" value="ExampleTopicAUTOINC0001" size="30" />
<input type="hidden" name="templatetopic" value="%SYSTEMWEB%.ExampleTopicTemplate" />
<input type="hidden" name="topicparent" value="%HOMETOPIC%" />
<input type="hidden" name="onlywikiname" value="on" />
<input type="hidden" name="onlynewtopic" value="on" />
<input type="submit" class="twikiSubmit" value="Create" />
</form>
Note: You can create a topic in one step, without going through the edit screen. To do that, specify the save script instead of the edit script in the form action. When you specify the save script in an HTML form tag you have to use the "post" method. This is done automatically when using the EDITFORMFIELD variable. Example when using the HTML form tag:
<form name="new" action="%SCRIPTURLPATH{save}%/Sandbox/" method="post">
...
</form>
The edit and save scripts understand many more parameters, see TWikiScripts#edit and TWikiScripts#save for details.
TIP: You can use the %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%
Using Absolute vs Relative URLs in Templates
When you use TWikiVariables such as %PUBURL% and %PUBURLPATH% in templates you should be aware that using %PUBURL% instead of %PUBURLPATH% puts absolute URLs in the produced HTML. This means that when a user saves a TWiki page in HTML and emails the file to someone outside a company firewall, the receiver has a severe problem viewing it. It is therefore recommended always to use the %PUBURLPATH% to refer to images, CSS, Javascript files etc so links become relative. This way browsers just give up right away and show a usable html file.
Related Topics: TWikiSkins, TWikiForms, TWikiScripts, DeveloperDocumentationCategory, AdminDocumentationCategory
TWiki Skins
A skin overlays regular templates to provide specific look and feel to TWiki screens.
Overview
TWiki uses TWikiTemplates files as the basis of all the screens it uses to interact with users. Each screen has an associated template file that contains the basic layout of the screen. This is then filled in by the code to generate what you see in the browser.
TWiki ships with a default set of template files that give a very basic, CSS-themable, look-and-feel. TWiki also includes support for skins that can be selected to give different, more sophisticated, look and feel. A default TWiki installation will usually start up with the PatternSkin already selected. Skins may also be defined by third parties and loaded into a TWiki installation to give more options. To see how TWiki looks when no skin is selected, view the current page with a non-existing skin.
TWiki topic content is not affected by the choice of skin, however a skin can be defined to use a CSS (Cascading Style Sheet) which can provide a radically different appearance to the text layout.
Relevant links on TWiki.org:
- TWiki:TWiki.TWikiSkinsSupplement -
tip: supplemental documentation on TWiki skins
- TWiki:Plugins.SkinPackage - list of all contributed skin packages
- TWiki:Plugins.SkinDevelopment - discussion and feedback on contributed skins
- TWiki:Plugins.SkinBrainstorming - open forum for new skin ideas
- TWiki:Plugins.SkinPackageHowTo - template to create a new skin package
See other types of extensions: TWikiAddOns, TWikiContribs, TWikiPlugins
Changing the default TWiki skin
TWiki ships with the TopMenuSkin activated by default. You can set a skin for the whole site, a single web, a single topic, or for each user individually. This is done by setting the SKIN preferences setting to the name of a skin. If the skin you select doesn't exist, then TWiki will pick up the default templates. For example, to make the SKIN setting work across all topics and webs, put it in TWikiPreferences.
Skins can cascade using a skin path explained below. One skin can be based on another one, and extensions can introduce additional screen elements. For example, the TagMePlugin adds tag elements to the TopMenuSkin, and the TopMenuSkin is based on the PatternSkin, resulting in this skin path:
* Set SKIN = tagme, topmenu, pattern
Defining Skins
You may want to define your own skin, for example to comply with corporate web guidelines, or because you have a aesthetic vision that you want to share. There are a couple of places you can start doing this.
The TWikiTemplates files used for skins are located in the twiki/templates directory and are named according to the skin: <scriptname>.<skin>.tmpl . Skin files may also be defined in TWiki topics - see TWikiTemplates for details.
To start creating a new skin, copy the default TWikiTemplates (like view.tmpl ), or copy an existing skin to use as a base for your own skin. You should only need to copy the files you intend to customize, as TWiki can be configured to fall back to another skin if a template is not defined in your skin. Name the files as described above (for example view.myskin.tmpl ).
If you use PatternSkin as your starting point, and you want to modify the layout, colors or even the templates to suit your own needs, have a look first at the topics PatternSkinCustomization and PatternSkinCssCookbook.
For your own TWiki skin we encourage you to show a small TWiki logo at the bottom of your skin:
<a href="http://twiki.org/"><img src="%PUBURL%/%SYSTEMWEB%/TWikiLogos/T-badge-88x31.gif" alt="This site is powered by the TWiki Enterprise Collaboration Platform" width="88" height="31" title="This site is powered by the TWiki Enterprise Collaboration Platform" border="0" /></a> |
Renders as: |
Note: TWiki.org has no marketing budget, e.g. we rely on TWiki users to spread the word of TWiki. You can support the open source project by adding logos that point back to TWiki.org, and by mentioning TWiki in social media.
The standard TWiki skins show the logo in the %WEBCOPYRIGHT% variable.
Note: Two skin names have reserved meanings; text skin, and skin names starting with rss have hard-coded meanings.
The following template files are used for TWiki screens, and are referenced in the TWiki core code. If a skin doesn't define its own version of a template file, then TWiki will fall back to the next skin in the skin path, or finally, to the default version of the template file.
(Certain template files are expected to provide certain TMPL:DEFs - these are listed in sub-bullets)
-
addform - used to select a new form for a topic
-
attachagain - used when refreshing an existing attachment
-
attachnew - used when attaching a new file to a topic
-
attachtables - defines the format of attachments at the bottom of the standard topic view
-
ATTACH:files:footer , ATTACH:files:header , ATTACH:files:row , ATTACH:versions:footer , ATTACH:versions:header , ATTACH:versions:row
-
changeform - used to change the form in a topic
-
changes - used by the changes script
-
edit - used for the edit screen
-
form
-
formtables - used to defined the format of forms
-
FORM:display:footer , FORM:display:header , FORM:display:row
-
login - used for loggin in when using the TemplateLoginManager
-
LOG_IN , LOG_IN_BANNER , LOG_OUT , LOGGED_IN_BANNER , NEW_USER_NOTE , UNRECOGNISED_USER
-
moveattachment - used when moving an attachment
-
oopsaccessdenied - used to format Access Denied messages
-
no_such_topic , no_such_web , only_group , topic_access
-
oopsattention - used to format Attention messages
-
already_exists , bad_email , bad_ver_code , bad_wikiname , base_web_missing , confirm , created_web , delete_err , 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 , upload_name_changed , web_creation_error , web_exists , web_missing , wrong_password , zero_size_upload
-
oopschangelanguage - used to prompt for a new language when internationalisation is enabled
-
oopsgeneric - a basic dialog for user information; provides "ok" button only
-
oopslanguagechanged - used to confirm a new language when internationalisation is enabled
-
oopsleaseconflict - used to format lease Conflict messages
-
preview - used for previewing edited topics before saving
-
rdiff - used for viewing topic differences
-
registernotify - used by the user registration system
-
registernotifyadmin - used by the user registration system
-
rename - used when renaming a topic
-
renameconfirm - used when renaming a topic
-
renamedelete - used when renaming a topic
-
renameweb - used when renaming a web
-
renamewebconfirm - used when renaming a web
-
renamewebdelete - used when renaming a web
-
searchbookview - used to format inline search results in book view
-
searchformat - used to format inline search results
-
search - used by the search CGI script
-
settings
-
view - used by the view CGI script
-
viewprint - used to create the printable view
twiki.tmpl is a master template conventionally used by other templates, but not used directly by code.
Note: Make sure templates do not end with a newline. Any newline will expand to an empty <p /> in the generated html. It will produce invalid html, and may break the page layout.
Partial customization, or adding in new features to an existing skin
You can use recursion in the TMPL:INCLUDE chain (e.g. twiki.pattern.tmpl contains %TMPL:INCLUDE{"twiki"}% , the templating system will include the next twiki.SKIN in the skin path (which is explained below). For example, to create a customization of pattern skin, where you only want to remove the edit & WYSIWYG buttons from view page, you create only a view.yourlocal.tmpl :
%TMPL:INCLUDE{"view"}%
%TMPL:DEF{"edit_topic_link"}%%TMPL:END%
%TMPL:DEF{"edit_wysiwyg_link"}%%TMPL:END%
and then set SKIN=yourlocal,pattern .
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 |
%SCRIPTURLPATH% |
The script URL path |
%SCRIPTSUFFIX% |
The script suffix, ex: .pl , .cgi |
%WEB% |
The name of the current web. |
%TOPIC% |
The name of the current topic. |
%WEBTOPICLIST% |
Common links of current web, defined in the WebPreferences. It includes a Jump 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 - TWikiGuest |
%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; can be set in TWikiPreferences |
The Jump Box and Navigation Box
The default skins include a 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 onchange 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 Jump Box for illustration purposes. You need to have JavaScript enabled for this to work:
Note: Redirect to a URL only works if it is enabled in configure (Miscellaneous, {AllowRedirectUrl} ).
Using Cascading Style Sheets
CSS files are gererally attachments to the skin topic that are included in the the skin templates - in the case of PatternSkin in the template styles.pattern.tmpl .
- To see how CSS is used in the default TWiki skin, see: PatternSkin
- If you write a complete new skin, this is the syntax to use in a template file:
<style type='text/css' media='all'>@import url('%PUBURLPATH%/%SYSTEMWEB%/MySkin/mystyle.css');</style>
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 the attachtables.tmpl template using the %TMPL:DEF macro syntax described in TWikiTemplates. These macros are:
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 format of tables of file versions in the Upload screen can also be changed, using the macros:
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 |
The ATTACH:row macros are expanded for each file in the attachment table, using the following special tags:
Tag |
Description |
%A_URL% |
viewfile 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. To get the 'pub' url of the file, use %PUBURL%/%WEB%/%TOPIC%/%A_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 |
Packaging and Publishing Skins
See TWiki:Plugins/SkinPackagingHowTo and TWiki:Plugins/SkinDeveloperFAQ
Browsing Installed Skins
You can try out all installed skins in the 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 called view. skin.tmpl , where skin is the name of the skin e.g. pattern . If no template is found, then the fallback is to use view.tmpl . Each skin on the path is searched for in turn. For example, if you have set the skin path to local,pattern then view.local.tmpl will be searched for first, then view.pattern.tmpl and finally view.tmpl .
The basic skin is defined by a SKIN setting:
-
Set SKIN = catskin, bearskin
You can also add a parameter to the URL, such as ?skin=catskin,bearskin :
Setting SKIN (or the ?skin parameter in the URL) replaces the existing skin path setting, for the current page only. 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 ruskin, catskin, bearskin ). There is also an equivalent cover URL parameter. The difference between setting SKIN vs. COVER is that if the chosen template is not found (e.g., for included templates), SKIN will fall back onto the next skin in line, or the default skin, if only one skin was present, while COVER will always fall back onto the current skin.
An example would be invoking the printable mode, which is achieved by applying ?cover=print . The view.print.tmpl simply invokes the viewprint template for the current skin which then can appropriately include all other used templates for the current skin. Where the printable mode be applied by using SKIN , all skins would have the same printable appearance.
The full skin path is built up as follows: SKIN setting (or ?skin if it is set), then COVER setting is added, then ?cover .
Conditional Skin Activation
TWiki skins can be activated conditionally using IfStatements. For example, you might want to use a mobile skin for iPhone and Android user agents, and the default skin otherwise. This example uses the print skin on iPhone and Android:
* Set SKIN = %IF{
"'%HTTP{"User-Agent"}%'~'*iPhone*' OR '%HTTP{"User-Agent"}%'~'*Android*'"
then="print, pattern"
else="topmenu, pattern"
}%
Hard-Coded Skins
The text skin is reserved for TWiki internal use.
Skin names starting with rss 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 the content-type header will be forced to text/xml .
Related Topics: TWikiSkinBrowser, AdminDocumentationCategory, DeveloperDocumentationCategory, TWiki:TWiki.TWikiSkinsSupplement
-- Contributors: TWiki:Main.PeterThoeny, TWiki:Main.MikeMannix, TWiki:Main.CrawfordCurrie
|
|
> > |
TWiki Formatted Search
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 the format="..." 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 |" }% . See %SEARCH{...}% for other search parameters, such as separator="" .
Syntax
Three parameters can be used to customize a 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:* |"
Variables that can be used in the header string:
Name: |
Expands To: |
$web |
Name of the web |
$n or $n() |
New line. Use $n() if followed by alphanumeric character, e.g. write Foo$n()Bar instead of Foo$nBar |
$nop or $nop() |
Is a "no operation". This variable gets removed; useful for nested search |
$quot or \" |
Double quote (" ) |
$aquot |
Apostrophe quote (' ) |
$percnt |
Percent sign (% ) |
$dollar |
Dollar sign ($ ) |
$lt |
Less than sign (< ) |
$gt |
Greater than sign (> ) |
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, shortened to 40 characters with "..." indication |
$topictitle |
Topic title, in order of sequence defined by: Form field named "Title", topic preference setting named TITLE, topic name |
$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. |
$text(encode:type) |
Same as above, but encoded in the specified type. Possible types are the same as in ENCODE. Though ENCODE can take the extra parameter, $text(encode:type) cannot. Example: $text(encode:html) |
$locked |
LOCKED flag (if any) |
$date |
Time stamp of last topic update, e.g. 2025-05-10 - 15:49 |
$isodate |
Time stamp of last topic update, e.g. 2025-05-10T15:49Z |
$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 TWiki variables, 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 as ALLTWIKI{...} |
$summary(expandvar) |
Topic summary, with %ALLTWIKI{...}% variables expanded |
$summary(noheader) |
Topic summary, with leading ---+ headers removed Note: The tokens can be combined, for example $summary(100, showvarnames, noheader) |
$changes |
Summary of changes between latest rev and previous rev |
$changes(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 to PublicFAQ . This applies only to topics that have a TWikiForm |
$formfield(name, encode:type) |
Form field value, encoded in the specified type. Possible types are the same as in ENCODE: quote , moderate , safe , entity , html , url and csv . The encode:type parameter can be combined with other parameters described below, but it needs to be the last parameter. Example: $formfield(Description, 20, encode:html) |
$formfield(name, render:display) |
Form field value, rendered for display. For example, a form field of type color will render as a colored box. If not specified, the raw value is returned, such as a color value #336699 . The render:display parameter can be combined with other parameters, but must be used after the parameters described below. |
$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, shortened to 30 characters with "..." indication |
$query(query-syntax) |
Access topic meta data using SQL-like QuerySearch syntax. Example: • $query(attachments.arraysize) returns the number of files attached to the current topic • $query(attachments[name~'*.gif'].size) returns an array with size of all .gif attachments, such as 848, 1425, 923 • $query(parent.name) is equivalent to $parent |
$query(query-syntax, quote:") |
Strings in QuerySearch result are quoted with the specified quote. Useful to triple-quote strings for use in SpreadSheetPlugin's CALCULATE, such as $query(attachments.comment, quote:''') which returns a list of triple-quoted attachment comment strings -- the spreadhseet funcions will work properly even if comment strings contain commas and parenthesis |
$query(query-syntax, encode:type) |
QuerySearch result is encoded in the specified type. This is in parallel to $formfield(name, encode:type) mentioned above |
$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 a multiple="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 e-mail 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 |
$pattern(reg-exp, encode:type) |
A text extracted by reg-exp is encoded in the specified type. This is in parallel to $formfield(name, encode:type) mentioned above |
$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. |
$ntopics |
Number of topics found in current web. This is the current topic count, not the total number of topics |
$tntopics |
The total number of topics matched |
$nwebs |
The number of webs searched |
$nhits |
Number of hits if multiple="on" . Cumulative across all topics in current web. Identical to $ntopics unless multiple="on" |
$n or $n() |
New line. Use $n() if followed by alphanumeric character, e.g. write Foo$n()Bar instead of Foo$nBar |
$nop or $nop() |
Is a "no operation". This variable gets removed; useful for nested search |
$quot or \" |
Double quote (" ) |
$aquot |
Apostrophe quote (' ) |
$percnt |
Percent sign (% ) |
$dollar |
Dollar sign ($ ) |
$lt |
Less than sign (< ) |
$gt |
Greater than sign (> ) |
3. footer="..." parameter
Use the footer parameter to specify the footer of a search result. It should correspond to the format of the format parameter. This parameter is optional. Example: footer="| *Topic* | *Summary* |"
Variables that can be used in the footer string:
Name: |
Expands To: |
$web |
Name of the web |
$ntopics |
Number of topics found in current web |
$tntopics |
The total number of topics matched |
$nwebs |
The number of webs searched |
$nhits |
Number of hits if multiple="on" . Cumulative across all topics in current web. Identical to $ntopics unless multiple="on" |
$n or $n() |
New line. Use $n() if followed by alphanumeric character, e.g. write Foo$n()Bar instead of Foo$nBar |
$nop or $nop() |
Is a "no operation". This variable gets removed; useful for nested search |
$quot or \" |
Double quote (" ) |
$aquot |
Apostrophe quote (' ) |
$percnt |
Percent sign (% ) |
$dollar |
Dollar sign ($ ) |
$lt |
Less than sign (< ) |
$gt |
Greater than sign (> ) |
4. default="..." parameter
Use the default parameter to specify a default message if there are no hits in a web. This parameter is optional. Example: default="| *Note* | Nothing found in the [[$web.WebHome][$web]] web |"
Variables that can be used in the default string:
Name: |
Expands To: |
$web |
Name of the web |
$n or $n() |
New line. Use $n() if followed by alphanumeric character, e.g. write Foo$n()Bar instead of Foo$nBar |
$nop or $nop() |
Is a "no operation". This variable gets removed; useful for nested search |
$quot or \" |
Double quote (" ) |
$aquot |
Apostrophe quote (' ) |
$percnt |
Percent sign (% ) |
$dollar |
Dollar sign ($ ) |
$lt |
Less than sign (< ) |
$gt |
Greater than sign (> ) |
Results pagination
When a search return many results, you may want to paginate them having the following line below the results.
«Prev 1 2 3 4 5 Next»
SearchResultsPagination describes how to do it.
Evaluation order of variables
By default, variables embedded in the format parameter of %SEARCH{}% are evaluated once before the search. This is OK for variables that do not change, such as %SCRIPTURLPATH% . Variables that should be evaluated once per search hit must be escaped. For example, to escape a conditional:
%IF{ "..." then="..." else="..." }%
write this:
format="$percntIF{ \"...\" then=\"...\" else=\"...\" }$percnt"
Examples
Here are some samples of formatted searches. The SearchPatternCookbook has other examples, such as creating a picklist of usernames, searching for topic children and more.
Bullet list showing topic name and summary
Write this:
%SEARCH{
"FAQ"
scope="topic"
nosearch="on"
nototal="on"
header=" * *Topic: Summary:*"
format=" * [[$topic]]: $summary"
footer=" * *Topic: Summary*"
}%
To get this:
- Topic: Summary:
- TWikiFAQ: Frequently Asked Questions About TWiki This is a real FAQ, and also a demo of an easily implemented knowledge base solution. To see how it`s done, view the source...
- TWikiFaqTemplate: FAQ: Answer: Back to: TWikiFAQ Contributors:
- TextFormattingFAQ: Text Formatting FAQ This topics lists frequently asked questions on text formatting. Text formatting applies to people who edit TWiki pages in raw edit mode . TextFormattingRules...
- Topic: Summary
Table showing form field values of topics with a form
In a web where there is a form that contains a TopicClassification field, an OperatingSystem field and an OsVersion field we could write:
| *Topic:* | *OperatingSystem:* | *OsVersion:* |
%SEARCH{ "[T]opicClassification.*?value=\"[P]ublicFAQ\"" scope="text" type="regex" nosearch="on" nototal="on" format="| [[$topic]] | $formfield(OperatingSystem) | $formfield(OsVersion) |" }%
To get this:
Extract some text from a topic using regular expression
Write this:
%SEARCH{
"__Back to\:__ TWikiFAQ"
scope="text"
type="regex"
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 Forms 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 is distributed under the 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...
- What does the "T" in TWiki stand for? 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).
- 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
Write this:
%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:
- ATasteOfTWiki is referenced by:
- FormattedSearch is referenced by:
- AnApplicationWithWikiForm, BackupRestorePlugin, EditTablePlugin, EmptyPlugin, FormatTokens, HeadlinesPlugin, IfStatements, InterwikiPlugin, ManagingWebs, PreferencesPlugin, QuerySearch, RegularExpression, RenderListPlugin, SearchHelp, SearchPatternCookbook, SearchResultsPagination, SetGetPlugin, SlideShowPlugin, SmiliesPlugin, SpreadSheetPlugin, TWikiAccessControl, TWikiDocumentation, TWikiForms, TWikiHistory, TWikiMetaData, TWikiReferenceManual, TWikiReleaseNotes04x00, TWikiReleaseNotes04x01, TWikiScripts, TWikiSearchDotPm, TWikiSheetPlugin, TWikiSiteTools, TWikiTip018, TWikiTopics, TWikiUISearchDotPm, TWikiVariablesQuickStart, TagMePlugin, TwistyPlugin, VarCHILDREN, VarEDITFORM, VarEDITFORMFIELD, VarFORM, VarFORMFIELD, VarMETA, VarMETASEARCH, VarSEARCH, VarURLPARAM, WatchlistPlugin, WebHome, WebLeftBar, WebTopMenu, WelcomeGuest
- TWikiAccessControl is referenced by:
- AllowWebCreateByUserMappingManager, AutonomousWebs, CopyingTopics, CustomUserGroupNotations, EditTablePlugin, FileAttachment, MainFeatures, ManagingTopics, ManagingUsers, ManagingWebs, PatternSkinCustomization, SitePermissions, SourceCode, TWikiAccessControl, TWikiDocumentation, TWikiForms, TWikiFuncDotPm, TWikiHistory, TWikiInstallationGuide, TWikiPreferences, TWikiReferenceManual, TWikiReleaseNotes04x01, TWikiReleaseNotes04x02, TWikiReleaseNotes06x00, TWikiScripts, TWikiSiteTools, TWikiTopics, TWikiTutorial, TWikiUserAuthentication, TWikiVariables, TagMePlugin, UserMasquerading, VarHIDE, VarSEARCH, WebPreferences, WebPreferencesHelp, WikiCulture, WikiWord
- TWikiSite is referenced by:
- AdminToolsCategory, InstantEnhancements, InterwikiPlugin, ManagingWebs, SiteMap, SiteStatisticsFooter, StartingPoints, TWikiAccessControl, TWikiDocumentation, TWikiGlossary, TWikiI18NDotPm, TWikiInstallationGuide, TWikiPreferences, TWikiReferenceManual, TWikiRegistration, TWikiReleaseNotes04x02, TWikiReleaseNotes05x00, TWikiReleaseNotes05x01, TWikiReleaseNotes06x00, TWikiScripts, TWikiSite, TWikiTopics, TWikiTutorial, TWikiUserAuthentication, TWikiUsersGuide, WabiSabi, WebHome, WebLeftBar, WebSiteTools, WebStatisticsFooter, WebTopMenu, WelcomeGuest, WhatDoesTWikiStandFor, WhatIsWikiWiki, WikiCulture, WikiReferences
- WabiSabi is referenced by:
- WhatIsWikiWiki is referenced by:
- WikiCulture is referenced by:
- WikiReferences is referenced by:
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 $dollarpercntSEARCH{ for level three, $dollardollarpercntSEARCH{ for level four, etc.
Note: Another option, instead of a nested search, is to create a hash. Refer to the blog TWiki:Blog.BlogEntry201603x1. A search using hashes, if possible, may be significantly faster than a nested search.
Most recently changed pages
Write this:
%SEARCH{
"\.*"
scope="topic"
type="regex"
nosearch="on"
nototal="on"
sort="modified"
reverse="on"
format="| [[$topic]] | $wikiusername | $date |"
limit="7"
}%=
To get this:
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:
- 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
This requires the TWiki:Plugins.SpreadSheetPlugin. The following example shows all topics in the Main web that have been updated in the last 7 days.
Write this:
%CALCULATE{$SET(weekold, $TIMEADD($TIME(), -7, day))}%
%SEARCH{ "." scope="topic" type="regex" web="Main" nonoise="on" sort="modified" reverse="on" format="$percntCALCULATE{$IF($TIME($date) < $GET(weekold), <nop>, | [[$web.$topic][$topic]] | $wikiusername | $date | $rev |)}$percnt" limit="100" }%
- The first line sets the
weekold variable to the serialized date of exactly one week ago
- The SEARCH has a deferred CALCULATE. The
$percnt makes sure that the CALCULATE gets executed once for each search hit
- The CALCULATE 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
- This example is for illustration only, it is easier to use the
date="..." paramter in SEARCH to restrict the date.
To get this:
The condition can be anything you like. To restrict search based on a date range it is easier to use the date="" parameter as shown in the next example.
Restrict search based on a date range
A search can be restricted based on a date range. The following example is identical to the previous one, showing all topics in the Main web that have been updated in the last 7 days.
Write this:
%SEARCH{
"."
scope="topic"
type="regex"
web="%USERSWEB%"
nonoise="on"
sort="modified"
reverse="on"
format="| [[$web.$topic][$topic]] | $wikiusername | $date | $rev |"
limit="100"
date="P1w/$today"
}%=
To get this:
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="%SCRIPTURLPATH{"view"}%/%WEB%/%TOPIC%">
Find Topics:
<input type="text" name="q" size="32" value="%URLPARAM{"q" encode="entity"}%" /> <input type="submit" class="twikiSubmit" value="Search" />
</form>
Result:
%SEARCH{
search="%URLPARAM{"q" encode="search"}%"
type="keyword"
format=" * $web.$topic: %BR% $summary"
nosearch="on"
}%
To get this:
Result:
Related Topics: UserDocumentationCategory, SearchHelp, VarSEARCH, VarENCODE, SearchResultsPagination, SearchPatternCookbook, RegularExpression, QuerySearch
-- Contributors: TWiki:Main.PeterThoeny, TWiki:Main.CrawfordCurrie, TWiki:Main.SopanShewale
TWiki Meta Data
Additional topic data, program-generated or from TWikiForms, is stored embedded in the topic text using META: tags
Overview
By default, TWiki stores topics in files on disk, in a really simple and obvious directory structure. The big advantage of this approach is that it makes it really easy to manipulate topics from outside TWiki, and is also very safe; there are no complex binary indexes to maintain, and moving a topic from one TWiki to another is as simple as copying a couple of text files.
To keep everything together in one place, TWiki uses a simple method for embedding additional data (program-generated or from TWikiForms) in topics. It does this using META: tags.
META: data includes program-generated info like FileAttachment and topic movement data, and user-defined TWikiForms info.
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.
- Values in meta-data are URL encoded so that characters such as \n can be stored.
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"}%
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 |
Notes:
- 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, typically when clicking on a red-link, or by filling out a form. Normally just TopicName , but it can be a full Web.TopicName format if the parent is in a different Web. |
META:FILEATTACHMENT
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 |
Extra fields that are added if an attachment is moved:
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:
- form fields remain in the order they are defined
- the
diff function output appears in a logical order
The recommended sequence is:
-
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 the Raw Text link can be clicked to show the text of a topic (i.e., as seen when editing). This is done by adding raw=on to URL. raw=debug shows the meta data as well as the topic data, ex: debug view for this topic
Rendering Meta Data
Meta Data is rendered with the %META% variable. This is mostly used in the view , preview and edit scripts.
You can render form fields in topic text by using the FORMFIELD variable. Example:
%FORMFIELD{"TopicClassification"}%
For details, see 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 " > " . |
Note: SEARCH can also be used to render meta data, see examples in FormattedSearch and SearchPatternCookbook.
Related Topics: DeveloperDocumentationCategory, UserDocumentationCategory
|
|
TWiki Plugins
Add functionality to TWiki with readily available plugins; create plugins based on APIs
Overview
You can add plugins to extend TWiki functionality, without altering the core code. A plug-in approach lets you:
- 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.
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.
Relevant links on TWiki.org:
- TWiki:TWiki.TWikiPluginsSupplement -
tip: supplemental documentation on TWiki plugins
- TWiki:Plugins.PluginPackage - list of all contributed plugin packages
- TWiki:Plugins.PluginDevelopment - discussion and feedback on contributed plugins
- TWiki:Plugins.PluginBrainstorming - open forum for new plugin ideas
- TWiki:Plugins.PluginPackageHowTo - template to create a new plugin package
See other types of extensions: TWikiAddOns, TWikiContribs, TWikiSkins
Installing Plugins
The TWiki:Plugins web on TWiki.org is the repository for TWiki plugins. Each plugin such as the TWiki:Plugins.ChartPlugin has a topic with user guide, step-by-step installation instructions, a detailed description of any special requirements, version details, and a working example for testing. There's usually a number of other related topics, such as a developers page, and an appraisal page.
Most TWiki plugins are packaged so that they can be installed and upgraded using the configure script. To install a plugin, open up the Extensions tab, follow the "Find More Extensions" link, and follow the instructions. A plugin needs to be enabled after installation.
Plugins can also be installed manually: Download the zip or tgz package of a TWiki plugin from the TWiki.org repository, upload it to the TWiki server, unpack it, and follow the installation instructions found in the plugin topic on TWiki.org.
Special Requirements: Some plugins need certain Perl modules to be pre-installed on the host system. Plugins may also use other resources, like graphics, other modules, applications, and templates. You should be able to find detailed instructions in the plugin's documentation. Use the package manager of the server OS (yum , apt-get , rpm , etc) to install dependent libraries.
If available, install CPAN (Comprehensive Perl Archive Network) libraries with the OS package manager. For example, to install IO::Socket::SSL on Fedora/RedHat/CentOS, run yum install perl-IO-Socket-SSL . CPAN modules can also be installed natively, see TWiki:TWiki.HowToInstallCpanModules.
On-Site Pretesting
If you have a mission critical TWiki installation and you are concerned about installing new plugins, you can test new plugins before making them available by creating a second test TWiki installation, and test the plugin there. It is also possible to configure this test TWiki to use the live data. You can allow selected users access to the test area. Once you are satisfied that it won't compromise your primary 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 Apache ab utility. Example on Unix: time wget -qO /dev/null /twiki/bin/view/TWiki/AbcPlugin
If you need to install an "expensive" plugin, but you only need its functionality only in a subset of your data, you can disable it elsewhere by defining the %DISABLEDPLUGINS% TWiki variable.
Define DISABLEDPLUGINS to be a comma-separated list of names of plugins to disable. Define it in Main.TWikiPreferences to disable those plugins everywhere, in the WebPreferences topic to disable them in an individual web, or in a topic to disable them in that topic. For example,
* Set DISABLEDPLUGINS = SpreadSheetPlugin, EditTablePlugin
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/Disabling Plugins
Plugins can be enabled and disabled with the configure script in the Plugins section. An installed plugin needs to be enabled before it can be used.
Plugin Evaluation Order
By default, TWiki executes plugins in alphabetical order on plugin name. It is possible to change the order, for example to evaluate database variables before the spreadsheet CALCs. This can be done with {PluginsOrder} in the plugins section of configure.
Plugin-Specific Settings
Plugins can be configured with 1. preferences settings and/or 2. with configure settings. Older plugins use plugin preferences settings defined in the plugin topic, which is no longer recommended.
1. Use preferences settings:
Adinistrators can set plugin-specific settings in the local site preferences at Main.TWikiPreferences and users can overload them at the web level and page level. This approach is recommended if users should be able to overload settings. For security this is not recommended for system settings, such as a path to an executable. By convention, preferences setting names start with the plugin name in all caps, and an underscore. For example, to set the cache refresh period of the TWiki:Plugins.VarCachePlugin, add this bullet in Main.TWikiPreferences
-
Set VARCACHEPLUGIN_REFRESH = 24
Preferences settings that have been defined in Main.TWikiPreferences can be retrieved anywhere in TWiki with %<pluginname>_<setting>% , such as %VARCACHEPLUGIN_REFRESH% .
To learn how this is done, use the TWiki:Plugins.VarCachePlugin documentation and Perl plugin code as a reference.
2. Use configure settings:
The administrator can set plugin settings in the configure interface. Recommended if only site administrators should be able to change settings. Chose this option to set sensitive or dangerous system settings, such as passwords or path to executables. To define plugin-specific configure settings,
- Create a Config.spec file in
lib/TWiki/Plugins/YourPlugin/ with variables, such as $TWiki::cfg{Plugins}{RecentVisitorPlugin}{ShowIP} = 0;
- In the plugin, use those those variables, such as
$showIP = $TWiki::cfg{Plugins}{RecentVisitorPlugin}{ShowIP} || 0;
To learn how this is done, use the TWiki:Plugins.RecentVisitorPlugin documentation and Perl plugin code as a reference.
In either case, define a SHORTDESCRIPTION setting in two places:
- As a setting in the plugin documentation, which is needed for the extension reports on twiki.org. Example:
-
Set SHORTDESCRIPTION = Show recent visitors to a TWiki site
- As a global Perl package variable in the plugin package, which is needed by TWiki to show info on installed plugins. Example:
our $SHORTDESCRIPTION = 'Show recent visitors to a TWiki site';
For better performance, make sure you define this in the plugin package:
our $NO_PREFS_IN_TOPIC = 1;
Listing Active Plugins
Plugin status variables let you list all active plugins wherever needed.
This site is running TWiki version TWiki-6.1.0, Mon, 16 Jul 2018, build 30610, plugin API version
6.10
%ACTIVATEDPLUGINS%
On this TWiki site, the enabled plugins are: SpreadSheetPlugin, BackupRestorePlugin, ColorPickerPlugin, DatePickerPlugin, HeadlinesPlugin, JQueryPlugin, SetGetPlugin, TWikiSheetPlugin, TablePlugin, TagMePlugin, TwistyPlugin, WatchlistPlugin.
%PLUGINDESCRIPTIONS%
- SpreadSheetPlugin (2018-07-05, $Rev: 30478 (2018-07-16) $): Add spreadsheet calculation like
"$SUM( $ABOVE() )" to TWiki tables or anywhere in topic text - BackupRestorePlugin (2018-07-10, $Rev: 30551 (2018-07-16) $): Administrator utility to backup, restore and upgrade a TWiki site
- ColorPickerPlugin (2018-07-05, $Rev: 30442 (2018-07-16) $): Color picker, packaged for use in TWiki forms and TWiki applications
- DatePickerPlugin (2018-07-05, $Rev: 30446 (2018-07-16) $): Pop-up calendar with date picker, for use in TWiki forms, HTML forms and TWiki plugins
- HeadlinesPlugin (2018-07-13, $Rev: 30560 (2018-07-16) $): Show headline news in TWiki pages based on RSS and ATOM news feeds from external sites
- JQueryPlugin (2018-07-05, $Rev: 30456 (2018-07-16) $): jQuery JavaScript library for TWiki
- SetGetPlugin (2018-07-05, $Rev: 30472 (2018-07-16) $): Set and get variables and JSON objects in topics, optionally persistently across topic views
- TWikiSheetPlugin (2018-07-15, $Rev: 30604 (2018-07-16) $): Add TWiki Sheet spreadsheet functionality to TWiki tables
- TablePlugin (2018-07-05, $Rev: 30480 (2018-07-16) $): Control attributes of tables and sorting of table columns
- TagMePlugin (2018-07-05, $Rev: 30482 (2018-07-16) $): Tag wiki content collectively or authoritatively to find content by keywords
- TwistyPlugin (2018-07-06, $Rev: 30497 (2018-07-16) $): Twisty section JavaScript library to open/close content dynamically
- WatchlistPlugin (2018-07-10, $Rev: 30536 (2018-07-16) $): Watch topics of interest and get notified of changes by e-mail
%FAILEDPLUGINS%
Handler | Plugins |
---|
afterRenameHandler | TagMePlugin WatchlistPlugin | afterSaveHandler | TagMePlugin WatchlistPlugin | beforeCommonTagsHandler | TWikiSheetPlugin TwistyPlugin | beforeSaveHandler | WatchlistPlugin | commonTagsHandler | SpreadSheetPlugin BackupRestorePlugin JQueryPlugin TWikiSheetPlugin | initPlugin | SpreadSheetPlugin BackupRestorePlugin ColorPickerPlugin DatePickerPlugin HeadlinesPlugin JQueryPlugin SetGetPlugin TWikiSheetPlugin TablePlugin TagMePlugin TwistyPlugin WatchlistPlugin | preRenderingHandler | TablePlugin |
12 plugins
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 callbacks, as described in the lib/TWiki/Plugins/EmptyPlugin.pm module.
- All but the initPlugin are commented out. To enable a callback, remove the leading
# from all lines of the callback.
TWiki:Codev.StepByStepRenderingOrder helps you decide which rendering handler to use.
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 $@;
- Keep the main plugin package as small as possible; create other packages that are loaded if and only if they are used. For example, create sub-packages of BathPlugin in
lib/TWiki/Plugins/BathPlugin/ .
- Avoid using preferences in the plugin topic; Define
$NO_PREFS_IN_TOPIC in your plugin package as that will stop TWiki from reading the plugin topic for every page. Use Config.spec or preferences settings instead. (See details).
- Use registered tag handlers.
- Measure the performance to see the difference.
Version Detection
To eliminate the incompatibility problems that are bound to arise from active open plugin development, a plugin versioning system is provided for automatic compatibility checking.
- All plugin packages require a
$VERSION variable. This should be an integer, or a subversion version id.
- The
initPlugin handler should check all dependencies and return 1 if the initialization is OK or 0 if something went wrong.
- The plugin initialization code does not register a plugin that returns 0 (or that has no
initPlugin handler).
-
$TWiki::Plugins::VERSION in the TWiki::Plugins module contains the TWiki plugin API version, currently 6.10.
- 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.
- Integrating with
configure describes the steps
- TWiki:Plugins.MailInContrib has an example
- 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 provides the programming interface for TWiki. Understanding how TWiki is working at high level is beneficial for plugin development.
Anatomy of a Plugin
A (very) basic TWiki plugin consists of two files:
- a Perl module, e.g.
MyFirstPlugin.pm
- a documentation topic, e.g.
MyFirstPlugin.txt
The Perl module can be a block of code that talks to 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 MyFirstPlugin topic. Other needed Perl code is best placed in a lib/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.
The TWiki:Plugins.BuildContrib module provides a lot of support for plugins development, including a plugin creator, automatic publishing support, and automatic installation script writer. If you plan on writing more than one plugin, you probably need it.
Creating the Perl Module
Copy file lib/TWiki/Plugins/EmptyPlugin.pm to <name>Plugin.pm . The EmptyPlugin.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, write Package MyFirstPlugin::Attrs; instead of just Package Attrs; . Then call it using:
use TWiki::Plugins::MyFirstPlugin::Attrs;
$var = MyFirstPlugin::Attrs->new();
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 JumpBox 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/TWikiGuest. 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.>"
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 in Plugin , 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
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.
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 the TWiki::Func::getWorkArea() function, which gives you a persistent 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() and TWiki::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 topic's attachment area, which is web accessible. Use the TWiki::Func::saveAttachment() function to store the data.
Recommendation for file name:
- Prefix the filename with an underscore (the leading underscore avoids a name clash 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:
_GaugePlugin_img123.gif
Web specific data can be stored in the plugin's attachment area, which is web accessible. Use the 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
Integrating with configure
Some TWiki extensions have setup requirements that are best integrated into configure rather than trying to use TWiki preferences variables. These extensions use Config.spec files to publish their configuration requirements.
Config.spec files are read during TWiki configuration. Once a Config.spec has defined a configuration item, it is available for edit through the standard configure interface. Config.spec files are stored in the 'plugin directory' e.g. lib/TWiki/Plugins/BathPlugin/Config.spec .
Structure of a Config.spec file
The Config.spec file for an extension starts with the extension announcing what it is:
# ---+ Extensions
# ---++ BathPlugin
# This plugin senses the level of water in your bath, and ensures the plug
# is not removed while the water is still warm.
This is followed by one or more configuration items. Each configuration item has a type, a description and a default. For example:
# **SELECT Plastic,Rubber,Metal**
# Select the plug type
$TWiki::cfg{BathPlugin}{PlugType} = 'Plastic';
# **NUMBER**
# Enter the chain length in cm
$TWiki::cfg{BathPlugin}{ChainLength} = 30;
# **BOOLEAN EXPERT**
# Set this option to 0 to disable the water temperature alarm
$TWiki::cfg{BathPlugin}{TempSensorEnabled} = 1;
The type (e.g. **SELECT** ) tells configure to how to prompt for the value. It also tells configure how to do some basic checking on the value you actually enter. All the comments between the type and the configuration item are taken as part of the description. The configuration item itself defines the default value for the configuration item. The above spec defines the configuration items $TWiki::cfg{BathPlugin}{PlugType} , $TWiki::cfg{BathPlugin}{ChainLength} , and $TWiki::cfg{BathPlugin}{TempSensorEnabled} for use in your plugin. For example,
if( $TWiki::cfg{BathPlugin}{TempSensorEnabled} && $curTemperature > 50 ) {
die "The bathwater is too hot for comfort";
}
The Config.spec file is read by configure , which then writes LocalSite.cfg with the values chosen by the local site admin.
A range of types are available for use in Config.spec files:
BOOLEAN |
A true/false value, represented as a checkbox |
COMMAND length |
A shell command |
LANGUAGE |
A language (selected from {LocalesDir} |
NUMBER |
A number |
OCTAL |
An octal number |
PASSWORD length |
A password (input is hidden) |
PATH length |
A file path |
PERL |
A perl structure, consisting of arrays and hashes |
REGEX length |
A perl regular expression |
SELECT choices |
Pick one of a range of choices |
SELECTCLASS root |
Select a perl package (class) |
STRING length |
A string |
URL length |
A url |
URLPATH length |
A relative URL path |
All types can be followed by a comma-separated list of attributes.
EXPERT |
means this an expert option |
M |
means the setting is mandatory (may not be empty) |
H |
means the option is not visible in configure |
See lib/TWiki.spec for many more examples.
Config.spec files for non-plugin extensions are stored under the Contrib directory instead of the Plugins directory.
Note that from TWiki 5.0 onwards, CGI scripts (in the TWiki bin directory) provided by extensions must also have an entry in the Config.spec file. This entry looks like this (example taken from PublishContrib)
# **PERL H**
# Bin script registration - do not modify
$TWiki::cfg{SwitchBoard}{publish} = [ "TWiki::Contrib::Publish", "publish", { publishing => 1 } ];
PERL specifies a perl data structure, and H a hidden setting (it won't appear in configure ). The first field of the data value specifies the class where the function that implements the script can be found. The second field specifies the name of the function, which must be the same as the name of the script. The third parameter is a hash of initial context settings for the script.
TWiki:TWiki/SpecifyingConfigurationItemsForExtensions has supplemental documentation on configure settings.
Maintaining Plugins
Discussions and Feedback on Plugins
Each published plugin has a plugin development topic on TWiki.org. Plugin development topics are named after your plugin and end in Dev , such as MyFirstPluginDev . The plugin development topic is a great resource to discuss feature enhancements and to get feedback from the TWiki community.
Maintaining Compatibility with Earlier TWiki Versions
The plugin interface (TWikiFuncDotPm functions and plugin handlers) evolve over time. TWiki introduces new API functions to address the needs of plugin authors. Plugins using unofficial TWiki internal functions may no longer work on a TWiki upgrade.
Organizations typically do not upgrade to the latest TWiki for many months. However, many administrators still would like to install the latest versions of a plugin on their older TWiki installation. This need is fulfilled if plugins are maintained in a compatible manner.
Tip: Plugins can be written to be compatible with older and newer TWiki releases. This can be done also for plugins using unofficial TWiki internal functions of an earlier release that no longer work on the latest TWiki codebase.
Here is an example; the TWiki:TWiki.TWikiPluginsSupplement#MaintainPlugins has more details.
if( $TWiki::Plugins::VERSION >= 1.1 ) {
@webs = TWiki::Func::getListOfWebs( 'user,public' );
} else {
@webs = TWiki::Func::getPublicWebList( );
}
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. When this happens, the deprecated functions will be supported in the interface for at least one more TWiki release, and probably longer, though this cannot be guaranteed.
When a plugin defines deprecated handlers, a warning will be shown in the list generated by %FAILEDPLUGINS%. Admins who see these warnings 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 suppress the warnings in %FAILEDPLUGINS%.
This is done by defining a map from the handler name to the TWiki::Plugins version in which the handler was first deprecated. For example, if we need to define the endRenderingHandler for compatibility with TWiki::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 of TWiki::Plugins before 1.1 will still call the handler as required.
|
|
Warning: Can't find topic TWiki.AppendixFileSystem
|
|
< < |
TWiki Meta Data
Additional topic data, program-generated or from TWikiForms, is stored embedded in the topic text using META: tags
Overview
By default, TWiki stores topics in files on disk, in a really simple and obvious directory structure. The big advantage of this approach is that it makes it really easy to manipulate topics from outside TWiki, and is also very safe; there are no complex binary indexes to maintain, and moving a topic from one TWiki to another is as simple as copying a couple of text files.
To keep everything together in one place, TWiki uses a simple method for embedding additional data (program-generated or from TWikiForms) in topics. It does this using META: tags.
META: data includes program-generated info like FileAttachment and topic movement data, and user-defined TWikiForms info.
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.
- Values in meta-data are URL encoded so that characters such as \n can be stored.
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"}%
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 |
Notes:
- 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, typically when clicking on a red-link, or by filling out a form. Normally just TopicName , but it can be a full Web.TopicName format if the parent is in a different Web. |
META:FILEATTACHMENT
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 |
Extra fields that are added if an attachment is moved:
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:
- form fields remain in the order they are defined
- the
diff function output appears in a logical order
The recommended sequence is:
-
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 the Raw Text link can be clicked to show the text of a topic (i.e., as seen when editing). This is done by adding raw=on to URL. raw=debug shows the meta data as well as the topic data, ex: debug view for this topic
Rendering Meta Data
Meta Data is rendered with the %META% variable. This is mostly used in the view , preview and edit scripts.
You can render form fields in topic text by using the FORMFIELD variable. Example:
%FORMFIELD{"TopicClassification"}%
For details, see 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 " > " . |
Note: SEARCH can also be used to render meta data, see examples in FormattedSearch and SearchPatternCookbook.
Related Topics: DeveloperDocumentationCategory, UserDocumentationCategory
|
|
Appendix A: TWiki Development Time-line
TWiki Release 6.1 (Kampala) released on 2018-07-16
New Features and Enhancements of TWiki Release 6.1
- Usability Enhancements
- New HIDEINPRINT variable to hide some topic from printing
- New
attachment parameter for INCLUDE variable to include an attachment
- Expand
$name token in links [[WebName.TopicName][$name]] and [[%ATTACHURL%/filename.ext][$name]]
- New
exclude parameter for WEBLIST variable
- Support for literal search for %SOME% variable, such as
%BR%
- TWiki Application Platform Enhancements
- New FORM and EDITFORM variables
- The WEB variable now has the nameless parameter to specify output format with tokens
$top(n) , $last(n) , $item(n) , $list , $size
- The EDITFORMFIELD variable supports
textarea type
- Link
[[TopicName?param=value][label]] becomes a parameterized link to the topic view URL
- Variables in VIEW_TEMPLATE and EDIT_TEMPLATE are expanded
- The
redirectto URL parameter for the save script may contain $web and $topic tokens
- Security Enhancements
- Log-in with two-step authentication
- A number of enhancements to guard against Cross-Site Scripting (XSS) and Code Injection attacks
- New mode="search" encoding in ENCODE and URLPARAM
- Do anti-spam e-mail padding only for unauthenticated guests
- Predefined variables can no longer be redefined with preferences settings
- Extensions Enhancements
- Add new TWikiSheetPlugin to TWiki core distribution, allowing simultaneous editing of spreadsheets
- TinyMCEPlugin: Document how to add custom toolbar button to TinyMCE editor
- Miscellaneous Feature Enhancements
- The configure script can now run under the PSGI engine
- User preferences can be demoted under web preferences (site-wide configuration); specific user preferences can be denied and allowed
- 8 new TWikiDocGraphics icons:
car, desk, milestone-add, program, program-add, project-add, refresh, sprint; 1 updated icon: project
- The HTML title shows the more descriptive TOPICTITLE instead of just TOPIC
- Bug Fixes
- 59 bugs fixed in TWiki-6.1.0
See the full list of new features and bug fixes in TWikiReleaseNotes06x01.
Hall of Fame of TWiki Release 6.1
Many people have been involved in creating TWiki 6.1. Special thanks go to the most active contributors in the following areas:
If you find an omission please fix it at TWiki:TWiki.TWikiHistory. For the full list of contributors see TWikiContributor.
See more details on the TWiki 6.1 release at TWikiReleaseNotes06x01.
TWiki Release 6.0 (Jerusalem) released on 2013-10-14 — 2015-11-29
New Features and Enhancements of TWiki Release 6.0
- Usability Enhancements
- Add dashboards to Web home topics
- Categorize TWiki variables & add TWiki Variables wizard
- Upgrade to TinyMCE WYSIWYG editor to version 3.5.8
- New TOPICTITLE variable for non-WikiWord topic titles
- Show topic title in square bracket links using
[[+TopicName]] syntax
- Icon bullet lists: Specify any TWiki doc graphics icon as a bullet
- WebSearch and WebChanges has now search result pagination
- WebChanges shows topic age instead of topic date
- Auto-discover TWikiForms, e.g. no need to set in WEBFORMS preferences setting
- Move change TWiki Form from edit screen to "more" screen
- Show link to older versions of attachments in attachment table
- Automatically link @Twitter
handles
- Add comment section to new topic template
- Copy/clone topic function in more topic action screen
- Configurable signatures with profile pictures
- Open external links in new browser window or tab; show external link
icon
- Drag and drop file attachments - PatternSkin to integrate DropzoneJSSkin - added in TWiki-6.0.1
- Add drag and drop to change profile picture screen - added in TWiki-6.0.1
- Responsive multi-column page layout using CSS using TWOCOLUMNS...ENDCOLUMNS - added in TWiki-6.0.2
- Search attachments in a web with new WebSearchAttachments topic to all webs - added in TWiki-6.0.2
- Easier TWiki installation by adding Perl CGI module to TWiki core distribution - added in TWiki-6.0.2
- Scalability Enhancements
- Read-only and mirror web support for distributed TWiki sites
- MetadataRepository for site metadata and web metadata to speed up operations across many webs
- Rename topic operation with option to not replace web internal references
- Rename web operation can cope with a large site and read-only/mirror webs
- Introducing web-level administrator for higher web autonomy; web specific WIKIWEBMASTER
- Support for multiple disk drives for data and pub directories
- TWiki Application Platform Enhancements
- New EDITFORMFIELD variable to easily create custom forms to create/change topics with TWiki Forms
- Add rev parameter to FORMFIELD variable
- New combobox TWiki Form field type
- New ENTITY variable to entity encode content
- New CHILDREN variable to show topic children added in TWiki-6.0.2
- Add createdate, default, encode parameters to SEARCH variable
- SEARCH variable with sort by parent feature
- SEARCH variable extended to make results pagination possible
- SEARCH: Search with sort by multiple fields - added in TWiki-6.0.1
- SEARCH: Sort by parent breadcrumb - added in TWiki-6.0.1
- SEARCH: Control over formfield rendering in a formatted SEARCH - added in TWiki-6.0.2
- Add encode, newline, nofinalnewline, allowanytype to INCLUDE variable
- Add subwebs and depth parameters to WEBLIST variable
- Add section parameter to ADDTOHEAD variable
- Add encode and decode functions to TWiki::Func
- Add LWP parameters to TWiki::Func::getExternalResource
- Conditional Skin based on group membership and other criteria
- Finer-control variable expansion in topic creation
- Add topic parameter to VAR variable to get settings defined in another topic
- Add raw parameter to INCLUDE variable to include a topic in the raw mode
- New csv encode type for ENCODE variable - added in TWiki-6.0.1
- ENCODE variable with new type="json" parameter to escape a string for JSON use - added in TWiki-6.0.2
- Security Enhancements
- Support for an implicit "all users" group
- Empty DENY setting means undefined setting
- Dynamic access control (experimental)
- Upgrade support for secure email notification
- Restrict HTTP variable to not reveal certain header fields
- User masquerading to check if access restriction is working as expected for another user
- Disable XSS Protection for JavaScript
- Extensions Enhancements
- Add new WatchlistPlugin to core and deprecate MailerContrib
- Add new TWikiDashboardAddOn to core distribution
- Add new ScrollBoxAddOn to core distribution
- Add new DatePickerPlugin to core and deprecate JSCalendarContrib
- Add new MovedSkin to core distribution
- SpreadSheetPlugin supports hash variables with new functions GETHASH(), HASH2LIST(), HASHCOPY(), HASHEACH(), HASHEXISTS(), HASHREVERSE(), LIST2HASH(), SETHASH(), SETMHASH()
- SpreadSheetPlugin adds new functions BIN2DEC(), DEC2BIN(), DEC2HEX(), DEC2OCT(), HEX2DEC(), OCT2DEC()
- SpreadSheetPlugin supports quoted parameters with '''triple quotes'''
- SpreadSheetPlugin: New functions ADDLIST(), GETLIST(), SETLIST() - added in TWiki-6.0.1
- SpreadSheetPlugin: FORMAT(CURRENY, ...) with support for currency symbol - added in TWiki-6.0.1
- SpreadSheetPlugin: Allow newlines and indent around functions and function parameters; allow newlines in triple-quoted strings - added in TWiki-6.0.1
- SpreadSheetPlugin: New functions EQUAL(), NOTE(), RANDSTRING() - added in TWiki-6.0.2
- InterwikiPlugin to observe the links configuration parameter
- TablePlugin: Possible to add TML (TWiki markup) with newlines in TWiki table cells
- TagMePlugin with support for multiple tag namespaces
- PatternSkin: New hideInPrint CSS class to hide specific content from printing - added in TWiki-6.0.1
- PatternSkin: Show history and other topic actions in read-only skin mode - added in TWiki-6.0.1
- SetGetPlugin: SET and GET with support for JSON objects and JSON path - added in TWiki-6.0.2
- SetGetPlugin: Ability to specify store name to persistently store variables - added in TWiki-6.0.2
- SetGetPlugin: SetGetPlugin: Use file locking on persistent store to prevent corrupting the store - added in TWiki-6.0.2
- JQueryPlugin: JQTAB enhancements: Show blue link instead of red on hover over tab; make tab css overridable; remove dotted underline below tab; active tabs with gray gradient - added in TWiki-6.0.1
- JQueryPlugin: Option to load tab content asynchronously; select specific tab in jQuery tab pane; allow tab panes in bullet lists & TWiki table cells; allow HTML in tab title - added in TWiki-6.0.2
- WatchlistPlugin: Don't notify oneself when watching topics; set minor change when updating watchlist topic - added in TWiki-6.0.1
- WatchlistPlugin: Watch all topics in web and watch new topics in web; fix for mod_perl - added in TWiki-6.0.1
- Miscellaneous Feature Enhancements
- CGI Engine to be made Fast CGI compatible
- Empty IF condition to be regarded valid and false
- Add seconds to the timestamp in debug/log/warn
- Viewing topic text with variables expanded
- WEBLIST canmoveto and cancopyto
- Add viewRedirectHandler callback to plugins API
- No such topic, no such web, access denied are done right
- Return "404 Not Found" status for topic not found instead of 200 OK status
- Return "404 Not Found" status and show "No Such Web" page title for no such web without redirecting to an oops URL titled "Access Denied"
- Return "403 Access Denied" status for access denied without redirecting to an oops URL whose status code is "200 OK"
- Statistics enhancements to show most viewed webs, most updated webs, most popular webs, top viewers, # of unique users who viewed, saved, and uploaded on the web/site, affiliation breakdown
- Specifying webs to be excluded from WebStatistics update
- Statistics topics can be annualized to e.g. WebStatistics2013, WebStatistics2014. This prevents statistics topics from growing indefinitely
- For paragraphs generate <p>...</p> instead of <p/>
- 20 new TWikiDocGraphics icons
- 16 new TWikiDocGraphics icons
- added in TWiki-6.0.1
- 5 new TWikiDocGraphics icons
- added in TWiki-6.0.2
- New COPY, REG, TM variables for copyright, registered trademark and trademark symbols, respectively - added in TWiki-6.0.1
- Bug Fixes
- 99 bugs fixed in TWiki-6.0.0
- 66 bugs fixed in TWiki-6.0.1
- 53 bugs fixed in TWiki-6.0.2
See the full list of new features and bug fixes in TWikiReleaseNotes06x00.
Hall of Fame of TWiki Release 6.0
Many people have been involved in creating TWiki 6.0. Special thanks go to the most active contributors in the following areas:
If you find an omission please fix it at TWiki:TWiki.TWikiHistory. For the full list of contributors see TWikiContributor.
See more details on the TWiki 6.0 release at TWikiReleaseNotes06x00.
TWiki Release 5.1 (Istanbul) released on 2011-08-20 — 2013-02-16
New Features and Enhancements of TWiki Release 5.1
- Usability Enhancements
- API and GUI for point and click user data management
- Support disabled users in password manager
- More visual user profile pages with in-place editing of form fields and picture selector
- In-place editing of TWiki group settings using PreferencesPlugin
- Point and click bookmarks for better usability
- Improved statistics showing overall site usage over time, such as total number of webs, topics, users, etc
- TopMenuSkin: Option for auto-hidden or fixed top menu-bar; in auto-hidden mode, menu is always accessible with stub - added in TWiki-5.1.2
- TWiki Application Platform Enhancements
- Macro language with parameterized variables
- Ability to auto-create page on view if it does not exist
- Relative heading levels for INCLUDE
- Relative heading levels for SEARCH
- Security Enhancements
- Set a flag to force password change on next login
- S/Mime support for notification e-mails
- Miscellaneous Feature Enhancements
- TWikiDocGraphics: Added 2 new icons, and updated 1 icon - added in TWiki-5.1.1
- TWikiDocGraphics: Added 25 new icons, and updated 2 icons - added in TWiki-5.1.2
- TWikiDocGraphics: Added 5 new icons - added in TWiki-5.1.3
- TWikiDocGraphics: Added 5 new icons - added in TWiki-5.1.4
- User profile pages with CSS based box shadow and rounded corners - added in TWiki-5.1.3
- TWiki logs: Log user agent for all users; log additional info via extralog URL parameter - added in TWiki-5.1.4
- Plugin Enhancements
- New BackupRestorePlugin to easily backup, restore and upgrade TWiki installations
- BackupRestorePlugin: Add restore from backup feature - added in TWiki-5.1.1
- CommentPlugin: Send comment to multiple e-mail addresses; better layout & nicer look of default comment box - added in TWiki-5.1.3
- New ColorPickerPlugin to pick a color in form fields
- New SetGetPlugin that can store variables persistently
- SetGetPlugin: Add REST interface - added in TWiki-5.1.2
- SetGetPlugin: GET variable with format parameter - added in TWiki-5.1.3
- SpreadSheetPlugin: New functions BITXOR(), HEXENCODE(), HEXDECODE(), XOR()
- SpreadSheetPlugin: New functions FLOOR() and CEILING() - added in TWiki-5.1.1
- SpreadSheetPlugin: New CALCULATE variable using the register tag handler for variable evaluation with proper inside-out, left-to-right eval order; new functions $ISDIGIT(), $ISLOWER(), $ISUPPER(), $ISWIKIWORD() and $FILTER() - added in TWiki-5.1.2
- SpreadSheetPlugin: New function $STDEV(), $STDEVP(), $VAR(), $VARP() - added in TWiki-5.1.3
- Bug Fixes
- 21 bugs fixed in TWiki-5.1.0
- 17 bugs fixed in TWiki-5.1.1
- 29 bugs fixed in TWiki-5.1.2
- 19 bugs fixed in TWiki-5.1.3
- 11 bugs fixed in TWiki-5.1.4
See the full list of new features and bug fixes in TWikiReleaseNotes05x01.
Hall of Fame of TWiki Release 5.1
Many people have been involved in creating TWiki 5.1. Special thanks go to the most active contributors in the following areas:
If you find an omission please fix it at TWiki:TWiki/TWikiHistory. For the full list of contributors see TWikiContributor.
See more details on the TWiki 5.1 release at TWikiReleaseNotes05x01.
TWiki Release 5.0 (Helsinki) released on 2010-05-29 — 2011-04-21
New Features and Enhancements of TWiki Release 5.0
- Security Enhancements
- Configure script requires authentication to reduce exposure of internal system settings.
- The twiki root directory is no longer HTML doc enabled, reducing the odds of exposing data due to webserver misconfiguration.
- Usability Enhancements
- New TopMenuSkin with pulldown menus for better usability and corporate/modern look&feel.
- Attach multiple files at once, useful when attaching many files.
- Pre-installed TagMePlugin, useful to tag topics to quickly access content in a large TWiki.
- Upgraded TinyMCEPlugin to latest TinyMCE 3.2.4.1 for better WYSIWYG editing experience.
- Better indication of breadcrumb in top menu of TopMenuSkin - added in TWiki-5.0.1
- Better display of topic diffs in debug mode - added in TWiki-5.0.1
- The SlideShowPlugin now supports keystrokes to navigate the slides - added in TWiki-5.0.2
- TWiki Application Platform Enhancements
- Pre-installed JQueryPlugin, adding a lightweight cross-browser JavaScript library designed to simplify the client-side scripting of HTML.
- Improvements to ENCODE, IF, URLPARAM, WEB and WEBLIST variables.
- The JQueryPlugin has now jquery-1.5.1 and jquery-ui-1.8.10 - updated in TWiki-5.0.2
- Search Enhancements
- Query syntax with array size, useful to query TWiki forms and attachments.
- Query syntax can be used in format parameter of search, giving more control over formatting.
- Miscellaneous Feature Enhancements
- Adding 51 new TWikiDocGraphics icons, and 11 updated icons.
- Adding 3 new TWikiDocGraphics icons, and 1 updated icon - added in TWiki-5.0.1
- Adding 8 new TWikiDocGraphics icons, and 2 updated icons - added in TWiki-5.0.2
- The TWiki doc graphics library is now aware of image size and is cached for speed.
- Support authenticated proxy - added in TWiki-5.0.1
- TopMenuSkin: Customizable web-specific top bar - added in TWiki-5.0.2
- In TWikiForms' type table, automatically list form field types that are defined in plugins and contribs
- Plugin Enhancements
- API: New TWiki::Func::buildWikiWord function
- HeadlinesPlugin: New touch parameter in HEADLINES variable to alert users via e-mail notification of news updates
- SpreadSheetPlugin: Improvements to $TIME() and $NOP() functions.
- SpreadSheetPlugin: Add ISO 8601 week number to FORMATTIME - added in TWiki-5.0.1
- SpreadSheetPlugin: New $LISTNONEMPTY(), $SPLIT() and $WHILE() functions - added in TWiki-5.0.2
- Bug Fixes
- 70 bug fixes since TWiki-4.3.2
Hall of Fame of TWiki Release 5.0
Many people have been involved in creating TWiki 5.0. Special thanks go to the most active contributors in the following areas:
- Sponsor and facilitator: TWiki:Main.PeterThoeny
- Testing and bug fixing: TWiki:Main.SopanShewale, TWiki:Main.PeterThoeny, TWiki:Main.TimotheLitt, TWiki:Main.BarryLake, TWiki:Main.BryanKitts, TWiki:Main.JoenioCosta
- Spec and code: TWiki:Main.PeterThoeny, TWiki:Main.SopanShewale, TWiki:Main.PeterJones, TWiki:Main.TimotheLitt
- Documentation: TWiki:Main.PeterThoeny, TWiki:Main.SopanShewale, TWiki:Main.EaCohen
- Release package builds: TWiki:Main.SopanShewale, TWiki:Main.GeorgeTrubisky
- Usability: TWiki:Main.PeterThoeny
- Translations: Coordinated by TWiki:Main.PeterThoeny
- Bulgarian: TWiki:Main.KrassimirBerov
- Chinese (simplified and traditional): TWiki:Main.CheDong
- Czech: TWiki:Main.IvanKuncl
- Danish: TWiki:Main.SteffenPoulsen
- Dutch: TWiki:Main.WoutMertens
- Finnish: TWiki:Main.HeikkiToivonen
- French: TWiki:Main.BenVoui
- German: TWiki:Main.MartinRaabe
- Italian: TWiki:Main.MassimoMancini
- Japanese: TWiki:Main.KenYuminaga
- Korean: TWiki:Main.JustinKim
- Polish: TWiki:Main.ZbigniewKulesza
- Portuguese: TWiki:Main.CarlinhosCecconi
- Russian: TWiki:Main.AndreyTkachenko, TWiki:Main.SergejZnamenskij, TWiki:Main.SergeyJSinx
- Spanish: TWiki:Main.SebastianKlus, TWiki:Main.MiguelABayona
- Swedish: TWiki:Main.ErikAman
- Ukrainian: TWiki:Main.SerhijDubyk
- Marketing: TWiki:Main.PeterThoeny, TWiki:Main.WillThomas
- Public relations: TWiki:Main.PeterThoeny, TWiki:Main.WillThomas
- Meetups: TWiki:Main.PeterThoeny
- TWiki.org wiki champions: TWiki:Main.SopanShewale, TWiki:Main.PeterThoeny, TWiki:Main.PeterJones, TWiki:Main.IanKluft, TWiki:Main.AaronLWalker, TWiki:Main.DanielRohde
<-- Blog, Codev, Main, Plugins, TWiki webs -->
- Customer support: TWiki:Main.PeterThoeny, TWiki:Main.SeanCMorgan, TWiki:Main.SopanShewale, TWiki:Main.AaronLWalker
<-- Support web -->
- System administration: TWiki:Main.ChrisLahti, TWiki:Main.PeterThoeny, TWiki:Main.SopanShewale
If you find an omission please fix it at TWiki:TWiki/TWikiHistory. For the full list of contributors see TWikiContributor.
See more details on the TWiki 5.0 release at TWikiReleaseNotes05x00.
TWiki Release 4.3 (Georgetown) released on 2009-04-29
New Features and Enhancements of TWiki Release 4.3
- Usability Enhancements
- Replace question mark links with red-links to point to non-existing topics
- Use ISO date format by default
- Enterprise Collaboration Enhancements
- Search Enhancements
- Add footer parameter to Formatted Search
- Add number of topics to Formatted Search
- Miscellaneous Feature Enhancements
- Control over variable expansion at topic creation time
- 17 new TWikiDocGraphics images
- Include URL supports list of domains to exclude from proxy
- Adding Korean language
- Bug Fixes
- More than 30 bug fixes since 4.2.4
Hall of Fame of TWiki Release 4.3
Many people have been involved in creating TWiki 4.3. Special thanks go to the most active contributors in the following areas:
- Sponsor and facilitator: TWiki:Main.PeterThoeny
- Testing and bug fixing: TWiki:Main.SopanShewale, TWiki:Main.PeterThoeny, TWiki:Main.FengZhaolin, TWiki:Main.TimotheLitt, TWiki:Main.SteveMilner
- Spec and code: TWiki:Main.PeterThoeny, TWiki:Main.SopanShewale, TWiki:Main.TimotheLitt
- Documentation: TWiki:Main.PeterThoeny, TWiki:Main.SopanShewale, TWiki:Main.TimotheLitt, TWiki:Main.StephenHallett, TWiki:Main.JefferyMartin, TWiki:Main.ThomasErskine
- Release package builds: TWiki:Main.SopanShewale
- Usability: TWiki:Main.PeterThoeny
- Translations: Coordinated by TWiki:Main.SteffenPoulsen
- Bulgarian: TWiki:Main.KrassimirBerov
- Chinese (simplified and traditional): TWiki:Main.CheDong
- Czech: TWiki:Main.IvanKuncl
- Danish: TWiki:Main.SteffenPoulsen
- Dutch: TWiki:Main.WoutMertens
- Finnish: TWiki:Main.HeikkiToivonen
- French: TWiki:Main.BenVoui
- German: TWiki:Main.MartinRaabe
- Italian: TWiki:Main.MassimoMancini
- Japanese: TWiki:Main.KenYuminaga
- Korean: TWiki:Main.JustinKim
- Polish: TWiki:Main.ZbigniewKulesza
- Portuguese: TWiki:Main.CarlinhosCecconi
- Russian: TWiki:Main.AndreyTkachenko, TWiki:Main.SergejZnamenskij, TWiki:Main.SergeyJSinx, TWiki:Main.AlexTananaev
- Spanish: TWiki:Main.SebastianKlus, TWiki:Main.MiguelABayona
- Swedish: TWiki:Main.ErikAman
- Ukrainian: TWiki:Main.SerhijDubyk
- Marketing: TWiki:Main.PeterThoeny, TWiki:Main.WillThomas, TWiki:Main.VickiBrown
- Public relations: TWiki:Main.PeterThoeny, TWiki:Main.WillThomas
- Meetups: TWiki:Main.PeterThoeny
- TWiki.org wiki champions: TWiki:Main.SopanShewale, TWiki:Main.PeterThoeny, TWiki:Main.FengZhaolin, TWiki:Main.AndrewRJones, TWiki:Main.DanielRohde
<-- Blog, Codev, Main, Plugins, TWiki webs -->
- Customer support: TWiki:Main.PeterThoeny, TWiki:Main.SeanCMorgan, TWiki:Main.EnriqueCadalso, TWiki:Main.ScottFreeman, TWiki:Main.SopanShewale
<-- Support web -->
- System administration: TWiki:Main.ChrisLahti, TWiki:Main.PeterThoeny, TWiki:Main.SopanShewale
If you find an omission please fix it at TWiki:TWiki.TWikiHistory. For the full list of contributors see TWikiContributor.
See more details on the TWiki 4.3 release at TWikiReleaseNotes04x03.
TWiki Release 4.2 (Freetown), 2008-01-22
New Features and Enhancements of TWiki Release 4.2
- Easier Installation and Upgrade
- New Internal Admin Login feature
- The Main.TWikiUsers topic is no longer distributed as a default topic in Main web
- A new directory
working which per default is located in the TWiki root which contains registration_approvals, tmp, and work_areas
- Configure can now authenticate when connecting to local plugins repository.
- Usability Enhancements
- New WYSIWYG editor based on TinyMCE replaces the Kupu based editor
- New "Restore topic" feature has been added to the More Topic Actions menu to easily restore an older version of a topic
- Application Platform Enhancements
- Enhancements to IF: allows, ingroup, istopic, and isweb
- Search Enhancements
- New
query search mode supports SQL-style queries over form fields and other meta-data
- Skins and Templates Enhancements
- The PatternSkin which is the default skin for TWiki has got a face lift
- The default templates have been heavily refactored to make it easier to create skins reusing the default skin.
- Miscellaneous Feature Enhancements
- Many new functions in the API for plugin developers
- Table of Content (TOC) feature enhanced
- re-architected Pluggable user mapping (between login name and WikiName) to integrate with alternative authentication and Management schemes
- Topic based User management has been extracted into a separately update-able package (TWikiUsersContrib)
- Enhancements of Pre-installed Plugins
- Bug Fixes
- More than 300 bugs fixes since 4.1.2
Hall of Fame of TWiki Release 4.2
Many people have been involved in creating TWiki 4.2. Special thanks go to the most active contributors in the following areas:
- Release management led by TWiki:Main.KennethLavrsen, ably assisted by TWiki:Main.SvenDowideit
- Design and development driven by TWiki:Main.CrawfordCurrie, TWiki:Main.ArthurClemens, TWiki:Main.KennethLavrsen and TWiki:Main.SvenDowideit
- Testing driven by TWiki:Main.KennethLavrsen
Many thanks also to the contributors in the following areas:
- Sponsor and facilitator: TWiki:Main.PeterThoeny
- Testing and bug fixing: TWiki:Main.KennethLavrsen, TWiki:Main.CrawfordCurrie, TWiki:Main.ArthurClemens, TWiki:Main.SvenDowideit, TWiki:Main.SteffenPoulsen, TWiki:Main.MichaelDaum, TWiki:Main.PeterThoeny, TWiki:Main.RichardDonkin
- Spec and code: TWiki:Main.CrawfordCurrie (2323), TWiki:Main.ArthurClemens (566), TWiki:Main.SvenDowideit (507), TWiki:Main.PeterThoeny (83), TWiki:Main.KennethLavrsen (73), TWiki:Main.SteffenPoulsen (72), TWiki:Main.AntonioTerceiro (63) - ( 3857 changes by 20 authors )
- Templates and skins: TWiki:Main.ArthurClemens (587), TWiki:Main.CrawfordCurrie (130), TWiki:Main.AndreUlrich (73), TWiki:Main.SvenDowideit (44) - ( 869 changes by 12 authors )
- Documentation: TWiki:Main.ArthurClemens (460), TWiki:Main.CrawfordCurrie (377), TWiki:Main.PeterThoeny (233), TWiki:Main.AndreUlrich (157), TWiki:Main.SvenDowideit (118), TWiki:Main.KennethLavrsen (68) - ( 1450 changes by 14 authors )
- Release package builds: TWiki:Main.SvenDowideit
- Usability: TWiki:Main.CarloSchulz, TWiki:Main.ArthurClemens
- Translations: Coordinated by TWiki:Main.AntonioTerceiro
- Bulgarian: TWiki:Main.KrassimirBerov
- Danish: TWiki:Main.SteffenPoulsen
- Dutch: TWiki:Main.ArthurClemens
- Finnish: TWiki:Main.HeikkiToivonen
- French: TWiki:Main.BenVoui
- German: TWiki:Main.OliverKrueger, TWiki:Main.AndreUlrich
- Italian: TWiki:Main.MassimoMancini
- Portuguese: TWiki:Main.CarlinhosCecconi
- Simplified Chinese: TWiki:Main.CheDong
- Swedish: TWiki:Main.ErikAman
- Traditional Chinese: TWiki:Main.CheDong
- Ukrainian: TWiki:Main.SerhijDubyk
- Marketing: TWiki:Main.RodBeckstrom, TWiki:Main.PeterThoeny, TWiki:Main.MichaelCorbett, TWiki:Main.KoenMartens
- Public relations: TWiki:Main.PeterThoeny, TWiki:Main.MichaelCorbett
- Meetups: TWiki:Main.AmirShobeiri
- TWiki.org wiki champions: TWiki:Main.PeterThoeny, TWiki:Main.ArthurClemens, TWiki:Main.CrawfordCurrie, TWiki:Main.KennethLavrsen, TWiki:Main.SvenDowideit, TWiki:Main.MichaelDaum, TWiki:Main.CarloSchulz, TWiki:Main.StephaneLenclud, TWiki:Main.RichardDonkin, TWiki:Main.KoenMartens
<-- Blog, Codev, Main, Plugins, TWiki webs -->
- Customer support: TWiki:Main.PeterThoeny, TWiki:Main.ArthurClemens, TWiki:Main.CrawfordCurrie, TWiki:Main.SvenDowideit, TWiki:Main.HaraldJoerg
<-- Support web -->
- System administration: TWiki:Main.SvenDowideit, TWiki:Main.PeterThoeny, TWiki:Main.CrawfordCurrie
If you find an omission please fix it at TWiki:TWiki.TWikiHistory. For the full list of contributors see TWikiContributor.
Note: Order of contributors under "Spec and code", "Templates and skins" and "Documentation" is based on number of SVN file changes for core and default extensions from March 2007 (svn rev:13046) to Jan 2008 (svn rev:16210). (Details at TWikibug:TWiki420SvnLog). Order of contributors under "Testing and bug fixing" is based on Bugs web statistics from 2007-03 to 2007-12. Order of contributors under "TWiki.org wiki champions" and "Customer support" is based on TWiki.org web statistics from 2007-02 to 2007-12.
See more details on the TWiki 4.2 release at TWikiReleaseNotes04x02.
TWiki Release 4.1 (Edinburgh), 2007-01-16
New Features and Enhancements of TWiki Release 4.1
- Easier Installation and Upgrade
- Plugins can now be installed from the configure script.
- The loading of plugin preferences settings has been moved earlier in the preferences evaluation order so that plugin settings can be redefined in Main.TWikiPreferences, WebPreferences and in topics. To make TWiki upgrades easier, it is recommended to set the plugin settings in Main.TWikiPreferences, and not to customize the settings in the plugin topic. For example, to change the TEMPLATES setting of the CommentPlugin, create a new COMMENTPLUGIN_TEMPLATES setting in Main.TWikiPreferences.
- Plugin settings can now be defined in configure instead of in the plugin topic (requires that the individual plugin has implemented this). TWiki performs slightly better by not looking for preferences settings in plugin topics.
- Configure no longer shows many unnecessary errors when run first time.
- The webmaster email address is now defined in configure instead of TWikiPreferences.
- Default file access rights in the distribution package have been changed to be more universally defined and in line with the default access rights for new topics.
- Usability Enhancements
- Redesigned result page when typing incomplete topic name into the Jump box, so that it is possible to quickly navigate to a topic, also in a very large TWiki installation. For example, "I know there is a topic about Ajax somewhere in the Eng web. OK, let my type
Eng.ajax into the Jump box... Here we go, the third link is the AjaxCookbook I was looking for."
- Many user documentation improvements.
- URL parameters maintained in Table of Contents links so you can stay in a temporary skin (e.g. print) and keep URLPARAM values when you click the TOC links
- Attachment tables now sorted alphabetically.
- Better printing of tables and verbatim text in PatternSkin.
- Application Platform Enhancements
- Auto-incremented topic name on save with AUTOINC<n> in topic name; used by TWiki applications to create topic based database records.
- The edit and save scripts support a
redirectto parameter to redirect to a topic or a URL; for security, redirect to URL needs to be enabled with a {AllowRedirectUrl} configure flag.
- CommentPlugin supports the
redirectto parameter to redirect to a URL or link to TWiki topic after submitting comment.
- The
topic URL parameter also respects the {AllowRedirectUrl} configure flag so redirects to URLs can be disabled which could be abused for phishing attacks.
- The view script supports a
section URL parameter to view just a named section within a topic. Useful for simple AJAX type applications.
- New plugin handler for content move.
- Enhancements for Ajax based applications with TWiki:Plugins/YahooUserInterfaceContrib and TWiki:Plugins.TWikiAjaxContrib (available at twiki.org).
- Search Enhancements
- METASEARCH handles a format parameter like SEARCH.
- Topic not found / WebTopicViewTemplate search now case insensitive.
- FormattedSearch header supporting
$nop , $quot , $percnt , $dollar .
- Add search by createdate option to SEARCH.
- New newline option for SEARCH to protect e.g. formfields from being altered during rendering in SEARCH.
- Skins and Templates Enhancements
- Support for templates to have text rendering affecting aspect outside of textarea.
- Pattern skin dependence on TwistyPlugin instead of TwistyContrib (performance improvement.)
- Don't strip newlines from the front of TMPL:DEFs.
- Miscellaneous Feature Enhancements
- Change in WikiWord definition: Numbers are treated as lower case letters, e.g. Y2K is now a WikiWord.
- Configurable template load path. Advanced feature for those that work with customized templates.
- Added %VBAR% to TWikiPreferences for vertical bar symbol.
- On topic creation, force initial letter of topic name to be upper case.
- Allow date format in form fields.
- Enhance REVINFO{} variable with same date qualifiers as GMTIME{}.
- WebTopicCreator - adding ability to select a template from any topic name ending in ...Template
- Functionality of TWiki:Plugins.DateFieldPlugin merged into core
- Enhancements of Pre-installed Plugins
- CommentPlugin: Supports removal of comment prompt after a comment is made.
- EditTablePlugin: Default date format based on JSCalendarContrib instead of plugin topic.
- InterwikiPlugin: Supports custom link formats.
- SlideShowPlugin: Preserves URL parameters in slideshow
- SpreadSheetPlugin: New functions
$LISTRAND() , $LISTSHUFFLE() , $LISTTRUNCATE() .
- TablePlugin: New attribute
cellborder .
- TablePlugin: Highlight the sorted column with custom colors; includes also a general cosmetic update of default colors.
- TablePlugin: Support for initsort on more than one table. A table with the initsort option is initsorted UNLESS it is sorted by clicking on a column header. If you click on a header of another table all other tables goes back to the default sort defined by initsort or not sorted if no initsort, and the new table is sorted based on the user clicking on a table header.
- Bugfixes
- More than 200 bugs fixed since 4.0.5
Hall of Fame of TWiki Release 4.1
Although many more people have been involved in creating TWiki-4.1, special thanks go to the most active contributors in the following areas:
- Sponsor and facilitator: TWiki:Main.PeterThoeny
- Process improvement: TWiki:Main.KennethLavrsen, TWiki:Main.PeterThoeny, TWiki:Main.SteffenPoulsen, TWiki:Main.CrawfordCurrie
- Release management: TWiki:Main.KennethLavrsen
- Spec, code, testing: TWiki:Main.CrawfordCurrie, TWiki:Main.ArthurClemens, TWiki:Main.SteffenPoulsen, TWiki:Main.PeterThoeny, TWiki:Main.ThomasWeigert, TWiki:Main.KennethLavrsen, TWiki:Main.SvenDowideit, TWiki:Main.HaraldJoerg, TWiki:Main.MichaelDaum, TWiki:Main.MeredithLesly, TWiki:Main.WillNorris, TWiki:Main.RafaelAlvarez, TWiki:Main.AntonioTerceiro
- Templates and skins: TWiki:Main.ArthurClemens, TWiki:Main.MichaelDaum, TWiki:Main.SvenDowideit
- Documentation: TWiki:Main.PeterThoeny, TWiki:Main.CrawfordCurrie, TWiki:Main.ArthurClemens, TWiki:Main.SteffenPoulsen, TWiki:Main.KennethLavrsen
- Translations: Coordinated by TWiki:Main.AntonioTerceiro
- Chinese: TWiki:Main.CheDong
- Czech: TWiki:Main.IvanKuncl
- Danish: TWiki:Main.SteffenPoulsen
- Dutch: TWiki:Main.ArthurClemens
- French: TWiki:Main.BenVoui
- German: TWiki:Main.AndreUlrich
- Italian: TWiki:Main.MassimoMancini
- Polish: TWiki:Main.ZbigniewKulesza
- Portuguese: TWiki:Main.AntonioTerceiro, TWiki:Main.CarlinhosCecconi
- Russian: TWiki:Main.AndreyTkachenko, TWiki:Main.SergejZnamenskij, TWiki:Main.SergeyJSinx, TWiki:Main.AlexTananaev
- Spanish: TWiki:Main.WillNorris, TWiki:Main.MiguelABayona
- Swedish: TWiki:Main.ErikAman
- Public relations: TWiki:Main.PeterThoeny, TWiki:Main.TomTansy
- TWiki.org wiki champions: TWiki:Main.PeterThoeny, TWiki:Main.CrawfordCurrie, TWiki:Main.KennethLavrsen, TWiki:Main.SteffenPoulsen, TWiki:Main.ArthurClemens, TWiki:Main.ThomasWeigert, TWiki:Main.MichaelDaum
- Customer support: TWiki:Main.PeterThoeny, TWiki:Main.CrawfordCurrie, TWiki:Main.ArthurClemens, TWiki:Main.SteffenPoulsen, TWiki:Main.SteveStark, TWiki:Main.MichaelDaum
- System administration: TWiki:Main.SvenDowideit, TWiki:Main.PeterThoeny, TWiki:Main.CrawfordCurrie
If you find an omission please fix it at TWiki:TWiki.TWikiHistory. For the full list of contributors see TWikiContributor.
Note: Sequence of contributors under "Spec, code, testing", "Templates and skins" and "Documentation" is based on number of SVN check-ins for core and default extensions from 2006-02 to 2006-12. Sequence of contributors under "TWiki.org wiki champions" and "Customer support" is based on TWiki.org web statistics from 2006-02 to 2006-12.
See more details on the TWiki 4.1 release at TWikiReleaseNotes04x01.
TWiki Release 4.0 (Dakar), 2006-02-01
Major New Features
- Much simpler install and configuration
- Integrated session support
- Webserver-independent login/logout
- Security sandbox blocking exploits for remote command execution on the server
- Edit conflict resolution with automatic merge
- Multilingual UI
- E-mail confirmations for registration
- WYSIWYG editor (beta)
- Hierarchical sub-webs (beta)
Many, many people worked on TWiki-4.0.0. The credits in the table below only list the people who worked on individual enhancements. If you find an omission please fix it at TWiki:TWiki.TWikiHistory. There were many other contributors; for a full list, visit TWikiContributor.
Most of the redesign, refactoring and new documentation work in Dakar release was done by Crawford Currie . Michael Sparks provided ideas and proof of concept for several improvements. Other people who gave large amounts of their time and patience to less sexy aspects of the work, such as testing, infrastructure and documentation, are AntonAylward, KennethLavrsen, LynnwoodBrown, MichaelDaum, Peter Thoeny , SteffenPoulsen, Sven Dowideit , WillNorris.
Installation & configuration |
Contributor |
Much simpler install and configuration |
Crawford Currie , LynnwoodBrown, ArthurClemens |
mod_perl safe code for better performance |
Crawford Currie |
Security |
Security sandbox blocking exploits for remote command execution on the server |
Florian Weimer , Crawford Currie , Sven Dowideit |
Reworked access permission model |
Crawford Currie |
Internationalization & localization |
User Interface Internationalisation |
AntonioTerceiro |
Chinese translation |
CheDong |
Danish translation |
SteffenPoulsen |
Dutch translation |
ArthurClemens |
French translation |
BenVoui |
German translation |
AndreUlrich |
Italian translation |
MassimoMancini |
Polish translation |
ZbigniewKulesza |
Portuguese translation |
AntonioTerceiro, CarlinhosCecconi |
Spanish translation |
WillNorris, MiguelABayona |
Swedish translation |
Erik Åman |
New features for users |
Edit conflict resolution with automatic merge |
Crawford Currie |
Fine grained change notification on page level and parent/child relationship |
Crawford Currie |
WYSIWYG editor |
Crawford Currie , ColasNahaboo, DamienMandrioli, RomainRaugi |
Integrated session support |
GregAbbas, Crawford Currie |
Webserver-independent login/logout |
Crawford Currie |
Registration process with e-mail confirmation |
MartinCleaver |
Tip of the Day box in TWiki Home |
PaulineCheung, Peter Thoeny , AntonAylward |
ATOM feeds |
Peter Thoeny |
"Force New Revision" check box for topic save |
WillNorris |
New features for TWiki administrators and wiki application developers |
Improved preferences handling |
ThomasWeigert, Crawford Currie |
Named include sections |
RafaelAlvarez |
Create topic names with consecutive numbers |
Sven Dowideit |
Parameterized includes |
Crawford Currie |
Dynamic form option definitions of TWikiForms with FormattedSearch |
MartinCleaver |
SEARCH enhancements with new parameters excludeweb , newline , noempty , nofinalnewline , nonoise , recurse , zeroresults |
Crawford Currie , ArthurClemens, Peter Thoeny , ThomasWeigert |
FormattedSearch enhancements with $changes , $count , $formfield(name, 30, ...) , $summary(expandvar) , $summary(noheaders) , $summary(showvarnames) |
ColasNahaboo, Crawford Currie , Peter Thoeny , Sven Dowideit |
New TWikiVariables ACTIVATEDPLUGINS, ALLVARIABLES, AUTHREALM, EMAILS, FAILEDPLUGINS, HTTP, HTTPS, ICONURL, ICONURLPATH, IF, LANGUAGES, LOCALSITEPREFS, LOGIN, LOGOUT, MAKETEXT, META, PLUGINDESCRIPTIONS, QUERYSTRING, STARTSECTION/ENDSECTION, SESSION_VARIABLE, SESSIONID, SESSIONVAR, SPACEOUT, USERLANGUAGE, WIKIHOMEURL |
ArthurClemens, AntonioTerceiro, Crawford Currie , GregAbbas, Peter Thoeny, Sven Dowideit , WillNorris and many more |
TWiki form with hidden type and other form enhancements |
LynnwoodBrown, ThomasWeigert |
Support topic-specific templates for TWiki applications |
ThomasWeigert |
Direct save feature for one-click template-based topic creation |
LynnwoodBrown, Crawford Currie , ThomasWeigert |
Automatic Attachments showing all files in the attachment directory |
MartinCleaver |
Rename, move or delete webs |
PeterNixon |
Hierarchical subwebs (beta) |
PeterNixon |
New features for Plugin developers |
REST (representational state transfer) interface for Plugins |
RafaelAlvarez, TWiki:Main.MartinCleaver, Sven Dowideit |
New and improved Plugins APIs |
Crawford Currie , ThomasWeigert |
Improvements in the TWiki engine room |
Major OO redesign and refactoring of codebase |
Crawford Currie |
Automatic build system |
Crawford Currie |
Extensive test suite, unit tests and testcases |
Crawford Currie |
TWiki:Codev.DevelopBranch , DEVELOP branch Bugs system |
Sven Dowideit |
Documentation, logo artwork, skins: |
Documentation |
Crawford Currie , LynnwoodBrown, Peter Thoeny , Sven Dowideit and others |
Design of TWikiLogos with big "T" in a speech bubble |
ArthurClemens, Peter Thoeny |
Improved templates and PatternSkin |
ArthurClemens |
See more details at TWikiReleaseNotes04x00
01-Sep-2004 Release (Cairo)
Major New Features
- Automatic upgrade script, and easier first-time installation
- Attractive new skins, using a standard set of CSS classes, and a skin browser to help you choose
- New easier-to-use save options
- Many improvements to SEARCH
- Improved support for internationalisation
- Better topic management screens
- More pre-installed Plugins: CommentPlugin, EditTablePlugin, RenderListPlugin, SlideShowPlugin, SmiliesPlugin, SpreadSheetPlugin, TablePlugin
- Improved Plugins API and more Plugin callbacks
- Better support for different authentication methods
- Many user interface and usability improvements
- And many, many more enhancements
Details of New Features and Enhancements of 01-Sep-2004 Release |
Developer, Sponsor |
Install: Ship with an automatic upgrade script to facilitate TWiki upgrades. Details |
TWiki:Main.MartinGregory TWiki:Main.SvenDowideit |
Install: New testenv function to change the locks in the TWiki database to the web server user id (automates installation step). Details |
TWiki:Main.MattWilkie TWiki:Main.SvenDowideit |
Install: The shipped .htaccess.txt now needs to be edited before it is valid, to help reduce chances of error. Details |
TWiki:Main.CrawfordCurrie TWiki:Main.SvenDowideit |
Install: Configurable password file handling for different types of encryption. Details |
TWiki:Main.PavelGoran TWiki:Main.SvenDowideit |
Install: Remove office locations from registration. Details |
TWiki:Main.PeterThoeny |
Install: Changes to support shorter URLs with Apache Rewrite rules. Details |
TWiki:Main.AntonioBellezza TWiki:Main.WalterMundt |
Install: Remove the Know web from the distribution. Details |
TWiki:Main.PeterThoeny |
Internationalization: Support use of UTF-8 URLs for I18N characters in TWiki page and attachment names. Details |
TWiki:Main.RichardDonkin |
Authentication: Authenticate users when creating new topic in view restricted web. Details |
TWiki:Main.JonathanGraehl TWiki:Main.SvenDowideit |
Preferences: TWiki Preferences need to be secured properly. Details |
TWiki:Main.PeterThoeny |
Preferences: Use TWiki Forms to set user preferences. Details |
TWiki:Main.JohnTalintyre |
Skins: New pre-installed skins PatternSkin and DragonSkin. Details |
TWiki:Main.ArthurClemens TWiki:Main.PeterThoeny |
Skins: New skin browser to choose from installed skins. Details |
TWiki:Main.PeterThoeny |
Skins: Documented set of CSS classes that are used in standard skins. Details |
TWiki:Main.ArthurClemens TWiki:Main.SvenDowideit |
Skins: Added CSS class names to Diff output. Details |
TWiki:Main.SvenDowideit |
Skins: Templates can now be read from user topics, as well as from files in the templates diretcory. Details |
TWiki:Main.CrawfordCurrie TWiki:Main.WalterMundt |
Skins: Ensure that the default template gets overridden by a template passed in. Details |
TWiki:Main.MartinCleaver TWiki:Main.WalterMundt |
Skin: Convey an important broadcast message to all users, e.g. scheduled server downtime. Details |
TWiki:Main.PeterThoeny |
Skin: Balanced pastel colors for TWiki webs. Details |
TWiki:Main.ArthurClemens |
Rendering: Use exclamation point prefix to escape TWiki markup rendering. Details |
TWiki:Main.ArthurClemens |
Rendering: Ordered lists with uppercase & lowercase letters, uppercase & lowercase Roman numerals. Details |
TWiki:Main.DanBoitnott TWiki:Main.PeterThoeny |
Rendering: Allow custom styles for the "?" of uncreated topics. Details |
TWiki:Main.SvenDowideit |
Rendering: Render IRC and NNTP as a URL. Details |
TWiki:Main.PeterThoeny |
Rendering: Make acronym linking more strict by requiring a trailing boundary, e.g. excluding TLAfoobar. Details |
TWiki:Main.CrawfordCurrie TWiki:Main.SvenDowideit |
Rendering: TWiki Form with Label type. Details |
TWiki:Main.PeterThoeny |
Rendering: Web names can now be WikiWords. Details |
TWiki:Main.PeterThoeny |
Rendering: New syntax for definition list with dollar sign and colon. Details |
TWiki:Main.AdamTheo TWiki:Main.PeterThoeny |
Rendering: Table with multi-span rows, functionality provided by Table Plugin. Details |
TWiki:Main.WalterMundt |
Variables: New title parameter for TOC variable. Details |
TWiki:Main.PeterThoeny TWiki:Main.ArthurClemens |
Variables: New REVINFO variable in templates supports flexible display of revision information. Details |
TWiki:Main.PeterThoeny TWiki:Main.SvenDowideit |
Variables: Set times to be displayed as gmtime or servertime. Details |
TWiki:Main.SueBlake TWiki:Main.SvenDowideit |
Variables: Properly encode parameters for form fields with ENCODE variable. Details |
TWiki:Main.PeterThoeny |
Variables: Expand USERNAME and WIKINAME in Template Topics. Details |
TWiki:Main.PeterThoeny |
Variables: Expand same variables in new user template as in template topics. Details |
TWiki:Main.PeterThoeny |
Variables: Optionally warn when included topic does not exist; with the option to create the included topic. Details |
TWiki:Main.PeterThoeny |
Variables: In topic text show file-types of attached files as icons. Details |
TWiki:Main.PeterThoeny |
Variables: New variable FORMFIELD returns the value of a field in the form attached to a topic.. Details |
TWiki:Main.DavidSachitano TWiki:Main.SvenDowideit |
Variables: Meta data rendering for form fields with META{"formfield"}. Details |
TWiki:Main.PeterThoeny |
Variables: New PLUGINVERSION variable. Details |
TWiki:Main.PeterThoeny |
Variables: URLPARAM now has a default="..." argument, for when no value has been given. Details |
TWiki:Main.PeterThoeny |
Variables: URLPARAM variable with newline parameter. Details |
TWiki:Main.PeterThoeny |
Variables: URLPARAM variable with new multiple=on parameter. Details |
TWiki:Main.PaulineCheung TWiki:Main.PeterThoeny |
Search: New switch for search to perform an AND NOT search. Details |
TWiki:Main.PeterThoeny |
Search: Keyword search to search with implicit AND. Details |
TWiki:Main.PeterThoeny |
Search: Multiple searches in same topic with new multiple="on" paramter. Details |
TWiki:Main.PeterThoeny |
Search: Remove limitation on number of topics to search in a web. Details |
TWiki:Main.PeterThoeny |
Search: Exclude topics from search with an excludetopic parameter. Details |
TWiki:Main.PeterThoeny |
Search: Expand Variables on Formatted Search with expandvariables Flag. Details |
TWiki:Main.PeterThoeny |
Search: Formatted Search with Web Form variable to retrieve the name of the form attached to a topic. Details |
TWiki:Main.FrankSmith TWiki:Main.PeterThoeny |
Search: Formatted Search with Conditional Output. Details |
TWiki:Main.PeterThoeny |
Search: Formatted Search with $parent token to get the parent topic. Details |
TWiki:Main.PeterThoeny |
Search: New separator parameter to SEARCH supports better SEARCH embedding. Details |
TWiki:Main.PeterThoeny |
Search: Improved search performance when sorting result by topic name. Details |
TWiki:Main.PeterThoeny |
Search: New scope=all search parameter to search in topic name and topic text at the same time. Details |
TWiki:Main.PeterThoeny |
Search: New topic parameter for AND search on topic text and topic name. Details |
TWiki:Main.PeterThoeny |
Search modules uses Perl-style keyword parameters (code cleanup). Details |
TWiki:Main.PeterThoeny |
Search: New $wikiname variable in format parameter of formatted search. Details |
TWiki:Main.ArthurClemens |
Search: Sort search by topic creation date. Details |
TWiki:Main.PeterThoeny |
Search: Topic creation date and user in Formatted Search. Details |
TWiki:Main.CoreyFruitman TWiki:Main.SvenDowideit |
Search: Increase levels of nested search from 2 to 16. Details |
TWiki:Main.PeterThoeny |
Plugins: New pre-installed Plugins CommentPlugin, EditTablePlugin, RenderListPlugin, SlideShowPlugin, SmiliesPlugin, SpreadSheetPlugin, TablePlugin. Details |
TWiki:Main.PeterThoeny |
Plugins: New callback afterSaveHandler , called after a topic is saved. Details |
TWiki:Main.WalterMundt |
Plugins: New callbacks beforeAttachmentSaveHandler and afterAttachmentSaveHandler , used to intervene on attachment save event. Details |
TWiki:Main.MartinCleaver TWiki:Main.WalterMundt |
Plugins: New callbacks beforeCommonTagsHandler and afterCommonTagsHandler . Details |
TWiki:Main.PeterThoeny |
Plugins: New callback renderFormFieldForEditHandler to render form field for edit. Details |
TWiki:Main.JohnTalintyre |
Plugins: New callback renderWikiWordHandler to custom render links. Details |
TWiki:Main.MartinCleaver TWiki:Main.WalterMundt |
Plugins: New function TWiki::Func::formatTime to format time into a string. Details |
TWiki:Main.SvenDowideit |
Plugins: New function TWiki::Func::getRegularExpression to get predefined regular expressions. Details |
TWiki:Main.RichardDonkin |
Plugins: New functions TWiki::Func::getPluginPreferences* to get Plugin preferences. Details |
TWiki:Main.WalterMundt |
Plugins: New function TWiki::Func::extractParameters to extract all parameters from a variable string. Details |
TWiki:Main.PeterThoeny |
Plugins: New function TWiki::Func::checkDependencies to check for module dependency. Details |
TWiki:Main.CrawfordCurrie TWiki:Main.SvenDowideit |
Plugins: A recommendation for where a Plugin can store its data. Details |
TWiki:Main.PeterThoeny |
UI: Show tool-tip topic info on WikiWord links. Details |
TWiki:Main.PeterThoeny |
UI: Save topic and continue edit feature. Details |
TWiki:Main.ColasNahaboo |
UI: Change topic with direct save (without edit/preview/save cycle) and checkpoint save. Details |
TWiki:Main.MattWilkie TWiki:Main.SvenDowideit |
UI: In attachment table, change 'action' to 'manage'. Details |
TWiki:Main.PeterThoeny TWiki:Main.ArthurClemens |
UI: Smaller usability enhancements on the file attachment table. Details |
TWiki:Main.PeterThoeny TWiki:Main.ArthurClemens |
UI: Removes anchor links from header content and places them before the text to fix 'header becomes link'. Details |
TWiki:Main.ArthurClemens |
UI: Improved functionality of the More screen. Details |
TWiki:Main.PeterThoeny TWiki:Main.ArthurClemens |
UI: Quick reference chart of most used markup is now listed on the edit screen. Details |
TWiki:Main.ArthurClemens |
UI: Flag for edit script to avoid overwrite of existing topic text and form data. Details |
TWiki:Main.NielsKoldso TWiki:Main.PeterThoeny |
UI: Disable Escape key in IE textarea to prevent it cancelling work. Details |
TWiki:Main.CrawfordCurrie TWiki:Main.PeterThoeny |
UI: Improved warning message on unsaved topic. Details |
TWiki:Main.MartinGregory TWiki:Main.SvenDowideit |
UI: Reverse order of words in page title for better multi-window/tab navigation. Details |
TWiki:Main.ArthurClemens |
UI: Provides a framework to create and modify a topic without going through edit->preview->save sequence. Details |
TWiki:Main.AndreUlrich TWiki:Main.SvenDowideit |
UI: Set the topic parent to none in More screen, e.g. remove the current topic parent. Details |
TWiki:Main.PeterThoeny |
UI: Use templates to define how file attachments are displayed. Was previously hard-coded. Details |
TWiki:Main.CrawfordCurrie TWiki:Main.SvenDowideit |
UI: Topic diff shows unified diff with unchanged context. Details |
TWiki:Main.SvenDowideit |
UI: Diff feature shows TWiki form changes in nice tables. Details |
TWiki:Main.SvenDowideit |
Code refactoring: The log entry for a save now has a dontNotify flag in the extra field if the user checked the minor changes flag. Details |
TWiki:Main.PeterThoeny |
Code refactoring: Server-side include of attachments accelerates INCLUDE. Details |
TWiki:Main.CrawfordCurrie TWiki:Main.PeterThoeny |
Code refactoring: Move functionality out of bin scripts and into included modules. Details |
TWiki:Main.CrawfordCurrie TWiki:Main.SvenDowideit |
Code refactoring: Move bin script functionality into TWiki::UI modules. Details |
TWiki:Main.CrawfordCurrie TWiki:Main.PeterThoeny |
Code refactoring: Optimize preferences handling for better performance. Details |
TWiki:Main.PavelGoran TWiki:Main.WalterMundt |
Code refactoring: Refactor variable expansion for edit and register. Details |
TWiki:Main.CrawfordCurrie TWiki:Main.PeterThoeny |
Code refactoring: Move savemulti script into TWiki::UI::Save. Details |
TWiki:Main.MattWilkie TWiki:Main.SvenDowideit |
Code refactoring: Topic search is done natively in Perl, it does not depend anymore on system calls with pipes. Details |
TWiki:Main.PeterThoeny |
Code refactoring: Fix logical error in upload script which prevented MIME filename from being used. Details |
TWiki:Main.WalterMundt |
Bug Fixes of 01-Sep-2004 Release |
Developer, Sponsor |
Fix: Consistently create headings with empty anchor tags. Details |
TWiki:Main.PeterThoeny |
Fix: TOC does not work for headings containing & without spaces surrounding it. Details |
TWiki:Main.PeterThoeny |
Fix: Backslash line break breaks TWiki form definitions. Details |
TWiki:Main.CrawfordCurrie TWiki:Main.PeterThoeny |
Fix: Rename fixes unrelated topic references. Details |
TWiki:Main.RichardDonkin |
Fix: Bug with infinite recursion in search. Details |
TWiki:Main.PeterThoeny |
Fix: Can't send mail with full 'From' address. Details |
TWiki:Main.PeterThoeny |
Fix: All scripts change to $bin before execute (for mod_perl2). Details |
TWiki:Main.PeterThoeny |
Fix: Several RSS readers do not show all entries seen in the WebChanges list; repeated updates to the same topics get lost. Details |
TWiki:Main.ArthurClemens |
Fix: TWiki::Access::checkAccessPermission function improperly handles Main and TWiki webs. Details |
TWiki:Main.SvenDowideit |
Fix: Topic save returns error CI Date precedes date in revision. Details |
TWiki:Main.PeterThoeny |
Fix: Double quotes got replaced by " in TWiki forms. Details |
TWiki:Main.MichaelSparks TWiki:Main.PeterThoeny |
Fix: Duplicated Wiki name in .htpasswd entry for sha1 encoding. Details |
TWiki:Main.PeterThoeny |
Fix: When viewing a previous version of a topic, the view script substitutes only one occurrence of the variable EDITTOPIC. Details |
TWiki:Main.PeterThoeny |
Fix: Form default values are not working for text fields. Details |
TWiki:Main.ThomasWeigert TWiki:Main.SvenDowideit |
Fix: Formatted searches using a $pattern which unbalanced parenthesis crash TWiki. Details |
TWiki:Main.PeterThoeny |
Fix: Formatted Search uses title but should use name for formfield parameter. Details |
TWiki:Main.PeterThoeny |
Fix: GMTIME variable returns unwanted GMT text. Details |
TWiki:Main.SvenDowideit |
Fix: Include from other Web links ACRONYMS. Details |
TWiki:Main.PeterThoeny |
Fix: Including an HTML file is very slow. Details |
TWiki:Main.JohnTalintyre |
Fix: includeUrl() mess up absolute URLs. Details |
TWiki:Main.SvenDowideit |
Fix: Filter out fixed font rendering in TOC to avoid unrendered = equal signs in TOC. Details |
TWiki:Main.PeterThoeny |
Fix: The initializeUserHandler is broken for session Plugins. Details |
TWiki:Main.JohnTalintyre |
Fix: SEARCH fails with very large webs. Details |
TWiki:Main.PeterThoeny |
Fix: Security alert: User could gain view access rights of another user. Details |
TWiki:Main.KimCovil TWiki:Main.PeterThoeny |
Fix: 'print to closed file handle' error of log files are not writable. Details |
TWiki:Main.MartinGregory TWiki:Main.SvenDowideit |
Fix: Meta data handler can't process CR-LF line endings. Details |
TWiki:Main.PeterThoeny |
Fix: METAFIELD meta data is not shown in view raw=on mode. Details |
TWiki:Main.PeterThoeny |
Fix: Minor XHTML non-compliance in templates and code. Details |
TWiki:Main.PeterThoeny |
Fix: Getting pages from virtual hosts fails. Details |
TWiki:Main.JohnTalintyre |
Fix: Create new web fails if RCS files do not exist. Details |
TWiki:Main.ClausBrunzema TWiki:Main.SvenDowideit |
Fix: Metacharacters can be passed through to the shell in File Attach. Details |
TWiki:Main.PeterThoeny |
Fix: Ability to delete non-WikiWord topics without confirmation. Details |
TWiki:Main.PeterThoeny |
Fix: + symbol in password reset fails. Details |
TWiki:Main.PeterThoeny |
Fix: Pathinfo cleanup for hosted sites. Details |
TWiki:Main.MikeSalisbury TWiki:Main.SvenDowideit |
Fix: Software error in SEARCH if regular expression pattern has unmached parenthesis. Details |
TWiki:Main.PeterThoeny |
Fix: Pipe chars in the comment field of the attachment table are not escaped. Details |
TWiki:Main.PeterThoeny |
Fix: Link escaping in preview fails for not quoted hrefs. Details |
TWiki:Main.TedPavlic TWiki:Main.PeterThoeny |
Fix: Preview expands variables twice. Details |
TWiki:Main.PeterThoeny |
Fix: Using a proxy with TWiki fails; no proxy-HTTP request, minimal request not HTTP 1.0, requests marked 1.1 are at best 1.0. Details |
TWiki:Main.MichaelSparks TWiki:Main.JohnTalintyre |
Fix: Runaway view processes with TWiki::Sore::RcsLite. Details |
TWiki:Main.SvenDowideit |
Fix: Regex Error in WebTopicList with topics that have meta characters in the name. Details |
TWiki:Main.PeterThoeny |
Fix: Rename script misses some ref-by topics. Details |
TWiki:Main.JohnTalintyre |
Fix: Links to self within the page being renamed are not changed. Details |
TWiki:Main.SvenDowideit |
Fix: Rename topic does 'Main.Main.UserName' for attachments. Details |
TWiki:Main.PeterThoeny |
Fix: Revision date is set to Jan 1970 when using RCS Lite. Details |
TWiki:Main.SvenDowideit |
Fix: The new dynamically-created SiteMap is very nice, but somewhat slow. Details |
TWiki:Main.PeterThoeny |
Fix: The makeAnchorName function did not produce the same results if called iteratively, resulting in problems trying to link to headers.. Details |
TWiki:Main.WalterMundt |
Fix: Statistics page does not provide links to non-wikiword topics. Details |
TWiki:Main.PeterThoeny |
Fix: Make TOC link URI references relative. Details |
TWiki:Main.MartinGregory TWiki:Main.PeterThoeny |
Fix: TWiki hangs when used on Apache 2.0. Details |
TWiki:Main.SvenDowideit |
Fix: TOC incorrectly strips out links in headers. Details |
TWiki:Main.PeterThoeny |
Fix: The HTML tags that are generated by TOC do not close properly. Details |
TWiki:Main.PeterThoeny |
Fix: TOC on INCLUDEd topic ignores STOPINCLUDE. Details |
TWiki:Main.WillNorris TWiki:Main.PeterThoeny |
Fix: Quotes in tooltip message can break a TWiki form. Details |
TWiki:Main.PeterThoeny |
Fix: Better error message if the file attachment directory is not writable. Details |
TWiki:Main.CrawfordCurrie TWiki:Main.SvenDowideit |
Fix: Image size of PNG files. Details |
TWiki:Main.ArthurClemens |
Fix: The testenv script distinguishes between real user ID and effective user ID. Details |
TWiki:Main.RichardDonkin |
Fix: Variables in square bracket links dont work in form fields. Details |
TWiki:Main.SvenDowideit |
Fix: Variable with Parameters in Form Fields Disappear. Details |
TWiki:Main.PeterThoeny |
Fix: Verbatim tag should escape HTML entities. Details |
TWiki:Main.PeterThoeny |
Fix: Field names of TWiki Forms can be WikiWords, this is used to link to a help topic. Details |
TWiki:Main.PeterThoeny |
Fix: Clean up the WebRssBase INCLUDES to use VARIABLES set in TWikiPreferences. Details |
TWiki:Main.SvenDowideit |
Fix: Resolving variables in included topics. Details |
TWiki:Main.OliverKrueger TWiki:Main.SvenDowideit |
01-Feb-2003 Release (Beijing)
- 18 Jan 2003 - TWiki:Main.PeterThoeny
- Support for
/bin/view/Web.TopicName topic view URL (besides the default /bin/view/Web/TopicName URL); useful for InterwikiPlugin links like TWiki:Codev.ReadmeFirst
- 31 Dec 2002 - TWiki:Main.PeterThoeny
- Enhanced Plugin API to manipulate topic data with new functions in Func.pm:
readTopicText , saveTopicText , setTopicEditLock , checkTopicEditLock
- 31 Dec 2002 - TWiki:Main.PeterThoeny
- 29 Dec 2002 - TWiki:Main.AndreaSterbini, TWiki:Main.PeterThoeny, TWiki:Main.RichardDonkin, TWiki:Main.SvenDowideit
- New Plugin hooks
registrationHandler , beforeEditHandler , afterEditHandler , beforeSaveHandler , writeHeaderHandler , redirectCgiQueryHandler , getSessionValueHandler , setSessionValueHandler
- 30 Nov 2002 - TWiki:Main.RichardDonkin
- Internationalization ('I18N') support for international characters in WikiWords, such as ISO-8859-15, KOI8-R - also supports Chinese, Japanese, etc.
- 25 Nov 2002 - TWiki:Main.PeterThoeny
- Include previous topic revision with
%INCLUDE{ "OtherTopic" rev="1.2" }%
- 15 Nov 2002 - TWiki:Main.PeterThoeny
- The Jump box understands also URLs, useful for special TWikiSkins handling
- 08 Nov 2002 - TWiki:Main.ColasNahaboo, TWiki:Main.RichardDonkin
- In WebNotify, if only the WikiName is specified, the e-mail is taken from the user profile page; if the WikiName is a group name, a notification is sent to all members of the group
- 30 Oct 2002 - TWiki:Main.PeterThoeny
- New
%NOP{}% variable in TWikiTemplates topic gets removed at topic creation time; useful to write protect template topics
- 28 Sep 2002 - TWiki:Main.PeterThoeny
- The
%URLPARAM{}% variable in TWikiTemplates topic gets expanded at topic creation time; useful for dynamic content creation
- 28 Sep 2002 - TWiki:Main.PeterThoeny
- New
$logDir introduced in TWiki.cfg to set the log directory
- 13 Sep 2002 - TWiki:Main.PeterThoeny
- Renamed the Test web to Sandbox
- 03 Aug 2002 - TWiki:Main.RichardDonkin
- New
setlib.cfg file in the bin directory to set the TWiki library path
- 02 Aug 2002 - TWiki:Main.PeterThoeny, TWiki:Main.RyanFreebern
- Support for outbound HTTP proxy when including URLs based on new
%PROXYHOST and %PROXYPORT% settings in the TWikiPreferences
- 12 Jul 2002 - TWiki:Main.PeterThoeny
- The page logo is configurable with new
%WIKILOGOIMG% , %TWIKILOGOURL% and %WIKILOGOALT% variables in TWikiPreferences; replacing $wikiHomeUrl in TWiki.cfg
- 12 Jun 2002 - TWiki:Main.PeterThoeny
- New
%WIKITOOLNAME% variable in TWikiPreferences; replacing $wikiToolName in TWiki.cfg
- 31 May 2002 - TWiki:Main.PeterThoeny
- New
%EDITBOXSTYLE% preferences variable which sets the edit box width automatically to the window width
- 17 May 2002 - TWiki:Main.PeterThoeny
- New
%URLENCODE{}% variable to encodes a string for using in a URL parameter, e.g. %URLENCODE{"spaced name"}% returns spaced%20name
- 17 May 2002 - TWiki:Main.PeterThoeny
- 05 May 2002 - TWiki:Main.PeterThoeny
- New user profile pages are now based on the NewUserTemplate, replacing the
/twiki/templates/register.tmpl template file
- 26 Apr 2002 - TWiki:Main.PeterThoeny
- New markup to exclude heading from a
%TOC% table of content, e.g. ---+!! This heading is not shown in a TOC
- 13 Apr 2002 - TWiki:Main.PeterThoeny
- 01 Apr 2002 - TWiki:Main.JohnTalintyre
- New data storage framework that lets you use external RCS commands for revision control, or a new native Perl implementation that does not depend on the external RCS commands
- 28 Mar 2002 - TWiki:Main.RichardDonkin
- Fixed IE5/IE6-specific problem whereby going back from preview sometimes removes all edit changes
- 23 Mar 2002 - TWiki:Main.JohnTalintyre
- New AND search; with regular expression enabled, use the semicolon ";" as the AND operator in
%SEARCH{}% variable, FormattedSearch and WebSearch
- 21 Mar 2002 - TWiki:Main.ColasNahaboo, TWiki:Main.RichardDonkin
- Fixed cache issue where the edit page showed outdated content
- 06 Mar 2002 - TWiki:Main.RichardDonkin
- Improved statistics script which uses less memory to process large log files
- 09 Jan 2002 - TWiki:Main.JohnTalintyre
- Variables inside
<verbatim> tags are no longer expanded
01-Dec-2001 Release (Athens)
- 25 Oct 2001 - TWiki:Main.PeterThoeny
01-Sep-2001 Release
- 30 Aug 2001 - TWiki:Main.JohnTalintyre
- Easier install for Windows, including auto detection in
TWiki.cfg
- 30 Aug 2001 - TWiki:Main.JohnTalintyre
- 21 Aug 2001 - TWiki:Main.PeterThoeny
- Convert to XHTML 1.0 function: first step to XHTML-ifying TWiki
- 26 Jun 2001 - TWiki:Main.JohnTalintyre
- 07 Jun 2001 - TWiki:Main.PeterThoeny
- New topic templates as topics instead of templates. Customize by editing the topic. Retired
notedited.tmpl , notext.tmpl and notwiki.tmpl templates. More in TWikiTemplates.
- 07 Jun 2001 - TWiki:Main.PeterThoeny
- New
%TOPICLIST{"format"}% and %WEBLIST{"format"}% variables to get a formatted topic index and web index, respectively. More in TWikiVariables.
- 01 Jun 2001 - TWiki:Main.PeterThoeny
- New
%URLPARAM{"name"}% variable to query URL parameters. More in TWikiVariables.
- 01 Jun 2001 - TWiki:Main.AndreaSterbini
- 01 Jun 2001 - TWiki:Main.KlausWriessnegger, TWiki:Main.AndreaSterbini
- 01 May 2001 - TWiki:Main.AndreaSterbini
- 01 May 2001 - TWiki:Main.JohnTalintyre
- 01 May 2001 - TWiki:Main.JohnTalintyre
- 01 May 2001 - TWiki:Main.JohnTalintyre
- 27 Mar 2001 - TWiki:Main.PeterThoeny
- The table syntax has been enhanced to (i) render
| *bold* | cells as table headers, (ii) render space padded cells | center aligned | and | right aligned | , (iii) span multiple columns using | empty cells ||| . More in TextFormattingRules.
- 25 Mar 2001 - TWiki:Main.PeterThoeny
- Security fix Questionable files like PHP scripts (executables) and
.htaccess files that are attached to a topic get a .txt suffix appended to the file name. See also TWiki:Codev/FileAttachmentFilterSecurityAlert
- 28 Feb 2001 - TWiki:Main.AndreaSterbini, TWiki:Main.PeterThoeny
- New Wiki rule for headings, i.e.
---++ My Title ; and new %TOC% variable to build a table of content from headings in a topic. More in TWikiVariables.
- 28 Feb 2001 - TWiki:Main.PeterThoeny
- New Wiki rule to specify arbitrary text for external links (i.e.
[[http://TWki.org][TWiki]] ) and internal links (i.e [[WikiSyntax][syntax]] ). More in TWikiVariables.
- 28 Feb 2001 - TWiki:Main.PeterThoeny
- New Wiki rule for named anchors, e.g. links within a topic. Define a named anchor with
#MyAnchor at the beginning of a line, and link to it with [[#MyAnchor]] . More in TWikiVariables.
- 25 Feb 2001 - TWiki:Main.NicholasLee, TWiki:Main.PeterThoeny
- Use
Net::SMTP module instead of sendmail if installed.
- 01 Feb 2001 - TWiki:Main.PeterThoeny
- Added
<verbatim> ... </verbatim> tags to show source code "as is". Unlike the <pre> ... </pre> tags, it also shows < , > , & characters "as is".
- 01 Feb 2001 - TWiki:Main.PeterThoeny
- Fixed TWiki:Codev/CreateLinkToAttachedFileBug.
- 21 Jan 2001 - TWiki:Main.PeterThoeny
- Added a "Minor change, don't notify" checkbox in preview. More in DontNotify.
- 21 Jan 2001 - TWiki:Main.PeterThoeny
- Added Bold Fixed formatting using double-equal signs, e.g. write
==Bold Fixed== to get Bold Fixed .
- 20 Jan 2001 - TWiki:Main.PeterThoeny
- Format changed of
%GMTIME{"..."}% and %SERVERTIME{"..."}% variables. Format is now "$hour:$min" instead of "hour:min" . More in TWikiVariables. Attention: Check your existing topics when you upgrade TWiki!
- 18 Jan 2001 - TWiki:Main.PeterThoeny
- WebChanges, WebSearch and e-mail notification indicate also the revision number of a topic (i.e. 18 Jan 2001 16:43 r1.5), or NEW for a new topic (i.e. i.e. 18 Jan 2001 16:43 NEW).
- 16 Jan 2001 - TWiki:Main.PeterThoeny
- New variable
%STARTINCLUDE% and %STOPINCLUDE% variables to control what gets included of a topic. More in TWikiVariables.
- 16 Jan 2001 - TWiki:Main.PeterThoeny
- TWiki skins Define a different page layout with a customized header and footer layout, i.e. a
print skin for a printable view of a topic. More in TWikiSkins and TWiki:Codev/TWikiSkins.
- 07 Jan 2001 - TWiki:Main.StanleyKnutson
- Better error handling when saving a topic.
- 05 Jan 2001 - TWiki:Main.PeterThoeny
- View authorization based on groups. Define who is allowed to see a TWiki web. More in TWikiAccessControl and TWiki:Codev/AuthenticationBasedOnGroups.
- 05 Dec 2000 - TWiki:Main.PeterThoeny
- Improved include handling. Infinite recursion of includes are prevented; new variables
%BASEWEB% , %INCLUDINGWEB% , %BASETOPIC% and %INCLUDINGTOPIC% to have more control over include handling. More in TWikiVariables and TWiki:Codev/IncludeHandlingImprovements.
- 03 Dec 2000 - TWiki:Main.PeterThoeny
- New
noheader="on" switch in %SEARCH{...}% to suppress table header. More in TWikiVariables.
01-Dec-2000 Release
- 03 Nov 2000 - TWiki:Main.PeterThoeny
- Flag
$doHidePasswdInRegistration in wikicfg.pm to hide plain text password in registration e-mail.
- 01 Nov 2000 - TWiki:Main.PeterThoeny
- New variable
%VAR{"NAME" web="Web"}% to get web-specific preferences. More in TWikiVariables.
- 01 Nov 2000 - TWiki:Main.PeterThoeny
- Added a "Cancel" link in edit that releases the edit lock.
- 23 Oct 2000 - TWiki:Main.PeterThoeny
- Authorization based on groups. Define fine graned control who is allowed to change or create topics. More in TWikiAccessControl and TWiki:Codev/AuthenticationBasedOnGroups.
- 05 Oct 2000 - TWiki:Main.PeterThoeny
- Remember user by IP address so that
view "knows" the user once authenticated in edit . More in TWikiUserAuthentication.
- 26 Sep 2000 - TWiki:Main.AlWilliams, TWiki:Main.PeterThoeny
- Fixed TWiki:Codev/UppercaseAttachments bug and added
png image support.
- 26 Sep 2000 - TWiki:Main.HaroldGottschalk, TWiki:Main.AndreaSterbini, TWiki:Main.PeterThoeny
- Allow nesting of variables, i.e.
%INCLUDE{"%SYSTEMWEB%.SiteMap"}% . More in TWiki:Codev/BetterTWikiTagTemplateProcessing.
- 20 Sep 2000 - TWiki:Main.ManpreetSingh
- New -q switch in
mailnotify to suppress all normal output.
- 19 Sep 2000 - TWiki:Main.PeterThoeny
- Fixed TWiki:Codev/AttachedNotificationLinksBug.
- 18 Sep 2000 - TWiki:Main.ManpreetSingh, TWiki:Main.PeterThoeny
- 19 Aug 2000 - TWiki:Main.PeterThoeny
- Ref-By link searches all webs (not just the current web.)
- 16 Aug 2000 - TWiki:Main.PeterThoeny
- New TWikiPreferences variables
%HTTP_EQUIV_ON_VIEW% , %HTTP_EQUIV_ON_EDIT% and %HTTP_EQUIV_ON_PREVIEW% that define the <meta http-equiv="..."> meta tags for the TWiki templates. This can be used for example to set a document expiration time.
- 29 Jul 2000 - TWiki:Main.PeterThoeny
- New variables
%GMTIME{"..."}% and %SERVERTIME{"..."}% . More in TWikiVariables.
- 23 Jul 2000 - TWiki:Main.PeterThoeny
- Changed include syntax from
%INCLUDE{"Web/TopicName.txt"}% to %INCLUDE{"Web.TopicName"}% . Legacy syntax still supported.
- 23 Jul 2000 - TWiki:Main.PeterThoeny
- BookView search allows you show a set of topics for easy printing.
- 22 Jul 2000 - TWiki:Main.PeterThoeny
- More forgiving syntax for
*bold*, italic, __bold italic__ and fixed , where it is not necessary anymore to have a trailing space before .,;:?! characters.
- 22 Jul 2000 - TWiki:Main.PeterThoeny
- Split the TWiki.Main web into TWiki.Main (users, company data) and TWiki.TWiki (TWiki related documentation, registration)
- 07 Jul 2000 - TWiki:Main.PeterThoeny
- Added an "Release edit lock" checkbox in preview to let other people edit the topic immediately without the one hour lock.
- 07 Jul 2000 - TWiki:Main.PeterThoeny
- Fixed problem of losing carriage returns when editing topics with KDE KFM browser or W3M browser.
- 21 Jun 2000 - TWiki:Main.PeterThoeny
- Fixed problem that a page redirect on some server environments is not working (host name is needed in URL).
- 21 Jun 2000 - TWiki:Main.CrisBailiff, TWiki:Main.PeterThoeny
- Fixed security issue to prevent a server side
%INCLUDE% of arbitrary files.
- 29 May 2000 - TWiki:Main.PeterThoeny
- New
%GMTIME% variable that shows the current GM time.
- 28 May 2000 - TWiki:Main.PeterThoeny
- Lock warning shows remaining lock time in minutes.
- 15 May 2000 - TWiki:Main.PeterFokkinga
- 02 May 2000 - TWiki:Main.KevinKinnell, TWiki:Main.PeterThoeny
- Advanced search features like search multiple webs; sort by topic name / modified time / author; limit the number of results returned. More in TWikiVariables.
01-May-2000 Release
- 21 Apr 2000 - TWiki:Main.PeterThoeny
- New TWikiVariables
%HTTP_HOST% , %REMOTE_ADDR% , %REMOTE_PORT% and %REMOTE_USER% .
- 21 Apr 2000 - TWiki:Main.JohnAltstadt, TWiki:Main.PeterThoeny
- TWikiRegistration is done separately for Intranet use (depends on remote_user) or Internet use (depends on .htpasswd file).
- 20 Mar 2000 - TWiki:Main.PeterThoeny
- Uploading a file (topic file attachment) will optionally create a link to the uploaded file at the end of the topic. The preference variable
%ATTACHLINKBOX% controls the default state of the link check box in the attach file page.
- 11 Mar 2000 - TWiki:Main.PeterThoeny
- Better security with taint checking (
Perl -T option )
- 25 Feb 2000 - TWiki:Main.PeterThoeny
- New preference variables
%EDITBOXWIDTH% and %EDITBOXHEIGHT% to specify the edit box size.
- 25 Feb 2000 - TWiki:Main.PeterThoeny
- Edit preferences topics to set TWiki variables. There are three level of preferences Site-level (TWikiPreferences), web-level (WebPreferences in each web) and user-level preferences (for each of the TWikiUsers). With this, discontinue use of server side include of
wikiwebs.inc , wikiwebtable.inc , weblist.inc , webcopyright.inc and webcolors.inc files.
- 11 Feb 2000 - TWiki:Main.PeterThoeny
- New variable
%SCRIPTSUFFIX% / $scriptSuffix containing an optional file extension of the TWiki Perl script. Templates have been changed to use this variable. This allows you to rename the Perl script files to have a file extension like for example ".cgi".
- 11 Feb 2000 - TWiki:Main.PeterThoeny
- New variable
%SCRIPTURLPATH% / $scriptUrlPath containing the script URL without the domain name. Templates have been changed to use this variable instead of %SCRIPTURL% . This is for performance reasons.
- 07 Feb 2000 - TWiki:Main.PeterThoeny
- Changed the syntax for server side include variable from
%INCLUDE:"filename.ext"% to %INCLUDE{"filename.ext"}% . (Previous syntax still supported. Change was done because of inline search syntax)
- 07 Feb 2000 - TWiki:Main.PeterThoeny
- Inline search. New variable
%SEARCH{"str" ...}% to show a search result embedded in a topic text. TWikiVariables has more on the syntax. Inline search combined with the category table feature can be used for example to create a simple bug tracking system.
- 04 Feb 2000 - TWiki:Main.PeterThoeny
- Access statistics. Each web has a WebStatistics topic that shows monthy statistics with number of topic views and changes, most popular topics, and top contributors. (It needs to be enabled, TWikiDocumentation has more.)
- 29 Jan 2000 - TWiki:Main.PeterThoeny
- Fixed bug where TWiki would not initialize correctly under certain circumstances, i.e. when running it under mod_perl. Sub
initialize in wiki.pm did not handle $thePathInfo correctly.
- 24 Jan 2000 - TWiki:Main.PeterThoeny
- 10 Jan 2000 - TWiki:Main.PeterThoeny
- No more escaping for '%' percent characters. (Number of consecutive '%' entered and displayed is identical.)
- 03 Oct 1999 - TWiki:Main.PeterThoeny
- Limit the number of revisions shown at the bottom of the topic. Example
Topic TWikiHistory . { ..... Diffs r1.10 > r1.9 > r1.8 > r1.7 >... } Additional revisions can be selected by pressing the >... link.
01-Sep-1999 Release
- 31 Aug 1999 - TWiki:Main.PeterThoeny
- Fixed Y2K bug. (Date in year 2000 had wrong format.)
- 08 Aug 1999 - TWiki:Main.PeterThoeny
- New text formatting rule for creating tables. Text gets rendered as a table if enclosed in " " vertical bars. Example line as it is written and how it shows up
- 03 Aug 1999 - TWiki:Main.PeterThoeny
- Online registration of new user using web form in TWikiRegistration. Authentication of users.
- 22 Jul 1999 - TWiki:Main.PeterThoeny
- Flags
$doLogTopic* in wikicfg.pm to selectively log topic view, edit, save, rdiff, attach, search and changes to monthly log file.
- 21 Jul 1999 - TWiki:Main.PeterThoeny
- Flag
$doRemovePortNumber in wikicfg.pm to optionally remove the port number from the TWiki URL. Example www.some.domain:1234/twiki gets www.some.domain/twiki .
- 15 Jul 1999 - TWiki:Main.PeterThoeny
- Search path for include files in
%INCLUDE:"file.inc"% variable. Search first in the current web, then in parent data directory. Useful to overload default include text in the data directory by web-specific text, like for example webcopyright.inc text.
- 07 Jul 1999 - TWiki:Main.ChristopheVermeulen
- Link a plural topic to a singular topic in case the plural topic does not exist. Example
TestVersion / TestVersions , TestPolicy / TestPolicies , TestAddress / TestAddresses , TestBox / TestBoxes .
01-Jul-1999 Release
- 23 Jun 1999 - TWiki:Main.PeterThoeny
- New TextFormattingRules to write bold italic text by enclosing words with double underline characters.
- 23 Jun 1999 - TWiki:Main.PeterThoeny
- Separate wiki.pm into configuration (wikicfg.pm) and TWiki core (wiki.pm) . This is to ease the upgrade of TWiki installations, it also allows customized extensions to TWiki without affecting the TWiki core.
- 21 May 1999 - TWiki:Main.DavidWarman
- Externalize copyright text at the bottom of every page into a web-specific
webcopyright.inc file. This is to easily customize the copyright text.
- 20 May 1999 - TWiki:Main.PeterThoeny
- Added meta tag so that robots index only /view/ of topics, not /edit/, /attach/ e.t.c. Tag <META NAME="ROBOTS" CONTENT="NOINDEX">
- 20 May 1999 - TWiki:Main.PeterThoeny
- New variables
%WIKIHOMEURL% (link when pressing the icon on the upper left corner) and %WIKITOOLNAME% (the name of the wiki tool TWiki ).
- 15 Apr 1999 - TWiki:Main.PeterThoeny
- Topic locking Warn user if a topic has been edited by an other person within one hour. This is to prevent contention, e.g. simultaneous topic updates.
- 26 Mar 1999 - TWiki:Main.PeterThoeny
- File attachments Upload and download any file as a topic attachment by using the browser. FileAttachment has more.
- 26 Mar 1999 - TWiki:Main.PeterThoeny
- New variables
%PUBURL% (Public directory URL) and %ATTACHURL% (URL of topic file attachment).
- 09 Feb 1999 - TWiki:Main.PeterThoeny
- New text formatting rule for creating
fixed font text . Words get showns in fixed font by enclosing them in "=" equal signs. Example Writing =fixed font= will show up as fixed font .
- 09 Feb 1999 - TWiki:Main.PeterThoeny
- No new topic revision is created if the same person saves a topic again within one hour.
- 03 Feb 1999 - TWiki:Main.PeterThoeny
- Possible to view complete revision history of a topic on one page. Access at the linked date in the Changes page, or the
Diffs link at the bottom of each topic, e.g. Topic TWikiHistory . { Edit Ref-By Diffs r1.3 > r1.2 > r1.1 } Revision r1.3 1998/11/10 01:34 by PeterThoeny
- 04 Jan 1999 - TWiki:Main.PeterThoeny
- Fixed bug when viewing differences between topic revisions that include HTML table tags like <table>, <tr>, <td>.
1998 Releases
- 08 Dec 1998 - TWiki:Main.PeterThoeny
- Signature is shown below the text area when editing a topic. Use this to easily copy & paste your signature into the text.
- 07 Dec 1998 - TWiki:Main.PeterThoeny
- Possible to add a category table to a TWiki topic. This permits storing and searching for more structured information. Editing a topic shows a HTML form with the usual text area and a table with selectors, checkboxes, radio buttons and text fields. TWikiDocumentation has more on setup. The TWiki.Know web uses this category table to set classification, platform and OS version.
- 18 Nov 1998 - TWiki:Main.PeterThoeny
- Internal log of topic save actions to the file
data/logYYYYMM.txt , where YYYYMM the year and month in numeric format is. Intended for auditing only, not accessible from the web.
- 10 Nov 1998 - TWiki:Main.PeterThoeny
- The e-mail notification and the Changes topic have now a topic date that is linked. Clicking on the link will show the difference between the two most recent topic revisions.
- 10 Nov 1998 - TWiki:Main.PeterThoeny
- View differences between topic revisions. Each topic has a list of revisions (e.g.
r1.3 ) and differences thereof (e.g. > ) at the bottom Topic TWikiHistory . { Edit Ref-By r1.3 > r1.2 > r1.1 } Revision r1.3 1998/11/10 01:34 by TWiki:Main.PeterThoeny
- 26 Oct 1998 - TWiki:Main.PeterThoeny
- Added preview of topic changes before saving the topic. This was necessary to prevent unneeded revisions.
- 26 Oct 1998 - TWiki:Main.PeterThoeny
- Added revision control using RCS. Each topic has now a list of revisions at the bottom and a revision info, e.g.
Topic TWikiHistory . { Edit Ref-By r1.3 r1.2 r1.1 } Revision r1.3 1998/10/26 01:34:00 by TWiki:Main.PeterThoeny
- 14 Oct 1998 - TWiki:Main.PeterThoeny
- Refered-By Find out which topics have a link to the current topic. Each topic has a Ref-By link for that. Note Only references from the current web are shown, not references from other webs.
- 13 Oct 1998 - TWiki:Main.PeterThoeny
- 24 Sep 1998 - TWiki:Main.PeterThoeny
- Corrected templates for automatic e-mail notification so that MS Outlook can display attachment as an HTML file.
- 13 Aug 1998 - TWiki:Main.PeterThoeny
- 07 Aug 1998 - TWiki:Main.PeterThoeny
- Automatic e-mail notification when something has changed in a TWiki web. Each web has a topic WebNotify where one can subscribe and unsubscribe.
- 06 Aug 1998 - TWiki:Main.PeterThoeny
- Added server side include of files. Syntax is
%INCLUDE:"filename.ext"%
- 05 Aug 1998 - TWiki:Main.PeterThoeny
- Signature and date is inserted automatically when creating a new topic.
- 04 Aug 1998 - TWiki:Main.PeterThoeny
- Separate templates for text of non existing topic and default text of new topic. (template file templates/Web/notedited.tmpl)
- 04 Aug 1998 - TWiki:Main.PeterThoeny
- Warn user if new topic name is not a valid Wiki name. (template file templates/Web/notwiki.tmpl)
- 31 Jul 1998 - TWiki:Main.PeterThoeny
- Support for quoted text with a '>' at the beginning of the line.
- 28 Jul 1998 - TWiki:Main.PeterThoeny
- Added TWiki variables, enclosed in % signs
%TOPIC% (Topic name), %WEB% (web name), %SCRIPTURL% (script URL), %DATE% (current date), %WIKIWEBMASTER% (Wiki webmaster address), %WIKIVERSION% (Wiki version), %USERNAME% (user name), %WIKIUSERNAME% (Wiki user name).
- 28 Jul 1998 - TWiki:Main.PeterThoeny
- Topic WebChanges shows Wiki username instead of Intranet username, e.g.
PeterThoeny instead of thoeny in case the Wiki username exists. Implementation Automatic lookup of Wiki username in topic TWikiUsers.
- 28 Jul 1998 - TWiki:Main.PeterThoeny
- Topic index. (Technically speaking a simple '.*' search on topic names.)
- 28 Jul 1998 - TWiki:Main.PeterThoeny
- Topic WebSearch allows full text search and and topic search with/without regular expressions.
- 27 Jul 1998 - TWiki:Main.PeterThoeny
- Added automatic links to topics in other TWiki webs by specifying <web name>.<topic name>, e.g.
Know.WebSeach .
- 23 Jul 1998 - TWiki:Main.PeterThoeny
- Installed initial version, based on the JOS Wiki.
Dev Flow
The typical TWiki development flow...
- TWiki:Codev.FeatureBrainstorming: open forum for new ideas
- TWiki:Codev.FeatureEnhancementRequest: specific detailed request
- TWiki:Codev.FeatureToDo: prioritized to up-next dev status
- TWiki:Codev.FeatureUnderConstruction: currently in development
- TWiki:Codev.FeatureDone: completed and implemented
- TWiki:Codev.DocRequest: request for documentation
- TWiki:Codev.DocsToDo: feature documentation pending
- TWiki:Codev.FeatureDocumented: documented feature
- TWikiDocumentation: reference manual for the latest TWiki
Related Topics: DeveloperDocumentationCategory |