summaryrefslogtreecommitdiff
path: root/inc
Commit message (Collapse)AuthorAge
* Use original filename for Content-DispositionGerry Weißbach2014-01-27
| | | In most cases this change will have no effect, but noes the response will use the filename that was originally requested. The downloaded filename can be modified to something different as well. E.g. the siteexport plugin will make use of it.
* Merge pull request #514 from dokuwiki-translate/lang_update_39Andreas Gohr2014-01-25
|\ | | | | Translation update (sk)
| * translation updateMartin Michalek2014-01-25
| |
* | Merge pull request #511 from dokuwiki-translate/lang_update_33Andreas Gohr2014-01-23
|\ \ | | | | | | Translation update (pl)
| * | translation updatePaweł Jan Czochański2014-01-22
| |/
* | rename render() to render_text() in Doku_Plugin. #496Andreas Gohr2014-01-22
| |
* | add missing autoloader entry for Doku_Parser_Mode_Plugin #496Andreas Gohr2014-01-22
| |
* | Merge pull request #510 from dokuwiki-translate/lang_update_30Andreas Gohr2014-01-22
|\ \ | | | | | | Translation update (el)
| * | translation updatecross2014-01-22
| |/
* / translation updatePaweł Jan Czochański2014-01-21
|/
* Merge pull request #496 from splitbrain/plugindedupAndreas Gohr2014-01-19
|\ | | | | remove some code duplication from syntax plugins
| * reintroduce a tiny bit of duplicationAndreas Gohr2014-01-07
| | | | | | | | | | | | | | | | | | | | 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.
| * remove duplicate plugin code for syntax pluginsAndreas Gohr2014-01-07
| | | | | | | | | | | | | | | | | | | | 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.
* | Merge pull request #493 from splitbrain/acleventAndreas Gohr2014-01-19
|\ \ | | | | | | AUTH_ACL_CHECK event around ACL checking
| * | AUTH_ACL_CHECK event around ACL checkingAndreas Gohr2014-01-05
| | | | | | | | | | | | | | | allows to modify ACL results in the AFTER event or to implement a completely different ACL mechanism in the BEFORE event.
* | | Merge pull request #454 from lisps/resize_image-heightAndreas Gohr2014-01-19
|\ \ \ | | | | | | | | Resize image by height
| * | | fix indentlisps2013-11-27
| | | |
| * | | media image can be resized by height (without width)lisps2013-11-27
| | | |
* | | | Merge branch 'extension_manager'Andreas Gohr2014-01-19
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * extension_manager: (71 commits) added plugins group to test show a message when search returns no results added missing localization better filename parsing use DOKU_LF remove unneeded try/catch blocks typo fix purge cache only once on install check for admin in AJAX backend now use new core funtion to recursively delete added status to info list of extension plugin added css and html changes for RTL scripts to extension manager added basic mobile styles to extension manager (not great, but makes things at least readable) fixed and improved some HTML in extension manager added git warning fixed strict standard error and added some docblock removed the old plugin manager typo fix protect authplain and current auth plugin do not show updates for bundled plugins ... Conflicts: lib/plugins/plugin/lang/hu/admin_plugin.txt lib/plugins/plugin/lang/hu/lang.php
| * \ \ \ Merge branch 'recursivedelete' into extension_managerAndreas Gohr2014-01-06
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * recursivedelete: added tests for io_rmdir added recursive delete function to io.php
| * \ \ \ \ Merge remote-tracking branch 'origin/master' into extension_managerAnika Henke2014-01-05
| |\ \ \ \ \ | | | |_|/ / | | |/| | |
| * | | | | Merge branch 'master' into extension_managerAndreas Gohr2013-08-11
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (33 commits) translation update translation update translation update translation update translation update changed style of `<file>` slightly to help tell it apart from `<code>` translation update translation update translation update translation update translation update translation update translation update removed now unused interwiki icons removed old, possibly never used interwiki definitions FS#2806 - fix auth capability listing in html_debug() translation update change 'debug' setting to 'security' (rather than 'danger') convert from iso-8859-1 if not utf8 add 'danger' alert to authpgsql config settings ...
| * | | | | | make extension manager the default pluginAndreas Gohr2013-08-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This moves the old plugin manager down to the "other" plugins. It should probably be removed when when we decide the new one is good to go.
* | | | | | | check for false in readdirAndreas Gohr2014-01-19
| | | | | | |
* | | | | | | Merge pull request #494 from splitbrain/recursivedeleteAndreas Gohr2014-01-19
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Recursive delete function
| * | | | | | | treat non-existing files as success on deleteAndreas Gohr2014-01-06
| | |_|_|/ / / | |/| | | | |
| * | | | | | added recursive delete function to io.phpAndreas Gohr2014-01-06
| | |_|/ / / | |/| | | |
* | | | | | Merge pull request #506 from dokuwiki-translate/lang_update_18Dominik Eckelmann2014-01-19
|\ \ \ \ \ \ | | | | | | | | | | | | | | Translation update (ru)
| * | | | | | translation updateErli Moen2014-01-19
| | | | | | |
* | | | | | | translation updateMarina Vladi2014-01-19
|/ / / / / /
* | | | | | translation updatereza_khn2014-01-16
| | | | | |
* | | | | | Adjust and correct translations in Romanian text filesRazvan Deaconescu2014-01-16
| | | | | |
* | | | | | Make minor corrections to Romanian language fileRazvan Deaconescu2014-01-16
| | | | | |
* | | | | | translation updateoott1232014-01-12
| | | | | |
* | | | | | fix renderer:plugin() signatureAndreas Gohr2014-01-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | | php doc blockAndreas Gohr2014-01-08
| | | | | |
* | | | | | removed some unused parameters, fixed some docblocksAndreas Gohr2014-01-07
| |_|_|_|/ |/| | | | | | | | | | | | | | this file makes me cry. there is so much shit going on here.
* | | | | removed superflous parameterAndreas Gohr2014-01-07
| | | | |
* | | | | removed superflous parameterAndreas Gohr2014-01-07
|/ / / /
* | | | translation updatealhajr2014-01-05
| | | |
* | | | Merge pull request #485 from dokuwiki-translate/lang_update_613Andreas Gohr2014-01-02
|\ \ \ \ | | | | | | | | | | Translation update (bg)
| * | | | translation updateIvan Peltekov2013-12-31
| | | | |
* | | | | Merge pull request #487 from dokuwiki-translate/lang_update_618Andreas Gohr2014-01-02
|\ \ \ \ \ | | | | | | | | | | | | Translation update (ar)
| * | | | | translation updatealhajr2014-01-01
| | | | | |
* | | | | | translation updatetomer2014-01-01
|/ / / / /
* / / / / translation updatematt carroll2013-12-31
|/ / / /
* | | | translation updateHans Iwan Bratt2013-12-24
| | | |
* | | | translation updateDương Văn Hoàng2013-12-19
| | | |
* | | | translation updategicalle2013-12-16
| | | |
* | | | Merge pull request #436 from rotdrop/masterAndreas Gohr2013-12-15
|\ \ \ \ | | | | | | | | | | Provide an XMLRPC logoff method.