| 6a7af1cc | 07-Jun-2015 |
Hendrik Diel <diel.hendrik@gmail.com> |
translation update |
| 9b886e96 | 04-Jun-2015 |
İlker R. Kapaç <irifat@gmail.com> |
translation update |
| 9725524b | 31-May-2015 |
Pavel <pavelholovko@yandex.ru> |
translation update |
| d93ba631 | 29-May-2015 |
Patrick Brown <ptbrown@whoopdedo.org> |
Rephrase description of io_replaceInFiles to be clarify use of regex |
| dc4a4eb0 | 29-May-2015 |
Patrick Brown <ptbrown@whoopdedo.org> |
Abort io_replaceInLine when the search parameter is empty |
| e12c5ac7 | 29-May-2015 |
Christopher Smith <chris@jalakai.co.uk> |
Minor Refactoring - put test comments in more appropriate spot - move appending replacement line alongside its search/delete code |
| 3dfe7d64 | 29-May-2015 |
Christopher Smith <chris@jalakai.co.uk> |
add anchors when constructing pattern from a non-regex oldline |
| 2b2b4cfe | 29-May-2015 |
Andreas Gohr <andi@splitbrain.org> |
Upgrade to jQuery 1.11.3 and jQueryUI 1.11.4 closes #1175 |
| 9a734b7a | 28-May-2015 |
Christopher Smith <chris@jalakai.co.uk> |
Refactor code to make it simpler. The changes should also: - fix unlikely edge case when replacement line is the same as the old line (would have resulted in timeout) - reduce memory footprint - av
Refactor code to make it simpler. The changes should also: - fix unlikely edge case when replacement line is the same as the old line (would have resulted in timeout) - reduce memory footprint - avoid applying string search beyond maxlines replacement limit
show more ...
|
| 4286c64e | 28-May-2015 |
Christopher Smith <chris@jalakai.co.uk> |
update confToHash() inline documentation for new parameter |
| edc61c3a | 28-May-2015 |
Ikuo Obataya <i.obataya@gmail.com> |
translation update |
| 5875e534 | 15-May-2015 |
Guillaume Turri <guillaume.turri@gmail.com> |
Plugins can send usage data
They just need to register to the PLUGIN_USAGE_DATA event, and then to add either a simple string, or an array of key / value. For example:
function register(Doku_Ev
Plugins can send usage data
They just need to register to the PLUGIN_USAGE_DATA event, and then to add either a simple string, or an array of key / value. For example:
function register(Doku_Event_Handler $controller) { $controller->register_hook('PLUGIN_USAGE_DATA', 'AFTER', $this, 'usage_data'); }
function usage_data(&$event){ $event->data['my_plugin_name'] = 'my usage data';
//or: $event->data['my_plugin_name'] = array ('k1' => 'v1', 'k2' => 'v2'); }
show more ...
|
| 18f4ec97 | 25-May-2015 |
Andreas Gohr <andi@splitbrain.org> |
fixed isBundled() check when remote info is unavailable |
| 5114259b | 25-May-2015 |
Andreas Gohr <andi@splitbrain.org> |
removed accidental checkin
|
| f969573b | 25-May-2015 |
Andreas Gohr <andi@splitbrain.org> |
removed debuggin output |
| 418cb617 | 25-May-2015 |
Andreas Gohr <andi@splitbrain.org> |
removed unused class |
| 8b3eb08d | 25-May-2015 |
Andreas Gohr <andi@splitbrain.org> |
adjusted gitignore for adjusted plugin name |
| 23a5593c | 24-May-2015 |
Anika Henke <anika@selfthinker.org> |
improved copy for styler plugin |
| e4632ba4 | 23-May-2015 |
Scrutinizer Auto-Fixer <auto-fixer@scrutinizer-ci.com> |
Scrutinizer Auto-Fixes
This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com |
| 49f11135 | 23-May-2015 |
Andreas Gohr <andi@splitbrain.org> |
avoid double ampersand in url |
| 4f2e8bf8 | 23-May-2015 |
Andreas Gohr <andi@splitbrain.org> |
fixed ajax endpoint for styling plugin |
| 123bc813 | 23-May-2015 |
Andreas Gohr <andi@splitbrain.org> |
renamed plugin from styler to styling
styler was already taken |
| bdca103a | 22-May-2015 |
Andreas Gohr <andi@splitbrain.org> |
avoid accessing nonexistant array key. fixes #1165 |
| d242ec8c | 22-May-2015 |
Tomas Darius Davainis <tomasdd@gmail.com> |
translation update |
| 10b38f10 | 18-May-2015 |
Christopher Smith <chris@jalakai.co.uk> |
Define the negation character in a constant |