aboutsummaryrefslogtreecommitdiffstats
path: root/includes/MessageCache.php
Commit message (Collapse)AuthorAgeFilesLines
* Merge to HEAD; 1.3.0beta2Brion Vibber2004-06-061-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3892
* Introducing special page modular extensions, making the board vote special ↵Tim Starling2004-05-151-18/+31
| | | | | | | | | | | | | page the first of these. * Moving common special page handling to SpecialPage.php * Special page lists in the language classes are obsolete, replaced by the list in SpecialPage.php * Special:Specialpages uses the standard page titles wfMsg(pagename) instead of the description list previously contained in the $wgSpecialPagesEn arrays * Ability to add custom messages to the MessageCache. Overridable by the MediaWiki namespace. * Moving board vote functionality from includes/SpecialBoardvote.php to extensions/BoardVote.php Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3583
* Add an objectcache table for limited caching when memcached isn'tBrion Vibber2004-05-091-15/+11
| | | | | | | | | | available. Currently using for the message cache to avoid reading every message separately. This now is only slightly slower than memcached in my tests when $wgUseDatabaseMessages is enabled, so it's a bit of a speedup for common hosts. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3516
* added way to swich off message expansionGabriel Wicke2004-05-031-3/+6
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3466
* fixed noticesTim Starling2004-04-071-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3005
* Added transformation to wfMsg output, allowing tags such as {{SITENAME}} and ↵Tim Starling2004-04-051-3/+16
| | | | | | | {{localurl:Special:Preferences}} in the language files and MediaWiki namespace Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2976
* * Changed inclusion syntax to allow e.g. {{stub}}Tim Starling2004-03-201-22/+16
| | | | | | | | | * Split MediaWiki namespace into MediaWiki and Template (requires changes to all language files) * Purge links to on edit of Template namespace * General refactoring of purging and cache invalidation code Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2769
* Imported the register_globals hack from REL1_2. Also starting work onBrion Vibber2004-03-081-1/+1
| | | | | | | | | | | | elimination of the use of import_request_variables (which gives us all the insecurity of register_globals). Uncomment the define of DEBUG_GLOBALS in index.php to turn on extra error reporting and trace down use of uninitialized variables and nassssty globals. Also rearranged the magic_quotes fixing, may not yet cover everything... Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2655
* Clear message cache on rebuildBrion Vibber2004-03-011-0/+4
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2584
* Fix for compatibility with short_open_tag = OffBrion Vibber2004-02-181-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2485
* bug fixTim Starling2004-01-251-1/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2354
* Using UTF-8 compatible ucfirst/lcfirst -- bug fixTim Starling2004-01-251-2/+4
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2351
* Using UTF-8 compatible ucfirst/lcfirstTim Starling2004-01-251-9/+6
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2348
* Fixed initialisation order to make it slightly more robustTim Starling2004-01-071-6/+10
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2270
* MediaWiki namespace handling, mostly consolidated from GlobalFunctions.php ↵Tim Starling2003-12-141-0/+200
and Article.php, with some enhancements Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2204