wiki.techinc.nl/includes/utils
Bryan Davis 179854c3ce Fix AutoloadGenerator to work on MediaWiki-Vagrant
The use of realpath() in AutoloadGenerator::readFile() causes the
LocalSettings.php symlink to be dereferenced. Since the target file
lives outside of $IP, AutoloadGenerator would fail with an exception.

Change-Id: I4623b3da9b984026999189d70349ffb4754812a5
2014-11-20 16:05:07 -07:00
..
AutoloadGenerator.php Fix AutoloadGenerator to work on MediaWiki-Vagrant 2014-11-20 16:05:07 -07:00
IP.php Fixed some @params documentation (includes/utils) 2014-07-21 20:58:14 +02:00
MWCryptHKDF.php Add missing @param to function docs 2014-08-18 16:24:59 +00:00
MWCryptRand.php Add missing @return to function docs 2014-08-23 23:14:57 +02:00
MWFunction.php Deprecate MWFunction::newObj() in favor of ObjectFactory 2014-11-06 13:41:18 -07:00
README
StringUtils.php Fixed some @params documentation (includes/utils) 2014-07-21 20:58:14 +02:00
UIDGenerator.php Fixed UID comment 2014-08-27 16:19:11 -07:00
ZipDirectoryReader.php Add missing @param to function docs 2014-08-18 16:24:59 +00:00

The classes in this directory are general utilities for use by any part of
MediaWiki. They do not favour any particular user interface and are not
constrained to serve any particular feature. This is similar to includes/libs,
except that some dependency on the MediaWiki framework (such as the use of
MWException, Status or wfDebug()) disqualifies them from use outside of
MediaWiki without modification.

Utilities should not use global configuration variables, rather they should rely
on the caller to configure their behaviour.