diff options
author | chris <chris@jalakai.co.uk> | 2006-11-26 16:21:44 +0100 |
---|---|---|
committer | chris <chris@jalakai.co.uk> | 2006-11-26 16:21:44 +0100 |
commit | 0a7e3bce2e0ca81b6f8c4e52f78b1ffe443f7ade (patch) | |
tree | ae4bc7e54007a1e94221b038b87ea35fea4e8b2f /lib | |
parent | 7f2f59eaec2b62a61925a8ce2b4390b192827d8d (diff) | |
download | rpg-0a7e3bce2e0ca81b6f8c4e52f78b1ffe443f7ade.tar.gz rpg-0a7e3bce2e0ca81b6f8c4e52f78b1ffe443f7ade.tar.bz2 |
metadata update to support both persistent and non-persistent metadata
Key changes:
- metadata stored on disk in two arrays, 'current' & 'persistent'
- p_set_metadata has an additional parameter, $persistent, which defaults to true
- metadata set within the renderer defaults to non-persistent
- new event hook, PARSER_METADATA_RENDER, which wraps around metadata rendering process. For
full details of this event refer to the event list documentation at splitbrain.
The patch includes automatic conversion of metadata in current form to the new format
For more details also see http://www.freelists.org/archives/dokuwiki/11-2006/msg00221.html
and any follow-up messages.
darcs-hash:20061126152144-9b6ab-a4e40c221e0274b13da07dc2fc1d2100f5f3a50e.gz
Diffstat (limited to 'lib')
-rw-r--r-- | lib/plugins/syntax.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/syntax.php b/lib/plugins/syntax.php index ccf657720..770356c3a 100644 --- a/lib/plugins/syntax.php +++ b/lib/plugins/syntax.php @@ -111,7 +111,7 @@ class DokuWiki_Syntax_Plugin extends Doku_Parser_Mode { * The contents of the $data array depends on what the handler() function above * created * - * @param $format string output format to being Rendered + * @param $format string output format being rendered * @param $renderer ref reference to the current renderer object * @param $data array data created by handler() * @return boolean rendered correctly? |