| c0c4ef98 | 02-Apr-2010 |
Rasmus Kinnerup <rasmus@kinnerup.com> |
Danish language update |
| d059ba9b | 02-Apr-2010 |
Andreas Gohr <andi@splitbrain.org> |
Fix gzip compression in combination with buffer flushing FS#1927
This introduces a new function called tpl_flush() which should be used by template authors in favor of the PHP flush() method. |
| d535a2e9 | 31-Mar-2010 |
stretchyboy <martyn.eggleton@gmail.org> |
Fixes variable replacement during _template.txt parsing |
| f6ec8df8 | 29-Mar-2010 |
Adrian Lang <lang@cosmocode.de> |
Allow plugins to specify that they have to be instantiated
Plugins may return false in isSingleton to let plugin_load return a new instance every time it is called. Renderer plugins are not loaded w
Allow plugins to specify that they have to be instantiated
Plugins may return false in isSingleton to let plugin_load return a new instance every time it is called. Renderer plugins are not loaded with $new set to true, but instead specify themself that they are not singletons. This behaviour allows the odt renderer to keep working (see #1598).
show more ...
|
| c9d5430b | 29-Mar-2010 |
Adrian Lang <lang@cosmocode.de> |
Call act_edit for locked pages
50e988b accidentally stopped act_dispatch from calling act_edit for locked pages, thus showing a generic »page not writable« message instead of a page lock message. |
| 569a0019 | 26-Mar-2010 |
Adrian Lang <lang@cosmocode.de> |
Fix and simplify p_get_metadata key looping
explode converts $string (false) to string ("") and returns it if $delimiter is not found, therefor looking for the key "" in metadata array. |
| 0139312b | 26-Mar-2010 |
Adrian Lang <lang@cosmocode.de> |
Better code syntax parsing, less E_NOTICE |
| 26ee1edf | 25-Mar-2010 |
Adrian Lang <lang@cosmocode.de> |
Rewrite JavaScript change check |
| 2e61e4df | 25-Mar-2010 |
Adrian Lang <lang@cosmocode.de> |
Fix JavaScript for change detection after preview |
| 7733c314 | 26-Mar-2010 |
Michael Klier <chi@chimeric.de> |
replaced readdir() with glob() in metaFiles() |
| f1986589 | 26-Mar-2010 |
Michael Klier <chi@chimeric.de> |
moved plugincontroller and event handler creation to init.php |
| 22952965 | 23-Mar-2010 |
YoBoY <yoboy.leguesh@gmail.com> |
Limiting use of readdir in the idx_indexLengths function (v2).
Each searches on the wiki use this function. Scanning the index directory eachtime is time consuming with a constant series of disk acc
Limiting use of readdir in the idx_indexLengths function (v2).
Each searches on the wiki use this function. Scanning the index directory eachtime is time consuming with a constant series of disk access. Switching a normal search to use file_exists 1 or more times, and not readdir all the directory. Switching a wildcard search to use a lengths.idx file containing all the word lengths used in the wiki, file generated if a new configuration parameter $conf[readdircache] is not 0 and fixed to a time in second. Creation of a new function idx_listIndexLengths to do this part.
show more ...
|
| 3371a8b4 | 24-Mar-2010 |
Adrian Lang <lang@cosmocode.de> |
Fixed selffail. |
| b7eccc60 | 24-Mar-2010 |
Adrian Lang <lang@cosmocode.de> |
Keep edit target information for preview |
| 689cba4d | 23-Mar-2010 |
Adrian Lang <lang@cosmocode.de> |
No warning for an undefined variable |
| ebf65d37 | 17-Mar-2010 |
Adrian Lang <lang@cosmocode.de> |
Rewrite p_get_metadata to not issue a E_Notice |
| 12c96ace | 23-Mar-2010 |
Adrian Lang <lang@cosmocode.de> |
Send edit target in HTML_EDITFORM_SELECTION |
| 80fcb268 | 23-Mar-2010 |
Adrian Lang <lang@cosmocode.de> |
Rewrite wikitext slicing for section edits
This commit adresses two issues: * rawWikiSlices used to drop the first byte of the suffix (usually a newline, but custom section edits may not be bo
Rewrite wikitext slicing for section edits
This commit adresses two issues: * rawWikiSlices used to drop the first byte of the suffix (usually a newline, but custom section edits may not be bound to newlines) * con used to insert way too much newlines: the newline that got dropped by the bug in rawWikiSlices and one additional newline in prefix and text each if they are not terminated by a newline. Now con only inserts newlines if there are absolutely no newlines between prefix and text and text and suffix.
show more ...
|
| cf5b4351 | 22-Mar-2010 |
Andreas Gohr <andi@splitbrain.org> |
Replace vertical tabs befor parsing XML in XMLRPC
It seems that the 0x0B Vertical Tab character breaks the PHP XML parser. This workaround replaces the char with a space before parsing. Not ideal bu
Replace vertical tabs befor parsing XML in XMLRPC
It seems that the 0x0B Vertical Tab character breaks the PHP XML parser. This workaround replaces the char with a space before parsing. Not ideal but good enough for now.
show more ...
|
| dfd343c4 | 22-Mar-2010 |
Andreas Gohr <andi@splitbrain.org> |
fixed hashing in mediaSearch()
The hash option did not hash the correct content for the found media files. This causes troubles in the sync plugin http://github.com/splitbrain/dokuwiki-plugin-sync/i
fixed hashing in mediaSearch()
The hash option did not hash the correct content for the found media files. This causes troubles in the sync plugin http://github.com/splitbrain/dokuwiki-plugin-sync/issues#issue/1
show more ...
|
| 9d706dd2 | 22-Mar-2010 |
Robert Bogenschneider <robog@gmx.de> |
German language update |
| 982a5941 | 22-Mar-2010 |
Robert Bogenschneider <robog@gmx.de> |
Esperanto language update |
| d141c8dc | 22-Mar-2010 |
Adrian Lang <lang@cosmocode.de> |
Add missing global declaration |
| 2ffea8f2 | 22-Mar-2010 |
Adrian Lang <lang@cosmocode.de> |
Do not trigger HTML_FORM_SELECTION in some cases
When the page is not editable or the section info is out of date, a custom editor should not be used. |
| 50e988b1 | 18-Mar-2010 |
Andreas Gohr <andi@splitbrain.org> |
typo fixed |