wiki.techinc.nl/includes
2011-08-16 17:57:32 +00:00
..
actions Followup r89545: add ,0 to Article constructor call 2011-08-16 12:48:05 +00:00
api Followup r90041: keep naming of watch and unwatch calls consistent 2011-08-16 12:46:15 +00:00
cache Back out r93533, r93531, r93530 2011-07-30 15:56:54 +00:00
conf Followup r88270: comment out globals so I can resolve the fixme. Throw an exception here so nobody tries using it anyway 2011-08-04 21:00:40 +00:00
db Add/update documentation 2011-08-14 19:49:07 +00:00
diff * Changed OutputPage::$mIsArticle flag to be false by default. A lot of actions don't change that flag when they should, since about only action=view should have it to true. 2011-07-27 13:14:28 +00:00
extauth Revert the dbname -> dbName part of r90430. dbname actually dates back to r32578 and is referenced in the documentation for $wgDBservers, so it can't be easily changed. We can still kill tablename though, it's not too late. 2011-06-20 07:40:07 +00:00
filerepo Partial revert to r87584 2011-08-15 18:35:19 +00:00
installer Restored r94370 changes PopulateRevisionLen, moving it to $postDatabaseUpdateMaintenance 2011-08-15 18:52:25 +00:00
interwiki Followup r94353; Use !== null since that's what we use in core. 2011-08-14 14:20:59 +00:00
job Removed the ability to pass a key into stashFile(), which simplifies the stash row creation a great deal. 2011-08-15 23:58:40 +00:00
json Fix the non-PEAR alternative for Services_JSON_Error to be less useless. bug 29278 shows an error related to this class not being stringifiable 2011-06-06 09:41:33 +00:00
libs Followup to r92580 and r93820: r92580 duplicated the call to wfExpandUrl(), and r93820 caused them to get out of sync. 2011-08-14 13:35:06 +00:00
media Fix Bug #30322 “SVG metadata is read incorrectly” by applying supplied patch 2011-08-11 19:51:51 +00:00
normal Followup r93921: missed something from testing 2011-08-04 22:06:05 +00:00
objectcache Merge r93797 to trunk, in a somewhat modified form: clamp expiries for memcached to 30 days, higher values give trouble apparently 2011-08-10 21:15:57 +00:00
parser (bug 30269) Strings like foobar//barfoo are linked to become foobar[//barfoo] 2011-08-15 12:20:00 +00:00
profiler Various profiler tweaks: 2011-08-10 15:35:03 +00:00
resourceloader (bug 26486) ResourceLoader modules with paths to nonexistent files cause PHP warnings/notices to be thrown. Worked around all of them using file_exists() checks, and introduced a safe wrapper around filemtime() that checks for file_exists(). The only warning I couldn't squash is "Warning: array_map(): An error occurred while invoking the map callback" but that's due to a bug in PHP, which I've reported at https://bugs.php.net/bug.php?id=55416 2011-08-13 21:25:02 +00:00
revisiondelete * Changed dynamic calls to Linker methods into static ones 2011-07-10 18:12:11 +00:00
search Update code comments that point to 1.18 to point to 1.19 2011-07-18 23:01:08 +00:00
specials Explicitally define some member variables 2011-08-16 00:41:50 +00:00
templates (bug 30219) NoLocalSettings.php broken on Windows servers. Per Tim on r70711, can't use pathinfo() on url's since the slashes don't match. 2011-08-10 17:28:25 +00:00
upload Cleaning up little things, updates to code clarity, documentation fixes per Catrope's suggestions. 2011-08-16 17:57:32 +00:00
zhtable Update Chinese conversion tables. 2011-06-19 18:10:24 +00:00
.htaccess
Action.php * Follow-up to r91284: fix error in Action::exists by passing empty array as required second parameter to Action::getClass 2011-08-15 04:02:08 +00:00
AjaxDispatcher.php Kill AjaxFunctions.php. The only thing using this was FCKEditor, so I moved js_unescape() over to it. 2011-07-14 20:38:28 +00:00
AjaxResponse.php Kill AjaxFunctions.php. The only thing using this was FCKEditor, so I moved js_unescape() over to it. 2011-07-14 20:38:28 +00:00
Article.php w/s changes 2011-08-16 16:03:29 +00:00
AuthPlugin.php added doc 2011-08-12 15:42:23 +00:00
AutoLoader.php Restored r94370 changes PopulateRevisionLen, moving it to $postDatabaseUpdateMaintenance 2011-08-15 18:52:25 +00:00
Autopromote.php Follow-up r90819: made XOR only work on two conditions per CR. Give a warning if three or more given. 2011-06-28 02:56:45 +00:00
BacklinkCache.php Allow extensions to run their own backlink-based updates: 2011-08-13 22:42:09 +00:00
Block.php Fix r91886 thanks to johnduhart: check if it is an IP *before* stripping subpages, otherwise IP range blocking does not work 2011-08-12 14:32:05 +00:00
Category.php
Categoryfinder.php Add/remove/tweak method documentation 2011-05-19 00:03:31 +00:00
CategoryPage.php * CategoryPage.php: fix the "category-empty" message per comment on r91518, it was outside the bodyContent. And do not convert interface text. 2011-08-11 19:58:23 +00:00
Cdb.php And even more documentation 2011-05-28 18:58:51 +00:00
Cdb_PHP.php And some more.... 2011-05-28 17:51:33 +00:00
ChangesFeed.php (bug 29485) For rss feed of the RC, it groups consecutive edits by same user, but then links 2011-06-19 05:45:40 +00:00
ChangesList.php Add direction mark in recent changes and in protection log summary. 2011-08-02 09:09:23 +00:00
ChangeTags.php Fix for r91651: don't escape HTML 2011-07-09 09:01:50 +00:00
Collation.php (Follow-up r90759 per CR) Use a hook to register new Collations instead of just taking the collation name as a class name 2011-07-05 05:30:04 +00:00
ConfEditor.php Removed some usage of error suppression operator 2011-06-09 19:52:07 +00:00
Cookie.php Add some doc comments on Cookie::validateCookieDomain() and Http::isValidUri(), which both have some failing test cases and are incomplete 2011-06-01 22:35:03 +00:00
DefaultSettings.php * Follow-up r92673: add documentation on how to use $wgDnsBlacklistUrls to DefaultSettings (lifted from the Manual page on mediawiki.org) 2011-08-15 05:12:56 +00:00
Defines.php Follow-up r93258, r93266, r93266: Move the defines to Defines.php 2011-08-03 18:25:04 +00:00
DjVuImage.php Use consistent notation for "@todo FIXME". Should update http://svn.wikimedia.org/doc/todo.html nicely. 2011-05-17 22:03:20 +00:00
EditPage.php Allow extensions to add pages with non-wikitext display by adding two new 2011-08-11 17:21:31 +00:00
Exception.php Revert r94041: PHP Notice: Undefined index: SERVER_PROTOCOL in /home/ci/cruisecontrol-bin-2.8.3/projects/mw/source/includes/Exception.php on line 185 2011-08-15 21:04:11 +00:00
Export.php Uncommited documentation from my working copy 2011-06-25 16:15:44 +00:00
ExternalEdit.php Fix for r92187 2011-07-15 05:32:57 +00:00
ExternalStore.php Even more documentation in various files 2011-05-29 14:24:27 +00:00
ExternalStoreDB.php
ExternalStoreHttp.php
ExternalUser.php More documentation tweaks/additions 2011-05-26 19:52:56 +00:00
FakeTitle.php It's not just for < 5.1! 2011-05-26 20:38:05 +00:00
Fallback.php And even more documentation 2011-05-28 18:58:51 +00:00
Feed.php And some more parameter documentation!! 2011-05-28 16:31:00 +00:00
FeedUtils.php Change usages of $wgUser->getSkin() in special pages to use $this->getSkin() 2011-07-01 02:25:19 +00:00
FileDeleteForm.php Follow-up r90482: escape some more wikitext 2011-06-22 14:59:05 +00:00
ForkController.php And even more documentation 2011-05-28 18:59:42 +00:00
FormOptions.php
GenderCache.php More documentation tweaks/additions 2011-05-26 20:26:51 +00:00
GlobalFunctions.php Followup r94502: per CR, use two caching variables instead of an array indexed with true or false 2011-08-15 13:16:10 +00:00
HistoryBlob.php Revert r89925, setting disable_functions in php.ini is definitely the wrong way to fix hash mismatches. 2011-06-14 06:07:20 +00:00
HistoryPage.php Temporaray revert of r94031; forgot that this was depending of some other work on my working copy 2011-08-07 14:29:28 +00:00
Hooks.php Swap else if for elseif 2011-06-17 16:03:52 +00:00
Html.php Update the Html5 void elements and boolean attributes, in accordance with the latest draft. 2011-08-12 21:04:25 +00:00
HTMLForm.php w/s fix for r92882 2011-08-02 23:16:44 +00:00
HttpFunctions.old.php More parameter documentation!! 2011-05-28 15:59:57 +00:00
HttpFunctions.php Fix r93820: PROT_ -> PROTO_ 2011-08-03 13:11:42 +00:00
ImageFunctions.php Move wfFixBoxImage() out of ImageFunctions and into MediaHandler. It's only used by ImageHandler and OggHandler. 2011-07-28 00:07:08 +00:00
ImageGallery.php sync up RELEASE-NOTES 2011-07-15 23:18:38 +00:00
ImagePage.php BetterDirectionality fixes: 2011-07-11 00:39:41 +00:00
ImageQueryPage.php Param documentation updates/added 2011-05-26 19:21:50 +00:00
Import.php Fix embarassing debugging code left in in r93744 2011-08-04 12:13:01 +00:00
Init.php Minor doc fix to r84741 2011-06-16 23:40:13 +00:00
IP.php * (bug 28798) Set $wgServer in the default LocalSettings.php 2011-06-15 07:35:47 +00:00
Licenses.php Swap else if for elseif 2011-06-17 16:03:52 +00:00
Linker.php * Refactored SpecialUndelete::revDeleteLink into a Linker::getRevDeleteLink function 2011-08-03 22:37:20 +00:00
LinkFilter.php Remove some stuff marked as deprecated <= 1.16 unused 2011-05-06 20:59:58 +00:00
LinksUpdate.php Allow extensions to run their own backlink-based updates: 2011-08-13 22:42:09 +00:00
LocalisationCache.php Adding __METHOD__ to parameters passed to wfMkdirParents() 2011-07-25 22:01:19 +00:00
LogEventsList.php (bug 15641) prevent blocked administrators from accessing deleted revisions. 2011-07-26 20:54:41 +00:00
LogPage.php * Changed dynamic calls to Linker methods into static ones 2011-07-10 18:12:11 +00:00
MagicWord.php * Use Preprocessor_Hash by default in compiled mode, it is faster 2011-05-31 06:10:23 +00:00
Message.php Follow up r89585. Clean up after the test, expand inContentLanguage() comment. 2011-06-06 21:24:23 +00:00
MessageBlobStore.php Refactor MessageBlobStore::updateModule() to remove the multi-language update behavior. Instead of updating all language's blobs at once, it now only updates the requested language. This, in combination with the bug fixed in r89001, was what caused the UploadWizard timeouts on the cluster 2011-05-27 22:42:20 +00:00
Metadata.php * Split off WikiPage class from Article, WikiFilePage class from ImagePage, and WikiCategoryPage from CategoryPage. 2011-06-29 22:09:51 +00:00
mime.info Per CR, revert non debugging stuff from r82436. (KML uploads) 2011-06-29 20:31:43 +00:00
mime.types Per CR, revert non debugging stuff from r82436. (KML uploads) 2011-06-29 20:31:43 +00:00
MimeMagic.php More documentation in various files 2011-05-29 14:01:47 +00:00
MWFunction.php
Namespace.php More adding, updating and tweaking of documentation 2011-05-21 19:07:24 +00:00
OutputHandler.php And more documentation. Yaaaay 2011-05-28 17:18:50 +00:00
OutputPage.php (bug 26283) Previewing user JS/CSS pages doesn't load other user JS/CSS pages 2011-08-13 17:27:35 +00:00
PageQueryPage.php
Pager.php (bug 6100; follow-up to r91315) Being bold and removing $wgBetterDirectionality (and dependent wfUILang) in core, as most or all work is finished. 2011-07-06 02:26:06 +00:00
PatrolLog.php Trim trailing whitespace 2011-07-24 21:36:04 +00:00
PHPVersionError.php Revert 2 from r92498 2011-07-18 23:04:09 +00:00
PoolCounter.php And even more documentation, the last of this batch 2011-05-28 19:00:01 +00:00
Preferences.php * CategoryPage.php: fix the "category-empty" message per comment on r91518, it was outside the bodyContent. And do not convert interface text. 2011-08-11 19:58:23 +00:00
PrefixSearch.php
ProtectionForm.php In the protection form, show the current protection expiry time in the local time and not in UTC. 2011-08-03 07:33:00 +00:00
ProxyTools.php Tests for wfGetIP() follow up r89407 2011-08-16 14:15:07 +00:00
QueryPage.php Use local context instead of global variables 2011-08-08 21:07:17 +00:00
RawPage.php Reverted part of r91246, fixes: Fatal error: Call to undefined method RawPage::getSkin() in C:\wamp\www\MW_trunk\includes\RawPage.php on line 156 2011-07-05 21:28:27 +00:00
RecentChange.php r91784 forgot to change one instance of $wgUser to $user 2011-07-19 20:21:11 +00:00
RequestContext.php * Expanded documentation, added GPL header and changed the @author tag to use my real name 2011-07-17 07:47:13 +00:00
Revision.php Followup r94541 (reverts of r94289 undiscussed core schema change and followups), two more that got missed: reverts of r94290, r94364 2011-08-15 18:52:33 +00:00
RevisionList.php Added filterByIds() function to Rev_List and made ID based filtering optional. It's still mandatory for RevDel_List however. 2011-07-02 09:30:55 +00:00
Sanitizer.php Add code to the sanitizer to convert presontational attributes that were removed in html5 into inline css. This allows wiki to keep using them in short loose WikiText but still output valid modern markup. 2011-08-14 16:41:53 +00:00
SeleniumWebSettings.php coding style tweaks + removed some PHP4-isms 2011-06-25 23:27:05 +00:00
Setup.php * Don't create a WebRequest obhject in CLI mode but a FauxRequest; avoids some useless notices about headers already sent (I know this is more a PHP silliness, but anyway) 2011-07-05 15:05:14 +00:00
SiteConfiguration.php Remove no-op initialise from configuration. Nothing outside of Ext:Configure needs/uses it 2011-08-04 20:55:20 +00:00
SiteStats.php Remove mention of wfOut() in comment 2011-08-13 18:12:43 +00:00
Skin.php Reverted r91871 per CR: http://www.mediawiki.org/wiki/Special:Code/MediaWiki/91871#c19474 2011-08-09 18:36:20 +00:00
SkinLegacy.php SkinLegacy: 2011-07-27 17:20:53 +00:00
SkinTemplate.php Re-add historysubmit, removed in r92984. This broke directionality support when viewing diffs. 2011-08-10 22:19:57 +00:00
SpecialPage.php Per Reedy, follow-up r93758: SpecialPage::capturePath() now has incorrect signature. Removed the function rather than updating it, since it's not called at all and current behavior is incompatible with the old one. 2011-08-16 11:05:19 +00:00
SpecialPageFactory.php * (bug 15558) Allow includable special pages to be parameterized using wiki syntax 2011-08-02 15:40:03 +00:00
SquidPurgeClient.php More documentation tweaks and updates 2011-05-21 19:54:24 +00:00
Status.php w/s 2011-08-11 22:35:49 +00:00
StreamFile.php Move wfStreamFile() into a class, update all callers in core (only 3 extensions use it afaict), leave wfStreamFile() as a b/c alias for now. 2011-08-13 19:03:51 +00:00
StringUtils.php More documentation tweaks and updates 2011-05-21 19:54:24 +00:00
StubObject.php Fix for r89474: added missing () to function call 2011-06-04 20:28:59 +00:00
tidy.conf
Title.php Followup r94375; Use PROTO_RELATIVE so that when $wgServer is a protocol relative url we don't potentially polute the cache if getFullURL is called by an extension that outputs to cache. getFullURL includes a #fragment so it's more likely that extensions outputting urls in situations that don't support protocol relative urls are using getLocalURL and expanding it. 2011-08-14 14:07:12 +00:00
TitleArray.php More parameter documentation!! 2011-05-28 15:59:57 +00:00
User.php Fix r93820: PROT_ -> PROTO_ 2011-08-03 13:11:42 +00:00
UserArray.php More parameter documentation!! 2011-05-28 15:59:57 +00:00
UserMailer.php Expand all URLs in e-mail notifications to be full HTTP URLs. This prevents protocol-relative URLs from appearing in e-mail notifications if $wgServer is protocol-relative 2011-08-04 15:13:17 +00:00
UserRightsProxy.php
ViewCountUpdate.php Fix comment from r79430; pointed out by Emufarmers 2011-06-25 19:13:40 +00:00
WatchedItem.php And even more documentation, the last of this batch 2011-05-28 19:00:01 +00:00
WebRequest.php Improve the ability for extensions to participate in how MediaWiki handles url paths: 2011-08-12 19:23:43 +00:00
WebResponse.php Followup r94211 2011-08-11 00:17:58 +00:00
WebStart.php Added some GPL headers 2011-06-28 18:21:59 +00:00
Wiki.php Temporaray revert of r94031; forgot that this was depending of some other work on my working copy 2011-08-07 14:29:28 +00:00
WikiCategoryPage.php Trim trailing whitespace 2011-07-24 21:36:04 +00:00
WikiError.php Kill some more long deprecated unused functions 2011-05-06 21:09:34 +00:00
WikiFilePage.php * Changed action=revert to use a subclass of Action 2011-07-01 20:07:21 +00:00
WikiMap.php Instead of using some hacky regexes, just use wfParseUrl() in WikiMap::getDisplayName(). This should make protocol-relative URLs behave correctly as well, and fix bug 29965 2011-08-12 19:19:34 +00:00
WikiPage.php Followup r94541 (reverts of r94289 undiscussed core schema change and followups), two more that got missed: reverts of r94290, r94364 2011-08-15 18:52:33 +00:00
Xml.php Fix fail from r94473 2011-08-14 19:50:08 +00:00
XmlTypeCheck.php More comment updates, addition of some braces also 2011-05-21 19:36:03 +00:00
ZhClient.php And even more documentation in various files 2011-05-29 14:25:20 +00:00
ZhConversion.php Update Chinese conversion tables. 2011-06-19 18:10:24 +00:00
ZipDirectoryReader.php Fix unused variables 2011-05-13 16:16:44 +00:00