lhc/web/wiklou.git
6 years agoUse ParserOutput stateless transforms
Brad Jorsch [Wed, 22 Nov 2017 20:07:51 +0000 (15:07 -0500)]
Use ParserOutput stateless transforms

We still set the state in many cases for benefit of extensions, but all
calls within core should no longer be using non-default state.

Change-Id: I78b62ec33fcb8273acb9b3b4e9012215442be94c
Depends-On: I140ff32373430b61b92226689ef9b58cca317450

6 years agoParserOutput: Add stateless transforms to getText()
Brad Jorsch [Wed, 22 Nov 2017 18:12:23 +0000 (13:12 -0500)]
ParserOutput: Add stateless transforms to getText()

The stateful transforms are deprecated.

Inspired by Krinkle's If2fb32fc.

Bug: T171797
Change-Id: Ied5fe1a6159c2d4fa48170042b44d735ce7b6f9b

6 years agoMerge "Combine changes limit and time period selectors"
jenkins-bot [Thu, 30 Nov 2017 19:11:03 +0000 (19:11 +0000)]
Merge "Combine changes limit and time period selectors"

6 years agoMerge "Add new core tags"
jenkins-bot [Thu, 30 Nov 2017 18:43:28 +0000 (18:43 +0000)]
Merge "Add new core tags"

6 years agoAdd new core tags
petarpetkovic [Thu, 9 Nov 2017 11:13:16 +0000 (12:13 +0100)]
Add new core tags

Add tags to types of edits that get automatic edit summaries:
- Making a page a redirect
- Changing redirect target
- Changing an existing redirect into a non-redirect
- Blanking of the page
- Removing nearly all (more than 90%) content
- Rolling back an edit

Bug: T167656
Bug: T73236
Change-Id: Ie7f637fcec5ee659c1086e28e8ba21f470c45160

6 years agoHTMLMultiSelectField: Allow formatting in section headings in OOUI mode
Bartosz Dziewoński [Thu, 30 Nov 2017 16:38:30 +0000 (17:38 +0100)]
HTMLMultiSelectField: Allow formatting in section headings in OOUI mode

Follow-up to 5a113417e5af9d0d0dbed63429649a9780784d45.
It is allowed in non-OOUI modes.

Bug: T181698
Change-Id: Ib2ebcd1a92f1b02a528787fe3fd1f5452b9808c4

6 years agoFix timestamps in ImportTest
Brad Jorsch [Thu, 30 Nov 2017 15:37:16 +0000 (10:37 -0500)]
Fix timestamps in ImportTest

They need to be passed through $db->timestamp().

Bug: T75174
Change-Id: I94ff961ae27220bcf15eda201677159f6c2d38ef

6 years agoConvert timestamp from DB in RevisionDbTestBase::testInsertOn
addshore [Thu, 30 Nov 2017 13:49:17 +0000 (14:49 +0100)]
Convert timestamp from DB in RevisionDbTestBase::testInsertOn

Bug: T75174
Change-Id: Ia45eec0e072c794931ea7a415259602d03f4c31e

6 years agoMerge "Add wfWaitForSlaves() to maintenance/migrateComments.php"
jenkins-bot [Thu, 30 Nov 2017 04:30:41 +0000 (04:30 +0000)]
Merge "Add wfWaitForSlaves() to maintenance/migrateComments.php"

6 years agoMerge "Database: Fix degenerate parenthesized joins"
jenkins-bot [Thu, 30 Nov 2017 04:30:28 +0000 (04:30 +0000)]
Merge "Database: Fix degenerate parenthesized joins"

6 years agoAvoid DB rows with usable names but ID = 0 by introducing "interwiki" usernames
Brad Jorsch [Wed, 25 Oct 2017 19:26:53 +0000 (15:26 -0400)]
Avoid DB rows with usable names but ID = 0 by introducing "interwiki" usernames

Importing revisions in MediaWiki has long been weird: if the username on
the imported revision exists locally it's automatically attributed to
the local user, while if the name does not exist locally we wind up with
revision table rows with rev_user = 0 and rev_user_text being a valid
name that someone might later create. "Global" blocks too create rows
with ipb_by = 0 an ipb_by_text being a valid name.

The upcoming actor table change, as things currently stand, would
regularize that a bit by automatically attributing those imported
revisions to the newly-created user. But that's not necessarily what we
actually want to happen. And it would certainly confuse CentralAuth's
attempt to detect its own global blocks.

Thus, this patch introduces "interwiki" usernames that aren't valid for
local use, of the format "iw>Example".[1] Linker will interpret these
names and generate an appropriate interwiki link in history pages and
the like, as if from wikitext like `[[iw:User:Example]]`.

Imports for non-existant local users (and optionally for existing local
users too) will credit the edit to such an interwiki name. There is also
a new hook, 'ImportHandleUnknownUser', to allow extension such as
CentralAuth to create local users as their edits are imported.

Block will no longer accept usable-but-nonexistent names for 'byText' or
->setBlocker(). CentralAuth's global blocks will be submitted with an
interwiki username (see Ieae5d24f9).

Wikis that have imported edits or CentralAuth global blocks should run
the new maintenance/cleanupUsersWithNoId.php maintenance script. This
isn't done by update.php because (1) it needs an interwiki prefix to use
and (2) the updater can't know whether to pass the `--assign` flag.

[1]: '>' was used instead of the more usual ':' because WMF wikis have
many existing usernames containing colons.

Bug: T9240
Bug: T20209
Bug: T111605
Change-Id: I5401941c06102e8faa813910519d55482dff36cb
Depends-On: Ieae5d24f9098c1977447c50a8d4e2cab58a24d9f

6 years agoAdded new success message when CLI Installer completes its work succesfuly.
Antoni Siek [Wed, 29 Nov 2017 20:42:39 +0000 (21:42 +0100)]
Added new success message when CLI Installer completes its work succesfuly.

Bug: T181468
Change-Id: Iddce5d0e1244ff1e4740fdaf1b07023355c62f27

6 years agoMerge "Add wfDeprecated() call to MimeMagic::singleton()"
jenkins-bot [Wed, 29 Nov 2017 22:43:07 +0000 (22:43 +0000)]
Merge "Add wfDeprecated() call to MimeMagic::singleton()"

6 years agoMerge "WebStart: Remove use of realpath() for $IP"
jenkins-bot [Wed, 29 Nov 2017 22:40:46 +0000 (22:40 +0000)]
Merge "WebStart: Remove use of realpath() for $IP"

6 years agoMerge "s/Latn/latn/"
jenkins-bot [Wed, 29 Nov 2017 22:34:32 +0000 (22:34 +0000)]
Merge "s/Latn/latn/"

6 years agoMerge "Shell: skip null parameters"
jenkins-bot [Wed, 29 Nov 2017 22:17:19 +0000 (22:17 +0000)]
Merge "Shell: skip null parameters"

6 years agoMerge "Disallow setting DBO_IGNORE in Database for sanity"
jenkins-bot [Wed, 29 Nov 2017 21:54:15 +0000 (21:54 +0000)]
Merge "Disallow setting DBO_IGNORE in Database for sanity"

6 years agos/Latn/latn/
Reedy [Wed, 29 Nov 2017 21:28:37 +0000 (21:28 +0000)]
s/Latn/latn/

Follows-up I7f89569c6ee6640d368af1378e84c5a9e725dad0

Change-Id: I7600ebe27cfc8c8d892c8169a6f59e934e5eec08

6 years agoWebStart: Remove use of realpath() for $IP
Timo Tijhof [Tue, 28 Nov 2017 04:46:38 +0000 (20:46 -0800)]
WebStart: Remove use of realpath() for $IP

When installing MediaWiki in a sub directory of document root,
and including it from an /index.php file in the document root,
MediaWiki succesfully includes WebStart from index.php, but
WebStart.php fails to include Setup.php.

For example, MediaWiki installation at /var/www/mediawiki with the
following file at /var/www/index.php.

```
<?php
require __DIR__ . '/mediawiki/index.php';
```

Failure:

> Fatal error:
> require_once(): Failed opening required '/var/www/includes/Setup.php'
> (include_path='.:/usr/local/lib/php') in
> /var/www/mediawiki/includes/WebStart.php on line 97
>
> Stack trace:
>   1. {main}() /var/www/index.php:0
>   2. require() /var/www/index.php:3
>   3. require() /var/www/mediawiki/index.php:40

Bug: T153882
Change-Id: Icd8cfa580ce1c22bc3bf177570a9f4a940d2427c

6 years agoMerge "objectcache: use INTERIM_KEY_TTL constant in WANObjectCache for readability"
jenkins-bot [Wed, 29 Nov 2017 21:37:03 +0000 (21:37 +0000)]
Merge "objectcache: use INTERIM_KEY_TTL constant in WANObjectCache for readability"

6 years agoDisallow setting DBO_IGNORE in Database for sanity
Aaron Schulz [Thu, 23 Nov 2017 10:17:14 +0000 (02:17 -0800)]
Disallow setting DBO_IGNORE in Database for sanity

In the off chance something called this, it would break all
sorts of code that expects that either query result functions
either succeed or throw an error.

Callers are not expected to have to check if the result of
a query is meaningful or false due to an error.

Change-Id: I0b4fe1403f55a399ffd40817ed12f857087d6f83

6 years agoMerge "Add ip_changes to postgres/tables.sql"
jenkins-bot [Wed, 29 Nov 2017 21:29:22 +0000 (21:29 +0000)]
Merge "Add ip_changes to postgres/tables.sql"

6 years agoAdd ip_changes to postgres/tables.sql
Reedy [Wed, 29 Nov 2017 21:02:22 +0000 (21:02 +0000)]
Add ip_changes to postgres/tables.sql

Follow-up Ic11c64813ee04e8520771bfa156f8e51404273e7

Bug: T177258
Change-Id: I69a278c1928ed91ef5cbe5b66e590eef629a2981

6 years agoLocalisation updates from https://translatewiki.net.
Translation updater bot [Wed, 29 Nov 2017 21:07:55 +0000 (22:07 +0100)]
Localisation updates from https://translatewiki.net.

Change-Id: I71dd8b5115cb4c4db79542b25e00f0cbea8a1275

6 years agoMerge "Remove DEFAULT '' from postgres ip_changes.ipc_rev_timestamp"
jenkins-bot [Wed, 29 Nov 2017 21:03:43 +0000 (21:03 +0000)]
Merge "Remove DEFAULT '' from postgres ip_changes.ipc_rev_timestamp"

6 years agoMerge "Increase Opera minimum for Grades A and C to 15"
jenkins-bot [Wed, 29 Nov 2017 20:54:00 +0000 (20:54 +0000)]
Merge "Increase Opera minimum for Grades A and C to 15"

6 years agoMerge "Remove moment.js bump from 1.31 release notes"
jenkins-bot [Wed, 29 Nov 2017 20:46:09 +0000 (20:46 +0000)]
Merge "Remove moment.js bump from 1.31 release notes"

6 years agoDatabase: Fix degenerate parenthesized joins
Brad Jorsch [Wed, 29 Nov 2017 20:42:27 +0000 (15:42 -0500)]
Database: Fix degenerate parenthesized joins

The SQL standard supports parenthesized joins like

    a JOIN (b JOIN c ON (...)) ON (...)

But it doesn't support parenthesizing a single table name, i.e. a
one-table "join", like

    a JOIN (b) ON (...)

Detect the degenerate single-table case and omit the parentheses.

Bug: T181674
Change-Id: I82cacd80465092aa67ff19bdcfd6682001bf12ab

6 years agoShell: skip null parameters
Max Semenik [Wed, 29 Nov 2017 02:51:25 +0000 (18:51 -0800)]
Shell: skip null parameters

Right now they're treated as empty strings, however
this doesn't allow skipping parameters in the middle like
 $params = [
     'foo',
     $x ? '--bar' : null,
     '--baz',
 ];

In some cases this matters, e.g. `ls` works while `ls ''` doesn't.

Also, fix spacing problems the new tests uncovered:
* Extra space when using params()
* Missing space when combining params() and unsafeParams()

Change-Id: Icb29d4c48ae7f92fb5635e3865346c98f47abb01

6 years agoMerge "mw.notifiction: Bring in some rules from Vector"
jenkins-bot [Wed, 29 Nov 2017 20:20:53 +0000 (20:20 +0000)]
Merge "mw.notifiction: Bring in some rules from Vector"

6 years agoRemove moment.js bump from 1.31 release notes
Reedy [Wed, 29 Nov 2017 20:19:27 +0000 (20:19 +0000)]
Remove moment.js bump from 1.31 release notes

Going to be backported to 1.30

Follows-up I7f89569c6ee6640d368af1378e84c5a9e725dad0

Change-Id: I691f5e0cf1f4685f8d1ff55a7ff76a1ad2587d89

6 years agoMerge "resources: Bump moment.js from 2.15.0 to 2.19.3"
jenkins-bot [Wed, 29 Nov 2017 20:13:19 +0000 (20:13 +0000)]
Merge "resources: Bump moment.js from 2.15.0 to 2.19.3"

6 years agoRemove DEFAULT '' from postgres ip_changes.ipc_rev_timestamp
Reedy [Wed, 29 Nov 2017 20:11:19 +0000 (20:11 +0000)]
Remove DEFAULT '' from postgres ip_changes.ipc_rev_timestamp

Follows-up Ic11c64813ee04e8520771bfa156f8e51404273e7

Bug: T181672
Change-Id: I58fe5edb1e7656773271634f702ed044c6036497

6 years agoresources: Bump moment.js from 2.15.0 to 2.19.3
James D. Forrester [Wed, 29 Nov 2017 18:49:56 +0000 (10:49 -0800)]
resources: Bump moment.js from 2.15.0 to 2.19.3

Languages and locales now with support:
* bm
* de-ch
* gom-latn
* gu
* kn
* sd
* tet
* ur
* uz-latn
* yo

Skipped languages because we don't support them in MW:
* ar-dz
* ar-kw
* ar-ly
* en-ie
* en-nz
* es-do
* es-us
* fr-ch
* me
* nl-be
* tlh
* tzl

Also drop 'x-pseudo' which was included but not used.

Bug: T161732
Bug: T181547
Change-Id: I7f89569c6ee6640d368af1378e84c5a9e725dad0

6 years agoAdd wfWaitForSlaves() to maintenance/migrateComments.php
Brad Jorsch [Wed, 29 Nov 2017 19:52:31 +0000 (14:52 -0500)]
Add wfWaitForSlaves() to maintenance/migrateComments.php

Change-Id: Idb8d21116a52c473cc4658883fe13855bad92222

6 years agoMerge "Align other review tools and saved filters buttons"
jenkins-bot [Wed, 29 Nov 2017 19:28:02 +0000 (19:28 +0000)]
Merge "Align other review tools and saved filters buttons"

6 years agoMerge "Allow disabling exact input query in results in mw.widget.TitleWidget"
jenkins-bot [Wed, 29 Nov 2017 19:24:31 +0000 (19:24 +0000)]
Merge "Allow disabling exact input query in results in mw.widget.TitleWidget"

6 years agoMerge "Small change to "Other review tools" link"
jenkins-bot [Wed, 29 Nov 2017 19:18:14 +0000 (19:18 +0000)]
Merge "Small change to "Other review tools" link"

6 years agoAllow disabling exact input query in results in mw.widget.TitleWidget
petarpetkovic [Fri, 24 Nov 2017 14:14:15 +0000 (15:14 +0100)]
Allow disabling exact input query in results in mw.widget.TitleWidget

* Add configuration option to mw.widget.TitleWidget, to make
addition of exact input query to the results optional.

Change-Id: Ic7a3aaf38a3827917e4d349cc6b828f37cc64b67

6 years agoMerge "mediawiki.special.apisandbox.js: Apply JavaScript coding conventions"
jenkins-bot [Wed, 29 Nov 2017 19:04:21 +0000 (19:04 +0000)]
Merge "mediawiki.special.apisandbox.js: Apply JavaScript coding conventions"

6 years agomw.debug: Avoid overlap between debug toolbar and OOUI dropdowns
Bartosz Dziewoński [Wed, 29 Nov 2017 16:25:57 +0000 (17:25 +0100)]
mw.debug: Avoid overlap between debug toolbar and OOUI dropdowns

Bug: T106095
Change-Id: Ia519205852324899430ac7a769ee7e81ed80c37f

6 years agomw.notifiction: Bring in some rules from Vector
Ed Sanders [Wed, 29 Nov 2017 15:53:11 +0000 (15:53 +0000)]
mw.notifiction: Bring in some rules from Vector

The larger padding makes sense as a default. Also increase
the specificity of the error/warn rules so they are overridden
by changes to the default state.

Change-Id: I157e41631c4a09842b869215b0d6dbb99c1a4d36

6 years agoMerge "Revert "Hide empty OOUI FieldsetLayout headers""
jenkins-bot [Wed, 29 Nov 2017 13:47:56 +0000 (13:47 +0000)]
Merge "Revert "Hide empty OOUI FieldsetLayout headers""

6 years agoMerge "Swap german alias order for img_thumbnail and img_manualthumb"
jenkins-bot [Wed, 29 Nov 2017 12:46:11 +0000 (12:46 +0000)]
Merge "Swap german alias order for img_thumbnail and img_manualthumb"

6 years agoobjectcache: use INTERIM_KEY_TTL constant in WANObjectCache for readability
Aaron Schulz [Wed, 29 Nov 2017 05:59:28 +0000 (21:59 -0800)]
objectcache: use INTERIM_KEY_TTL constant in WANObjectCache for readability

Change-Id: I13936397def11a13849fe14491b752dd797f6759

6 years agoIncrease Opera minimum for Grades A and C to 15
James D. Forrester [Mon, 27 Nov 2017 20:39:17 +0000 (12:39 -0800)]
Increase Opera minimum for Grades A and C to 15

This drops into Grade X the Opera versions 12.10+ from Grade A,
and versions 10.x from Grade C.

Bug: T121517
Change-Id: Ie4df9c751bd0250581cd2e25cf1b38e69e67e82f

6 years agoAdd SQL for postgres, and fail gracefully in populateIpChanges
MusikAnimal [Mon, 13 Nov 2017 18:52:55 +0000 (13:52 -0500)]
Add SQL for postgres, and fail gracefully in populateIpChanges

If the ip_changes table doesn't exist, the populateIpChanges maintenance
script will fail gracefully, throwing a descriptive error.

The postgres SQL is untested.

Bug: T177258
Change-Id: Ic11c64813ee04e8520771bfa156f8e51404273e7

6 years agoMerge "Fix undefined $db"
jenkins-bot [Wed, 29 Nov 2017 00:51:15 +0000 (00:51 +0000)]
Merge "Fix undefined $db"

6 years agoFix undefined $db
Reedy [Wed, 29 Nov 2017 00:21:59 +0000 (00:21 +0000)]
Fix undefined $db

Bug: T181565
Change-Id: I286374d4ca0ab9435d7d54c4f8b9660a60e5f1e3

6 years agoRevert "Hide empty OOUI FieldsetLayout headers"
Bartosz Dziewoński [Thu, 16 Nov 2017 10:12:57 +0000 (10:12 +0000)]
Revert "Hide empty OOUI FieldsetLayout headers"

No longer needed after I79fe95e32272f013a1ce4e48a811fa9fbb53f4e6
(released in OOUI 0.24.3).

This reverts commit 382e366196b2b9aa7eb08c92776e6f716f8f5d65.

Depends-On: Ifdd44ead7d782288aaef0979322f0943f7304835
Change-Id: I37747b4b68801caf442b77e747f486053f279853

6 years agoUpdate OOjs UI to v0.24.3
James D. Forrester [Wed, 29 Nov 2017 00:04:19 +0000 (16:04 -0800)]
Update OOjs UI to v0.24.3

Release notes:
 https://phabricator.wikimedia.org/diffusion/GOJU/browse/master/History.md;v0.24.3

Depends-On: Ifdd44ead7d782288aaef0979322f0943f7304853
Change-Id: Ifdd44ead7d782288aaef0979322f0943f7304835

6 years agoMerge "objectcache: only give current format keys getWithSetCallback() callbacks"
jenkins-bot [Tue, 28 Nov 2017 21:34:33 +0000 (21:34 +0000)]
Merge "objectcache: only give current format keys getWithSetCallback() callbacks"

6 years agoMerge "Clean up formatting of SwiftFileBackend::sanitizeHdrsStrict()"
jenkins-bot [Tue, 28 Nov 2017 21:29:40 +0000 (21:29 +0000)]
Merge "Clean up formatting of SwiftFileBackend::sanitizeHdrsStrict()"

6 years agoobjectcache: only give current format keys getWithSetCallback() callbacks
Aaron Schulz [Mon, 27 Nov 2017 02:45:09 +0000 (18:45 -0800)]
objectcache: only give current format keys getWithSetCallback() callbacks

Callback code that happens to make use of $oldValue might not be able
to handle missing, new, or changed fields due to key version changes.

Overhaul testGetWithSetCallback_versions() to be cleaner and cover the
case of unversioned => versioned keys.

Change-Id: If108a73078c530c985d30bdadcbfa9ddd53dc2be

6 years agoCombine changes limit and time period selectors
petarpetkovic [Mon, 27 Nov 2017 17:26:04 +0000 (18:26 +0100)]
Combine changes limit and time period selectors

- Combine number of results and the time period panels.
- Add gear/settings icon.
- Make the "View newest changes" link more prominent, by moving
the indicator into the same row as "Live updates" button and
the combined number of results and time period selector.
- Add reload icon to "View newest changes" link.

Bug: T177926
Change-Id: I793bfaa91a7823bdec7af5816d9398d2a993262a

6 years agoobjectcache: add more comments to WANObjectCache
Aaron Schulz [Mon, 27 Nov 2017 02:09:34 +0000 (18:09 -0800)]
objectcache: add more comments to WANObjectCache

Change-Id: I567f45fa7b33226b0ccf7d80440802eab71ff753

6 years agoMerge "Localisation updates from https://translatewiki.net."
L10n-bot [Tue, 28 Nov 2017 20:58:23 +0000 (20:58 +0000)]
Merge "Localisation updates from https://translatewiki.net."

6 years agoLocalisation updates from https://translatewiki.net.
Translation updater bot [Tue, 28 Nov 2017 20:58:12 +0000 (21:58 +0100)]
Localisation updates from https://translatewiki.net.

Change-Id: I8d6691b507556430230e527732387e7955f2c02c

6 years agoMerge "Use time forcing methods to avoid WANObjectCacheTest flakeiness"
jenkins-bot [Tue, 28 Nov 2017 20:58:08 +0000 (20:58 +0000)]
Merge "Use time forcing methods to avoid WANObjectCacheTest flakeiness"

6 years agoSmall change to "Other review tools" link
petarpetkovic [Tue, 28 Nov 2017 14:32:05 +0000 (15:32 +0100)]
Small change to "Other review tools" link

- Reduce the separation between the label and the expand/collapse icon.

Bug: T179539
Change-Id: I0bfc8a72650325a815be930a64e472ae66f536f6

6 years agoMerge "Introduce ClearUserWatchlistJob"
jenkins-bot [Tue, 28 Nov 2017 18:31:52 +0000 (18:31 +0000)]
Merge "Introduce ClearUserWatchlistJob"

6 years agoIntroduce ClearUserWatchlistJob
addshore [Mon, 14 Mar 2016 21:07:39 +0000 (21:07 +0000)]
Introduce ClearUserWatchlistJob

Change-Id: Icea573a10078ea3f09dc2e4e9fdc737bf639935d

6 years agoClean up formatting of SwiftFileBackend::sanitizeHdrsStrict()
Aaron Schulz [Tue, 28 Nov 2017 17:07:37 +0000 (09:07 -0800)]
Clean up formatting of SwiftFileBackend::sanitizeHdrsStrict()

Change-Id: I5e411f4bf50836d22db01220853776494a9e69d5

6 years agomw.special.preferences: Widen the dropdown of the "Time zone" field
Bartosz Dziewoński [Tue, 28 Nov 2017 15:26:51 +0000 (16:26 +0100)]
mw.special.preferences: Widen the dropdown of the "Time zone" field

Same styles as for the "Reason" field on Special:Block
(b2a0e3aac8f70802a5f45cc7e7fbb0f9c517fb82).

Bug: T181433
Change-Id: I957226ce3764e1bcc14ea088cadf4531a1dd1886

6 years agoDo not strip Content-Type header for POST requests to swift
Cormac Parle [Mon, 20 Nov 2017 11:25:20 +0000 (11:25 +0000)]
Do not strip Content-Type header for POST requests to swift

libcurl adds 'Content-Type: application/x-www-form-urlencoded'
to a POST request if the 'Content-Type' header is not set
manually. Because data in swift is updated via POST, the
Content-Type header must be set explicitly to stop a run of
refreshFileHeaders.php from changing the Content-Type of all
files in swift to application/x-www-form-urlencoded

Bug: T178849
Change-Id: I43c21bc1b73e37104cf07cd5f1c1557f472b9898

6 years agoMerge "Document how to run just one Selenium test"
jenkins-bot [Tue, 28 Nov 2017 13:54:00 +0000 (13:54 +0000)]
Merge "Document how to run just one Selenium test"

6 years agoMerge "ESLint ecmaVersion setting is not needed if env is es6"
jenkins-bot [Tue, 28 Nov 2017 13:38:15 +0000 (13:38 +0000)]
Merge "ESLint ecmaVersion setting is not needed if env is es6"

6 years agoDocument how to run just one Selenium test
Željko Filipin [Tue, 28 Nov 2017 13:26:42 +0000 (14:26 +0100)]
Document how to run just one Selenium test

Bug: T139740
Change-Id: Ieb5f27285046c33d77b615159dc2000d80ef644a

6 years agoAlign other review tools and saved filters buttons
petarpetkovic [Tue, 28 Nov 2017 12:23:06 +0000 (13:23 +0100)]
Align other review tools and saved filters buttons

Bug: T179825
Change-Id: I654d417072bb58a6518a1094061208788b64c1f8

6 years agoMerge "Allow file headers to be refreshed from database"
jenkins-bot [Tue, 28 Nov 2017 09:46:30 +0000 (09:46 +0000)]
Merge "Allow file headers to be refreshed from database"

6 years agoUse time forcing methods to avoid WANObjectCacheTest flakeiness
Aaron Schulz [Mon, 27 Nov 2017 18:51:32 +0000 (10:51 -0800)]
Use time forcing methods to avoid WANObjectCacheTest flakeiness

Use of microtime() is now just for baselines, and it is no longer
assumed to be increasing with each call. Such an assumption is
particuliarly bad on Windows.

I've done 100X run rounds with now failures on Windows.

Change-Id: Ica2a47982495bc95b10ca507414972744ea9507e

6 years agoMerge "logging: Abstract LogPager enforcing of action and performer restrictions"
jenkins-bot [Tue, 28 Nov 2017 03:19:14 +0000 (03:19 +0000)]
Merge "logging: Abstract LogPager enforcing of action and performer restrictions"

6 years agologging: Abstract LogPager enforcing of action and performer restrictions
cenarium [Mon, 25 Jan 2016 21:35:22 +0000 (22:35 +0100)]
logging: Abstract LogPager enforcing of action and performer restrictions

This avoids duplicating the code in the future, such as proposed for
I3ea2c050b6dd6c (T16711).

Change-Id: Ic53b074f542014f156b006864d91a138ba5fb22b

6 years agoMerge "objectcache: add "graceTTL" option to WANObjectCache::getWithSetCallback()"
jenkins-bot [Tue, 28 Nov 2017 02:21:50 +0000 (02:21 +0000)]
Merge "objectcache: add "graceTTL" option to WANObjectCache::getWithSetCallback()"

6 years agoobjectcache: add "graceTTL" option to WANObjectCache::getWithSetCallback()
Aaron Schulz [Mon, 27 Nov 2017 10:51:11 +0000 (02:51 -0800)]
objectcache: add "graceTTL" option to WANObjectCache::getWithSetCallback()

Also made worthRefreshExpiring() fully match the method documentation.

Change-Id: I48a4b1b9d006de100389b47c03c1185a9316abfc

6 years agoMerge "Add WebAssembly application/wasm MIME type"
jenkins-bot [Tue, 28 Nov 2017 01:01:22 +0000 (01:01 +0000)]
Merge "Add WebAssembly application/wasm MIME type"

6 years agoMerge "Use WANObjectCache::makeKey() in ChangesFeed"
jenkins-bot [Tue, 28 Nov 2017 00:26:37 +0000 (00:26 +0000)]
Merge "Use WANObjectCache::makeKey() in ChangesFeed"

6 years agoMerge "Graduate live update out of beta"
jenkins-bot [Tue, 28 Nov 2017 00:23:09 +0000 (00:23 +0000)]
Merge "Graduate live update out of beta"

6 years agoMerge "Move seperators from digits transforms to seperator transforms"
jenkins-bot [Tue, 28 Nov 2017 00:18:23 +0000 (00:18 +0000)]
Merge "Move seperators from digits transforms to seperator transforms"

6 years agoMerge "shell: Optionally restrict commands' access with firejail"
jenkins-bot [Tue, 28 Nov 2017 00:14:32 +0000 (00:14 +0000)]
Merge "shell: Optionally restrict commands' access with firejail"

6 years agoGraduate live update out of beta
Roan Kattouw [Tue, 28 Nov 2017 00:11:44 +0000 (16:11 -0800)]
Graduate live update out of beta

Bug: T173614
Change-Id: I680b518fa3b8a0bb5ac3a6ec8347e57e70c26d20

6 years agoMove seperators from digits transforms to seperator transforms
Reedy [Fri, 24 Nov 2017 15:49:15 +0000 (15:49 +0000)]
Move seperators from digits transforms to seperator transforms

Change-Id: Iecc30b4eae9a5fe0f87d162c8118722ba5aab90c

6 years agoMerge "Change "Live update" button animation"
jenkins-bot [Tue, 28 Nov 2017 00:08:16 +0000 (00:08 +0000)]
Merge "Change "Live update" button animation"

6 years agoshell: Optionally restrict commands' access with firejail
Kunal Mehta [Wed, 18 Oct 2017 06:54:19 +0000 (23:54 -0700)]
shell: Optionally restrict commands' access with firejail

Introduces a FirejailCommand class, which can be used to add additional
restrictions to a command, for increased security. For now, firejail
containment needs to be enabled on a per-command basis.

The following restrictions are implemented:
* NO_ROOT - disallows any root access, including via setuid binaries
* SECCOMP - block dangerous syscalls with seccomp
* PRIVATE_DEV - create a private /dev
* NO_NETWORK - deny all network access
* NO_EXECVE - block the execve syscall

A convenient Shell::RESTRICT_DEFAULT is equivalent to NO_ROOT | SECCOMP
| PRIVATE_DEV, with the expectation that more restrictions may be added
to it in the future.

In addition, specific paths can be whitelisted with
Command::whitelistPaths(). Any file/directory that isn't whitelisted in
that top level directory (e.g. /srv) won't exist inside the firejail.

$wgShellRestrictionMethod can be set to false for no restriction system,
'firejail' to explicitly use it, or 'autodetect' to autodetect whatever
system is available. In the future the default should be changed to
autodetection once firejail is tested more.

Bug: T173370
Change-Id: Id74df0dbba40e1e7c07c4368aacffb6eb06a17c5

6 years agoMerge "Remove math from $wgDefaultUserOptions as Math isn't in core"
jenkins-bot [Mon, 27 Nov 2017 21:28:00 +0000 (21:28 +0000)]
Merge "Remove math from $wgDefaultUserOptions as Math isn't in core"

6 years agoLocalisation updates from https://translatewiki.net.
Translation updater bot [Mon, 27 Nov 2017 21:07:34 +0000 (22:07 +0100)]
Localisation updates from https://translatewiki.net.

Change-Id: I7b3081cef41dc283356ab30f835766a5f467cae0

6 years agoMerge "Soft deprecate $wgStyleVersion (add @deprecated)"
jenkins-bot [Mon, 27 Nov 2017 20:57:36 +0000 (20:57 +0000)]
Merge "Soft deprecate $wgStyleVersion (add @deprecated)"

6 years agoMerge "mw.special.preferences: Make the "Basic information" section more compact"
jenkins-bot [Mon, 27 Nov 2017 20:30:28 +0000 (20:30 +0000)]
Merge "mw.special.preferences: Make the "Basic information" section more compact"

6 years agoRemove math from $wgDefaultUserOptions as Math isn't in core
Reedy [Mon, 27 Nov 2017 20:27:35 +0000 (20:27 +0000)]
Remove math from $wgDefaultUserOptions as Math isn't in core

Change-Id: Id8248d673cda342d6727a02cd5a440be87e7c0c1

6 years agoMerge "Minor code updates to SpecialListgrouprights"
jenkins-bot [Mon, 27 Nov 2017 20:15:03 +0000 (20:15 +0000)]
Merge "Minor code updates to SpecialListgrouprights"

6 years agoSoft deprecate $wgStyleVersion (add @deprecated)
Reedy [Fri, 24 Nov 2017 23:12:25 +0000 (23:12 +0000)]
Soft deprecate $wgStyleVersion (add @deprecated)

Bug: T181318
Change-Id: Ib5dce1c8d39a821aab0f96133780c18c827bde03

6 years agoUse WANObjectCache::makeKey() in ChangesFeed
Aaron Schulz [Mon, 27 Nov 2017 20:03:47 +0000 (12:03 -0800)]
Use WANObjectCache::makeKey() in ChangesFeed

Change-Id: Ia029873e5d0883d177007555ad494cae9e00c407

6 years agoChange "Live update" button animation
petarpetkovic [Mon, 27 Nov 2017 19:59:03 +0000 (20:59 +0100)]
Change "Live update" button animation

- Extend the total length of the animation to 2.3 seconds.
- Redefine the transitions in the animation to be completed
already at the 80% point (instead of the current 100%),
in order to create a period of no change between repetitions.

Bug: T176474
Change-Id: Ibea7c74a90be0394223d8fa85324bbf4cee16c4d

6 years agomw.special.preferences: Make the "Basic information" section more compact
Bartosz Dziewoński [Mon, 27 Nov 2017 19:01:40 +0000 (20:01 +0100)]
mw.special.preferences: Make the "Basic information" section more compact

Bug: T180538
Change-Id: Iddb73573637dd740fbebed52096cf82ef7c31c00

6 years agoMerge "objectcache: make adaptiveTTL() use getCurrentTime() for completeness"
jenkins-bot [Mon, 27 Nov 2017 19:46:44 +0000 (19:46 +0000)]
Merge "objectcache: make adaptiveTTL() use getCurrentTime() for completeness"

6 years agoMerge "Add Pashto numerals based on Arabic"
jenkins-bot [Mon, 27 Nov 2017 18:00:39 +0000 (18:00 +0000)]
Merge "Add Pashto numerals based on Arabic"

6 years agoobjectcache: make adaptiveTTL() use getCurrentTime() for completeness
Aaron Schulz [Mon, 27 Nov 2017 17:45:46 +0000 (09:45 -0800)]
objectcache: make adaptiveTTL() use getCurrentTime() for completeness

Change-Id: I5ba3c39ccaf412b0aaecd64d52ab15b2075bc76c

6 years agoAdd Pashto numerals based on Arabic
Reedy [Fri, 24 Nov 2017 00:02:58 +0000 (00:02 +0000)]
Add Pashto numerals based on Arabic

Bug: T181265
Change-Id: I19cf703edc90a1f57e7b083b3b29cffd77c45c90

6 years agoMerge "RELEASE-NOTES to HISTORY for 1.27.4/1.28.3/1.29.2"
jenkins-bot [Mon, 27 Nov 2017 16:39:07 +0000 (16:39 +0000)]
Merge "RELEASE-NOTES to HISTORY for 1.27.4/1.28.3/1.29.2"

6 years agoAllow file headers to be refreshed from database
Cormac Parle [Mon, 27 Nov 2017 15:01:37 +0000 (15:01 +0000)]
Allow file headers to be refreshed from database

Bug: T178849
Change-Id: I100458cdb55db10d49c586c83876b7d1645ec486