summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* 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 tests for io_rmdirAndreas 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
| | |
* | | Merge pull request #507 from dokuwiki-translate/lang_update_19Dominik Eckelmann2014-01-19
|\ \ \ | |/ / |/| | Translation update (hu)
| * | translation updateMarina Vladi2014-01-19
|/ /
* | Merge pull request #501 from dokuwiki-translate/lang_update_13Andreas Gohr2014-01-17
|\ \ | | | | | | Translation update (fa)
| * | translation updatereza_khn2014-01-16
|/ /
* | Merge pull request #500 from razvand/masterAndreas Gohr2014-01-16
|\ \ | | | | | | Corrections in Romanian language files
| * | Adjust and correct translations in Romanian text filesRazvan Deaconescu2014-01-16
| | |
| * | Make minor corrections to Romanian language fileRazvan Deaconescu2014-01-16
|/ /
* | Merge pull request #498 from dokuwiki-translate/lang_update_3Dominik Eckelmann2014-01-12
|\ \ | | | | | | Translation update (zh)
| * | 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
| |
* | drop code coverage for nowAndreas Gohr2014-01-07
| | | | | | | | | | | | | | | | | | | | | | Something is broken on travis-ci.org regarding the max execution time limit and code coverage generation. I have no clue how to solve this, so I remove this again for test completion's sake. Please chime in with ideas at * https://github.com/travis-ci/travis-ci/issues/1837 * http://stackoverflow.com/q/20972248/172068
* | another travis config changeAndreas Gohr2014-01-07
| |
* | integrate code coverage reports in scrutinizer-ciAndreas Gohr2014-01-06
|/ | | | not sure if we end up using it
* fixed error in .travis.ymlAndreas Gohr2014-01-05
|
* notify IRC on change onlyAndreas Gohr2014-01-05
|
* also notify IRC channelAndreas Gohr2014-01-05
|
* display more info on travis testsAndreas Gohr2014-01-05
|
* try testing dokuwiki on travis-ciAndreas Gohr2014-01-05
|
* Merge pull request #491 from dokuwiki-translate/lang_update_636Dominik Eckelmann2014-01-05
|\ | | | | Translation update (ar)
| * translation updatealhajr2014-01-05
|/
* removed invalid source mappingsAndreas Gohr2014-01-03
| | | | | | Minified jQuery contains a source mapping hint that will result in a 404 in Chrome. I removed the hint for now. A better solution (eg. fixing the mapping URL) should be found.
* Merge pull request #484 from gturri/patch-1Andreas Gohr2014-01-02
|\ | | | | Fixed typo
| * Fixed typoGuillaume Turri2013-12-29
| |
* | 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
| | |
* | | Merge pull request #490 from dokuwiki-translate/lang_update_625Andreas Gohr2014-01-02
|\ \ \ | |/ / |/| | Translation update (he)
| * | translation updatetomer2014-01-01
|/ /
* | Merge pull request #486 from dokuwiki-translate/lang_update_614Dominik Eckelmann2013-12-31
|\ \ | |/ |/| Translation update (he)
| * translation updatematt carroll2013-12-31
|/
* Merge pull request #479 from dokuwiki-translate/lang_update_608Anika Henke2013-12-25
|\ | | | | Translation update (sv)
| * translation updateHans Iwan Bratt2013-12-24
|/
* Merge pull request #477 from dokuwiki-translate/lang_update_604Andreas Gohr2013-12-18
|\ | | | | Translation update (vi)
| * translation updateDương Văn Hoàng2013-12-19
|/
* Merge pull request #476 from dokuwiki-translate/lang_update_592Andreas Gohr2013-12-16
|\ | | | | Translation update (nl)
| * translation updategicalle2013-12-16
|/
* Merge pull request #436 from rotdrop/masterAndreas Gohr2013-12-15
|\ | | | | Provide an XMLRPC logoff method.
| * Increase also the API version.Claus-Justus Heine2013-11-24
| |
| * Prepare an XMLRPC logoff method. Rationale: XMLRPC is thought forClaus-Justus Heine2013-11-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | script, which typically should not store their authentication cookies on disk. However: 1st: DW cannot tell if an external script is in this respect well-behaved. 2nd: it does not hurt to provide means for a voluntary log-out. There are, BTW, two parts of authentication data: one is stored in the cookie-storage of the client, and the other part is stored in the session data of the DW instance on the server. This logoff call is responsible for invalidating the credentials stored on the server, regardless of any cookie data remaining (or being stolen) on the client side.