| ceb99d95 | 17-Jan-2014 |
Gerrit Uitslag <klapinklapin@gmail.com> |
move getSearchterm to overrideable method |
| f9328d30 | 16-Jan-2014 |
Gerrit Uitslag <klapinklapin@gmail.com> |
Reformat qsearch.js |
| 7647d877 | 16-Jan-2014 |
Gerrit Uitslag <klapinklapin@gmail.com> |
Made a jquery function of dw_qsearch |
| 74c7fac3 | 16-Jan-2014 |
reza_khn <reza_khn@yahoo.com> |
translation update |
| a1fe6c87 | 16-Jan-2014 |
Razvan Deaconescu <razvan.deaconescu@cs.pub.ro> |
Adjust and correct translations in Romanian text files |
| e7ad28d2 | 16-Jan-2014 |
Razvan Deaconescu <razvan.deaconescu@cs.pub.ro> |
Make minor corrections to Romanian language file |
| 30b90257 | 14-Jan-2014 |
Andreas Gohr <andi@splitbrain.org> |
added plugins group to test |
| b5f365b3 | 12-Jan-2014 |
Michael Hamann <michael@content-space.de> |
dokuwiki template: Fix the preview width on small screens FS#2914 |
| 7264d332 | 12-Jan-2014 |
oott123 <ip.192.168.1.1@qq.com> |
translation update |
| 8cc41db0 | 08-Jan-2014 |
Andreas Gohr <andi@splitbrain.org> |
fix renderer:plugin() signature
in 82d616353e4c3680d88f083eb6f88fe68de92904 we introduced passing the raw match for syntax plugins to the plugin method of the renderer. This was introduced for rende
fix renderer:plugin() signature
in 82d616353e4c3680d88f083eb6f88fe68de92904 we introduced passing the raw match for syntax plugins to the plugin method of the renderer. This was introduced for renderer plugins that might need access to the raw syntax (like the table editor or WYSIWYG plugins). However the function signature was never updated, making these additional parameter basically secret. With strict standard this throws errors. This patch fixes this.
show more ...
|
| b1e75801 | 08-Jan-2014 |
Andreas Gohr <andi@splitbrain.org> |
show a message when search returns no results |
| c837868a | 08-Jan-2014 |
Andreas Gohr <andi@splitbrain.org> |
added missing localization |
| bc1b7a8a | 08-Jan-2014 |
Andreas Gohr <andi@splitbrain.org> |
better filename parsing
The filename found in the URL will be used for old plugins missing a base entry in their plugin.info.txt and lacking a subdirectory inside the archive as well. This patch mak
better filename parsing
The filename found in the URL will be used for old plugins missing a base entry in their plugin.info.txt and lacking a subdirectory inside the archive as well. This patch makes sure possible query strings aren't included in the filename.
Note: io_download() will also try to get a filename from any content-disposition header.
If no filename can be found we simply use an md5 sum of the URL and hope the plugin will contain it's own hint for naming.
show more ...
|
| 4bad83d8 | 08-Jan-2014 |
Andreas Gohr <andi@splitbrain.org> |
use DOKU_LF
PHP_EOL is platform dependent, so you get in trouble while migrating between platforms. |
| ec8911d4 | 08-Jan-2014 |
Andreas Gohr <andi@splitbrain.org> |
remove unneeded try/catch blocks
they were just catching and rethrowing |
| 99ba9fe6 | 08-Jan-2014 |
Andreas Gohr <gohr@cosmocode.de> |
php doc block |
| ebc28e69 | 07-Jan-2014 |
Andreas Gohr <andi@splitbrain.org> |
removed some unused parameters, fixed some docblocks
this file makes me cry. there is so much shit going on here. |
| 5a3e1f53 | 07-Jan-2014 |
Andreas Gohr <andi@splitbrain.org> |
reintroduce a tiny bit of duplication
This reads some duplication in the from of haveing a Doku_Parser_Mode and Doku_Parser_Mode_Plugin class which are basically the same but only the latter extends
reintroduce a tiny bit of duplication
This reads some duplication in the from of haveing a Doku_Parser_Mode and Doku_Parser_Mode_Plugin class which are basically the same but only the latter extends DokuWiki_Plugin. This avoids the performance/RAM problems mentioned in my previous commit. An interface keeps both logically together.
With PHP 5.4 further deduplication could be done via Traits.
show more ...
|
| 72d89f96 | 07-Jan-2014 |
Andreas Gohr <andi@splitbrain.org> |
remove duplicate plugin code for syntax plugins
This makes Doku_Parser_Mode inherit from DokuWiki_Plugin which allows for the removal of a bunch of duplicate code form DokuWiki_Syntax_Plugin. This m
remove duplicate plugin code for syntax plugins
This makes Doku_Parser_Mode inherit from DokuWiki_Plugin which allows for the removal of a bunch of duplicate code form DokuWiki_Syntax_Plugin. This makes the code easier to maintain and makes sure all DokuWiki plugins are actual instances of DokuWiki_Plugin.
However this adds a bunch of functions to the "normal" parser modes that don't need them which could have performance/RAM implications.
show more ...
|
| 1253a9dc | 07-Jan-2014 |
Andreas Gohr <andi@splitbrain.org> |
removed superflous parameter |
| ec2e4587 | 07-Jan-2014 |
Andreas Gohr <andi@splitbrain.org> |
removed superflous parameter |
| 2d4cf074 | 07-Jan-2014 |
Andreas Gohr <gohr@cosmocode.de> |
drop code coverage for now
Something is broken on travis-ci.org regarding the max execution time limit and code coverage generation. I have no clue how to solve this, so I remove this again for test
drop code coverage for now
Something is broken on travis-ci.org regarding the max execution time limit and code coverage generation. I have no clue how to solve this, so I remove this again for test completion's sake.
Please chime in with ideas at
* https://github.com/travis-ci/travis-ci/issues/1837 * http://stackoverflow.com/q/20972248/172068
show more ...
|
| eb8b5251 | 07-Jan-2014 |
Andreas Gohr <gohr@cosmocode.de> |
another travis config change |
| adaf2b89 | 06-Jan-2014 |
Andreas Gohr <andi@splitbrain.org> |
integrate code coverage reports in scrutinizer-ci
not sure if we end up using it |
| cf37525f | 06-Jan-2014 |
Andreas Gohr <andi@splitbrain.org> |
typo fix |