summaryrefslogtreecommitdiff
path: root/inc
Commit message (Collapse)AuthorAge
* fix function call in feedcreator FS#2805Andreas Gohr2013-07-12
| | | | the _redirect function is not used in DokuWiki anyway
* Informal German language updateVolker Bödker2013-07-12
|
* Merge pull request #225 from splitbrain/fetchftpAndreas Gohr2013-06-16
|\ | | | | Add media_isexternal
| * apply media_isexternal in ml()Klap-in2013-06-09
| |
| * Merge remote-tracking branch 'origin/master' into fetchftpKlap-in2013-06-09
| |\
| * | apply media_isexternalKlap-in2013-05-21
| | |
| * | Added media_isexternal()Klap-in2013-05-21
| | |
| * | Update phpdocs of checkFileStatusKlap-in2013-05-21
| | |
| * | Support handle of images from ftp.Klap-in2013-05-21
| | | | | | | | | | | | ml() can built url to these images, either fetch didn't accept them.
* | | Merge pull request #222 from hArpanet/patch-1Andreas Gohr2013-06-16
|\ \ \ | | | | | | | | Added comment to DiffFormatter _escape() method
| * | | Added comment to DiffFormatter _escape() methodhArpanet2013-05-20
| |/ / | | | | | | Clarify use of _escape() method in base class.
* | | removed tabsAndreas Gohr2013-06-16
| | |
* | | Merge pull request #180 from splitbrain/FS#2415Andreas Gohr2013-06-16
|\ \ \ | | | | | | | | FS#2415, add $INFO to mediamanager
| * \ \ Merge branch 'master' into FS#2415Christopher Smith2013-02-25
| |\ \ \
| * | | | fix missing 'subscribed' keyChristopher Smith2013-02-17
| | | | |
| * | | | FS#2415 add to mediamanager (refactor pageinfo() and shift ↵Christopher Smith2013-02-16
| | | | | | | | | | | | | | | | | | | | MEDIAMANAGER_STARTED after mediainfo() sets up )
* | | | | Merge pull request #230 from splitbrain/pwgen-eventAndreas Gohr2013-06-16
|\ \ \ \ \ | | | | | | | | | | | | AUTH_PASSWORD_GENERATE event added
| * | | | | Increased strength of auto generated passwords a bitAndreas Gohr2013-06-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If you want better random initialization and more control over the password strength install the passpolicy plugin.
| * | | | | fixed syntax fuckupAndreas Gohr2013-06-09
| | | | | |
| * | | | | AUTH_PASSWORD_GENERATE event addedAndreas Gohr2013-06-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is needed to replace the password generator by a plugin implementation. Related to PR #166 and FS#2147
* | | | | | Swedish language updateAndreas Gohr2013-06-16
| | | | | |
* | | | | | check for spam in summary as well, added common spam summaryAndreas Gohr2013-06-12
| |_|_|_|/ |/| | | |
* | | | | Merge pull request #223 from splitbrain/rootids_in_mlAndreas Gohr2013-06-08
|\ \ \ \ \ | |/ / / / |/| | | | Clean internal ids in ml(), that it matches with fetch.php
| * | | | Clean internal ids in ml(), that it matches with fetch.phpKlap-in2013-05-21
| | |_|/ | |/| | | | | | | | | | The resize token was broken because fetch.php cleans the id before the token calculation, while ml() uses the raw id
* | | | Korean language update이명진2013-06-07
| | | |
* | | | we now require PHP 5.2.0 at leastAndreas Gohr2013-06-02
| | | |
* | | | make password reset token completely randomAndreas Gohr2013-05-31
| | | | | | | | | | | | | | | | | | | | | | | | No need for HMAC here because there's no length attack vector here. We only care for the existance of the file and each reset request is completely (random) independent from each other.
* | | | use HMAC in password reset token FS#2794Andreas Gohr2013-05-31
| | | |
* | | | use HMAC for CSRF security tokens FS#2794Andreas Gohr2013-05-31
| | | |
* | | | use hmac for external ressource hash FS#2794Andreas Gohr2013-05-31
| | | |
* | | | use HMAC in media_token FS#2794Andreas Gohr2013-05-30
| | | |
* | | | added HMAC support to PassHash class FS#2794Andreas Gohr2013-05-30
| | | |
* | | | fixed wrong use of quotes in authtype warning messageAnika Henke2013-05-27
|/ / /
* | | Fix wrong config key in deprecated auth messageKlap-in2013-05-15
| | |
* | | tar library: another fix for lone zero blocksAndreas Gohr2013-05-09
| | |
* | | ensure security token is included in media url when resize parameter is ↵Christopher Smith2013-05-06
| | | | | | | | | | | | passed in string form, e.g. 'w=80'
* | | Indexer: Remove broken and dead readdircache code FS#2771Michael Hamann2013-05-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The code that is removed in this commit has either never been used (listIndexLenghts) or was completely broken (cacheIndexDir) and was introduced in the indexer rewrite in 2010. The idea of the rewrite was to update the readdir cache after every index change instead of on demand. What the code actually did was removing every updated index from the cache as it used a wrong if condition. Simply fixing the condition wouldn't fix the problem as then only updated indexes would be added to the cache and furthermore the rewrite simply ignored the readdircache setting. For now the safest solution seems to be removing the code. It could be added again in a changed form in a future version.
* | | Indexer: Fix wrong suffix parameterMichael Hamann2013-05-05
| | | | | | | | | | | | | | | The suffix parameter is only for the word length in the word index and not for the metadata index.
* | | Japanese language updateSatoshi Sahara2013-05-05
| | |
* | | Czech language updateMiroslav Kučera2013-05-05
| | |
* | | fixed exception call FS#2772Andreas Gohr2013-05-05
| | |
* | | make sure loaded text has the right encodingAndreas Gohr2013-05-05
| | | | | | | | | | | | | | | | | | | | | | | | When pages contain non-UTF8 chars (eg. when posted through a script or when edited on the filesystem, parts of DokuWiki can break resulting in missing page content. This fixes these problems by forcing the content to UTF-8 on load. This will result in bad characters for input that is not latin1 but contents will at least be visible.
* | | Tar: avoid lone zero blocks when adding 0 byte filesAndreas Gohr2013-05-03
| | |
* | | use correct endpoint in tpl_actiondropdown FS#2760Andreas Gohr2013-05-03
| | |
* | | Russian language updateIvan I. Udovichenko2013-04-26
| | |
* | | removed debug statementAndreas Gohr2013-04-25
| | | | | | | | | | | | thanks @Klap-in
* | | authad: capabilities depend on userdomain specific configAndreas Gohr2013-04-25
| | |
* | | Japanese language update이명진2013-04-22
| | |
* | | Korean language update이명진2013-04-22
| | |
* | | Merge pull request #211 from splitbrain/nonwikidiffsMichael Hamann2013-04-21
|\ \ \ | | | | | | | | Fix double encoding of html diff output in syndicated feeds and subscrition emails