[MediaWiki-commits] [Gerrit] mediawiki...Echo[master]: Fire 'ext.echo.badge.countChange' after DOM changes

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345779 )

Change subject: Fire 'ext.echo.badge.countChange' after DOM changes
..


Fire 'ext.echo.badge.countChange' after DOM changes

The event should fire after the count actually changes in the
DOM as well as the internal workings of Echo.

Change-Id: I03f1742b209305080af8784632f07dff63135d81
---
M modules/ui/mw.echo.ui.BadgeLinkWidget.js
1 file changed, 6 insertions(+), 6 deletions(-)

Approvals:
  Catrope: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/modules/ui/mw.echo.ui.BadgeLinkWidget.js 
b/modules/ui/mw.echo.ui.BadgeLinkWidget.js
index d465aee..dc59e09 100644
--- a/modules/ui/mw.echo.ui.BadgeLinkWidget.js
+++ b/modules/ui/mw.echo.ui.BadgeLinkWidget.js
@@ -52,17 +52,17 @@
mw.echo.ui.BadgeLinkWidget.prototype.setCount = function ( numItems, 
label ) {
label = label || numItems;
 
+   this.$element
+   .toggleClass( 'mw-echo-notifications-badge-all-read', 
!numItems )
+   .toggleClass( 'mw-echo-notifications-badge-long-label', 
label.length > 2 )
+   .attr( 'data-counter-num', numItems )
+   .attr( 'data-counter-text', label );
+
if ( this.count !== numItems ) {
this.count = numItems;
 
// Fire badge count change hook
mw.hook( 'ext.echo.badge.countChange' ).fire( 
this.type, this.count, label );
}
-
-   this.$element
-   .toggleClass( 'mw-echo-notifications-badge-all-read', 
!numItems )
-   .toggleClass( 'mw-echo-notifications-badge-long-label', 
label.length > 2 )
-   .attr( 'data-counter-num', numItems )
-   .attr( 'data-counter-text', label );
};
 }( mediaWiki, jQuery ) );

-- 
To view, visit https://gerrit.wikimedia.org/r/345779
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I03f1742b209305080af8784632f07dff63135d81
Gerrit-PatchSet: 3
Gerrit-Project: mediawiki/extensions/Echo
Gerrit-Branch: master
Gerrit-Owner: Mooeypoo 
Gerrit-Reviewer: Catrope 
Gerrit-Reviewer: Mattflaschen 
Gerrit-Reviewer: Mooeypoo 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki/core[REL1_27]: Drop index oi_name_archive_name on table oldimage in MSSQL

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345339 )

Change subject: Drop index oi_name_archive_name on table oldimage in MSSQL
..


Drop index oi_name_archive_name on table oldimage in MSSQL

The index is too long, causes install to fail on MSSQL

Bug: T145635
Change-Id: I7d1c534ec69bfac7d63514993d3f8429a6121592
---
M RELEASE-NOTES-1.27
M includes/installer/MssqlUpdater.php
A maintenance/mssql/archives/patch-alter-table-oldimage.sql
M maintenance/mssql/tables.sql
4 files changed, 6 insertions(+), 2 deletions(-)

Approvals:
  Brian Wolff: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/RELEASE-NOTES-1.27 b/RELEASE-NOTES-1.27
index 1887d86..5193e51 100644
--- a/RELEASE-NOTES-1.27
+++ b/RELEASE-NOTES-1.27
@@ -20,6 +20,7 @@
   in the query string is now deprecated and outputs a warning. They should be
   submitted in the POST body instead.
 * (T158766) Avoid SQL error on MSSQL when using selectRowCount()
+* (T145635) Fix too long index error when installing with MSSQL.
 
 == MediaWiki 1.27.1 ==
 
diff --git a/includes/installer/MssqlUpdater.php 
b/includes/installer/MssqlUpdater.php
index accc42f..6d4f607 100644
--- a/includes/installer/MssqlUpdater.php
+++ b/includes/installer/MssqlUpdater.php
@@ -87,7 +87,10 @@
[ 'updateSchema', 'recentchanges', 
'recentchanges-drop-fks',
'patch-recentchanges-drop-fks.sql' ],
[ 'updateSchema', 'logging', 'logging-drop-fks', 
'patch-logging-drop-fks.sql' ],
-   [ 'updateSchema', 'archive', 'archive-drop-fks', 
'patch-archive-drop-fks.sql' ]
+   [ 'updateSchema', 'archive', 'archive-drop-fks', 
'patch-archive-drop-fks.sql' ],
+   // 1.29.0, 1.28.1, 1.27.2
+   [ 'dropIndex', 'oldimage', 'oi_name_archive_name',
+   'patch-alter-table-oldimage.sql' ],
];
}
 
diff --git a/maintenance/mssql/archives/patch-alter-table-oldimage.sql 
b/maintenance/mssql/archives/patch-alter-table-oldimage.sql
new file mode 100644
index 000..fb31d6a
--- /dev/null
+++ b/maintenance/mssql/archives/patch-alter-table-oldimage.sql
@@ -0,0 +1 @@
+DROP INDEX /*i*/oi_name_archive_name ON /*_*/oldimage;
diff --git a/maintenance/mssql/tables.sql b/maintenance/mssql/tables.sql
index 12cfed8..c05dbbe 100644
--- a/maintenance/mssql/tables.sql
+++ b/maintenance/mssql/tables.sql
@@ -652,7 +652,6 @@
 
 CREATE INDEX /*i*/oi_usertext_timestamp ON /*_*/oldimage 
(oi_user_text,oi_timestamp);
 CREATE INDEX /*i*/oi_name_timestamp ON /*_*/oldimage (oi_name,oi_timestamp);
-CREATE INDEX /*i*/oi_name_archive_name ON /*_*/oldimage 
(oi_name,oi_archive_name);
 CREATE INDEX /*i*/oi_sha1 ON /*_*/oldimage (oi_sha1);
 
 

-- 
To view, visit https://gerrit.wikimedia.org/r/345339
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I7d1c534ec69bfac7d63514993d3f8429a6121592
Gerrit-PatchSet: 2
Gerrit-Project: mediawiki/core
Gerrit-Branch: REL1_27
Gerrit-Owner: Brian Wolff 
Gerrit-Reviewer: Brian Wolff 
Gerrit-Reviewer: Chad 
Gerrit-Reviewer: Jjanes 
Gerrit-Reviewer: Paladox 
Gerrit-Reviewer: Parent5446 
Gerrit-Reviewer: Skizzerz 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki/core[master]: ObjectFactory: Complete code coverage for ObjectFactoryTest

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345950 )

Change subject: ObjectFactory: Complete code coverage for ObjectFactoryTest
..


ObjectFactory: Complete code coverage for ObjectFactoryTest

Cover missing case of expandClosures() where the array contains
both a closure and a non-closure.

Change-Id: I30ea8cf3fb909a499a95bf9bd24792f4dd6b5c64
---
M tests/phpunit/includes/libs/ObjectFactoryTest.php
1 file changed, 20 insertions(+), 12 deletions(-)

Approvals:
  Aaron Schulz: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/tests/phpunit/includes/libs/ObjectFactoryTest.php 
b/tests/phpunit/includes/libs/ObjectFactoryTest.php
index f8dda6f..3e0a61e 100644
--- a/tests/phpunit/includes/libs/ObjectFactoryTest.php
+++ b/tests/phpunit/includes/libs/ObjectFactoryTest.php
@@ -26,20 +26,24 @@
public function testClosureExpansionDisabled() {
$obj = ObjectFactory::getObjectFromSpec( [
'class' => 'ObjectFactoryTestFixture',
-   'args' => [ function() {
-   return 'unwrapped';
-   }, ],
+   'args' => [
+   function() {
+   return 'wrapped';
+   },
+   'unwrapped',
+   ],
'calls' => [
'setter' => [ function() {
-   return 'unwrapped';
+   return 'wrapped';
}, ],
],
'closure_expansion' => false,
] );
$this->assertInstanceOf( 'Closure', $obj->args[0] );
-   $this->assertSame( 'unwrapped', $obj->args[0]() );
+   $this->assertSame( 'wrapped', $obj->args[0]() );
+   $this->assertSame( 'unwrapped', $obj->args[1] );
$this->assertInstanceOf( 'Closure', $obj->setterArgs[0] );
-   $this->assertSame( 'unwrapped', $obj->setterArgs[0]() );
+   $this->assertSame( 'wrapped', $obj->setterArgs[0]() );
}
 
/**
@@ -49,20 +53,24 @@
public function testClosureExpansionEnabled() {
$obj = ObjectFactory::getObjectFromSpec( [
'class' => 'ObjectFactoryTestFixture',
-   'args' => [ function() {
-   return 'unwrapped';
-   }, ],
+   'args' => [
+   function() {
+   return 'wrapped';
+   },
+   'unwrapped',
+   ],
'calls' => [
'setter' => [ function() {
-   return 'unwrapped';
+   return 'wrapped';
}, ],
],
'closure_expansion' => true,
] );
$this->assertInternalType( 'string', $obj->args[0] );
-   $this->assertSame( 'unwrapped', $obj->args[0] );
+   $this->assertSame( 'wrapped', $obj->args[0] );
+   $this->assertSame( 'unwrapped', $obj->args[1] );
$this->assertInternalType( 'string', $obj->setterArgs[0] );
-   $this->assertSame( 'unwrapped', $obj->setterArgs[0] );
+   $this->assertSame( 'wrapped', $obj->setterArgs[0] );
 
$obj = ObjectFactory::getObjectFromSpec( [
'class' => 'ObjectFactoryTestFixture',

-- 
To view, visit https://gerrit.wikimedia.org/r/345950
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I30ea8cf3fb909a499a95bf9bd24792f4dd6b5c64
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Krinkle 
Gerrit-Reviewer: Aaron Schulz 
Gerrit-Reviewer: Anomie 
Gerrit-Reviewer: BryanDavis 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki/core[master]: objectcache: Complete code coverage for HashBagOStuff

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345949 )

Change subject: objectcache: Complete code coverage for HashBagOStuff
..


objectcache: Complete code coverage for HashBagOStuff

Change-Id: I06cb9778df8239706bf82c0c39cccb419eade4b2
---
M tests/phpunit/includes/libs/objectcache/HashBagOStuffTest.php
1 file changed, 34 insertions(+), 3 deletions(-)

Approvals:
  Aaron Schulz: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/tests/phpunit/includes/libs/objectcache/HashBagOStuffTest.php 
b/tests/phpunit/includes/libs/objectcache/HashBagOStuffTest.php
index c4db0cf..f44baeb 100644
--- a/tests/phpunit/includes/libs/objectcache/HashBagOStuffTest.php
+++ b/tests/phpunit/includes/libs/objectcache/HashBagOStuffTest.php
@@ -6,6 +6,40 @@
 class HashBagOStuffTest extends PHPUnit_Framework_TestCase {
 
/**
+* @covers HashBagOStuff::__construct
+*/
+   public function testConstruct() {
+   $this->assertInstanceOf(
+   HashBagOStuff::class,
+   new HashBagOStuff()
+   );
+   }
+
+   /**
+* @covers HashBagOStuff::__construct
+* @expectedException InvalidArgumentException
+*/
+   public function testConstructBadZero() {
+   $cache = new HashBagOStuff( [ 'maxKeys' => 0 ] );
+   }
+
+   /**
+* @covers HashBagOStuff::__construct
+* @expectedException InvalidArgumentException
+*/
+   public function testConstructBadNeg() {
+   $cache = new HashBagOStuff( [ 'maxKeys' => -1 ] );
+   }
+
+   /**
+* @covers HashBagOStuff::__construct
+* @expectedException InvalidArgumentException
+*/
+   public function testConstructBadType() {
+   $cache = new HashBagOStuff( [ 'maxKeys' => 'x' ] );
+   }
+
+   /**
 * @covers HashBagOStuff::delete
 */
public function testDelete() {
@@ -56,7 +90,6 @@
/**
 * Ensure maxKeys eviction prefers keeping new keys.
 *
-* @covers HashBagOStuff::__construct
 * @covers HashBagOStuff::set
 */
public function testEvictionAdd() {
@@ -76,7 +109,6 @@
 * Ensure maxKeys eviction prefers recently set keys
 * even if the keys pre-exist.
 *
-* @covers HashBagOStuff::__construct
 * @covers HashBagOStuff::set
 */
public function testEvictionSet() {
@@ -102,7 +134,6 @@
/**
 * Ensure maxKeys eviction prefers recently retrieved keys (LRU).
 *
-* @covers HashBagOStuff::__construct
 * @covers HashBagOStuff::doGet
 * @covers HashBagOStuff::hasKey
 */

-- 
To view, visit https://gerrit.wikimedia.org/r/345949
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I06cb9778df8239706bf82c0c39cccb419eade4b2
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Krinkle 
Gerrit-Reviewer: Aaron Schulz 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki/core[master]: resourceloader: Complete code coverage for MessageBlobStore

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345948 )

Change subject: resourceloader: Complete code coverage for MessageBlobStore
..


resourceloader: Complete code coverage for MessageBlobStore

Change-Id: I6269843ed51c67bf2d300eb58a613122ffdae740
---
M includes/cache/MessageBlobStore.php
M tests/phpunit/includes/resourceloader/MessageBlobStoreTest.php
2 files changed, 42 insertions(+), 0 deletions(-)

Approvals:
  Aaron Schulz: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/includes/cache/MessageBlobStore.php 
b/includes/cache/MessageBlobStore.php
index 5d48c03..14baeeb 100644
--- a/includes/cache/MessageBlobStore.php
+++ b/includes/cache/MessageBlobStore.php
@@ -238,6 +238,7 @@
}
 
$json = FormatJson::encode( (object)$messages );
+   // @codeCoverageIgnoreStart
if ( $json === false ) {
$this->logger->warning( 'Failed to encode message blob 
for {module} ({lang})', [
'module' => $module->getName(),
@@ -245,6 +246,7 @@
] );
$json = '{}';
}
+   // codeCoverageIgnoreEnd
return $json;
}
 }
diff --git a/tests/phpunit/includes/resourceloader/MessageBlobStoreTest.php 
b/tests/phpunit/includes/resourceloader/MessageBlobStoreTest.php
index bf80845..29e1863 100644
--- a/tests/phpunit/includes/resourceloader/MessageBlobStoreTest.php
+++ b/tests/phpunit/includes/resourceloader/MessageBlobStoreTest.php
@@ -44,6 +44,46 @@
return $module;
}
 
+   /** @covers MessageBlobStore::setLogger */
+   public function testSetLogger() {
+   $blobStore = $this->makeBlobStore();
+   $this->assertSame( null, $blobStore->setLogger( new 
Psr\Log\NullLogger() ) );
+   }
+
+   /** @covers MessageBlobStore::getResourceLoader */
+   public function testGetResourceLoader() {
+   // Call protected method
+   $blobStore = TestingAccessWrapper::newFromObject( 
$this->makeBlobStore() );
+   $this->assertInstanceOf(
+   ResourceLoader::class,
+   $blobStore->getResourceLoader()
+   );
+   }
+
+   /** @covers MessageBlobStore::fetchMessage */
+   public function testFetchMessage() {
+   $module = $this->makeModule( [ 'mainpage' ] );
+   $rl = new ResourceLoader();
+   $rl->register( $module->getName(), $module );
+
+   $blobStore = $this->makeBlobStore( null, $rl );
+   $blob = $blobStore->getBlob( $module, 'en' );
+
+   $this->assertEquals( '{"mainpage":"Main Page"}', $blob, 
'Generated blob' );
+   }
+
+   /** @covers MessageBlobStore::fetchMessage */
+   public function testFetchMessageFail() {
+   $module = $this->makeModule( [ 'i-dont-exist' ] );
+   $rl = new ResourceLoader();
+   $rl->register( $module->getName(), $module );
+
+   $blobStore = $this->makeBlobStore( null, $rl );
+   $blob = $blobStore->getBlob( $module, 'en' );
+
+   $this->assertEquals( 
'{"i-dont-exist":"\u29fci-dont-exist\u29fd"}', $blob, 'Generated blob' );
+   }
+
public function testGetBlob() {
$module = $this->makeModule( [ 'foo' ] );
$rl = new ResourceLoader();

-- 
To view, visit https://gerrit.wikimedia.org/r/345948
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I6269843ed51c67bf2d300eb58a613122ffdae740
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Krinkle 
Gerrit-Reviewer: Aaron Schulz 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki/core[master]: phpunit: Remove unused assertNotTag() and assertTag() overrides

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345945 )

Change subject: phpunit: Remove unused assertNotTag() and assertTag() overrides
..


phpunit: Remove unused assertNotTag() and assertTag() overrides

Deprecated since PHPUnit 4.2, we use PHPUnit 4.8 and would like
to be compatible with PHPUnit 5 which no longer has this method.

The current hack was only enough to avoid the deprecation warning,
the underlying logic in Xml::findNodes() was also removed in PHPUnit 5.

Follows-up 23ec64745c, dba0522f70, T71505.

* assertNotTag() is not used anywhere in Wikimedia Git.
* assertTag() was used in 1 test in core, fixed in the parent commit.
  Match in mediawiki/skins/chameleon is unrelated.

Change-Id: I56b8f1f88124d69190938fc522ea75419e96c49c
---
M tests/phpunit/MediaWikiTestCase.php
1 file changed, 0 insertions(+), 45 deletions(-)

Approvals:
  Aaron Schulz: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/tests/phpunit/MediaWikiTestCase.php 
b/tests/phpunit/MediaWikiTestCase.php
index 419ff00..bb7267a 100644
--- a/tests/phpunit/MediaWikiTestCase.php
+++ b/tests/phpunit/MediaWikiTestCase.php
@@ -1769,51 +1769,6 @@
}
 
/**
-* @param array $matcher
-* @param string $actual
-* @param bool $isHtml
-*
-* @return bool
-*/
-   private static function tagMatch( $matcher, $actual, $isHtml = true ) {
-   $dom = PHPUnit_Util_XML::load( $actual, $isHtml );
-   $tags = PHPUnit_Util_XML::findNodes( $dom, $matcher, $isHtml );
-   return count( $tags ) > 0 && $tags[0] instanceof DOMNode;
-   }
-
-   /**
-* Note: we are overriding this method to remove the deprecated error
-* @see https://phabricator.wikimedia.org/T71505
-* @see https://github.com/sebastianbergmann/phpunit/issues/1292
-* @deprecated
-*
-* @param array $matcher
-* @param string $actual
-* @param string $message
-* @param bool $isHtml
-*/
-   public static function assertTag( $matcher, $actual, $message = '', 
$isHtml = true ) {
-   // trigger_error(__METHOD__ . ' is deprecated', 
E_USER_DEPRECATED);
-
-   self::assertTrue( self::tagMatch( $matcher, $actual, $isHtml ), 
$message );
-   }
-
-   /**
-* @see MediaWikiTestCase::assertTag
-* @deprecated
-*
-* @param array $matcher
-* @param string $actual
-* @param string $message
-* @param bool $isHtml
-*/
-   public static function assertNotTag( $matcher, $actual, $message = '', 
$isHtml = true ) {
-   // trigger_error(__METHOD__ . ' is deprecated', 
E_USER_DEPRECATED);
-
-   self::assertFalse( self::tagMatch( $matcher, $actual, $isHtml 
), $message );
-   }
-
-   /**
 * Used as a marker to prevent wfResetOutputBuffers from breaking 
PHPUnit.
 * @return string
 */

-- 
To view, visit https://gerrit.wikimedia.org/r/345945
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I56b8f1f88124d69190938fc522ea75419e96c49c
Gerrit-PatchSet: 3
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Krinkle 
Gerrit-Reviewer: Aaron Schulz 
Gerrit-Reviewer: Reedy 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki/core[master]: changes: Remove assertTag from RCCacheEntryFactoryTest

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345947 )

Change subject: changes: Remove assertTag from RCCacheEntryFactoryTest
..


changes: Remove assertTag from RCCacheEntryFactoryTest

Use PHPUnit's Xml::load() to validate that all tags and attributes
are balanced.

Use simple assertEquals or assertRegexp for the specific parts.

Change-Id: I25796954a3bb9903e88256b8345ef751c767d7d5
---
M tests/phpunit/includes/changes/RCCacheEntryFactoryTest.php
1 file changed, 28 insertions(+), 62 deletions(-)

Approvals:
  Aaron Schulz: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/tests/phpunit/includes/changes/RCCacheEntryFactoryTest.php 
b/tests/phpunit/includes/changes/RCCacheEntryFactoryTest.php
index 4ff1eb8..97b4c08 100644
--- a/tests/phpunit/includes/changes/RCCacheEntryFactoryTest.php
+++ b/tests/phpunit/includes/changes/RCCacheEntryFactoryTest.php
@@ -141,103 +141,69 @@
$this->assertEquals( 'prev', $cacheEntry->lastlink, 'pref link 
for delete log or rev' );
}
 
+   private function assertValidHTML( $actual ) {
+   // Throws if invalid
+   $doc = PHPUnit_Util_XML::load( $actual, /* isHtml */ true );
+   }
+
private function assertUserLinks( $user, $cacheEntry ) {
-   $this->assertTag(
-   [
-   'tag' => 'a',
-   'attributes' => [
-   'class' => 'new mw-userlink'
-   ],
-   'content' => $user
-   ],
+   $this->assertValidHTML( $cacheEntry->userlink );
+   $this->assertRegExp(
+   '#^' . $user . 
'#',
$cacheEntry->userlink,
'verify user link'
);
 
-   $this->assertTag(
-   [
-   'tag' => 'span',
-   'attributes' => [
-   'class' => 'mw-usertoollinks'
-   ],
-   'child' => [
-   'tag' => 'a',
-   'content' => 'talk',
-   ]
-   ],
+   $this->assertValidHTML( $cacheEntry->usertalklink );
+   $this->assertRegExp(
+   '#^ \(.*talk.*\)#',
$cacheEntry->usertalklink,
'verify user talk link'
);
 
-   $this->assertTag(
-   [
-   'tag' => 'span',
-   'attributes' => [
-   'class' => 'mw-usertoollinks'
-   ],
-   'child' => [
-   'tag' => 'a',
-   'content' => 'contribs',
-   ]
-   ],
+   $this->assertValidHTML( $cacheEntry->usertalklink );
+   $this->assertRegExp(
+   '#^ \(.*contribs.*\)$#',
$cacheEntry->usertalklink,
'verify user tool links'
);
}
 
private function assertDeleteLogLink( $cacheEntry ) {
-   $this->assertTag(
-   [
-   'tag' => 'a',
-   'attributes' => [
-   'href' => '/wiki/Special:Log/delete',
-   'title' => 'Special:Log/delete'
-   ],
-   'content' => 'Deletion log'
-   ],
+   $this->assertEquals(
+   '(Deletion log)',
$cacheEntry->link,
'verify deletion log link'
);
+
+   $this->assertValidHTML( $cacheEntry->link );
}
 
private function assertRevDel( $cacheEntry ) {
-   $this->assertTag(
-   [
-   'tag' => 'span',
-   'attributes' => [
-   'class' => 'history-deleted'
-   ],
-   'content' => '(username removed)'
-   ],
+   $this->assertEquals(
+   ' (username 
removed)',
$cacheEntry->userlink,
'verify user link for change with deleted revision and 
user'
);
+   $this->assertValidHTML( $cacheEntry->userlink );
}
 

[MediaWiki-commits] [Gerrit] mediawiki/core[master]: resourceloader: Improve code coverage for WikiModuleTest

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345953 )

Change subject: resourceloader: Improve code coverage for WikiModuleTest
..


resourceloader: Improve code coverage for WikiModuleTest

preloadTitleInfo:
* Add missing case for empty $moduleNames.
* Add missing case for invalid page names.

getContent:
* Add missing case for bad title
* Add missing case for dead redirect.
* Add missing case for no content found.

Change-Id: I44dde13cb0db19d91c4ff15a5abefd17353cad90
---
M includes/resourceloader/ResourceLoaderWikiModule.php
M tests/phpunit/includes/resourceloader/ResourceLoaderWikiModuleTest.php
2 files changed, 111 insertions(+), 4 deletions(-)

Approvals:
  Aaron Schulz: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/includes/resourceloader/ResourceLoaderWikiModule.php 
b/includes/resourceloader/ResourceLoaderWikiModule.php
index 92095f7..efa2165 100644
--- a/includes/resourceloader/ResourceLoaderWikiModule.php
+++ b/includes/resourceloader/ResourceLoaderWikiModule.php
@@ -148,7 +148,7 @@
protected function getContent( $titleText ) {
$title = Title::newFromText( $titleText );
if ( !$title ) {
-   return null;
+   return null; // Bad title
}
 
// If the page is a redirect, follow the redirect.
@@ -156,7 +156,7 @@
$content = $this->getContentObj( $title );
$title = $content ? 
$content->getUltimateRedirectTarget() : null;
if ( !$title ) {
-   return null;
+   return null; // Dead redirect
}
}
 
@@ -166,12 +166,12 @@
} elseif ( $handler->isSupportedFormat( 
CONTENT_FORMAT_JAVASCRIPT ) ) {
$format = CONTENT_FORMAT_JAVASCRIPT;
} else {
-   return null;
+   return null; // Bad content model
}
 
$content = $this->getContentObj( $title );
if ( !$content ) {
-   return null;
+   return null; // No content found
}
 
return $content->serialize( $format );
diff --git 
a/tests/phpunit/includes/resourceloader/ResourceLoaderWikiModuleTest.php 
b/tests/phpunit/includes/resourceloader/ResourceLoaderWikiModuleTest.php
index 5cab8e2..2d0d958 100644
--- a/tests/phpunit/includes/resourceloader/ResourceLoaderWikiModuleTest.php
+++ b/tests/phpunit/includes/resourceloader/ResourceLoaderWikiModuleTest.php
@@ -219,6 +219,113 @@
}
 
/**
+* @covers ResourceLoaderWikiModule::preloadTitleInfo
+*/
+   public function testGetPreloadedBadTitle() {
+   // Mock values
+   $pages = [
+   // Covers else branch for invalid page name
+   '[x]' => [ 'type' => 'styles' ],
+   ];
+   $titleInfo = [];
+
+   // Set up objects
+   $module = $this->getMockBuilder( 'TestResourceLoaderWikiModule' 
)
+   ->setMethods( [ 'getPages' ] ) ->getMock();
+   $module->method( 'getPages' )->willReturn( $pages );
+   $module::$returnFetchTitleInfo = $titleInfo;
+   $rl = new EmptyResourceLoader();
+   $rl->register( 'testmodule', $module );
+   $context = new ResourceLoaderContext( $rl, new FauxRequest() );
+
+   // Act
+   TestResourceLoaderWikiModule::preloadTitleInfo(
+   $context,
+   wfGetDB( DB_REPLICA ),
+   [ 'testmodule' ]
+   );
+
+   // Assert
+   $module = TestingAccessWrapper::newFromObject( $module );
+   $this->assertEquals( $titleInfo, $module->getTitleInfo( 
$context ), 'Title info' );
+   }
+
+   /**
+* @covers ResourceLoaderWikiModule::preloadTitleInfo
+*/
+   public function testGetPreloadedTitleInfoEmpty() {
+   $context = new ResourceLoaderContext( new 
EmptyResourceLoader(), new FauxRequest() );
+   // Covers early return
+   $this->assertSame(
+   null,
+   ResourceLoaderWikiModule::preloadTitleInfo(
+   $context,
+   wfGetDB( DB_REPLICA ),
+   []
+   )
+   );
+   }
+
+   public static function provideGetContent() {
+   return [
+   'Bad title' => [ null, '[x]' ],
+   'Dead redirect' => [ null, [
+   'text' => 'Dead redirect',
+   

[MediaWiki-commits] [Gerrit] mediawiki/core[master]: FauxRequest: Complete code coverage for FauxRequestTest

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345952 )

Change subject: FauxRequest: Complete code coverage for FauxRequestTest
..


FauxRequest: Complete code coverage for FauxRequestTest

Follows-up d18d030d57b88.

* Add missing case of session being a Session object.

Change-Id: I7da0c6d4a6483d53bcfd56751cd1cb669bd5023e
---
M tests/phpunit/includes/FauxRequestTest.php
1 file changed, 13 insertions(+), 0 deletions(-)

Approvals:
  Aaron Schulz: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/tests/phpunit/includes/FauxRequestTest.php 
b/tests/phpunit/includes/FauxRequestTest.php
index e3713ab..9fe694d 100644
--- a/tests/phpunit/includes/FauxRequestTest.php
+++ b/tests/phpunit/includes/FauxRequestTest.php
@@ -1,5 +1,7 @@
 getEmptySession( new 
FauxRequest( [] ) );
+   $this->assertInstanceOf(
+   FauxRequest::class,
+   new FauxRequest( [], false, $session )
+   );
+   }
+
+   /**
 * @covers FauxRequest::getText
 */
public function testGetText() {

-- 
To view, visit https://gerrit.wikimedia.org/r/345952
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I7da0c6d4a6483d53bcfd56751cd1cb669bd5023e
Gerrit-PatchSet: 2
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Krinkle 
Gerrit-Reviewer: Aaron Schulz 
Gerrit-Reviewer: Anomie 
Gerrit-Reviewer: Gergő Tisza 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki/core[master]: Html: Add a few @covers for HtmlTest

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345951 )

Change subject: Html: Add a few @covers for HtmlTest
..


Html: Add a few @covers for HtmlTest

Change-Id: I0804e87ebc732d7adf082915af6d137f82f310b6
---
M tests/phpunit/includes/HtmlTest.php
1 file changed, 4 insertions(+), 0 deletions(-)

Approvals:
  Aaron Schulz: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/tests/phpunit/includes/HtmlTest.php 
b/tests/phpunit/includes/HtmlTest.php
index b7249e5..115a8cf 100644
--- a/tests/phpunit/includes/HtmlTest.php
+++ b/tests/phpunit/includes/HtmlTest.php
@@ -41,6 +41,9 @@
 
/**
 * @covers Html::element
+* @covers Html::rawElement
+* @covers Html::openElement
+* @covers Html::closeElement
 */
public function testElementBasics() {
$this->assertEquals(
@@ -302,6 +305,7 @@
 
/**
 * @covers Html::namespaceSelector
+* @covers Html::namespaceSelectorOptions
 */
public function testNamespaceSelector() {
$this->assertEquals(

-- 
To view, visit https://gerrit.wikimedia.org/r/345951
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I0804e87ebc732d7adf082915af6d137f82f310b6
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Krinkle 
Gerrit-Reviewer: Aaron Schulz 
Gerrit-Reviewer: Bartosz Dziewoński 
Gerrit-Reviewer: Gergő Tisza 
Gerrit-Reviewer: Ladsgroup 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...Echo[master]: Jenkins test: DO NOT MERGE

2017-03-31 Thread Mattflaschen (Code Review)
Mattflaschen has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345954 )

Change subject: Jenkins test: DO NOT MERGE
..

Jenkins test: DO NOT MERGE

Change-Id: I84bb10b281a7b844adc3a43f77b70b0b391969d8
---
A foo
1 file changed, 0 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Echo 
refs/changes/54/345954/1

diff --git a/foo b/foo
new file mode 100644
index 000..e69de29
--- /dev/null
+++ b/foo

-- 
To view, visit https://gerrit.wikimedia.org/r/345954
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I84bb10b281a7b844adc3a43f77b70b0b391969d8
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Echo
Gerrit-Branch: master
Gerrit-Owner: Mattflaschen 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...Math[master]: Use tabs to indent in json

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345918 )

Change subject: Use tabs to indent in json
..


Use tabs to indent in json

Change-Id: I60c586418679fd5709aef4b9e23e814c45dfb35b
---
M i18n/got.json
M i18n/test.json
M package.json
3 files changed, 26 insertions(+), 26 deletions(-)

Approvals:
  Reedy: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/got.json b/i18n/got.json
index 174d5ec..3c7147d 100644
--- a/i18n/got.json
+++ b/i18n/got.json
@@ -1,9 +1,9 @@
 {
-"@metadata": {
-"authors": [
-"Jocke Pirat"
-]
-},
-"math_sample": "Lagjan formula her",
-"math_tip": "Maþemateikaleiks formula (LaTeX)"
+   "@metadata": {
+   "authors": [
+   "Jocke Pirat"
+   ]
+   },
+   "math_sample": "Lagjan formula her",
+   "math_tip": "Maþemateikaleiks formula (LaTeX)"
 }
\ No newline at end of file
diff --git a/i18n/test.json b/i18n/test.json
index 06aab8c..93197ca 100644
--- a/i18n/test.json
+++ b/i18n/test.json
@@ -1,7 +1,7 @@
 {
-"@metadata": {
-"authors": []
-},
-"math_sample": "x",
-"math_tip": "x"
+   "@metadata": {
+   "authors": []
+   },
+   "math_sample": "x",
+   "math_tip": "x"
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index 1fb2b94..7ca86d0 100644
--- a/package.json
+++ b/package.json
@@ -1,16 +1,16 @@
 {
-  "private": true,
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"eslint-config-wikimedia": "0.3.0",
-"grunt": "1.0.1",
-"grunt-banana-checker": "0.5.0",
-"grunt-contrib-watch": "1.0.0",
-"grunt-eslint": "19.0.0",
-"grunt-jsonlint": "1.0.7",
-"grunt-stylelint": "0.7.0",
-"stylelint-config-wikimedia": "0.4.1"
-  }
+   "private": true,
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "eslint-config-wikimedia": "0.3.0",
+   "grunt": "1.0.1",
+   "grunt-banana-checker": "0.5.0",
+   "grunt-contrib-watch": "1.0.0",
+   "grunt-eslint": "19.0.0",
+   "grunt-jsonlint": "1.0.7",
+   "grunt-stylelint": "0.7.0",
+   "stylelint-config-wikimedia": "0.4.1"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345918
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I60c586418679fd5709aef4b9e23e814c45dfb35b
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Math
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 
Gerrit-Reviewer: Physikerwelt 
Gerrit-Reviewer: Reedy 
Gerrit-Reviewer: Siebrand 
Gerrit-Reviewer: TheDJ 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...CheckUser[master]: Use tabs to indent in json

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345900 )

Change subject: Use tabs to indent in json
..


Use tabs to indent in json

Change-Id: I96c0f5731ac34f55d4bca581c865c86c5190ea65
---
M i18n/got.json
M i18n/tg.json
M package.json
3 files changed, 25 insertions(+), 25 deletions(-)

Approvals:
  Reedy: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/got.json b/i18n/got.json
index 60c8cba..2c28e8a 100644
--- a/i18n/got.json
+++ b/i18n/got.json
@@ -1,6 +1,6 @@
 {
-"@metadata": {
-"authors": []
-},
-"checkuser-reason": "̰̹̹̰͆͂̽:"
+   "@metadata": {
+   "authors": []
+   },
+   "checkuser-reason": "̰̹̹̰͆͂̽:"
 }
\ No newline at end of file
diff --git a/i18n/tg.json b/i18n/tg.json
index 036be1f..d6259e2 100644
--- a/i18n/tg.json
+++ b/i18n/tg.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Ibrahim"
-]
-},
-"right-checkuser-log": "Мушоҳидаи гузоришҳои бозрасии корбарӣ"
+   "@metadata": {
+   "authors": [
+   "Ibrahim"
+   ]
+   },
+   "right-checkuser-log": "Мушоҳидаи гузоришҳои бозрасии корбарӣ"
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index d648efc..be07364 100644
--- a/package.json
+++ b/package.json
@@ -1,17 +1,17 @@
 {
-  "name": "checkuser",
-  "version": "0.0.0",
-  "private": true,
-  "description": "Build tools for the CheckUser extension.",
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "0.4.5",
-"grunt-cli": "0.1.13",
-"grunt-contrib-jshint": "0.11.3",
-"grunt-banana-checker": "0.4.0",
-"grunt-jscs": "2.1.0",
-"grunt-jsonlint": "1.0.7"
-  }
+   "name": "checkuser",
+   "version": "0.0.0",
+   "private": true,
+   "description": "Build tools for the CheckUser extension.",
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "0.4.5",
+   "grunt-cli": "0.1.13",
+   "grunt-contrib-jshint": "0.11.3",
+   "grunt-banana-checker": "0.4.0",
+   "grunt-jscs": "2.1.0",
+   "grunt-jsonlint": "1.0.7"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345900
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I96c0f5731ac34f55d4bca581c865c86c5190ea65
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/CheckUser
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 
Gerrit-Reviewer: Reedy 
Gerrit-Reviewer: Siebrand 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...LiquidThreads[master]: Use tabs to indent in json

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345917 )

Change subject: Use tabs to indent in json
..


Use tabs to indent in json

Change-Id: I6faa80a254985d7ccfb8e3bc7ddc82597ea7bbd7
---
M i18n/got.json
M package.json
2 files changed, 21 insertions(+), 21 deletions(-)

Approvals:
  Reedy: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/got.json b/i18n/got.json
index 1f0c916..25e12f6 100644
--- a/i18n/got.json
+++ b/i18n/got.json
@@ -1,11 +1,11 @@
 {
-"@metadata": {
-"authors": [
-"Crazymadlover",
-"Jocke Pirat",
-"Omnipaedista"
-]
-},
-"lqt_delete": "Taíran",
-"lqt_move_move": "Skiuban"
+   "@metadata": {
+   "authors": [
+   "Crazymadlover",
+   "Jocke Pirat",
+   "Omnipaedista"
+   ]
+   },
+   "lqt_delete": "Taíran",
+   "lqt_move_move": "Skiuban"
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index 8e0d086..ec4be4d 100644
--- a/package.json
+++ b/package.json
@@ -1,14 +1,14 @@
 {
-  "private": true,
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "0.4.5",
-"grunt-banana-checker": "0.5.0",
-"grunt-cli": "0.1.13",
-"grunt-contrib-jshint": "0.11.3",
-"grunt-jscs": "2.4.0",
-"grunt-jsonlint": "1.0.7"
-  }
+   "private": true,
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "0.4.5",
+   "grunt-banana-checker": "0.5.0",
+   "grunt-cli": "0.1.13",
+   "grunt-contrib-jshint": "0.11.3",
+   "grunt-jscs": "2.4.0",
+   "grunt-jsonlint": "1.0.7"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345917
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I6faa80a254985d7ccfb8e3bc7ddc82597ea7bbd7
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/LiquidThreads
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 
Gerrit-Reviewer: Reedy 
Gerrit-Reviewer: Siebrand 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...cldr[master]: Use tabs to indent in json

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345901 )

Change subject: Use tabs to indent in json
..


Use tabs to indent in json

Change-Id: I0127d478ac3c5ea284ec9ddfd590d35faaa090b5
---
M i18n/ug.json
M package.json
2 files changed, 20 insertions(+), 20 deletions(-)

Approvals:
  Reedy: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/ug.json b/i18n/ug.json
index 6c01539..cf1787f 100644
--- a/i18n/ug.json
+++ b/i18n/ug.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Sahran"
-]
-},
-"cldr-desc": "يەرلىكلەشتۈرۈلگەن تىل ئاتى كېينرەك تەمىنلىنىدۇ"
+   "@metadata": {
+   "authors": [
+   "Sahran"
+   ]
+   },
+   "cldr-desc": "يەرلىكلەشتۈرۈلگەن تىل ئاتى كېينرەك تەمىنلىنىدۇ"
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index a5b9680..8e088ce 100644
--- a/package.json
+++ b/package.json
@@ -1,16 +1,16 @@
 {
-  "name": "cldr",
-  "version": "0.0.0",
-  "private": true,
-  "description": "Build tools for the cldr extension.",
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "0.4.5",
-"grunt-cli": "0.1.13",
-"grunt-banana-checker": "0.4.0",
-"grunt-contrib-jshint": "0.11.3",
-"grunt-jsonlint": "1.0.7"
-  }
+   "name": "cldr",
+   "version": "0.0.0",
+   "private": true,
+   "description": "Build tools for the cldr extension.",
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "0.4.5",
+   "grunt-cli": "0.1.13",
+   "grunt-banana-checker": "0.4.0",
+   "grunt-contrib-jshint": "0.11.3",
+   "grunt-jsonlint": "1.0.7"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345901
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I0127d478ac3c5ea284ec9ddfd590d35faaa090b5
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/cldr
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 
Gerrit-Reviewer: Reedy 
Gerrit-Reviewer: Siebrand 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...GlobalBlocking[master]: Use tabs to indent in json

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345912 )

Change subject: Use tabs to indent in json
..


Use tabs to indent in json

Change-Id: I69c9eff6cf30a99e3624f846c8b8ab211229cf3a
---
M i18n/got.json
M package.json
2 files changed, 16 insertions(+), 16 deletions(-)

Approvals:
  Reedy: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/got.json b/i18n/got.json
index 15d1749..a1724a8 100644
--- a/i18n/got.json
+++ b/i18n/got.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Jocke Pirat"
-]
-},
-"globalblocking-unblock-reason": "̰̹̹̰͆͂̽:"
+   "@metadata": {
+   "authors": [
+   "Jocke Pirat"
+   ]
+   },
+   "globalblocking-unblock-reason": "̰̹̹̰͆͂̽:"
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index 72eb4aa..4282d40 100644
--- a/package.json
+++ b/package.json
@@ -1,12 +1,12 @@
 {
-  "private": true,
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "0.4.5",
-"grunt-cli": "0.1.13",
-"grunt-banana-checker": "0.4.0",
-"grunt-jsonlint": "1.0.7"
-  }
+   "private": true,
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "0.4.5",
+   "grunt-cli": "0.1.13",
+   "grunt-banana-checker": "0.4.0",
+   "grunt-jsonlint": "1.0.7"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345912
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I69c9eff6cf30a99e3624f846c8b8ab211229cf3a
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GlobalBlocking
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 
Gerrit-Reviewer: Reedy 
Gerrit-Reviewer: Siebrand 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...Configure[master]: Use tabs to indent in json

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345903 )

Change subject: Use tabs to indent in json
..


Use tabs to indent in json

Change-Id: I3c7205f38efcfc6b64efed01309026d2e630b77a
---
M package.json
M settings/i18n/af.json
M settings/i18n/aln.json
M settings/i18n/an.json
M settings/i18n/ar.json
M settings/i18n/arc.json
M settings/i18n/arz.json
M settings/i18n/as.json
M settings/i18n/ast.json
M settings/i18n/az.json
M settings/i18n/azb.json
M settings/i18n/ba.json
M settings/i18n/bar.json
M settings/i18n/be-tarask.json
M settings/i18n/bg.json
M settings/i18n/bn.json
M settings/i18n/br.json
M settings/i18n/bs.json
M settings/i18n/ca.json
M settings/i18n/ce.json
M settings/i18n/ckb.json
M settings/i18n/cs.json
M settings/i18n/cu.json
M settings/i18n/da.json
M settings/i18n/de-ch.json
M settings/i18n/de.json
M settings/i18n/diq.json
M settings/i18n/dsb.json
M settings/i18n/el.json
M settings/i18n/en-gb.json
M settings/i18n/eo.json
M settings/i18n/es.json
M settings/i18n/et.json
M settings/i18n/eu.json
M settings/i18n/fa.json
M settings/i18n/fi.json
M settings/i18n/fo.json
M settings/i18n/fr.json
M settings/i18n/frp.json
M settings/i18n/ga.json
M settings/i18n/gl.json
M settings/i18n/grc.json
M settings/i18n/gsw.json
M settings/i18n/ha.json
M settings/i18n/he.json
M settings/i18n/hi.json
M settings/i18n/hr.json
M settings/i18n/hsb.json
M settings/i18n/hu.json
M settings/i18n/hy.json
M settings/i18n/ia.json
M settings/i18n/id.json
M settings/i18n/ig.json
M settings/i18n/inh.json
M settings/i18n/is.json
M settings/i18n/it.json
M settings/i18n/ja.json
M settings/i18n/ka.json
M settings/i18n/km.json
M settings/i18n/kn.json
M settings/i18n/ko.json
M settings/i18n/ksh.json
M settings/i18n/ku-latn.json
M settings/i18n/la.json
M settings/i18n/lb.json
M settings/i18n/li.json
M settings/i18n/lt.json
M settings/i18n/ltg.json
M settings/i18n/lv.json
M settings/i18n/map-bms.json
M settings/i18n/mhr.json
M settings/i18n/min.json
M settings/i18n/mk.json
M settings/i18n/ml.json
M settings/i18n/mn.json
M settings/i18n/ms.json
M settings/i18n/mt.json
M settings/i18n/myv.json
M settings/i18n/nah.json
M settings/i18n/nb.json
M settings/i18n/nds.json
M settings/i18n/nl.json
M settings/i18n/nn.json
M settings/i18n/oc.json
M settings/i18n/or.json
M settings/i18n/pdc.json
M settings/i18n/pfl.json
M settings/i18n/pl.json
M settings/i18n/pms.json
M settings/i18n/ps.json
M settings/i18n/pt-br.json
M settings/i18n/pt.json
M settings/i18n/qqq.json
M settings/i18n/ro.json
M settings/i18n/roa-tara.json
M settings/i18n/ru.json
M settings/i18n/rue.json
M settings/i18n/scn.json
M settings/i18n/si.json
M settings/i18n/sk.json
M settings/i18n/sl.json
M settings/i18n/sr-ec.json
M settings/i18n/sr-el.json
M settings/i18n/sv.json
M settings/i18n/sw.json
M settings/i18n/ta.json
M settings/i18n/tcy.json
M settings/i18n/te.json
M settings/i18n/tet.json
M settings/i18n/tg-cyrl.json
M settings/i18n/tg-latn.json
M settings/i18n/th.json
M settings/i18n/tk.json
M settings/i18n/tl.json
M settings/i18n/tr.json
M settings/i18n/tzm.json
M settings/i18n/uk.json
M settings/i18n/ur.json
M settings/i18n/vep.json
M settings/i18n/vi.json
M settings/i18n/vo.json
M settings/i18n/yi.json
M settings/i18n/zh-hans.json
M settings/i18n/zh-hant.json
124 files changed, 27,339 insertions(+), 27,339 deletions(-)

Approvals:
  Reedy: Looks good to me, approved
  jenkins-bot: Verified




-- 
To view, visit https://gerrit.wikimedia.org/r/345903
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I3c7205f38efcfc6b64efed01309026d2e630b77a
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Configure
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 
Gerrit-Reviewer: Reedy 
Gerrit-Reviewer: Siebrand 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...GlobalUserGroups[master]: Use tabs to indent in json

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345913 )

Change subject: Use tabs to indent in json
..


Use tabs to indent in json

Change-Id: Ifff2e91ad2b7ce2e80a64f73b9e7ad4c93c5151b
---
M i18n/groups/de.json
M i18n/groups/nl.json
M i18n/groups/qqq.json
M package.json
4 files changed, 99 insertions(+), 99 deletions(-)

Approvals:
  Reedy: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/groups/de.json b/i18n/groups/de.json
index 0ce8952..732cdae 100644
--- a/i18n/groups/de.json
+++ b/i18n/groups/de.json
@@ -1,31 +1,31 @@
 {
-"@metadata": {
-"authors": [
-"SVG"
-]
-},
-"group-bot-global": "Globale Bots",
-"group-bot-global-member": "{{GENDER:$1|Globaler Bot}}",
-"grouppage-bot-global": "{{ns:project}}:Globale Bots",
-"group-checkuser-global": "Globale Checkuser",
-"group-checkuser-global-member": "{{GENDER:$1|Globaler 
Checkuser-Berechtigter|Globale Checkuser-Berechtigte}}",
-"grouppage-checkuser-global": "{{ns:project}}:Globale Checkuser",
-"group-helper-global": "Globale Helfer",
-"group-helper-global-member": "{{GENDER:$1|Globaler Helfer|Globale 
Helferin}}",
-"grouppage-helper-global": "{{ns:project}}:Globale Helfer",
-"group-ipblock-exempt-g": "Globale IP-Sperren-Ausgenommene",
-"group-ipblock-exempt-g-member": "{{GENDER:$1|Globaler 
IP-Sperren-Ausgenommener|Globale IP-Sperren-Ausgenommene}}",
-"grouppage-ipblock-exempt-g": "{{ns:project}}:Globale 
IP-Sperren-Ausgenommene",
-"group-rollback-global": "Globale Zurücksetzer",
-"group-rollback-global-member": "{{GENDER:$1|Globaler Zurücksetzer|Globale 
Zurücksetzerin}}",
-"grouppage-rollback-global": "{{ns:project}}:Globale Zurücksetzer",
-"group-steward-global": "Globale Stewards",
-"group-steward-global-member": "{{GENDER:$1|Globaler Steward|Globale 
Stewardess}}",
-"grouppage-steward-global": "{{ns:project}}:Globale Stewards",
-"group-sysadmin-global": "Globale Systemadministratoren",
-"group-sysadmin-global-member": "{{GENDER:$1|Globaler 
Systemadministrator|Globale Systemadministratorin}}",
-"grouppage-sysadmin-global": "{{ns:project}}:Globale 
Systemadministratoren",
-"group-sysop-global": "Globale Administratoren",
-"group-sysop-global-member": "{{GENDER:$1|Globaler Administrator|Globale 
Administratorin}}",
-"grouppage-sysop-global": "{{ns:project}}:Globale Administratoren"
+   "@metadata": {
+   "authors": [
+   "SVG"
+   ]
+   },
+   "group-bot-global": "Globale Bots",
+   "group-bot-global-member": "{{GENDER:$1|Globaler Bot}}",
+   "grouppage-bot-global": "{{ns:project}}:Globale Bots",
+   "group-checkuser-global": "Globale Checkuser",
+   "group-checkuser-global-member": "{{GENDER:$1|Globaler 
Checkuser-Berechtigter|Globale Checkuser-Berechtigte}}",
+   "grouppage-checkuser-global": "{{ns:project}}:Globale Checkuser",
+   "group-helper-global": "Globale Helfer",
+   "group-helper-global-member": "{{GENDER:$1|Globaler Helfer|Globale 
Helferin}}",
+   "grouppage-helper-global": "{{ns:project}}:Globale Helfer",
+   "group-ipblock-exempt-g": "Globale IP-Sperren-Ausgenommene",
+   "group-ipblock-exempt-g-member": "{{GENDER:$1|Globaler 
IP-Sperren-Ausgenommener|Globale IP-Sperren-Ausgenommene}}",
+   "grouppage-ipblock-exempt-g": "{{ns:project}}:Globale 
IP-Sperren-Ausgenommene",
+   "group-rollback-global": "Globale Zurücksetzer",
+   "group-rollback-global-member": "{{GENDER:$1|Globaler 
Zurücksetzer|Globale Zurücksetzerin}}",
+   "grouppage-rollback-global": "{{ns:project}}:Globale Zurücksetzer",
+   "group-steward-global": "Globale Stewards",
+   "group-steward-global-member": "{{GENDER:$1|Globaler Steward|Globale 
Stewardess}}",
+   "grouppage-steward-global": "{{ns:project}}:Globale Stewards",
+   "group-sysadmin-global": "Globale Systemadministratoren",
+   "group-sysadmin-global-member": "{{GENDER:$1|Globaler 
Systemadministrator|Globale Systemadministratorin}}",
+   "grouppage-sysadmin-global": "{{ns:project}}:Globale 
Systemadministratoren",
+   "group-sysop-global": "Globale Administratoren",
+   "group-sysop-global-member": "{{GENDER:$1|Globaler 
Administrator|Globale Administratorin}}",
+   "grouppage-sysop-global": "{{ns:project}}:Globale Administratoren"
 }
diff --git a/i18n/groups/nl.json b/i18n/groups/nl.json
index 9d32f8b..b0704de 100644
--- a/i18n/groups/nl.json
+++ b/i18n/groups/nl.json
@@ -1,34 +1,34 @@
 {
-"@metadata": {
-"authors": [
-"Siebrand",
-"SPQRobin",
-"SVG",
-"Tvdm"
-]
-},
-"group-bot-global": "globale bots",
-"group-bot-global-member": "{{GENDER:$1|globale robot}}",
-"grouppage-bot-global": "{{ns:project}}:Globale bots",
-   

[MediaWiki-commits] [Gerrit] mediawiki/core[master]: resourceloader: Improve code coverage for WikiModuleTest

2017-03-31 Thread Krinkle (Code Review)
Krinkle has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345953 )

Change subject: resourceloader: Improve code coverage for WikiModuleTest
..

resourceloader: Improve code coverage for WikiModuleTest

preloadTitleInfo:
* Add missing case for empty $moduleNames.
* Add missing case for invalid page names.

getContent:
* Add missing case for bad title
* Add missing case for dead redirect.
* Add missing case for no content found.

Change-Id: I44dde13cb0db19d91c4ff15a5abefd17353cad90
---
M includes/resourceloader/ResourceLoaderWikiModule.php
M tests/phpunit/includes/resourceloader/ResourceLoaderWikiModuleTest.php
2 files changed, 111 insertions(+), 4 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/53/345953/1

diff --git a/includes/resourceloader/ResourceLoaderWikiModule.php 
b/includes/resourceloader/ResourceLoaderWikiModule.php
index 92095f7..efa2165 100644
--- a/includes/resourceloader/ResourceLoaderWikiModule.php
+++ b/includes/resourceloader/ResourceLoaderWikiModule.php
@@ -148,7 +148,7 @@
protected function getContent( $titleText ) {
$title = Title::newFromText( $titleText );
if ( !$title ) {
-   return null;
+   return null; // Bad title
}
 
// If the page is a redirect, follow the redirect.
@@ -156,7 +156,7 @@
$content = $this->getContentObj( $title );
$title = $content ? 
$content->getUltimateRedirectTarget() : null;
if ( !$title ) {
-   return null;
+   return null; // Dead redirect
}
}
 
@@ -166,12 +166,12 @@
} elseif ( $handler->isSupportedFormat( 
CONTENT_FORMAT_JAVASCRIPT ) ) {
$format = CONTENT_FORMAT_JAVASCRIPT;
} else {
-   return null;
+   return null; // Bad content model
}
 
$content = $this->getContentObj( $title );
if ( !$content ) {
-   return null;
+   return null; // No content found
}
 
return $content->serialize( $format );
diff --git 
a/tests/phpunit/includes/resourceloader/ResourceLoaderWikiModuleTest.php 
b/tests/phpunit/includes/resourceloader/ResourceLoaderWikiModuleTest.php
index 5cab8e2..2d0d958 100644
--- a/tests/phpunit/includes/resourceloader/ResourceLoaderWikiModuleTest.php
+++ b/tests/phpunit/includes/resourceloader/ResourceLoaderWikiModuleTest.php
@@ -219,6 +219,113 @@
}
 
/**
+* @covers ResourceLoaderWikiModule::preloadTitleInfo
+*/
+   public function testGetPreloadedBadTitle() {
+   // Mock values
+   $pages = [
+   // Covers else branch for invalid page name
+   '[x]' => [ 'type' => 'styles' ],
+   ];
+   $titleInfo = [];
+
+   // Set up objects
+   $module = $this->getMockBuilder( 'TestResourceLoaderWikiModule' 
)
+   ->setMethods( [ 'getPages' ] ) ->getMock();
+   $module->method( 'getPages' )->willReturn( $pages );
+   $module::$returnFetchTitleInfo = $titleInfo;
+   $rl = new EmptyResourceLoader();
+   $rl->register( 'testmodule', $module );
+   $context = new ResourceLoaderContext( $rl, new FauxRequest() );
+
+   // Act
+   TestResourceLoaderWikiModule::preloadTitleInfo(
+   $context,
+   wfGetDB( DB_REPLICA ),
+   [ 'testmodule' ]
+   );
+
+   // Assert
+   $module = TestingAccessWrapper::newFromObject( $module );
+   $this->assertEquals( $titleInfo, $module->getTitleInfo( 
$context ), 'Title info' );
+   }
+
+   /**
+* @covers ResourceLoaderWikiModule::preloadTitleInfo
+*/
+   public function testGetPreloadedTitleInfoEmpty() {
+   $context = new ResourceLoaderContext( new 
EmptyResourceLoader(), new FauxRequest() );
+   // Covers early return
+   $this->assertSame(
+   null,
+   ResourceLoaderWikiModule::preloadTitleInfo(
+   $context,
+   wfGetDB( DB_REPLICA ),
+   []
+   )
+   );
+   }
+
+   public static function provideGetContent() {
+   return [
+   'Bad title' => [ null, '[x]' ],
+   'Dead redirect' => [ null, [
+   'text' => 'Dead redirect',
+   'title' 

[MediaWiki-commits] [Gerrit] mediawiki...ArticleIndex[master]: Use tabs to indent in json

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345894 )

Change subject: Use tabs to indent in json
..


Use tabs to indent in json

Change-Id: I2fd769aad1b4f08750f08bc8780b0f4e0eecdf4f
---
M i18n/cs.json
M i18n/qqq.json
M package.json
3 files changed, 28 insertions(+), 28 deletions(-)

Approvals:
  Reedy: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/cs.json b/i18n/cs.json
index f9f6987..d725713 100644
--- a/i18n/cs.json
+++ b/i18n/cs.json
@@ -1,11 +1,11 @@
 {
-"@metadata": {
-"authors": [
-"Josef Martiňák"
-]
-},
-"articleindex-desc": "Rozšíření zobrazuje rejstřík otagovaných slov v 
článku.",
-"articleindex-next": "další",
-"articleindex-prev": "předchozí",
-"articleindex-index": "rejstřík"
+   "@metadata": {
+   "authors": [
+   "Josef Martiňák"
+   ]
+   },
+   "articleindex-desc": "Rozšíření zobrazuje rejstřík otagovaných slov v 
článku.",
+   "articleindex-next": "další",
+   "articleindex-prev": "předchozí",
+   "articleindex-index": "rejstřík"
 }
diff --git a/i18n/qqq.json b/i18n/qqq.json
index 756b1fb..b2b186d 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -1,11 +1,11 @@
 {
-"@metadata": {
-"authors": [
-"Josef Martiňák"
-]
-},
-"articleindex-desc": "{{desc}}",
-"articleindex-next": "Navigation text button - next occurrence of tagged 
word",
-"articleindex-prev": "Navigation text button - previous occurrence of 
tagged word",
-"articleindex-index": "Navigation text button - jump to the index"
+   "@metadata": {
+   "authors": [
+   "Josef Martiňák"
+   ]
+   },
+   "articleindex-desc": "{{desc}}",
+   "articleindex-next": "Navigation text button - next occurrence of 
tagged word",
+   "articleindex-prev": "Navigation text button - previous occurrence of 
tagged word",
+   "articleindex-index": "Navigation text button - jump to the index"
 }
diff --git a/package.json b/package.json
index ec97d7b..120bfaa 100644
--- a/package.json
+++ b/package.json
@@ -1,12 +1,12 @@
 {
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "0.4.5",
-"grunt-cli": "0.1.13",
-"grunt-banana-checker": "0.4.0",
-"grunt-contrib-jshint": "1.0.0",
-"grunt-jsonlint": "1.0.7"
-  }
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "0.4.5",
+   "grunt-cli": "0.1.13",
+   "grunt-banana-checker": "0.4.0",
+   "grunt-contrib-jshint": "1.0.0",
+   "grunt-jsonlint": "1.0.7"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345894
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I2fd769aad1b4f08750f08bc8780b0f4e0eecdf4f
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/ArticleIndex
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 
Gerrit-Reviewer: Reedy 
Gerrit-Reviewer: Siebrand 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...AccessControl[master]: Use tabs to indent in json

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345892 )

Change subject: Use tabs to indent in json
..


Use tabs to indent in json

Change-Id: I6eefbb0b6d04d301553c4ee0982519b57c11dcef
---
M i18n/ms.json
M i18n/te.json
M i18n/tl.json
M package.json
4 files changed, 29 insertions(+), 29 deletions(-)

Approvals:
  Reedy: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/ms.json b/i18n/ms.json
index a06ba1c..068be9d 100644
--- a/i18n/ms.json
+++ b/i18n/ms.json
@@ -1,9 +1,9 @@
 {
-"@metadata": {
-"authors": [
-"Tedbundyjr"
-]
-},
-"accesscontrol-desc": "Membenarkan penghadan akses kumpulan pada laman 
berdasarkan basis pengguna",
-"accesscontrol-info": "Ini adalah laman lindungan."
+   "@metadata": {
+   "authors": [
+   "Tedbundyjr"
+   ]
+   },
+   "accesscontrol-desc": "Membenarkan penghadan akses kumpulan pada laman 
berdasarkan basis pengguna",
+   "accesscontrol-info": "Ini adalah laman lindungan."
 }
\ No newline at end of file
diff --git a/i18n/te.json b/i18n/te.json
index c60ccf0..7223a7c 100644
--- a/i18n/te.json
+++ b/i18n/te.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Veeven"
-]
-},
-"accesscontrol-info": "ఇది సంరక్షిత పేజీ!"
+   "@metadata": {
+   "authors": [
+   "Veeven"
+   ]
+   },
+   "accesscontrol-info": "ఇది సంరక్షిత పేజీ!"
 }
\ No newline at end of file
diff --git a/i18n/tl.json b/i18n/tl.json
index 0c33ced..bc10668 100644
--- a/i18n/tl.json
+++ b/i18n/tl.json
@@ -1,9 +1,9 @@
 {
-"@metadata": {
-"authors": [
-"AnakngAraw"
-]
-},
-"accesscontrol-desc": "Nagpapagana ng pagbabawal sa pagpunta ng pangkat sa 
isang pahina ayon sa pinagbabatayang tagagamit",
-"accesscontrol-info": "Ito ay isang pahinang pinuprutektahan!"
+   "@metadata": {
+   "authors": [
+   "AnakngAraw"
+   ]
+   },
+   "accesscontrol-desc": "Nagpapagana ng pagbabawal sa pagpunta ng pangkat 
sa isang pahina ayon sa pinagbabatayang tagagamit",
+   "accesscontrol-info": "Ito ay isang pahinang pinuprutektahan!"
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index 41cecca..ced56ab 100644
--- a/package.json
+++ b/package.json
@@ -1,11 +1,11 @@
 {
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "0.4.5",
-"grunt-cli": "0.1.13",
-"grunt-banana-checker": "0.4.0",
-"grunt-jsonlint": "1.0.7"
-  }
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "0.4.5",
+   "grunt-cli": "0.1.13",
+   "grunt-banana-checker": "0.4.0",
+   "grunt-jsonlint": "1.0.7"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345892
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I6eefbb0b6d04d301553c4ee0982519b57c11dcef
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/AccessControl
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 
Gerrit-Reviewer: Reedy 
Gerrit-Reviewer: Siebrand 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki/core[master]: FauxRequest: Complete code coverage for FauxRequestTest

2017-03-31 Thread Krinkle (Code Review)
Krinkle has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345952 )

Change subject: FauxRequest: Complete code coverage for FauxRequestTest
..

FauxRequest: Complete code coverage for FauxRequestTest

* Add missing case of $session being a Session object.

Change-Id: I7da0c6d4a6483d53bcfd56751cd1cb669bd5023e
---
M tests/phpunit/includes/FauxRequestTest.php
1 file changed, 13 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/52/345952/1

diff --git a/tests/phpunit/includes/FauxRequestTest.php 
b/tests/phpunit/includes/FauxRequestTest.php
index e3713ab..9fe694d 100644
--- a/tests/phpunit/includes/FauxRequestTest.php
+++ b/tests/phpunit/includes/FauxRequestTest.php
@@ -1,5 +1,7 @@
 getEmptySession( new 
FauxRequest( [] ) );
+   $this->assertInstanceOf(
+   FauxRequest::class,
+   new FauxRequest( [], false, $session )
+   );
+   }
+
+   /**
 * @covers FauxRequest::getText
 */
public function testGetText() {

-- 
To view, visit https://gerrit.wikimedia.org/r/345952
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I7da0c6d4a6483d53bcfd56751cd1cb669bd5023e
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Krinkle 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki/core[master]: Html: Add a few @covers for HtmlTest

2017-03-31 Thread Krinkle (Code Review)
Krinkle has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345951 )

Change subject: Html: Add a few @covers for HtmlTest
..

Html: Add a few @covers for HtmlTest

Change-Id: I0804e87ebc732d7adf082915af6d137f82f310b6
---
M tests/phpunit/includes/HtmlTest.php
1 file changed, 4 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/51/345951/1

diff --git a/tests/phpunit/includes/HtmlTest.php 
b/tests/phpunit/includes/HtmlTest.php
index b7249e5..115a8cf 100644
--- a/tests/phpunit/includes/HtmlTest.php
+++ b/tests/phpunit/includes/HtmlTest.php
@@ -41,6 +41,9 @@
 
/**
 * @covers Html::element
+* @covers Html::rawElement
+* @covers Html::openElement
+* @covers Html::closeElement
 */
public function testElementBasics() {
$this->assertEquals(
@@ -302,6 +305,7 @@
 
/**
 * @covers Html::namespaceSelector
+* @covers Html::namespaceSelectorOptions
 */
public function testNamespaceSelector() {
$this->assertEquals(

-- 
To view, visit https://gerrit.wikimedia.org/r/345951
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I0804e87ebc732d7adf082915af6d137f82f310b6
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Krinkle 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki/core[master]: ObjectFactory: Complete code coverage for ObjectFactoryTest

2017-03-31 Thread Krinkle (Code Review)
Krinkle has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345950 )

Change subject: ObjectFactory: Complete code coverage for ObjectFactoryTest
..

ObjectFactory: Complete code coverage for ObjectFactoryTest

Cover missing case of expandClosures() where the array contains
both a closure and a non-closure.

Change-Id: I30ea8cf3fb909a499a95bf9bd24792f4dd6b5c64
---
M tests/phpunit/includes/libs/ObjectFactoryTest.php
1 file changed, 20 insertions(+), 12 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/50/345950/1

diff --git a/tests/phpunit/includes/libs/ObjectFactoryTest.php 
b/tests/phpunit/includes/libs/ObjectFactoryTest.php
index f8dda6f..3e0a61e 100644
--- a/tests/phpunit/includes/libs/ObjectFactoryTest.php
+++ b/tests/phpunit/includes/libs/ObjectFactoryTest.php
@@ -26,20 +26,24 @@
public function testClosureExpansionDisabled() {
$obj = ObjectFactory::getObjectFromSpec( [
'class' => 'ObjectFactoryTestFixture',
-   'args' => [ function() {
-   return 'unwrapped';
-   }, ],
+   'args' => [
+   function() {
+   return 'wrapped';
+   },
+   'unwrapped',
+   ],
'calls' => [
'setter' => [ function() {
-   return 'unwrapped';
+   return 'wrapped';
}, ],
],
'closure_expansion' => false,
] );
$this->assertInstanceOf( 'Closure', $obj->args[0] );
-   $this->assertSame( 'unwrapped', $obj->args[0]() );
+   $this->assertSame( 'wrapped', $obj->args[0]() );
+   $this->assertSame( 'unwrapped', $obj->args[1] );
$this->assertInstanceOf( 'Closure', $obj->setterArgs[0] );
-   $this->assertSame( 'unwrapped', $obj->setterArgs[0]() );
+   $this->assertSame( 'wrapped', $obj->setterArgs[0]() );
}
 
/**
@@ -49,20 +53,24 @@
public function testClosureExpansionEnabled() {
$obj = ObjectFactory::getObjectFromSpec( [
'class' => 'ObjectFactoryTestFixture',
-   'args' => [ function() {
-   return 'unwrapped';
-   }, ],
+   'args' => [
+   function() {
+   return 'wrapped';
+   },
+   'unwrapped',
+   ],
'calls' => [
'setter' => [ function() {
-   return 'unwrapped';
+   return 'wrapped';
}, ],
],
'closure_expansion' => true,
] );
$this->assertInternalType( 'string', $obj->args[0] );
-   $this->assertSame( 'unwrapped', $obj->args[0] );
+   $this->assertSame( 'wrapped', $obj->args[0] );
+   $this->assertSame( 'unwrapped', $obj->args[1] );
$this->assertInternalType( 'string', $obj->setterArgs[0] );
-   $this->assertSame( 'unwrapped', $obj->setterArgs[0] );
+   $this->assertSame( 'wrapped', $obj->setterArgs[0] );
 
$obj = ObjectFactory::getObjectFromSpec( [
'class' => 'ObjectFactoryTestFixture',

-- 
To view, visit https://gerrit.wikimedia.org/r/345950
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I30ea8cf3fb909a499a95bf9bd24792f4dd6b5c64
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Krinkle 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki/core[master]: objectcache: Complete code coverage for HashBagOStuff

2017-03-31 Thread Krinkle (Code Review)
Krinkle has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345949 )

Change subject: objectcache: Complete code coverage for HashBagOStuff
..

objectcache: Complete code coverage for HashBagOStuff

Change-Id: I06cb9778df8239706bf82c0c39cccb419eade4b2
---
M tests/phpunit/includes/libs/objectcache/HashBagOStuffTest.php
1 file changed, 34 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/49/345949/1

diff --git a/tests/phpunit/includes/libs/objectcache/HashBagOStuffTest.php 
b/tests/phpunit/includes/libs/objectcache/HashBagOStuffTest.php
index c4db0cf..f44baeb 100644
--- a/tests/phpunit/includes/libs/objectcache/HashBagOStuffTest.php
+++ b/tests/phpunit/includes/libs/objectcache/HashBagOStuffTest.php
@@ -6,6 +6,40 @@
 class HashBagOStuffTest extends PHPUnit_Framework_TestCase {
 
/**
+* @covers HashBagOStuff::__construct
+*/
+   public function testConstruct() {
+   $this->assertInstanceOf(
+   HashBagOStuff::class,
+   new HashBagOStuff()
+   );
+   }
+
+   /**
+* @covers HashBagOStuff::__construct
+* @expectedException InvalidArgumentException
+*/
+   public function testConstructBadZero() {
+   $cache = new HashBagOStuff( [ 'maxKeys' => 0 ] );
+   }
+
+   /**
+* @covers HashBagOStuff::__construct
+* @expectedException InvalidArgumentException
+*/
+   public function testConstructBadNeg() {
+   $cache = new HashBagOStuff( [ 'maxKeys' => -1 ] );
+   }
+
+   /**
+* @covers HashBagOStuff::__construct
+* @expectedException InvalidArgumentException
+*/
+   public function testConstructBadType() {
+   $cache = new HashBagOStuff( [ 'maxKeys' => 'x' ] );
+   }
+
+   /**
 * @covers HashBagOStuff::delete
 */
public function testDelete() {
@@ -56,7 +90,6 @@
/**
 * Ensure maxKeys eviction prefers keeping new keys.
 *
-* @covers HashBagOStuff::__construct
 * @covers HashBagOStuff::set
 */
public function testEvictionAdd() {
@@ -76,7 +109,6 @@
 * Ensure maxKeys eviction prefers recently set keys
 * even if the keys pre-exist.
 *
-* @covers HashBagOStuff::__construct
 * @covers HashBagOStuff::set
 */
public function testEvictionSet() {
@@ -102,7 +134,6 @@
/**
 * Ensure maxKeys eviction prefers recently retrieved keys (LRU).
 *
-* @covers HashBagOStuff::__construct
 * @covers HashBagOStuff::doGet
 * @covers HashBagOStuff::hasKey
 */

-- 
To view, visit https://gerrit.wikimedia.org/r/345949
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I06cb9778df8239706bf82c0c39cccb419eade4b2
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Krinkle 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki/core[master]: resourceloader: Complete code coverage for MessageBlobStore

2017-03-31 Thread Krinkle (Code Review)
Krinkle has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345948 )

Change subject: resourceloader: Complete code coverage for MessageBlobStore
..

resourceloader: Complete code coverage for MessageBlobStore

Change-Id: I6269843ed51c67bf2d300eb58a613122ffdae740
---
M includes/cache/MessageBlobStore.php
M tests/phpunit/includes/resourceloader/MessageBlobStoreTest.php
2 files changed, 42 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/48/345948/1

diff --git a/includes/cache/MessageBlobStore.php 
b/includes/cache/MessageBlobStore.php
index 5d48c03..14baeeb 100644
--- a/includes/cache/MessageBlobStore.php
+++ b/includes/cache/MessageBlobStore.php
@@ -238,6 +238,7 @@
}
 
$json = FormatJson::encode( (object)$messages );
+   // @codeCoverageIgnoreStart
if ( $json === false ) {
$this->logger->warning( 'Failed to encode message blob 
for {module} ({lang})', [
'module' => $module->getName(),
@@ -245,6 +246,7 @@
] );
$json = '{}';
}
+   // codeCoverageIgnoreEnd
return $json;
}
 }
diff --git a/tests/phpunit/includes/resourceloader/MessageBlobStoreTest.php 
b/tests/phpunit/includes/resourceloader/MessageBlobStoreTest.php
index bf80845..29e1863 100644
--- a/tests/phpunit/includes/resourceloader/MessageBlobStoreTest.php
+++ b/tests/phpunit/includes/resourceloader/MessageBlobStoreTest.php
@@ -44,6 +44,46 @@
return $module;
}
 
+   /** @covers MessageBlobStore::setLogger */
+   public function testSetLogger() {
+   $blobStore = $this->makeBlobStore();
+   $this->assertSame( null, $blobStore->setLogger( new 
Psr\Log\NullLogger() ) );
+   }
+
+   /** @covers MessageBlobStore::getResourceLoader */
+   public function testGetResourceLoader() {
+   // Call protected method
+   $blobStore = TestingAccessWrapper::newFromObject( 
$this->makeBlobStore() );
+   $this->assertInstanceOf(
+   ResourceLoader::class,
+   $blobStore->getResourceLoader()
+   );
+   }
+
+   /** @covers MessageBlobStore::fetchMessage */
+   public function testFetchMessage() {
+   $module = $this->makeModule( [ 'mainpage' ] );
+   $rl = new ResourceLoader();
+   $rl->register( $module->getName(), $module );
+
+   $blobStore = $this->makeBlobStore( null, $rl );
+   $blob = $blobStore->getBlob( $module, 'en' );
+
+   $this->assertEquals( '{"mainpage":"Main Page"}', $blob, 
'Generated blob' );
+   }
+
+   /** @covers MessageBlobStore::fetchMessage */
+   public function testFetchMessageFail() {
+   $module = $this->makeModule( [ 'i-dont-exist' ] );
+   $rl = new ResourceLoader();
+   $rl->register( $module->getName(), $module );
+
+   $blobStore = $this->makeBlobStore( null, $rl );
+   $blob = $blobStore->getBlob( $module, 'en' );
+
+   $this->assertEquals( 
'{"i-dont-exist":"\u29fci-dont-exist\u29fd"}', $blob, 'Generated blob' );
+   }
+
public function testGetBlob() {
$module = $this->makeModule( [ 'foo' ] );
$rl = new ResourceLoader();

-- 
To view, visit https://gerrit.wikimedia.org/r/345948
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I6269843ed51c67bf2d300eb58a613122ffdae740
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Krinkle 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...PerformanceInspector[master]: Center only buttons and not text in tables

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345289 )

Change subject: Center only buttons and not text in tables
..


Center only buttons and not text in tables

Centering all the texts makes me seasick. It could be that we should
center some text content but start with have them all to the left
and just the button centered.

Also added prefix on details CSS class.

Change-Id: Ic5117383dee030dfe5443d2b2d6aedda0ad780d3
---
M modules/css/ext.PerformanceInspector.css
M modules/templates/modulescss.mustache
2 files changed, 10 insertions(+), 7 deletions(-)

Approvals:
  Krinkle: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/modules/css/ext.PerformanceInspector.css 
b/modules/css/ext.PerformanceInspector.css
index 559c3fc..0eca3f9 100644
--- a/modules/css/ext.PerformanceInspector.css
+++ b/modules/css/ext.PerformanceInspector.css
@@ -51,7 +51,7 @@
 
 table.mw-pi-inspector {
   vertical-align: middle;
-  text-align: center;
+  text-align: left;
   width: 100%;
 }
 
@@ -62,7 +62,10 @@
 padding: 0.5em;
 }
 
-td.details {
+td.mw-pi-details {
   vertical-align: top;
-  text-align: left;
+}
+
+td.mw-pi-center {
+  text-align: center;
 }
diff --git a/modules/templates/modulescss.mustache 
b/modules/templates/modulescss.mustache
index 52a20f0..9f4c3ab 100644
--- a/modules/templates/modulescss.mustache
+++ b/modules/templates/modulescss.mustache
@@ -23,12 +23,12 @@

{{selectors}}

-   
+   




-   
+   
{{#unmatchedSelectors}}
{{.}}
{{/unmatchedSelectors}}
@@ -59,12 +59,12 @@

{{selectors}}

-   
+   




-   
+   
{{#unmatchedSelectors}}
{{.}}
{{/unmatchedSelectors}}

-- 
To view, visit https://gerrit.wikimedia.org/r/345289
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ic5117383dee030dfe5443d2b2d6aedda0ad780d3
Gerrit-PatchSet: 2
Gerrit-Project: mediawiki/extensions/PerformanceInspector
Gerrit-Branch: master
Gerrit-Owner: Phedenskog 
Gerrit-Reviewer: Krinkle 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki/core[master]: objectcache: Never use CACHE_NONE for CACHE_ANYTHING

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/342959 )

Change subject: objectcache: Never use CACHE_NONE for CACHE_ANYTHING
..


objectcache: Never use CACHE_NONE for CACHE_ANYTHING

If $wgMainCacheType = CACHE_ACCEL, but there is no APC, then its
possible that CACHE_ANYTHING will default to CACHE_NONE because
that's what CACHE_ACCEL would do.

Possibly also T147161

Bug: T160519
Change-Id: I9ac2d071437b35a0f9cd3678e2279628f7b1931e
---
M includes/objectcache/ObjectCache.php
A tests/phpunit/includes/objectcache/ObjectCacheTest.php
2 files changed, 89 insertions(+), 1 deletion(-)

Approvals:
  Krinkle: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/includes/objectcache/ObjectCache.php 
b/includes/objectcache/ObjectCache.php
index cf9033b..3370e5b 100644
--- a/includes/objectcache/ObjectCache.php
+++ b/includes/objectcache/ObjectCache.php
@@ -246,8 +246,14 @@
global $wgMainCacheType, $wgMessageCacheType, 
$wgParserCacheType;
$candidates = [ $wgMainCacheType, $wgMessageCacheType, 
$wgParserCacheType ];
foreach ( $candidates as $candidate ) {
+   $cache = false;
if ( $candidate !== CACHE_NONE && $candidate !== 
CACHE_ANYTHING ) {
-   return self::getInstance( $candidate );
+   $cache = self::getInstance( $candidate );
+   // CACHE_ACCEL might default to nothing if no 
APCu
+   // See includes/ServiceWiring.php
+   if ( !( $cache instanceof EmptyBagOStuff ) ) {
+   return $cache;
+   }
}
}
 
diff --git a/tests/phpunit/includes/objectcache/ObjectCacheTest.php 
b/tests/phpunit/includes/objectcache/ObjectCacheTest.php
new file mode 100644
index 000..d132183
--- /dev/null
+++ b/tests/phpunit/includes/objectcache/ObjectCacheTest.php
@@ -0,0 +1,82 @@
+setCacheConfig();
+   $this->setMwGlobals( [
+   'wgMainCacheType' => CACHE_NONE,
+   'wgMessageCacheType' => CACHE_NONE,
+   'wgParserCacheType' => CACHE_NONE,
+   ] );
+   }
+
+   private function setCacheConfig( $arr = [] ) {
+   $defaults = [
+   CACHE_NONE => [ 'class' => 'EmptyBagOStuff' ],
+   CACHE_DB => [ 'class' => 'SqlBagOStuff' ],
+   CACHE_ANYTHING => [ 'factory' => 
'ObjectCache::newAnything' ],
+   // Mock ACCEL with 'hash' as being installed.
+   // This makes tests deterministic regardless of APC.
+   CACHE_ACCEL => [ 'class' => 'HashBagOStuff' ],
+   'hash' => [ 'class' => 'HashBagOStuff' ],
+   ];
+   $this->setMwGlobals( 'wgObjectCaches', $arr + $defaults );
+   }
+
+   /** @covers ObjectCache::newAnything */
+   public function testNewAnythingNothing() {
+   $this->assertInstanceOf(
+   SqlBagOStuff::class,
+   ObjectCache::newAnything( [] ),
+   'No available types. Fallback to DB'
+   );
+   }
+
+   /** @covers ObjectCache::newAnything */
+   public function testNewAnythingHash() {
+   $this->setMwGlobals( [
+   'wgMainCacheType' => 'hash'
+   ] );
+
+   $this->assertInstanceOf(
+   HashBagOStuff::class,
+   ObjectCache::newAnything( [] ),
+   'Use an available type (hash)'
+   );
+   }
+
+   /** @covers ObjectCache::newAnything */
+   public function testNewAnythingAccel() {
+   $this->setMwGlobals( [
+   'wgMainCacheType' => CACHE_ACCEL
+   ] );
+
+   $this->assertInstanceOf(
+   HashBagOStuff::class,
+   ObjectCache::newAnything( [] ),
+   'Use an available type (CACHE_ACCEL)'
+   );
+   }
+
+   /** @covers ObjectCache::newAnything */
+   public function txestNewAnythingNoAccel() {
+   $this->setMwGlobals( [
+   'wgMainCacheType' => CACHE_ACCEL
+   ] );
+
+   $this->setCacheConfig( [
+   // Mock APC not being installed (T160519, T147161)
+   CACHE_ACCEL => [ 'class' => 'EmptyBagOStuff' ]
+   ] );
+
+   $this->assertInstanceOf(
+   SqlBagOStuff::class,
+   ObjectCache::newAnything( [] ),
+   'Fallback to DB if available types fall back to Empty'
+   

[MediaWiki-commits] [Gerrit] mediawiki/core[master]: ResourceLoaderModuleTest: Exchange expected and actual param...

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345833 )

Change subject: ResourceLoaderModuleTest: Exchange expected and actual parameter
..


ResourceLoaderModuleTest: Exchange expected and actual parameter

For assertEquals of PHPUnit the first parameter is $expected and the second
parameter is $actual.
https://phpunit.de/manual/current/en/appendixes.assertions.html#appendixes.assertions.assertEquals

Change-Id: Iad4b37ee74a03aa00f2dc14d3c474796b3191b51
---
M tests/phpunit/includes/resourceloader/ResourceLoaderModuleTest.php
1 file changed, 4 insertions(+), 4 deletions(-)

Approvals:
  Krinkle: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/tests/phpunit/includes/resourceloader/ResourceLoaderModuleTest.php 
b/tests/phpunit/includes/resourceloader/ResourceLoaderModuleTest.php
index 6751f4d..17861d8 100644
--- a/tests/phpunit/includes/resourceloader/ResourceLoaderModuleTest.php
+++ b/tests/phpunit/includes/resourceloader/ResourceLoaderModuleTest.php
@@ -76,11 +76,11 @@
'script' => "var a = 'this is';\n {\ninvalid"
] );
$this->assertEquals(
-   $module->getScript( $context ),
'mw.log.error(' .
'"JavaScript parse error: Parse error: 
Unexpected token; ' .
'token } expected in file \'input\' on line 3"' 
.
');',
+   $module->getScript( $context ),
'Replace invalid syntax with error logging'
);
 
@@ -88,8 +88,8 @@
'script' => "\n'valid';"
] );
$this->assertEquals(
-   $module->getScript( $context ),
"\n'valid';",
+   $module->getScript( $context ),
'Leave valid scripts as-is'
);
}
@@ -120,13 +120,13 @@
'../skins/Example/images/quux.png',
];
$this->assertEquals(
-   $getRelativePaths->invoke( null, $raw ),
$canonical,
+   $getRelativePaths->invoke( null, $raw ),
'Insert placeholders'
);
$this->assertEquals(
-   $expandRelativePaths->invoke( null, $canonical ),
$raw,
+   $expandRelativePaths->invoke( null, $canonical ),
'Substitute placeholders'
);
}

-- 
To view, visit https://gerrit.wikimedia.org/r/345833
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Iad4b37ee74a03aa00f2dc14d3c474796b3191b51
Gerrit-PatchSet: 2
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Fomafix 
Gerrit-Reviewer: Fomafix 
Gerrit-Reviewer: Krinkle 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki/core[master]: changes: Remove assertTag from RCCacheEntryFactoryTest

2017-03-31 Thread Krinkle (Code Review)
Krinkle has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345947 )

Change subject: changes: Remove assertTag from RCCacheEntryFactoryTest
..

changes: Remove assertTag from RCCacheEntryFactoryTest

Use PHPUnit's Xml::load() to validate that all tags and attributes
are balanced.

Use simple assertEquals or assertRegexp for the specific parts.

Change-Id: I25796954a3bb9903e88256b8345ef751c767d7d5
---
M tests/phpunit/includes/changes/RCCacheEntryFactoryTest.php
1 file changed, 21 insertions(+), 47 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/47/345947/1

diff --git a/tests/phpunit/includes/changes/RCCacheEntryFactoryTest.php 
b/tests/phpunit/includes/changes/RCCacheEntryFactoryTest.php
index 4ff1eb8..9c6d57c 100644
--- a/tests/phpunit/includes/changes/RCCacheEntryFactoryTest.php
+++ b/tests/phpunit/includes/changes/RCCacheEntryFactoryTest.php
@@ -141,77 +141,51 @@
$this->assertEquals( 'prev', $cacheEntry->lastlink, 'pref link 
for delete log or rev' );
}
 
+   private function assertValidHTML( $actual ) {
+   // Throws if invalid
+   $doc = PHPUnit_Util_XML::load( $actual, /* isHtml */ true );
+   }
+
private function assertUserLinks( $user, $cacheEntry ) {
-   $this->assertTag(
-   [
-   'tag' => 'a',
-   'attributes' => [
-   'class' => 'new mw-userlink'
-   ],
-   'content' => $user
-   ],
+   $this->assertValidHTML( $cacheEntry->userlink );
+   $this->assertRegExp(
+   '#^' . $user . 
'#',
$cacheEntry->userlink,
'verify user link'
);
 
-   $this->assertTag(
-   [
-   'tag' => 'span',
-   'attributes' => [
-   'class' => 'mw-usertoollinks'
-   ],
-   'child' => [
-   'tag' => 'a',
-   'content' => 'talk',
-   ]
-   ],
+   $this->assertValidHTML( $cacheEntry->usertalklink );
+   $this->assertRegExp(
+   '#^ \(.*talk.*\)#',
$cacheEntry->usertalklink,
'verify user talk link'
);
 
-   $this->assertTag(
-   [
-   'tag' => 'span',
-   'attributes' => [
-   'class' => 'mw-usertoollinks'
-   ],
-   'child' => [
-   'tag' => 'a',
-   'content' => 'contribs',
-   ]
-   ],
+   $this->assertValidHTML( $cacheEntry->usertalklink );
+   $this->assertRegExp(
+   '#^ \(.*contribs.*\)$#',
$cacheEntry->usertalklink,
'verify user tool links'
);
}
 
private function assertDeleteLogLink( $cacheEntry ) {
-   $this->assertTag(
-   [
-   'tag' => 'a',
-   'attributes' => [
-   'href' => '/wiki/Special:Log/delete',
-   'title' => 'Special:Log/delete'
-   ],
-   'content' => 'Deletion log'
-   ],
+   $this->assertEquals(
+   '(Deletion log)',
$cacheEntry->link,
'verify deletion log link'
);
+
+   $this->assertValidHTML( $cacheEntry->link );
}
 
private function assertRevDel( $cacheEntry ) {
-   $this->assertTag(
-   [
-   'tag' => 'span',
-   'attributes' => [
-   'class' => 'history-deleted'
-   ],
-   'content' => '(username removed)'
-   ],
+   $this->assertEquals(
+   ' (username 
removed)',
$cacheEntry->userlink,
'verify user link for change with deleted revision and 
user'
);
+   $this->assertValidHTML( $cacheEntry->userlink );
}
 
private 

[MediaWiki-commits] [Gerrit] operations/puppet[production]: elasticsearch: remove precise support

2017-03-31 Thread Dzahn (Code Review)
Dzahn has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345552 )

Change subject: elasticsearch: remove precise support
..


elasticsearch: remove precise support

Remove support for Ubuntu precise, not used anymore.

Change-Id: If00d942fd0686badef5b5b6054c33b46eff17e89
---
M modules/elasticsearch/manifests/init.pp
M modules/elasticsearch/manifests/packages.pp
2 files changed, 11 insertions(+), 15 deletions(-)

Approvals:
  jenkins-bot: Verified
  Gehel: Looks good to me, but someone else must approve
  Dzahn: Looks good to me, approved



diff --git a/modules/elasticsearch/manifests/init.pp 
b/modules/elasticsearch/manifests/init.pp
index ff4f2c7..7c050b6 100644
--- a/modules/elasticsearch/manifests/init.pp
+++ b/modules/elasticsearch/manifests/init.pp
@@ -279,15 +279,13 @@
 ensure => absent,
 }
 
-# Cluster management tool, trusty only
-if os_version('ubuntu >= trusty || debian >= jessie') {
-file { '/usr/local/bin/es-tool':
-ensure  => file,
-owner   => 'root',
-group   => 'root',
-mode=> '0755',
-source  => 'puppet:///modules/elasticsearch/es-tool',
-require => [Package['python-elasticsearch'], 
Package['python-ipaddr']],
-}
+# Cluster management tool
+file { '/usr/local/bin/es-tool':
+ensure  => file,
+owner   => 'root',
+group   => 'root',
+mode=> '0755',
+source  => 'puppet:///modules/elasticsearch/es-tool',
+require => [Package['python-elasticsearch'], Package['python-ipaddr']],
 }
 }
diff --git a/modules/elasticsearch/manifests/packages.pp 
b/modules/elasticsearch/manifests/packages.pp
index 332d52e..feef8df 100644
--- a/modules/elasticsearch/manifests/packages.pp
+++ b/modules/elasticsearch/manifests/packages.pp
@@ -16,11 +16,9 @@
 
 require_package('curl')
 
-# library for elasticsearch. only in trusty+
-if os_version('ubuntu >= trusty || debian >= jessie') {
-require_package('python-elasticsearch')
-require_package('python-ipaddr')
-}
+# library for elasticsearch
+require_package('python-elasticsearch')
+require_package('python-ipaddr')
 
 ### install and link additional log4j appender to send logs over GELF
 

-- 
To view, visit https://gerrit.wikimedia.org/r/345552
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: If00d942fd0686badef5b5b6054c33b46eff17e89
Gerrit-PatchSet: 4
Gerrit-Project: operations/puppet
Gerrit-Branch: production
Gerrit-Owner: Faidon Liambotis 
Gerrit-Reviewer: Dzahn 
Gerrit-Reviewer: Gehel 
Gerrit-Reviewer: Giuseppe Lavagetto 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] operations/puppet[production]: puppetmaster: remove precise support

2017-03-31 Thread Dzahn (Code Review)
Dzahn has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345554 )

Change subject: puppetmaster: remove precise support
..


puppetmaster: remove precise support

Remove support for Ubuntu precise, not used anymore.

Change-Id: Ia70fa1a1c55b0caaa773e8b3cefee15c0a3db85d
---
M modules/puppetmaster/templates/passenger.conf.erb
1 file changed, 0 insertions(+), 5 deletions(-)

Approvals:
  jenkins-bot: Verified
  Dzahn: Looks good to me, approved



diff --git a/modules/puppetmaster/templates/passenger.conf.erb 
b/modules/puppetmaster/templates/passenger.conf.erb
index dada864..5cd48b3 100644
--- a/modules/puppetmaster/templates/passenger.conf.erb
+++ b/modules/puppetmaster/templates/passenger.conf.erb
@@ -6,8 +6,3 @@
 PassengerPoolIdleTime 1500
 PassengerMaxRequests 2000
 PassengerStatThrottleRate 120
-<% if scope.function_os_version(['debian < jessie || ubuntu < trusty']) %>
-RackAutoDetect Off
-RailsAutoDetect Off
-PassengerUseGlobalQueue on
-<% end %>

-- 
To view, visit https://gerrit.wikimedia.org/r/345554
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ia70fa1a1c55b0caaa773e8b3cefee15c0a3db85d
Gerrit-PatchSet: 4
Gerrit-Project: operations/puppet
Gerrit-Branch: production
Gerrit-Owner: Faidon Liambotis 
Gerrit-Reviewer: Dzahn 
Gerrit-Reviewer: Giuseppe Lavagetto 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] operations/puppet[production]: dataset: Capitalizing the words dumps and images.

2017-03-31 Thread Dzahn (Code Review)
Dzahn has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345795 )

Change subject: dataset: Capitalizing the words dumps and images.
..


dataset: Capitalizing the words dumps and images.

Change-Id: I57eb7729e8266921b7d6e04cd7d237619c88433a
---
M modules/dataset/files/html/public_mirrors.html
1 file changed, 3 insertions(+), 3 deletions(-)

Approvals:
  jenkins-bot: Verified
  Dzahn: Looks good to me, approved



diff --git a/modules/dataset/files/html/public_mirrors.html 
b/modules/dataset/files/html/public_mirrors.html
index c71226b..22212d1 100644
--- a/modules/dataset/files/html/public_mirrors.html
+++ b/modules/dataset/files/html/public_mirrors.html
@@ -12,7 +12,7 @@
 
  Mirrors of XML dumps, images and other data
 
- 
+ 

  
Site
@@ -82,11 +82,11 @@
All XML dumps and pagecount stats, current images
  
  
-   dumps:
+   Dumps:
http://dumps.wikimedia.your.org/;>http://dumps.wikimedia.your.org/
ftp://ftpmirror.your.org/pub/wikimedia/dumps/;>ftp://ftpmirror.your.org/pub/wikimedia/dumps/
rsync://ftpmirror.your.org/wikimedia-dumps/
-   images:
+   Images:
http://ftpmirror.your.org/pub/wikimedia/images/;>http://ftpmirror.your.org/pub/wikimedia/images/
ftp://ftpmirror.your.org/pub/wikimedia/images/;>ftp://ftpmirror.your.org/pub/wikimedia/images/
rsync://ftpmirror.your.org/wikimedia-images/

-- 
To view, visit https://gerrit.wikimedia.org/r/345795
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I57eb7729e8266921b7d6e04cd7d237619c88433a
Gerrit-PatchSet: 4
Gerrit-Project: operations/puppet
Gerrit-Branch: production
Gerrit-Owner: Felipe L. Ewald 
Gerrit-Reviewer: ArielGlenn 
Gerrit-Reviewer: Dzahn 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki/core[master]: [WIP] phpunit: Make deprecated assertTag() work in PHPUnit 5

2017-03-31 Thread Krinkle (Code Review)
Krinkle has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345946 )

Change subject: [WIP] phpunit: Make deprecated assertTag() work in PHPUnit 5
..

[WIP] phpunit: Make deprecated assertTag() work in PHPUnit 5

The underlying findNodes() method was removed in PHPUnit 5.

Change-Id: I347bc89aaf27bbe54cd9697096f3ea1f85b228d7
---
M tests/phpunit/MediaWikiTestCase.php
M tests/phpunit/includes/libs/CSSMinTest.php
2 files changed, 338 insertions(+), 497 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/46/345946/1

diff --git a/tests/phpunit/MediaWikiTestCase.php 
b/tests/phpunit/MediaWikiTestCase.php
index dcdad1a..cb0cf7f 100644
--- a/tests/phpunit/MediaWikiTestCase.php
+++ b/tests/phpunit/MediaWikiTestCase.php
@@ -1777,9 +1777,341 @@
 */
private static function tagMatch( $matcher, $actual, $isHtml = true ) {
$dom = PHPUnit_Util_XML::load( $actual, $isHtml );
-   $tags = PHPUnit_Util_XML::findNodes( $dom, $matcher, $isHtml );
+   // In PHPUnit 4.8, we'd use PHPUnit_Util_XML::findNodes(), but 
that
+   // was removed in PHPUnit 5.0. There is no good replacement as 
of yet
+   // and we still have some uses of the deprecated assertTag() 
method.
+   $tags = $this->tagFindNodes( $dom, $matcher, $isHtml );
return count( $tags ) > 0 && $tags[0] instanceof DOMNode;
}
+   /**
+* Based on PHPUnit 4.8 PHPUnit_Util_XML::findNodes
+*
+* @param DOMDocument $dom
+* @param array $options
+* @param boolean $isHtml
+* @return array
+*/
+   private static function tagFindNodes(DOMDocument $dom, array $options, 
$isHtml = true) {
+   $valid = array(
+ 'id', 'class', 'tag', 'content', 'attributes', 'parent',
+ 'child', 'ancestor', 'descendant', 'children', 
'adjacent-sibling'
+   );
+   $filtered = array();
+   // Based on PHPUnit_Util_XML::assertValidKeys
+   foreach ( $options as $key => $value ) {
+   if ( !in_array( $key, $valid ) ) {
+   throw new PHPUnit_Framework_Exception( "Unknown 
key: $key" );
+   }
+   }
+   foreach ( $valid as $key ) {
+   if ( !isset( $options[ $key ] ) ) {
+   $options[ $key ] = null;
+   }
+   }
+   // find the element by id
+   if ($options['id']) {
+   $options['attributes']['id'] = $options['id'];
+   }
+   if ($options['class']) {
+   $options['attributes']['class'] = $options['class'];
+   }
+   $nodes = array();
+   // find the element by a tag type
+   if ($options['tag']) {
+   if ($isHtml) {
+   $elements = 
self::getElementsByCaseInsensitiveTagName(
+   $dom,
+   $options['tag']
+   );
+   } else {
+   $elements = 
$dom->getElementsByTagName($options['tag']);
+   }
+   foreach ($elements as $element) {
+   $nodes[] = $element;
+   }
+   if (empty($nodes)) {
+   return false;
+   }
+   } // no tag selected, get them all
+   else {
+   $tags = array(
+ 'a', 'abbr', 'acronym', 'address', 'area', 'b', 
'base', 'bdo',
+ 'big', 'blockquote', 'body', 'br', 'button', 
'caption', 'cite',
+ 'code', 'col', 'colgroup', 'dd', 'del', 'div', 'dfn', 
'dl',
+ 'dt', 'em', 'fieldset', 'form', 'frame', 'frameset', 
'h1', 'h2',
+ 'h3', 'h4', 'h5', 'h6', 'head', 'hr', 'html', 'i', 
'iframe',
+ 'img', 'input', 'ins', 'kbd', 'label', 'legend', 
'li', 'link',
+ 'map', 'meta', 'noframes', 'noscript', 'object', 
'ol', 'optgroup',
+ 'option', 'p', 'param', 'pre', 'q', 'samp', 'script', 
'select',
+ 'small', 'span', 'strong', 'style', 'sub', 'sup', 
'table',
+ 'tbody', 'td', 'textarea', 'tfoot', 'th', 'thead', 
'title',
+ 'tr', 'tt', 'ul', 'var',
+ // HTML5
+ 'article', 'aside', 'audio', 'bdi', 'canvas', 
'command',
+ 'datalist', 'details', 'dialog', 'embed', 'figure', 
'figcaption',
+  

[MediaWiki-commits] [Gerrit] mediawiki/core[master]: phpunit: Remove unused assertNotTag() method

2017-03-31 Thread Krinkle (Code Review)
Krinkle has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345945 )

Change subject: phpunit: Remove unused assertNotTag() method
..

phpunit: Remove unused assertNotTag() method

Deprecated since PHPUnit 4.2, we use PHPUnit 4.8 and would like
to be compatible with PHPUnit 5 which no longer has this method.

The current hack was only enough to avoid the deprecation warning,
the underlying logic in Xml::findNodes() was also removed in PHPUnit 5.

There are 3 uses of assertTag() in all Wikimedia Git. However
there are 0 of assertNotTag(), so let's start with removing that.

Follows-up 23ec64745c, dba0522f70, T71505.

Change-Id: I56b8f1f88124d69190938fc522ea75419e96c49c
---
M tests/phpunit/MediaWikiTestCase.php
1 file changed, 0 insertions(+), 15 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/45/345945/1

diff --git a/tests/phpunit/MediaWikiTestCase.php 
b/tests/phpunit/MediaWikiTestCase.php
index 419ff00..dcdad1a 100644
--- a/tests/phpunit/MediaWikiTestCase.php
+++ b/tests/phpunit/MediaWikiTestCase.php
@@ -1799,21 +1799,6 @@
}
 
/**
-* @see MediaWikiTestCase::assertTag
-* @deprecated
-*
-* @param array $matcher
-* @param string $actual
-* @param string $message
-* @param bool $isHtml
-*/
-   public static function assertNotTag( $matcher, $actual, $message = '', 
$isHtml = true ) {
-   // trigger_error(__METHOD__ . ' is deprecated', 
E_USER_DEPRECATED);
-
-   self::assertFalse( self::tagMatch( $matcher, $actual, $isHtml 
), $message );
-   }
-
-   /**
 * Used as a marker to prevent wfResetOutputBuffers from breaking 
PHPUnit.
 * @return string
 */

-- 
To view, visit https://gerrit.wikimedia.org/r/345945
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I56b8f1f88124d69190938fc522ea75419e96c49c
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Krinkle 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki/vagrant[master]: [cirrus] Set allow_nuke to true in extension config

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/340153 )

Change subject: [cirrus] Set allow_nuke to true in extension config
..


[cirrus] Set allow_nuke to true in extension config

A new setting protects against accidentally nuking indices. Set this
to true by default in vagrant. The indices used are often so small
that nuke+recreate is a trivial and common task.

Change-Id: I0a7a104a5ae7590b417dfb4810493aeefc774aa5
---
M puppet/modules/elasticsearch/templates/CirrusSearch.php.erb
1 file changed, 2 insertions(+), 0 deletions(-)

Approvals:
  BryanDavis: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/puppet/modules/elasticsearch/templates/CirrusSearch.php.erb 
b/puppet/modules/elasticsearch/templates/CirrusSearch.php.erb
index 20fadd2..519989a 100644
--- a/puppet/modules/elasticsearch/templates/CirrusSearch.php.erb
+++ b/puppet/modules/elasticsearch/templates/CirrusSearch.php.erb
@@ -3,6 +3,8 @@
 include_once 
"$IP/extensions/CirrusSearch/tests/jenkins/FullyFeaturedConfig.php";
 $wgCirrusSearchExtraIndexes[ NS_FILE ] = array( 'commonswiki_file' );
 
+$wgCirrusSearchDevelOptions['allow_nuke'] = true;
+
 $wgMWLoggerDefaultSpi['args'][0]['loggers']['CirrusSearchRequestSet'] = array(
'handlers' => array( 'kafka' ),
'processors' => array(),

-- 
To view, visit https://gerrit.wikimedia.org/r/340153
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I0a7a104a5ae7590b417dfb4810493aeefc774aa5
Gerrit-PatchSet: 3
Gerrit-Project: mediawiki/vagrant
Gerrit-Branch: master
Gerrit-Owner: EBernhardson 
Gerrit-Reviewer: BryanDavis 
Gerrit-Reviewer: DCausse 
Gerrit-Reviewer: Dduvall 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] operations/puppet[production]: Revert "parsoid-testing: add logrotate"

2017-03-31 Thread Dzahn (Code Review)
Dzahn has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345944 )

Change subject: Revert "parsoid-testing: add logrotate"
..


Revert "parsoid-testing: add logrotate"

This reverts commit f700788cbb97d5191566353f4e97d787af366604.

Change-Id: I079f64a9b9ad30f4ab6c3185c4e46a9f1db7a872
---
D modules/parsoid/files/parsoid_testing.logrotate.conf
M modules/role/manifests/parsoid/testing.pp
2 files changed, 0 insertions(+), 19 deletions(-)

Approvals:
  jenkins-bot: Verified
  Dzahn: Looks good to me, approved



diff --git a/modules/parsoid/files/parsoid_testing.logrotate.conf 
b/modules/parsoid/files/parsoid_testing.logrotate.conf
deleted file mode 100644
index e724dbe..000
--- a/modules/parsoid/files/parsoid_testing.logrotate.conf
+++ /dev/null
@@ -1,14 +0,0 @@
-#
-### THIS FILE IS MANAGED BY PUPPET
-### puppet:///modules/parsoid/parsoid_testing_logrotate
-#
-
-/srv/log/parsoid/main.log {
-daily
-compress
-delaycompress
-missingok
-notifempty
-rotate 7
-}
-
diff --git a/modules/role/manifests/parsoid/testing.pp 
b/modules/role/manifests/parsoid/testing.pp
index e37e572..c4fa9b4 100644
--- a/modules/role/manifests/parsoid/testing.pp
+++ b/modules/role/manifests/parsoid/testing.pp
@@ -52,11 +52,6 @@
 notify  => Service['nginx'],
 }
 
-logrotate::conf { 'parsoid_testing':
-ensure => 'present',
-source => 'puppet:///modules/parsoid/parsoid_testing.logrotate.conf',
-}
-
 ferm::service { 'nginx-parsoid-testing':
 proto  => 'tcp',
 port   => 8001,

-- 
To view, visit https://gerrit.wikimedia.org/r/345944
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I079f64a9b9ad30f4ab6c3185c4e46a9f1db7a872
Gerrit-PatchSet: 2
Gerrit-Project: operations/puppet
Gerrit-Branch: production
Gerrit-Owner: Dzahn 
Gerrit-Reviewer: Dzahn 
Gerrit-Reviewer: Giuseppe Lavagetto 
Gerrit-Reviewer: Mobrovac 
Gerrit-Reviewer: Subramanya Sastry 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] operations/puppet[production]: admin: add joewalsh to analytics-privatedata-users

2017-03-31 Thread Dzahn (Code Review)
Dzahn has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345398 )

Change subject: admin: add joewalsh to analytics-privatedata-users
..


admin: add joewalsh to analytics-privatedata-users

Bug: T161663
Change-Id: I0fe483a97b2ffee1f21099551e8a3c8ceb3d6d76
---
M modules/admin/data/data.yaml
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  jenkins-bot: Verified
  Dzahn: Looks good to me, approved



diff --git a/modules/admin/data/data.yaml b/modules/admin/data/data.yaml
index ac24a3c..f8601e2 100644
--- a/modules/admin/data/data.yaml
+++ b/modules/admin/data/data.yaml
@@ -240,7 +240,7 @@
   bmansurov, atgomez, amire80, kartik, pcoombe, foks, mpany, 
jsamra,
   jdlrobson, chelsyx, ovasileva, mtizzoni, panisson, paolotti, 
ciro,
   psinger, flemmerich, mkroetzsch, akrausetud, filippo, nschaaf, 
pmiazga, faidon,
-  zareen, piccardi, fdans, eevans, anomie, demon, ladsgroup, 
musikanimal]
+  zareen, piccardi, fdans, eevans, anomie, demon, ladsgroup, 
musikanimal, joewalsh]
   analytics-admins:
 gid: 732
 description: Admin access to analytics cluster.

-- 
To view, visit https://gerrit.wikimedia.org/r/345398
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I0fe483a97b2ffee1f21099551e8a3c8ceb3d6d76
Gerrit-PatchSet: 2
Gerrit-Project: operations/puppet
Gerrit-Branch: production
Gerrit-Owner: Dzahn 
Gerrit-Reviewer: Alex Monk 
Gerrit-Reviewer: Dzahn 
Gerrit-Reviewer: Giuseppe Lavagetto 
Gerrit-Reviewer: Muehlenhoff 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] operations/puppet[production]: Revert "parsoid-testing: add logrotate"

2017-03-31 Thread Dzahn (Code Review)
Hello Giuseppe Lavagetto, Subramanya Sastry, Mobrovac, jenkins-bot,

I'd like you to do a code review.  Please visit

https://gerrit.wikimedia.org/r/345944

to review the following change.


Change subject: Revert "parsoid-testing: add logrotate"
..

Revert "parsoid-testing: add logrotate"

This reverts commit f700788cbb97d5191566353f4e97d787af366604.

Change-Id: I079f64a9b9ad30f4ab6c3185c4e46a9f1db7a872
---
D modules/parsoid/files/parsoid_testing.logrotate.conf
M modules/role/manifests/parsoid/testing.pp
2 files changed, 0 insertions(+), 19 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/44/345944/1

diff --git a/modules/parsoid/files/parsoid_testing.logrotate.conf 
b/modules/parsoid/files/parsoid_testing.logrotate.conf
deleted file mode 100644
index e724dbe..000
--- a/modules/parsoid/files/parsoid_testing.logrotate.conf
+++ /dev/null
@@ -1,14 +0,0 @@
-#
-### THIS FILE IS MANAGED BY PUPPET
-### puppet:///modules/parsoid/parsoid_testing_logrotate
-#
-
-/srv/log/parsoid/main.log {
-daily
-compress
-delaycompress
-missingok
-notifempty
-rotate 7
-}
-
diff --git a/modules/role/manifests/parsoid/testing.pp 
b/modules/role/manifests/parsoid/testing.pp
index e37e572..c4fa9b4 100644
--- a/modules/role/manifests/parsoid/testing.pp
+++ b/modules/role/manifests/parsoid/testing.pp
@@ -52,11 +52,6 @@
 notify  => Service['nginx'],
 }
 
-logrotate::conf { 'parsoid_testing':
-ensure => 'present',
-source => 'puppet:///modules/parsoid/parsoid_testing.logrotate.conf',
-}
-
 ferm::service { 'nginx-parsoid-testing':
 proto  => 'tcp',
 port   => 8001,

-- 
To view, visit https://gerrit.wikimedia.org/r/345944
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I079f64a9b9ad30f4ab6c3185c4e46a9f1db7a872
Gerrit-PatchSet: 1
Gerrit-Project: operations/puppet
Gerrit-Branch: production
Gerrit-Owner: Dzahn 
Gerrit-Reviewer: Giuseppe Lavagetto 
Gerrit-Reviewer: Mobrovac 
Gerrit-Reviewer: Subramanya Sastry 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] IPSet[master]: tests: Complete code coverage to 100%

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345787 )

Change subject: tests: Complete code coverage to 100%
..


tests: Complete code coverage to 100%

* Add missing coverage for addCidr() errors.
* Add missing coverage for match() errors.
* Add misssing covers for addCidr() overlap case.
* Add ignore for implicit case outside 'while'.
  https://github.com/sebastianbergmann/php-code-coverage/issues/513

Change-Id: Iacb24774ba037dcf73902dee12d62aad9fd89ed0
---
M phpunit.xml.dist
M src/IPSet.php
M tests/IPSetTest.php
3 files changed, 55 insertions(+), 3 deletions(-)

Approvals:
  Aaron Schulz: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/phpunit.xml.dist b/phpunit.xml.dist
index a23ec7d..c882a8a 100644
--- a/phpunit.xml.dist
+++ b/phpunit.xml.dist
@@ -1,6 +1,7 @@
 
+   beStrictAboutOutputDuringTests="true"
+   convertErrorsToExceptions="true">


./tests
diff --git a/src/IPSet.php b/src/IPSet.php
index d8a417f..912f602 100644
--- a/src/IPSet.php
+++ b/src/IPSet.php
@@ -185,8 +185,8 @@
}
$node =& $node[$index];
++$curBit;
-   }
-   }
+   } // Unreachable outside 'while'
+   } // @codeCoverageIgnore
 
/**
 * Match an IP address against the set
diff --git a/tests/IPSetTest.php b/tests/IPSetTest.php
index 9494776..cc79ca3 100644
--- a/tests/IPSetTest.php
+++ b/tests/IPSetTest.php
@@ -258,6 +258,19 @@
'::::::fe02:0' 
=> false,
),
),
+   'overlap' => array(
+   array(
+   // @covers addCidr "already added a 
larger supernet"
+   '10.10.10.0/25',
+   '10.10.10.0/26',
+   ),
+   array(
+   '0.0.0.0' => false,
+   '10.10.10.0' => true,
+   '10.10.10.1' => true,
+   '255.255.255.255' => false,
+   ),
+   ),
);
foreach ( $testcases as $desc => $pairs ) {
$testcases[$desc] = array(
@@ -281,4 +294,42 @@
$this->assertEquals( $expected, $result, "Incorrect 
match() result for $ip in dataset $desc" );
}
}
+
+   public static function provideBadIPSets() {
+   return array(
+   'bad mask ipv4' => array( '0.0.0.0/33' ),
+   'bad mask ipv6' => array( '2620:0:861:1::/129' ),
+   'inet fail' => array( '0af.0af' ),
+   );
+   }
+
+   /**
+* @expectedException PHPUnit_Framework_Error_Warning
+* @dataProvider provideBadIPSets
+*/
+   public function testAddCidrWarning( $cidr ) {
+   // 1. Ignoring errors to reach the otherwise unreachable 
'return'.
+   //
https://github.com/sebastianbergmann/php-code-coverage/issues/513
+   // @codingStandardsIgnoreLine Generic.PHP.NoSilencedErrors
+   $ipset = @new IPSet( array( $cidr ) );
+   // 2. Catches error as exception
+   $ipset = new IPSet( array( $cidr ) );
+   }
+
+   public static function provideBadMatches() {
+   return array(
+   'inet fail' => array( '0af.0af', false ),
+   );
+   }
+
+   /**
+* @expectedException PHPUnit_Framework_Error_Warning
+* @dataProvider provideBadMatches
+*/
+   public function testMatchWarning( $ip, $expected ) {
+   $ipset = new IPSet( array() );
+   // @codingStandardsIgnoreLine Generic.PHP.NoSilencedErrors
+   $this->assertEquals( $expected, @$ipset->match( $ip ) );
+   $ipset->match( $ip );
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345787
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Iacb24774ba037dcf73902dee12d62aad9fd89ed0
Gerrit-PatchSet: 2
Gerrit-Project: IPSet
Gerrit-Branch: master
Gerrit-Owner: Krinkle 
Gerrit-Reviewer: Aaron Schulz 
Gerrit-Reviewer: Krinkle 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: Reedy 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org

[MediaWiki-commits] [Gerrit] IPSet[master]: tests: Set name for data provider data sets

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345786 )

Change subject: tests: Set name for data provider data sets
..


tests: Set name for data provider data sets

Move test names into array keys so that errors are reported as
"data set edge_cases" instead of "data set #3".
It also shows up in the coverage report, which makes things
easier to debug.

Change-Id: Ie377b2198c6408345fb78f3494543e14ede14b4a
---
M tests/IPSetTest.php
1 file changed, 14 insertions(+), 11 deletions(-)

Approvals:
  Aaron Schulz: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/tests/IPSetTest.php b/tests/IPSetTest.php
index d90a802..9494776 100644
--- a/tests/IPSetTest.php
+++ b/tests/IPSetTest.php
@@ -38,9 +38,8 @@
 * an array of IP => expected (boolean) result against the config 
dataset.
 */
public static function provideIPSets() {
-   return array(
-   array(
-   'old_list_subset',
+   $testcases = array(
+   'old_list_subset' => array(
array(
'208.80.152.162',
'10.64.0.123',
@@ -98,8 +97,7 @@
'2620:0:862:1:26b6:fdff:fef5:abb5' => 
false,
),
),
-   array(
-   'new_cidr_set',
+   'new_cidr_set' => array(
array(
'208.80.154.0/26',
'2620:0:861:1::/64',
@@ -145,8 +143,7 @@
'2620:0:862:102:10:20:0:113' => true,
),
),
-   array(
-   'empty_set',
+   'empty_set' => array(
array(),
array(
'0.0.0.0' => false,
@@ -168,8 +165,7 @@
'2620:0:862:102:10:20:0:113' => false,
),
),
-   array(
-   'edge_cases',
+   'edge_cases' => array(
array(
'0.0.0.0',
'255.255.255.255',
@@ -207,8 +203,7 @@
'10.10.11.0' => false,
),
),
-   array(
-   'exercise_optimizer',
+   'exercise_optimizer' => array(
array(

':::::::0/112',

'::::::fffe:0/112',
@@ -264,6 +259,14 @@
),
),
);
+   foreach ( $testcases as $desc => $pairs ) {
+   $testcases[$desc] = array(
+   $desc,
+   $pairs[0],
+   $pairs[1],
+   );
+   }
+   return $testcases;
}
 
/**

-- 
To view, visit https://gerrit.wikimedia.org/r/345786
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ie377b2198c6408345fb78f3494543e14ede14b4a
Gerrit-PatchSet: 1
Gerrit-Project: IPSet
Gerrit-Branch: master
Gerrit-Owner: Krinkle 
Gerrit-Reviewer: Aaron Schulz 
Gerrit-Reviewer: Reedy 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] IPSet[master]: build: Update PHPUnit 4.7 to 4.8

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345785 )

Change subject: build: Update PHPUnit 4.7 to 4.8
..


build: Update PHPUnit 4.7 to 4.8

* Adds forwards-compatibility for PHPUnit 6 interface.
* PHPUnit 5.x requires PHP 5.7+

Also add 'composer run cover' to make it easier to run locally
(instead of `./vendor/bin/phpunit --coverage-html coverage/`).

Change-Id: I089fc88e8b10cb9a48b94757457536a847048ed0
---
M composer.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  Aaron Schulz: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/composer.json b/composer.json
index 11207a2..6c39e69 100644
--- a/composer.json
+++ b/composer.json
@@ -19,7 +19,7 @@
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "0.9.2",
-   "phpunit/phpunit": "4.7.2",
+   "phpunit/phpunit": "^4.8",
"mediawiki/mediawiki-codesniffer": "0.5.1"
},
"scripts": {
@@ -27,6 +27,7 @@
"parallel-lint . --exclude vendor",
"phpunit $PHPUNIT_ARGS",
"phpcs -p"
-   ]
+   ],
+   "cover": "phpunit --coverage-html coverage/"
}
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345785
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I089fc88e8b10cb9a48b94757457536a847048ed0
Gerrit-PatchSet: 1
Gerrit-Project: IPSet
Gerrit-Branch: master
Gerrit-Owner: Krinkle 
Gerrit-Reviewer: Aaron Schulz 
Gerrit-Reviewer: Reedy 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] wikidata...gui[master]: Add Commons to the licensing terms.

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345943 )

Change subject: Add Commons to the licensing terms.
..


Add Commons to the licensing terms.

Change-Id: Idadae7724ccc73cdb0455c48f494bf048d65ba6b
---
M copyright.html
1 file changed, 2 insertions(+), 0 deletions(-)

Approvals:
  Smalyshev: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/copyright.html b/copyright.html
index 2077507..a58ef52 100644
--- a/copyright.html
+++ b/copyright.html
@@ -19,6 +19,8 @@
 
 This site provides information from https://www.wikidata.org/;>Wikidata, which is available under https://creativecommons.org/publicdomain/zero/1.0/;>Creative Commons CC0 
License. See more information in the https://wikimediafoundation.org/wiki/Terms_of_Use;>Terms of Use.
 
+It also includes information from https://commons.wikimedia.org/;>Wikimedia Commons, such as images, 
available under https://creativecommons.org/licenses/by-sa/3.0/;>CC-BY-SA. See more 
information in the https://commons.wikimedia.org/wiki/Commons:Reusing_content_outside_Wikimedia;>Commons
 reuse terms.
+
 Query data on this site may also include information for the following sources:
 
  http://labs.europeana.eu/api/linked-open-data-sparql-endpoint;>Europeana

-- 
To view, visit https://gerrit.wikimedia.org/r/345943
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Idadae7724ccc73cdb0455c48f494bf048d65ba6b
Gerrit-PatchSet: 1
Gerrit-Project: wikidata/query/gui
Gerrit-Branch: master
Gerrit-Owner: Smalyshev 
Gerrit-Reviewer: Jonas Kress (WMDE) 
Gerrit-Reviewer: Smalyshev 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] operations/puppet[production]: parsoid-testing: add logrotate

2017-03-31 Thread Dzahn (Code Review)
Dzahn has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345888 )

Change subject: parsoid-testing: add logrotate
..


parsoid-testing: add logrotate

Bug: T161920
Change-Id: Ia7bd1af992ed2290370529c14d06b301ecf21c10
---
A modules/parsoid/files/parsoid_testing.logrotate.conf
M modules/role/manifests/parsoid/testing.pp
2 files changed, 19 insertions(+), 0 deletions(-)

Approvals:
  jenkins-bot: Verified
  Dzahn: Looks good to me, approved



diff --git a/modules/parsoid/files/parsoid_testing.logrotate.conf 
b/modules/parsoid/files/parsoid_testing.logrotate.conf
new file mode 100644
index 000..e724dbe
--- /dev/null
+++ b/modules/parsoid/files/parsoid_testing.logrotate.conf
@@ -0,0 +1,14 @@
+#
+### THIS FILE IS MANAGED BY PUPPET
+### puppet:///modules/parsoid/parsoid_testing_logrotate
+#
+
+/srv/log/parsoid/main.log {
+daily
+compress
+delaycompress
+missingok
+notifempty
+rotate 7
+}
+
diff --git a/modules/role/manifests/parsoid/testing.pp 
b/modules/role/manifests/parsoid/testing.pp
index c4fa9b4..e37e572 100644
--- a/modules/role/manifests/parsoid/testing.pp
+++ b/modules/role/manifests/parsoid/testing.pp
@@ -52,6 +52,11 @@
 notify  => Service['nginx'],
 }
 
+logrotate::conf { 'parsoid_testing':
+ensure => 'present',
+source => 'puppet:///modules/parsoid/parsoid_testing.logrotate.conf',
+}
+
 ferm::service { 'nginx-parsoid-testing':
 proto  => 'tcp',
 port   => 8001,

-- 
To view, visit https://gerrit.wikimedia.org/r/345888
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ia7bd1af992ed2290370529c14d06b301ecf21c10
Gerrit-PatchSet: 3
Gerrit-Project: operations/puppet
Gerrit-Branch: production
Gerrit-Owner: Dzahn 
Gerrit-Reviewer: Dzahn 
Gerrit-Reviewer: Giuseppe Lavagetto 
Gerrit-Reviewer: Mobrovac 
Gerrit-Reviewer: Subramanya Sastry 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] wikidata...gui[master]: Add Commons to the licensing terms.

2017-03-31 Thread Smalyshev (Code Review)
Smalyshev has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345943 )

Change subject: Add Commons to the licensing terms.
..

Add Commons to the licensing terms.

Change-Id: Idadae7724ccc73cdb0455c48f494bf048d65ba6b
---
M copyright.html
1 file changed, 2 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/wikidata/query/gui 
refs/changes/43/345943/1

diff --git a/copyright.html b/copyright.html
index 2077507..a58ef52 100644
--- a/copyright.html
+++ b/copyright.html
@@ -19,6 +19,8 @@
 
 This site provides information from https://www.wikidata.org/;>Wikidata, which is available under https://creativecommons.org/publicdomain/zero/1.0/;>Creative Commons CC0 
License. See more information in the https://wikimediafoundation.org/wiki/Terms_of_Use;>Terms of Use.
 
+It also includes information from https://commons.wikimedia.org/;>Wikimedia Commons, such as images, 
available under https://creativecommons.org/licenses/by-sa/3.0/;>CC-BY-SA. See more 
information in the https://commons.wikimedia.org/wiki/Commons:Reusing_content_outside_Wikimedia;>Commons
 reuse terms.
+
 Query data on this site may also include information for the following sources:
 
  http://labs.europeana.eu/api/linked-open-data-sparql-endpoint;>Europeana

-- 
To view, visit https://gerrit.wikimedia.org/r/345943
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Idadae7724ccc73cdb0455c48f494bf048d65ba6b
Gerrit-PatchSet: 1
Gerrit-Project: wikidata/query/gui
Gerrit-Branch: master
Gerrit-Owner: Smalyshev 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...FlaggedRevs[master]: Use tabs to indent in json

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345911 )

Change subject: Use tabs to indent in json
..


Use tabs to indent in json

Change-Id: I657ab40e65d34ab4bc88f0ec215b235782c290b6
---
M i18n/flaggedrevs/gan.json
M package.json
2 files changed, 19 insertions(+), 19 deletions(-)

Approvals:
  Fomafix: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/flaggedrevs/gan.json b/i18n/flaggedrevs/gan.json
index a5f9650..6e3a1c4 100644
--- a/i18n/flaggedrevs/gan.json
+++ b/i18n/flaggedrevs/gan.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Symane"
-]
-},
-"revreview-revnotfound": "倷請求嗰更早版本嗰修改歷史冇尋到。請檢查倷嗰URL係否正確。"
+   "@metadata": {
+   "authors": [
+   "Symane"
+   ]
+   },
+   "revreview-revnotfound": "倷請求嗰更早版本嗰修改歷史冇尋到。請檢查倷嗰URL係否正確。"
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index 20f2bae..8e78760 100644
--- a/package.json
+++ b/package.json
@@ -1,15 +1,15 @@
 {
-  "private": true,
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"eslint-config-wikimedia": "0.3.0",
-"grunt": "1.0.1",
-"grunt-banana-checker": "0.5.0",
-"grunt-eslint": "19.0.0",
-"grunt-jsonlint": "1.1.0",
-"grunt-stylelint": "0.6.0",
-"stylelint-config-wikimedia": "0.4.1"
-  }
+   "private": true,
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "eslint-config-wikimedia": "0.3.0",
+   "grunt": "1.0.1",
+   "grunt-banana-checker": "0.5.0",
+   "grunt-eslint": "19.0.0",
+   "grunt-jsonlint": "1.1.0",
+   "grunt-stylelint": "0.6.0",
+   "stylelint-config-wikimedia": "0.4.1"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345911
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I657ab40e65d34ab4bc88f0ec215b235782c290b6
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/FlaggedRevs
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 
Gerrit-Reviewer: Fomafix 
Gerrit-Reviewer: Jackmcbarn 
Gerrit-Reviewer: Siebrand 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki/core[master]: API: Allow returning parse warnings for action=parse

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/196898 )

Change subject: API: Allow returning parse warnings for action=parse
..


API: Allow returning parse warnings for action=parse

Passing in the 'parsewarnings' property will return warnings related
to parsing content.

Bug: T92634
Change-Id: I7e54765ee9a24ffb78e7763f73a520151023baf6
---
M includes/api/ApiParse.php
M includes/api/i18n/en.json
M includes/api/i18n/qqq.json
3 files changed, 9 insertions(+), 1 deletion(-)

Approvals:
  jenkins-bot: Verified
  Anomie: Looks good to me, approved



diff --git a/includes/api/ApiParse.php b/includes/api/ApiParse.php
index 287ffb7..b8d2641 100644
--- a/includes/api/ApiParse.php
+++ b/includes/api/ApiParse.php
@@ -340,6 +340,9 @@
if ( isset( $prop['sections'] ) ) {
$result_array['sections'] = $p_result->getSections();
}
+   if ( isset( $prop['parsewarnings'] ) ) {
+   $result_array['parsewarnings'] = 
$p_result->getWarnings();
+   }
 
if ( isset( $prop['displaytitle'] ) ) {
$result_array['displaytitle'] = 
$p_result->getDisplayTitle() ?:
@@ -452,6 +455,7 @@
'modulestyles' => 'm',
'properties' => 'pp',
'limitreportdata' => 'lr',
+   'parsewarnings' => 'pw'
];
$this->setIndexedTagNames( $result_array, $result_mapping );
$result->addValue( null, $this->getModuleName(), $result_array 
);
@@ -751,7 +755,8 @@
],
'prop' => [
ApiBase::PARAM_DFLT => 
'text|langlinks|categories|links|templates|' .
-   
'images|externallinks|sections|revid|displaytitle|iwlinks|properties',
+   
'images|externallinks|sections|revid|displaytitle|iwlinks|' .
+   'properties|parsewarnings',
ApiBase::PARAM_ISMULTI => true,
ApiBase::PARAM_TYPE => [
'text',
@@ -777,6 +782,7 @@
'limitreportdata',
'limitreporthtml',
'parsetree',
+   'parsewarnings'
],
ApiBase::PARAM_HELP_MSG_PER_VALUE => [
'parsetree' => [ 
'apihelp-parse-paramvalue-prop-parsetree', CONTENT_MODEL_WIKITEXT ],
diff --git a/includes/api/i18n/en.json b/includes/api/i18n/en.json
index ab8a8a5..cd30960 100644
--- a/includes/api/i18n/en.json
+++ b/includes/api/i18n/en.json
@@ -348,6 +348,7 @@
"apihelp-parse-paramvalue-prop-limitreportdata": "Gives the limit 
report in a structured way. Gives no data, when $1disablelimitreport 
is set.",
"apihelp-parse-paramvalue-prop-limitreporthtml": "Gives the HTML 
version of the limit report. Gives no data, when 
$1disablelimitreport is set.",
"apihelp-parse-paramvalue-prop-parsetree": "The XML parse tree of 
revision content (requires content model $1)",
+   "apihelp-parse-paramvalue-prop-parsewarnings": "Gives the warnings that 
occurred while parsing content.",
"apihelp-parse-param-pst": "Do a pre-save transform on the input before 
parsing it. Only valid when used with text.",
"apihelp-parse-param-onlypst": "Do a pre-save transform (PST) on the 
input, but don't parse it. Returns the same wikitext, after a PST has been 
applied. Only valid when used with $1text.",
"apihelp-parse-param-effectivelanglinks": "Includes language links 
supplied by extensions (for use with $1prop=langlinks).",
diff --git a/includes/api/i18n/qqq.json b/includes/api/i18n/qqq.json
index cca3a3c..6e70653 100644
--- a/includes/api/i18n/qqq.json
+++ b/includes/api/i18n/qqq.json
@@ -330,6 +330,7 @@
"apihelp-parse-paramvalue-prop-limitreportdata": 
"{{doc-apihelp-paramvalue|parse|prop|limitreportdata}}",
"apihelp-parse-paramvalue-prop-limitreporthtml": 
"{{doc-apihelp-paramvalue|parse|prop|limitreporthtml}}",
"apihelp-parse-paramvalue-prop-parsetree": 
"{{doc-apihelp-paramvalue|parse|prop|parsetree|params=* $1 - Value of the 
constant CONTENT_MODEL_WIKITEXT|paramstart=2}}",
+   "apihelp-parse-paramvalue-prop-parsewarnings": 
"{{doc-apihelp-paramvalue|parse|prop|parsewarnings}}",
"apihelp-parse-param-pst": "{{doc-apihelp-param|parse|pst}}",
"apihelp-parse-param-onlypst": "{{doc-apihelp-param|parse|onlypst}}",
"apihelp-parse-param-effectivelanglinks": 
"{{doc-apihelp-param|parse|effectivelanglinks}}",

-- 
To view, visit 

[MediaWiki-commits] [Gerrit] mediawiki...PageForms[master]: Fix for 8df2a56560ee, 2a9d716e68f8

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345920 )

Change subject: Fix for 8df2a56560ee, 2a9d716e68f8
..


Fix for 8df2a56560ee, 2a9d716e68f8

Object.values() is only supported on Chrome and Firefox.

Change-Id: I6ec476c364122649f1c7f791f0dd521a41d21290
---
M libs/PageForms.js
1 file changed, 9 insertions(+), 1 deletion(-)

Approvals:
  Yaron Koren: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/libs/PageForms.js b/libs/PageForms.js
index 598b6a5..ef92d22 100644
--- a/libs/PageForms.js
+++ b/libs/PageForms.js
@@ -95,8 +95,14 @@
}
// This may be an associative array instead of a
// regular one - grep() requires a regular one.
+   // (Is this "if" check necessary, or useful?)
if ( typeof array === 'object' ) {
array = Object.values( array );
+   // Unfortunately, Object.values() is
+   // not supported on all browsers.
+   array = 
Object.keys(array).map(function(key) {
+   return array[key];
+   });
}
return $.grep( array, function(value) {
return matcher.test( value.label || 
value.value || value );
@@ -154,7 +160,9 @@
} else {
// Autocomplete for a single value
$(this).autocomplete({
-   source: ( typeof values === 'object' ) 
? Object.values( values ) : values
+   // Unfortunately, Object.values() is
+   // not supported on all browsers.
+   source: ( typeof values === 'object' ) 
? Object.keys(values).map(function(key) { return values[key]; }) : values
});
}
} else {

-- 
To view, visit https://gerrit.wikimedia.org/r/345920
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I6ec476c364122649f1c7f791f0dd521a41d21290
Gerrit-PatchSet: 2
Gerrit-Project: mediawiki/extensions/PageForms
Gerrit-Branch: master
Gerrit-Owner: Yaron Koren 
Gerrit-Reviewer: Yaron Koren 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...Wikilog[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345942 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I4f007d79d30a66af98396242b7d7a341bbd5da12
---
M i18n/wikilog/ab.json
M i18n/wikilog/af.json
M i18n/wikilog/aln.json
M i18n/wikilog/an.json
M i18n/wikilog/ar.json
M i18n/wikilog/arc.json
M i18n/wikilog/arz.json
M i18n/wikilog/az.json
M i18n/wikilog/azb.json
M i18n/wikilog/ba.json
M i18n/wikilog/be-tarask.json
M i18n/wikilog/be.json
M i18n/wikilog/bg.json
M i18n/wikilog/bn.json
M i18n/wikilog/br.json
M i18n/wikilog/bs.json
M i18n/wikilog/ca.json
M i18n/wikilog/ce.json
M i18n/wikilog/ckb.json
M i18n/wikilog/crh-cyrl.json
M i18n/wikilog/crh-latn.json
M i18n/wikilog/cs.json
M i18n/wikilog/cu.json
M i18n/wikilog/da.json
M i18n/wikilog/de-formal.json
M i18n/wikilog/de.json
M i18n/wikilog/diq.json
M i18n/wikilog/dsb.json
M i18n/wikilog/ee.json
M i18n/wikilog/el.json
M i18n/wikilog/en-gb.json
M i18n/wikilog/eo.json
M i18n/wikilog/es.json
M i18n/wikilog/et.json
M i18n/wikilog/eu.json
M i18n/wikilog/fa.json
M i18n/wikilog/fi.json
M i18n/wikilog/fr.json
M i18n/wikilog/frp.json
M i18n/wikilog/ga.json
M i18n/wikilog/gl.json
M i18n/wikilog/grc.json
M i18n/wikilog/gsw.json
M i18n/wikilog/ha.json
M i18n/wikilog/he.json
M i18n/wikilog/hr.json
M i18n/wikilog/hsb.json
M i18n/wikilog/hu.json
M i18n/wikilog/ia.json
M i18n/wikilog/id.json
M i18n/wikilog/ig.json
M i18n/wikilog/it.json
M i18n/wikilog/ja.json
M i18n/wikilog/jv.json
M i18n/wikilog/ka.json
M i18n/wikilog/kn.json
M i18n/wikilog/ko.json
M i18n/wikilog/koi.json
M i18n/wikilog/ksh.json
M i18n/wikilog/ku-latn.json
M i18n/wikilog/ky.json
M i18n/wikilog/lb.json
M i18n/wikilog/lg.json
M i18n/wikilog/li.json
M i18n/wikilog/lt.json
M i18n/wikilog/ltg.json
M i18n/wikilog/lv.json
M i18n/wikilog/lzz.json
M i18n/wikilog/mg.json
M i18n/wikilog/mk.json
M i18n/wikilog/ml.json
M i18n/wikilog/mn.json
M i18n/wikilog/ms.json
M i18n/wikilog/nb.json
M i18n/wikilog/nds-nl.json
M i18n/wikilog/ne.json
M i18n/wikilog/nl.json
M i18n/wikilog/nn.json
M i18n/wikilog/oc.json
M i18n/wikilog/or.json
M i18n/wikilog/pdc.json
M i18n/wikilog/pfl.json
M i18n/wikilog/pl.json
M i18n/wikilog/pms.json
M i18n/wikilog/ps.json
M i18n/wikilog/pt-br.json
M i18n/wikilog/pt.json
M i18n/wikilog/qqq.json
M i18n/wikilog/ro.json
M i18n/wikilog/roa-tara.json
M i18n/wikilog/ru.json
M i18n/wikilog/rue.json
M i18n/wikilog/sc.json
M i18n/wikilog/si.json
M i18n/wikilog/sl.json
M i18n/wikilog/so.json
M i18n/wikilog/sq.json
M i18n/wikilog/sr-ec.json
M i18n/wikilog/sr-el.json
M i18n/wikilog/sv.json
M i18n/wikilog/ta.json
M i18n/wikilog/te.json
M i18n/wikilog/tet.json
M i18n/wikilog/tk.json
M i18n/wikilog/tl.json
M i18n/wikilog/tly.json
M i18n/wikilog/tr.json
M i18n/wikilog/tt-cyrl.json
M i18n/wikilog/tzm.json
M i18n/wikilog/uk.json
M i18n/wikilog/vi.json
M i18n/wikilog/yi.json
M i18n/wikilog/zh-hans.json
M i18n/wikilog/zh-hant.json
M i18n/wlfeed/af.json
M i18n/wlfeed/aln.json
M i18n/wlfeed/ar.json
M i18n/wlfeed/arz.json
M i18n/wlfeed/ast.json
M i18n/wlfeed/be-tarask.json
M i18n/wlfeed/br.json
M i18n/wlfeed/bs.json
M i18n/wlfeed/ca.json
M i18n/wlfeed/cs.json
M i18n/wlfeed/de.json
M i18n/wlfeed/dsb.json
M i18n/wlfeed/es.json
M i18n/wlfeed/fi.json
M i18n/wlfeed/fr.json
M i18n/wlfeed/frp.json
M i18n/wlfeed/gl.json
M i18n/wlfeed/gsw.json
M i18n/wlfeed/he.json
M i18n/wlfeed/hr.json
M i18n/wlfeed/hsb.json
M i18n/wlfeed/hu.json
M i18n/wlfeed/ia.json
M i18n/wlfeed/id.json
M i18n/wlfeed/it.json
M i18n/wlfeed/ja.json
M i18n/wlfeed/ko.json
M i18n/wlfeed/ksh.json
M i18n/wlfeed/lb.json
M i18n/wlfeed/li.json
M i18n/wlfeed/mk.json
M i18n/wlfeed/ms.json
M i18n/wlfeed/nb.json
M i18n/wlfeed/nl.json
M i18n/wlfeed/oc.json
M i18n/wlfeed/pl.json
M i18n/wlfeed/pms.json
M i18n/wlfeed/pt-br.json
M i18n/wlfeed/pt.json
M i18n/wlfeed/qqq.json
M i18n/wlfeed/roa-tara.json
M i18n/wlfeed/ru.json
M i18n/wlfeed/si.json
M i18n/wlfeed/sl.json
M i18n/wlfeed/sr-ec.json
M i18n/wlfeed/sr-el.json
M i18n/wlfeed/sv.json
M i18n/wlfeed/tl.json
M i18n/wlfeed/tr.json
M i18n/wlfeed/uk.json
164 files changed, 8,204 insertions(+), 8,204 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Wikilog 
refs/changes/42/345942/1


-- 
To view, visit https://gerrit.wikimedia.org/r/345942
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I4f007d79d30a66af98396242b7d7a341bbd5da12
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Wikilog
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...WikiLexicalData[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345941 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I8c14fd965e37ab9eccf91e4dcc06bd94dc1bfb40
---
M i18n/lexicaldata/kk-cn.json
M i18n/lexicaldata/kk-tr.json
M i18n/lexicaldata/kk.json
M i18n/lexicaldata/ku.json
4 files changed, 19 insertions(+), 19 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/WikiLexicalData 
refs/changes/41/345941/1

diff --git a/i18n/lexicaldata/kk-cn.json b/i18n/lexicaldata/kk-cn.json
index 2191641..49d43ad 100644
--- a/i18n/lexicaldata/kk-cn.json
+++ b/i18n/lexicaldata/kk-cn.json
@@ -1,6 +1,6 @@
 {
-"@metadata": {
-"authors": []
-},
-"langman_title": "تٴىلدەردٴى مەڭگەرۋ"
+   "@metadata": {
+   "authors": []
+   },
+   "langman_title": "تٴىلدەردٴى مەڭگەرۋ"
 }
diff --git a/i18n/lexicaldata/kk-tr.json b/i18n/lexicaldata/kk-tr.json
index 7bb4e10..28a6376 100644
--- a/i18n/lexicaldata/kk-tr.json
+++ b/i18n/lexicaldata/kk-tr.json
@@ -1,6 +1,6 @@
 {
-"@metadata": {
-"authors": []
-},
-"langman_title": "Tilderdi meñgerw"
+   "@metadata": {
+   "authors": []
+   },
+   "langman_title": "Tilderdi meñgerw"
 }
diff --git a/i18n/lexicaldata/kk.json b/i18n/lexicaldata/kk.json
index 1d95276..eba20d7 100644
--- a/i18n/lexicaldata/kk.json
+++ b/i18n/lexicaldata/kk.json
@@ -1,6 +1,6 @@
 {
-"@metadata": {
-"authors": []
-},
-"langman_title": "Тілдерді меңгеру"
+   "@metadata": {
+   "authors": []
+   },
+   "langman_title": "Тілдерді меңгеру"
 }
diff --git a/i18n/lexicaldata/ku.json b/i18n/lexicaldata/ku.json
index 16f980b..6310e2c 100644
--- a/i18n/lexicaldata/ku.json
+++ b/i18n/lexicaldata/ku.json
@@ -1,9 +1,9 @@
 {
-"@metadata": {
-"authors": [
-"Bangin"
-]
-},
-"ow_history": "Dîrok",
-"ow_Source": "Çavkanî"
+   "@metadata": {
+   "authors": [
+   "Bangin"
+   ]
+   },
+   "ow_history": "Dîrok",
+   "ow_Source": "Çavkanî"
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345941
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I8c14fd965e37ab9eccf91e4dcc06bd94dc1bfb40
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/WikiLexicalData
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...PageForms[master]: Fix for 8df2a56560ee, 2a9d716e68f8

2017-03-31 Thread Yaron Koren (Code Review)
Yaron Koren has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345920 )

Change subject: Fix for 8df2a56560ee, 2a9d716e68f8
..

Fix for 8df2a56560ee, 2a9d716e68f8

Object.values() is only supported on Chrome and Firefox.

Change-Id: I6ec476c364122649f1c7f791f0dd521a41d21290
---
M libs/PageForms.js
1 file changed, 9 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/PageForms 
refs/changes/20/345920/2

diff --git a/libs/PageForms.js b/libs/PageForms.js
index 598b6a5..ef92d22 100644
--- a/libs/PageForms.js
+++ b/libs/PageForms.js
@@ -95,8 +95,14 @@
}
// This may be an associative array instead of a
// regular one - grep() requires a regular one.
+   // (Is this "if" check necessary, or useful?)
if ( typeof array === 'object' ) {
array = Object.values( array );
+   // Unfortunately, Object.values() is
+   // not supported on all browsers.
+   array = 
Object.keys(array).map(function(key) {
+   return array[key];
+   });
}
return $.grep( array, function(value) {
return matcher.test( value.label || 
value.value || value );
@@ -154,7 +160,9 @@
} else {
// Autocomplete for a single value
$(this).autocomplete({
-   source: ( typeof values === 'object' ) 
? Object.values( values ) : values
+   // Unfortunately, Object.values() is
+   // not supported on all browsers.
+   source: ( typeof values === 'object' ) 
? Object.keys(values).map(function(key) { return values[key]; }) : values
});
}
} else {

-- 
To view, visit https://gerrit.wikimedia.org/r/345920
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I6ec476c364122649f1c7f791f0dd521a41d21290
Gerrit-PatchSet: 2
Gerrit-Project: mediawiki/extensions/PageForms
Gerrit-Branch: master
Gerrit-Owner: Yaron Koren 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...wikihiero[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345940 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I4bb14858bd935de1823d5834a5c1191933125f9f
---
M i18n/kk.json
M package.json
2 files changed, 38 insertions(+), 38 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/wikihiero 
refs/changes/40/345940/1

diff --git a/i18n/kk.json b/i18n/kk.json
index e7a7681..41a14e0 100644
--- a/i18n/kk.json
+++ b/i18n/kk.json
@@ -1,23 +1,23 @@
 {
-"@metadata": {
-"authors": []
-},
-"wikihiero-syntax": "Синтаксис",
-"wikihiero-separator": "Айырғыш",
-"wikihiero-eol": "Жол аяғы",
-"wikihiero-superposition": "Төменгі бөлім",
-"wikihiero-juxtaposition": "Тығыз жақындату",
-"wikihiero-category-A": "A: Ер адам және оның шұғылдануы",
-"wikihiero-category-B": "B: Әйел адам және оның шұғылдануы",
-"wikihiero-category-C": "C: Адам пішімді құдіреттер",
-"wikihiero-category-D": "D: Адам денесінің мүшелері",
-"wikihiero-category-E": "E: Сүтқоректілер",
-"wikihiero-category-F": "F: Сүтқоректілер денесінің мүшелері",
-"wikihiero-category-G": "G: Құстар",
-"wikihiero-category-H": "H: Құстар денесінің мүшелері",
-"wikihiero-category-I": "I: Қос мекенділер, бауырымен жорғалаушылар, т.б.",
-"wikihiero-category-K": "K: Балықтар және балық денесінің мүшелері",
-"wikihiero-category-L": "L: Омыртқасыздар мен ұсақ жануарлар",
-"wikihiero-category-Z": "Z: Сызықтар, геометрия пішіндер.",
-"wikihiero-category-Aa": "Aa: Таңбаланбағандар"
+   "@metadata": {
+   "authors": []
+   },
+   "wikihiero-syntax": "Синтаксис",
+   "wikihiero-separator": "Айырғыш",
+   "wikihiero-eol": "Жол аяғы",
+   "wikihiero-superposition": "Төменгі бөлім",
+   "wikihiero-juxtaposition": "Тығыз жақындату",
+   "wikihiero-category-A": "A: Ер адам және оның шұғылдануы",
+   "wikihiero-category-B": "B: Әйел адам және оның шұғылдануы",
+   "wikihiero-category-C": "C: Адам пішімді құдіреттер",
+   "wikihiero-category-D": "D: Адам денесінің мүшелері",
+   "wikihiero-category-E": "E: Сүтқоректілер",
+   "wikihiero-category-F": "F: Сүтқоректілер денесінің мүшелері",
+   "wikihiero-category-G": "G: Құстар",
+   "wikihiero-category-H": "H: Құстар денесінің мүшелері",
+   "wikihiero-category-I": "I: Қос мекенділер, бауырымен жорғалаушылар, 
т.б.",
+   "wikihiero-category-K": "K: Балықтар және балық денесінің мүшелері",
+   "wikihiero-category-L": "L: Омыртқасыздар мен ұсақ жануарлар",
+   "wikihiero-category-Z": "Z: Сызықтар, геометрия пішіндер.",
+   "wikihiero-category-Aa": "Aa: Таңбаланбағандар"
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index 2c70c54..ce1f0cd 100644
--- a/package.json
+++ b/package.json
@@ -1,19 +1,19 @@
 {
-  "name": "Wikihiero",
-  "version": "1.1.0",
-  "private": true,
-  "description": "Build tools for the Wikihiero-MediaWiki extension.",
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "1.0.1",
-"grunt-banana-checker": "0.5.0",
-"grunt-contrib-jshint": "1.0.0",
-"grunt-contrib-watch": "1.0.0",
-"grunt-jscs": "2.8.0",
-"grunt-jsonlint": "1.0.7",
-"grunt-stylelint": "0.7.0",
-"stylelint-config-wikimedia": "0.4.1"
-  }
+   "name": "Wikihiero",
+   "version": "1.1.0",
+   "private": true,
+   "description": "Build tools for the Wikihiero-MediaWiki extension.",
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "1.0.1",
+   "grunt-banana-checker": "0.5.0",
+   "grunt-contrib-jshint": "1.0.0",
+   "grunt-contrib-watch": "1.0.0",
+   "grunt-jscs": "2.8.0",
+   "grunt-jsonlint": "1.0.7",
+   "grunt-stylelint": "0.7.0",
+   "stylelint-config-wikimedia": "0.4.1"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345940
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I4bb14858bd935de1823d5834a5c1191933125f9f
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/wikihiero
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...VisualEditor[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345938 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: Ib0372c86bcaac368f4dd68a512273b504ca9b6b2
---
M modules/ve-mw/i18n/tt.json
M package.json
2 files changed, 33 insertions(+), 33 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/VisualEditor 
refs/changes/38/345938/1

diff --git a/modules/ve-mw/i18n/tt.json b/modules/ve-mw/i18n/tt.json
index 1fce768..882bc22 100644
--- a/modules/ve-mw/i18n/tt.json
+++ b/modules/ve-mw/i18n/tt.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Ilnur efende"
-]
-},
-"visualeditor-ca-ve-edit-section": "Күренмә мөхәррир"
+   "@metadata": {
+   "authors": [
+   "Ilnur efende"
+   ]
+   },
+   "visualeditor-ca-ve-edit-section": "Күренмә мөхәррир"
 }
diff --git a/package.json b/package.json
index d36760d..c7f1aa3 100644
--- a/package.json
+++ b/package.json
@@ -1,29 +1,29 @@
 {
-  "name": "visualeditor",
-  "version": "0.0.0",
-  "private": true,
-  "description": "Build tools for the VisualEditor-MediaWiki extension.",
-  "scripts": {
-"test": "grunt test",
-"doc": "jsduck",
-"postdoc": "grunt copy:jsduck"
-  },
-  "devDependencies": {
-"babel-polyfill": "6.9.1",
-"eslint-config-wikimedia": "0.3.0",
-"grunt": "1.0.1",
-"grunt-banana-checker": "0.5.0",
-"grunt-contrib-copy": "1.0.0",
-"grunt-contrib-watch": "1.0.0",
-"grunt-eslint": "19.0.0",
-"grunt-jsonlint": "1.1.0",
-"grunt-image": "2.2.3",
-"grunt-mocha-test": "0.12.7",
-"grunt-stylelint": "0.7.0",
-"grunt-tyops": "0.1.0",
-"jimp": "0.2.24",
-"mocha": "2.5.3",
-"selenium-webdriver": "2.53.2",
-"stylelint-config-wikimedia": "0.4.1"
-  }
+   "name": "visualeditor",
+   "version": "0.0.0",
+   "private": true,
+   "description": "Build tools for the VisualEditor-MediaWiki extension.",
+   "scripts": {
+   "test": "grunt test",
+   "doc": "jsduck",
+   "postdoc": "grunt copy:jsduck"
+   },
+   "devDependencies": {
+   "babel-polyfill": "6.9.1",
+   "eslint-config-wikimedia": "0.3.0",
+   "grunt": "1.0.1",
+   "grunt-banana-checker": "0.5.0",
+   "grunt-contrib-copy": "1.0.0",
+   "grunt-contrib-watch": "1.0.0",
+   "grunt-eslint": "19.0.0",
+   "grunt-jsonlint": "1.1.0",
+   "grunt-image": "2.2.3",
+   "grunt-mocha-test": "0.12.7",
+   "grunt-stylelint": "0.7.0",
+   "grunt-tyops": "0.1.0",
+   "jimp": "0.2.24",
+   "mocha": "2.5.3",
+   "selenium-webdriver": "2.53.2",
+   "stylelint-config-wikimedia": "0.4.1"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345938
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib0372c86bcaac368f4dd68a512273b504ca9b6b2
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/VisualEditor
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...UploadLocal[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345935 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: Ie6b2f2bd7056e7678d2bf85a52262fb21a4bbd08
---
M i18n/de.json
M package.json
2 files changed, 44 insertions(+), 44 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/UploadLocal 
refs/changes/35/345935/1

diff --git a/i18n/de.json b/i18n/de.json
index 227bc1d..2895e13 100644
--- a/i18n/de.json
+++ b/i18n/de.json
@@ -1,38 +1,38 @@
 {
-"@metadata": {
-"authors": []
-},
-"uploadlocal-desc": "Ermöglicht es Benutzern auf dem Server befindliche 
Dateien zu nutzen",
-"specialuploadlocal": "Lokale Dateien hochladen",
-"uploadlocal": "Lokale Dateien hochladen",
-"uploadlocal_directory_readonly": "Der lokale Upload Ordner ($1) ist nicht 
vom Webserver beschreibbar.",
-"uploadlocaltext": "Benutze dieses Formular um Dateien auf dem Server im 
lokalen Upload-Ordner.\nAllgemeinen Informationen sind auf der Seite für 
[[Special:Upload|den regulären Dateiupload]] zu finden.",
-"uploadlocalbtn": "Lokale Dateien hochladen",
-"nolocalfiles": "Es gibt keine Dateiene im lokalen Upload-Ordner. Lade 
Dateien in \"$1.\"",
-"uploadednolocalfiles": "Keine Dateien hochgeladen.",
-"allfilessuccessful": "Alle Dateien erfolgreich hochgeladen",
-"uploadlocalerrors": "Einige Dateien hatten Fehler",
-"allfilessuccessfultext": "Alle Dateien erfolgreich hochgeladen.\nZurück 
zur [[{{int:mainpage}}]].",
-"uploadlocal_descriptions_append": "Der Beschreibung anfügen:",
-"uploadlocal_descriptions_prepend": "Der Beschreibung voranstellen:",
-"uploadlocal_dest_file_append": "Dem Dateinamen anfügen:",
-"uploadlocal_dest_file_prepend": "Dem Dateinamen voranstellen: ",
-"uploadlocal_file_list": "Dateien fertig zum hochladen",
-"uploadlocal_file_list_explanation": "'''X''' zeigt die Dateien die 
hochgeladen werden sollen (Häckchen entfernen um die Dateien 
auszuschließen).\n'''W''' zeigt Dateien die zur Beobachtungsliste hinzugefügt 
werden sollen.",
-"uploadlocal_global_params": "Globale Parameter",
-"uploadlocal_global_params_explanation": "Was hier eingetragen wird, wird 
automatisch den oben gelisteten Einträgen hinzugefügt.\nDas hilft dabei 
wiederholten Text wie Kategorien und Metadaten zu entfernen.\n'''anfügen''' 
fügt den Text am Ende ein, wohingegen '''voranstellen''' am Anfang des Textes 
eingefügt wird.\nBei der Beschreibung sollten einige Zeilenumbrüche am Anfang 
und Ende des Textes eingefügt werden.",
-"uploadlocal_error_badtitle": "Der Dateiname $1 ist unzulässig. Der Name 
ist zu lang oder der Datei-Suffix ist verboten.",
-"uploadlocal_error_empty": "Die übertragene Datei war leer.",
-"uploadlocal_error_exists": "Die Datei $1 existiert bereits.",
-"uploadlocal_error_badprefix": "Der Dateiname $1 ist durch die Wiki 
Einstellungen verboten.",
-"uploadlocal_error_missing": "Dieser Datei fehlt ein Suffix.",
-"uploadlocal_error_badtype": "Dieser Dateitype wurde verbannt.",
-"uploadlocal_error_tooshort": "Der Dateiname ist zu kurz.",
-"uploadlocal_error_illegal": "Der Dateiname ist nicht zulässig.",
-"uploadlocal_error_overwrite": "Überschreiben bestehender Dateien ist 
nicht zulässig.",
-"uploadlocal_error_verify": "Diese Datei konnte nicht verifiziert werden: 
$1.",
-"uploadlocal_error_hook": "Die Modifikation wurde von einem Extension Hook 
unterbrochen.",
-"uploadlocal_error_unknown": "Ein unbekannter Fehler ist aufgetreten.",
-"right-uploadlocal": "Hochladen von Dateien von der lokalen Maschine",
-"action-uploadlocal": "hochladen von Dateien von der lokalen Maschine"
+   "@metadata": {
+   "authors": []
+   },
+   "uploadlocal-desc": "Ermöglicht es Benutzern auf dem Server befindliche 
Dateien zu nutzen",
+   "specialuploadlocal": "Lokale Dateien hochladen",
+   "uploadlocal": "Lokale Dateien hochladen",
+   "uploadlocal_directory_readonly": "Der lokale Upload Ordner ($1) ist 
nicht vom Webserver beschreibbar.",
+   "uploadlocaltext": "Benutze dieses Formular um Dateien auf dem Server 
im lokalen Upload-Ordner.\nAllgemeinen Informationen sind auf der Seite für 
[[Special:Upload|den regulären Dateiupload]] zu finden.",
+   "uploadlocalbtn": "Lokale Dateien hochladen",
+   "nolocalfiles": "Es gibt keine Dateiene im lokalen Upload-Ordner. Lade 
Dateien in \"$1.\"",
+   "uploadednolocalfiles": "Keine Dateien hochgeladen.",
+   "allfilessuccessful": "Alle Dateien erfolgreich hochgeladen",
+   "uploadlocalerrors": "Einige Dateien hatten Fehler",
+   "allfilessuccessfultext": "Alle Dateien erfolgreich 
hochgeladen.\nZurück zur [[{{int:mainpage}}]].",
+   "uploadlocal_descriptions_append": "Der Beschreibung anfügen:",
+   

[MediaWiki-commits] [Gerrit] mediawiki...SportsTeams[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345932 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: Ib384afdce986e327b2a2733a8a29ac17aefd075f
---
M i18n/fi.json
M i18n/qqq.json
2 files changed, 143 insertions(+), 143 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/SportsTeams 
refs/changes/32/345932/1

diff --git a/i18n/fi.json b/i18n/fi.json
index 52065eb..1a6147d 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,138 +1,138 @@
 {
-"@metadata": {
-"authors": [
-"Jack Phoenix "
-]
-},
-"topnetworks": "Verkostojen tilastoja",
-"similarfans": "Samankaltaiset fanit",
-"sportsteamsmanager": "Hallinnoi urheilutiimejä",
-"sportsteams-add-button": "lisää",
-"sportsteams-articles-votes": "{{PLURAL:$1|ääni|ääntä}}",
-"sportsteams-no-articles": "No articles.",
-"sportsteams-count-fans": "{{PLURAL:$1|'''Yksi''' fani|'''$1''' fania}}",
-"sportsteams-similar-fans": "Samankaltaiset fanit",
-"sportsteams-num-similar": "{{PLURAL:$1|Yksi fani on kanssasi 
samankaltainen.|$1 fania ovat kanssasi samankaltaisia.}}",
-"sportsteams-invite-friends": "Kutsu ystäviäsi",
-"sportsteams-your-friend": "ystäväsi",
-"sportsteams-your-foe": "vihollisesi",
-"sportsteams-add-as-friend": "Lisää ystäväksi",
-"sportsteams-remove-as-friend": "Poista ystävistä",
-"sportsteams-add-as-foe": "Lisää viholliseksi",
-"sportsteams-remove-as-foe": "Poista vihollisista",
-"sportsteams-give-a-gift": "Anna lahja",
-"sportsteams-prev": "edell.",
-"sportsteams-next": "seur.",
-"sportsteams-woops": "Ups!",
-"sportsteams-network-woops-title": "Ups, astuit harhaan!",
-"sportsteams-network-woops-text": "Määritelty URL on väärin.",
-"sportsteams-network-fan-network": "$1-faniverkosto",
-"sportsteams-network-you-are-fan": "Olet fani",
-"sportsteams-network-leave-network": "Poistu tästä verkostosta",
-"sportsteams-network-join-network": "Liity tähän verkostoon",
-"sportsteams-network-info": "Tietoa verkostosta",
-"sportsteams-network-logo": "(Virallinen logo)",
-"sportsteams-network-fans-col": "Fanit:",
-"sportsteams-network-friends-col": "Ystäviä: $1",
-"sportsteams-network-fans": "$1-fanit",
-"sportsteams-network-fan": "Fan",
-"sportsteams-network-fan-display": "{{PLURAL:$3|Näytetään $1 fani; 
yhteensä $3|Näytetään $1 fania; yhteensä $3}}",
-"sportsteams-network-latest-thoughts": "Viimeisimmät ajatukset",
-"sportsteams-network-all-thoughts": "Kaikki ajatukset",
-"sportsteams-network-fan-locations": "Fanien sijainnit",
-"sportsteams-network-top-fans": "Huippufanit",
-"sportsteams-network-top-fans-week": "Tämän viikon huippufanit",
-"sportsteams-network-complete-list": "Täydellinen lista",
-"sportsteams-network-articles": "Artikkelit aiheesta $1",
-"sportsteams-network-write-article": "Kirjoita artikkeli",
-"sportsteams-network-main-page": "Etusivu",
-"sportsteams-network-your-profile": "Profiilisi",
-"sportsteams-network-points": "{{PLURAL:$1|Yksi piste|$1 pistettä}}",
-"sportsteams-network-newest": "Uusimmat fanit alueelta $1",
-"sportsteams-network-clicktozoom": "(Napsauta suurentaaksesi)",
-"sportsteams-network-now-member": "Olet nyt $1-verkoston jäsen!",
-"sportsteams-network-invite-more": "Kutsu lisää $1-faneja",
-"sportsteams-network-find-other": "Löydä muita $1-faneja",
-"sportsteams-network-already-member": "Olet jo $1-verkoston jäsen!",
-"sportsteams-network-no-need-join": "Ei tarvitse liittyä uudelleen!",
-"sportsteams-network-join-named-network": "Liity $1-faniverkostoon",
-"sportsteams-network-join-are-you-sure": "Oletko varma, että haluat 
liittyä $1-faniverkostoon?",
-"sportsteams-network-alt-logo": "logo",
-"sportsteams-network-network-fans": "$1-fanit",
-"sportsteams-network-back-to-network": " Takaisin verkoston \"$1\" 
sivulle",
-"sportsteams-network-num-fans": "$1-sivulla on $2 
{{PLURAL:$2|fani|fania}}.",
-"sportsteams-network-num-fans-sport": "Urheilulajilla $1 on $2 
{{PLURAL:$2|fani|fania}}.",
-"sportsteams-network-no-longer-member": "Et ole enää $1-verkoston jäsen!",
-"sportsteams-network-not-member": "Et ole $1-verkoston jäsen!",
-"sportsteams-network-leave": "Poistu $1-verkostosta!",
-"sportsteams-network-leave-are-you-sure": "Oletko varma, että haluat 
poistua $1-faniverkostosta?",
-"sportsteams-network-remove-me": "Poista minut",
-"sportsteams-top-network-sports": "Urheilulajit",
-"sportsteams-top-network-teams": "Joukkueet",
-"sportsteams-top-network-least": "Epäsuosituimmat",
-"sportsteams-top-network-most": "Eniten",
-"sportsteams-top-network-team-title-least-sports": "Epäsuosituimmat 
urheilulajit",
-

[MediaWiki-commits] [Gerrit] mediawiki...SemanticImageAnnotator[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345930 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: Ied4c6ffe9d8b4a6d3b635d2576c33c0857331549
---
M i18n/de.json
1 file changed, 9 insertions(+), 9 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/SemanticImageAnnotator 
refs/changes/30/345930/1

diff --git a/i18n/de.json b/i18n/de.json
index 39234da..6b91eb2 100644
--- a/i18n/de.json
+++ b/i18n/de.json
@@ -1,11 +1,11 @@
 {
-"@metadata": {
-"authors": [
-"Felix Obenauer"
-]
-},
-"sia-description": "Füge Bildern semantische Annotationen hinzu und frage 
diese ab",
-"sia-comment": "Kommentar",
-"sia-buttonannotate": "Dieses Bild annotieren",
-"sia-resize": "Bildgröße ändern"
+   "@metadata": {
+   "authors": [
+   "Felix Obenauer"
+   ]
+   },
+   "sia-description": "Füge Bildern semantische Annotationen hinzu und 
frage diese ab",
+   "sia-comment": "Kommentar",
+   "sia-buttonannotate": "Dieses Bild annotieren",
+   "sia-resize": "Bildgröße ändern"
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345930
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ied4c6ffe9d8b4a6d3b635d2576c33c0857331549
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/SemanticImageAnnotator
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...SocialLogin[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345931 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I66f69b02c7f76b2cb1177222841819b164749ae9
---
M i18n/ru.json
M package.json
2 files changed, 31 insertions(+), 31 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/SocialLogin 
refs/changes/31/345931/1

diff --git a/i18n/ru.json b/i18n/ru.json
index 664f0de..7fcad42 100644
--- a/i18n/ru.json
+++ b/i18n/ru.json
@@ -1,23 +1,23 @@
 {
-"@metadata": {
-"authors": []
-},
-"sl": "Социальная авторизация",
-"sl-desc": "Добавляет возможность входа через социальные сети Facebook, 
ВКонтакте, Google и другие, используя протокол OAuth 2.0.",
-"sl-have-account": "Если у вас уже есть аккаунт на сайте и вы хотите 
объединить его с аккаунтом выбранной службы, то войдите, используя форму ниже.",
-"sl-havenot-account": "Если у вас ещё нет аккаунта на сайте, то заполните 
регистрационную форму ниже.",
-"sl-unlink": "отсоединить",
-"sl-login-success": "Вы успешно авторизировались.",
-"sl-account-connected": "Ваш аккаунт объединён с аккаунтом «$1» службы 
$2.",
-"sl-sign-forms": "\n\t\t\t\t\t\t\ttd input {width: 
100%}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tЕсли у вас нет аккаунта, просто заполните предложенную 
регистрационную форму.\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tЛогин:\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tНастоящее
 имя:\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tEmail:\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tПароль:\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tПовторно:\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tЕсли у вас уже есть аккаунт и вы хотите 
присоединить его к аккаунту выбранной службы, просто заполните предложенную 
форму входа.\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tЛогин:\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tПароль:\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t",
-"sl-login-register": "\n\t\t\t\t\t\t\ttd input {width: 
100%}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tЕсли у вас нет аккаунта, просто заполните предложенную 
регистрационную форму.\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tЛогин:\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tНастоящее
 имя:\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tEmail:\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tПароль:\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tПовторно:\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tЕсли у вас уже есть аккаунт, просто 
заполните предложенную форму входа.\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tЛогин:\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tПароль:\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t",
-"sl-hacking": "Что-то пошло не так или вы пытаетесь выдать себя за того, 
кем вы не являетесь.",
-"sl-invalid-password": "Неправильный пароль.",
-"sl-passwords-not-equal": "Пароли не совпадают.",
-"sl-user-exist": "Имя $1 уже используется.",
-"sl-email-exist": "Email $1 уже используется.",
-"sl-user-not-exist": "Пользователя $1 не существует.",
-"sl-invalid-name": "Некорректный логин $1.",
-"sl-invalid-email": "Некорректный Email $1.",
-"sl-missing-param": "Не указан скрытый параметр $1 необходимый для 
подтверждения вашей личности."
+   "@metadata": {
+   "authors": []
+   },
+   "sl": "Социальная авторизация",
+   "sl-desc": "Добавляет возможность входа через социальные сети Facebook, 
ВКонтакте, Google и другие, используя протокол OAuth 2.0.",
+   "sl-have-account": "Если у вас уже есть аккаунт на сайте и вы хотите 
объединить его с аккаунтом выбранной службы, то войдите, используя форму ниже.",
+   "sl-havenot-account": "Если у вас ещё нет аккаунта на сайте, то 
заполните регистрационную форму ниже.",
+   "sl-unlink": "отсоединить",
+   "sl-login-success": "Вы успешно 

[MediaWiki-commits] [Gerrit] mediawiki...VisualChat[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345937 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I897d64948ceeddbeed5defde1a5569fdca3c
---
M i18n/en.json
M i18n/es.json
2 files changed, 6 insertions(+), 6 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/VisualChat 
refs/changes/37/345937/1

diff --git a/i18n/en.json b/i18n/en.json
index 4c9f8b3..9febaa4 100644
--- a/i18n/en.json
+++ b/i18n/en.json
@@ -3,5 +3,5 @@
"authors": [
"Miguel2706"
]
-   },
+   }
 }
diff --git a/i18n/es.json b/i18n/es.json
index 7ac6c2f..9febaa4 100644
--- a/i18n/es.json
+++ b/i18n/es.json
@@ -1,7 +1,7 @@
 {
-"@metadata": {
-"authors": [
-"Miguel2706"
-]
-},
+   "@metadata": {
+   "authors": [
+   "Miguel2706"
+   ]
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345937
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I897d64948ceeddbeed5defde1a5569fdca3c
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/VisualChat
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...WantedPagesFromNS[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345939 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: Ida58f9bba278e34b65aaa7d84b90d5ee58e65e36
---
M i18n/pl.json
1 file changed, 9 insertions(+), 9 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/WantedPagesFromNS 
refs/changes/39/345939/1

diff --git a/i18n/pl.json b/i18n/pl.json
index 3843004..6fb8004 100644
--- a/i18n/pl.json
+++ b/i18n/pl.json
@@ -1,11 +1,11 @@
 {
-"@metadata": {
-"authors": [
-"Kazimierz Król"
-]
-},
-"wpfromns-desc": "Lista potrzebnych stron z przestrzeni nazw",
-"wpfromns-links": "{{PLURAL:$1|1 link|$1 linki|$1 linków}}",
-"wpfromns-nons": "WantedPagesFromNS: nie podano przestrzeni nazw 
(namespace)!",
-"wpfromns-nores": "Brak stron do wyświetlenia."
+   "@metadata": {
+   "authors": [
+   "Kazimierz Król"
+   ]
+   },
+   "wpfromns-desc": "Lista potrzebnych stron z przestrzeni nazw",
+   "wpfromns-links": "{{PLURAL:$1|1 link|$1 linki|$1 linków}}",
+   "wpfromns-nons": "WantedPagesFromNS: nie podano przestrzeni nazw 
(namespace)!",
+   "wpfromns-nores": "Brak stron do wyświetlenia."
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345939
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ida58f9bba278e34b65aaa7d84b90d5ee58e65e36
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/WantedPagesFromNS
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...TimeMachine[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345934 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: Ia5326b63f07384ece016c02d6fa5d0f3ef47b444
---
M i18n/es.json
M i18n/qqq.json
2 files changed, 24 insertions(+), 24 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/TimeMachine 
refs/changes/34/345934/1

diff --git a/i18n/es.json b/i18n/es.json
index 123e284..a893c1f 100644
--- a/i18n/es.json
+++ b/i18n/es.json
@@ -1,14 +1,14 @@
 {
-"@metadata": {
-"authors": [
-"Luis Felipe Schenone"
-]
-},
-"timemachine": "Máquina del tiempo",
-"timemachine-desc": "Luego de seleccionar una fecha en 
[[Especial:MáquinaDelTiempo]], permite navegar el contenido de la wiki como era 
en esa fecha.",
-"timemachine-p1": "Introduce una fecha para ver la wiki tal como era en 
esa fecha.",
-"timemachine-button1": "Ir a esta fecha",
-"timemachine-p2": "Nótese que sólo el contenido de la wiki cambiará. El 
estilo, barra de contenidos, pue de página y otros elementos pemanecerán 
iguales.",
-"timemachine-p3": "Para volver a ver la wiki normalmente, haz click en el 
botón de abajo, o borra tus cookies",
-"timemachine-button2": "Volver al presente"
+   "@metadata": {
+   "authors": [
+   "Luis Felipe Schenone"
+   ]
+   },
+   "timemachine": "Máquina del tiempo",
+   "timemachine-desc": "Luego de seleccionar una fecha en 
[[Especial:MáquinaDelTiempo]], permite navegar el contenido de la wiki como era 
en esa fecha.",
+   "timemachine-p1": "Introduce una fecha para ver la wiki tal como era en 
esa fecha.",
+   "timemachine-button1": "Ir a esta fecha",
+   "timemachine-p2": "Nótese que sólo el contenido de la wiki cambiará. El 
estilo, barra de contenidos, pue de página y otros elementos pemanecerán 
iguales.",
+   "timemachine-p3": "Para volver a ver la wiki normalmente, haz click en 
el botón de abajo, o borra tus cookies",
+   "timemachine-button2": "Volver al presente"
 }
diff --git a/i18n/qqq.json b/i18n/qqq.json
index 817f1aa..6c65011 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -1,14 +1,14 @@
 {
-"@metadata": {
-"authors": [
-"Luis Felipe Schenone"
-]
-},
-"timemachine": "Time Machine",
-"timemachine-desc": 
"{{desc|name=TimeMachine|url=https://www.mediawiki.org/wiki/Extension:TimeMachine}};,
-"timemachine-p1": "First text in Special:TimeMachine, explaining what to 
do with the form below.",
-"timemachine-button1": "Text in the button right next to the field where 
the user inputs the date.",
-"timemachine-p2": "Second text in Special:TimeMachine, with a commentary 
on how it works.",
-"timemachine-p3": "Third text in Special:TimeMachine, explaining what the 
button below does.",
-"timemachine-button2": "Text in the button that returns the wiki to 
normal."
+   "@metadata": {
+   "authors": [
+   "Luis Felipe Schenone"
+   ]
+   },
+   "timemachine": "Time Machine",
+   "timemachine-desc": 
"{{desc|name=TimeMachine|url=https://www.mediawiki.org/wiki/Extension:TimeMachine}};,
+   "timemachine-p1": "First text in Special:TimeMachine, explaining what 
to do with the form below.",
+   "timemachine-button1": "Text in the button right next to the field 
where the user inputs the date.",
+   "timemachine-p2": "Second text in Special:TimeMachine, with a 
commentary on how it works.",
+   "timemachine-p3": "Third text in Special:TimeMachine, explaining what 
the button below does.",
+   "timemachine-button2": "Text in the button that returns the wiki to 
normal."
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345934
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia5326b63f07384ece016c02d6fa5d0f3ef47b444
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/TimeMachine
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...UserStatus[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345936 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I20a63945b91f27aa55b4587a7b2e78e69d136972
---
M i18n/fi.json
1 file changed, 37 insertions(+), 37 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/UserStatus 
refs/changes/36/345936/1

diff --git a/i18n/fi.json b/i18n/fi.json
index 248c195..0ca4e13 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,39 +1,39 @@
 {
-"@metadata": {
-"authors": [
-"Jack Phoenix "
-]
-},
-"userstatus-network-thoughts": "Ajatuksia aiheesta $1",
-"userstatus-back-to-network": " Takaisin verkostoon",
-"userstatus-showing-thoughts": "{{PLURAL:$2|Näytetään yksi 
ajatus|Näytetään $1 - $2 ajatusta; yhteensä $3}}.",
-"userstatus-prev": "edell.",
-"userstatus-next": "seur.",
-"userstatus-btn-add": "lisää",
-"userstatus-view-all-updates": "Katso kaikki päivitykset aiheesta $1",
-"userstatus-delete": "Poista",
-"userstatus-ago": "$1 sitten",
-"userstatus-time-days": "{{PLURAL:$1|yksi päivä|$1 päivää}}",
-"userstatus-time-hours": "{{PLURAL:$1|yksi tunti|$1 tuntia}}",
-"userstatus-time-minutes": "{{PLURAL:$1|yksi minuutti|$1 minuuttia}}",
-"userstatus-time-seconds": "{{PLURAL:$1|yksi sekunti|$1 sekuntia}}",
-"userstatus-no-updates": "Päivityksiä ei ole.",
-"userstatus-woops": "Ups!",
-"userstatus-no-user": "Käyttäjää, jota yrität tarkastella, ei ole 
olemassa.",
-"userstatus-your-thoughts": "Ajatuksiasi",
-"userstatus-user-thoughts": "Käyttäjän $1 ajatuksia",
-"userstatus-user-profile": " Katso käyttäjän $1 profiili",
-"userstatus-back-your-profile": " Takaisin profiiliisi",
-"userstatus-back-user-profile": "Takaisin käyttäjän $1 profiiliin",
-"userstatus-all-team-updates": "Kaikki päivitykset aiheesta $1",
-"userstatus-num-agree": "{{PLURAL:$1|Yksi henkilö on samaa mieltä|$1 
henkilöä ovat samaa mieltä}}",
-"userstatus-agree": "ole samaa mieltä",
-"userstatus-see-who-agrees": "katso, ketkä muut ovat samaa mieltä",
-"userstatus-invalid-link": "Kelpaamaton linkki",
-"userstatus-who-agrees": "Samaa mieltä ovat",
-"userstatus-nobody-agrees": "Kukaan ei ole samaa mieltä tämän ajatuksen 
kanssa",
-"userstatus-no-new-thoughts": "Ajatuksia ei ole. Lisää yksi!",
-"userstatus-just-added": "äskettäin lisätty",
-"userstatus-confirm-delete": "Haluatko varmasti poistaa tämän ajatuksen?",
-"right-delete-status-updates": "Poistaa käyttäjien tilapäivityksiä"
+   "@metadata": {
+   "authors": [
+   "Jack Phoenix "
+   ]
+   },
+   "userstatus-network-thoughts": "Ajatuksia aiheesta $1",
+   "userstatus-back-to-network": " Takaisin verkostoon",
+   "userstatus-showing-thoughts": "{{PLURAL:$2|Näytetään yksi 
ajatus|Näytetään $1 - $2 ajatusta; yhteensä $3}}.",
+   "userstatus-prev": "edell.",
+   "userstatus-next": "seur.",
+   "userstatus-btn-add": "lisää",
+   "userstatus-view-all-updates": "Katso kaikki päivitykset aiheesta $1",
+   "userstatus-delete": "Poista",
+   "userstatus-ago": "$1 sitten",
+   "userstatus-time-days": "{{PLURAL:$1|yksi päivä|$1 päivää}}",
+   "userstatus-time-hours": "{{PLURAL:$1|yksi tunti|$1 tuntia}}",
+   "userstatus-time-minutes": "{{PLURAL:$1|yksi minuutti|$1 minuuttia}}",
+   "userstatus-time-seconds": "{{PLURAL:$1|yksi sekunti|$1 sekuntia}}",
+   "userstatus-no-updates": "Päivityksiä ei ole.",
+   "userstatus-woops": "Ups!",
+   "userstatus-no-user": "Käyttäjää, jota yrität tarkastella, ei ole 
olemassa.",
+   "userstatus-your-thoughts": "Ajatuksiasi",
+   "userstatus-user-thoughts": "Käyttäjän $1 ajatuksia",
+   "userstatus-user-profile": " Katso käyttäjän $1 profiili",
+   "userstatus-back-your-profile": " Takaisin profiiliisi",
+   "userstatus-back-user-profile": "Takaisin käyttäjän $1 profiiliin",
+   "userstatus-all-team-updates": "Kaikki päivitykset aiheesta $1",
+   "userstatus-num-agree": "{{PLURAL:$1|Yksi henkilö on samaa mieltä|$1 
henkilöä ovat samaa mieltä}}",
+   "userstatus-agree": "ole samaa mieltä",
+   "userstatus-see-who-agrees": "katso, ketkä muut ovat samaa mieltä",
+   "userstatus-invalid-link": "Kelpaamaton linkki",
+   "userstatus-who-agrees": "Samaa mieltä ovat",
+   "userstatus-nobody-agrees": "Kukaan ei ole samaa mieltä tämän ajatuksen 
kanssa",
+   "userstatus-no-new-thoughts": "Ajatuksia ei ole. Lisää yksi!",
+   "userstatus-just-added": "äskettäin lisätty",
+   "userstatus-confirm-delete": "Haluatko varmasti poistaa tämän 
ajatuksen?",
+   "right-delete-status-updates": "Poistaa käyttäjien tilapäivityksiä"
 }

-- 
To view, visit 

[MediaWiki-commits] [Gerrit] mediawiki...StaffEdits[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345933 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I5f6b314c831a902815e8ffc86a47806b83005aef
---
M i18n/fi.json
M i18n/qqq.json
2 files changed, 24 insertions(+), 24 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/StaffEdits 
refs/changes/33/345933/1

diff --git a/i18n/fi.json b/i18n/fi.json
index cf8682f..9625383 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,14 +1,14 @@
 {
-"@metadata": {
-"authors": [
-"Jack Phoenix "
-]
-},
-"staffedit-desc": "Mahdollistaa muokkausten merkitsemisen virallisiksi 
[[Special:ListUsers/staff|henkilökunnan]] muokkauksiksi muokkausnäkymässä",
-"right-staffedit": "Merkitä muokkauksia virallisiksi henkilökunnan 
tekemiksi muokkauksiksi",
-"swstaffedit": "Viralliseksi ShoutWikin henkilökunnan muokkaukseksi",
-"staffedit-selector": "Merkitse tämä muokkaus:",
-"staffedit-none": "ei miksikään",
-"tag-swstaffedit": "[[s:w:fi:ShoutWikin henkilökunta|ShoutWikin 
henkilökunnan muokkaus]]",
-"tag-swstaffedit-description": "[[s:w:fi:ShoutWikin 
henkilökunta|ShoutWikin henkilökunnan]] virallisessa roolissaan tekemä muokkaus"
+   "@metadata": {
+   "authors": [
+   "Jack Phoenix "
+   ]
+   },
+   "staffedit-desc": "Mahdollistaa muokkausten merkitsemisen virallisiksi 
[[Special:ListUsers/staff|henkilökunnan]] muokkauksiksi muokkausnäkymässä",
+   "right-staffedit": "Merkitä muokkauksia virallisiksi henkilökunnan 
tekemiksi muokkauksiksi",
+   "swstaffedit": "Viralliseksi ShoutWikin henkilökunnan muokkaukseksi",
+   "staffedit-selector": "Merkitse tämä muokkaus:",
+   "staffedit-none": "ei miksikään",
+   "tag-swstaffedit": "[[s:w:fi:ShoutWikin henkilökunta|ShoutWikin 
henkilökunnan muokkaus]]",
+   "tag-swstaffedit-description": "[[s:w:fi:ShoutWikin 
henkilökunta|ShoutWikin henkilökunnan]] virallisessa roolissaan tekemä muokkaus"
 }
diff --git a/i18n/qqq.json b/i18n/qqq.json
index 3fe1746..34fa6ce 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -1,14 +1,14 @@
 {
-"@metadata": {
-"authors": [
-"Jack Phoenix "
-]
-},
-"staffedit-desc": 
"{{desc|name=StaffEdits|url=https://www.mediawiki.org/wiki/Extension:StaffEdits}}\nDo
 not translate the \"Special:ListUsers/staff\" part of the link.",
-"right-staffedit": "{{doc-right|staffedit}}",
-"swstaffedit": "A drop-down menu choice, which indicates that the current 
edit will be tagged as an officail staff edit. See also 
[[MediaWiki:Staffedit-selector]], [[MediaWiki:Staffedit-none]] and 
[[mw:Extension:StaffEdits|the extension documentation and screenshots on 
MediaWiki.org]].",
-"staffedit-selector": "Label for the drop-down menu shown on the edit 
view; in the user interface, this is followed by a drop-down menu (HTML 
select element) which contains items such as 
[[MediaWiki:Staffedit-none]], [[MediaWiki:Swstaffedit]], etc.",
-"staffedit-none": "Default drop-down menu choice, which indicates that no 
tag will be applied to the edit. See also [[MediaWiki:Staffedit-selector]], 
[[MediaWiki:Swstaffedit]] and [[mw:Extension:StaffEdits|the extension 
documentation and screenshots on MediaWiki.org]].",
-"tag-swstaffedit": "Tag, as shown on [[Special:RecentChanges]]. See the 
[[commons:File:StaffEdits.png|screenshot]] for more info on how it's used.",
-"tag-swstaffedit-description": "Tag description for the 
[[MediaWiki:Tag-swstaffedit]] tag; shown on [[Special:Tags]]"
+   "@metadata": {
+   "authors": [
+   "Jack Phoenix "
+   ]
+   },
+   "staffedit-desc": 
"{{desc|name=StaffEdits|url=https://www.mediawiki.org/wiki/Extension:StaffEdits}}\nDo
 not translate the \"Special:ListUsers/staff\" part of the link.",
+   "right-staffedit": "{{doc-right|staffedit}}",
+   "swstaffedit": "A drop-down menu choice, which indicates that the 
current edit will be tagged as an officail staff edit. See also 
[[MediaWiki:Staffedit-selector]], [[MediaWiki:Staffedit-none]] and 
[[mw:Extension:StaffEdits|the extension documentation and screenshots on 
MediaWiki.org]].",
+   "staffedit-selector": "Label for the drop-down menu shown on the edit 
view; in the user interface, this is followed by a drop-down menu (HTML 
select element) which contains items such as 
[[MediaWiki:Staffedit-none]], [[MediaWiki:Swstaffedit]], etc.",
+   "staffedit-none": "Default drop-down menu choice, which indicates that 
no tag will be applied to the edit. See also [[MediaWiki:Staffedit-selector]], 
[[MediaWiki:Swstaffedit]] and [[mw:Extension:StaffEdits|the extension 
documentation 

[MediaWiki-commits] [Gerrit] mediawiki...PhpTagsMaps[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345926 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I0310fa5f906c3b8d825b1aa3a6c677f727c652b2
---
M i18n/ar.json
M i18n/ast.json
M i18n/br.json
M i18n/de.json
M i18n/en-gb.json
M i18n/es.json
M i18n/fa.json
M i18n/fi.json
M i18n/fr.json
M i18n/gl.json
M i18n/hsb.json
M i18n/it.json
M i18n/ja.json
M i18n/ko.json
M i18n/lb.json
M i18n/mk.json
M i18n/nl.json
M i18n/qqq.json
M i18n/roa-tara.json
M i18n/ru.json
M i18n/sv.json
M i18n/uk.json
M i18n/zh-hans.json
23 files changed, 478 insertions(+), 478 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/PhpTagsMaps 
refs/changes/26/345926/1

diff --git a/i18n/ar.json b/i18n/ar.json
index b410571..63a6184 100644
--- a/i18n/ar.json
+++ b/i18n/ar.json
@@ -1,9 +1,9 @@
 {
-"@metadata": {
-"authors": [
-"ترجمان05"
-]
-},
-"multimaps-loading-map": "تحميل الخريطة...",
-"multimaps-method-error-unknown-action": "$1: فعل غير معروف"
+   "@metadata": {
+   "authors": [
+   "ترجمان05"
+   ]
+   },
+   "multimaps-loading-map": "تحميل الخريطة...",
+   "multimaps-method-error-unknown-action": "$1: فعل غير معروف"
 }
diff --git a/i18n/ast.json b/i18n/ast.json
index a165c8a..fe9a587 100644
--- a/i18n/ast.json
+++ b/i18n/ast.json
@@ -1,35 +1,35 @@
 {
-"@metadata": {
-"authors": [
-"Xuacu"
-]
-},
-"multimaps-desc": "Permite a los usuarios amosar datos de mapes y 
coordenaes usando múltiples servicios cartográficos",
-"multimaps-loading-map": "Cargando'l mapa...",
-"multimaps-mapservices-must-not-empty-array": "La variable \"$1\" nun pue 
ser una matriz balera",
-"multimaps-had-following-errors": "Al analizar los parámetros que se 
pasaron hebo los siguientes errores:",
-"multimaps-element-illegal-value": "pal parámetru \"$1\" especificose'l 
valor illegal \"$2\". Los valores válidos son: $3",
-"multimaps-element-more-parameters": "L'elementu del mapa \"$1\" pasó más 
parámetros de los esperaos:",
-"multimaps-element-parameters-not-processed": "los siguientes parámetros 
nun se procesaron: $1",
-"multimaps-circle-radius-not-defined": "hai que definir un radiu pal 
círculu",
-"multimaps-circle-wrong-number-parameters": "pal círculu hai que definir 
namái dos parámetros, les coordenaes del centru ya'l radiu. Pero 
{{PLURAL:$1|especificose un parámetru|especificáronse $1 parámetros}}",
-"multimaps-marker-incorrect-icon": "Diose un nome de ficheru incorreutu 
\"$1\" pal iconu de marcador",
-"multimaps-marker-incorrect-icon-url": "Dióse una URL incorreuta \"$1\" 
pal iconu del marcador.",
-"multimaps-marker-incorrect-icon-size": "Dióse un tamañu incorreutu \"$1\" 
pal iconu del marcador \"$2\".",
-"multimaps-marker-incorrect-icon-anchor": "Dióse un ancla incorreuta 
\"$1\" pal iconu del marcador \"$2\".",
-"multimaps-marker-incorrect-shadow-file": "Dióse un nome de ficheru 
incorreutu \"$1\" pa la solombra del iconu.",
-"multimaps-marker-incorrect-shadow-url": "Dióse una URL incorreuta \"$1\" 
pa la solombra del iconu.",
-"multimaps-marker-incorrect-shadow-size": "Dióse un tamañu incorreutu 
\"$1\" pa la solombra del iconu \"$2\".",
-"multimaps-marker-incorrect-shadow-anchor": "Dióse un ancla incorreuta 
\"$1\" pa la solombra del iconu \"$2\".",
-"multimaps-passed-unavailable-service": "Nun s'alcontró'l nome del 
serviciu \"$1\" na llista de servicios disponibles ($2). Úsose'l serviciu 
predetermináu \"$3\"",
-"multimaps-square-wrong-number-points": "les coordenaes del cuadráu tienen 
de contener namái dos puntos, pero {{PLURAL:$1|diose un puntu|dieronse $1 
puntos}}",
-"multimaps-unable-create-element": "Nun pue crease l'elementu del mapa 
\"$1\"",
-"multimaps-unable-parse-coordinates": "nun puen analizase les coordenaes 
xeográfiques \"$1\"",
-"multimaps-unable-parse-parameter": "nun pudo analizase'l parámetru \"$1\" 
col valor \"$2\"",
-"multimaps-unable-parse-radius": "el radiu del círculu tien de ser un 
valor numbéricu, pero especificó \"$1\"",
-"multimaps-unknown-class-for-service": "La clase \"$1\" definía pal 
serviciu nun pue alcontrase.",
-"multimaps-unknown-parameter": "Parámetru desconocíu: \"$1\"",
-"multimaps-error-incorrect-class-for-service": "Nun pue utilizase la clase 
\"$1\" definía pal serviciu.",
-"multimaps-method-error-unknown-action": "$1: Aición desconocía",
-"multimaps-method-error-unexpected-result": "$1: Resultáu inesperáu d'una 
función"
+   "@metadata": {
+   "authors": [
+   "Xuacu"
+   ]
+   },
+   "multimaps-desc": "Permite a los usuarios amosar datos de mapes y 
coordenaes usando múltiples servicios cartográficos",
+   

[MediaWiki-commits] [Gerrit] mediawiki...RelationLinks[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345928 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: Ic2b9693af11589959dd56ab2afb8349637eeaf63
---
M i18n/ast.json
M i18n/be-tarask.json
M i18n/de.json
M i18n/dsb.json
M i18n/es.json
M i18n/fr.json
M i18n/gl.json
M i18n/he.json
M i18n/hsb.json
M i18n/ia.json
M i18n/it.json
M i18n/ja.json
M i18n/ko.json
M i18n/ksh.json
M i18n/lb.json
M i18n/mk.json
M i18n/nl.json
M i18n/pl.json
M i18n/pms.json
M i18n/qqq.json
M i18n/tl.json
21 files changed, 127 insertions(+), 127 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/RelationLinks 
refs/changes/28/345928/1

diff --git a/i18n/ast.json b/i18n/ast.json
index c3c5f5d..6145123 100644
--- a/i18n/ast.json
+++ b/i18n/ast.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Xuacu"
-]
-},
-"relationlinks-desc": "Amiesta enllaces de rellación a la testera, que se 
pue usar pa la navegación y pa les referencies"
+   "@metadata": {
+   "authors": [
+   "Xuacu"
+   ]
+   },
+   "relationlinks-desc": "Amiesta enllaces de rellación a la testera, que 
se pue usar pa la navegación y pa les referencies"
 }
diff --git a/i18n/be-tarask.json b/i18n/be-tarask.json
index ec33e2e..e262952 100644
--- a/i18n/be-tarask.json
+++ b/i18n/be-tarask.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Wizardist"
-]
-},
-"relationlinks-desc": "Дадае тэг link rel у сэкцыю header для навігацыі і 
SEO"
+   "@metadata": {
+   "authors": [
+   "Wizardist"
+   ]
+   },
+   "relationlinks-desc": "Дадае тэг link rel у сэкцыю header для навігацыі 
і SEO"
 }
diff --git a/i18n/de.json b/i18n/de.json
index b584697..c0ac3f3 100644
--- a/i18n/de.json
+++ b/i18n/de.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Kghbln"
-]
-},
-"relationlinks-desc": "Fügt im Headerbereich versteckte Navigationslinks 
hinzu, die für die Navigation wie auch für die Suchmaschinenoptimierung genutzt 
werden können"
+   "@metadata": {
+   "authors": [
+   "Kghbln"
+   ]
+   },
+   "relationlinks-desc": "Fügt im Headerbereich versteckte 
Navigationslinks hinzu, die für die Navigation wie auch für die 
Suchmaschinenoptimierung genutzt werden können"
 }
diff --git a/i18n/dsb.json b/i18n/dsb.json
index 61aa6fb..6f44757 100644
--- a/i18n/dsb.json
+++ b/i18n/dsb.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Michawiki"
-]
-},
-"relationlinks-desc": "Pśidawa wótkaze z pomocu \"link rel\" do głowy 
dokumenta, kótarež daju seo za nawigaciju a optiměrowanje pytawow wužywaś"
+   "@metadata": {
+   "authors": [
+   "Michawiki"
+   ]
+   },
+   "relationlinks-desc": "Pśidawa wótkaze z pomocu \"link rel\" do głowy 
dokumenta, kótarež daju seo za nawigaciju a optiměrowanje pytawow wužywaś"
 }
diff --git a/i18n/es.json b/i18n/es.json
index 779b16f..7b531dc 100644
--- a/i18n/es.json
+++ b/i18n/es.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Armando-Martin"
-]
-},
-"relationlinks-desc": "Agrega un enlace ligado al encabezado, que puede 
utilizado para navegación y para optimización de búsquedas (SEO)"
+   "@metadata": {
+   "authors": [
+   "Armando-Martin"
+   ]
+   },
+   "relationlinks-desc": "Agrega un enlace ligado al encabezado, que puede 
utilizado para navegación y para optimización de búsquedas (SEO)"
 }
diff --git a/i18n/fr.json b/i18n/fr.json
index 058e85c..32b1e72 100644
--- a/i18n/fr.json
+++ b/i18n/fr.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Gomoko"
-]
-},
-"relationlinks-desc": "Ajoute un lien lié à l'entête, qui peut être 
utilisé pour la navigation et pour le référencement"
+   "@metadata": {
+   "authors": [
+   "Gomoko"
+   ]
+   },
+   "relationlinks-desc": "Ajoute un lien lié à l'entête, qui peut être 
utilisé pour la navigation et pour le référencement"
 }
diff --git a/i18n/gl.json b/i18n/gl.json
index a003f0f..84aca31 100644
--- a/i18n/gl.json
+++ b/i18n/gl.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Toliño"
-]
-},
-"relationlinks-desc": "Engade unha ligazón ligada á cabeceira que se pode 
empregar para a navegación e para as referencias"
+   "@metadata": {
+   "authors": [
+   "Toliño"
+   ]
+   },
+   "relationlinks-desc": "Engade unha ligazón ligada á cabeceira que se 
pode 

[MediaWiki-commits] [Gerrit] mediawiki...RandomGameUnit[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345927 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I9526bcf2da3c2b8ff529c14a16e122bcf76d9414
---
M i18n/fi.json
M i18n/nl.json
M i18n/qqq.json
3 files changed, 12 insertions(+), 12 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/RandomGameUnit 
refs/changes/27/345927/1

diff --git a/i18n/fi.json b/i18n/fi.json
index 821277b..6765df2 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -7,4 +7,4 @@
"game-unit-poll-title": "Ota osaa äänestykseen",
"game-unit-quiz-title": "Pelaa tietovisapeliä",
"game-unit-picturegame-title": "Pelaa kuvapeliä"
-}
\ No newline at end of file
+}
diff --git a/i18n/nl.json b/i18n/nl.json
index 69f2ee1..0a0bec2 100644
--- a/i18n/nl.json
+++ b/i18n/nl.json
@@ -7,4 +7,4 @@
"game-unit-poll-title": "Doe mee aan een peiling",
"game-unit-quiz-title": "Speel het quiz spel",
"game-unit-picturegame-title": "Speel het foto spel"
-}
\ No newline at end of file
+}
diff --git a/i18n/qqq.json b/i18n/qqq.json
index 4ee7a76..7cfc693 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -1,11 +1,11 @@
 {
-  "@metadata": {
-"authors": [
-  "Lewis Cawte "
-]
-  },
-  "game-unit-desc": 
"{{desc|name=RandomGameUnit|url=https://www.mediawiki.org/wiki/Extension:RandomGameUnit}};,
-  "game-unit-poll-title": "Take a Poll",
-  "game-unit-quiz-title": "Play the Quiz Game",
-  "game-unit-picturegame-title": "Play the Picture Game"
-}
\ No newline at end of file
+   "@metadata": {
+   "authors": [
+   "Lewis Cawte "
+   ]
+   },
+   "game-unit-desc": 
"{{desc|name=RandomGameUnit|url=https://www.mediawiki.org/wiki/Extension:RandomGameUnit}};,
+   "game-unit-poll-title": "Take a Poll",
+   "game-unit-quiz-title": "Play the Quiz Game",
+   "game-unit-picturegame-title": "Play the Picture Game"
+}

-- 
To view, visit https://gerrit.wikimedia.org/r/345927
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9526bcf2da3c2b8ff529c14a16e122bcf76d9414
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/RandomGameUnit
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...NSFileRepo[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345924 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: Id4ab586b14b35ba196c0788d23f85e7a6da94547
---
M i18n/imgauth/qqq.json
1 file changed, 16 insertions(+), 16 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/NSFileRepo 
refs/changes/24/345924/1

diff --git a/i18n/imgauth/qqq.json b/i18n/imgauth/qqq.json
index 19f1ac8..09ffbc0 100644
--- a/i18n/imgauth/qqq.json
+++ b/i18n/imgauth/qqq.json
@@ -1,18 +1,18 @@
 {
-"@metadata": {
-"authors": [
-"Jack D. Pond"
-]
-},
-"img-auth-desc": "[[Image Authorization]] script, see 
http://www.mediawiki.org/wiki/Manual:Image_Authorization;,
-"img-auth-accessdenied": "[[Image Authorization]] Access Denied",
-"img-auth-nopathinfo": "[[Image Authorization]] Missing PATH_INFO - see 
english description",
-"img-auth-notindir": "[[Image Authorization]] when the specified path is 
not in upload directory.",
-"img-auth-badtitle": "[[Image Authorization]] bad title, parameter `$1` is 
the invalid title",
-"img-auth-nologinnWL": "[[Image Authorization]] logged in and file not 
whitelisted. Parameter `$1` is the file not in whitelist.",
-"img-auth-nofile": "[[Image Authorization]] non existent file, parameter 
`$1` is the file that does not exist.",
-"img-auth-isdir": "[[Image Authorization]] trying to access a directory 
instead of a file, parameter`$1` is the directory.",
-"img-auth-streaming": "[[Image Authorization]] is now streaming file 
specified by parameter `$1`.",
-"img-auth-public": "[[Image Authorization]] an error message when the 
admin has configured the wiki to be a public wiki, but is using img_auth script 
- normally this is a configuration error, except when special restriction 
extensions are used",
-"img-auth-noread": "[[Image Authorization]] User does not have access to 
read file, parameter `$1` is the file"
+   "@metadata": {
+   "authors": [
+   "Jack D. Pond"
+   ]
+   },
+   "img-auth-desc": "[[Image Authorization]] script, see 
http://www.mediawiki.org/wiki/Manual:Image_Authorization;,
+   "img-auth-accessdenied": "[[Image Authorization]] Access Denied",
+   "img-auth-nopathinfo": "[[Image Authorization]] Missing PATH_INFO - see 
english description",
+   "img-auth-notindir": "[[Image Authorization]] when the specified path 
is not in upload directory.",
+   "img-auth-badtitle": "[[Image Authorization]] bad title, parameter `$1` 
is the invalid title",
+   "img-auth-nologinnWL": "[[Image Authorization]] logged in and file not 
whitelisted. Parameter `$1` is the file not in whitelist.",
+   "img-auth-nofile": "[[Image Authorization]] non existent file, 
parameter `$1` is the file that does not exist.",
+   "img-auth-isdir": "[[Image Authorization]] trying to access a directory 
instead of a file, parameter`$1` is the directory.",
+   "img-auth-streaming": "[[Image Authorization]] is now streaming file 
specified by parameter `$1`.",
+   "img-auth-public": "[[Image Authorization]] an error message when the 
admin has configured the wiki to be a public wiki, but is using img_auth script 
- normally this is a configuration error, except when special restriction 
extensions are used",
+   "img-auth-noread": "[[Image Authorization]] User does not have access 
to read file, parameter `$1` is the file"
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345924
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Id4ab586b14b35ba196c0788d23f85e7a6da94547
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/NSFileRepo
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...NetworkAuth[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345922 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: Ia04167d2cdf5b35a9a392f53836cb0f71ab1cca0
---
M i18n/ar.json
M i18n/arz.json
M i18n/br.json
M i18n/bs.json
M i18n/dsb.json
M i18n/el.json
M i18n/eo.json
M i18n/eu.json
M i18n/fi.json
M i18n/gsw.json
M i18n/hil.json
M i18n/hsb.json
M i18n/hu.json
M i18n/id.json
M i18n/ja.json
M i18n/ms.json
M i18n/nds.json
M i18n/nl.json
M i18n/nn.json
M i18n/pl.json
M i18n/pms.json
M i18n/roa-tara.json
M i18n/sk.json
M i18n/sq.json
M i18n/sr-ec.json
M i18n/sr-el.json
M i18n/su.json
M i18n/tl.json
M i18n/tr.json
M i18n/vec.json
M i18n/vi.json
M package.json
32 files changed, 213 insertions(+), 213 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/NetworkAuth 
refs/changes/22/345922/1

diff --git a/i18n/ar.json b/i18n/ar.json
index e29f133..01c6053 100644
--- a/i18n/ar.json
+++ b/i18n/ar.json
@@ -1,10 +1,10 @@
 {
-"@metadata": {
-"authors": [
-"Meno25"
-]
-},
-"networkauth-desc": "يسمح لك بتأكيد المستخدمين اعتمادا على معلومات الشبكة",
-"networkauth-name": "أوث الشبكة",
-"networkauth-purltext": "أوث الشبكة [$1@$2]"
+   "@metadata": {
+   "authors": [
+   "Meno25"
+   ]
+   },
+   "networkauth-desc": "يسمح لك بتأكيد المستخدمين اعتمادا على معلومات 
الشبكة",
+   "networkauth-name": "أوث الشبكة",
+   "networkauth-purltext": "أوث الشبكة [$1@$2]"
 }
diff --git a/i18n/arz.json b/i18n/arz.json
index ffe757a..5ddfb3f 100644
--- a/i18n/arz.json
+++ b/i18n/arz.json
@@ -1,11 +1,11 @@
 {
-"@metadata": {
-"authors": [
-"Ghaly",
-"Meno25"
-]
-},
-"networkauth-desc": "يسمح لك بتأكيد اليوزرز اعتمادا على معلومات الشبكة",
-"networkauth-name": "أوث الشبكة",
-"networkauth-purltext": "أوث الشبكة [$1@$2]"
+   "@metadata": {
+   "authors": [
+   "Ghaly",
+   "Meno25"
+   ]
+   },
+   "networkauth-desc": "يسمح لك بتأكيد اليوزرز اعتمادا على معلومات الشبكة",
+   "networkauth-name": "أوث الشبكة",
+   "networkauth-purltext": "أوث الشبكة [$1@$2]"
 }
diff --git a/i18n/br.json b/i18n/br.json
index 18e971c..7f8b6e1 100644
--- a/i18n/br.json
+++ b/i18n/br.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Fulup"
-]
-},
-"networkauth-desc": "Talvezout a ra da wiriekaat an implijerien oc'h en em 
ziazezañ war titouroù zo er rouedad"
+   "@metadata": {
+   "authors": [
+   "Fulup"
+   ]
+   },
+   "networkauth-desc": "Talvezout a ra da wiriekaat an implijerien oc'h en 
em ziazezañ war titouroù zo er rouedad"
 }
diff --git a/i18n/bs.json b/i18n/bs.json
index 85e2803..5130fac 100644
--- a/i18n/bs.json
+++ b/i18n/bs.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"CERminator"
-]
-},
-"networkauth-desc": "Omogućava Vam da potvrdite korisnike na osnovu 
mrežnih podataka"
+   "@metadata": {
+   "authors": [
+   "CERminator"
+   ]
+   },
+   "networkauth-desc": "Omogućava Vam da potvrdite korisnike na osnovu 
mrežnih podataka"
 }
diff --git a/i18n/dsb.json b/i18n/dsb.json
index 9ff1d02..3dcd769 100644
--- a/i18n/dsb.json
+++ b/i18n/dsb.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Michawiki"
-]
-},
-"networkauth-desc": "Dowólujo awtentifcěrowanje wužywarjow na zakłaźe 
seśowych informacijow"
+   "@metadata": {
+   "authors": [
+   "Michawiki"
+   ]
+   },
+   "networkauth-desc": "Dowólujo awtentifcěrowanje wužywarjow na zakłaźe 
seśowych informacijow"
 }
diff --git a/i18n/el.json b/i18n/el.json
index 1f71487..d209791 100644
--- a/i18n/el.json
+++ b/i18n/el.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Omnipaedista"
-]
-},
-"networkauth-desc": "Σας επιτρέπει την πιστοποίηση χρηστών βάσει 
πληροφοριών δικτύου"
+   "@metadata": {
+   "authors": [
+   "Omnipaedista"
+   ]
+   },
+   "networkauth-desc": "Σας επιτρέπει την πιστοποίηση χρηστών βάσει 
πληροφοριών δικτύου"
 }
diff --git a/i18n/eo.json b/i18n/eo.json
index 4fd9794..9638933 100644
--- a/i18n/eo.json
+++ b/i18n/eo.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Yekrats"
-]
-},
-"networkauth-desc": "Rajtigas al vi aŭtentokontroli uzantojn laŭ interreta 
informo"
+   "@metadata": {
+   "authors": [
+   "Yekrats"
+   ]
+   },
+   "networkauth-desc": "Rajtigas al vi aŭtentokontroli 

[MediaWiki-commits] [Gerrit] mediawiki...MultiUpload[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345921 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I2ff5ae06d220a0874fa012884685239fe8a1b09c
---
M i18n/fi.json
M package.json
2 files changed, 13 insertions(+), 13 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/MultiUpload 
refs/changes/21/345921/1

diff --git a/i18n/fi.json b/i18n/fi.json
index eed0de9..57ae879 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,9 +1,9 @@
 {
-"@metadata": {
-"authors": [
-"Jack Phoenix "
-]
-},
+   "@metadata": {
+   "authors": [
+   "Jack Phoenix "
+   ]
+   },
"multiupload": "Tallenna useampia tiedostoja",
"multiupload-desc": "[[Special:MultiUpload|Toimintosivu useampien 
tiedostojen tallentamiseen kerralla]]",
"multiupload-text": "Käytä allaolevaa lomaketta useamman tiedoston 
tallentamiseen kerralla.\nVoit katsella luetteloa aiemmin tallennetuista 
tiedostoista sivulla [[Special:FileList|tiedostoluettelo]]. Kaikki tallennukset 
kirjataan myös [[Special:Log/upload|tallennuslokiin]] ja tiedostojen poistot 
[[Special:Log/delete|poistolokiin]].\n\nJotta saat tiedoston näkymään sivulla, 
käytä jotakin seuraavista muotoiluista linkkinä siihen:\n* 
[[{{ns:file}}:Tiedosto.jpg]]
 käyttääksesi tiedoston kokonaista versiota\n* 
[[{{ns:file}}:Tiedosto.png|200px|thumb|left|teksti
 tähän]] käyttääksesi tiedostoa sovitettuna 200 
kuvapistettä leveään laatikkoon kuvatekstillä \"teksti tähän\"\n* 
[[{{ns:media}}:Tiedosto.ogg]]
 halutessasi suoran linkin tiedostoon ilman että tiedostoa 
näytetään.\n\nValittuasi tiedoston tämä sivu laajenee ja sallii sinun valita 
useampia tiedostoja ladattavaksi.\n\nPurkaaksesi tiedoston, jonka 
tiedostotyyppi on .zip, .tar, .tar.gz, 
tai .tgz ja ladataksesi sen sisältämät tiedostot, valitse 
pakettitiedosto ja käytä ilmaantuvaa \"{{int:multiupload-unpack-button}}\" 
-painiketta.",
diff --git a/package.json b/package.json
index ba95e60..060521f 100644
--- a/package.json
+++ b/package.json
@@ -1,10 +1,10 @@
 {
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "1.0.1",
-"grunt-banana-checker": "0.5.0",
-"grunt-jsonlint": "1.0.7"
-  }
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "1.0.1",
+   "grunt-banana-checker": "0.5.0",
+   "grunt-jsonlint": "1.0.7"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345921
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I2ff5ae06d220a0874fa012884685239fe8a1b09c
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/MultiUpload
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...NewestPages[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345923 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: Ib40643478d97a9405b0dfa41a9d31756283b2dff
---
M i18n/got.json
M package.json
2 files changed, 15 insertions(+), 15 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/NewestPages 
refs/changes/23/345923/1

diff --git a/i18n/got.json b/i18n/got.json
index 8faa844..20b18fd 100644
--- a/i18n/got.json
+++ b/i18n/got.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Jocke Pirat"
-]
-},
-"newestpages-namespace": "Seidofera:"
+   "@metadata": {
+   "authors": [
+   "Jocke Pirat"
+   ]
+   },
+   "newestpages-namespace": "Seidofera:"
 }
diff --git a/package.json b/package.json
index 41cecca..ced56ab 100644
--- a/package.json
+++ b/package.json
@@ -1,11 +1,11 @@
 {
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "0.4.5",
-"grunt-cli": "0.1.13",
-"grunt-banana-checker": "0.4.0",
-"grunt-jsonlint": "1.0.7"
-  }
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "0.4.5",
+   "grunt-cli": "0.1.13",
+   "grunt-banana-checker": "0.4.0",
+   "grunt-jsonlint": "1.0.7"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345923
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib40643478d97a9405b0dfa41a9d31756283b2dff
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/NewestPages
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...Interwiki[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345915 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I9db480b4ece952d178a9b661e3ab6b387a35b012
---
M i18n/got.json
M package.json
2 files changed, 19 insertions(+), 19 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Interwiki 
refs/changes/15/345915/1

diff --git a/i18n/got.json b/i18n/got.json
index f03255e..13fbc00 100644
--- a/i18n/got.json
+++ b/i18n/got.json
@@ -1,9 +1,9 @@
 {
-"@metadata": {
-"authors": [
-"Jocke Pirat",
-"Omnipaedista"
-]
-},
-"interwiki_reasonfield": "̰̹̹̰͆͂̽:"
+   "@metadata": {
+   "authors": [
+   "Jocke Pirat",
+   "Omnipaedista"
+   ]
+   },
+   "interwiki_reasonfield": "̰̹̹̰͆͂̽:"
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index ab30448..954c171 100644
--- a/package.json
+++ b/package.json
@@ -1,14 +1,14 @@
 {
-  "private": true,
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "0.4.5",
-"grunt-cli": "0.1.13",
-"grunt-contrib-jshint": "0.11.3",
-"grunt-banana-checker": "0.4.0",
-"grunt-jscs": "2.1.0",
-"grunt-jsonlint": "1.0.7"
-  }
+   "private": true,
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "0.4.5",
+   "grunt-cli": "0.1.13",
+   "grunt-contrib-jshint": "0.11.3",
+   "grunt-banana-checker": "0.4.0",
+   "grunt-jscs": "2.1.0",
+   "grunt-jsonlint": "1.0.7"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345915
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9db480b4ece952d178a9b661e3ab6b387a35b012
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Interwiki
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...MediaWikiAuth[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345919 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I4920ce014270f2b629a224857669a424c927f80c
---
M i18n/fi.json
M i18n/nl.json
M package.json
3 files changed, 29 insertions(+), 29 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/MediaWikiAuth 
refs/changes/19/345919/1

diff --git a/i18n/fi.json b/i18n/fi.json
index 4100abd..7c4ee25 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,12 +1,12 @@
 {
-"@metadata": {
-"authors": [
-"Jack Phoenix"
-]
-},
-"mwa-autocreate-blocked": "Tunnuksen automaattinen luominen tälle IP:lle 
on estetty etäwikissä.",
-"mwa-error-unknown": "Tuntematon virhe kirjautuessa sisään etäwikiin.",
-"mwa-must-be-imported": "Tunnuksesi täytyy tuoda. http://www.wikia.com/wiki/Special:UserLogin\;>Aseta itsellesi uusi 
salasana Wikiassa, ja sen jälkeen käytä uutta salasanaa täällä.\nHuomioi: Sinun tulee käyttää salasanaa, jonka Wikia lähettää sinulle 
sähköpostitse kirjautuessasi sisään sinne. Sen jälkeen sinua pyydetään 
asettamaan uusi salasana, jota voi käyttää täällä.",
-"mwa-resetpass": "Et voi kirjautua sisään tilapäisellä salasanalla. Ole 
hyvä ja käytä sitä etäwikissä luodaksesi pysyvän salasanan.",
-"mwa-wait": "Ole hyvä ja odota $1 sekuntia ennen kuin yrität uudelleen."
+   "@metadata": {
+   "authors": [
+   "Jack Phoenix"
+   ]
+   },
+   "mwa-autocreate-blocked": "Tunnuksen automaattinen luominen tälle 
IP:lle on estetty etäwikissä.",
+   "mwa-error-unknown": "Tuntematon virhe kirjautuessa sisään etäwikiin.",
+   "mwa-must-be-imported": "Tunnuksesi täytyy tuoda. http://www.wikia.com/wiki/Special:UserLogin\;>Aseta itsellesi uusi 
salasana Wikiassa, ja sen jälkeen käytä uutta salasanaa täällä.\nHuomioi: Sinun tulee käyttää salasanaa, jonka Wikia lähettää sinulle 
sähköpostitse kirjautuessasi sisään sinne. Sen jälkeen sinua pyydetään 
asettamaan uusi salasana, jota voi käyttää täällä.",
+   "mwa-resetpass": "Et voi kirjautua sisään tilapäisellä salasanalla. Ole 
hyvä ja käytä sitä etäwikissä luodaksesi pysyvän salasanan.",
+   "mwa-wait": "Ole hyvä ja odota $1 sekuntia ennen kuin yrität uudelleen."
 }
\ No newline at end of file
diff --git a/i18n/nl.json b/i18n/nl.json
index 80550cf..4e83512 100644
--- a/i18n/nl.json
+++ b/i18n/nl.json
@@ -1,13 +1,13 @@
 {
-"@metadata": {
-"authors": [
-"Jedimca0"
-]
-},
-"mwa-autocreate-blocked": "Automatische account creatie is voor dit IP 
adres geblokkeerd",
-"mwa-error-unknown": "Er heeft zich een onbekende fout voorgedaan tijdens 
het inloggen.",
-"mwa-error-wrong-token": "Er heeft zich een login token error voorgedaan. 
Probeer het alstublieft opnieuw, en neem contact op met een administrator als 
het dan nog niet lukt.",
-"mwa-must-be-imported": "Uw account moet geïmporteerd worden.\nhttp://www.wikia.com/wiki/Special:UserLogin\;>Reset uw 
wachtwoord op Wikia en gebruik het dan hier.\nNote: U 
moet het wachtwoord gebruiken dat Wikia u per email gestuurd heeft, daarna moet 
u uw wachtwoord wijzigen.",
-"mwa-resetpass": "U kunt niet inloggen met een tijdelijk wachtwoord. 
Gebruik het om de \"remote wiki\" om een nieuw, permanent, wachtwoord in te 
stellen.",
-"mwa-wait": "Wacht alstublieft $1 seconden en probeer het dan opnieuw."
+   "@metadata": {
+   "authors": [
+   "Jedimca0"
+   ]
+   },
+   "mwa-autocreate-blocked": "Automatische account creatie is voor dit IP 
adres geblokkeerd",
+   "mwa-error-unknown": "Er heeft zich een onbekende fout voorgedaan 
tijdens het inloggen.",
+   "mwa-error-wrong-token": "Er heeft zich een login token error 
voorgedaan. Probeer het alstublieft opnieuw, en neem contact op met een 
administrator als het dan nog niet lukt.",
+   "mwa-must-be-imported": "Uw account moet geïmporteerd worden.\nhttp://www.wikia.com/wiki/Special:UserLogin\;>Reset uw 
wachtwoord op Wikia en gebruik het dan hier.\nNote: U 
moet het wachtwoord gebruiken dat Wikia u per email gestuurd heeft, daarna moet 
u uw wachtwoord wijzigen.",
+   "mwa-resetpass": "U kunt niet inloggen met een tijdelijk wachtwoord. 
Gebruik het om de \"remote wiki\" om een nieuw, permanent, wachtwoord in te 
stellen.",
+   "mwa-wait": "Wacht alstublieft $1 seconden en probeer het dan opnieuw."
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index 1819ae0..9534400 100644
--- a/package.json
+++ b/package.json
@@ -1,10 +1,10 @@
 {
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "0.4.5",
-"grunt-cli": "0.1.13",
-"grunt-jsonlint": "1.0.7"
-  }
+   "scripts": {
+   "test": "grunt test"
+   },
+ 

[MediaWiki-commits] [Gerrit] mediawiki...LiquidThreads[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345917 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I6faa80a254985d7ccfb8e3bc7ddc82597ea7bbd7
---
M i18n/got.json
M package.json
2 files changed, 21 insertions(+), 21 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/LiquidThreads 
refs/changes/17/345917/1

diff --git a/i18n/got.json b/i18n/got.json
index 1f0c916..25e12f6 100644
--- a/i18n/got.json
+++ b/i18n/got.json
@@ -1,11 +1,11 @@
 {
-"@metadata": {
-"authors": [
-"Crazymadlover",
-"Jocke Pirat",
-"Omnipaedista"
-]
-},
-"lqt_delete": "Taíran",
-"lqt_move_move": "Skiuban"
+   "@metadata": {
+   "authors": [
+   "Crazymadlover",
+   "Jocke Pirat",
+   "Omnipaedista"
+   ]
+   },
+   "lqt_delete": "Taíran",
+   "lqt_move_move": "Skiuban"
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index 8e0d086..ec4be4d 100644
--- a/package.json
+++ b/package.json
@@ -1,14 +1,14 @@
 {
-  "private": true,
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "0.4.5",
-"grunt-banana-checker": "0.5.0",
-"grunt-cli": "0.1.13",
-"grunt-contrib-jshint": "0.11.3",
-"grunt-jscs": "2.4.0",
-"grunt-jsonlint": "1.0.7"
-  }
+   "private": true,
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "0.4.5",
+   "grunt-banana-checker": "0.5.0",
+   "grunt-cli": "0.1.13",
+   "grunt-contrib-jshint": "0.11.3",
+   "grunt-jscs": "2.4.0",
+   "grunt-jsonlint": "1.0.7"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345917
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I6faa80a254985d7ccfb8e3bc7ddc82597ea7bbd7
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/LiquidThreads
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...GlobalUserGroups[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345913 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: Ifff2e91ad2b7ce2e80a64f73b9e7ad4c93c5151b
---
M i18n/groups/de.json
M i18n/groups/nl.json
M i18n/groups/qqq.json
M package.json
4 files changed, 99 insertions(+), 99 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/GlobalUserGroups 
refs/changes/13/345913/1

diff --git a/i18n/groups/de.json b/i18n/groups/de.json
index 0ce8952..732cdae 100644
--- a/i18n/groups/de.json
+++ b/i18n/groups/de.json
@@ -1,31 +1,31 @@
 {
-"@metadata": {
-"authors": [
-"SVG"
-]
-},
-"group-bot-global": "Globale Bots",
-"group-bot-global-member": "{{GENDER:$1|Globaler Bot}}",
-"grouppage-bot-global": "{{ns:project}}:Globale Bots",
-"group-checkuser-global": "Globale Checkuser",
-"group-checkuser-global-member": "{{GENDER:$1|Globaler 
Checkuser-Berechtigter|Globale Checkuser-Berechtigte}}",
-"grouppage-checkuser-global": "{{ns:project}}:Globale Checkuser",
-"group-helper-global": "Globale Helfer",
-"group-helper-global-member": "{{GENDER:$1|Globaler Helfer|Globale 
Helferin}}",
-"grouppage-helper-global": "{{ns:project}}:Globale Helfer",
-"group-ipblock-exempt-g": "Globale IP-Sperren-Ausgenommene",
-"group-ipblock-exempt-g-member": "{{GENDER:$1|Globaler 
IP-Sperren-Ausgenommener|Globale IP-Sperren-Ausgenommene}}",
-"grouppage-ipblock-exempt-g": "{{ns:project}}:Globale 
IP-Sperren-Ausgenommene",
-"group-rollback-global": "Globale Zurücksetzer",
-"group-rollback-global-member": "{{GENDER:$1|Globaler Zurücksetzer|Globale 
Zurücksetzerin}}",
-"grouppage-rollback-global": "{{ns:project}}:Globale Zurücksetzer",
-"group-steward-global": "Globale Stewards",
-"group-steward-global-member": "{{GENDER:$1|Globaler Steward|Globale 
Stewardess}}",
-"grouppage-steward-global": "{{ns:project}}:Globale Stewards",
-"group-sysadmin-global": "Globale Systemadministratoren",
-"group-sysadmin-global-member": "{{GENDER:$1|Globaler 
Systemadministrator|Globale Systemadministratorin}}",
-"grouppage-sysadmin-global": "{{ns:project}}:Globale 
Systemadministratoren",
-"group-sysop-global": "Globale Administratoren",
-"group-sysop-global-member": "{{GENDER:$1|Globaler Administrator|Globale 
Administratorin}}",
-"grouppage-sysop-global": "{{ns:project}}:Globale Administratoren"
+   "@metadata": {
+   "authors": [
+   "SVG"
+   ]
+   },
+   "group-bot-global": "Globale Bots",
+   "group-bot-global-member": "{{GENDER:$1|Globaler Bot}}",
+   "grouppage-bot-global": "{{ns:project}}:Globale Bots",
+   "group-checkuser-global": "Globale Checkuser",
+   "group-checkuser-global-member": "{{GENDER:$1|Globaler 
Checkuser-Berechtigter|Globale Checkuser-Berechtigte}}",
+   "grouppage-checkuser-global": "{{ns:project}}:Globale Checkuser",
+   "group-helper-global": "Globale Helfer",
+   "group-helper-global-member": "{{GENDER:$1|Globaler Helfer|Globale 
Helferin}}",
+   "grouppage-helper-global": "{{ns:project}}:Globale Helfer",
+   "group-ipblock-exempt-g": "Globale IP-Sperren-Ausgenommene",
+   "group-ipblock-exempt-g-member": "{{GENDER:$1|Globaler 
IP-Sperren-Ausgenommener|Globale IP-Sperren-Ausgenommene}}",
+   "grouppage-ipblock-exempt-g": "{{ns:project}}:Globale 
IP-Sperren-Ausgenommene",
+   "group-rollback-global": "Globale Zurücksetzer",
+   "group-rollback-global-member": "{{GENDER:$1|Globaler 
Zurücksetzer|Globale Zurücksetzerin}}",
+   "grouppage-rollback-global": "{{ns:project}}:Globale Zurücksetzer",
+   "group-steward-global": "Globale Stewards",
+   "group-steward-global-member": "{{GENDER:$1|Globaler Steward|Globale 
Stewardess}}",
+   "grouppage-steward-global": "{{ns:project}}:Globale Stewards",
+   "group-sysadmin-global": "Globale Systemadministratoren",
+   "group-sysadmin-global-member": "{{GENDER:$1|Globaler 
Systemadministrator|Globale Systemadministratorin}}",
+   "grouppage-sysadmin-global": "{{ns:project}}:Globale 
Systemadministratoren",
+   "group-sysop-global": "Globale Administratoren",
+   "group-sysop-global-member": "{{GENDER:$1|Globaler 
Administrator|Globale Administratorin}}",
+   "grouppage-sysop-global": "{{ns:project}}:Globale Administratoren"
 }
diff --git a/i18n/groups/nl.json b/i18n/groups/nl.json
index 9d32f8b..b0704de 100644
--- a/i18n/groups/nl.json
+++ b/i18n/groups/nl.json
@@ -1,34 +1,34 @@
 {
-"@metadata": {
-"authors": [
-"Siebrand",
-"SPQRobin",
-"SVG",
-"Tvdm"
-]
-},
-"group-bot-global": "globale bots",
-"group-bot-global-member": "{{GENDER:$1|globale robot}}",
-"grouppage-bot-global": 

[MediaWiki-commits] [Gerrit] mediawiki...Math[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345918 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I60c586418679fd5709aef4b9e23e814c45dfb35b
---
M i18n/got.json
M i18n/test.json
M package.json
3 files changed, 26 insertions(+), 26 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Math 
refs/changes/18/345918/1

diff --git a/i18n/got.json b/i18n/got.json
index 174d5ec..3c7147d 100644
--- a/i18n/got.json
+++ b/i18n/got.json
@@ -1,9 +1,9 @@
 {
-"@metadata": {
-"authors": [
-"Jocke Pirat"
-]
-},
-"math_sample": "Lagjan formula her",
-"math_tip": "Maþemateikaleiks formula (LaTeX)"
+   "@metadata": {
+   "authors": [
+   "Jocke Pirat"
+   ]
+   },
+   "math_sample": "Lagjan formula her",
+   "math_tip": "Maþemateikaleiks formula (LaTeX)"
 }
\ No newline at end of file
diff --git a/i18n/test.json b/i18n/test.json
index 06aab8c..93197ca 100644
--- a/i18n/test.json
+++ b/i18n/test.json
@@ -1,7 +1,7 @@
 {
-"@metadata": {
-"authors": []
-},
-"math_sample": "x",
-"math_tip": "x"
+   "@metadata": {
+   "authors": []
+   },
+   "math_sample": "x",
+   "math_tip": "x"
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index 1fb2b94..7ca86d0 100644
--- a/package.json
+++ b/package.json
@@ -1,16 +1,16 @@
 {
-  "private": true,
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"eslint-config-wikimedia": "0.3.0",
-"grunt": "1.0.1",
-"grunt-banana-checker": "0.5.0",
-"grunt-contrib-watch": "1.0.0",
-"grunt-eslint": "19.0.0",
-"grunt-jsonlint": "1.0.7",
-"grunt-stylelint": "0.7.0",
-"stylelint-config-wikimedia": "0.4.1"
-  }
+   "private": true,
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "eslint-config-wikimedia": "0.3.0",
+   "grunt": "1.0.1",
+   "grunt-banana-checker": "0.5.0",
+   "grunt-contrib-watch": "1.0.0",
+   "grunt-eslint": "19.0.0",
+   "grunt-jsonlint": "1.0.7",
+   "grunt-stylelint": "0.7.0",
+   "stylelint-config-wikimedia": "0.4.1"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345918
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I60c586418679fd5709aef4b9e23e814c45dfb35b
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Math
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...Insider[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345914 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: Iba07e8cc293945beee00faf40cbd53217d972aac
---
M i18n/zh.json
M package.json
2 files changed, 16 insertions(+), 16 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Insider 
refs/changes/14/345914/1

diff --git a/i18n/zh.json b/i18n/zh.json
index f42d5ed..f23eea5 100644
--- a/i18n/zh.json
+++ b/i18n/zh.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Minh Nguyen"
-]
-},
-"insider-title": "Docents"
+   "@metadata": {
+   "authors": [
+   "Minh Nguyen"
+   ]
+   },
+   "insider-title": "Docents"
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index 72eb4aa..4282d40 100644
--- a/package.json
+++ b/package.json
@@ -1,12 +1,12 @@
 {
-  "private": true,
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "0.4.5",
-"grunt-cli": "0.1.13",
-"grunt-banana-checker": "0.4.0",
-"grunt-jsonlint": "1.0.7"
-  }
+   "private": true,
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "0.4.5",
+   "grunt-cli": "0.1.13",
+   "grunt-banana-checker": "0.4.0",
+   "grunt-jsonlint": "1.0.7"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345914
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Iba07e8cc293945beee00faf40cbd53217d972aac
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Insider
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...Link_Attributes[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345916 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: Ic9a4836fce05e43f3a7a01db38c323db4f68a7c4
---
M i18n/de.json
M i18n/en.json
M i18n/qqq.json
3 files changed, 24 insertions(+), 24 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Link_Attributes 
refs/changes/16/345916/1

diff --git a/i18n/de.json b/i18n/de.json
index f08ac78..66d9d0d 100644
--- a/i18n/de.json
+++ b/i18n/de.json
@@ -1,8 +1,8 @@
-{
-"@metadata": {
-"authors": [
-"Dennis Roczek"
-]
-},
-  "linkattributes-desc": "Erlaubt die einfache Modifikation von rel/rev/class 
auf einem  Element."
-}
\ No newline at end of file
+{
+   "@metadata": {
+   "authors": [
+   "Dennis Roczek"
+   ]
+   },
+   "linkattributes-desc": "Erlaubt die einfache Modifikation von 
rel/rev/class auf einem  Element."
+}
diff --git a/i18n/en.json b/i18n/en.json
index 61f48f8..3c1579b 100644
--- a/i18n/en.json
+++ b/i18n/en.json
@@ -1,8 +1,8 @@
-{
-   "@metadata": {
-   "authors": [
-   "Dennis Roczek"
-   ]
-   },
-   "linkattributes-desc": "Allows for easy modification of rel/rev/class 
on  elements"
-}
\ No newline at end of file
+{
+   "@metadata": {
+   "authors": [
+   "Dennis Roczek"
+   ]
+   },
+   "linkattributes-desc": "Allows for easy modification of rel/rev/class 
on  elements"
+}
diff --git a/i18n/qqq.json b/i18n/qqq.json
index d7ab16b..a41064a 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -1,8 +1,8 @@
-{
-"@metadata": {
-"authors": [
-"Dennis Roczek"
-]
-},
-  "linkattributes-desc": "{{desc|name=Link 
Attributes|url=https://www.mediawiki.org/wiki/Extension:Link_Attributes}};
-}
\ No newline at end of file
+{
+   "@metadata": {
+   "authors": [
+   "Dennis Roczek"
+   ]
+   },
+   "linkattributes-desc": "{{desc|name=Link 
Attributes|url=https://www.mediawiki.org/wiki/Extension:Link_Attributes}};
+}

-- 
To view, visit https://gerrit.wikimedia.org/r/345916
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic9a4836fce05e43f3a7a01db38c323db4f68a7c4
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Link_Attributes
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...GlobalBlocking[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345912 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I69c9eff6cf30a99e3624f846c8b8ab211229cf3a
---
M i18n/got.json
M package.json
2 files changed, 16 insertions(+), 16 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/GlobalBlocking 
refs/changes/12/345912/1

diff --git a/i18n/got.json b/i18n/got.json
index 15d1749..a1724a8 100644
--- a/i18n/got.json
+++ b/i18n/got.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Jocke Pirat"
-]
-},
-"globalblocking-unblock-reason": "̰̹̹̰͆͂̽:"
+   "@metadata": {
+   "authors": [
+   "Jocke Pirat"
+   ]
+   },
+   "globalblocking-unblock-reason": "̰̹̹̰͆͂̽:"
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index 72eb4aa..4282d40 100644
--- a/package.json
+++ b/package.json
@@ -1,12 +1,12 @@
 {
-  "private": true,
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "0.4.5",
-"grunt-cli": "0.1.13",
-"grunt-banana-checker": "0.4.0",
-"grunt-jsonlint": "1.0.7"
-  }
+   "private": true,
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "0.4.5",
+   "grunt-cli": "0.1.13",
+   "grunt-banana-checker": "0.4.0",
+   "grunt-jsonlint": "1.0.7"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345912
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I69c9eff6cf30a99e3624f846c8b8ab211229cf3a
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GlobalBlocking
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...FlaggedRevs[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345911 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I657ab40e65d34ab4bc88f0ec215b235782c290b6
---
M i18n/flaggedrevs/gan.json
M package.json
2 files changed, 19 insertions(+), 19 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/FlaggedRevs 
refs/changes/11/345911/1

diff --git a/i18n/flaggedrevs/gan.json b/i18n/flaggedrevs/gan.json
index a5f9650..6e3a1c4 100644
--- a/i18n/flaggedrevs/gan.json
+++ b/i18n/flaggedrevs/gan.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Symane"
-]
-},
-"revreview-revnotfound": "倷請求嗰更早版本嗰修改歷史冇尋到。請檢查倷嗰URL係否正確。"
+   "@metadata": {
+   "authors": [
+   "Symane"
+   ]
+   },
+   "revreview-revnotfound": "倷請求嗰更早版本嗰修改歷史冇尋到。請檢查倷嗰URL係否正確。"
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index 20f2bae..8e78760 100644
--- a/package.json
+++ b/package.json
@@ -1,15 +1,15 @@
 {
-  "private": true,
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"eslint-config-wikimedia": "0.3.0",
-"grunt": "1.0.1",
-"grunt-banana-checker": "0.5.0",
-"grunt-eslint": "19.0.0",
-"grunt-jsonlint": "1.1.0",
-"grunt-stylelint": "0.6.0",
-"stylelint-config-wikimedia": "0.4.1"
-  }
+   "private": true,
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "eslint-config-wikimedia": "0.3.0",
+   "grunt": "1.0.1",
+   "grunt-banana-checker": "0.5.0",
+   "grunt-eslint": "19.0.0",
+   "grunt-jsonlint": "1.1.0",
+   "grunt-stylelint": "0.6.0",
+   "stylelint-config-wikimedia": "0.4.1"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345911
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I657ab40e65d34ab4bc88f0ec215b235782c290b6
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/FlaggedRevs
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] operations/puppet[production]: admin: Remove my old key

2017-03-31 Thread Yuvipanda (Code Review)
Yuvipanda has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345910 )

Change subject: admin: Remove my old key
..


admin: Remove my old key

Good bye!

Change-Id: If0173f4b1987df445682a7c8ad97ac300e23cc4b
---
M modules/admin/data/data.yaml
1 file changed, 0 insertions(+), 1 deletion(-)

Approvals:
  Yuvipanda: Verified; Looks good to me, approved



diff --git a/modules/admin/data/data.yaml b/modules/admin/data/data.yaml
index ee14dd2..ac24a3c 100644
--- a/modules/admin/data/data.yaml
+++ b/modules/admin/data/data.yaml
@@ -1378,7 +1378,6 @@
 name: yuvipanda
 realname: Yuvi Panda
 ssh_keys:
-  - ssh-rsa 
B3NzaC1yc2EDAQABAAABAQDSbKkh+XRHzTRE0fzQnSv8ZsfWgIa9uEhZV5d8Eq9AhIQC3AUkamt9QVnVxXVx/cnUEXqxD8grUcbN9HVf4T9T19zw19JPi4s68eG9Zm6ZSKZNYugLaAjb9QrZa5WBWgBYxTa5ZBtIAn4kWsMqG+d86NJxqLu35FyiiOsD10sVsB2mWvK6flMf7Kuux2dTlI6lqWThHoF/4JPw2Odjn5DrASOhjLXzaLzEhkkwcT+zgWQW1PN/ndSlmL6eT/CRgiOxxL97DE2osmYUXXBqgaXyzBnQGgK/DL03e55Epn6yCEYJ2YcBdjbF8J6Ev82zzvMmNlebKJz44SRRsPuOX3r9
 yuvipanda@picard
   - ssh-rsa 
B3NzaC1yc2EDAQABAAABAQDb5W/ZKwHHevB0ZGr+yVimNySadaNuJVfZW453U5FSF4nCLj2gvm/gKpEj4bv8MHzOsF5casl6u1T4Mz4gCeU4Q9gbhiMfghiYm7DPxWdR6uDn0vcbb+rtGpcu8XMGfGYsmFLWwL0qs8kgpixviAQ+AYGqCJug4b+6TVOoCKV/Ba5cOXhfx1MAIExwlhTpxtkec+g2/2BzQeZon0/4INzIutXgLGF47n1oosHEWpaehg4NMGjjT8b9w2UdnCWaTNpUsMca+LU2aK0lHVIQ2i5c56Exd8zcPEt/78O3HpQFH256QHkBxcBo9+z+sf87fHyOcgiAd5T3eKI0zLKQM6WT
 yuvipanda@courage
 uid: 2029
 email: ypand...@wikimedia.org

-- 
To view, visit https://gerrit.wikimedia.org/r/345910
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: If0173f4b1987df445682a7c8ad97ac300e23cc4b
Gerrit-PatchSet: 2
Gerrit-Project: operations/puppet
Gerrit-Branch: production
Gerrit-Owner: Yuvipanda 
Gerrit-Reviewer: Yuvipanda 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] operations/puppet[production]: admin: Remove my old key

2017-03-31 Thread Yuvipanda (Code Review)
Yuvipanda has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345910 )

Change subject: admin: Remove my old key
..

admin: Remove my old key

Good bye!

Change-Id: If0173f4b1987df445682a7c8ad97ac300e23cc4b
---
M modules/admin/data/data.yaml
1 file changed, 0 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/10/345910/1

diff --git a/modules/admin/data/data.yaml b/modules/admin/data/data.yaml
index ee14dd2..ac24a3c 100644
--- a/modules/admin/data/data.yaml
+++ b/modules/admin/data/data.yaml
@@ -1378,7 +1378,6 @@
 name: yuvipanda
 realname: Yuvi Panda
 ssh_keys:
-  - ssh-rsa 
B3NzaC1yc2EDAQABAAABAQDSbKkh+XRHzTRE0fzQnSv8ZsfWgIa9uEhZV5d8Eq9AhIQC3AUkamt9QVnVxXVx/cnUEXqxD8grUcbN9HVf4T9T19zw19JPi4s68eG9Zm6ZSKZNYugLaAjb9QrZa5WBWgBYxTa5ZBtIAn4kWsMqG+d86NJxqLu35FyiiOsD10sVsB2mWvK6flMf7Kuux2dTlI6lqWThHoF/4JPw2Odjn5DrASOhjLXzaLzEhkkwcT+zgWQW1PN/ndSlmL6eT/CRgiOxxL97DE2osmYUXXBqgaXyzBnQGgK/DL03e55Epn6yCEYJ2YcBdjbF8J6Ev82zzvMmNlebKJz44SRRsPuOX3r9
 yuvipanda@picard
   - ssh-rsa 
B3NzaC1yc2EDAQABAAABAQDb5W/ZKwHHevB0ZGr+yVimNySadaNuJVfZW453U5FSF4nCLj2gvm/gKpEj4bv8MHzOsF5casl6u1T4Mz4gCeU4Q9gbhiMfghiYm7DPxWdR6uDn0vcbb+rtGpcu8XMGfGYsmFLWwL0qs8kgpixviAQ+AYGqCJug4b+6TVOoCKV/Ba5cOXhfx1MAIExwlhTpxtkec+g2/2BzQeZon0/4INzIutXgLGF47n1oosHEWpaehg4NMGjjT8b9w2UdnCWaTNpUsMca+LU2aK0lHVIQ2i5c56Exd8zcPEt/78O3HpQFH256QHkBxcBo9+z+sf87fHyOcgiAd5T3eKI0zLKQM6WT
 yuvipanda@courage
 uid: 2029
 email: ypand...@wikimedia.org

-- 
To view, visit https://gerrit.wikimedia.org/r/345910
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: If0173f4b1987df445682a7c8ad97ac300e23cc4b
Gerrit-PatchSet: 1
Gerrit-Project: operations/puppet
Gerrit-Branch: production
Gerrit-Owner: Yuvipanda 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] operations...kubernetes[master]: Get rid of nonsensical default

2017-03-31 Thread Yuvipanda (Code Review)
Yuvipanda has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345909 )

Change subject: Get rid of nonsensical default
..

Get rid of nonsensical default

Change-Id: Ic9a278bad4dce8b74088a606e5315db083be5924
---
M debian/changelog
M debian/kubernetes-node.kube-proxy.service
2 files changed, 6 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/debs/kubernetes 
refs/changes/09/345909/1

diff --git a/debian/changelog b/debian/changelog
index 9d362fd..9f79273 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+kubernetes (1.4.6-6) unstable; urgency=medium
+
+  * Get rid of nonsensical default
+
+ -- Yuvi Panda   Fri, 31 Mar 2017 14:23:15 +
+
 kubernetes (1.4.6-5) unstable; urgency=medium
 
   * Just get rid of /s in HostPathAutoMounter, since starting 
diff --git a/debian/kubernetes-node.kube-proxy.service 
b/debian/kubernetes-node.kube-proxy.service
index 88b9fea..49c6f7c 100644
--- a/debian/kubernetes-node.kube-proxy.service
+++ b/debian/kubernetes-node.kube-proxy.service
@@ -5,7 +5,6 @@
 After=network.target
 
 [Service]
-Environment=KUBE_MASTER=--master=127.0.0.1:8080
 EnvironmentFile=-/etc/kubernetes/config
 EnvironmentFile=-/etc/default/%p
 ExecStart=/usr/bin/kube-proxy \

-- 
To view, visit https://gerrit.wikimedia.org/r/345909
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic9a278bad4dce8b74088a606e5315db083be5924
Gerrit-PatchSet: 1
Gerrit-Project: operations/debs/kubernetes
Gerrit-Branch: master
Gerrit-Owner: Yuvipanda 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...DonationInterface[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345907 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: If29d35e3c78ff1a739e537d50f92a6705a6c73ed
---
M gateway_common/i18n/canada-provinces/fr.json
M gateway_common/i18n/countries/ar.json
M gateway_common/i18n/countries/bg.json
M gateway_common/i18n/countries/cs.json
M gateway_common/i18n/countries/da.json
M gateway_common/i18n/countries/de.json
M gateway_common/i18n/countries/el.json
M gateway_common/i18n/countries/es.json
M gateway_common/i18n/countries/fi.json
M gateway_common/i18n/countries/fr.json
M gateway_common/i18n/countries/he.json
M gateway_common/i18n/countries/hu.json
M gateway_common/i18n/countries/it.json
M gateway_common/i18n/countries/ja.json
M gateway_common/i18n/countries/nb.json
M gateway_common/i18n/countries/nl.json
M gateway_common/i18n/countries/nn.json
M gateway_common/i18n/countries/pl.json
M gateway_common/i18n/countries/pt-br.json
M gateway_common/i18n/countries/pt.json
M gateway_common/i18n/countries/ro.json
M gateway_common/i18n/countries/ru.json
M gateway_common/i18n/countries/sk.json
M gateway_common/i18n/countries/sv.json
M gateway_common/i18n/countries/tr.json
M gateway_common/i18n/countries/zh-hant.json
M gateway_common/i18n/country-specific/fr.json
M gateway_common/i18n/country-specific/pt.json
M gateway_common/i18n/country-specific/sw.json
M gateway_common/i18n/interface/zh-hk.json
M gateway_common/i18n/interface/zh-tw.json
M package.json
32 files changed, 215 insertions(+), 215 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/DonationInterface 
refs/changes/07/345907/1

diff --git a/gateway_common/i18n/canada-provinces/fr.json 
b/gateway_common/i18n/canada-provinces/fr.json
index 5f96616..0062af1 100644
--- a/gateway_common/i18n/canada-provinces/fr.json
+++ b/gateway_common/i18n/canada-provinces/fr.json
@@ -1,20 +1,20 @@
 {
-"@metadata": {
-"authors": []
-},
-"donate_interface-province-dropdown-YY": "Sélectionnez une Province",
-"donate_interface-province-dropdown-XX": "En dehors du Canada",
-"donate_interface-province-dropdown-AB": "Alberta",
-"donate_interface-province-dropdown-BC": "Colombie-Britannique",
-"donate_interface-province-dropdown-MB": "Manitoba",
-"donate_interface-province-dropdown-NB": "Nouveau-Brunswick",
-"donate_interface-province-dropdown-NL": "Terre-Neuve-et-Labrador",
-"donate_interface-province-dropdown-NT": "Territoires du Nord-Ouest",
-"donate_interface-province-dropdown-NS": "Nouvelle-Écosse",
-"donate_interface-province-dropdown-NU": "Nunavut",
-"donate_interface-province-dropdown-ON": "Ontario",
-"donate_interface-province-dropdown-PE": "Île-du-Prince-Édouard",
-"donate_interface-province-dropdown-QC": "Québec",
-"donate_interface-province-dropdown-SK": "Saskatchewan",
-"donate_interface-province-dropdown-YT": "Yukon"
+   "@metadata": {
+   "authors": []
+   },
+   "donate_interface-province-dropdown-YY": "Sélectionnez une Province",
+   "donate_interface-province-dropdown-XX": "En dehors du Canada",
+   "donate_interface-province-dropdown-AB": "Alberta",
+   "donate_interface-province-dropdown-BC": "Colombie-Britannique",
+   "donate_interface-province-dropdown-MB": "Manitoba",
+   "donate_interface-province-dropdown-NB": "Nouveau-Brunswick",
+   "donate_interface-province-dropdown-NL": "Terre-Neuve-et-Labrador",
+   "donate_interface-province-dropdown-NT": "Territoires du Nord-Ouest",
+   "donate_interface-province-dropdown-NS": "Nouvelle-Écosse",
+   "donate_interface-province-dropdown-NU": "Nunavut",
+   "donate_interface-province-dropdown-ON": "Ontario",
+   "donate_interface-province-dropdown-PE": "Île-du-Prince-Édouard",
+   "donate_interface-province-dropdown-QC": "Québec",
+   "donate_interface-province-dropdown-SK": "Saskatchewan",
+   "donate_interface-province-dropdown-YT": "Yukon"
 }
\ No newline at end of file
diff --git a/gateway_common/i18n/countries/ar.json 
b/gateway_common/i18n/countries/ar.json
index bde78e6..110f9d8 100644
--- a/gateway_common/i18n/countries/ar.json
+++ b/gateway_common/i18n/countries/ar.json
@@ -1,7 +1,7 @@
 {
-"@metadata": {
-"authors": []
-},
-"donate_interface-country-dropdown-SA": "السعودية",
-"donate_interface-country-dropdown-MR": "موريتانيا"
+   "@metadata": {
+   "authors": []
+   },
+   "donate_interface-country-dropdown-SA": "السعودية",
+   "donate_interface-country-dropdown-MR": "موريتانيا"
 }
\ No newline at end of file
diff --git a/gateway_common/i18n/countries/bg.json 
b/gateway_common/i18n/countries/bg.json
index 34942c3..52c8fb6 100644
--- a/gateway_common/i18n/countries/bg.json
+++ b/gateway_common/i18n/countries/bg.json
@@ -1,6 +1,6 @@
 {
-"@metadata": 

[MediaWiki-commits] [Gerrit] mediawiki...DataTransfer[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345906 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I27950f73c56169280bd79f86bdac6b9928f180cf
---
M i18n/got.json
M package.json
2 files changed, 15 insertions(+), 15 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/DataTransfer 
refs/changes/06/345906/1

diff --git a/i18n/got.json b/i18n/got.json
index ffe3607..3b88537 100644
--- a/i18n/got.json
+++ b/i18n/got.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Jocke Pirat"
-]
-},
-"dt_xml_namespace": "Seidofera"
+   "@metadata": {
+   "authors": [
+   "Jocke Pirat"
+   ]
+   },
+   "dt_xml_namespace": "Seidofera"
 }
diff --git a/package.json b/package.json
index 41cecca..ced56ab 100644
--- a/package.json
+++ b/package.json
@@ -1,11 +1,11 @@
 {
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "0.4.5",
-"grunt-cli": "0.1.13",
-"grunt-banana-checker": "0.4.0",
-"grunt-jsonlint": "1.0.7"
-  }
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "0.4.5",
+   "grunt-cli": "0.1.13",
+   "grunt-banana-checker": "0.4.0",
+   "grunt-jsonlint": "1.0.7"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345906
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I27950f73c56169280bd79f86bdac6b9928f180cf
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/DataTransfer
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...Contributors[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345905 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: Ibcf1f94c4b656811d4051e80fa50ad9b780c768d
---
M i18n/kk-cn.json
M i18n/kk-tr.json
M package.json
3 files changed, 39 insertions(+), 39 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Contributors 
refs/changes/05/345905/1

diff --git a/i18n/kk-cn.json b/i18n/kk-cn.json
index 1fd4cf2..fb6a501 100644
--- a/i18n/kk-cn.json
+++ b/i18n/kk-cn.json
@@ -1,17 +1,17 @@
 {
-"@metadata": {
-"authors": [
-"AlefZet"
-]
-},
-"contributors": "ٷلەسكەرلەر",
-"contributors-toolbox": "باستى ٷلەسكەرلەر",
-"contributors-legend": "ماقالا باستى ٷلەسكەرلەرٸ تٸزٸمٸ",
-"contributors-target": "اتاۋى:",
-"contributors-submit": "كٶرسەت",
-"contributors-subtitle": "$1 بەتٸنٸڭ باستى ٷلەسكەرلەرٸ",
-"contributors-others-long": "بۇل بەتتٸڭ باسقا $1 ٷلەسكەرٸ بار.",
-"contributors-others": "جٵنە $1 باسقالار",
-"contributors-badtitle": "جارامسىز اتاۋ.",
-"contributors-nosuchpage": "$1 دەگەن ماقالا بٸزدە جوق."
+   "@metadata": {
+   "authors": [
+   "AlefZet"
+   ]
+   },
+   "contributors": "ٷلەسكەرلەر",
+   "contributors-toolbox": "باستى ٷلەسكەرلەر",
+   "contributors-legend": "ماقالا باستى ٷلەسكەرلەرٸ تٸزٸمٸ",
+   "contributors-target": "اتاۋى:",
+   "contributors-submit": "كٶرسەت",
+   "contributors-subtitle": "$1 بەتٸنٸڭ باستى ٷلەسكەرلەرٸ",
+   "contributors-others-long": "بۇل بەتتٸڭ باسقا $1 ٷلەسكەرٸ بار.",
+   "contributors-others": "جٵنە $1 باسقالار",
+   "contributors-badtitle": "جارامسىز اتاۋ.",
+   "contributors-nosuchpage": "$1 دەگەن ماقالا بٸزدە جوق."
 }
\ No newline at end of file
diff --git a/i18n/kk-tr.json b/i18n/kk-tr.json
index 3aa186a..7cdf1ae 100644
--- a/i18n/kk-tr.json
+++ b/i18n/kk-tr.json
@@ -1,17 +1,17 @@
 {
-"@metadata": {
-"authors": [
-"AlefZet"
-]
-},
-"contributors": "Üleskerler",
-"contributors-toolbox": "Bastı üleskerler",
-"contributors-legend": "Maqala bastı üleskerleri tizimi",
-"contributors-target": "Atawı:",
-"contributors-submit": "Körset",
-"contributors-subtitle": "$1 betiniñ bastı üleskerleri",
-"contributors-others-long": "Bul bettiñ basqa $1 üleskeri bar.",
-"contributors-others": "jäne $1 basqalar",
-"contributors-badtitle": "Jaramsız ataw.",
-"contributors-nosuchpage": "$1 degen maqala bizde joq."
+   "@metadata": {
+   "authors": [
+   "AlefZet"
+   ]
+   },
+   "contributors": "Üleskerler",
+   "contributors-toolbox": "Bastı üleskerler",
+   "contributors-legend": "Maqala bastı üleskerleri tizimi",
+   "contributors-target": "Atawı:",
+   "contributors-submit": "Körset",
+   "contributors-subtitle": "$1 betiniñ bastı üleskerleri",
+   "contributors-others-long": "Bul bettiñ basqa $1 üleskeri bar.",
+   "contributors-others": "jäne $1 basqalar",
+   "contributors-badtitle": "Jaramsız ataw.",
+   "contributors-nosuchpage": "$1 degen maqala bizde joq."
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index 41cecca..ced56ab 100644
--- a/package.json
+++ b/package.json
@@ -1,11 +1,11 @@
 {
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "0.4.5",
-"grunt-cli": "0.1.13",
-"grunt-banana-checker": "0.4.0",
-"grunt-jsonlint": "1.0.7"
-  }
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "0.4.5",
+   "grunt-cli": "0.1.13",
+   "grunt-banana-checker": "0.4.0",
+   "grunt-jsonlint": "1.0.7"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345905
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ibcf1f94c4b656811d4051e80fa50ad9b780c768d
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Contributors
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...Contest[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345904 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I1e8046a27af56c78bc23a379500acf9348788805
---
M i18n/af.json
M i18n/ar.json
M i18n/as.json
M i18n/az.json
M i18n/ba.json
M i18n/be-tarask.json
M i18n/bg.json
M i18n/bn.json
M i18n/br.json
M i18n/ca.json
M i18n/cs.json
M i18n/da.json
M i18n/de-ch.json
M i18n/de-formal.json
M i18n/de.json
M i18n/diq.json
M i18n/el.json
M i18n/eo.json
M i18n/es.json
M i18n/et.json
M i18n/eu.json
M i18n/fa.json
M i18n/fi.json
M i18n/fr.json
M i18n/frp.json
M i18n/ga.json
M i18n/gl.json
M i18n/gsw.json
M i18n/he.json
M i18n/hi.json
M i18n/hif-latn.json
M i18n/hsb.json
M i18n/hu.json
M i18n/ia.json
M i18n/ilo.json
M i18n/it.json
M i18n/ja.json
M i18n/jv.json
M i18n/ka.json
M i18n/ko.json
M i18n/ksh.json
M i18n/ku-latn.json
M i18n/lb.json
M i18n/li.json
M i18n/lt.json
M i18n/lv.json
M i18n/mk.json
M i18n/ml.json
M i18n/ms.json
M i18n/mt.json
M i18n/nb.json
M i18n/ne.json
M i18n/nl-informal.json
M i18n/nl.json
M i18n/or.json
M i18n/pdc.json
M i18n/pfl.json
M i18n/pl.json
M i18n/pms.json
M i18n/ps.json
M i18n/pt-br.json
M i18n/qqq.json
M i18n/ro.json
M i18n/roa-tara.json
M i18n/ru.json
M i18n/rue.json
M i18n/sa.json
M i18n/scn.json
M i18n/si.json
M i18n/sl.json
M i18n/sr-ec.json
M i18n/sr-el.json
M i18n/sv.json
M i18n/sw.json
M i18n/ta.json
M i18n/te.json
M i18n/tl.json
M i18n/tly.json
M i18n/tr.json
M i18n/uk.json
M i18n/ur.json
M i18n/vi.json
M i18n/yi.json
M i18n/zh-hans.json
M i18n/zh-hant.json
M package.json
86 files changed, 10,414 insertions(+), 10,414 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Contest 
refs/changes/04/345904/1


-- 
To view, visit https://gerrit.wikimedia.org/r/345904
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I1e8046a27af56c78bc23a379500acf9348788805
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Contest
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...Configure[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345903 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I3c7205f38efcfc6b64efed01309026d2e630b77a
---
M package.json
M settings/i18n/af.json
M settings/i18n/aln.json
M settings/i18n/an.json
M settings/i18n/ar.json
M settings/i18n/arc.json
M settings/i18n/arz.json
M settings/i18n/as.json
M settings/i18n/ast.json
M settings/i18n/az.json
M settings/i18n/azb.json
M settings/i18n/ba.json
M settings/i18n/bar.json
M settings/i18n/be-tarask.json
M settings/i18n/bg.json
M settings/i18n/bn.json
M settings/i18n/br.json
M settings/i18n/bs.json
M settings/i18n/ca.json
M settings/i18n/ce.json
M settings/i18n/ckb.json
M settings/i18n/cs.json
M settings/i18n/cu.json
M settings/i18n/da.json
M settings/i18n/de-ch.json
M settings/i18n/de.json
M settings/i18n/diq.json
M settings/i18n/dsb.json
M settings/i18n/el.json
M settings/i18n/en-gb.json
M settings/i18n/eo.json
M settings/i18n/es.json
M settings/i18n/et.json
M settings/i18n/eu.json
M settings/i18n/fa.json
M settings/i18n/fi.json
M settings/i18n/fo.json
M settings/i18n/fr.json
M settings/i18n/frp.json
M settings/i18n/ga.json
M settings/i18n/gl.json
M settings/i18n/grc.json
M settings/i18n/gsw.json
M settings/i18n/ha.json
M settings/i18n/he.json
M settings/i18n/hi.json
M settings/i18n/hr.json
M settings/i18n/hsb.json
M settings/i18n/hu.json
M settings/i18n/hy.json
M settings/i18n/ia.json
M settings/i18n/id.json
M settings/i18n/ig.json
M settings/i18n/inh.json
M settings/i18n/is.json
M settings/i18n/it.json
M settings/i18n/ja.json
M settings/i18n/ka.json
M settings/i18n/km.json
M settings/i18n/kn.json
M settings/i18n/ko.json
M settings/i18n/ksh.json
M settings/i18n/ku-latn.json
M settings/i18n/la.json
M settings/i18n/lb.json
M settings/i18n/li.json
M settings/i18n/lt.json
M settings/i18n/ltg.json
M settings/i18n/lv.json
M settings/i18n/map-bms.json
M settings/i18n/mhr.json
M settings/i18n/min.json
M settings/i18n/mk.json
M settings/i18n/ml.json
M settings/i18n/mn.json
M settings/i18n/ms.json
M settings/i18n/mt.json
M settings/i18n/myv.json
M settings/i18n/nah.json
M settings/i18n/nb.json
M settings/i18n/nds.json
M settings/i18n/nl.json
M settings/i18n/nn.json
M settings/i18n/oc.json
M settings/i18n/or.json
M settings/i18n/pdc.json
M settings/i18n/pfl.json
M settings/i18n/pl.json
M settings/i18n/pms.json
M settings/i18n/ps.json
M settings/i18n/pt-br.json
M settings/i18n/pt.json
M settings/i18n/qqq.json
M settings/i18n/ro.json
M settings/i18n/roa-tara.json
M settings/i18n/ru.json
M settings/i18n/rue.json
M settings/i18n/scn.json
M settings/i18n/si.json
M settings/i18n/sk.json
M settings/i18n/sl.json
M settings/i18n/sr-ec.json
M settings/i18n/sr-el.json
M settings/i18n/sv.json
M settings/i18n/sw.json
M settings/i18n/ta.json
M settings/i18n/tcy.json
M settings/i18n/te.json
M settings/i18n/tet.json
M settings/i18n/tg-cyrl.json
M settings/i18n/tg-latn.json
M settings/i18n/th.json
M settings/i18n/tk.json
M settings/i18n/tl.json
M settings/i18n/tr.json
M settings/i18n/tzm.json
M settings/i18n/uk.json
M settings/i18n/ur.json
M settings/i18n/vep.json
M settings/i18n/vi.json
M settings/i18n/vo.json
M settings/i18n/yi.json
M settings/i18n/zh-hans.json
M settings/i18n/zh-hant.json
124 files changed, 27,339 insertions(+), 27,339 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Configure 
refs/changes/03/345903/1


-- 
To view, visit https://gerrit.wikimedia.org/r/345903
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I3c7205f38efcfc6b64efed01309026d2e630b77a
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Configure
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...Collection[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345902 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I2e33e6b97be2921f76e76e38f2917b43bd6ede5f
---
M i18n/tt.json
M package.json
2 files changed, 26 insertions(+), 26 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Collection 
refs/changes/02/345902/1

diff --git a/i18n/tt.json b/i18n/tt.json
index 7550bd6..6d94787 100644
--- a/i18n/tt.json
+++ b/i18n/tt.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Ильнар"
-]
-},
-"coll-bookscategory": "Китаплар"
+   "@metadata": {
+   "authors": [
+   "Ильнар"
+   ]
+   },
+   "coll-bookscategory": "Китаплар"
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index 2873e7e..2730f5f 100644
--- a/package.json
+++ b/package.json
@@ -1,22 +1,22 @@
 {
-  "name": "wikimedia-collection",
-  "version": "0.0.0",
-  "description": "Mediawiki Collection extension",
-  "scripts": {
-"test": "grunt test"
-  },
-  "repository": {
-"type": "git",
-"url": "https://gerrit.wikimedia.org/r/p/mediawiki/extensions/Collection;
-  },
-  "license": "GPLv2",
-  "devDependencies": {
-"grunt": "1.0.1",
-"grunt-banana-checker": "0.5.0",
-"grunt-eslint": "19.0.0",
-"grunt-jsonlint": "1.1.0",
-"grunt-stylelint": "0.7.0",
-"stylelint-config-wikimedia": "0.4.1",
-"eslint-config-wikimedia": "0.3.0"
-  }
+   "name": "wikimedia-collection",
+   "version": "0.0.0",
+   "description": "Mediawiki Collection extension",
+   "scripts": {
+   "test": "grunt test"
+   },
+   "repository": {
+   "type": "git",
+   "url": 
"https://gerrit.wikimedia.org/r/p/mediawiki/extensions/Collection;
+   },
+   "license": "GPLv2",
+   "devDependencies": {
+   "grunt": "1.0.1",
+   "grunt-banana-checker": "0.5.0",
+   "grunt-eslint": "19.0.0",
+   "grunt-jsonlint": "1.1.0",
+   "grunt-stylelint": "0.7.0",
+   "stylelint-config-wikimedia": "0.4.1",
+   "eslint-config-wikimedia": "0.3.0"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345902
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I2e33e6b97be2921f76e76e38f2917b43bd6ede5f
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Collection
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...CheckUser[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345900 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I96c0f5731ac34f55d4bca581c865c86c5190ea65
---
M i18n/got.json
M i18n/tg.json
M package.json
3 files changed, 25 insertions(+), 25 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/CheckUser 
refs/changes/00/345900/1

diff --git a/i18n/got.json b/i18n/got.json
index 60c8cba..2c28e8a 100644
--- a/i18n/got.json
+++ b/i18n/got.json
@@ -1,6 +1,6 @@
 {
-"@metadata": {
-"authors": []
-},
-"checkuser-reason": "̰̹̹̰͆͂̽:"
+   "@metadata": {
+   "authors": []
+   },
+   "checkuser-reason": "̰̹̹̰͆͂̽:"
 }
\ No newline at end of file
diff --git a/i18n/tg.json b/i18n/tg.json
index 036be1f..d6259e2 100644
--- a/i18n/tg.json
+++ b/i18n/tg.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Ibrahim"
-]
-},
-"right-checkuser-log": "Мушоҳидаи гузоришҳои бозрасии корбарӣ"
+   "@metadata": {
+   "authors": [
+   "Ibrahim"
+   ]
+   },
+   "right-checkuser-log": "Мушоҳидаи гузоришҳои бозрасии корбарӣ"
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index d648efc..be07364 100644
--- a/package.json
+++ b/package.json
@@ -1,17 +1,17 @@
 {
-  "name": "checkuser",
-  "version": "0.0.0",
-  "private": true,
-  "description": "Build tools for the CheckUser extension.",
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "0.4.5",
-"grunt-cli": "0.1.13",
-"grunt-contrib-jshint": "0.11.3",
-"grunt-banana-checker": "0.4.0",
-"grunt-jscs": "2.1.0",
-"grunt-jsonlint": "1.0.7"
-  }
+   "name": "checkuser",
+   "version": "0.0.0",
+   "private": true,
+   "description": "Build tools for the CheckUser extension.",
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "0.4.5",
+   "grunt-cli": "0.1.13",
+   "grunt-contrib-jshint": "0.11.3",
+   "grunt-banana-checker": "0.4.0",
+   "grunt-jscs": "2.1.0",
+   "grunt-jsonlint": "1.0.7"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345900
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I96c0f5731ac34f55d4bca581c865c86c5190ea65
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/CheckUser
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...cldr[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345901 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I0127d478ac3c5ea284ec9ddfd590d35faaa090b5
---
M i18n/ug.json
M package.json
2 files changed, 20 insertions(+), 20 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/cldr 
refs/changes/01/345901/1

diff --git a/i18n/ug.json b/i18n/ug.json
index 6c01539..cf1787f 100644
--- a/i18n/ug.json
+++ b/i18n/ug.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Sahran"
-]
-},
-"cldr-desc": "يەرلىكلەشتۈرۈلگەن تىل ئاتى كېينرەك تەمىنلىنىدۇ"
+   "@metadata": {
+   "authors": [
+   "Sahran"
+   ]
+   },
+   "cldr-desc": "يەرلىكلەشتۈرۈلگەن تىل ئاتى كېينرەك تەمىنلىنىدۇ"
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index a5b9680..8e088ce 100644
--- a/package.json
+++ b/package.json
@@ -1,16 +1,16 @@
 {
-  "name": "cldr",
-  "version": "0.0.0",
-  "private": true,
-  "description": "Build tools for the cldr extension.",
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "0.4.5",
-"grunt-cli": "0.1.13",
-"grunt-banana-checker": "0.4.0",
-"grunt-contrib-jshint": "0.11.3",
-"grunt-jsonlint": "1.0.7"
-  }
+   "name": "cldr",
+   "version": "0.0.0",
+   "private": true,
+   "description": "Build tools for the cldr extension.",
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "0.4.5",
+   "grunt-cli": "0.1.13",
+   "grunt-banana-checker": "0.4.0",
+   "grunt-contrib-jshint": "0.11.3",
+   "grunt-jsonlint": "1.0.7"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345901
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I0127d478ac3c5ea284ec9ddfd590d35faaa090b5
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/cldr
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...CentralAuth[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345898 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I5d8fe4fdf2afc91393b82d046ef3ff3629d0f476
---
M i18n/got.json
M package.json
2 files changed, 22 insertions(+), 22 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/CentralAuth 
refs/changes/98/345898/1

diff --git a/i18n/got.json b/i18n/got.json
index 3556c61..3ab64a9 100644
--- a/i18n/got.json
+++ b/i18n/got.json
@@ -1,12 +1,12 @@
 {
-"@metadata": {
-"authors": [
-"AndreasJS",
-"Crazymadlover",
-"Jocke Pirat",
-"LeighvsOptimvsMaximvs",
-"Omnipaedista"
-]
-},
-"centralauth-admin-reason": "̰̹̹̰͆͂̽:"
+   "@metadata": {
+   "authors": [
+   "AndreasJS",
+   "Crazymadlover",
+   "Jocke Pirat",
+   "LeighvsOptimvsMaximvs",
+   "Omnipaedista"
+   ]
+   },
+   "centralauth-admin-reason": "̰̹̹̰͆͂̽:"
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index ba8c911..7d4b417 100644
--- a/package.json
+++ b/package.json
@@ -1,14 +1,14 @@
 {
-  "private": true,
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "0.4.5",
-"grunt-cli": "0.1.13",
-"grunt-banana-checker": "0.4.0",
-"grunt-jsonlint": "1.0.7",
-"grunt-contrib-jshint": "0.11.3",
-"grunt-jscs": "2.1.0"
-  }
+   "private": true,
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "0.4.5",
+   "grunt-cli": "0.1.13",
+   "grunt-banana-checker": "0.4.0",
+   "grunt-jsonlint": "1.0.7",
+   "grunt-contrib-jshint": "0.11.3",
+   "grunt-jscs": "2.1.0"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345898
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I5d8fe4fdf2afc91393b82d046ef3ff3629d0f476
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/CentralAuth
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...CentralNotice[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345899 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: Ic92c30f4cd47abbd942d2cb5588ef139945de577
---
M package.json
1 file changed, 11 insertions(+), 11 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/CentralNotice 
refs/changes/99/345899/1

diff --git a/package.json b/package.json
index 71cdeb8..17b98ea 100644
--- a/package.json
+++ b/package.json
@@ -1,13 +1,13 @@
 {
-  "private": true,
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-   "eslint-config-wikimedia": "0.3.0",
-"grunt": "1.0.1",
-"grunt-banana-checker": "0.5.0",
-"grunt-eslint": "19.0.0",
-"grunt-jsonlint": "1.0.7"
-  }
+   "private": true,
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "eslint-config-wikimedia": "0.3.0",
+   "grunt": "1.0.1",
+   "grunt-banana-checker": "0.5.0",
+   "grunt-eslint": "19.0.0",
+   "grunt-jsonlint": "1.0.7"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345899
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic92c30f4cd47abbd942d2cb5588ef139945de577
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/CentralNotice
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...Blackout[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345896 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: Ie53a468991a78adde3f14ab2f084ce377e698f85
---
M i18n/qqq.json
M package.json
2 files changed, 16 insertions(+), 16 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Blackout 
refs/changes/96/345896/1

diff --git a/i18n/qqq.json b/i18n/qqq.json
index 163e548..3b6dbdb 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -1,10 +1,10 @@
 {
-"@metadata": {
-"authors": [
-"Gregory Varnum"
-]
-},
-"blackout-desc": "{{desc}}",
-"blackout-stopsopa-header": "Header used on StopSopa skin",
-"blackout-stopsopa-message": "Message used on StopSopa skin"
+   "@metadata": {
+   "authors": [
+   "Gregory Varnum"
+   ]
+   },
+   "blackout-desc": "{{desc}}",
+   "blackout-stopsopa-header": "Header used on StopSopa skin",
+   "blackout-stopsopa-message": "Message used on StopSopa skin"
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index 1819ae0..9534400 100644
--- a/package.json
+++ b/package.json
@@ -1,10 +1,10 @@
 {
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "0.4.5",
-"grunt-cli": "0.1.13",
-"grunt-jsonlint": "1.0.7"
-  }
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "0.4.5",
+   "grunt-cli": "0.1.13",
+   "grunt-jsonlint": "1.0.7"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345896
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie53a468991a78adde3f14ab2f084ce377e698f85
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Blackout
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...CategorySlideShow[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345897 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I050eb6fa8ee8593521bad698030c28e6f2421770
---
M i18n/qqq.json
M package.json
2 files changed, 15 insertions(+), 15 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/CategorySlideShow 
refs/changes/97/345897/1

diff --git a/i18n/qqq.json b/i18n/qqq.json
index 7eadb1a..010f057 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -1,7 +1,7 @@
 {
-"@metadata": {
-"authors": []
-},
-"mwe-css-start-slideshow": "Button for starting the slideshow on a 
category page.",
-"mwe-css-enable-preference": "Label for a preference that enables the 
feature."
+   "@metadata": {
+   "authors": []
+   },
+   "mwe-css-start-slideshow": "Button for starting the slideshow on a 
category page.",
+   "mwe-css-enable-preference": "Label for a preference that enables the 
feature."
 }
diff --git a/package.json b/package.json
index ec97d7b..120bfaa 100644
--- a/package.json
+++ b/package.json
@@ -1,12 +1,12 @@
 {
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "0.4.5",
-"grunt-cli": "0.1.13",
-"grunt-banana-checker": "0.4.0",
-"grunt-contrib-jshint": "1.0.0",
-"grunt-jsonlint": "1.0.7"
-  }
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "0.4.5",
+   "grunt-cli": "0.1.13",
+   "grunt-banana-checker": "0.4.0",
+   "grunt-contrib-jshint": "1.0.0",
+   "grunt-jsonlint": "1.0.7"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345897
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I050eb6fa8ee8593521bad698030c28e6f2421770
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/CategorySlideShow
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...Babel[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345895 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: Ibbf94dbcca69a03a95873f7b22c77ee0a9ec8d1f
---
M i18n/crh.json
M i18n/gan.json
M i18n/got.json
M i18n/tt.json
M i18n/zh-cn.json
M i18n/zh-hk.json
M i18n/zh-sg.json
M i18n/zh-tw.json
M i18n/zh.json
M package.json
10 files changed, 145 insertions(+), 145 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Babel 
refs/changes/95/345895/1

diff --git a/i18n/crh.json b/i18n/crh.json
index e1d67d7..0e1df8d 100644
--- a/i18n/crh.json
+++ b/i18n/crh.json
@@ -1,14 +1,14 @@
 {
-"@metadata": {
-"authors": [
-"Don Alessandro"
-]
-},
-"babel-0": "Bu qullanıcı [[$2|Qırımtatar tili]]ni [[$1|iç bilmey]].",
-"babel-1": "Bu qullanıcı [[$2|Qırımtatar tili]]ni [[$1|başlanğıç 
seviyede]] bile.",
-"babel-2": "Bu qullanıcı [[$2|Qırımtatar tili]]ni [[$1|orta seviyede]] 
bile.",
-"babel-3": "Bu qullanıcı [[$2|Qırımtatar tili]]ni [[$1|yahşı]] bile.",
-"babel-4": "Bu qullanıcı [[$2|Qırımtatar tili]]ni [[$1|ana tili kibi]] 
bile.",
-"babel-5": "Bu qullanıcı [[$2|Qırımtatar tili]]ni [[$1|ihtisasiy 
seviyede]] bile.",
-"babel-N": "Bu qullanıcınıñ [[$1|ana tili]] [[$2|Qırımtatar tili]]dir."
+   "@metadata": {
+   "authors": [
+   "Don Alessandro"
+   ]
+   },
+   "babel-0": "Bu qullanıcı [[$2|Qırımtatar tili]]ni [[$1|iç bilmey]].",
+   "babel-1": "Bu qullanıcı [[$2|Qırımtatar tili]]ni [[$1|başlanğıç 
seviyede]] bile.",
+   "babel-2": "Bu qullanıcı [[$2|Qırımtatar tili]]ni [[$1|orta seviyede]] 
bile.",
+   "babel-3": "Bu qullanıcı [[$2|Qırımtatar tili]]ni [[$1|yahşı]] bile.",
+   "babel-4": "Bu qullanıcı [[$2|Qırımtatar tili]]ni [[$1|ana tili kibi]] 
bile.",
+   "babel-5": "Bu qullanıcı [[$2|Qırımtatar tili]]ni [[$1|ihtisasiy 
seviyede]] bile.",
+   "babel-N": "Bu qullanıcınıñ [[$1|ana tili]] [[$2|Qırımtatar tili]]dir."
 }
\ No newline at end of file
diff --git a/i18n/gan.json b/i18n/gan.json
index fb25658..1b83d0b 100644
--- a/i18n/gan.json
+++ b/i18n/gan.json
@@ -1,28 +1,28 @@
 {
-"@metadata": {
-"authors": [
-"Symane"
-]
-},
-"babel": "巴別用戶資料",
-"babel-desc": "加隻#babel處理功能去容許自動產生一隻巴別用戶盒欄,同到含到可自定化嗰模板",
-"babel-url": "Project:巴別",
-"babel-autocreate-abort": "倷特試要求嗰用戶名已經自動係[[$1|Babel]]嗰分類,咁就登記不正。",
-"babel-autocreate-reason": "自動建立[[$1|Babel]]分類頁。",
-"babel-autocreate-text-levels": "箇隻分類嗰用戶都有 $2 語言嗰 $1 水平嗰交流能力。",
-"babel-autocreate-text-main": "箇隻分類嗰用戶都有 $1 語言嗰知識。",
-"babel-0": "箇隻用戶[[$1|冇滴子]][[$2|$3]]嗰水平(或者好艱難去聽轉佢)。",
-"babel-1": "箇隻用戶有[[$1|滴把子]]嗰[[$2|$3]]水平。",
-"babel-2": "箇隻用戶有[[$1|一般子]]嗰[[$2|$3]]水平。",
-"babel-3": "箇隻用戶有[[$1|蠻靚]]嗰[[$2|$3]]水平。",
-"babel-4": "箇隻用戶有[[$1|好喫價]]嗰[[$2|$3]]水平。",
-"babel-5": "箇隻用戶有[[$1|專業]]嗰[[$2|$3]]能力。",
-"babel-N": "箇隻用戶曉得[[$2|$3]]嗰[[$1|母語]]。",
-"babel-0-n": "箇隻用戶[[$1|冇滴子]][[$2|贛語]]嗰水平(或者好艱難去聽轉佢)。",
-"babel-1-n": "箇隻用戶有[[$1|滴把子]]嗰[[$2|贛語]]水平。",
-"babel-2-n": "箇隻用戶有[[$1|一般子]]嗰[[$2|贛語]]水平。",
-"babel-3-n": "箇隻用戶有[[$1|蠻靚]]嗰[[$2|贛語]]水平。",
-"babel-4-n": "箇隻用戶有[[$1|好喫價]]嗰[[$2|贛語]]水平。",
-"babel-5-n": "箇隻用戶有[[$1|專業]]嗰[[$2|贛語]]能力。",
-"babel-N-n": "箇隻用戶曉得[[$2|贛語]]嗰[[$1|母語]]。"
+   "@metadata": {
+   "authors": [
+   "Symane"
+   ]
+   },
+   "babel": "巴別用戶資料",
+   "babel-desc": "加隻#babel處理功能去容許自動產生一隻巴別用戶盒欄,同到含到可自定化嗰模板",
+   "babel-url": "Project:巴別",
+   "babel-autocreate-abort": "倷特試要求嗰用戶名已經自動係[[$1|Babel]]嗰分類,咁就登記不正。",
+   "babel-autocreate-reason": "自動建立[[$1|Babel]]分類頁。",
+   "babel-autocreate-text-levels": "箇隻分類嗰用戶都有 $2 語言嗰 $1 水平嗰交流能力。",
+   "babel-autocreate-text-main": "箇隻分類嗰用戶都有 $1 語言嗰知識。",
+   "babel-0": "箇隻用戶[[$1|冇滴子]][[$2|$3]]嗰水平(或者好艱難去聽轉佢)。",
+   "babel-1": "箇隻用戶有[[$1|滴把子]]嗰[[$2|$3]]水平。",
+   "babel-2": "箇隻用戶有[[$1|一般子]]嗰[[$2|$3]]水平。",
+   "babel-3": "箇隻用戶有[[$1|蠻靚]]嗰[[$2|$3]]水平。",
+   "babel-4": "箇隻用戶有[[$1|好喫價]]嗰[[$2|$3]]水平。",
+   "babel-5": "箇隻用戶有[[$1|專業]]嗰[[$2|$3]]能力。",
+   "babel-N": "箇隻用戶曉得[[$2|$3]]嗰[[$1|母語]]。",
+   "babel-0-n": "箇隻用戶[[$1|冇滴子]][[$2|贛語]]嗰水平(或者好艱難去聽轉佢)。",
+   "babel-1-n": "箇隻用戶有[[$1|滴把子]]嗰[[$2|贛語]]水平。",
+   "babel-2-n": "箇隻用戶有[[$1|一般子]]嗰[[$2|贛語]]水平。",
+   "babel-3-n": "箇隻用戶有[[$1|蠻靚]]嗰[[$2|贛語]]水平。",
+   "babel-4-n": "箇隻用戶有[[$1|好喫價]]嗰[[$2|贛語]]水平。",
+   "babel-5-n": "箇隻用戶有[[$1|專業]]嗰[[$2|贛語]]能力。",
+   "babel-N-n": "箇隻用戶曉得[[$2|贛語]]嗰[[$1|母語]]。"
 }
\ No newline at end of file
diff --git a/i18n/got.json b/i18n/got.json
index 8acbeaa..b4a0fa4 100644
--- a/i18n/got.json
+++ b/i18n/got.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Purodha"
-]
-},
-"babel-url": "Project:Babilu"
+   

[MediaWiki-commits] [Gerrit] operations/puppet[production]: Exclude 'admin' project from labs-ip-alias-dump.py

2017-03-31 Thread Andrew Bogott (Code Review)
Andrew Bogott has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345890 )

Change subject: Exclude 'admin' project from labs-ip-alias-dump.py
..


Exclude 'admin' project from labs-ip-alias-dump.py

Change-Id: If1698e57daa1ff3de8991c5f7160db962c39e078
---
M modules/dnsrecursor/files/labs-ip-alias-dump.py
1 file changed, 5 insertions(+), 0 deletions(-)

Approvals:
  Andrew Bogott: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/modules/dnsrecursor/files/labs-ip-alias-dump.py 
b/modules/dnsrecursor/files/labs-ip-alias-dump.py
index 6f0d834..98b7e65 100644
--- a/modules/dnsrecursor/files/labs-ip-alias-dump.py
+++ b/modules/dnsrecursor/files/labs-ip-alias-dump.py
@@ -55,6 +55,11 @@
 
 aliases = {}
 for project in projects:
+# There's nothing useful in 'admin,' and
+#  the novaobserver isn't a member.
+if project == 'admin':
+continue
+
 project_session = new_session(project)
 client = novaclient.Client('2', session=project_session, connect_retries=5)
 

-- 
To view, visit https://gerrit.wikimedia.org/r/345890
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: If1698e57daa1ff3de8991c5f7160db962c39e078
Gerrit-PatchSet: 1
Gerrit-Project: operations/puppet
Gerrit-Branch: production
Gerrit-Owner: Andrew Bogott 
Gerrit-Reviewer: Andrew Bogott 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...ArticleIndex[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345894 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I2fd769aad1b4f08750f08bc8780b0f4e0eecdf4f
---
M i18n/cs.json
M i18n/qqq.json
M package.json
3 files changed, 28 insertions(+), 28 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/ArticleIndex 
refs/changes/94/345894/1

diff --git a/i18n/cs.json b/i18n/cs.json
index f9f6987..d725713 100644
--- a/i18n/cs.json
+++ b/i18n/cs.json
@@ -1,11 +1,11 @@
 {
-"@metadata": {
-"authors": [
-"Josef Martiňák"
-]
-},
-"articleindex-desc": "Rozšíření zobrazuje rejstřík otagovaných slov v 
článku.",
-"articleindex-next": "další",
-"articleindex-prev": "předchozí",
-"articleindex-index": "rejstřík"
+   "@metadata": {
+   "authors": [
+   "Josef Martiňák"
+   ]
+   },
+   "articleindex-desc": "Rozšíření zobrazuje rejstřík otagovaných slov v 
článku.",
+   "articleindex-next": "další",
+   "articleindex-prev": "předchozí",
+   "articleindex-index": "rejstřík"
 }
diff --git a/i18n/qqq.json b/i18n/qqq.json
index 756b1fb..b2b186d 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -1,11 +1,11 @@
 {
-"@metadata": {
-"authors": [
-"Josef Martiňák"
-]
-},
-"articleindex-desc": "{{desc}}",
-"articleindex-next": "Navigation text button - next occurrence of tagged 
word",
-"articleindex-prev": "Navigation text button - previous occurrence of 
tagged word",
-"articleindex-index": "Navigation text button - jump to the index"
+   "@metadata": {
+   "authors": [
+   "Josef Martiňák"
+   ]
+   },
+   "articleindex-desc": "{{desc}}",
+   "articleindex-next": "Navigation text button - next occurrence of 
tagged word",
+   "articleindex-prev": "Navigation text button - previous occurrence of 
tagged word",
+   "articleindex-index": "Navigation text button - jump to the index"
 }
diff --git a/package.json b/package.json
index ec97d7b..120bfaa 100644
--- a/package.json
+++ b/package.json
@@ -1,12 +1,12 @@
 {
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "0.4.5",
-"grunt-cli": "0.1.13",
-"grunt-banana-checker": "0.4.0",
-"grunt-contrib-jshint": "1.0.0",
-"grunt-jsonlint": "1.0.7"
-  }
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "0.4.5",
+   "grunt-cli": "0.1.13",
+   "grunt-banana-checker": "0.4.0",
+   "grunt-contrib-jshint": "1.0.0",
+   "grunt-jsonlint": "1.0.7"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345894
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I2fd769aad1b4f08750f08bc8780b0f4e0eecdf4f
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/ArticleIndex
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...AccessControl[master]: Use tabs to indent in json

2017-03-31 Thread Umherirrender (Code Review)
Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345892 )

Change subject: Use tabs to indent in json
..

Use tabs to indent in json

Change-Id: I6eefbb0b6d04d301553c4ee0982519b57c11dcef
---
M i18n/ms.json
M i18n/te.json
M i18n/tl.json
M package.json
4 files changed, 29 insertions(+), 29 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/AccessControl 
refs/changes/92/345892/1

diff --git a/i18n/ms.json b/i18n/ms.json
index a06ba1c..068be9d 100644
--- a/i18n/ms.json
+++ b/i18n/ms.json
@@ -1,9 +1,9 @@
 {
-"@metadata": {
-"authors": [
-"Tedbundyjr"
-]
-},
-"accesscontrol-desc": "Membenarkan penghadan akses kumpulan pada laman 
berdasarkan basis pengguna",
-"accesscontrol-info": "Ini adalah laman lindungan."
+   "@metadata": {
+   "authors": [
+   "Tedbundyjr"
+   ]
+   },
+   "accesscontrol-desc": "Membenarkan penghadan akses kumpulan pada laman 
berdasarkan basis pengguna",
+   "accesscontrol-info": "Ini adalah laman lindungan."
 }
\ No newline at end of file
diff --git a/i18n/te.json b/i18n/te.json
index c60ccf0..7223a7c 100644
--- a/i18n/te.json
+++ b/i18n/te.json
@@ -1,8 +1,8 @@
 {
-"@metadata": {
-"authors": [
-"Veeven"
-]
-},
-"accesscontrol-info": "ఇది సంరక్షిత పేజీ!"
+   "@metadata": {
+   "authors": [
+   "Veeven"
+   ]
+   },
+   "accesscontrol-info": "ఇది సంరక్షిత పేజీ!"
 }
\ No newline at end of file
diff --git a/i18n/tl.json b/i18n/tl.json
index 0c33ced..bc10668 100644
--- a/i18n/tl.json
+++ b/i18n/tl.json
@@ -1,9 +1,9 @@
 {
-"@metadata": {
-"authors": [
-"AnakngAraw"
-]
-},
-"accesscontrol-desc": "Nagpapagana ng pagbabawal sa pagpunta ng pangkat sa 
isang pahina ayon sa pinagbabatayang tagagamit",
-"accesscontrol-info": "Ito ay isang pahinang pinuprutektahan!"
+   "@metadata": {
+   "authors": [
+   "AnakngAraw"
+   ]
+   },
+   "accesscontrol-desc": "Nagpapagana ng pagbabawal sa pagpunta ng pangkat 
sa isang pahina ayon sa pinagbabatayang tagagamit",
+   "accesscontrol-info": "Ito ay isang pahinang pinuprutektahan!"
 }
\ No newline at end of file
diff --git a/package.json b/package.json
index 41cecca..ced56ab 100644
--- a/package.json
+++ b/package.json
@@ -1,11 +1,11 @@
 {
-  "scripts": {
-"test": "grunt test"
-  },
-  "devDependencies": {
-"grunt": "0.4.5",
-"grunt-cli": "0.1.13",
-"grunt-banana-checker": "0.4.0",
-"grunt-jsonlint": "1.0.7"
-  }
+   "scripts": {
+   "test": "grunt test"
+   },
+   "devDependencies": {
+   "grunt": "0.4.5",
+   "grunt-cli": "0.1.13",
+   "grunt-banana-checker": "0.4.0",
+   "grunt-jsonlint": "1.0.7"
+   }
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/345892
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I6eefbb0b6d04d301553c4ee0982519b57c11dcef
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/AccessControl
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] operations/puppet[production]: Exclude 'admin' project from labs-ip-alias-dump.py

2017-03-31 Thread Andrew Bogott (Code Review)
Andrew Bogott has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345890 )

Change subject: Exclude 'admin' project from labs-ip-alias-dump.py
..

Exclude 'admin' project from labs-ip-alias-dump.py

Change-Id: If1698e57daa1ff3de8991c5f7160db962c39e078
---
M modules/dnsrecursor/files/labs-ip-alias-dump.py
1 file changed, 5 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/90/345890/1

diff --git a/modules/dnsrecursor/files/labs-ip-alias-dump.py 
b/modules/dnsrecursor/files/labs-ip-alias-dump.py
index 6f0d834..98b7e65 100644
--- a/modules/dnsrecursor/files/labs-ip-alias-dump.py
+++ b/modules/dnsrecursor/files/labs-ip-alias-dump.py
@@ -55,6 +55,11 @@
 
 aliases = {}
 for project in projects:
+# There's nothing useful in 'admin,' and
+#  the novaobserver isn't a member.
+if project == 'admin':
+continue
+
 project_session = new_session(project)
 client = novaclient.Client('2', session=project_session, connect_retries=5)
 

-- 
To view, visit https://gerrit.wikimedia.org/r/345890
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: If1698e57daa1ff3de8991c5f7160db962c39e078
Gerrit-PatchSet: 1
Gerrit-Project: operations/puppet
Gerrit-Branch: production
Gerrit-Owner: Andrew Bogott 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...VisualEditor[master]: Check magic link autolink sequences also after paste

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345620 )

Change subject: Check magic link autolink sequences also after paste
..


Check magic link autolink sequences also after paste

Bug: T161152
Change-Id: Ie308cdb287f805da888325d4c9ba6d3c35bd017c
---
M modules/ve-mw/ui/actions/ve.ui.MWLinkAction.js
1 file changed, 4 insertions(+), 4 deletions(-)

Approvals:
  jenkins-bot: Verified
  Jforrester: Looks good to me, approved



diff --git a/modules/ve-mw/ui/actions/ve.ui.MWLinkAction.js 
b/modules/ve-mw/ui/actions/ve.ui.MWLinkAction.js
index cbd3521..51decba 100644
--- a/modules/ve-mw/ui/actions/ve.ui.MWLinkAction.js
+++ b/modules/ve-mw/ui/actions/ve.ui.MWLinkAction.js
@@ -169,14 +169,14 @@
 // The regexps don't have to be precise; we'll validate the magic
 // link in #autolinkMagicLink above.
 ve.ui.sequenceRegistry.register(
-   new ve.ui.Sequence( 'autolinkMagicLinkIsbn10', 'autolinkMagicLink', 
/\bISBN\s+(?!97[89])([0-9][ -]?){9}[0-9Xx]$/, 0, true )
+   new ve.ui.Sequence( 'autolinkMagicLinkIsbn10', 'autolinkMagicLink', 
/\bISBN\s+(?!97[89])([0-9][ -]?){9}[0-9Xx]$/, 0, true, false, true )
 );
 ve.ui.sequenceRegistry.register(
-   new ve.ui.Sequence( 'autolinkMagicLinkIsbn13', 'autolinkMagicLink', 
/\bISBN\s+(97[89])[ -]?([0-9][ -]?){9}[0-9Xx]$/, 0, true )
+   new ve.ui.Sequence( 'autolinkMagicLinkIsbn13', 'autolinkMagicLink', 
/\bISBN\s+(97[89])[ -]?([0-9][ -]?){9}[0-9Xx]$/, 0, true, false, true )
 );
 ve.ui.sequenceRegistry.register(
-   new ve.ui.Sequence( 'autolinkMagicLinkIsbn', 'autolinkMagicLink', 
/\bISBN\s+(97[89][ -]?)?([0-9][ -]?){9}[0-9Xx]$/, 0, true, true )
+   new ve.ui.Sequence( 'autolinkMagicLinkIsbn', 'autolinkMagicLink', 
/\bISBN\s+(97[89][ -]?)?([0-9][ -]?){9}[0-9Xx]$/, 0, true, true, true )
 );
 ve.ui.sequenceRegistry.register(
-   new ve.ui.Sequence( 'autolinkMagicLinkRfcPmid', 'autolinkMagicLink', 
/\b(RFC|PMID)\s+[0-9]+$/, 0, true, true )
+   new ve.ui.Sequence( 'autolinkMagicLinkRfcPmid', 'autolinkMagicLink', 
/\b(RFC|PMID)\s+[0-9]+$/, 0, true, true, true )
 );

-- 
To view, visit https://gerrit.wikimedia.org/r/345620
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ie308cdb287f805da888325d4c9ba6d3c35bd017c
Gerrit-PatchSet: 2
Gerrit-Project: mediawiki/extensions/VisualEditor
Gerrit-Branch: master
Gerrit-Owner: Bartosz Dziewoński 
Gerrit-Reviewer: Jforrester 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...VisualEditor[master]: Update VE core submodule to master (a6c25d08e)

2017-03-31 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/345794 )

Change subject: Update VE core submodule to master (a6c25d08e)
..


Update VE core submodule to master (a6c25d08e)

New changes:
803e45655 Serialize/deserialize for Transaction and IndexValueStore
fff77990b build: Bump various devDependencies to latest
d926b3bed Update OOjs UI to v0.20.1
50cbc8af5 Fix disabling of surface
f2223fcdb Localisation updates from https://translatewiki.net.
daf59c3af ve.Node: Fix getRoot/getParent/getDocument documentation
8d877214f Update OOjs UI to v0.20.2
2ceaa8e23 ve.ui.Sequences: Allow optional execution after pastes

Bug: T161152
Bug: T161611
Change-Id: I07deafbfce86af99fce7db6501e43a62a330911a
---
M lib/ve
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  Bartosz Dziewoński: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/lib/ve b/lib/ve
index 495cd7d..a6c25d0 16
--- a/lib/ve
+++ b/lib/ve
@@ -1 +1 @@
-Subproject commit 495cd7d654397285841e168f3bc9ddff13969b29
+Subproject commit a6c25d08e866dfd94af1fefa9b690a6fd9c12eec

-- 
To view, visit https://gerrit.wikimedia.org/r/345794
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I07deafbfce86af99fce7db6501e43a62a330911a
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/VisualEditor
Gerrit-Branch: master
Gerrit-Owner: Jforrester 
Gerrit-Reviewer: Bartosz Dziewoński 
Gerrit-Reviewer: Esanders 
Gerrit-Reviewer: jenkins-bot <>

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


  1   2   3   >