| 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 |
| 8d557116 | 17-Mar-2010 |
maros <dobrimaros@yahoo.pl> |
Polish language update |
| 1c5d577c | 17-Mar-2010 |
José António Cidre Bardelás <medulio@ciberirmandade.org> |
Galician language update |
| b080c3dd | 17-Mar-2010 |
Martijn Dekker <martijn@inlv.org> |
Interlingua language update |
| 5ce4ea15 | 16-Mar-2010 |
Michael Klier <chi@chimeric.de> |
added missing IXR_IntrospectionServer to autoload classes |
| e0415e22 | 16-Mar-2010 |
Christopher Smith <chris@jalakai.co.uk> |
Make constants in TarLib.class.php class constants
The constants are required by the class constructor, which effectively means before the autoloader is triggered. This change fixes that issue. |
| 94d621b0 | 16-Mar-2010 |
Adrian Lang <lang@cosmocode.de> |
Typo in ZipLib autoloader |
| a2ea2dc1 | 16-Mar-2010 |
Adrian Lang <lang@cosmocode.de> |
Fix special link displaying in abstract |
| c7cb395c | 15-Mar-2010 |
Adrian Lang <lang@cosmocode.de> |
Load libraries after init |
| 05ed2c25 | 12-Mar-2010 |
Andreas Gohr <andi@splitbrain.org> |
some more load fixes |
| 84645d8c | 12-Mar-2010 |
Andreas Gohr <andi@splitbrain.org> |
fixed target handling for license link FS#1917 |
| b77df601 | 12-Mar-2010 |
Andrey Mikhaylov <lolmaus@gmail.com> |
Russian language update |
| fe17917e | 10-Mar-2010 |
Adrian Lang <lang@cosmocode.de> |
Move & rename HTML_PAGE_FROMTEMPLATE to common.php
The new COMMON_PAGE_FROMTEMPLATE is triggered by pageTemplate AFTER the template has been read but before performing the template replacements. |
| 8d67c48a | 10-Mar-2010 |
Adrian Lang <lang@cosmocode.de> |
Correct edit conflict detection
Edit conflicts occur when a page has been edited since starting the current edit. In order to detect them, the date of the newest revision is saved. |
| 5a932e77 | 09-Mar-2010 |
Adrian Lang <lang@cosmocode.de> |
Remove wordblock action, issue a msg instead |
| 45a99335 | 09-Mar-2010 |
Adrian Lang <lang@cosmocode.de> |
Move data preprocessing out of html_edit |