<<O>> Difference Topic TWikiTemplates (r1.18 - 01 Feb 2003 - PeterThoeny) |
Added: | |||||||||||||
> > |
Edit Template Topics and Variable ExpansionThe following variables get expanded when a user creates a new topic based on a template topic:Notes:
| ||||||||||||
Changed: | |||||||||||||
< < |
-- PeterThoeny - 23 Jul 2001 | ||||||||||||
> > |
-- PeterThoeny - 01 Feb 2003 |
<<O>> Difference Topic TWikiTemplates (r1.17 - 08 Jan 2003 - PeterThoeny) |
Changed: | |
< < | |
> > | |
Changed: | |
< < | <form name="new" action="%SCRIPTURLPATH%/edit%SCRIPTSUFFIX%/%URLENCODE{"%WEB%"}%/"> |
> > | <form name="new" action="%SCRIPTURLPATH%/edit%SCRIPTSUFFIX%/%INTURLENCODE{"%WEB%"}%/"> |
<<O>> Difference Topic TWikiTemplates (r1.16 - 05 Jan 2003 - PeterThoeny) |
Changed: | |
< < | |
> > | |
Changed: | |
< < | <form name="new" action="%SCRIPTURLPATH%/edit%SCRIPTSUFFIX%/%WEBURLENCODED%/"> |
> > | <form name="new" action="%SCRIPTURLPATH%/edit%SCRIPTSUFFIX%/%URLENCODE{"%WEB%"}%/"> |
<<O>> Difference Topic TWikiTemplates (r1.15 - 05 Jan 2003 - PeterThoeny) |
Changed: | |
< < | |
> > | |
Changed: | |
< < | <form name="new" action="%SCRIPTURLPATH%/edit%SCRIPTSUFFIX%/%WEB%/"> |
> > | <form name="new" action="%SCRIPTURLPATH%/edit%SCRIPTSUFFIX%/%WEBURLENCODED%/"> |
<<O>> Difference Topic TWikiTemplates (r1.14 - 04 Jan 2003 - PeterThoeny) |
Added: | |
> > |
<<O>> Difference Topic TWikiTemplates (r1.13 - 20 Dec 2002 - PeterThoeny) |
Changed: | |||||
< < | The new modular template system offers flexible, easy control over the layout of all TWiki pages. The master template approach groups parts that are shared by several templates - like headers and footers - in a common file. Special variables allow individual layouts to include parts from a master template - variables are mixed with regular HTML mark-up for template-specific content. Templates are used to define page layout, and also to supplydefault content for new pages. | ||||
> > | The new modular template system offers flexible, easy control over the layout of all TWiki pages. The master template approach groups parts that are shared by several templates - like headers and footers - in a common file. Special variables allow individual layouts to include parts from a master template - variables are mixed with regular HTML markup for template-specific content. Templates are used to define page layout, and also to supply default content for new pages. | ||||
Changed: | |||||
< < |
Functional Specifications | ||||
> > |
How Template Variables Work | ||||
Deleted: | |||||
< < |
| ||||
Changed: | |||||
< < |
| ||||
> > |
| ||||
Changed: | |||||
< < |
| ||||
> > |
| ||||
Changed: | |||||
< < |
TWiki Master Template | ||||
> > |
Types of TemplateThere are three types of template:
Master Templates | ||||
Changed: | |||||
< < |
All common parts are defined in a master template, twiki.tmpl , that all other templates use.
| ||||
> > |
Common parts, appearing in two or more templates, can be defined in a master template and then shared by others: twiki.tmpl is the default master template.
| ||||
Changed: | |||||
< < |
| ||||
> > |
| ||||
Deleted: | |||||
< < |
Types of TemplateThere are two types of templates:
| ||||
Changed: | |||||
< < | TWiki uses HTML template files for all actions like topic view, edit, preview and so on. This allows you to change the look and feel of all pages by editing just some template files. | ||||
> > | TWiki uses HTML template files for 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. | ||||
Changed: | |||||
< < |
The template files are in the twiki/templates directory. As an example, twiki/templates/view.tmpl is the template file for the twiki/bin/view script. Templates can be overloaded per web. The following search order applies:
| ||||
> > |
Templates are in the twiki/templates directory. As an example, twiki/templates/view.tmpl is the template file for the twiki/bin/view script. Templates can be overloaded by individual webs. The following search order applies:
| ||||
Added: | |||||
> > |
| ||||
Changed: | |||||
< < |
Note: $webName is the name of the web (ex: Main ), and $scriptName is the script (ex: view ).
Note: TWikiSkins can be defined to overload the standard templates.
| ||||
> > | NOTE: TWikiSkins can be defined to overload the standard templates. | ||||
Changed: | |||||
< < | Template topics define the default text for new topics. There are three types of template topics: | ||||
> > | Template topics define the default text for new topics. There are three types of template topic: | ||||
Changed: | |||||
< < |
| ||||
> > |
| ||||
Changed: | |||||
< < | All template topics are located in the TWiki web. The WebTopicEditTemplate can be overloaded. The following search order applies when you create a new topic: | ||||
> > | All template topics are located in the TWiki web. The WebTopicEditTemplate can be overloaded. When you create a new topic, TWiki locates a topic to use as a content template according to the following search order: | ||||
Changed: | |||||
< < |
| ||||
> > |
| ||||
Changed: | |||||
< < | Above form asks for a topic name. A hidden input tag of name "templatetopic" specifies the ExampleTopicTemplate as the template topic. Here is the HTML source of the 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 HTML source of the form:
| ||||
Changed: | |||||
< < | The "onlywikiname" parameter enforces WikiWords for topic names. | ||||
> > |
The onlywikiname parameter enforces WikiWords for topic names.
| ||||
Changed: | |||||
< < |
Note: Use can use the %WIKIUSERNAME% and %DATE% variables in your topic templates as the signature; those variables are expanded when a new topic is created. The standard topic signature is: -- %WIKIUSERNAME% - %DATE%
| ||||
> > |
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%
| ||||
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. NOTE: This isn't the release version, just a quick, simple demo.
| ||||
> > |
Attached is an example of an oops based template oopsbase.tmpl and an example oops dialog oopstest.tmpl based on the base template. %A% NOTE: This isn't the release version, just a quick, simple demo.
| ||||
Changed: | |||||
< < |
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"}%
| ||||
> > |
The first line declares a delimiter variable called "sep", used to separate multiple link items. The variable can be called anywhere by writing %TMPL:P{"sep"}%
| ||||
Changed: | |||||
< < |
| ||||
> > |
| ||||
Changed: | |||||
< < |
| ||||
> > |
| ||||
Added: | |||||
> > | -- TWiki:Main/DavidLeBlanc - 11 Mar 2002 |
<<O>> Difference Topic TWikiTemplates (r1.12 - 18 Jul 2002 - PeterThoeny) |
Changed: | ||
< < |
With URL: .../bin/oops/Test/TestTopic2?template=oopstest¶m1=WebHome¶m2=WebNotify
| |
> > |
With URL: .../bin/oops/Sandbox/TestTopic2?template=oopstest¶m1=WebHome¶m2=WebNotify
| |
Changed: | ||
< < |
| |
> > |
| |
Changed: | ||
< < | %META:FILEATTACHMENT{name="testscreen.gif" attr="h" comment="Example of oopstest.tmpl rendered" date="999598142" path="C:\02_TWikiDocs\testscreen.gif" size="9460" user="MikeMannix" version="1.1"}% | |
> > | %META:FILEATTACHMENT{name="testscreen.gif" attr="h" comment="Example of oopstest.tmpl rendered" date="1026977240" path="C:\Data\Temp\testscreen.gif" size="9566" user="PeterThoeny" version="1.2"}% |
<<O>> Difference Topic TWikiTemplates (r1.11 - 04 Dec 2001 - PeterThoeny) |
Changed: | ||
< < |
| |
> > |
|
<<O>> Difference Topic TWikiTemplates (r1.10 - 18 Sep 2001 - MikeMannix) |
Changed: | |
< < | The new modular template system offers flexible, easy control over the layout of all TWiki pages. The master template approach groups parts that are shared by several templates - like headers and footers - in a common file. Special variables allow individual layouts to include parts from a master template - variables are mixed with regular HTML mark-up for template-specific content. |
> > | The new modular template system offers flexible, easy control over the layout of all TWiki pages. The master template approach groups parts that are shared by several templates - like headers and footers - in a common file. Special variables allow individual layouts to include parts from a master template - variables are mixed with regular HTML mark-up for template-specific content. Templates are used to define page layout, and also to supplydefault content for new pages. |
Added: | |
> > | |
Added: | |
> > |
<<O>> Difference Topic TWikiTemplates (r1.9 - 16 Sep 2001 - MikeMannix) |
Changed: | |
< < |
TWiki Template System |
> > |
TWiki Templates |
Changed: | |
< < | 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 TWikiSkins. |
> > | The new modular template system offers flexible, easy control over the layout of all TWiki pages. The master template approach groups parts that are shared by several templates - like headers and footers - in a common file. Special variables allow individual layouts to include parts from a master template - variables are mixed with regular HTML mark-up for template-specific content. |
Changed: | |
< < | 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: |
> > | Where the old templates were each complete HTML documents, the new templates are defined using variables to include template parts from a master file. You can now change one instance of a common element to update all occurrences; previously, every affected template had to be updated. This simplifies the conversion of templates into XHTML format, and provides a more versatile solution for templates and for TWikiSkins. The new system: |
Changed: | |
< < |
|
> > |
|
<<O>> Difference Topic TWikiTemplates (r1.8 - 15 Sep 2001 - PeterThoeny) |
Changed: | |
< < |
|
> > |
|
Changed: | |
< < | (date format is YYYYMMDD) |
> > | (date format is YYYYxMMxDD) |
Changed: | |
< < | <input type="text" name="topic" value="ExampleTopic%SERVERTIME{$year$mo$day}%" size="22"> <input type="hidden" name="templatetopic" value="ExampleTopicTemplate"> <input type="hidden" name="onlywikiname" value="on"> <input type="submit" value="Create"> (date format is YYYYMMDD) |
> > | <input type="text" name="topic" value="ExampleTopic%SERVERTIME{$yearx$mox$day}%" size="23" /> <input type="hidden" name="templatetopic" value="ExampleTopicTemplate" /> <input type="hidden" name="onlywikiname" value="on" /> <input type="submit" value="Create" /> (date format is <nop>YYYYxMMxDD) |
<<O>> Difference Topic TWikiTemplates (r1.7 - 15 Sep 2001 - MikeMannix) |
Changed: | |
< < |
Note: $webName is the name of the web ( i.e. Main ), and $scriptName is the script ( i.e. view ).
|
> > |
Note: $webName is the name of the web (ex: Main ), and $scriptName is the script (ex: view ).
|
Changed: | |
< < |
Some special variables are used in templates ( especially view ) to show meta data - see Meta Data Rendering
|
> > |
Special variables are used in templates, especially in view , to display meta data. |
<<O>> Difference Topic TWikiTemplates (r1.6 - 15 Sep 2001 - MikeMannix) |
Changed: | |||||||||||||||||||||||
< < |
New Template System by Example | ||||||||||||||||||||||
> > |
TWiki Master TemplateAll common parts are defined in a master template,twiki.tmpl , that all other templates use.
Types of TemplateThere are two types of templates:
HTML Page TemplatesTWiki uses HTML template files for all actions like topic view, edit, preview and so on. This allows you to change the look and feel of all pages by editing just some template files. The template files are in thetwiki/templates directory. As an example, twiki/templates/view.tmpl is the template file for the twiki/bin/view script. Templates can be overloaded per web. The following search order applies:
$webName is the name of the web ( i.e. Main ), and $scriptName is the script ( i.e. view ).
Note: TWikiSkins can be defined to overload the standard templates.
Some special variables are used in templates ( especially view ) to show meta data - see Meta Data Rendering
Template TopicsTemplate topics define the default text for new topics. There are three types of template topics:All template topics are located in the TWiki web. The WebTopicEditTemplate can be overloaded. The following search order applies when you create a new topic:
Template Topics in ActionHere is an example for creating new topics based on a specific template topic: Above form asks for a topic name. A hidden input tag of name "templatetopic" specifies the ExampleTopicTemplate as the template topic. Here is the HTML source of the form:<form name="new" action="%SCRIPTURLPATH%/edit%SCRIPTSUFFIX%/%WEB%/"> * New example topic: <input type="text" name="topic" value="ExampleTopic%SERVERTIME{$year$mo$day}%" size="22"> <input type="hidden" name="templatetopic" value="ExampleTopicTemplate"> <input type="hidden" name="onlywikiname" value="on"> <input type="submit" value="Create"> (date format is YYYYMMDD) </form>The "onlywikiname" parameter enforces WikiWords for topic names. Note: Use can use the %WIKIUSERNAME% and %DATE% variables in your topic templates as the signature; those variables are expanded when a new topic is created. The standard topic signature is: -- %WIKIUSERNAME% - %DATE%
Templates by Example | ||||||||||||||||||||||
Changed: | |||||||||||||||||||||||
< < |
| ||||||||||||||||||||||
> > |
| ||||||||||||||||||||||
Changed: | |||||||||||||||||||||||
< < |
| ||||||||||||||||||||||
> > |
| ||||||||||||||||||||||
Changed: | |||||||||||||||||||||||
< < |
| ||||||||||||||||||||||
> > |
| ||||||||||||||||||||||
Deleted: | |||||||||||||||||||||||
< < |
TWiki master templateAll common template parts are defined in one master template,twiki.tmpl , that all other templates include.
Example: | ||||||||||||||||||||||
Changed: | |||||||||||||||||||||||
< < |
-- PeterThoeny - 23 Jul 2001 -- MikeMannix - 30 Aug 2001 | ||||||||||||||||||||||
> > |
-- PeterThoeny - 23 Jul 2001 -- MikeMannix - 14 Sep 2001 |
<<O>> Difference Topic TWikiTemplates (r1.5 - 14 Sep 2001 - PeterThoeny) |
Changed: | ||
< < | 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. | |
> > | 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 TWikiSkins. | |
Changed: | ||
< < |
| |
> > |
| |
Deleted: | ||
< < |
| |
Changed: | ||
< < |
| |
> > |
| |
Deleted: | ||
< < |
NOTE: Added a dot to escape rendering of variables, i.e. read %.WEB% as %WEB% .
| |
Added: | ||
> > |
| |
Changed: | ||
< < | <table border="1" cellspacing="0" cellpadding="1"> <tr><td> <verbatim> %.TMPL:DEF{"sep"}% | %.TMPL:END% | |
> > | %TMPL:DEF{"sep"}% | %TMPL:END% | |
Changed: | ||
< < | <title> %.WIKITOOLNAME% . %.WEB% . %.TOPIC% %.TMPL:P{"titleaction"}%</title> <base href="%.SCRIPTURL%/view%.SCRIPTSUFFIX%/%.WEB%/%.TOPIC%"> | |
> > | <title> %WIKITOOLNAME% . %WEB% . %TOPIC% %.TMPL:P{"titleaction"}%</title> <base href="%SCRIPTURL%/view%SCRIPTSUFFIX%/%WEB%/%TOPIC%"> | |
Changed: | ||
< < | <td bgcolor="%.WEBBGCOLOR%" rowspan="2" valign="top" width="1%"> <a href="%.WIKIHOMEURL%"> <img src="%.PUBURLPATH%/wikiHome.gif" border="0"></a> | |
> > | <td bgcolor="%WEBBGCOLOR%" rowspan="2" valign="top" width="1%"> <a href="%WIKIHOMEURL%"> <img src="%PUBURLPATH%/wikiHome.gif" border="0"></a> | |
Changed: | ||
< < | <b>%.WIKITOOLNAME% . %.WEB% . </b><font size="+2"> <B>%.TOPIC%</b> %.TMPL:P{"titleaction"}%</font> | |
> > | <b>%WIKITOOLNAME% . %WEB% . </b><font size="+2"> <B>%TOPIC%</b> %TMPL:P{"titleaction"}%</font> | |
Changed: | ||
< < | <tr bgcolor="%.WEBBGCOLOR%"> | |
> > | <tr bgcolor="%WEBBGCOLOR%"> | |
Changed: | ||
< < | %.TMPL:P{"webaction"}% | |
> > | %TMPL:P{"webaction"}% | |
Changed: | ||
< < |
++ %.TMPL:P{"heading"}% %.TMPL:P{"message"}% | |
> > |
++ %TMPL:P{"heading"}% %TMPL:P{"message"}% | |
Changed: | ||
< < | <tr bgcolor="%.WEBBGCOLOR%"> | |
> > | <tr bgcolor="%WEBBGCOLOR%"> | |
Changed: | ||
< < | Topic <b>TWikiTemplates</b> . { %.TMPL:P{"topicaction"}% | |
> > | Topic <b>%TOPIC%</b> . { %TMPL:P{"topicaction"}% | |
Deleted: | ||
< < | </verbatim> </td></tr> </table > | |
Added: | ||
> > |
| |
Changed: | ||
< < |
%.TMPL:DEF{"titleaction"}% (test =titleaction=) %.TMPL:END% %.TMPL:DEF{"webaction"}% test =webaction= %.TMPL:END% %.TMPL:DEF{"heading"}% Test heading %.TMPL:END% %.TMPL:DEF{"message"}% | |
> > |
%TMPL:DEF{"titleaction"}% (test =titleaction=) %TMPL:END% %TMPL:DEF{"webaction"}% test =webaction= %TMPL:END% %TMPL:DEF{"heading"}% Test heading %TMPL:END% %TMPL:DEF{"message"}% | |
Changed: | ||
< < |
| |
> > |
| |
Changed: | ||
< < | OK? %.TMPL:P{"sep"}% Register? %.TMPL:END% %.TMPL:INCLUDE{"oopsbase"}% | |
> > | [[%WEB%.%TOPIC%][OK]] %TMPL:P{"sep"}% [[%TWIKIWEB%.TWikiRegistration][Register]] %TMPL:END% %TMPL:INCLUDE{"oopsbase"}% | |
Added: | ||
> > |
TWiki master template | |
Changed: | ||
< < |
Example: preview.tmpl template
| |
> > |
Example: oopspreview.tmpl template
| |
Changed: | ||
< < |
-- PeterThoeny - 23 Jul 2001 | |
> > |
-- PeterThoeny - 23 Jul 2001 |
<<O>> Difference Topic TWikiTemplates (r1.4 - 12 Sep 2001 - MikeMannix) |
Added: | |
> > | %META:TOPICMOVED{by="MikeMannix" date="1000277381" from="TWiki.TWikiTemplateSystem" to="TWiki.TWikiTemplates"}% |
<<O>> Difference Topic TWikiTemplates (r1.3 - 08 Sep 2001 - MikeMannix) |
Deleted: | |||||||
< < |
new topic for the final docSlightly edited down, but waiting for new docs, hopefully. see also for ref: orig TWikiTemplatingSystem? | ||||||
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: | |||||||
< < |
| ||||||
> > |
| ||||||
Changed: | |||||||
< < |
Functional Spec | ||||||
> > |
| ||||||
Changed: | |||||||
< < | I tried to define a simple but powerful solution that can be extended over time. Here we go: | ||||||
> > |
Functional Specifications | ||||||
Changed: | |||||||
< < |
| ||||||
> > |
| ||||||
Changed: | |||||||
< < |
| ||||||
> > |
| ||||||
Changed: | |||||||
< < |
Examples | ||||||
> > |
New Template System by Example | ||||||
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.
| ||||||
> > |
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: | |||||||
< < |
Base template oopsbase.tmpl | ||||||
> > |
Base template oopsbase.tmpl | ||||||
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: | |||||||
> > |
| ||||||
Added: | |||||||
> > | |||||||
Changed: | |||||||
< < |
Test template oopstest.tmpl | ||||||
> > |
Test template oopstest.tmpl | ||||||
Added: | |||||||
> > |
| ||||||
Added: | |||||||
> > | |||||||
Changed: | |||||||
< < |
Sample screen shot of oopstest.tmpl | ||||||
> > |
Sample screen shot of oopstest.tmpl | ||||||
Added: | |||||||
> > |
| ||||||
Added: | |||||||
> > | |||||||
Changed: | |||||||
< < |
Comments and feedback
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.
| ||||||
> > |
All common template parts are defined in one master template, twiki.tmpl , that all other templates include.
| ||||||
Changed: | |||||||
< < |
| ||||||
> > |
| ||||||
Changed: | |||||||
< < |
| ||||||
> > |
| ||||||
Changed: | |||||||
< < |
I.e. the preview.tmpl template is now simply:
| ||||||
> > |
Example: | ||||||
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% | ||||||
Added: | |||||||
> > |
Known Issues | ||||||
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.
| ||||||
> > |
|
<<O>> Difference Topic TWikiTemplates (r1.2 - 07 Sep 2001 - MikeMannix) |
Changed: | |
< < |
TWiki Template System |
> > |
TWiki Template System |
Changed: | |
< < |
Overview |
> > |
Overview |
Changed: | |
< < |
Needs of the TWiki templating system |
> > |
Needs of the TWiki templating system |
Changed: | |
< < |
Functional Spec |
> > |
Functional Spec |
Changed: | |
< < |
Examples |
> > |
Examples |
Changed: | |
< < |
Base template oopsbase.tmpl |
> > |
Base template oopsbase.tmpl |
Changed: | |
< < |
Test template oopstest.tmpl |
> > |
Test template oopstest.tmpl |
Changed: | |
< < |
Sample screen shot of oopstest.tmpl |
> > |
Sample screen shot of oopstest.tmpl |
Changed: | |
< < |
Comments and feedback |
> > |
Comments and feedback |
<<O>> Difference Topic TWikiTemplates (r1.1 - 04 Sep 2001 - MikeMannix) |
Added: | ||||||||||||||||||
> > |
%META:TOPICINFO{author="MikeMannix" date="999598350" format="1.0" version="1.1"}%
%META:TOPICPARENT{name="WebHome"}%
new topic for the final docSlightly edited down, but waiting for new docs, hopefully. see also for ref: orig TWikiTemplatingSystem?TWiki Template SystemDefine the templates used to render all HTML pages displayed in TWikiOverviewWe 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. Using external modules like the TemplateToolkit? would be one way to go, but this will add a lot of baggage to TWiki.Needs of the TWiki templating system
Functional SpecI tried to define a simple but powerful solution that can be extended over time. Here we go:
ExamplesAttached is an example of an oops base templateoopsbase.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.tmplThe 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"}%
Note: Added a dot to escape rendering of variables, i.e. read %.WEB% as %WEB% .
<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 > Test template oopstest.tmplEach oops template basically just defines some variables and includes the base template that does the layout work.
Sample screen shot of oopstest.tmplWith URL:.../bin/oops/Test/TestTopic2?template=oopstest¶m1=WebHome¶m2=WebNotify
Comments and feedback
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.
preview.tmpl template is now simply:
%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% %TMPL:DEF{"message"}% Please go back in your browser and save the topic. %TMPL:END% %TMPL:DEF{"topicaction"}% %TMPL:END% %TMPL:P{"oops"}%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.
-- PeterThoeny - 23 Jul 2001 -- MikeMannix - 30 Aug 2001 %META:FILEATTACHMENT{name="testscreen.gif" attr="h" comment="Example of oopstest.tmpl rendered" date="999598142" path="C:\02_TWikiDocs\testscreen.gif" size="9460" user="MikeMannix" version="1.1"}% |
Topic TWikiTemplates . { View | Diffs | r1.18 | > | r1.17 | > | r1.16 | More } |
Revision r1.1 - 04 Sep 2001 - 10:07 GMT - MikeMannix Revision r1.18 - 01 Feb 2003 - 12:46 GMT - PeterThoeny |
Copyright © 1999-2004 by the contributing authors.
All material on this collaboration platform is the property of the contributing authors. Ideas, requests, problems regarding TWiki? Send feedback. |