| 1cdd0090 | 07-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
moved XMLRPC server class from lib/exe to inc/Remote |
| d05f72d0 | 07-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
fixed tests for chunked encoding
Looks like the domain we used to test this on expired. |
| 4cdb6842 | 07-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
started a dedicated file for deprecated stuff |
| dd87735d | 07-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
PSR-2 compatibility for the remote API libs |
| e1cdd96c | 07-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
some more visibility declarations |
| 23f4cc47 | 07-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
do not use DOKU_PARSER_EOL outside of testing |
| d4d8fb18 | 04-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
moved Parser to Parsing namespace |
| be906b56 | 04-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
moved all parsing related namespaces to their own |
| e9eace76 | 04-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
rename invokeParser to invokeHandler
Because that's what happens. There is a difference between the Parser and the Handler in our system and this makes it more clear what happens. |
| 8b1b81be | 04-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
cleaned up Doku_Handler for PSR-2 |
| 836f6efb | 04-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
add methods to test interal properties
You shouldn't really do this. But sometimes its so much easier to write a test that flips an internal bit than to do it poperly(tm). Better a risky test than n
add methods to test interal properties
You shouldn't really do this. But sometimes its so much easier to write a test that flips an internal bit than to do it poperly(tm). Better a risky test than none...
show more ...
|
| de226116 | 04-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
adjusted the Lexer for PSR-2 |
| 47f73ecf | 04-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
adjusted Doku_Parser for PSR-2
All properties are declared protected. The handler is now set via the constructor. |
| 747301f3 | 03-May-2018 |
Ivan Smirnov <isgsmirnov@gmail.com> |
Update PHP logo URL to HTTPS
- solves mixed content warnings on web security analyzers
- saves time since http://php.net/images/php.gif will redirect to https://secure.php.net/images/php.gif anyway. |
| bc753765 | 03-May-2018 |
Guy Brand <gb@unistra.fr> |
Bump updateVersion |
| 1362c8af | 02-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
fix draft recovering
The actual draft text got lost when we changed to showing the diff instead of the full draft. |
| ddb94cf0 | 01-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
updated php-archive lib. fixes #2361 |
| d4e34dc0 | 30-Apr-2018 |
Tengiz <tech2008a@gmail.com> |
translation update |
| 5c2aad12 | 30-Apr-2018 |
Andreas Gohr <andi@splitbrain.org> |
split handler.php into multiple files
For now I left Doku_Handler itself as it were. We will need to keep the class name around for backwards compatibility but should move the class itself.
I intro
split handler.php into multiple files
For now I left Doku_Handler itself as it were. We will need to keep the class name around for backwards compatibility but should move the class itself.
I introduced a new ReWriter Interface to formalize how the various call writer implementations are accessed.
There are a whole bunch of doc blocks missing.
show more ...
|
| f4c7bdbe | 30-Apr-2018 |
Gerrit Uitslag <klapinklapin@gmail.com> |
typo |
| 306daa10 | 30-Apr-2018 |
Andreas Gohr <andi@splitbrain.org> |
link to avanced geshi options. fixes #2352 |
| e6686e88 | 28-Apr-2018 |
Andreas Gohr <andi@splitbrain.org> |
fixed wrong quoting
Used the wrong quotes to split up the string. But actually, we can just use a linebreak. Doesn't matter for HTML. |
| 36dc94bb | 28-Apr-2018 |
Andreas Gohr <andi@splitbrain.org> |
split out parser modes into their own files
This moves all the parser classes into their own namespace and files. Next up are the handler classes.
I'm not sure about the namespace, yet. A nested na
split out parser modes into their own files
This moves all the parser classes into their own namespace and files. Next up are the handler classes.
I'm not sure about the namespace, yet. A nested namepspace Parser\Modes would probably make more sense... we'll see.
This also removes the duplicated coded in the Plugin mode. We now use the plugin trait and can inherit from AbstractMode instead.
show more ...
|
| de369923 | 28-Apr-2018 |
Andreas Gohr <andi@splitbrain.org> |
visibility definition for the renderers
I made a lot of things public that probaly should be protected. But many syntax plugins do access renderer mechanisms directly, so better stay on the safe sid
visibility definition for the renderers
I made a lot of things public that probaly should be protected. But many syntax plugins do access renderer mechanisms directly, so better stay on the safe side here.
The base renderer is now abstract.
show more ...
|
| d2778ca9 | 27-Apr-2018 |
Andreas Gohr <andi@splitbrain.org> |
correctly autoload the parser stuff |