TWiki TemplatesDefinition of the templates used to render all HTML pages displayed in TWiki
On this page:
OverviewTemplates 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 TemplatesTWiki 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 How Template Directives Work
TMPL:P also supports simple parameters. For example, given the definition
Note that parameters can simply be ignored; for example, 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, %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,
You can save templates in other directories as long as they are listed in the
You can also save templates in user topics (IF there is no possible template match in the
Templates that are included with an explicit
The out-of-the-box setting of
For example, the
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 respectively. The template search order is as specified above.
TMPL:INCLUDE recursion for piecewise customisation, or mixing in new features
If there is recursion in the TMPL:INCLUDE chain (eg twiki.classic.tmpl contains %TMPL:INCLUDE{"view"}% %TMPL:DEF{"breadcrumb"}% We don't want any crumbs %TMPL:END%and then set SKIN=yourlocal,pattern
The default
Default master template
Template TopicsThe 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:
When you create a new topic using the
Variable ExpansionTWikiVariables located in template topics get expanded as follows when a new topic is created. 1. Default variable expansionThe following variables used in a template topic automatically get expanded when new topic is created based on it:
2. Preventing variable expansion
In a template topic, embed text that you do not want expanded inside a %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.
3. Control over variable expansion
You can forcefully expand TWikiVariables by placing them inside a %STARTSECTION{ type="expandvariables" }% ... %ENDSECTION{ type="expandvariables" }% Example: If you have the following content in a template topic: %STARTSECTION{ type="expandvariables" }% | |||||||||||||||||||||||||||||||||||||||||||||||
Changed: | |||||||||||||||||||||||||||||||||||||||||||||||
< < |
| ||||||||||||||||||||||||||||||||||||||||||||||
> > |
| ||||||||||||||||||||||||||||||||||||||||||||||
you will get this raw text in new topics based on that template topic:
| |||||||||||||||||||||||||||||||||||||||||||||||
Changed: | |||||||||||||||||||||||||||||||||||||||||||||||
< < |
| ||||||||||||||||||||||||||||||||||||||||||||||
> > |
| ||||||||||||||||||||||||||||||||||||||||||||||
Specifying a FormWhen 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
See TWikiScripts for information about all the other parameters to Automatically Generated Topic Names
For TWiki applications it is useful to be able to automatically generate unique topicnames, such as BugID0001, BugID0002, etc. You can add Examples:
Example link to create a new topic: [[%SCRIPTURLPATH{edit}%/%WEB%/BugIDAUTOINC00001?templatetopic=BugTemplate;topicparent=%TOPIC%;t=%SERVERTIME{"$day$hour$min$sec"}%][Create new item]]
Template Topics in ActionHere 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
<form name="new" action="%SCRIPTURLPATH{edit}%/Sandbox/"> * New example topic: <input type="text" name="topic" value="ExampleTopicAUTOINC0001" size="30" /> <input type="hidden" name="templatetopic" value="ExampleTopicTemplate" /> <input type="hidden" name="topicparent" value="%TOPIC%" /> <input type="hidden" name="onlywikiname" value="on" /> <input type="hidden" name="onlynewtopic" value="on" /> <input type="submit" class="twikiSubmit" value="Create" /> </form>
<form name="new" action="%SCRIPTURLPATH{save}%/Sandbox/" method="post"> ... </form>
Using Absolute vs Relative URLs in TemplatesWhen 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
-- Contributors: TWiki:Main.PeterThoeny |