| 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 |
| 3a7669bd | 18-May-2015 |
Christopher Smith <chris@jalakai.co.uk> |
Ensure single value negation is not affected by white space differences |
| f266a919 | 18-May-2015 |
Christopher Smith <chris@jalakai.co.uk> |
Ensure filtering only removes empty string values (not other values which PHP evaluates to false) |
| a2237e34 | 18-May-2015 |
Noel Tilliot <noeltilliot@byom.de> |
translation update |
| d071b66c | 17-May-2015 |
Andreas Gohr <andi@splitbrain.org> |
autopreview in styler plugin |
| a93f9a7a | 17-May-2015 |
Andreas Gohr <andi@splitbrain.org> |
allow resizing the dialog |
| b1a864fe | 17-May-2015 |
Andreas Gohr <andi@splitbrain.org> |
fix keeping the current page |
| 9fb99099 | 17-May-2015 |
Andreas Gohr <andi@splitbrain.org> |
added more localization |
| e422a60a | 17-May-2015 |
Andreas Gohr <andi@splitbrain.org> |
added color picker support
I'm not too hapy with it |
| b9e2f054 | 17-May-2015 |
Christopher Smith <chris@jalakai.co.uk> |
update test groups for the extension manager test |
| 4c353447 | 17-May-2015 |
Christopher Smith <chris@jalakai.co.uk> |
Support negating of config values include earlier in the cascade To negate a config value, prefix the value with an '!'.
E.g. to disable recognition of the gopher scheme !gopher
This applies to: -
Support negating of config values include earlier in the cascade To negate a config value, prefix the value with an '!'.
E.g. to disable recognition of the gopher scheme !gopher
This applies to: - scheme - stopwords
show more ...
|
| 45ae4bb8 | 17-May-2015 |
Christopher Smith <chris@jalakai.co.uk> |
Add filtering to remove blank entries from key/value config retrieval This applies to: - acronyms - entities - interwiki - mime - smileys |