summaryrefslogtreecommitdiff
path: root/inc/load.php
Commit message (Collapse)AuthorAge
* Merge branch 'master' into htmlmailAndreas Gohr2012-04-15
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (382 commits) Romanian language update Marathi language update Arabic Language Update when there's not enough space for images, make sure they stay proportional (might be FS#2480) added minimal RTL print styles (part of FS#2185) moved plugins' rtl.css to their style.css counterpart (part of FS#2185) removed all browser-specific gradients as the recently (in 42ff6730) introduced svg makes them unnecessary removed comments from accidentally commented lines in tpl_includeFile() removed obsolete template file added tpl_includeFile() to core Make getTitle method in remote interface public Changed an error code in XML-RPC interface. This error hasn't anything to do with the rest of the -32600 errors. BG: language update Korean language update fixed performance issues with gradient in Firefox (which also added gradient support for IE9) (FS#2447) deleted very old (and unused) images added accidentally removed '<?php' back in (was in 57fc5edd) wrapped X-UA-Compatible meta tag with conditional comments added explanation to todo in _forms.css removed problematic 'overflow: hidden' from lists again ('unfixes' FS#1950) ... Conflicts: inc/auth.php inc/load.php
| * removed requires, changed conf check in xmlrpc.phpDominik Eckelmann2012-03-22
| |
| * introduced remote api classDominik Eckelmann2011-11-23
| |
| * enabled remote as plugintypeDominik Eckelmann2011-11-19
| |
* | added Mailer class to autoloaderAndreas Gohr2011-11-12
|/
* 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.