| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
* Added "static groups" feature to remove memcached/DB load time
* Added i18n support, allowing names and descriptions to be optionally drawn from wfMsg/wfMsgForContent
* Fixed Special:Groups, it is now half-decent. Too many changes to list here.
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/8778
|
|
|
|
|
|
|
| |
page links. Utilised the new LinkBatch to speed up link lookups in Special:Log
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/8039
|
|
|
|
|
|
|
| |
2) wikify page titles in log entries which appear in RC
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/7855
|
|
|
|
|
|
|
| |
(that add an entry in recentchanges).
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/7335
|
|
|
|
|
|
|
| |
for logging table
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/7055
|
|
|
|
|
|
|
| |
patch from Zigger
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/6807
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/6779
|
|
|
|
|
|
|
|
| |
easier. Interpolated keywords cause lots of conflicts and headaches at
merge time for older (<1.12.x) CVS versions.
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/6433
|
|
|
|
|
|
|
| |
several things need to be done! A tracking bug is at http://bugzilla.wikipedia.org/show_bug.cgi?id=767
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/6066
|
|
|
|
|
|
|
| |
Database member functions. Adding comments to Database.php
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/6052
|
|
|
|
|
|
|
| |
changed some double quotes to single and used function foo () { shema
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/5069
|
|
|
|
|
|
|
| |
Phpdocumentor
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/5032
|
|
|
|
|
|
|
| |
Not yet fully functional.
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/4929
|
|
|
|
|
|
|
| |
Special:Log/upload etc
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/4927
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Replaces the ugly, often breaking, manually archived log pages with
a nice clean table which can be sorted, trimmed, viewed in pieces, etc.
You can see all logged actions by some user, or affecting some page,
and can combine the views of all all logs in one.
There are probably still some broken things in here, but I want this
committed before the patch gets any bigger.
recentchanges table is altered to make rc_namespace signed so Special:
links can be listed in it.
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/4919
|
|
|
|
|
|
|
| |
a lot of testing
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/4904
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/4863
|
|
|
|
|
|
|
| |
Fix for [ 897902 ] Deletion log date stamp inconsistent
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/4590
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/2485
|
|
|
|
|
|
|
|
|
|
|
| |
annotation and (untested) message queue feed.
* Misc. bugs fixed in DatabaseFunctions.php and Skin.php.
* install-utils, install and update utilise Database objects instead of handling their own connections
* schema change for RC improvement -- added rc_type, rc_moved_to_title and rc_moved_to_ns
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/2294
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
execution starts and ends in wiki.phtml, giving the code a somewhat
more predictable flow.
OutputPage.php:
* Added disable() method to Output class.
* Replaced exit() call in checkLastModified() with "return true" (thereby
altering its contract quite severly).
* reportTime() now only returns elapsed time, code with side effects
moved to logProfilingData() in GlobalFunctions.php.
GlobalFunctions.php:
* Added function logProfilingData() which does most of what
OutputPage->reportTime() used to do.
Article.php:
* Replaced exit() in checkLastModified() with "return true" (thereby altering
its contract quite severly).
* replaced implicit exit in calls to checkLastModified() and tryFileCache()
with returns.
LogPage.php:
* replaced implicit exit() with return in call to checkLastModified()
SpecialRecentchanges.php:
* replaced implicit exit() with return in call to checkLastModified()
wiki.phtml:
* Single call to logProfilingData() at the end of the request.
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/2184
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/2088
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/1680
|
|
|
|
| |
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/1607
|
|
|
|
|
|
|
| |
conversion where necessary.
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/1406
|
|
|
|
|
|
|
| |
watnedpages
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/1319
|
|
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/1284
http://mediawiki.org/wiki/Special:Code/MediaWiki/1286
|