aboutsummaryrefslogtreecommitdiffstats
path: root/includes/WatchedItem.php
Commit message (Collapse)AuthorAgeFilesLines
* phpdoc comment / code formattingAntoine Musso2005-01-271-8/+15
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/7272
* (bug 454) Merge e-notif 2.00Brion Vibber2004-12-181-4/+32
| | | | | | | | | | | | | From http://bugzilla.wikipedia.org/attachment.cgi?id=171&action=view and extra files from http://www.tgries.de/mw/cvs15+enea200-minus-cvs.tgz Undid a couple minor bits like the broken changing of minoreditletter. Have not yet made general corrections/reworkings. Since this changes the user and watchlist tables, you must run the updaters (installer or update.php) on an existing database. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/6696
* Split files and classes in different packages for phpdocumentor. I probably ↵Antoine Musso2004-09-031-0/+2
| | | | | | | changed some double quotes to single and used function foo () { shema Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/5069
* Changing comments layout preparing for generated documentation with ↵Antoine Musso2004-09-021-7/+18
| | | | | | | Phpdocumentor Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/5032
* missing fnameTim Starling2004-07-241-0/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/4372
* * Support for table name prefixes throughout the code. No support yet for ↵Tim Starling2004-07-181-29/+48
| | | | | | | | | | | | | converting static SQL, which also means no installation. But it has been tested by creating the tables in the ordinary way and then renaming them * DB_WRITE now called DB_MASTER, DB_READ now called DB_SLAVE * Converted to use SQL wrapper functions instead of direct SQL in various places * Experimental method for preserving the chronological order of events when slave servers are used. Untested. * Fixes to the new post-parse existence test feature * Some.. other stuff Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/4318
* OOP calling convention for database functions. DBMS abstraction implemented ↵Tim Starling2004-07-101-15/+8
| | | | | | | by means of functions instead of global variables, PostgreSQL object converted to a subclass instead of a drop-in replacement. Also the beginnings of a flexible table name feature. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/4261
* de-mysql: remove REPLACE INTO and DELETE .. LIMIT for nonmysqlDomas Mituzas2004-06-111-3/+15
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/4006
* More globals and uninitialized variables fixes. Added WebRequest ($wgRequest)Brion Vibber2004-03-081-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | object to encapsulate the handling of get/post variables: The following grab something out of $_REQUEST. The first parameter is the variable name and is required. The second is an optional default value: $wgRequest->getVal() - any type, returns NULL if no default given $wgRequest->getInt() - forced integer, 0 default $wgRequest->getText() - runs through $wgLang->recodeInput() $wgRequest->getBool() - return true/false $wgRequest->getCheck() - returns true if the var is set, even if to "" $wgRequest strips slashes at initialization if necessary. Also in this fine object: $wgRequest->wasPosted() - returns false if this wasn't a real form post, so we can protect against faked submissions in get urls. There's still plenty of work to do, not everything uses the new functions yet. To test the strict mode, do define('DEBUG_GLOBALS', 1); Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2658
* Fix for compatibility with short_open_tag = OffBrion Vibber2004-02-181-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2485
* Fixed bug potentially causing problems if memcached fails for some reason ↵Mr. E232004-01-311-1/+1
| | | | | | | (that is, returning FALSE) Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2393
* new memcached client returns integers as stringsMr. E232004-01-241-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2338
* compatibility modifications in preparation for the new memcached clientMr. E232004-01-241-2/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2337
* Fix rename page escaping bugBrion Vibber2003-11-231-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2040
* Nov. branch merge. Various features backported from stable, various bug fixes.Tim Starling2003-11-091-0/+92
Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/1914