d86d5af0 | 13-Feb-2008 |
Chris Smith <chris@jalakai.co.uk> |
Rationalise Parser PHP & HTML syntax mode handling to renderer only.
This patch corrects the problems with the previously (reversed) patch "remove htmlok and phpok tests from Doku_Handler".
The han
Rationalise Parser PHP & HTML syntax mode handling to renderer only.
This patch corrects the problems with the previously (reversed) patch "remove htmlok and phpok tests from Doku_Handler".
The handler will now write php, phpblock, html & htmlblock instructions and let the renderer decide how these instructions should be processed.
The xhtml renderer will follow the "phpok" and "htmlok" config settings. If these settings are turned off the any instructions will be rendered as code with php or html syntax highlighting (as appropriate).
darcs-hash:20080213024941-d26fc-ec485362803e63a2d949dad5c23e17db939e6ced.gz
show more ...
|
ef1b03a8 | 17-Jan-2008 |
Spring Pierre <pierre.spring@liip.ch> |
UNDO: remove htmlok and phpok tests from Doku_Handler
there is no necessity for the "htmlok" and "phpok" testing in the Doku_Handler, taken the fact that the page renderer does it too. and it gives
UNDO: remove htmlok and phpok tests from Doku_Handler
there is no necessity for the "htmlok" and "phpok" testing in the Doku_Handler, taken the fact that the page renderer does it too. and it gives the possibility to the renderer to choose, what to do with such blocks.
darcs-hash:20080117222648-01292-c4b5a890ada5e5e962ba7e3f62c4c2fc5d72138f.gz
show more ...
|
6e03f825 | 17-Jan-2008 |
Spring Pierre <pierre.spring@liip.ch> |
remove htmlok and phpok tests from Doku_Handler
there is no necessity for the "htmlok" and "phpok" testing in the Doku_Handler, taken the fact that the page renderer does it too. and it gives the po
remove htmlok and phpok tests from Doku_Handler
there is no necessity for the "htmlok" and "phpok" testing in the Doku_Handler, taken the fact that the page renderer does it too. and it gives the possibility to the renderer to choose, what to do with such blocks.
darcs-hash:20080117222648-01292-cfce862d4e6fe9ce61feda7d6f11f014a68f5ffa.gz
show more ...
|
29bfcd16 | 19-Jan-2008 |
Andreas Gohr <andi@splitbrain.org> |
use <sup> to markup footnote anchors
Using the <sup> HTML tag ensures that footnotes are shown correctly when displayed outside the DokuWiki stylesheet (eg. in feedreaders)
darcs-hash:2008011901061
use <sup> to markup footnote anchors
Using the <sup> HTML tag ensures that footnotes are shown correctly when displayed outside the DokuWiki stylesheet (eg. in feedreaders)
darcs-hash:20080119010614-7ad00-59426b5e1d44f0ab932867e19e42b71f260f9cc9.gz
show more ...
|
6f9bd982 | 18-Jan-2008 |
Andreas Gohr <andi@splitbrain.org> |
prevent error on buggy syntax plugin FS#1218
darcs-hash:20080118234120-7ad00-01defe99eda2568ef91acc679a35b25e8bdc40ed.gz |
bc769d32 | 18-Jan-2008 |
Andreas Gohr <andi@splitbrain.org> |
correct UTF-8 trimming of abstracts in metarenderer FS#1233
darcs-hash:20080118224834-7ad00-bda8d919c3fdf4bafe8509dca35aa437b38e1ac6.gz |
44a6b4c7 | 18-Jan-2008 |
Andreas Gohr <andi@splitbrain.org> |
add rel
darcs-hash:20080118223507-7ad00-3cc83db3fac31917a50378646785a006a03825a2.gz |
5467607f | 18-Jan-2008 |
Andreas Gohr <andi@splitbrain.org> |
try to warn about pcre.backtrack_limit errors FS#1258
darcs-hash:20080118214138-7ad00-86962cd0413db95ea19383c4579b3240ad3c4301.gz |
ff8e5c09 | 04-Jan-2008 |
stephane.chazelas <stephane.chazelas@emerson.com> |
parenthesis_escaper_fix
darcs-hash:20080104145301-3d17c-6ba186de4a2661f7d4f6b080e4cf74fed9ae1904.gz |
173dccb7 | 15-Oct-2007 |
Tom N Harris <tnharris@whoopdedo.org> |
Allow HTML from inline RSS (typo fix)
darcs-hash:20071015225606-6942e-4945a9510445707655951b740f6302dfb97c655a.gz |
00976812 | 30-Sep-2007 |
Andreas Gohr <andi@splitbrain.org> |
don't use realpath() anymore (FS#1261 and others)
The use of realpath() to clean up relative file names caused some trouble in certain setups relying on symlinks or having restricitve file structure
don't use realpath() anymore (FS#1261 and others)
The use of realpath() to clean up relative file names caused some trouble in certain setups relying on symlinks or having restricitve file structure setups.
This patch replaces all realpath() calls with a PHP only replacement which should solve those problems.
darcs-hash:20070930184250-7ad00-512ff04c95f57fc9eaf104f80372237a3c94286f.gz
show more ...
|
b58f5d31 | 25-Sep-2007 |
Tom N Harris <tnharris@whoopdedo.org> |
Fix not checking capture in metadata renderer
darcs-hash:20070925201030-6942e-7c2ac56c877cb6772d500b2391ddc490dc6fdec5.gz |
7d91652a | 07-Aug-2007 |
Andreas Gohr <andi@splitbrain.org> |
TOC fixed
This fixes some small bugs which were introduced with recent TOC changes
darcs-hash:20070807171844-7ad00-fc09dd6d09b72927e64dfa41dd8b86fc20d86ed0.gz |
2bb0d541 | 05-Aug-2007 |
chris <chris@jalakai.co.uk> |
minor fixes for recent tpl_toc() patch
darcs-hash:20070805163833-9b6ab-82e8cd7ec37d163ccb552e3b6aee8c1f70e75f15.gz |
b8595a66 | 05-Aug-2007 |
Andreas Gohr <andi@splitbrain.org> |
separated TOC from page
This patch introduces a tpl_toc() function which can be used to freely place the Table of Contents in a template. When used, tpl_content should be called with a parameter of
separated TOC from page
This patch introduces a tpl_toc() function which can be used to freely place the Table of Contents in a template. When used, tpl_content should be called with a parameter of false to supress the automatic TOC placement.
Note: if tpl_toc() us run *before* tpl_content(), TOCs will not work in the preview. A work around is to run tpl_content() in a output buffer first.
This patch also adds a getTOC() function for admin plugins which allows plugin authors to put create their own TOC which will be placed correctly in the template. A convenience function html_mktocitem() is available.
The config manager was adjusted to make ue of this new feature, but some bugs might remain.
darcs-hash:20070805132405-7ad00-77d2c3cdf66cc62b2d408cc6580f938636a109af.gz
show more ...
|
00077af8 | 19-Jul-2007 |
Andreas Gohr <andi@splitbrain.org> |
SimplePie upgrade to 1.0
darcs-hash:20070719080638-7ad00-5b69a4e568291a2e2479a7a09743be3157a7d114.gz |
4ab889ea | 11-Jul-2007 |
Andreas Gohr <andi@splitbrain.org> |
improved feed creation
The feed now can export diff views (unified and HTML) as well as full HTML page content.
Some things might be broken. Everybody please test it!
darcs-hash:20070711213624-7ad
improved feed creation
The feed now can export diff views (unified and HTML) as well as full HTML page content.
Some things might be broken. Everybody please test it!
darcs-hash:20070711213624-7ad00-49359417127fdbd6e31374738509110271b6b351.gz
show more ...
|
928a715d | 17-May-2007 |
Anika Henke <a.c.henke@arcor.de> |
deleted unnecessary htmlok+phpok checks
darcs-hash:20070517234228-d5083-9a00c354c88dc59ca314ae31baebc612e6577174.gz |
07f89c3c | 17-May-2007 |
Anika Henke <a.c.henke@arcor.de> |
added block mode for embedded html+php (FS#541) -- same syntax but in capital letters (<HTML>+<PHP>)
darcs-hash:20070517233213-d5083-9dbccf77383575912ad75533ca690302557e0f79.gz |
5fc8a925 | 26-Jun-2007 |
Andreas Gohr <andi@splitbrain.org> |
some more tweaks to the smart quote parser
Now all test cases succeed, but there is probably still trouble with certain conditions.
darcs-hash:20070626181735-7ad00-dd6e51e37cda7ca63077a2779afe1753a
some more tweaks to the smart quote parser
Now all test cases succeed, but there is probably still trouble with certain conditions.
darcs-hash:20070626181735-7ad00-dd6e51e37cda7ca63077a2779afe1753ad975f84.gz
show more ...
|
943dedc6 | 25-Jun-2007 |
Andreas Gohr <andi@splitbrain.org> |
fixed problem with #section added to all links
darcs-hash:20070625204256-7ad00-928a9544d9a5f161bd2b445f49dfc5be22703153.gz |
ad32e47e | 23-Jun-2007 |
Andreas Gohr <andi@splitbrain.org> |
fix for colons in fragment identifiers FS#1062
darcs-hash:20070623142008-7ad00-fe29449145bb0f41d28b26d088c9017545775d74.gz |
45e147cc | 18-Jun-2007 |
Andreas Gohr <andi@splitbrain.org> |
Verbose errors for failed feed fetching
When the allowdebug option is set, the error message generated by the feed parser will be put in an HTML comment.
darcs-hash:20070618172904-7ad00-729b99d76df
Verbose errors for failed feed fetching
When the allowdebug option is set, the error message generated by the feed parser will be put in an HTML comment.
darcs-hash:20070618172904-7ad00-729b99d76df499890ded3f43b708196de9ff8cbe.gz
show more ...
|
b120b664 | 13-Jun-2007 |
Andreas Gohr <andi@splitbrain.org> |
correct javascript escape for languagestring in windows share links FS#1147
This piece of code should be replaced by some unobstrusive code in the future
darcs-hash:20070613193351-7ad00-ce797a00e94
correct javascript escape for languagestring in windows share links FS#1147
This piece of code should be replaced by some unobstrusive code in the future
darcs-hash:20070613193351-7ad00-ce797a00e945f902e2fb309b83ffca988c2fb7e6.gz
show more ...
|
9426a41a | 13-Jun-2007 |
Andreas Gohr <andi@splitbrain.org> |
make typography option three staged FS#1142
Because correct smart quote parsing with regular expressions is nearly impossible, especially when dealing with quote usage in languages different from en
make typography option three staged FS#1142
Because correct smart quote parsing with regular expressions is nearly impossible, especially when dealing with quote usage in languages different from english, the typography configuration option was changed.
0 means to completely disable any typography replacements 1 will only handle the multiply entitity and double quotes, this should nearly always work without problems and is the new default 2 will add singlequote parsing. This might break because single quotes and apostrophes are not always easily distinguishable. Especially in languages where single quote openings and apostrophes are different characters you might experience problems. For english it should nearly always work.
darcs-hash:20070613184015-7ad00-0cebc3f807f54467d54458075c5c9f651355c5ba.gz
show more ...
|