summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* translation updateFabio2014-08-09
|
* Merge pull request #831 from dokuwiki-translate/lang_update_127Andreas Gohr2014-08-07
|\ | | | | Translation update (ru)
| * translation updateIgor Degraf2014-08-07
| |
* | Merge pull request #832 from dokuwiki-translate/lang_update_128Andreas Gohr2014-08-07
|\ \ | |/ |/| Translation update (ru)
| * translation updateIgor Degraf2014-08-07
|/
* Merge pull request #827 from splitbrain/canonical-rootAnika Henke2014-08-03
|\ | | | | Set canonical URL to root when on start page
| * set canonical URL to root when on start pageAnika Henke2014-08-02
|/
* updated dates in info.txt of various plugins and templateAnika Henke2014-08-02
|
* Merge pull request #825 from dokuwiki-translate/lang_update_123Andreas Gohr2014-08-02
|\ | | | | Translation update (zh-tw)
| * translation updateStan2014-08-02
|/
* Merge pull request #824 from dokuwiki-translate/lang_update_119Andreas Gohr2014-08-01
|\ | | | | Translation update (de)
| * translation updateDominik Mahr2014-08-01
|/
* Merge pull request #820 from dokuwiki-translate/lang_update_118Andreas Gohr2014-07-30
|\ | | | | Translation update (bn)
| * translation updateninetailz2014-07-30
| |
* | better NS check in media_deleteAndreas Gohr2014-07-30
|/ | | | as discussed in 22db8df7a2f043e38437a49bb327354b2a296bf0
* recheck auth in media_deleteAndreas Gohr2014-07-30
| | | | | | Sometime the passed AUTH was not correct. This is a quick fix, but the whole media manager handling is one stining pile of crap that needs a major rewrite.
* fix mediamanager messages. closes #792Andreas Gohr2014-07-30
|
* Merge pull request #788 from splitbrain/jqueryAndreas Gohr2014-07-30
|\ | | | | update jquery and jquery-ui
| * upgrade to jQuery 1.11.1 and jQuery-UI 1.11.0. #778Andreas Gohr2014-07-04
| | | | | | | | | | | | | | | | | | This now pulls all data from official jQuery sources. Either their CDN or their github account. Google tends to serve outdated or even broken files :-( Unfortunately there's no simple way to get the latest stable jQuery-UI so for now the version has to be adjusted manually in the script.
* | Merge pull request #818 from jurrehart/issue#740Andreas Gohr2014-07-29
|\ \ | | | | | | Issue #740 quick simple fix
| * | Update template.phpJurgen2014-07-29
| | | | | | | | | Removed creation of <meta name="date" as suggested in issue #740 thread
* | | Merge pull request #819 from dokuwiki-translate/lang_update_117Andreas Gohr2014-07-29
|\ \ \ | |/ / |/| | Translation update (bn)
| * | translation updateninetailz2014-07-29
|/ /
* | HTTPClient don't omit headers with value 0Andreas Gohr2014-07-28
| |
* | Merge pull request #813 from dokuwiki-translate/lang_update_112Andreas Gohr2014-07-28
|\ \ | | | | | | Translation update (ta)
| * | translation updateNaveen Venugopal2014-07-26
| | |
* | | fix AUTH_USER_CHANGE event in profile updatesAndreas Gohr2014-07-26
|/ / | | | | | | | | the triggered event did not allow event handlers to change the passed data
* | another try and configuring travisAndreas Gohr2014-07-24
| |
* | allow PHP 5.6 to failAndreas Gohr2014-07-24
| |
* | run tests against PHP 5.6 as wellAndreas Gohr2014-07-24
| |
* | Merge pull request #809 from dokuwiki-translate/lang_update_105Andreas Gohr2014-07-21
|\ \ | | | | | | Translation update (ta)
| * | translation updateNaveen Venugopal2014-07-21
|/ /
* | Merge pull request #807 from dokuwiki-translate/lang_update_100Andreas Gohr2014-07-20
|\ \ | | | | | | Translation update (ta)
| * | translation updateNaveen Venugopal2014-07-20
|/ /
* | Merge pull request #801 from splitbrain/semicolonwinapacheAndreas Gohr2014-07-18
|\ \ | | | | | | not encode semicolon in idfilter()
| * | not encode semicolon in idfilter.Gerrit Uitslag2014-07-15
| | | | | | | | | | | | Restores vanished changes of #84
* | | skip cache test until #694 has been fixedAndreas Gohr2014-07-18
| | |
* | | Merge pull request #803 from dokuwiki-translate/lang_update_98Andreas Gohr2014-07-17
|\ \ \ | |/ / |/| | Translation update (hr)
| * | translation updateDavor Turkalj2014-07-17
|/ /
* | add PHPDocs in html.phpGerrit Uitslag2014-07-15
| |
* | Merge pull request #798 from dokuwiki-translate/lang_update_93Andreas Gohr2014-07-12
|\ \ | | | | | | Translation update (th)
| * | translation updateYuthana Tantirungrotechai2014-07-12
|/ /
* | Merge pull request #796 from dokuwiki-translate/lang_update_92Andreas Gohr2014-07-12
|\ \ | | | | | | Translation update (ja)
| * | translation updateHideaki SAWADA2014-07-12
|/ /
* | Merge pull request #794 from dokuwiki-translate/lang_update_88Andreas Gohr2014-07-10
|\ \ | | | | | | Translation update (hr)
| * | translation updateDavor Turkalj2014-07-10
|/ /
* | Merge pull request #789 from dokuwiki-translate/lang_update_77Andreas Gohr2014-07-05
|\ \ | | | | | | Translation update (ta)
| * | translation updateNaveen Venugopal2014-07-05
|/ /
* | Merge pull request #755 from projectgus/masterAndreas Gohr2014-07-05
|\ \ | | | | | | authplain: Escape ':'s that appear in the pwhash string
| * | authplain: Escape ':' in any data field as '\:'Angus Gratton2014-07-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ':' is the field delimiter in the authplain flat text conf/users.auth.php file, but it's also used as an internal delimiter for the 'mediawiki' password hash format. Currently using this hash format corrupts the file This change escapes ':' as '\:' in any field in the users.auth.php file, and any '\' as '\\'. Also adds test cases for escaping modes.