summaryrefslogtreecommitdiff
path: root/inc/load.php
Commit message (Collapse)AuthorAge
* Use autoloading for plugin classesAdrian Lang2011-06-06
|
* refactored passowrd hashing functions to a classAndreas Gohr2011-01-22
| | | | | | | | | | | | this splits the long auth_cryptPassword() function into many member functions of a new class PassHash which should make it more maintainable and reusable for other projects. This also adds two new methods djangomd5 and djangosha1 as used by the popular python framework Django. Maybe the auth_cryptPassword() and auth_verifyPassword() functions should be deprecated in favor of using the class directly?
* Transformed the sitemapper into a classMichael Hamann2010-09-22
| | | | This makes it possible to autoload the sitemapper when needed.
* new fnencode option FS#1649Andreas Gohr2010-04-04
| | | | | | This patch adds an option to choose how filenames are encoded when saved to the file system. You can choose between urlencoding (url), the new SafeFn method (safe) and storing real UTF-8 (utf-8).
* added missing IXR_IntrospectionServer to autoload classesMichael Klier2010-03-16
|
* Typo in ZipLib autoloaderAdrian Lang2010-03-16
|
* Load libraries after initAdrian Lang2010-03-15
|
* some more load fixesAndreas Gohr2010-03-12
|
* plugin related autoloadingAndreas Gohr2010-02-01
| | | | | This patch moved the place where DOKU_PLUGIN is defined. It no longer can be set from a normal config (only via preload)
* do not autorequire class only librariesAndreas Gohr2010-02-01
| | | | | | those are loaded on demand through the autoloader mechanism Also cliopts.php is not loaded automatically at all
* first attempt to centralize all include loadingAndreas Gohr2010-01-31
Classes are loaded throug PHP5's class autoloader, all other includes are just loaded by default. This skips a lot of require_once calls. Parser and Plugin stuff isn't handled by the class loader yet.