Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
| * | | | | | | | | | moved URI setup to execute() | Andreas Gohr | 2012-06-30 | |
| | | | | | | | | | | ||||
| * | | | | | | | | | simplified using the TestRequest class | Andreas Gohr | 2012-06-30 | |
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | You now can call get() or post() on it and give it all the wanted input variables | |||
| * | | | | | | | | treat empty string inputs as unset for int and bool | Andreas Gohr | 2012-06-29 | |
| | | | | | | | | | ||||
| * | | | | | | | | make sure all globals are available in test requests | Andreas Gohr | 2012-06-29 | |
| | | | | | | | | | ||||
| * | | | | | | | | compressed new template graphics with tinypng.org | Andreas Gohr | 2012-06-27 | |
| | |_|_|/ / / / | |/| | | | | | | ||||
| * | | | | | | | Merge pull request #109 from whoopdedo/input-validation | Andreas Gohr | 2012-06-26 | |
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | input validations in installer | |||
| | * | | | | | | | enable ACL by default on install | Tom N Harris | 2012-06-24 | |
| | | | | | | | | | ||||
| | * | | | | | | | validate inputs to install form | Tom N Harris | 2012-06-24 | |
| | | | | | | | | | ||||
| * | | | | | | | | some code cleanup and php docs | Andreas Gohr | 2012-06-25 | |
| | | | | | | | | | ||||
| * | | | | | | | | fixed tests | Andreas Gohr | 2012-06-25 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The test suite was missing a global keyword to access the $INPUT class. | |||
| * | | | | | | | | 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 Input wrapper to feed.php | Andreas Gohr | 2012-06-24 | |
| | | | | | | | | ||||
| * | | | | | | | added 3rd parameter to Input methods | Andreas Gohr | 2012-06-24 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows to treat empty parameters as default | |||
| * | | | | | | | code cleanup | Andreas Gohr | 2012-06-24 | |
| | | | | | | | | ||||
| * | | | | | | | code beautification | Andreas Gohr | 2012-06-24 | |
| | | | | | | | | ||||
| * | | | | | | | use INPUT wrapper in doku.php | Andreas Gohr | 2012-06-24 | |
| | | | | | | | | ||||
| * | | | | | | | 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. | |||
| * | | | | | | | use more secure password hash for admin pass FS#2536 | Andreas Gohr | 2012-06-23 | |
| | | | | | | | | ||||
| * | | | | | | | 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 | |
| | | | | | | | ||||
| * | | | | | | Merge pull request #105 from lupo49/master | Anika Henke | 2012-06-10 | |
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | Additional commit for closed Pull Request #100 | |||
| | * | | | | | | Fix for FS#2522 / Now all places of $lang['restored'] are covered with the ↵ | lupo49 | 2012-06-10 | |
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | restored-date information | |||
| * | | | | | | Merge pull request #103 from Pitel/patch-1 | Anika Henke | 2012-06-09 | |
| |\ \ \ \ \ \ | | |_|_|/ / / | |/| | | | | | Formating of czech subscription emails | |||
| | * | | | | | format | Bc. Jan Kaláb | 2012-06-03 | |
| | | | | | | | ||||
| | * | | | | | format | Bc. Jan Kaláb | 2012-06-03 | |
| | | | | | | | ||||
| | * | | | | | formating | Bc. Jan Kaláb | 2012-06-03 | |
| |/ / / / / | ||||
| * | | | | | fixed small typo in wiki:syntax (FS#2528) | Anika Henke | 2012-05-27 | |
| | | | | | | ||||
| * | | | | | 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 | |
| | | | | | | ||||
| * | | | | | Revert "removed all browser-specific gradients as the recently (in 42ff6730) ↵ | Anika Henke | 2012-05-27 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | introduced svg makes them unnecessary" This reverts commit dbd59867496d5e3c5d37e9c3852db29a6a2370c4. | |||
| * | | | | | added .ico to allowed mime types | Andreas Gohr | 2012-05-23 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the new template allows to use a favicon in media/wiki/favicon.ico so we should support uploading it as well. | |||
| * | | | | | 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 | |
| | | | | | |