summaryrefslogtreecommitdiff
path: root/inc
Commit message (Collapse)AuthorAge
* Merge pull request #203 from splitbrain/fetchissues3Christopher Smith2013-04-07
|\ | | | | prevent third-party requests from using fetch
| * code changes in the rest of the code base to support testing fetchChristopher Smith2013-03-22
| |
| * refactor fetch to support unittestingChristopher Smith2013-03-22
| |
| * add a token to fetch urls requiring image resize/crop to prevent external ↵Christopher Smith2013-03-22
| | | | | | | | DDOS via fetch
* | Merge pull request #201 from splitbrain/fetchissuesChristopher Smith2013-04-07
|\ \ | | | | | | process a crop as a resize when possible
| * | don't resize images when resize dimensions match native image dimensionsChristopher Smith2013-03-22
| | |
| * | avoid creating an intermediate crop image when the final image will match a ↵Christopher Smith2013-03-19
| | | | | | | | | | | | resize
* | | Merge pull request #199 from splitbrain/authcompChristopher Smith2013-04-07
|\ \ \ | | | | | | | | backward compatibility for old authtype settings
| * | | change nomenclature from 'show' to 'allow' (fn from canshow to allowed)Christopher Smith2013-04-07
| | | |
| * | | for completeness (& defensive coding), test ['show'] against MSG_PUBLIC in ↵Christopher Smith2013-04-01
| | | | | | | | | | | | | | | | case its redefined to a non-zero value
| * | | restrict 'authtype deprecated' alert to superusers onlyChristopher Smith2013-04-01
| | | |
| * | | add capability to restrict recipients of dokuwiki 'msg' alerts. This is ↵Christopher Smith2013-04-01
| | | | | | | | | | | | | | | | useful where message is added to the queue before authentication is initialized
| * | | backward compatibility for old authtype settingsGuy Brand2013-03-17
| | | |
* | | | Dutch language updateAndré Koot2013-04-04
| | | |
* | | | Latvian language updateAivars Miška2013-04-04
| | | |
* | | | Korean language update이명진2013-04-04
| | | |
* | | | don't send empty cookie headerAndreas Gohr2013-03-24
| | | |
* | | | stream select parameters need to be reset for each callAndreas Gohr2013-03-24
| | | |
* | | | German (informal) language updateFrank Loizzi2013-03-24
| | | |
* | | | Korean language update이명진2013-03-24
| | | |
* | | | Brazilian Portuguese language updateVictor Westmann2013-03-24
| |_|/ |/| |
* | | fixed lithuanian language fileDominik Eckelmann2013-03-19
| | |
* | | removed unused string in km translationDominik Eckelmann2013-03-18
| |/ |/|
* | correct parenthesis in image crop calculations to ensure integer valuesChristopher Smith2013-03-18
| |
* | Merge pull request #196 from NEOhidra/masterAndreas Gohr2013-03-17
|\ \ | | | | | | BG: language update
| * | Bulgarian language updateKiril LastName2013-03-06
| | |
| * | Language files: insignificant fixesKiril LastName2013-03-06
| | |
* | | Merge pull request #197 from splitbrain/FS2743Andreas Gohr2013-03-17
|\ \ \ | | | | | | | | Redirect only in the show action to namespace start pages FS#2743
| * | | Redirect only in the show action to namespace start pages FS#2743Michael Hamann2013-03-08
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When the current page id ends with ":" (or "/" with useslash enabled) DokuWiki tries to find the start page of namespaces automatically and then redirects to this page. The target of the redirect is always the show action regardless if the current request contains another action or is an ajax request. In practice you can get this problem when your search query ends with ":" (e.g. because you want to match a namespace), then you are redirected to the show action. This change completely disables the redirect when $ACT is undefined or the current action is not "show".
* | / Fix Romanian language files by replacing cedilla-below characters with the ↵Alexandru Juncu2013-03-13
| |/ |/| | | | | correct comma-below ones.
* | Esperanto language updateRobert Bogenschneider2013-03-11
| |
* | French language updateBruno Veilleux2013-03-11
| |
* | Traditional chinese language update日向小郎2013-03-11
|/
* alternative fix for FS#2734Andreas Gohr2013-03-01
|
* Merge pull request #185 from splitbrain/FS#2724Andreas Gohr2013-02-24
|\ | | | | FS#2724. fix 'are you sure' when using refresh after using tpl_actiondropdown
| * add security token back, but not for anonymous usersChristopher Smith2013-02-19
| |
| * remove security token from tpl_actiondropdown - its not necessary, we're not ↵Christopher Smith2013-02-18
| | | | | | | | posting any system change
| * change tpl_actiondropdown request method to 'get'Christopher Smith2013-02-18
| |
* | Merge pull request #190 from splitbrain/FS2731Andreas Gohr2013-02-24
|\ \ | | | | | | Fix double encoding in rss syntax FS#2731
| * | Fix double encoding in rss syntax FS#2731Michael Hamann2013-02-23
| | |
* | | Simplified Chinese language updatelainme2013-02-24
| | |
* | | Italian language updateLorenzo Radaelli2013-02-24
|/ /
* | Merge pull request #188 from arbrk1/patch-1Michael Hamann2013-02-20
|\ \ | | | | | | Change function call from actionOk into actionOK (correct name)
| * | Update inc/template.phparbrk12013-02-20
| | | | | | | | | changed nonexistant actionOk to actionOK
* | | Fix remaining missing $INPUT uses FS#2577Michael Hamann2013-02-20
| | | | | | | | | | | | | | | | | | This adds $INPUT in all places where it was still missing and available. $INPUT is now also used in places where using $_REQUEST/... was okay in order to make the code consistent.
* | | Revert the search depth behavior changes from #154Michael Hamann2013-02-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts parts of the changes from #154: Before merging the pull request, a depth of 1 returned just the pages in the root namespace. With the changes in the pull request, a depth of 1 also returned pages in subnamespaces of the root namespace (as it was also tested in the test case). This reverts this part of the changes and a depth of 1 returns just the pages in the root namespace again.
* | | Fix handling of failed authentication loadingMichael Hamann2013-02-20
|/ / | | | | | | | | | | | | | | | | In the case of a failed authentication initialization, the authentication setup was simply continued with an unset $auth object. This restores the previous behavior (before merging #141) of simply returning after unsetting $auth. Furthermore this re-introduces the check if $auth is set before checking $auth and removes a useless check if $auth is true (could never be false).
* / fixed auth_browseruid on IE9Dominik Eckelmann2013-02-20
|/ | | | IE9 send different HTTP_ACCEPT_LANGUAGE header on ajax request. This causes different results from auth_browseruid. This patch removes the HTTP_ACCEPT_LANGUAGE from the browser id calculation.
* removed a bunch of functions which were deprecated in 2005/2006Anika Henke2013-02-18
|
* Display media file size only if file exists (prevents PHP warning)Michael Hamann2013-02-17
|