lhc/web/wiklou.git
9 years agoMerge "Mention translatewiki.net on edits only, when edit a default message"
jenkins-bot [Mon, 20 Oct 2014 17:08:51 +0000 (17:08 +0000)]
Merge "Mention translatewiki.net on edits only, when edit a default message"

9 years agoCoreParserFunctions::displaytitle(): Use Parser::killMarkers()
Kevin Israel [Mon, 20 Oct 2014 06:52:02 +0000 (02:52 -0400)]
CoreParserFunctions::displaytitle(): Use Parser::killMarkers()

... instead of doing something similar to an old version of it.

Change-Id: I78db194291236208843a13b80d322d403774796c

9 years agoMerge "Add name for bto language"
jenkins-bot [Mon, 20 Oct 2014 15:22:09 +0000 (15:22 +0000)]
Merge "Add name for bto language"

9 years agoMerge "Add $tablesUsed for ApiTestCase"
jenkins-bot [Mon, 20 Oct 2014 15:02:21 +0000 (15:02 +0000)]
Merge "Add $tablesUsed for ApiTestCase"

9 years agoMake PrefixSearchTest use MediaWikiLangTestCase
umherirrender [Wed, 15 Oct 2014 16:31:29 +0000 (18:31 +0200)]
Make PrefixSearchTest use MediaWikiLangTestCase

It uses namespaces which depends on the content language

Change-Id: I0a1ef4adea1e1ddff32e37cbbd8cf51a3398905b

9 years agoAdd $tablesUsed for ApiTestCase
Matthias Mullie [Mon, 20 Oct 2014 11:57:11 +0000 (13:57 +0200)]
Add $tablesUsed for ApiTestCase

This test creates 2 TestUser objects on setUp. Due to recent
changes in TestUser, this isn't even possible anymore if
MediaWikiTestCase hasn't setupTestDB() properly.

Change-Id: Idadfb94bd48270ad085cfece2bf17024ed9d97cd

9 years agoMerge "Skip tests in PrefixSearchTest if not wikitext main namespace"
jenkins-bot [Mon, 20 Oct 2014 10:18:53 +0000 (10:18 +0000)]
Merge "Skip tests in PrefixSearchTest if not wikitext main namespace"

9 years agoFix incorrect replacement inside regular expression
Alexandre Emsenhuber [Mon, 20 Oct 2014 08:26:49 +0000 (10:26 +0200)]
Fix incorrect replacement inside regular expression

Fix for Id3aa87cfa0 (2537ca2).

The "$" is for the end of the string, not for a variable.

Change-Id: I2d262582644b903992dc621079ea5a6a04d7af70

9 years agoUse prefixed globals in eval.php main loop
Tim Starling [Sat, 18 Oct 2014 22:37:56 +0000 (15:37 -0700)]
Use prefixed globals in eval.php main loop

Use globals with less-common names so that variables created by the
command line are less likely to conflict with the ones used by the
eval.php loop.

Change-Id: Id3aa87cfa039eb7555f44e17134c7cdbb5f25cc1

9 years agoMerge "Make TestUser way faster"
jenkins-bot [Mon, 20 Oct 2014 00:22:13 +0000 (00:22 +0000)]
Merge "Make TestUser way faster"

9 years agoMake TestUser way faster
Marius Hoch [Sun, 19 Oct 2014 22:22:02 +0000 (00:22 +0200)]
Make TestUser way faster

By only updating the user row in the database, if needed
and by making use of md5 for passwords instead of slower
hashing.
This cut down run time of some Wikibase API tests to 20%
of the original value for me!
Also it reduces the run time of MediaWiki's test suite
by about 45s on jenkins.

Change-Id: I7024b287a71fe9b327dbcdc5427cd8edb5047606

9 years agoMerge "Use a fixed regex for StripState"
jenkins-bot [Sun, 19 Oct 2014 22:52:44 +0000 (22:52 +0000)]
Merge "Use a fixed regex for StripState"

9 years agoUse a fixed regex for StripState
Tim Starling [Sat, 18 Oct 2014 22:31:27 +0000 (15:31 -0700)]
Use a fixed regex for StripState

The JIT compiler in newer versions of PCRE experiences lock contention
when multithreaded applications perform a high rate of concurrent
compilations. We are seeing some performance impact on HHVM under normal
production traffic.

The random part of the strip marker is just there to protect against
deliberate insertion of strip markers into the source text, which is
very rare. So use a generic regex to find strip markers, and check in
the callback whether the random state ID is correct.

StripState::killMarkers() will be slower when it has to remove many
strip markers, but most calls to it will not match any strip markers, so
overall performance should be improved due to reduced JIT compilation.

Bug: 72205
Change-Id: I8d37ae929a8c669c9e39adc8096b89e5732b68d0

9 years agoLocalisation updates from https://translatewiki.net.
Translation updater bot [Sun, 19 Oct 2014 19:41:15 +0000 (21:41 +0200)]
Localisation updates from https://translatewiki.net.

Change-Id: I289582368b87fb3f273d7fa1d65c95ca14b2942a

9 years agoDo not include ilshowall as a hidden form field on Special:ListFiles
Brian Wolff [Sat, 18 Oct 2014 23:09:00 +0000 (20:09 -0300)]
Do not include ilshowall as a hidden form field on Special:ListFiles

It is already a checkbox, including it in the hidden form inputs
means that it cannot be unchecked.

Bug: 72224
Change-Id: I430c219ac7a445a34f51a268c11c43e907bf9c10

9 years agoMerge "Sanitize TestUser"
jenkins-bot [Sat, 18 Oct 2014 23:05:14 +0000 (23:05 +0000)]
Merge "Sanitize TestUser"

9 years agoSet AdminEmail field in the installer to explicit ltr
Amir E. Aharoni [Sat, 6 Sep 2014 12:12:33 +0000 (15:12 +0300)]
Set AdminEmail field in the installer to explicit ltr

Email addresses are usually left-to-right.

Change-Id: Iaf2320a17d62ad6c950cf83cc74b2cc020cbb9cb

9 years agoMerge "API: Clean up skin handling"
jenkins-bot [Sat, 18 Oct 2014 18:32:48 +0000 (18:32 +0000)]
Merge "API: Clean up skin handling"

9 years agoLocalisation updates from https://translatewiki.net.
Translation updater bot [Sat, 18 Oct 2014 18:30:15 +0000 (20:30 +0200)]
Localisation updates from https://translatewiki.net.

Change-Id: I38583ba3417708c0f6992306785177cae82f552b

9 years agoSanitize TestUser
Marius Hoch [Sat, 18 Oct 2014 13:29:29 +0000 (15:29 +0200)]
Sanitize TestUser

This also, as a side effect, makes sure we no longer
use hash_ functions here, which will reduce the impact of
https://github.com/facebook/hhvm/issues/3740 on us.

Change-Id: I6e0c776ef9aafe490b24b6869037bb5cb05cd151

9 years agoSkip tests in PrefixSearchTest if not wikitext main namespace
aude [Sat, 18 Oct 2014 12:56:19 +0000 (14:56 +0200)]
Skip tests in PrefixSearchTest if not wikitext main namespace

Otherwise, running core tests with non-wikitext in the main
namespace fail with fatal error.

Change-Id: I895e7ee61ba80c0c345b6c05f05d05c368e52d59

9 years agocommonPrint.css: Add @noflip to direction float classes to fix RTL
Reza [Sat, 18 Oct 2014 07:49:21 +0000 (07:49 +0000)]
commonPrint.css: Add @noflip to direction float classes to fix RTL

Same fix is already applied to oldshared.css

Change-Id: I170759de516da04a3ea3c5d57bea0b2f65faf45d

9 years agoAdd name for bto language
Niklas Laxström [Sat, 18 Oct 2014 12:25:04 +0000 (14:25 +0200)]
Add name for bto language

Translations added in I5e83ff26f39

Change-Id: I7ecdd557f56bc9f6027cfd16010f35eb722c2080

9 years agoOOjs UI: Re-build pull-through from scratch to vet for unused files
James D. Forrester [Fri, 17 Oct 2014 23:47:08 +0000 (16:47 -0700)]
OOjs UI: Re-build pull-through from scratch to vet for unused files

Change-Id: Ic1625794af28f986c0f40d1289983f474602ec9e

9 years agoMerge "Revert "Add RL template module with HTML markup language""
jenkins-bot [Fri, 17 Oct 2014 23:26:40 +0000 (23:26 +0000)]
Merge "Revert "Add RL template module with HTML markup language""

9 years agoRevert "Add RL template module with HTML markup language"
Legoktm [Fri, 17 Oct 2014 23:19:21 +0000 (23:19 +0000)]
Revert "Add RL template module with HTML markup language"

Not ready for merging, and Roan says that the +2 was
most likely accidental and meant to be a -1.

This reverts commit d146934f94ba7028fb0ad0a180786bc5856990d6.

Change-Id: I3926c9ae9e3c8026fceb3aeedd3b1f1d9b91667b

9 years agoAvoid needing config to be in sync between MW and the jobrunner
Aaron Schulz [Thu, 9 Oct 2014 00:40:23 +0000 (17:40 -0700)]
Avoid needing config to be in sync between MW and the jobrunner

* This unifies the retry and no-retry code paths so that its easier to use
  the separate job runner service.
* All jobs will use the ack procedure. If no retries are enabled they will
  just get deleted. As a side-effect, abandoned jobs can be seen for a few
  days in the no-retry case, which used to not happen. This could actually
  be useful to know about anyway.

Change-Id: I185092e3696fb336b9edcf19280dcd9a561161d9

9 years agoImplement page status indicators
Bartosz Dziewoński [Wed, 24 Sep 2014 10:44:16 +0000 (12:44 +0200)]
Implement page status indicators

Page status indicators are icons (or short text snippets) usually
displayed in the top-right corner of the page, outside of the main
content. Basically, <indicator name="foo">[[File:Foo.svg|20px]]</indicator>
may be used on a page to place the icon in the indicator area. They
are also known as top icons, page icons, heading icons or title icons.

I found the discussion on bug 23796 highly illuminating. I suggest
that everyone read it before suggesting different design choices.

I spent some time with a thesaurus pondering the name. "Emblems" and
"badges" were also considered, but the former has a much more limited
meaning and the latter is already taken by Wikidata, with a similar
but subtly different feature set. I am not aware of any naming
conflicts ;) besides new talk page message "indicator" (used by core
and Echo in some documents) and OOjs UI indicators (tiny icons like
the arrow on a dropdown form element), which shouldn't be confusing.

Potential use cases include:
* "Lock" indicators for page protection levels
* Featured/good article indicators
* Redirect shortcuts display ("WP:VPT")
* Links to help/manual for special pages
* Coordinates?… or globe icon for inline pop-up maps

Design features:
* Skin-customizable. Skins can fully control where and how indicators
  are shown, or may just do <?php echo $this->getIndicators(); ?> to
  output the default structure. By default they are not shown at all.
* Extension-customizable. Extensions can call ParserOutput::addIndicator()
  to insert an indicator from one of the numerous parser hooks.
* Wiki-customizable. In addition to just using the parser functions,
  on-wiki styles and scripts can use the provided classes and ids
  (.mw-indicator, #mw-indicator-<name>) to customize their display.

Design limitations:
* Every indicator must have a unique identifier (name). It's not
  possible to create arrays, or to have several indicators with the
  same name. In case of duplicates, the latest occurrence of the
  parser function wins.
* Indicators are displayed ordered by their names (and not occurrence
  order). This ensures consistency across pages and provides a simple
  means of ordering or grouping them.
* Indicators are not stored, tracked or accessible outside of
  ParserOutput (in particular they're not in the page_props table).
  They are intended to merely reflect the content or metadata that is
  already present on the page, and not be data themselves. If you ever
  think you need to list pages with a given status indicator, instead
  figure out what it means and use the appropriate tracking category,
  special page report, already existing page_prop, or other means.

Corresponding patch in Vector: I90a8ae15ac8275d084ea5f47b6b2684d5e6c7412.
I'll implement support in the other three skins included in the tarball
and document it on mediawiki.org after this is merged.

Bug: 23796
Change-Id: I2389ff9a5332a2b1d033eb75f0946e5241cfaaf4

9 years agoMerge "Add RL template module with HTML markup language"
jenkins-bot [Fri, 17 Oct 2014 22:46:32 +0000 (22:46 +0000)]
Merge "Add RL template module with HTML markup language"

9 years agoMerge "Make declaration of ApiFormatRaw compatible with ApiFormatBase"
jenkins-bot [Fri, 17 Oct 2014 22:45:39 +0000 (22:45 +0000)]
Merge "Make declaration of ApiFormatRaw compatible with ApiFormatBase"

9 years agoUpdate OOjs UI to v0.1.0-pre (0d358b167a)
James D. Forrester [Fri, 17 Oct 2014 20:02:54 +0000 (13:02 -0700)]
Update OOjs UI to v0.1.0-pre (0d358b167a)

New changes:
630586d noflip left: 0; rule for overlays
03e5106 Rewrite OO.ui.Element.getRelativePosition() to be smarter
90d4eef Replace calls to OO.ui.bind( fn, ... ) with fn.bind( ... )
77f0cd3 [BREAKING CHANGE] Remove deprecated Minerva theme
3e415f0 Clean up unneeded use of bind()
21c5b18 PHP Implementation of OOjs UI
3eb2ee5 OOUI PHP: TitledElement
70b35b2 OOUI PHP: GroupElement, ButtonGroupWidget
2f0df0d OOUI PHP: Layouts: Field, Fieldset, Form, Panel, Grid
d856e81 OOUI PHP: Widgets: Icon, Indicator, Label, Input, TextInput, CheckboxInput
0d358b1 build: Fix PNG image generation

Change-Id: I2d02d29c267a1b0db0cd1e1c19b93f488d02a9c2

9 years agoMerge "Update OOjs UI to v0.1.0-pre (99ec31d9b9)"
jenkins-bot [Fri, 17 Oct 2014 19:49:09 +0000 (19:49 +0000)]
Merge "Update OOjs UI to v0.1.0-pre (99ec31d9b9)"

9 years agoMake declaration of ApiFormatRaw compatible with ApiFormatBase
Marius Hoch [Fri, 17 Oct 2014 19:16:58 +0000 (21:16 +0200)]
Make declaration of ApiFormatRaw compatible with ApiFormatBase

This was causing PHP warnings.

Change-Id: I96f66672756be3c09c20aea053f8a29241f56a19

9 years agoMerge "mediawiki.hlist: Remove IE6 & 7 fallbacks"
jenkins-bot [Fri, 17 Oct 2014 19:02:46 +0000 (19:02 +0000)]
Merge "mediawiki.hlist: Remove IE6 & 7 fallbacks"

9 years agoAPI: Clean up skin handling
Brad Jorsch [Fri, 17 Oct 2014 18:39:15 +0000 (11:39 -0700)]
API: Clean up skin handling

* Set a more sensible value for the "title" of the page (Special:ApiHelp
  rather than API)
* Avoid calling various skin-related hooks that aren't going to be used.
* Don't override the user in the DerivativeContext, MessageCache doesn't
  pay attention to it anyway for ->parse().

Bug: 72131
Bug: 72174
Change-Id: Idc42ab6526d640dc68fa93f6b4c5524b3d9e2e44

9 years agoLocalisation updates from https://translatewiki.net.
Translation updater bot [Fri, 17 Oct 2014 18:33:29 +0000 (20:33 +0200)]
Localisation updates from https://translatewiki.net.

Change-Id: Ib16c880b53bda5528405b4efdc84e701222e356f

9 years agoAlso provide assertNotTag in MediaWikiTestCase
Marius Hoch [Fri, 17 Oct 2014 18:14:35 +0000 (20:14 +0200)]
Also provide assertNotTag in MediaWikiTestCase

And mark that and assertTag as deprecated to avoid
new usages.

Bug: 69505
Change-Id: Ibfe78fd1914adfb08b29f61c59c43899bd8840d2

9 years agomediawiki.hlist: Remove IE6 & 7 fallbacks
Kunal Mehta [Fri, 17 Oct 2014 17:51:39 +0000 (10:51 -0700)]
mediawiki.hlist: Remove IE6 & 7 fallbacks

Change-Id: I47e54f169f311b4f8211a6deef13704c97e43b06

9 years agoAdd RL template module with HTML markup language
jdlrobson [Fri, 10 Oct 2014 00:07:14 +0000 (17:07 -0700)]
Add RL template module with HTML markup language

Preparation work for templating in core.
RL should allow us to ship HTML / template markup from server to client.
Use in Special:Upload and mediawiki.feedback as a proof of concept.
Separation of concerns etc...

See Also:
Ia63d6b6868f23a773e4a41daa0036d4bf2cd6724

Change-Id: I6ff38c12897e3164969a1090449e626001926c3b

9 years agoMerge "Add a messages file for Koyraboro Senni with French fallback"
jenkins-bot [Fri, 17 Oct 2014 16:08:05 +0000 (16:08 +0000)]
Merge "Add a messages file for Koyraboro Senni with French fallback"

9 years agoReduced LocalFileRestoreBatch::execute deadlocks when doing batch restores
Aaron Schulz [Tue, 7 Oct 2014 21:08:34 +0000 (14:08 -0700)]
Reduced LocalFileRestoreBatch::execute deadlocks when doing batch restores

* Often users restore a batch of many files with similar names.
  This fails due to gap locking on non-existing rows which tangles up
  unrelated actions. Avoid that locking for the common case.
* This changes the return value of LocalFile::lock() from a useless
  one (due to the exception) to one that conveys some useful information.
  The method is fairly internal in any case.

Change-Id: Idb86367cf45b731d4b2a67b1813a660bc0e7a84f

9 years agoMerge "Add a PSR-3 based logging interface"
jenkins-bot [Thu, 16 Oct 2014 23:39:22 +0000 (23:39 +0000)]
Merge "Add a PSR-3 based logging interface"

9 years agoMerge "Localisation updates from https://translatewiki.net."
Translation updater bot [Thu, 16 Oct 2014 20:07:04 +0000 (20:07 +0000)]
Merge "Localisation updates from https://translatewiki.net."

9 years agoLocalisation updates from https://translatewiki.net.
Translation updater bot [Thu, 16 Oct 2014 20:01:06 +0000 (22:01 +0200)]
Localisation updates from https://translatewiki.net.

Change-Id: Id155f17da42d10128a582357d602fb4ff3d08c46

9 years agoUpdate OOjs UI to v0.1.0-pre (99ec31d9b9)
James D. Forrester [Thu, 16 Oct 2014 18:08:16 +0000 (11:08 -0700)]
Update OOjs UI to v0.1.0-pre (99ec31d9b9)

New changes:
6298415 ButtonWidget: Fix titled button
918ebed MediaWiki theme: Fix styling of SearchWidget
bd03644 Refine global event handling in non-isolated window managers
9a7633c WindowManager: Wait for window to open before trying to close it
5516490 Element: Correct method name reference in documentation
99ec31d Position popups and their anchors correctly in RTL

Change-Id: I4266c58ec1a2e6cee54ffc55891a5c2097f0222f

9 years agoAdd a messages file for Koyraboro Senni with French fallback
Amir E. Aharoni [Thu, 16 Oct 2014 16:15:17 +0000 (19:15 +0300)]
Add a messages file for Koyraboro Senni with French fallback

Change-Id: Idb53b501d11c295a7d1147724582456220720882

9 years agoAdd a tracking category for duplicate arguments
Jackmcbarn [Thu, 29 May 2014 16:55:40 +0000 (12:55 -0400)]
Add a tracking category for duplicate arguments

If a page accidentally duplicates an argument, such as
{{foo|bar=1|bar=2}} or {{foo|bar|1=baz}}, add it to a tracking category.

Bug: 69964
Change-Id: I3b6eeff8b51859bc7af0ea985f6f7528c2e9d220

9 years agoMerge "DatabaseBase::tableName() fix limit while invoking explode()"
jenkins-bot [Thu, 16 Oct 2014 00:57:19 +0000 (00:57 +0000)]
Merge "DatabaseBase::tableName() fix limit while invoking explode()"

9 years agoMerge "SqlBagOStuff: document public method deleteAll()"
jenkins-bot [Thu, 16 Oct 2014 00:57:06 +0000 (00:57 +0000)]
Merge "SqlBagOStuff: document public method deleteAll()"

9 years agoUpdate OOjs UI to v0.1.0-pre (1829141230)
James D. Forrester [Wed, 15 Oct 2014 22:50:13 +0000 (15:50 -0700)]
Update OOjs UI to v0.1.0-pre (1829141230)

New changes:
393fd80 TextInputMenuWidget: Handle undefined value properly when toggling visibility

Change-Id: I4f6a7f62803d441de53271c645f07f76d23b3d06

9 years agoUpdate OOjs UI to v0.1.0-pre (98cecf304d)
James D. Forrester [Wed, 15 Oct 2014 22:39:38 +0000 (15:39 -0700)]
Update OOjs UI to v0.1.0-pre (98cecf304d)

New changes:
98cecf3 Support MenuWidget's config.widget being in a different document

Change-Id: Ifc30790e67926bbdda0a8d5ec9464e7046f984ea

9 years agoSpecialNewpages: Prepare for mw-ui
Florianschmidtwelzow [Sat, 4 Oct 2014 14:35:54 +0000 (16:35 +0200)]
SpecialNewpages: Prepare for mw-ui

Use HTMLForm instead of self-built table structure, to be
prepared for use with MediaWiki UI.

Bug: 71446
Change-Id: I5c03dc543b910aab27a26a5a223341be50893cf3

9 years agoDatabaseBase::tableName() fix limit while invoking explode()
Sergio Santoro [Wed, 15 Oct 2014 21:14:11 +0000 (23:14 +0200)]
DatabaseBase::tableName() fix limit while invoking explode()

Limit for explode() needs to be set to 3 to allow entering
branch at line 2350.

Change-Id: Idc2ba81a4bafa3e5511982db73a5c1549f1f9ef0

9 years agoSqlBagOStuff: document public method deleteAll()
Sergio Santoro [Wed, 15 Oct 2014 20:57:53 +0000 (22:57 +0200)]
SqlBagOStuff: document public method deleteAll()

Change-Id: I23700714453b6243e564642f2bad4a2d1c2469c6

9 years agoFix copy/pasto in API help and a typo in message name
Petr Kadlec [Wed, 15 Oct 2014 20:52:40 +0000 (22:52 +0200)]
Fix copy/pasto in API help and a typo in message name

* The help for [[Special:ApiHelp/xml]] used the same copypasted
apihelp-json-param-callback message for both parameters instead of the
correct ones for those parameters.
* The message name in en.json and qqq.json was truncated, so that it did
not correspond to the parameter name. I presume this was unintentional
and not some strange limitation.

Change-Id: I666b2fd6511f08bccc9f05739bab68d7675ef5c6

9 years agoLocalisation updates from https://translatewiki.net.
Translation updater bot [Wed, 15 Oct 2014 19:39:49 +0000 (21:39 +0200)]
Localisation updates from https://translatewiki.net.

Change-Id: I6834a3e482f32878082ebe86ac2a46e09e8f9cdb

9 years agoMerge "Make prefs-help-realname more realistic"
jenkins-bot [Wed, 15 Oct 2014 18:39:22 +0000 (18:39 +0000)]
Merge "Make prefs-help-realname more realistic"

9 years agoLet BlockTest.php respect database constraints
saper [Sun, 8 Dec 2013 22:18:20 +0000 (23:18 +0100)]
Let BlockTest.php respect database constraints

This is an attempt to make BlockTest not to fail
with database referential constraints enabled
(from I326bb4a189bf881299b9fb678033a927b916efac)

Bug: 58191
Change-Id: I45c2d466f77d4d0aa25e880b5bb7d1120c39a561

9 years agoMake prefs-help-realname more realistic
Federico Leva [Wed, 15 Oct 2014 16:39:59 +0000 (18:39 +0200)]
Make prefs-help-realname more realistic

The message is shown whenever $wgMaxCredits > 0, but several actions
and extensions don't give attribution based on it anyway.
Also simplify the sentence structure a bit.

Bug: 72078
Change-Id: I4ae3abd9433c485e7066da922d2f47529b00d7d4

9 years agoRemove broken parameter 'table' in wgObjectCaches for CACHE_DB
Sergio Santoro [Wed, 8 Oct 2014 15:36:17 +0000 (17:36 +0200)]
Remove broken parameter 'table' in wgObjectCaches for CACHE_DB

$wgObjectCaches in DefaultSettings.php had the useless
parameter 'table' for CACHE_DB.
SqlBagOStuff actually uses 'tableName' parameter, it
already defaults to 'objectcache' so there's no need
to write it again.

Change-Id: I5fe6b7c5f4d46cc8642c42861bc7078b795f5fb1

9 years agoRequestContextTest: Distinguish initial test from restored test
Timo Tijhof [Wed, 15 Oct 2014 01:45:51 +0000 (03:45 +0200)]
RequestContextTest: Distinguish initial test from restored test

Follows-up f31a046. In failure it's hard to see whether it's the
first or third group of assertions as they were carying the same
name.

Change-Id: I5891754342400155759e797337f8509d4eca39ec

9 years agoUpgrade jStorage to v0.4.12
paladox [Sat, 6 Sep 2014 12:54:30 +0000 (12:54 +0000)]
Upgrade jStorage to v0.4.12

Project site

* http://www.jstorage.info/ and https://github.com/andris9/jStorage/tree/v0.4.12

jquery.jStorage.js file

* https://github.com/andris9/jStorage/blob/v0.4.12/jstorage.js

Author and contact

* Andris Reinman and email andris.reinman@gmail.com

README

* https://github.com/andris9/jStorage/blob/v0.4.12/README.md

Upgrading from 0.4.10 to 0.4.12.

Change-Id: I62899c8a2a7b9b2ae5b0f4b6ec06ee24cb966806

9 years agoUpdate OOjs UI to v0.1.0-pre (d74a46ca6a)
James D. Forrester [Wed, 15 Oct 2014 00:40:32 +0000 (17:40 -0700)]
Update OOjs UI to v0.1.0-pre (d74a46ca6a)

New changes:
d74a46c Introduce oo-ui-window-inner-overlay

Change-Id: I3f325f3c514d334179de46d0ea092b48f13b9dfd

9 years agojquery.badge: Swap non-breaking space character for regular space
Timo Tijhof [Tue, 14 Oct 2014 21:39:31 +0000 (23:39 +0200)]
jquery.badge: Swap non-breaking space character for regular space

Follows-up d453f81f4e. PHP's native json_encode requires input
being a UTF-8 string. For some reason MediaWiki, Git or OS X is
not reading jquery.badge.css as UTF-8 for me.

https://bugs.php.net/bug.php?id=51947

Due to json_encode rejecting the entire value and returning null
instead, the jquery.badge stylesheet was absent. load.php:

 mw.loader.implement("jquery.badge",function, {"css":[null]} );

Change-Id: I84d2017a976249f55bdb269d2b9762db941292fe

9 years agoMerge "Make enhanced recent changes and extended watchlist default"
jenkins-bot [Tue, 14 Oct 2014 20:51:17 +0000 (20:51 +0000)]
Merge "Make enhanced recent changes and extended watchlist default"

9 years agoLocalisation updates from https://translatewiki.net.
Translation updater bot [Tue, 14 Oct 2014 20:41:15 +0000 (22:41 +0200)]
Localisation updates from https://translatewiki.net.

Change-Id: I6ca4e358ecc0d008ae5f323b445d272f1f721a0b

9 years agoMerge "Add LinkBatch to Special:TrackingCategories"
jenkins-bot [Tue, 14 Oct 2014 19:39:54 +0000 (19:39 +0000)]
Merge "Add LinkBatch to Special:TrackingCategories"

9 years agoBreak long lines
umherirrender [Sat, 11 Oct 2014 19:11:57 +0000 (21:11 +0200)]
Break long lines

Change-Id: I8d4e883058c21023273df88439cd145888833115

9 years agoMerge "Create tooltip for "Page information" link"
jenkins-bot [Tue, 14 Oct 2014 18:31:20 +0000 (18:31 +0000)]
Merge "Create tooltip for "Page information" link"

9 years agoMerge "Deprecate ORMTable::getFieldPrefix"
jenkins-bot [Tue, 14 Oct 2014 18:28:57 +0000 (18:28 +0000)]
Merge "Deprecate ORMTable::getFieldPrefix"

9 years agoCreate tooltip for "Page information" link
umherirrender [Sat, 11 Oct 2014 18:30:23 +0000 (20:30 +0200)]
Create tooltip for "Page information" link

Added an empty accesskey message for consistency

Change-Id: Ie57d63718990eb6974808550622c3899a2b18d8f

9 years agoDeprecate ORMTable::getFieldPrefix
Thiemo Mättig [Mon, 6 Oct 2014 16:04:40 +0000 (18:04 +0200)]
Deprecate ORMTable::getFieldPrefix

Internal calls to this method show up in my XDebug profiling as
the second most called method (after array_key_exists). Called
10000 times. Sure, it's very cheap and clearly not a bottleneck.
But just not necesarry to have a method for that. The benefit of
having a method is to have a dynamic prefix that can change
depending on other things in an object. But I think this is not
a good idea for a prefix.

Since this is protected it is part of the contract of this class.
I already cleaned known subclasses. Should be @deprecated for
some time and can be removed later.

Change-Id: I46a0d7e072d0a69e9aef5f77e92044b62e3d0ce7

9 years agoMerge "Set default for unused variable in ApiFormatBase"
jenkins-bot [Tue, 14 Oct 2014 01:05:21 +0000 (01:05 +0000)]
Merge "Set default for unused variable in ApiFormatBase"

9 years agoMerge "Add mediawiki.userSuggest to Special:NewPages"
jenkins-bot [Tue, 14 Oct 2014 01:01:43 +0000 (01:01 +0000)]
Merge "Add mediawiki.userSuggest to Special:NewPages"

9 years agoMerge "Update MessagesEn.php::$preloadedMessages"
jenkins-bot [Tue, 14 Oct 2014 01:00:05 +0000 (01:00 +0000)]
Merge "Update MessagesEn.php::$preloadedMessages"

9 years agoMerge "Add mediawiki.userSuggest to Special:[Deleted]Contributions"
jenkins-bot [Tue, 14 Oct 2014 00:58:31 +0000 (00:58 +0000)]
Merge "Add mediawiki.userSuggest to Special:[Deleted]Contributions"

9 years agoSet default for unused variable in ApiFormatBase
Marius Hoch [Tue, 14 Oct 2014 00:57:32 +0000 (02:57 +0200)]
Set default for unused variable in ApiFormatBase

So that it can be left out when calling.

Change-Id: I6137f5d57a12c0e52ad12b84428a82e8befae0c9

9 years agoMerge "Create tooltip for "create account" link"
jenkins-bot [Tue, 14 Oct 2014 00:52:59 +0000 (00:52 +0000)]
Merge "Create tooltip for "create account" link"

9 years agoAdd a PSR-3 based logging interface
Bryan Davis [Fri, 21 Mar 2014 04:51:45 +0000 (22:51 -0600)]
Add a PSR-3 based logging interface

The MWLogger class is actually a thin wrapper around any PSR-3
LoggerInterface implementation. Named MWLogger instances can be obtained
from the MWLogger::getInstance() static method. MWLogger expects a class
implementing the MWLoggerSpi interface to act as a factory for new
MWLogger instances. A concrete MWLoggerSpi implementation using the
Monolog library is also provided.

New classes introduced:
; MWLogger
: PSR-3 compatible logger that wraps any \Psr\Log\LoggerInterface
  implementation
; MWLoggerSpi
: Service provider interface for MWLogger factories
; MWLoggerNullSpi
: MWLoggerSpi for creating instances that discard all log events
; MWLoggerMonologSpi
: MWLoggerSpi for creating instances backed by the monolog logging library
; MWLoggerMonologHandler
: Monolog handler that replicates the udp2log and file logging
  functionality of wfErrorLog()
; MWLoggerMonologProcessor
: Monolog log processer that adds host:wfHostname() and wiki:wfWikiID()
  to all records

New globals introduced:
; $wgMWLoggerDefaultSpi
: Default service provider interface to use with MWLogger
; $wgMWLoggerMonologSpiConfig
: Configuration for MWLoggerMonologSpi describing how to configure the
  Monolog logger instances.

This change relies on the Composer managed Psr\Log and Monolog libraries
introduced in Ie667944.

Change-Id: I5c822995a181a38c844f4a13cb172297827e0031

9 years agoAPI: Clean up and internationalize pretty-printed output
Brad Jorsch [Wed, 17 Sep 2014 19:43:31 +0000 (15:43 -0400)]
API: Clean up and internationalize pretty-printed output

The syntax highlighting applied to the XML format is not all that great,
and applying it to other formats is just wrong. Instead of doing it
ourselves, let's just add a hook and let Extension:SyntaxHighlight_GeSHi
do it for us.

But for that to work, we have to add RL support to the pretty-printed
output, which means OutputPage. At the same time, lets internationalize
the header.

Bug: 65403
Change-Id: I04b1a3842abdf1fb360c54aa7164fc7cd2e50f4b

9 years agoAPI: Add "batchcomplete" to simplified continuation result
Brad Jorsch [Wed, 6 Aug 2014 08:56:53 +0000 (09:56 +0100)]
API: Add "batchcomplete" to simplified continuation result

With the query-continue style of continuation, it's easy for the client
to know when a batch of pages from the generator is complete. The
simplified continuation should support this too, and without requiring
the client to parse the "continue" result property.

Change-Id: Ie407e2e27c017e8813143859cc58674553bc641b

9 years agoMerge "API: Make jsonfm the default output format"
jenkins-bot [Mon, 13 Oct 2014 22:22:10 +0000 (22:22 +0000)]
Merge "API: Make jsonfm the default output format"

9 years agoMerge "API: HTMLize and internationalize the help, add Special:ApiHelp"
jenkins-bot [Mon, 13 Oct 2014 22:19:47 +0000 (22:19 +0000)]
Merge "API: HTMLize and internationalize the help, add Special:ApiHelp"

9 years agoAPI: Make jsonfm the default output format
Brad Jorsch [Tue, 16 Sep 2014 20:45:09 +0000 (16:45 -0400)]
API: Make jsonfm the default output format

Now that action=help isn't requiring xmlfm for sane display, make jsonfm
the default.

Change-Id: I515c322f31243081ed1315a17befe9792237eeaa

9 years agoLocalisation updates from https://translatewiki.net.
Translation updater bot [Mon, 13 Oct 2014 19:23:03 +0000 (21:23 +0200)]
Localisation updates from https://translatewiki.net.

Change-Id: I54fc400a4eb31d5701ce9b402a6595ea0ca3ae90

9 years agoFix strict warning in FakeDatabasUpdater::setAppliedUpdates
physikerwelt (Moritz Schubotz) [Mon, 13 Oct 2014 13:22:35 +0000 (15:22 +0200)]
Fix strict warning in FakeDatabasUpdater::setAppliedUpdates

Follows-up ccd051bc44.

To be consistent with DatabaseUpdater::setAppliedUpdates
the second arg $updates is now optional.

Change-Id: Ida2adfe30099ea4c65f0c16fafc4eae6603fc93a

9 years agoAdd mediawiki.userSuggest to Special:ListFiles
umherirrender [Fri, 10 Oct 2014 13:50:24 +0000 (15:50 +0200)]
Add mediawiki.userSuggest to Special:ListFiles

This gives a suggestion list when typing a username on that special page

Bug: 48240
Change-Id: I9960325f27eddb6ea0b3317b00996ccb91c51994

9 years agoMerge "mediawiki.special.changeslist.legend: Match dt/dd line-height"
Prtksxna [Mon, 13 Oct 2014 04:42:46 +0000 (04:42 +0000)]
Merge "mediawiki.special.changeslist.legend: Match dt/dd line-height"

9 years agoLocalisation updates from https://translatewiki.net.
Translation updater bot [Sun, 12 Oct 2014 19:55:32 +0000 (21:55 +0200)]
Localisation updates from https://translatewiki.net.

Change-Id: I6fc8199d579ccc94810b4c2d31a046aef8b804b2

9 years agoAdd 'name' back to wpLoginAttempt
Reedy [Sat, 11 Oct 2014 23:57:53 +0000 (00:57 +0100)]
Add 'name' back to wpLoginAttempt

Change-Id: I353ccb74e3572ab2e22a3803d0bc265be2ca2408

9 years agoFix session failure errors when trying to create an account
Kunal Mehta [Sat, 11 Oct 2014 23:41:51 +0000 (16:41 -0700)]
Fix session failure errors when trying to create an account

wpCreateaccount was no longer being passed in the POST request,
so the special page thought a login attempt was occurring rather
than an account creation attempt, so it checked against the wrong
token, resulting in session failure errors.

Bug: 71862
Change-Id: I9519cb264be9f587ef4354ba1fd03962a52755a2

9 years agoLocalisation updates from https://translatewiki.net.
Translation updater bot [Sat, 11 Oct 2014 20:02:13 +0000 (22:02 +0200)]
Localisation updates from https://translatewiki.net.

Change-Id: I386b19b8701f8826109919a1b5b3ebbb2a5c4977

9 years agoMention translatewiki.net on edits only, when edit a default message
umherirrender [Mon, 6 Oct 2014 19:04:25 +0000 (21:04 +0200)]
Mention translatewiki.net on edits only, when edit a default message

When editing a page in the mediawiki namespace the hint to
translatewiki.net is always shown, but it is unneeded, when the message
is not a default message and maybe used for warnings in abusefilter or
is a gadget description.

Change-Id: I7dbf030311e30ce852459e363c91e988ca15d86d

9 years agoUpdate MessagesEn.php::$preloadedMessages
umherirrender [Sat, 11 Oct 2014 17:56:14 +0000 (19:56 +0200)]
Update MessagesEn.php::$preloadedMessages

Some messages no longer exists, some were renamed.
Also added some messages which gets used for anons on page view.

Change-Id: Ia6cf0888b99d90c0810ce2afcffc95f2a9c66053

9 years agoCreate tooltip for "create account" link
umherirrender [Sat, 11 Oct 2014 18:10:38 +0000 (20:10 +0200)]
Create tooltip for "create account" link

Added an empty accesskey message for consistency

Change-Id: I982f766cdcc8c172ebe4c12cf0f02ac641f5e5d5

9 years agoMerge "Revert "Make an empty "?action=" parameter default to "view"""
jenkins-bot [Sat, 11 Oct 2014 17:23:21 +0000 (17:23 +0000)]
Merge "Revert "Make an empty "?action=" parameter default to "view"""

9 years agoRevert "Make an empty "?action=" parameter default to "view""
Brion VIBBER [Sat, 11 Oct 2014 17:15:49 +0000 (17:15 +0000)]
Revert "Make an empty "?action=" parameter default to "view""

Breaks all non-view actions on dev wikis, something's not right with the patch.

This reverts commit a90b7ea969b4332a6229be1c4160190a3ec79200.

Change-Id: Ib9a5eb07ef48716df193fbb62a86c13e5c80dafd

9 years agoAdd mediawiki.userSuggest to Special:[Deleted]Contributions
umherirrender [Fri, 10 Oct 2014 14:07:32 +0000 (16:07 +0200)]
Add mediawiki.userSuggest to Special:[Deleted]Contributions

This gives a suggestion list when typing a username

Change-Id: I59ca64f21de3182adeb01fbea8dc13ebc0fc4367

9 years agoMake enhanced recent changes and extended watchlist default
Federico Leva [Mon, 7 Apr 2014 10:11:05 +0000 (12:11 +0200)]
Make enhanced recent changes and extended watchlist default

Wikimedia projects override submitted at I68ce04cd7 (6eea7e4c9).
This previously submitted as I7c2a27b4d (ffe3ca58582).

Bug: 35785
Change-Id: I0736f82ed8f74b7de64f2b1abdc6e5e12f2bf320

9 years agoMerge "MovePage: Properly return errors"
jenkins-bot [Sat, 11 Oct 2014 06:04:31 +0000 (06:04 +0000)]
Merge "MovePage: Properly return errors"