Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | removed another occurance of the obsolete config option | Andreas Gohr | 2012-06-29 |
| | |||
* | simplified %GROUP% wildcard support | Andreas Gohr | 2012-06-29 |
| | |||
* | Merge branch 'master' of git://github.com/Aorimn/dokuwiki into pull-request-76 | Andreas Gohr | 2012-06-29 |
|\ | | | | | | | | | | | | | | | | | * 'master' of git://github.com/Aorimn/dokuwiki: Change default groupwildcards option to 0 not to change behavior of Added support for the %GROUP% wildcard. Conflicts: inc/auth.php | ||
| * | Added support for the %GROUP% wildcard. | romain | 2012-01-30 |
| | | | | | | | | | | | | %GROUP% is the same as %USER% except it's done on each group a user is in. %USER% and %GROUP% cannot be mixed on an ACL line. | ||
* | | treat empty string inputs as unset for int and bool | Andreas Gohr | 2012-06-29 |
| | | |||
* | | some code cleanup and php docs | Andreas Gohr | 2012-06-25 |
| | | |||
* | | some Input class fixes and unit tests | Andreas Gohr | 2012-06-25 |
| | | |||
* | | Input wrapper for auth.php | Andreas Gohr | 2012-06-24 |
| | | |||
* | | remove() implemented for Input class | Andreas Gohr | 2012-06-24 |
| | | |||
* | | allow setting values via input class | Andreas Gohr | 2012-06-24 |
| | | |||
* | | code cleanup | Andreas Gohr | 2012-06-24 |
| | | |||
* | | another input wrapper fix | Andreas Gohr | 2012-06-24 |
| | | |||
* | | added 3rd parameter to Input methods | Andreas Gohr | 2012-06-24 |
| | | | | | | | | This allows to treat empty parameters as default | ||
* | | added has() method to input class | Andreas Gohr | 2012-06-24 |
| | | |||
* | | Introducing a $_REQUEST/POST/GET wrapper | Andreas Gohr | 2012-06-24 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This new wrapper ensures types are correct and accessed parameters are actually set (with custom default fallbacks). The wrapper is available in the global $INPUT variable. It accesses $_REQUEST by default. If POST or GET is required, the post and get members can be used: $INPUT->int('foo',false); // access $_REQUEST['foo'], default false $INPUT->post->int('foo'); // access $_POST['foo'], default 0 $INPUT->get->int('foo'); // access $_GET['foo'], default 0 The codebase still needs to be updated to make use of this. | ||
* | | code cleanup | Andreas Gohr | 2012-06-23 |
| | | |||
* | | some phpdoc updates | Andreas Gohr | 2012-06-23 |
| | | |||
* | | some code beautification | Andreas Gohr | 2012-06-23 |
| | | |||
* | | another bad comparison fixed | Andreas Gohr | 2012-06-23 |
| | | |||
* | | fixed wrong comparison in Mailer::dump() | Andreas Gohr | 2012-06-23 |
| | | |||
* | | Dutch language update | Dion Nicolaas | 2012-06-22 |
| | | |||
* | | Vietnamese language update | Nguyen The Hung | 2012-06-22 |
| | | |||
* | | Korean language update | 이명진 | 2012-06-22 |
| | | |||
* | | Korean language update | 이명진 | 2012-06-13 |
| | | |||
* | | Italian language update | Matteo Pasotti | 2012-06-12 |
| | | |||
* | | Polish langauge update | Aoi Karasu | 2012-06-12 |
| | | |||
* | | chinese language update. related to FS#2360 | lainme | 2012-06-12 |
| | | |||
* | | Fix for FS#2522 / Now all places of $lang['restored'] are covered with the ↵ | lupo49 | 2012-06-10 |
| | | | | | | | | restored-date information | ||
* | | format | Bc. Jan Kaláb | 2012-06-03 |
| | | |||
* | | format | Bc. Jan Kaláb | 2012-06-03 |
| | | |||
* | | formating | Bc. Jan Kaláb | 2012-06-03 |
| | | |||
* | | improved earlier change for paths error messages to not produce any notices | Anika Henke | 2012-05-27 |
| | | |||
* | | improved error message for savedir paths (FS#2502) | Anika Henke | 2012-05-27 |
| | | |||
* | | don't rely on metadata for conflict detection | Andreas Gohr | 2012-05-22 |
| | | | | | | | | | | This also fixes a problem wiht PHP 5.4 when there is metadata but the date key is empty. | ||
* | | Korean language update | Erial Krale | 2012-05-22 |
| | | |||
* | | Ukrainian language update | Roman Franchuk | 2012-05-22 |
| | | |||
* | | Fixes messages.txt's modification timestamp not being updated. | Robert Nitsch | 2012-05-21 |
| | | | | | | | | | | | | | | | | | | This bug occurs on systems where writing a zero-length string to an empty file does not update the file's modification timestamp. This leads to the messages.txt being downloaded almost endlessly, causing long delays for logged-in users. Visitors are not affected, because the messages.txt is only updated for logged-in users. | ||
* | | do not surpress any errors when loading plugin files | Andreas Gohr | 2012-05-20 |
| | | | | | | | | | | | | When a plugin file exists, we can assume it is the correct file and load it without error supression. This makes it much easier to detect and debug problematic plugins. | ||
* | | make sure SSO data for AD backend is always UTF-8 | Andreas Gohr | 2012-05-16 |
| | | | | | | | | In some circumstances the username was set in latin1. | ||
* | | empty ID in wl() will be treated as $conf['start'] | Dominik Eckelmann | 2012-05-14 |
| | | |||
* | | tpl_get_action: Return empty params array instead of params string | Michael Hamann | 2012-05-11 |
| | | | | | | | | | | This prevents an "Illegal string offset" error in PHP 5.4 in the test cases (the integration tests failed here with PHP 5.4). | ||
* | | Fix nested triggering of the same event | Michael Hamann | 2012-05-11 |
| | | | | | | | | | | | | | | | | | | | | Previously when in an event handler the same event was triggered again, only the handlers for the second event invocation were all executed, the handling of the "outer" event stopped after the handling of the inner event as they both used the same iterator of the hooks array. This caused caching bugs e.g. when both the include and the indexmenu plugin were enabled as both of them load metadata in the cache handler which triggers another renderer cache event. | ||
* | | GeSHi updated to 1.0.8.10 | Andreas Gohr | 2012-05-10 |
| | | |||
* | | Restore page versions - add timestamp of the restored version to to the ↵ | lupo49 | 2012-05-08 |
| | | | | | | | | | | | | summary field. This allows easier identifying of which version has been restored. (FS#2522) | ||
* | | fixed a JSON bug with handling backspaces | Andreas Gohr | 2012-05-03 |
| | | | | | | | | This was fixed in upstream and the upstream tests caught this :-) | ||
* | | also skip native JSON encoding when skipnative is true | Andreas Gohr | 2012-05-03 |
| | | |||
* | | removed duplicated documentation header in JSON.php | Andreas Gohr | 2012-05-02 |
| | | |||
* | | Merge pull request #96 from dom-mel/phpunit | Andreas Gohr | 2012-05-01 |
|\ \ | | | | | | | Replace SimpleTest with PHPUnit | ||
| * | | avoid integer overflow in PassHash::pmd5 method | Andreas Gohr | 2012-05-01 |
| | | | | | | | | | | | | | | | | | | Input iteration counts are squared in the function and passing something above 30 is giving integer overflows on 32 bit systems (and causes insane iteration counts on 64bit systems). | ||
| * | | make HTTPClient loadable via autoloader | Andreas Gohr | 2012-04-26 |
| | | | | | | | | | | | | | | | this fixes the HTTP tests which do test the base class directly instead of the DokuHTTPClient subclass |