summaryrefslogtreecommitdiff
path: root/lib/plugins/authplain
Commit message (Collapse)AuthorAge
* translation updateCarbain Frédéric2015-07-29
|
* translation updateHideaki SAWADA2015-07-29
|
* updated dates in various info.txt filesAnika Henke2015-07-26
|
* Merge branch 'master' into ioreplaceinfilePatrick Brown2015-05-07
|\
| * Report more meaningful errors when an auth backend fails. closes #1093Patrick Brown2015-05-06
| |
* | Use io_replaceInFile for updating authPatrick Brown2015-05-07
|/
* add more plugin groups to authplain testChristopher Smith2015-04-01
|
* Scrutinizer Auto-FixesScrutinizer Auto-Fixer2015-01-10
| | | | This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
* Remove error supression for file_exists()Andreas Gohr2015-01-07
| | | | | | | 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.
* Merge remote-tracking branch 'origin/master' into scrutinizerissuesGerrit Uitslag2014-12-09
|\ | | | | | | | | | | | | | | | | Conflicts: inc/media.php inc/plugin.php inc/template.php lib/plugins/authplain/_test/escaping.test.php lib/plugins/syntax.php
| * escaping backslash should be included in split itemsChristopher Smith2014-10-04
| |
| * Fix for issues 877 & 885 related to a bug in PCRE 6.6Christopher Smith2014-10-03
| |
* | PHPDocs and some improvementsGerrit Uitslag2014-10-02
| |
* | more PHPDocs, unused var, small bit code reformattingGerrit Uitslag2014-10-01
|/
* Merge remote-tracking branch 'origin/auth_getUserData_improvements'Andreas Gohr2014-09-26
|\ | | | | | | | | | | | | | | | | | | | | | | | | * origin/auth_getUserData_improvements: KISS - remove class constants for REQUIRE_GROUPS & IGNORE_GROUPS and replace with boolean values use $requireGroups constants in auth classes; comments; code improvements fix comment errors, sp. & grammar code styling - add missing braces Allow user info to be retrieved without groups Restore correct public interface of getUserData() for authldap plugin Conflicts: inc/common.php
| * Allow user info to be retrieved without groupsChristopher Smith2014-03-12
| | | | | | | | | | | | | | | | | | | | Some parts of dokuwiki (e.g. recent changes, old revisions) can requests lots of user info (to provide editor names) without requiring any group information. This change also implements caching of user info by authmysql & authpgsql plugins to avoid repeated querying of the DB to retrieve the same user information.
* | updated dates in info.txt of various plugins and templateAnika Henke2014-08-02
| |
* | authplain: Escape ':' in any data field as '\:'Angus Gratton2014-07-01
|/ | | | | | | | | | | | ':' is the field delimiter in the authplain flat text conf/users.auth.php file, but it's also used as an internal delimiter for the 'mediawiki' password hash format. Currently using this hash format corrupts the file This change escapes ':' as '\:' in any field in the users.auth.php file, and any '\' as '\\'. Also adds test cases for escaping modes.
* improved bundled plugin descriptionsAndreas Gohr2013-08-11
|
* correctly count deleted users in plain auth FS#2800Andreas Gohr2013-06-14
| | | | | reloading the user list after the delete action will make sure the count is always correct.
* updated dates in templates' and plugins' info.txt filesAnika Henke2013-05-06
|
* fixed authplainAndreas Gohr2012-11-09
| | | | * code/PHP5 cleanup
* make all sub auth classes call the parent constructorAndreas Gohr2012-11-09
| | | | | This does nothing currently but allows us adding certain things to the base class later.
* completed plugin.info.txt filesAndreas Gohr2012-10-06
|
* Merge remote-tracking branch 'janschumann/master' into futureAndreas Gohr2012-10-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This merge fixes all conflicts but is otherwise untested and might break funktionality in the auth system somewhere. It NEEDS MAJOR TESTING! Some refactoring of the auth plugins is still needed: * move to PHP5 style * fix comments * add plugin.info.txt * janschumann/master: Refactored auth system: All auth methods are now introduced as plugins. Bugfix: auth types are now correcty added Setup auth system from plugins Added Auth-Plugin-Prototype to autoload Load auth types from plugins in settings_authtype class Added prototype for Auth-Plugins added plugin type 'auth' Conflicts: inc/auth.php inc/auth/pgsql.class.php inc/init.php inc/load.php lib/plugins/auth.php lib/plugins/authad/auth.php lib/plugins/authldap/auth.php lib/plugins/authmysql/auth.php lib/plugins/authplain/auth.php
* Refactored auth system: All auth methods are now introduced as plugins.Jan Schumann2012-02-20