History log of /dokuwiki/inc/parserutils.php (Results 151 – 175 of 180)
Revision Date Author Comments
# c19c9173 09-Apr-2006 Ben Coburn <btcoburn@silicodon.net>

cleanup export mode errors

- Using the export modes 'handler', 'lexer', 'parser', or 'renderer'
now produces a nicer non-fatal error.
- The export mode 'wiki' is now ignored to avoid fatal errors.

cleanup export mode errors

- Using the export modes 'handler', 'lexer', 'parser', or 'renderer'
now produces a nicer non-fatal error.
- The export mode 'wiki' is now ignored to avoid fatal errors.

darcs-hash:20060409045546-05dcb-89f4c56c23d9798f4cb2dd000804cb8c03524b6d.gz

show more ...


# 98c86858 17-Feb-2006 Andreas Gohr <andi@splitbrain.org>

file cleanups

This patch cleans up the source code to satisfy the coding guidelines (see
http://wiki.splitbrain.org/wiki:development#coding_style)

It converts files to UNIX lineendings and removes

file cleanups

This patch cleans up the source code to satisfy the coding guidelines (see
http://wiki.splitbrain.org/wiki:development#coding_style)

It converts files to UNIX lineendings and removes tabs and trailing
whitespace. Not all files were cleaned yet.

darcs-hash:20060217222040-7ad00-bba3d2bee3b5aa7cbb5184258abd50805cd071bf.gz

show more ...


# e77ea1bc 25-Jan-2006 Andreas Gohr <andi@splitbrain.org>

fix for broken $conf['typography']

darcs-hash:20060125211620-7ad00-aecd98eba9a237f3314281c0924c1eab99dbe589.gz


# e34c0709 18-Nov-2005 Andreas Gohr <andi@splitbrain.org>

fixed a very rare problem with io_readfile and unserialize

darcs-hash:20051118194856-7ad00-5b7f8dea8371acd85ccfe31ac6f748cb2b619486.gz


# 6b7b33dc 07-Nov-2005 hfuecks <hfuecks@gmail.com>

xhtmlsummary_patch

darcs-hash:20051107000554-e96b6-1a7ae7a9d5e820d3c52629570ff33f8e75bc4a46.gz


# f42d1c75 27-Oct-2005 Andreas Gohr <andi@splitbrain.org>

option for disabling debug output

darcs-hash:20051027183410-7ad00-5ca48cf2d4058016f5cf07887d9eaa7b07a4043f.gz


# 3ff8773b 16-Oct-2005 Andreas Gohr <andi@splitbrain.org>

make sure p_wiki_xhtml does not destroy the global $ID

darcs-hash:20051016185709-7ad00-cf9de03231c90e1c6725fe7553909d682bca1a59.gz


# c90b2fb1 04-Aug-2005 chris <chris@teacherscpd.co.uk>

minor plugin fixes to protect against invalid/malformed plugins

darcs-hash:20050804235036-50fdc-1881a40da689bc5abbe608a2ce96a1ed192a43a4.gz


# a46d0d65 30-Jul-2005 Andreas Gohr <andi@splitbrain.org>

Changed pluginloading to use references

This patch allows the use of $this in syntax plugins to set internal variables
and let them remain between handle and render calls. Even when it is possible
n

Changed pluginloading to use references

This patch allows the use of $this in syntax plugins to set internal variables
and let them remain between handle and render calls. Even when it is possible
now to use this method you should exchange data betwenn handler and render calls
by using the $data array only.

darcs-hash:20050730215156-7ad00-69ea79859360d9902533633395de3e1b677f6e46.gz

show more ...


# e7cb32dc 29-Jul-2005 Andreas Gohr <andi@splitbrain.org>

DOKU_CONF define for config directory #479

darcs-hash:20050729155457-7ad00-94554865259e4cbd6a1c75bb62a93f37304adbf0.gz


# 87c434ce 16-Jul-2005 Andreas Gohr <andi@splitbrain.org>

useheading fixes #460 #465

darcs-hash:20050716111225-7ad00-913c36c65ac1a985fea60eed57fc7391328bfacd.gz


# c7532350 28-Jun-2005 Drew Amato <drewamato@gmail.com>

purgefile fix for non standard cachedir #429

darcs-hash:20050628193126-4d95a-ca1821ae6db6c0d7af518be19f3eb36be06ea1bf.gz


# 98407a7a 26-Jun-2005 andi <andi@splitbrain.org>

directory cleanup

This cleans up the directory structure as discussed on the mailning
list. Users should delete their previous _cache directories to
recover diskspace.

darcs-hash:20050626100913-997

directory cleanup

This cleans up the directory structure as discussed on the mailning
list. Users should delete their previous _cache directories to
recover diskspace.

darcs-hash:20050626100913-9977f-83c0fdc32047db2090fc52a843ffae50cbf12248.gz

show more ...


# 107b01d6 21-May-2005 andi <andi@splitbrain.org>

sorting support for syntax plugins, info plugin now actually does something

Syntax plugins now need to implement getSort() which should return a number.
This number is used to add all syntax modes i

sorting support for syntax plugins, info plugin now actually does something

Syntax plugins now need to implement getSort() which should return a number.
This number is used to add all syntax modes in the correct order. To see a
list in which order current modes are loaded you can use the info plugin like
this:

~~INFO:syntaxmodes~~ lists all known modes (includes existing plugins) with
their sorting score

~~INFO:syntaxtypes~~ lists all syntax types and their registered modes (useful
for implementing the getType() function.

darcs-hash:20050521210430-9977f-2baaf6043afc6ea3fed41cdca97564218fb519c2.gz

show more ...


# ee20e7d1 19-May-2005 andi <andi@splitbrain.org>

first attempt of syntax plugins

The first version of the new plugin system. Syntax plugins only yet. A very simple
example plugin called info (doing nothig useful yet) is included.

Missing Features

first attempt of syntax plugins

The first version of the new plugin system. Syntax plugins only yet. A very simple
example plugin called info (doing nothig useful yet) is included.

Missing Features

- Doku_Block_Handler needs work (doesn't honur plugins yet)
- there is no way to specify the order of plugins and other modes yet
- useful output from the info plugin
- bug testing and fixing
- code cleanup
- documentation

darcs-hash:20050519201009-9977f-f793dbfc6a39d8a9643b610927d93cd3288bdd6b.gz

show more ...


# fd198316 13-May-2005 andi <andi@splitbrain.org>

fix for p_cached_instructions with cacheforce for nonexistant cachefiles #323

The above function used to return NULL if a cached copy was required but
wasn't found. It now returns an empty array ins

fix for p_cached_instructions with cacheforce for nonexistant cachefiles #323

The above function used to return NULL if a cached copy was required but
wasn't found. It now returns an empty array instead.

darcs-hash:20050513122255-9977f-193fcfcc12f676f355407358c6000e4a74999c03.gz

show more ...


# 9dc2c2af 01-May-2005 andi <andi@splitbrain.org>

~~NOCACHE~~ added

darcs-hash:20050501193908-9977f-e65b9b9bd123efaccc167f2e1ad9a1d4f51ba681.gz


# 1094c798 01-May-2005 andi <andi@splitbrain.org>

added missing purgefile handling in xhtml caching

darcs-hash:20050501174843-9977f-10aeb839e657f94ed9fead63db63a9b28137e3fc.gz


# 7879fd27 01-May-2005 andi <andi@splitbrain.org>

just a few small fixes #299

darcs-hash:20050501161512-9977f-c74a1814bfc6844e019e27a32b2a459888172a0b.gz


# 3fd0b676 29-Apr-2005 andi <andi@splitbrain.org>

comments and cleanup

darcs-hash:20050429114925-9977f-ff5b6dcf702b533a2dd64397522da7cd7b97f092.gz


# 6e38d921 27-Apr-2005 andi <andi@splitbrain.org>

always use cache version for useheading

darcs-hash:20050427182837-9977f-c27ffa0d48b7592d1870da5dce3cf401a18d2476.gz


# 1e76272c 26-Apr-2005 andi <andi@splitbrain.org>

fixed #275

darcs-hash:20050426075543-9977f-fabae0206ae90574af37bf48b56c8d962f283049.gz


# a2d649c4 25-Apr-2005 andi <andi@splitbrain.org>

changed XHTML renderer from outputbuffering to string appending #272

darcs-hash:20050425183543-9977f-86c2d99ebfcb30849443b7bc5ef1a09859148732.gz


# 506ae684 24-Apr-2005 andi <andi@splitbrain.org>

finally valid XHTML again

darcs-hash:20050424132922-9977f-5e9acbeae431ca1c605169829e580bf094a09ef9.gz


# 37e34a5e 22-Apr-2005 andi <andi@splitbrain.org>

backlink with camelcase support (untested)

darcs-hash:20050422164153-9977f-443f332fa6e591dfa352448ceb5dd24811d227a2.gz


12345678