- Jan 08, 2019
-
-
Phy authored
-
- Jan 07, 2019
-
-
Phy authored
-
- Oct 22, 2018
-
-
Phy authored
- always use absolute URL - use static string instead of array if no concat is required - use '&' instead of '&'
-
- Dec 20, 2017
-
-
Phy authored
-
- May 13, 2017
-
-
Andreas Gohr authored
The internal lang and localized variables of a plugin are no longer accessible from the outside. This adds a proper setter and also fixes the type hinting in the config plugin.
-
- Jun 19, 2016
-
-
Michael Hamann authored
-
- Jul 12, 2015
-
-
Anika Henke authored
-
- Jan 07, 2015
-
-
Andreas Gohr authored
In an older version of PHP a file_exists() call would issue a warning when the file did not exist. This was fixed in later PHP releases. Since we require PHP 5.3 now, there's no need to supress any error here anymore. This might even give a minor performance boost.
-
- Oct 01, 2014
-
-
Gerrit Uitslag authored
-
- Aug 23, 2013
-
-
Matt Perry authored
Fix violations for Generic.PHP.LowerCaseConstant.Found
-
- Aug 22, 2013
-
-
Matt Perry authored
Change indentation to ensure code confirms to CodeSniffer rules.
-
- Aug 02, 2013
-
-
Matthias Schulte authored
manager / Synchronize terms in de and de-informal
-
- Jan 31, 2013
-
-
Andreas Gohr authored
-
- Nov 10, 2012
-
-
Andreas Gohr authored
Saving worked, but did you log out everytime. Now it is checked if the auth mechanism was actually changed before assuming the login is invalid.
-
- Sep 08, 2012
-
-
Hakan Sandell authored
-
- Aug 05, 2012
-
-
Anika Henke authored
-
- Jul 05, 2012
-
-
Anika Henke authored
-
- Feb 04, 2012
-
-
Anika Henke authored
-
- Feb 01, 2012
-
-
Andreas Gohr authored
-
- Aug 20, 2011
-
-
Piyush Mishra authored
-
- Apr 17, 2011
-
-
Anika Henke authored
-
- Nov 01, 2010
-
-
Adrian Lang authored
-
Tom N Harris authored
-
- Jun 26, 2010
-
-
Andreas Gohr authored
-
- Feb 01, 2010
-
-
Andreas Gohr authored
This patch moved the place where DOKU_PLUGIN is defined. It no longer can be set from a normal config (only via preload)
-
- Mar 16, 2009
-
-
Andreas Gohr authored
Ignore-this: 5e16625a243ae7dc3488180dedad13b1 darcs-hash:20090316203623-7ad00-2a1ba8e3401dc45c6cee4162f94f9efc16cbb2cd.gz
-
- Mar 12, 2009
-
-
Anika Henke authored
darcs-hash:20090312222853-f7d6d-6ad28d7747ed0a72e4f8952eb1cec606e9b6d322.gz
-
- Aug 15, 2008
-
-
Anika Henke authored
darcs-hash:20080815134211-f7d6d-61f4f4fa1c5f62832d7cc5ad3e3a7a78460d2981.gz
-
- Sep 08, 2007
-
-
Andreas Gohr authored
darcs-hash:20070908142300-7ad00-ecb0aa5d77f6451b33988e6008e0297bd4425948.gz
-
- Aug 29, 2007
-
-
Andreas Gohr authored
This patch adds a session based token to all form in the default action plugins. The validity of the token is checked before any administrative function is executed aiming to protect DokuWiki's admin functions from Cross-site request forgery (CSRF) attacks. Another patch will follow to add the same functionality on other, less critical functions. More details on CSRF attacks can be found at http://en.wikipedia.org/wiki/Cross-site_request_forgery darcs-hash:20070829201538-7ad00-d0770224a3351fd8e38968e3a9d8e73520482445.gz
-
- Aug 05, 2007
-
-
Andreas Gohr authored
This patch introduces a tpl_toc() function which can be used to freely place the Table of Contents in a template. When used, tpl_content should be called with a parameter of false to supress the automatic TOC placement. Note: if tpl_toc() us run *before* tpl_content(), TOCs will not work in the preview. A work around is to run tpl_content() in a output buffer first. This patch also adds a getTOC() function for admin plugins which allows plugin authors to put create their own TOC which will be placed correctly in the template. A convenience function html_mktocitem() is available. The config manager was adjusted to make ue of this new feature, but some bugs might remain. darcs-hash:20070805132405-7ad00-77d2c3cdf66cc62b2d408cc6580f938636a109af.gz
-
- Jun 29, 2007
-
-
Andreas Gohr authored
This patch outputs the config name in the config manager (instead of using a title tag) which makes it easier to search (ctrl-f) for a specific option. darcs-hash:20070629210648-7ad00-0e2a689b04c747298ee50b20bce287069393a84b.gz
-
- Feb 14, 2007
-
-
Ben Coburn authored
Now uses the new toc_additem function in the Doku_Renderer_xhtml class. darcs-hash:20070215015318-05dcb-f725b589b6ecf9b332f624f4bb9cafe7ed546172.gz
-
- Jul 28, 2006
-
-
Anika Henke authored
darcs-hash:20060728212333-d5083-cbad284f32a6b01eb3609fe1aa960156b9ae42a3.gz
-
- Jul 10, 2006
-
-
Ben Coburn authored
Undefined constants replaced with strings, see http://www.php.net/manual/en/language.types.array.php#language.types.array.foo-bar darcs-hash:20060710091820-05dcb-cfccff2bdd633b929470c60d8eee096f50ab4c18.gz
-
- May 20, 2006
-
-
Ben Coburn authored
This patch hides settings that are missing config metadata and optionally provides a list of warnings about settings that are not properly configured. - Warnings about settings are listed if $conf['allowdebug'] is true. - Warnings are listed by the $conf string as it appears in local.php. - Warnings show the $meta string as it would appear in the correct settings metadata file. - There are 3 kinds of warnings. - undefined There is no $meta information defined for this setting. - no class The setting class specified in $meta can not be found. This setting does have a $meta entry. - no default The setting is missing a default value. The setting does have a $meta entry with a valid setting class. - Note: Settings with metadata but other warnings are allowed to appear in the normal config settings list. Also... - Templates can now define their own settings classes. - Removed an XHTML validation error from the first patch. - More language strings to go with the new warnings. The warnings under the 'Undefined Settings' heading are intended to provide developers with a list of any settings that they have forgotten to finish preparing for the config plugin. This list should be blank for stable releases. darcs-hash:20060520103718-05dcb-6d4e6bce78498cbf9d087e27d52e4aa30917b0a5.gz
-
- May 10, 2006
-
-
Ben Coburn authored
- organizes the configuration settings list into chunks - provides a table of contents for the configuration chunks - provides one chunk for each plugin with configurable settings - provides one chunk for the active template (if it has settings) - provides the config file setting as a tool-tip on the setting label ex. $conf['start'] - provides for localization of useful strings - generates a "smart" fallback name for plugins and templates - plugin and template sections are only shown if they have settings - current configuration list is organized into chunks Note: There are NEW strings to translate into the non-english language files. darcs-hash:20060510065732-05dcb-398d5c7efa7981f690d97a25a5110b1f39be9f8e.gz
-
- Apr 09, 2006
-
-
chris authored
Update default plugins to ensure they exit immediately if not called from within Dokuwiki darcs-hash:20060409233841-9b6ab-555e4fced756849a5d7b9de6e4aaaea24c6da3ae.gz
-
- Mar 27, 2006
-
-
Ben Coburn authored
darcs-hash:20060327152528-05dcb-415564ff328ca9dd1f0fbe758924a2ae6a5b74cc.gz
-
- Mar 22, 2006
-
-
Esther Brunner authored
darcs-hash:20060322140525-283c4-54953a1954beba0e78c896610b33a6f3c953cbb6.gz
-