r97173 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r97172‎ | r97173 | r97174 >
Date:16:19, 15 September 2011
Author:dantman
Status:ok
Tags:
Comment:
Merged revisions 97087,97091-97092,97094,97096-97098,97100-97101,97103,97136,97138,97141,97143-97146,97148-97151,97156,97159-97161,97165,97169 via svnmerge from
svn+ssh://dantman@wikimedia/svnroot/mediawiki/trunk/phase3

........
r97087 | aaron | 2011-09-14 12:05:43 -0700 (Wed, 14 Sep 2011) | 1 line

FU r84610: Renamed getImageTimeKeys() to getFileSearchOptions()
........
r97091 | aaron | 2011-09-14 12:57:41 -0700 (Wed, 14 Sep 2011) | 1 line

FU r89706: Cleaned up getParserOptions duplication problems
........
r97092 | catrope | 2011-09-14 12:59:50 -0700 (Wed, 14 Sep 2011) | 2 lines

Introduce MessageCache::getAllMessageKeys(), which returns all message keys stored in the MessageCache, and use this to power the amincludelocal parameter in meta=allmessages which adds messages that don't exist in PHP but exist as MediaWiki: pages only.
........
r97094 | ialex | 2011-09-14 13:23:36 -0700 (Wed, 14 Sep 2011) | 2 lines

Use local context instead of global variables
........
r97096 | purodha | 2011-09-14 13:32:58 -0700 (Wed, 14 Sep 2011) | 3 lines

Typo fixed in message text of MediaWiki:logentry-suppress-delete
see http://translatewiki.net/wiki/Thread:Support/About_MediaWiki:Logentry-suppress-delete/en
........
r97097 | brion | 2011-09-14 13:34:39 -0700 (Wed, 14 Sep 2011) | 3 lines

Revert r96824: causes fatal errors when search query doesn't happen to be a valid title. Code doesn't appear to have been tested?
........
r97098 | brion | 2011-09-14 13:42:28 -0700 (Wed, 14 Sep 2011) | 7 lines

* (bug 30900) Remove confusing default value added for the default-don't-say-anything case of searchmenu-new-nocreate message

Reverts r80746's addition of a default value, removal of the message from the 'ignore' list, and the subsequent translations of this message that's supposed to be empty.
It doesn't make sense to have a default value here; as added in r65902 it was meant to default to empty. It's not very well thought out to begin with, so any message that goes it ends up being confusing. For queries that aren't meant to be page titles it's meaningless to begin with, and for users who aren't allowed to create articles at all due to read-only or edit/create restrictions it's even more confusing.
........
r97100 | raymond | 2011-09-14 13:46:49 -0700 (Wed, 14 Sep 2011) | 2 lines

Localisation updates for core and extension messages from translatewiki.net
........
r97101 | hashar | 2011-09-14 13:48:02 -0700 (Wed, 14 Sep 2011) | 2 lines

ammend design guide :p
........
r97103 | brion | 2011-09-14 14:38:26 -0700 (Wed, 14 Sep 2011) | 5 lines

* (bug 30894) Add --output option to mwdocgen.php to override output directory

Note that files go into the 'html' subdir of wherever you point.
........
r97136 | dantman | 2011-09-14 19:10:44 -0700 (Wed, 14 Sep 2011) | 2 lines

Add support for a second argument to wfDeprecated so we can start using it right away and let users limit what warnings they get if they need to, instead of delaying warnings for an entire release or more.
........
r97138 | nikerabbit | 2011-09-15 00:51:25 -0700 (Thu, 15 Sep 2011) | 4 lines

This should fix the following PHP notice and the display of some yet another kind of legacy log entries for suppression log
PHP Notice: Undefined offset: 6 in /www/w/includes/logging/LogFormatter.php on line 379
........
r97141 | catrope | 2011-09-15 04:06:33 -0700 (Thu, 15 Sep 2011) | 2 lines

Merge r82286 (live hack that fixes Malayam redirect loop bug) to trunk. I still don't understand this hack, but we needed it on the cluster when we deployed 1.17 so we'll probably need it now for 1.18 as well.
........
r97143 | catrope | 2011-09-15 04:08:30 -0700 (Thu, 15 Sep 2011) | 2 lines

Followup 97141: merge r92469 too, was a typo fix for r82286
........
r97144 | catrope | 2011-09-15 04:12:19 -0700 (Thu, 15 Sep 2011) | 2 lines

Merge r82361 from 1.17wmf1 to trunk. This shuts up "Non-string key given" exceptions in cases where a numeric key manages to become an integer somehow. This could probably be fixed in a better way but I wouldn't know how.
........
r97145 | tstarling | 2011-09-15 05:10:53 -0700 (Thu, 15 Sep 2011) | 3 lines

Reverted r85922 and related: new doTableStuff(). I copied in the old doTableStuff() from before r85922 and reverted all parser test changes that looked vaguely related. Apologies to Platonides, since some of his parser tests appeared to be relevant to the old parser, but it's simplest to just revert all the related changes and then re-add any useful tests later. See CR r85922 for full rationale.
........
r97146 | catrope | 2011-09-15 05:17:44 -0700 (Thu, 15 Sep 2011) | 8 lines

Merge live hacks from r83992 to trunk, after cleaning some things up.

* Wait for slaves after every thousand rows rather than after processing every batch. r83992 had 1000 hard-coded, I put it in SYNC_INTERVAL
* Set $lb->waitTimeout(100000). I have no idea why, but it was in the live hack. Maybe Tim or Domas could enlighten me
* Use a STRAIGHT JOIN for the query on categorylinks and page because MySQL appears to want to join the tables the wrong way around
* Use cl_collation='previousValue' rather than cl_collation!='newValue' if possible. This was originally a dirty live hack, but I re-implemented it nicely with a --previous-collation command line option
* Print a status update both before and after the SELECT query. This allows the user to notice when the SELECT queries are getting increasingly slower, which is an indication you may want to set --previous-collation
........
r97148 | catrope | 2011-09-15 05:42:29 -0700 (Thu, 15 Sep 2011) | 2 lines

Followup r97146: drop the $lb->waitTimeout() call per Tim. Was used so Tim could sleep while a schema change was going on, but this is the kind of live hack that doesn't belong in core.
........
r97149 | catrope | 2011-09-15 06:11:59 -0700 (Thu, 15 Sep 2011) | 2 lines

Per Nikerabbit on IRC, document the $status parameter in ArticleSaveComplete. Has been undocumented since its introduction in r41244 (!)
........
r97150 | catrope | 2011-09-15 06:15:06 -0700 (Thu, 15 Sep 2011) | 2 lines

Update jquery.tablesorter for r97145: emulate <thead> if there is no <thead> in the HTML, by walking down the table starting at the first row and moving rows to the <thead> as long as all of its cells are <th>s (or the row is empty). Also fix and simplify the sortbottom code, which was incorrectly creating multiple <tfoot> elements if there were multiple sortbottom rows.
........
r97151 | bawolff | 2011-09-15 06:47:40 -0700 (Thu, 15 Sep 2011) | 2 lines

(bug 30907) Special:Unusedcategories should sort ascendingly (A-Z not Z-A).
........
r97156 | ialex | 2011-09-15 08:04:17 -0700 (Thu, 15 Sep 2011) | 2 lines

Use local context instead of global variables
........
r97159 | dantman | 2011-09-15 08:19:49 -0700 (Thu, 15 Sep 2011) | 2 lines

Use IContextSource instead of RequestContext inside type hints and instanceof checks. All we need is something that implements IContextSource and it's possible we may want to implement types of RequestContext that don't directly extend RequestContext but are perfectly valid to be passed to classes.
........
r97160 | catrope | 2011-09-15 08:40:40 -0700 (Thu, 15 Sep 2011) | 2 lines

Followup r93247: add apiScript as a property of a ResourceLoader source.
........
r97161 | dantman | 2011-09-15 08:47:15 -0700 (Thu, 15 Sep 2011) | 2 lines

Implement DerivativeContext. Can be used to inherit context from another context while overriding only parts of the context.
........
r97165 | ialex | 2011-09-15 08:55:13 -0700 (Thu, 15 Sep 2011) | 3 lines

* Factorise calls to get the User object
* Call Linker method statically
........
r97169 | jeroendedauw | 2011-09-15 09:07:40 -0700 (Thu, 15 Sep 2011) | 1 line

Follow up to r97128;
........
Modified paths:
  • /branches/pageoutput (modified) (history)
  • /branches/pageoutput/CREDITS (modified) (history)
  • /branches/pageoutput/RELEASE-NOTES-1.19 (modified) (history)
  • /branches/pageoutput/docs/design.html (modified) (history)
  • /branches/pageoutput/docs/hooks.txt (modified) (history)
  • /branches/pageoutput/includes (modified) (history)
  • /branches/pageoutput/includes/Action.php (modified) (history)
  • /branches/pageoutput/includes/Article.php (modified) (history)
  • /branches/pageoutput/includes/AutoLoader.php (modified) (history)
  • /branches/pageoutput/includes/CategoryPage.php (modified) (history)
  • /branches/pageoutput/includes/ChangesList.php (modified) (history)
  • /branches/pageoutput/includes/ConfEditor.php (modified) (history)
  • /branches/pageoutput/includes/DefaultSettings.php (modified) (history)
  • /branches/pageoutput/includes/GlobalFunctions.php (modified) (history)
  • /branches/pageoutput/includes/HTMLForm.php (modified) (history)
  • /branches/pageoutput/includes/HistoryPage.php (modified) (history)
  • /branches/pageoutput/includes/Html.php (modified) (history)
  • /branches/pageoutput/includes/OutputPage.php (modified) (history)
  • /branches/pageoutput/includes/Preferences.php (modified) (history)
  • /branches/pageoutput/includes/RequestContext.php (modified) (history)
  • /branches/pageoutput/includes/Revision.php (modified) (history)
  • /branches/pageoutput/includes/RevisionList.php (modified) (history)
  • /branches/pageoutput/includes/Sanitizer.php (modified) (history)
  • /branches/pageoutput/includes/SpecialPage.php (modified) (history)
  • /branches/pageoutput/includes/SpecialPageFactory.php (modified) (history)
  • /branches/pageoutput/includes/Title.php (modified) (history)
  • /branches/pageoutput/includes/Wiki.php (modified) (history)
  • /branches/pageoutput/includes/WikiCategoryPage.php (modified) (history)
  • /branches/pageoutput/includes/WikiPage.php (modified) (history)
  • /branches/pageoutput/includes/api (modified) (history)
  • /branches/pageoutput/includes/api/ApiQueryAllmessages.php (modified) (history)
  • /branches/pageoutput/includes/api/ApiQueryImageInfo.php (modified) (history)
  • /branches/pageoutput/includes/api/ApiUpload.php (modified) (history)
  • /branches/pageoutput/includes/cache/MessageCache.php (modified) (history)
  • /branches/pageoutput/includes/db/Database.php (modified) (history)
  • /branches/pageoutput/includes/db/DatabaseError.php (modified) (history)
  • /branches/pageoutput/includes/db/DatabaseUtility.php (modified) (history)
  • /branches/pageoutput/includes/db/LoadBalancer.php (modified) (history)
  • /branches/pageoutput/includes/filerepo/File.php (modified) (history)
  • /branches/pageoutput/includes/installer/DatabaseInstaller.php (modified) (history)
  • /branches/pageoutput/includes/interwiki/Interwiki.php (modified) (history)
  • /branches/pageoutput/includes/json/Services_JSON.php (modified) (history)
  • /branches/pageoutput/includes/libs/HttpStatus.php (modified) (history)
  • /branches/pageoutput/includes/logging/LogFormatter.php (modified) (history)
  • /branches/pageoutput/includes/media/Exif.php (modified) (history)
  • /branches/pageoutput/includes/media/ExifBitmap.php (modified) (history)
  • /branches/pageoutput/includes/parser/Parser.php (modified) (history)
  • /branches/pageoutput/includes/parser/ParserOutput.php (modified) (history)
  • /branches/pageoutput/includes/resourceloader/ResourceLoader.php (modified) (history)
  • /branches/pageoutput/includes/revisiondelete/RevisionDeleteAbstracts.php (modified) (history)
  • /branches/pageoutput/includes/specials (modified) (history)
  • /branches/pageoutput/includes/specials/SpecialBlock.php (modified) (history)
  • /branches/pageoutput/includes/specials/SpecialChangeEmail.php (modified) (history)
  • /branches/pageoutput/includes/specials/SpecialSearch.php (modified) (history)
  • /branches/pageoutput/includes/specials/SpecialUnusedcategories.php (modified) (history)
  • /branches/pageoutput/includes/specials/SpecialUpload.php (modified) (history)
  • /branches/pageoutput/includes/specials/SpecialUploadStash.php (modified) (history)
  • /branches/pageoutput/includes/specials/SpecialWithoutinterwiki.php (modified) (history)
  • /branches/pageoutput/includes/upload/UploadBase.php (modified) (history)
  • /branches/pageoutput/includes/upload/UploadFromFile.php (modified) (history)
  • /branches/pageoutput/includes/upload/UploadStash.php (modified) (history)
  • /branches/pageoutput/languages (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesAce.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesAf.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesAln.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesAm.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesAn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesAng.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesAnp.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesAr.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesArc.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesArn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesAry.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesArz.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesAs.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesAst.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesAvk.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesAz.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesBa.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesBar.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesBcc.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesBcl.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesBe.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesBe_tarask.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesBg.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesBho.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesBjn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesBn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesBo.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesBpy.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesBqi.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesBr.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesBrh.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesBs.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesBug.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesCa.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesCbk_zam.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesCdo.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesCe.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesCeb.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesCh.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesCkb.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesCo.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesCps.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesCrh_cyrl.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesCrh_latn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesCs.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesCsb.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesCu.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesCv.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesCy.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesDa.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesDe.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesDiq.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesDsb.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesDtp.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesDv.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesDz.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesEe.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesEl.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesEml.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesEn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesEo.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesEs.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesEt.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesEu.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesExt.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesFa.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesFi.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesFo.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesFr.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesFrc.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesFrp.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesFrr.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesFur.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesFy.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesGa.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesGag.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesGan_hans.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesGan_hant.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesGd.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesGl.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesGn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesGot.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesGrc.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesGsw.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesGu.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesGv.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesHa.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesHak.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesHaw.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesHe.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesHi.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesHif_latn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesHil.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesHr.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesHsb.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesHt.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesHu.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesHy.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesIa.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesId.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesIe.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesIg.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesIke_cans.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesIke_latn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesIlo.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesInh.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesIo.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesIs.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesIt.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesJa.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesJam.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesJbo.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesJut.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesJv.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesKa.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesKaa.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesKab.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesKbd_cyrl.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesKhw.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesKiu.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesKk_arab.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesKk_cyrl.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesKk_latn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesKl.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesKm.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesKn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesKo.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesKoi.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesKrc.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesKsh.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesKu_latn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesKw.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesKy.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesLa.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesLad.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesLb.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesLez.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesLfn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesLg.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesLi.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesLij.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesLiv.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesLmo.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesLn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesLo.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesLoz.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesLt.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesLtg.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesLv.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesLzh.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesLzz.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesMai.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesMdf.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesMg.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesMhr.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesMin.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesMk.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesMl.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesMn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesMo.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesMr.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesMrj.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesMs.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesMt.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesMwl.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesMy.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesMyv.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesMzn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesNa.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesNah.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesNan.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesNap.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesNds.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesNds_nl.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesNe.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesNiu.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesNl.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesNn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesNo.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesNov.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesNso.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesNv.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesOc.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesOr.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesOs.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesPa.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesPag.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesPam.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesPap.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesPcd.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesPdc.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesPfl.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesPl.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesPms.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesPnb.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesPnt.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesPrg.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesPs.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesPt.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesPt_br.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesQqq.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesQu.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesQug.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesRgn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesRif.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesRm.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesRmy.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesRo.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesRoa_tara.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesRu.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesRue.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesRup.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesRuq_cyrl.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesRuq_latn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSa.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSah.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSc.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesScn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSco.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSd.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSdc.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSe.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSei.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSgs.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSh.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesShi.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSi.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSk.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSl.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSli.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSma.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSo.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSq.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSr_ec.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSr_el.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSrn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesStq.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSu.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSv.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSw.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesSzl.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesTa.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesTcy.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesTe.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesTet.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesTg_cyrl.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesTg_latn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesTh.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesTk.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesTl.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesTn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesTo.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesTpi.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesTr.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesTt_cyrl.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesTt_latn.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesTy.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesTyv.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesUg_arab.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesUk.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesUr.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesUz.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesVec.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesVep.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesVi.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesVls.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesVmf.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesVo.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesVot.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesVro.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesWa.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesWar.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesWo.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesWuu.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesXal.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesXh.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesXmf.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesYi.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesYo.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesYue.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesZa.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesZea.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesZh.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesZh_hans.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesZh_hant.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesZh_hk.php (modified) (history)
  • /branches/pageoutput/languages/messages/MessagesZh_tw.php (modified) (history)
  • /branches/pageoutput/maintenance/archives (modified) (history)
  • /branches/pageoutput/maintenance/cleanupTable.inc (modified) (history)
  • /branches/pageoutput/maintenance/deleteSelfExternals.php (modified) (history)
  • /branches/pageoutput/maintenance/findHooks.php (modified) (history)
  • /branches/pageoutput/maintenance/language/messageTypes.inc (modified) (history)
  • /branches/pageoutput/maintenance/mergeMessageFileList.php (modified) (history)
  • /branches/pageoutput/maintenance/mwdocgen.php (modified) (history)
  • /branches/pageoutput/maintenance/populateRevisionLength.php (modified) (history)
  • /branches/pageoutput/maintenance/tables.sql (modified) (history)
  • /branches/pageoutput/maintenance/updateCollation.php (modified) (history)
  • /branches/pageoutput/resources/jquery/jquery.tablesorter.js (modified) (history)
  • /branches/pageoutput/skins/Nostalgia.php (modified) (history)
  • /branches/pageoutput/tests/parser/parserTests.txt (modified) (history)
  • /branches/pageoutput/tests/parserTests.php (modified) (history)
  • /branches/pageoutput/tests/phpunit/Makefile (modified) (history)
  • /branches/pageoutput/tests/phpunit/data/media/1bit-png.png (modified) (history)
  • /branches/pageoutput/tests/phpunit/data/media/Animated_PNG_example_bouncing_beach_ball.png (modified) (history)
  • /branches/pageoutput/tests/phpunit/data/media/Gtk-media-play-ltr.svg (modified) (history)
  • /branches/pageoutput/tests/phpunit/data/media/Png-native-test.png (modified) (history)
  • /branches/pageoutput/tests/phpunit/data/media/QA_icon.svg (modified) (history)
  • /branches/pageoutput/tests/phpunit/data/media/README (modified) (history)
  • /branches/pageoutput/tests/phpunit/data/media/US_states_by_total_state_tax_revenue.svg (modified) (history)
  • /branches/pageoutput/tests/phpunit/data/media/Wikimedia-logo.svg (modified) (history)
  • /branches/pageoutput/tests/phpunit/data/media/Xmp-exif-multilingual_test.jpg (modified) (history)
  • /branches/pageoutput/tests/phpunit/data/media/broken_exif_date.jpg (modified) (history)
  • /branches/pageoutput/tests/phpunit/data/media/greyscale-na-png.png (modified) (history)
  • /branches/pageoutput/tests/phpunit/data/media/greyscale-png.png (modified) (history)
  • /branches/pageoutput/tests/phpunit/data/media/landscape-plain.jpg (modified) (history)
  • /branches/pageoutput/tests/phpunit/data/media/portrait-rotated.jpg (modified) (history)
  • /branches/pageoutput/tests/phpunit/data/media/rgb-na-png.png (modified) (history)
  • /branches/pageoutput/tests/phpunit/data/media/rgb-png.png (modified) (history)
  • /branches/pageoutput/tests/phpunit/data/media/test.jpg (modified) (history)
  • /branches/pageoutput/tests/phpunit/data/media/test.tiff (modified) (history)
  • /branches/pageoutput/tests/phpunit/includes/api/ApiUploadTest.php (modified) (history)
  • /branches/pageoutput/tests/phpunit/includes/api/RandomImageGenerator.php (modified) (history)
  • /branches/pageoutput/tests/phpunit/includes/api/generateRandomImages.php (modified) (history)
  • /branches/pageoutput/tests/selenium/installer/MediaWikiButtonsAvailabilityTestCase.php (modified) (history)
  • /branches/pageoutput/tests/selenium/installer/MediaWikiDifferentDatabaseAccountTestCase.php (modified) (history)
  • /branches/pageoutput/tests/selenium/installer/MediaWikiDifferntDatabasePrefixTestCase.php (modified) (history)
  • /branches/pageoutput/tests/selenium/installer/MediaWikiErrorsConnectToDatabasePageTestCase.php (modified) (history)
  • /branches/pageoutput/tests/selenium/installer/MediaWikiErrorsNamepageTestCase.php (modified) (history)
  • /branches/pageoutput/tests/selenium/installer/MediaWikiHelpFieldHintTestCase.php (modified) (history)
  • /branches/pageoutput/tests/selenium/installer/MediaWikiInstallationCommonFunction.php (modified) (history)
  • /branches/pageoutput/tests/selenium/installer/MediaWikiInstallationConfig.php (modified) (history)
  • /branches/pageoutput/tests/selenium/installer/MediaWikiInstallationMessage.php (modified) (history)
  • /branches/pageoutput/tests/selenium/installer/MediaWikiInstallationVariables.php (modified) (history)
  • /branches/pageoutput/tests/selenium/installer/MediaWikiInstallerTestSuite.php (modified) (history)
  • /branches/pageoutput/tests/selenium/installer/MediaWikiMySQLDataBaseTestCase.php (modified) (history)
  • /branches/pageoutput/tests/selenium/installer/MediaWikiMySQLiteDataBaseTestCase.php (modified) (history)
  • /branches/pageoutput/tests/selenium/installer/MediaWikiOnAlreadyInstalledTestCase.php (modified) (history)
  • /branches/pageoutput/tests/selenium/installer/MediaWikiRestartInstallationTestCase.php (modified) (history)
  • /branches/pageoutput/tests/selenium/installer/MediaWikiRightFrameworkLinksTestCase.php (modified) (history)
  • /branches/pageoutput/tests/selenium/installer/MediaWikiUpgradeExistingDatabaseTestCase.php (modified) (history)
  • /branches/pageoutput/tests/selenium/installer/MediaWikiUserInterfaceTestCase.php (modified) (history)
  • /branches/pageoutput/tests/selenium/installer/README.txt (modified) (history)
  • /branches/pageoutput/tests/testHelpers.inc (modified) (history)

Follow-up revisions

RevisionCommit summaryAuthorDate
r102387clean RN 1.19 of bugs merged in 1.18...hashar10:54, 8 November 2011

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r41244Re r41198: if you're going to break the interface, you may as well do it prop...tstarling10:15, 25 September 2008
r65902Add a new searchmenu-new-nocreate message...hartman15:36, 4 May 2010
r80746* changed 'searchmenu-new-nocreate' to no longer be ignored and have content....siebrand14:36, 22 January 2011
r822861.17wmf1: Committing live hack that fixed the Malayam redirect loop bug. No i...catrope20:01, 16 February 2011
r823611.17wmf1: Live hack to shut up "Non-string key given" exceptions for numeric ...catrope23:07, 17 February 2011
r83992Committing some live patches by Roantstarling02:39, 15 March 2011
r84610* Put parser output file version tracking to core...aaron17:35, 23 March 2011
r85922diebuche21:27, 12 April 2011
r89706Reinstate r79122 (fix for bug 14404), reverting r83868. The real bug seem to ...platonides22:28, 7 June 2011
r92469Moving REL1_18 in preparation of rebranching.demon20:28, 18 July 2011
r93247[ResourceLoader 2]: Add support for multiple loadScript sources...krinkle21:10, 26 July 2011
r96824SpecialSearch: add two hooks, one to modify the power search box, one to chan...robin01:39, 12 September 2011
r97087FU r84610: Renamed getImageTimeKeys() to getFileSearchOptions()aaron19:05, 14 September 2011
r97091FU r89706: Cleaned up getParserOptions duplication problemsaaron19:57, 14 September 2011
r97092Introduce MessageCache::getAllMessageKeys(), which returns all message keys s...catrope19:59, 14 September 2011
r97094Use local context instead of global variablesialex20:23, 14 September 2011
r97096Typo fixed in message text of MediaWiki:logentry-suppress-delete...purodha20:32, 14 September 2011
r97097Revert r96824: causes fatal errors when search query doesn't happen to be a v...brion20:34, 14 September 2011
r97098* (bug 30900) Remove confusing default value added for the default-don't-say-...brion20:42, 14 September 2011
r97099MFT r97098: revert of r80746 to fix bug 30900brion20:46, 14 September 2011
r97100Localisation updates for core and extension messages from translatewiki.netraymond20:46, 14 September 2011
r97101ammend design guide :phashar20:48, 14 September 2011
r97103* (bug 30894) Add --output option to mwdocgen.php to override output directory...brion21:38, 14 September 2011
r97128rem stupid codejeroendedauw00:26, 15 September 2011
r97136Add support for a second argument to wfDeprecated so we can start using it ri...dantman02:10, 15 September 2011
r97138This should fix the following PHP notice and the display of some yet another ...nikerabbit07:51, 15 September 2011
r97141Merge r82286 (live hack that fixes Malayam redirect loop bug) to trunk. I sti...catrope11:06, 15 September 2011
r97143Followup 97141: merge r92469 too, was a typo fix for r82286catrope11:08, 15 September 2011
r97144Merge r82361 from 1.17wmf1 to trunk. This shuts up "Non-string key given" exc...catrope11:12, 15 September 2011
r97145Reverted r85922 and related: new doTableStuff(). I copied in the old doTableS...tstarling12:10, 15 September 2011
r97146Merge live hacks from r83992 to trunk, after cleaning some things up....catrope12:17, 15 September 2011
r97148Followup r97146: drop the $lb->waitTimeout() call per Tim. Was used so Tim co...catrope12:42, 15 September 2011
r97149Per Nikerabbit on IRC, document the $status parameter in ArticleSaveComplete....catrope13:11, 15 September 2011
r97150Update jquery.tablesorter for r97145: emulate <thead> if there is no <thead> ...catrope13:15, 15 September 2011
r97151(bug 30907) Special:Unusedcategories should sort ascendingly (A-Z not Z-A).bawolff13:47, 15 September 2011
r97156Use local context instead of global variablesialex15:04, 15 September 2011
r97159Use IContextSource instead of RequestContext inside type hints and instanceof...dantman15:19, 15 September 2011
r97160Followup r93247: add apiScript as a property of a ResourceLoader source.catrope15:40, 15 September 2011
r97161Implement DerivativeContext. Can be used to inherit context from another cont...dantman15:47, 15 September 2011
r97165* Factorise calls to get the User object...ialex15:55, 15 September 2011
r97169Follow up to r97128;jeroendedauw16:07, 15 September 2011

Status & tagging log