2013-08-25 21:48:53 +00:00
|
|
|
created: 201308252133
|
|
|
|
creator: JeremyRuston
|
|
|
|
modified: 201308252133
|
|
|
|
modifier: JeremyRuston
|
|
|
|
tags: concepts
|
2013-06-02 22:18:07 +00:00
|
|
|
title: TiddlerFields
|
|
|
|
|
|
|
|
TiddlerFields are name:value pairs that make up a [[tiddler|Tiddlers]]. The standard fields are:
|
|
|
|
|
|
|
|
* `title` - The unique title of the tiddler
|
|
|
|
* `modified` - The date of the last modification to the tiddler
|
|
|
|
* `modifier` - The name of the last person to modify the tiddler
|
|
|
|
* `created` - The date the tiddler was created
|
|
|
|
* `creator` - The name of the person who created the tiddler
|
|
|
|
* `tags` - A list of tags applied to the tiddler
|
|
|
|
* `type` - The ContentType that should used to interpret the content of the tiddler
|
2013-08-09 15:51:49 +00:00
|
|
|
* `list` - A list of tiddler titles
|
2013-06-02 22:18:07 +00:00
|
|
|
|
|
|
|
Other fields used by the core are:
|
|
|
|
|
|
|
|
* `color` - The colour associated with a tiddler (expressed as a valid CSS value like `#fea` or `rgb(100,100,100)`)
|
|
|
|
* `description` - The description of a plugin
|
|
|
|
* `draft.of` - For draft tiddlers, contains the title of the tiddler of which this is a draft
|
|
|
|
* `draft.title` - For draft tiddlers, contains the proposed new title of the tiddler
|
|
|
|
* `footer` - The footer for a modal dialogue (interpreted as WikiText)
|
|
|
|
* `library` - Set to `yes` if the tiddler should be loaded in the browser as a `<script>` tag
|
|
|
|
* `name` - Human-readable name of a plugin
|
|
|
|
* `plugin-priority` - An integer giving the priority for loading plugin tiddlers
|
|
|
|
* `plugin-type` - The type of a plugin (currently can be `plugin` or `theme`)
|
|
|
|
* `source` - The original URL associated with a tiddler
|
|
|
|
* `subtitle` - The subtitle for a modal dialogue (interpreted as WikiText)
|
|
|
|
|
|
|
|
The TiddlyWebAdaptor uses a few more fields:
|
|
|
|
|
|
|
|
* `bag` - The name of the bag from which a tiddler came
|
|
|
|
* `revision` - The revision of the tiddler held at the server
|
2013-08-09 15:51:49 +00:00
|
|
|
|
|
|
|
See [[$:/ConfigInfo]] for details of the fields used in this wiki.
|