| 4bb2fc4a | 25-May-2017 |
Andreas Gohr <andi@splitbrain.org> |
overwrite item properties in constructor only
Othewise weird side effects may happen when a parent constructor overwrites them again. |
| 90f7713e | 25-May-2017 |
Andreas Gohr <andi@splitbrain.org> |
check file existance before autoloading
Even for our own namespace, file existance should be checked before attempting to load it. Otherwise class_exist() check will throw errors. |
| 48555a30 | 25-May-2017 |
Andreas Gohr <andi@splitbrain.org> |
added tests for legacy function tpl_get_action()
I want to make this function use the new Menu Items, these tests should ensure I don't break functionality. |
| 5e964d2b | 25-May-2017 |
LarsDW223 <lars_paulsen@web.de> |
Corrected external link syntax, now requires preceding whitespace. Fixes #936. |
| 1534dc5b | 25-May-2017 |
Andreas Gohr <andi@splitbrain.org> |
make Doku_Form members public again. fixes #1982
Various plugins access the form members directly currently. |
| 9bda387a | 24-May-2017 |
LarsDW223 <lars_paulsen@web.de> |
Corrected internal link pattern to properly handle included square brackets. Fixes #829. |
| 4875c354 | 24-May-2017 |
Andreas Gohr <gohr@cosmocode.de> |
avoid double encoding of generated URLs
getLink() now no longer escapes ampersands - this is task of the code producing the HTML. When using asHtmlLink(), buildAttributes() will take care of the esc
avoid double encoding of generated URLs
getLink() now no longer escapes ampersands - this is task of the code producing the HTML. When using asHtmlLink(), buildAttributes() will take care of the escaping for you.
show more ...
|
| e5226905 | 24-May-2017 |
Andreas Gohr <gohr@cosmocode.de> |
fix do parameter of revisions type |
| e2d88156 | 23-May-2017 |
LarsDW223 <lars_paulsen@web.de> |
Added support for additional geshi options using an extendable options array. |
| 617a2b42 | 23-May-2017 |
Davor Turkalj <turki.bsc@gmail.com> |
translation update |
| f6796c6e | 23-May-2017 |
Peter Mosmans <support@go-forward.net> |
Fix minor typo in the distributed user configuration |
| 79fdbafc | 20-May-2017 |
LarsDW223 <lars_paulsen@web.de> |
Adjusted pattern for matching media links to properly handle a single '}' in the link text. Fixes #1587. |
| 9ea3d483 | 20-May-2017 |
LarsDW223 <lars_paulsen@web.de> |
Added green and red text color styles for geshi. Improves look of highlighted code for language diff. Fixes #900. |
| 1e875dcd | 19-May-2017 |
Andreas Gohr <andi@splitbrain.org> |
let tpl_action_dropdown use the MobileMenu |
| 368ce258 | 19-May-2017 |
Andreas Gohr <andi@splitbrain.org> |
more doc blocks for the menu system |
| b3680c4f | 19-May-2017 |
Andreas Gohr <andi@splitbrain.org> |
added mobile menu
This basically reimplements tpl_action_dropdown but makes use of the other menus (by setting the context to mobile) and thus still triggers the appropriate events. This makes #1598
added mobile menu
This basically reimplements tpl_action_dropdown but makes use of the other menus (by setting the context to mobile) and thus still triggers the appropriate events. This makes #1598 obsolete.
tpl_action_dropdown (and the other tpl_action* methods) still need to be replaced to make use of the new Menu system.
show more ...
|
| 8c51da59 | 19-May-2017 |
Andreas Gohr <andi@splitbrain.org> |
remove unused $category property |
| 2f7a5efd | 19-May-2017 |
Andreas Gohr <andi@splitbrain.org> |
use menu for site tools
this adds an option to print the menu without icons (as we do in the dokuwiki template) but icons were added nontheless |
| b85a7f3b | 19-May-2017 |
Andreas Gohr <andi@splitbrain.org> |
use menu system for user tools
also adjusts styles and adds images |
| 7c844e0e | 19-May-2017 |
Andreas Gohr <andi@splitbrain.org> |
fixed icons for edit action |
| c3766a92 | 19-May-2017 |
Andreas Gohr <andi@splitbrain.org> |
fixed typo |
| 17ef2ab6 | 19-May-2017 |
Andreas Gohr <andi@splitbrain.org> |
use the new menu classes in DokuWiki template |
| c2b9771a | 19-May-2017 |
Andreas Gohr <andi@splitbrain.org> |
fix base dir for images |
| 3e2fa388 | 19-May-2017 |
Andreas Gohr <andi@splitbrain.org> |
menu SVGs now become proper part of core
all menu items should have a default SVG. Template authors then can decide if they want to use them or not.
These are only the page tool SVGs. More need to
menu SVGs now become proper part of core
all menu items should have a default SVG. Template authors then can decide if they want to use them or not.
These are only the page tool SVGs. More need to be added.
show more ...
|
| 93b8c351 | 19-May-2017 |
Andreas Gohr <andi@splitbrain.org> |
beginning of a complete refactoring of the menues
This is an attempt to:
* get rid of the super long, complex functions in in/template.php * make it easy for plugin authors to add their own items t
beginning of a complete refactoring of the menues
This is an attempt to:
* get rid of the super long, complex functions in in/template.php * make it easy for plugin authors to add their own items to any of our menus, regardless of the used template * continue the progress to make use of SVG in the menues
This takes a similar approach as my actionrefactor branch. Originially I thought both refactorings could be done in one, merging the functionality of DokuWiki actions and the menu items. However I couldn't make it work. So instead we have two separate but similar things. Maybe they can converge later on.
show more ...
|