Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | readded cookie to styling plugin | Andreas Gohr | 2015-07-18 |
| | |||
* | added labels to form entries | Anika Henke | 2015-07-07 |
| | |||
* | improved various minor frontend issues in styling plugin | Anika Henke | 2015-07-07 |
| | | | | | | | | | * improved spacing of popup * made primary buttons clearer * xhtml and validity fixes * improved some lang strings * moved 'open as popup' after intro * fixed page reload after clicking 'open as popup' button | ||
* | reset page back to normal on closing dialog | Andreas Gohr | 2015-06-26 |
| | |||
* | removed no longer needed ajax action components | Andreas Gohr | 2015-06-26 |
| | |||
* | added a simple loading screen for the JavaScript preview | Andreas Gohr | 2015-06-26 |
| | |||
* | changed the whole thing to a real popup | Andreas Gohr | 2015-06-26 |
| | |||
* | fixes various probelms mentioned in #1163 | Andreas Gohr | 2015-06-26 |
| | | | | however I think I will convert the dialog to a real popup instead. | ||
* | Merge branch 'master' into styler | Andreas Gohr | 2015-06-26 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (26 commits) translation update translation update Replace old constructor call by __construct() in dokuwiki_xmlrpc_server translation update change two spaces to a space translation update translation update translation update translation update Upgrade to jQuery 1.11.3 and jQueryUI 1.11.4 closes #1175 update confToHash() inline documentation for new parameter translation update Plugins can send usage data fixed isBundled() check when remote info is unavailable avoid accessing nonexistant array key. fixes #1165 translation update Define the negation character in a constant Ensure single value negation is not affected by white space differences Ensure filtering only removes empty string values (not other values which PHP evaluates to false) translation update ... | ||
| * | Merge pull request #1197 from dokuwiki-translate/lang_update_14 | Anika Henke | 2015-06-14 |
| |\ | | | | | | | Translation update (it) | ||
| | * | translation update | Maurizio | 2015-06-14 |
| | | | |||
| * | | change two spaces to a space | Myeongjin | 2015-06-13 |
| |/ | | | | | In line 5 and 6, Message have two spaces, so I change them to a space. | ||
| * | translation update | hyeonsoft | 2015-06-11 |
| | | |||
| * | translation update | Hendrik Diel | 2015-06-07 |
| | | |||
| * | translation update | Ikuo Obataya | 2015-05-28 |
| | | |||
| * | Merge pull request #1150 from gturri/autosubmit_plugin3 | Andreas Gohr | 2015-05-27 |
| |\ | | | | | | | Plugins can send usage data | ||
| | * | Plugins can send usage data | Guillaume Turri | 2015-05-27 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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'); } | ||
| * | | fixed isBundled() check when remote info is unavailable | Andreas Gohr | 2015-05-25 |
| | | | |||
| * | | translation update | Noel Tilliot | 2015-05-18 |
| | | | |||
| * | | update test groups for the extension manager test | Christopher Smith | 2015-05-17 |
| | | | |||
| * | | php7 compatibility: change revert plugin constructor to __construct | Christopher Smith | 2015-05-16 |
| | | | |||
* | | | removed debuggin output | Andreas Gohr | 2015-05-25 |
| | | | |||
* | | | removed unused class | Andreas Gohr | 2015-05-25 |
| | | | |||
* | | | improved copy for styler plugin | Anika Henke | 2015-05-25 |
| | | | |||
* | | | Scrutinizer Auto-Fixes | Scrutinizer Auto-Fixer | 2015-05-23 |
| | | | | | | | | | | | | This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com | ||
* | | | avoid double ampersand in url | Andreas Gohr | 2015-05-23 |
| | | | |||
* | | | fixed ajax endpoint for styling plugin | Andreas Gohr | 2015-05-23 |
| | | | |||
* | | | renamed plugin from styler to styling | Andreas Gohr | 2015-05-23 |
| | | | | | | | | | | | | styler was already taken | ||
* | | | autopreview in styler plugin | Andreas Gohr | 2015-05-17 |
| | | | |||
* | | | allow resizing the dialog | Andreas Gohr | 2015-05-17 |
| | | | |||
* | | | fix keeping the current page | Andreas Gohr | 2015-05-17 |
| | | | |||
* | | | added more localization | Andreas Gohr | 2015-05-17 |
| | | | |||
* | | | added color picker support | Andreas Gohr | 2015-05-17 |
| | | | | | | | | | | | | I'm not too hapy with it | ||
* | | | started to localize the styler plugin | Andreas Gohr | 2015-05-17 |
| | | | |||
* | | | make styler work without JS as well | Andreas Gohr | 2015-05-17 |
| | | | |||
* | | | make styler plugin work without javascript as well (partly done) | Andreas Gohr | 2015-05-17 |
| | | | |||
* | | | more improvements | Andreas Gohr | 2015-05-16 |
| | | | |||
* | | | we have working save and revert buttons | Andreas Gohr | 2015-05-16 |
| | | | |||
* | | | a first very basic implementation of the preview mechanism | Andreas Gohr | 2015-05-16 |
|/ / | |||
* | | Merge pull request #1154 from splitbrain/php7compatibility | Andreas Gohr | 2015-05-16 |
|\ \ | | | | | | | Php7compatibility | ||
| * | | Changes for PHP 7 Compatibility | Christopher Smith | 2015-05-15 |
| |/ | | | | | | | | | | | | | - replace PHP4 style class constructor function names (based on class name) with php 5 __construct() Also remove some '&' reference operators used with objects And add some object type hints | ||
* | | Merge pull request #1152 from splitbrain/composer | Andreas Gohr | 2015-05-16 |
|\ \ | | | | | | | Use composer to add 3rd party libs | ||
| * | | added composer setup and the first composer package php-archive | Andreas Gohr | 2015-05-15 |
| |/ | |||
* | | Merge pull request #1113 from gamma/extension_manager | Andreas Gohr | 2015-05-16 |
|\ \ | |/ |/| | Add display options to extension manger | ||
| * | Adhere to CSS style guide | Gerry Weißbach | 2015-05-08 |
| | | |||
| * | Merge commit '9234bce90e1297ac66acc321827cb0f832864fe4' into extension_manager | Gerry Weißbach | 2015-05-07 |
| |\ | |||
| * | | Add class name using tab name | Gerry Weißbach | 2015-05-07 |
| | | | |||
| * | | Change ID name | Gerry Weißbach | 2015-05-07 |
| | | | |||
| * | | Merge branch 'master' of https://github.com/splitbrain/dokuwiki into ↵ | Gerry Weißbach | 2015-05-06 |
| |\ \ | | | | | | | | | | | | | extension_manager | ||
| * | | | Allow Viewing Options for templates as well. | Gerry Weißbach | 2015-05-04 |
| | | | |