
| ||||||||
| Deleted: | ||||||||
| < < | new topic for the final docSlightly edited down, but waiting for new docs, hopefully. see also for ref: orig TWikiTemplatingSystem | |||||||
| Deleted: | ||||||||
| < < | ||||||||
TWiki Template System | ||||||||
| Changed: | ||||||||
| < < | Define the templates used to render all HTML pages displayed in TWiki | |||||||
| > > | Definition of the templates used to render all HTML pages displayed in TWiki | |||||||
| Changed: | ||||||||
| < < | Overview | |||||||
| > > | Overview | |||||||
| Changed: | ||||||||
| < < | We have a need for more advanced template handling. As JohnTalintyre pointed out in CommonHeaderFooterTemplate it makes sense to separate the header and footer into one file so that it can be easily altered (or even overloaded by a skin). Also the oops dialog messages are all identical except for a few variables like heading, and so on. | |||||||
| > > | The new modular template system is more flexible, efficient, and easily updated than the old set-up, where each template is a complete HTML file. The new master template approach places common templates parts, like headers and footers, in one shared file. This simplifies the conversion of templates into XHTML format, and provides a more versatile solution for templates and for skins. | |||||||
| Changed: | ||||||||
| < < | Using external modules like the TemplateToolkit would be one way to go, but this will add a lot of baggage to TWiki. | |||||||
| > > | Major changes from the previous template system | |||||||
| Changed: | ||||||||
| < < | Needs of the TWiki templating system | |||||||
| > > | The main difference is that templates are now defined using variables to include template parts. You change one stored instance of a common element to update all occurrences. The new system: | |||||||
| Changed: | ||||||||
| < < |
| |||||||
| > > |
| |||||||
| Added: | ||||||||
| > > |
| |||||||
| Changed: | ||||||||
| < < | Functional Spec | |||||||
| > > | Functional Specifications | |||||||
| Deleted: | ||||||||
| < < | I tried to define a simple but powerful solution that can be extended over time. Here we go: | |||||||
| ||||||||
| Changed: | ||||||||
| < < |
| |||||||
| > > |
| |||||||
| ||||||||
| Changed: | ||||||||
| < < |
| |||||||
| > > |
| |||||||
| Added: | ||||||||
| > > | New Template System by Example | |||||||
| Changed: | ||||||||
| < < | Examples | |||||||
| > > | Attached is an example of an oops base template oopsbase.tmpl and a example oops dialog oopstest.tmpl which is based on the base template. NOTE: This isn't the release version, just a quick, simple demo. | |||||||
| Changed: | ||||||||
| < < | Attached is an example of an oops base template oopsbase.tmpl and a example oops dialog oopstest.tmpl which is based on the base template. This is not the version that will go into the release, it is just a quick hack. | |||||||
| > > | Base template oopsbase.tmpl | |||||||
| Deleted: | ||||||||
| < < | Base template oopsbase.tmpl | |||||||
The first line declares the delimiter variable called "sep", used to separate multiple link items. The variable can be called anywhere by writing %TMPL:P{"sep"}% | ||||||||
| Changed: | ||||||||
| < < | Note: Added a dot to escape rendering of variables, i.e. read %.WEB% as %WEB%. | |||||||
| > > | NOTE: Added a dot to escape rendering of variables, i.e. read %.WEB% as %WEB%. | |||||||
| Added: | ||||||||
| > > | ||||||||
<table border="1" cellspacing="0" cellpadding="1">
<tr><td>
<verbatim>
%.TMPL:DEF{"sep"}% | %.TMPL:END%
<html>
<head>
<title> %.WIKITOOLNAME% . %.WEB% . %.TOPIC% %.TMPL:P{"titleaction"}%</title>
<base href="%.SCRIPTURL%/view%.SCRIPTSUFFIX%/%.WEB%/%.TOPIC%">
<meta name="robots" content="noindex">
</head>
<body bgcolor="#FFFFFF">
<table width="100%" border="0" cellpadding="3" cellspacing="0">
<tr>
<td bgcolor="%.WEBBGCOLOR%" rowspan="2" valign="top" width="1%">
<a href="%.WIKIHOMEURL%">
<img src="%.PUBURLPATH%/wikiHome.gif" border="0"></a>
</td>
<td>
<b>%.WIKITOOLNAME% . %.WEB% . </b><font size="+2">
<B>%.TOPIC%</b> %.TMPL:P{"titleaction"}%</font>
</td>
</tr>
<tr bgcolor="%.WEBBGCOLOR%">
<td colspan="2">
%.TMPL:P{"webaction"}%
</td>
</tr>
</table>
--- ++ %.TMPL:P{"heading"}%
%.TMPL:P{"message"}%
<table width="100%" border="0" cellpadding="3" cellspacing="0">
<tr bgcolor="%.WEBBGCOLOR%">
<td valign="top">
Topic <b>TWikiTemplates</b> . {
%.TMPL:P{"topicaction"}%
}
</td>
</tr>
</table>
</body>
</verbatim>
</td></tr>
</table >
| ||||||||
| Added: | ||||||||
| > > | ||||||||
| Changed: | ||||||||
| < < | Test template oopstest.tmpl | |||||||
| > > | Test template oopstest.tmpl | |||||||
| Each oops template basically just defines some variables and includes the base template that does the layout work. | ||||||||
| Added: | ||||||||
| > > | ||||||||
| ||||||||
| Added: | ||||||||
| > > | ||||||||
| Changed: | ||||||||
| < < | Sample screen shot of oopstest.tmpl | |||||||
| > > | Sample screen shot of oopstest.tmpl | |||||||
With URL: .../bin/oops/Test/TestTopic2?template=oopstest¶m1=WebHome¶m2=WebNotify | ||||||||
| Added: | ||||||||
| > > | ||||||||
| ||||||||
| Added: | ||||||||
| > > | ||||||||
| Changed: | ||||||||
| < < | Comments and feedback | |||||||
| > > | All common template parts are defined in one master template, twiki.tmpl, that all other templates include. | |||||||
| Deleted: | ||||||||
| < < |
twiki.tmpl that all other templates include (well, will include when all done). The idea is to define all common parts of the templates in twiki.tmpl and simply use that from all other templates. | |||||||
| ||||||||
| Changed: | ||||||||
| < < |
| |||||||
| > > |
| |||||||
| ||||||||
| Changed: | ||||||||
| < < |
| |||||||
| > > |
| |||||||
| ||||||||
| Changed: | ||||||||
| < < | I.e. the preview.tmpl template is now simply: | |||||||
| > > | ||||||||
| Added: | ||||||||
| > > | Example: preview.tmpl template | |||||||
%TMPL:INCLUDE{"twiki"}%
%TMPL:DEF{"titleaction"}% (oops) %TMPL:END%
%TMPL:DEF{"webaction"}% *Attention* %TMPL:END%
%TMPL:DEF{"heading"}% Topic is not saved yet %TMPL:END%
| ||||||||
| Changed: | ||||||||
| < < | %TMPL:DEF{"message"}% Please go back in your browser and save the topic. %TMPL:END% %TMPL:DEF{"topicaction"}% %TMPL:END% | |||||||
| > > | %TMPL:DEF{"message"}% Please go back in your browser and save the topic. %TMPL:END% %TMPL:DEF{"topicaction"}% %TMPL:END% | |||||||
| %TMPL:P{"oops"}% | ||||||||
| Added: | ||||||||
| > > | ||||||||
| Changed: | ||||||||
| < < | With this it should be possible to create a skin that overloads just the twiki.tmpl, i.e. a twiki.print.tmpl that redefines the header and footer. | |||||||
| > > | Known Issues | |||||||
| Added: | ||||||||
| > > |
| |||||||
| -- PeterThoeny - 23 Jul 2001 -- MikeMannix - 30 Aug 2001 | ||||||||
| Deleted: | ||||||||
| < < | ||||||||
| ||||||||