aboutsummaryrefslogtreecommitdiffstats
path: root/includes/SpecialWatchlist.php
Commit message (Collapse)AuthorAgeFilesLines
* Page subtitle HTML fixes from HEAD.Brion Vibber2005-08-251-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/10753
* * (bug 3162) Fix 'undefined property page_is_new' error on watchlistBrion Vibber2005-08-171-1/+1
| | | | | | | Somebody wrote rev_is_new instead of page_is_new ;) Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/10580
* Some backporting, see also bug 3162Niklas Laxström2005-08-151-1/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/10543
* * (bug 3001) Updated and applied live hack for recentchanges-based watchlistBrion Vibber2005-08-031-41/+33
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/10378
* Removed some nonsense and fixed ugly HTMLNiklas Laxström2005-07-311-4/+3
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/10329
* * Special:Watchlist allowed only one type of limit at a timeNiklas Laxström2005-07-311-32/+53
| | | | | | | | * moved appendToArrayIfNotDefault to GlobalFunctions * changed some html message in Special:Watchlist to wiki text or plain text Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/10328
* Remove extra semicolonBrion Vibber2005-07-221-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/10236
* set rc_this_oldid to rev_id in newfromcur so the watchlist displays the ↵River Tarnell2005-06-281-1/+1
| | | | | | | | | actual diff, not the combined diff for all changes Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/9757
* * Don't show bogus messages about watchlist notifications when disabledBrion Vibber2005-06-281-3/+4
| | | | | | | * Don't show old debug messages in watchlist Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/9744
* * Fixed a bug where the watchlist count without talk pages would be off by aÆvar Arnfjörð Bjarmason2005-06-281-1/+1
| | | | | | | factor of two. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/9728
* * (bug 2530) Not displaying talk pages on Special:Watchlist/editÆvar Arnfjörð Bjarmason2005-06-271-1/+3
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/9718
* * cur_title => page_title and cur_namespace => page_namespace (overlookedÆvar Arnfjörð Bjarmason2005-06-251-1/+1
| | | | | | | during the schema change) Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/9660
* * Displaying namespace subheadings on Special:Watchlist/editÆvar Arnfjörð Bjarmason2005-06-211-12/+30
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/9549
* * (bug 2173) Fatal error when removing an article with an empty title fromBrion Vibber2005-06-021-1/+1
| | | | | | | the watchlist Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/9303
* Removed "show updated marker" user preference option. It's now visually ↵Tim Starling2005-05-291-17/+22
| | | | | | | inoffensive, and has no performance penalty for reads, so there's no reason users would want to have it off. System administrators may want to have it off though, since it impacts on page save performance. Also changed the watchlist header format. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/9240
* Attempting to get enotif into working order. Many aesthetic changes, a fair ↵Tim Starling2005-05-141-22/+24
| | | | | | | number of bug fixes too. There's also a couple of non-enotif bug fixes in this commit somewhere. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/9029
* * Using getBool() instead of getVal() for hideOwn which allowed for some ↵Ævar Arnfjörð Bjarmason2005-04-281-15/+7
| | | | | | | | | code cleanup * Using $wgRequest->getBool() for 'magic' instead of $_REQUEST Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/8701
* * (bug 1207) splitting 'all', into recentchangesall, imagelistall,Ævar Arnfjörð Bjarmason2005-03-261-2/+2
| | | | | | | | watchlistall1, watchlistall2, contributionsall to accommodate inflicted languages. ( perl -pi -e "s/^['\"]all['\"].*//gs" * is useful =) Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/7908
* BUG#190 Hide your own edits on the watchlistJens Frank2005-03-191-3/+24
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/7756
* Cruft war continues: more uses of isAnon() and isLoggedIn()Brion Vibber2005-02-211-2/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/7514
* Prune some unnecessarily long and invalid-html-ful messagesBrion Vibber2005-02-061-1/+12
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/7387
* Switch some messages to wikitext, html cleanupBrion Vibber2005-02-061-7/+8
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/7386
* More quotes of the single varietyTom Gilder2005-01-311-42/+42
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/7339
* BUG#1363 Fix Enotif Reset Nofication Flags - by Dieter MenneJens Frank2005-01-191-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/7185
* Merge SCHEMA_WORK into HEAD. Lots of changes, some things are probably broken:Brion Vibber2004-12-191-12/+13
| | | | | | | | | * Page moves/overwrites are a little iffy * Compression might not be working right * Profit! Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/6710
* Change WebRequest::getVal() to always return a string (or null), and add ↵Brion Vibber2004-12-181-1/+1
| | | | | | | getArray() method for the rare times that's what we want. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/6708
* Refactor a bit; move a couple methods from UserMailer (?!) to User. Use the ↵Brion Vibber2004-12-181-3/+3
| | | | | | | proper $wgRequest for checking reset var, avoid notice warning. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/6703
* (bug 454) Merge e-notif 2.00Brion Vibber2004-12-181-7/+46
| | | | | | | | | | | | | 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 recentchanges and image history list formatters from Skin, where they ↵Brion Vibber2004-11-251-3/+4
| | | | | | | never really belonged. No skin overrides these things, and they just waste server time loading and parsing the code for every page hit where they're not needed. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/6382
* Fix potential HTML breakage if removechecked message were to include an ↵Brion Vibber2004-10-141-2/+2
| | | | | | | apostrophe Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/5881
* Third batch of files modified to replace selected wgLang with wgContLangZheng Zhu2004-09-241-4/+4
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/5465
* 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-2/+11
| | | | | | | Phpdocumentor Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/5032
* Fixed register_globals dependence, fixed HTML-insertion vulnerability by ↵Tim Starling2004-08-131-12/+15
| | | | | | | replacing the useless $limit with the actual number of rows returned Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/4728
* use Database::timestamp() for cutoffDomas Mituzas2004-08-101-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/4641
* In Special:Watchlist?magic=yes, show links to non-existent pages in redArne Heizmann2004-08-091-15/+15
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/4627
* * Support for table name prefixes throughout the code. No support yet for ↵Tim Starling2004-07-181-15/+18
| | | | | | | | | | | | | 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-10/+3
| | | | | | | 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
* Load balancing enabled in places where it's thought to be reasonably safeTim Starling2004-07-101-7/+14
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/4251
* Quote backslash slipup. Cosmetic.Brion Vibber2004-06-121-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/4022
* Detect bad titles on watchlist (shouldn't happen, but we want to live ↵Brion Vibber2004-06-121-4/+8
| | | | | | | through it when it does) Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/4021
* Remove 'USE INDEX' for non-mysqlDomas Mituzas2004-06-091-3/+3
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3954
* include_once -> require_onceTim Starling2004-05-071-2/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3502
* tab indexes on diff linksGabriel Wicke2004-04-091-1/+2
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/3080
* XHTML fixesBrion Vibber2004-04-031-4/+4
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2948
* Replace the random boolean parameters on Title::getURL() with a set ofBrion Vibber2004-03-071-2/+2
| | | | | | | | | | | | | | | | | | practical, clear methods: Title::getLocalURL() - "/wiki/index.php/Foobar" or "/wiki/index.php?title=Foobar&action=edit" Title::getFullUrl() - ditto with $wgServer on the front Title::getInternalUrl() - ditto with $wgInternalServer on the front (for some squid-related functions) Title::escapeLocalUrl() - local URL escaped for HTML output Title::escapeFullUrl() - full URL escaped for HTML output All take an optional query parameter. Title::getURL(), wfFullUrl() and wfFullUrlE() are now officially deprecated and will result in instant death. wfLocalUrl() and wfLocalUrlE() will be killed shortly; they are still used in the language files. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2649
* Add digit transformation function Language::formatNum() for Arabic and otherBrion Vibber2004-03-061-6/+8
| | | | | | | | languages which need to use localized (decimal) digits. Sample implementation for Arabic. Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2624
* * Fixed magic quotes in $_REQUEST, in Setup.phpTim Starling2004-03-061-2/+5
| | | | | | | | | | | | * Converted many instances of globals from the query to $_REQUEST * Renamed near-useless Title::getURL() to Title::getPartialURL() * Created new Title::getURL(), to replace wfLocalUrl, wfLocalUrlE, wfFullUrl and wfFullUrlE. Replaced most instances throughout the code * In Parser.php, generalised stripping of <nowiki>, <pre> and <math> to allow more general use such as nesting * Moved body of Article::preSaveTransform to Parser.php * Put lots of comments in Title.php Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2621
* Fix for compatibility with short_open_tag = OffBrion Vibber2004-02-181-1/+1
| | | | Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2485
* fixed subtle bug -- missing comma in SQL causing watchlist to display user ↵Tim Starling2004-01-311-1/+1
| | | | | | | page link for anon Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/2403