[MediaWiki-commits] [Gerrit] operations...git-fat[master]: Invalidate git index cache before smudging

2017-01-20 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/00 )

Change subject: Invalidate git index cache before smudging
..

Invalidate git index cache before smudging

Occasionally we hit the problem where a git smudge filter is not
triggered -- for instance, when a file in a working tree's lstat info
matches the file in the git index cache. (see racy-git.txt in the git
documentation)

The previous work-around was touching the git-fat file; however, in
cases where git fat checkout is automated there is a chance that
touching the file will make no modification to the lstat information
(when a touch happens in the same second as a git checkout). In those
instances, git will not trigger the smudge filter and the file in the
checkout will remain orphaned.

We can work around this by ensuring that the timestamp on a file is
modified by looking at its previous timestamp and adding 1 to it.

Bug: T147856
Change-Id: I9d126b669a71bfd3ce21acee8c3f5d4757e68523
---
M git-fat
1 file changed, 8 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/debs/git-fat 
refs/changes/00/00/1

diff --git a/git-fat b/git-fat
index 24a1fd5..92ea88a 100755
--- a/git-fat
+++ b/git-fat
@@ -492,9 +492,14 @@
 # the file in .git/fat/objects, but git caches the file stat
 # from the previous time the file was smudged, therefore it
 # won't try to re-smudge. I don't know a git command that
-# specifically invalidates that cache, but touching the file
-# also does the trick.
-os.utime(fname, None)
+# specifically invalidates that cache, but changing the mtime
+# on the file will invalidate the cache.
+# Here we set the mtime to mtime + 1. This is an improvement
+# over touching the file as it catches the edgecase where a
+# git-checkout happens within the same second as a git fat
+# checkout.
+stat = os.lstat(fname)
+os.utime(fname, (stat.st_atime, stat.st_mtime + 1))
 # This re-smudge is essentially a copy that restores
 # permissions.
 subprocess.check_call(

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9d126b669a71bfd3ce21acee8c3f5d4757e68523
Gerrit-PatchSet: 1
Gerrit-Project: operations/debs/git-fat
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations/puppet[production]: Scap: Bump version to 3.5.0-1

2017-01-27 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/334677 )

Change subject: Scap: Bump version to 3.5.0-1
..

Scap: Bump version to 3.5.0-1

Update scap version and modify config for new version.

Bug: T127762
Change-Id: I015350dca1ffc7ee5746d587c8370d428383af35
---
M modules/scap/manifests/init.pp
M modules/scap/templates/scap.cfg.erb
2 files changed, 2 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/77/334677/1

diff --git a/modules/scap/manifests/init.pp b/modules/scap/manifests/init.pp
index 8461e22..b9b69a6 100644
--- a/modules/scap/manifests/init.pp
+++ b/modules/scap/manifests/init.pp
@@ -12,7 +12,7 @@
 class scap (
 $deployment_server = 'deployment',
 $wmflabs_master = 'deployment-tin.deployment-prep.eqiad.wmflabs',
-$version = '3.4.2-1',
+$version = '3.5.0-1',
 ) {
 package { 'scap':
 ensure => $version,
diff --git a/modules/scap/templates/scap.cfg.erb 
b/modules/scap/templates/scap.cfg.erb
index d4cdef6..a829491 100644
--- a/modules/scap/templates/scap.cfg.erb
+++ b/modules/scap/templates/scap.cfg.erb
@@ -55,6 +55,7 @@
 dsh_app_canaries: mediawiki-appserver-canaries
 
 logstash_host: logstash1001.eqiad.wmnet:9200
+canary_service: mwdeploy
 
 [eqiad.wmnet]
 # Wikimedia Foundation production eqiad datacenter

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

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

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


[MediaWiki-commits] [Gerrit] mediawiki...CologneBlue[master]: Fix remaining undefined index notices

2017-02-09 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/336908 )

Change subject: Fix remaining undefined index notices
..

Fix remaining undefined index notices

Since the removal of error supression the notices from of undefined
indecies in this skin have been many. This should continue the work done
previously to squelch remaining undefined indicies.

Bug: T157619
Change-Id: I9d098389285d8a8d7927e6bbfb2e0b42844a7dd1
---
M SkinCologneBlue.php
1 file changed, 78 insertions(+), 30 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/skins/CologneBlue 
refs/changes/08/336908/1

diff --git a/SkinCologneBlue.php b/SkinCologneBlue.php
index ece6172..b00c4d8 100644
--- a/SkinCologneBlue.php
+++ b/SkinCologneBlue.php
@@ -168,23 +168,38 @@
$element = array();
 
$editLinkMessage = 
$this->getSkin()->getTitle()->exists() ? 'editthispage' : 'create-this-page';
-   $element[] = $this->processBottomLink( 'edit', 
$content_nav['views']['edit'], $editLinkMessage );
-   $element[] = $this->processBottomLink(
-   'viewsource',
-   $content_nav['views']['viewsource'],
-   'viewsource'
-   );
 
-   $element[] = $this->processBottomLink(
-   'watch',
-   $content_nav['actions']['watch'],
-   'watchthispage'
-   );
-   $element[] = $this->processBottomLink(
-   'unwatch',
-   $content_nav['actions']['unwatch'],
-   'unwatchthispage'
-   );
+   if ( isset( $content_nav['views']['edit'] ) ) {
+   $element[] = $this->processBottomLink(
+   'edit',
+   $content_nav['views']['edit'],
+   $editLinkMessage
+   );
+   }
+
+   if ( isset( $content_nav['views']['viewsource'] ) ) {
+   $element[] = $this->processBottomLink(
+   'viewsource',
+   $content_nav['views']['viewsource'],
+   'viewsource'
+   );
+   }
+
+   if ( isset( $content_nav['actions']['watch'] ) ) {
+   $element[] = $this->processBottomLink(
+   'watch',
+   $content_nav['actions']['watch'],
+   'watchthispage'
+   );
+   }
+
+   if ( isset( $content_nav['actions']['unwatch'] ) ) {
+   $element[] = $this->processBottomLink(
+   'unwatch',
+   $content_nav['actions']['unwatch'],
+   'unwatchthispage'
+   );
+   }
 
$element[] = $this->talkLink();
 
@@ -193,7 +208,10 @@
$element[] = $this->processBottomLink( 'whatlinkshere', 
$toolbox['whatlinkshere'] );
$element[] = $this->processBottomLink( 
'recentchangeslinked', $toolbox['recentchangeslinked'] );
 
-   $element[] = $this->processBottomLink( 'contributions', 
$toolbox['contributions'] );
+   if ( isset( $toolbox['contributions'] ) ) {
+   $element[] = $this->processBottomLink( 
'contributions', $toolbox['contributions'] );
+   }
+
if ( isset( $toolbox['emailuser'] ) ) {
$element[] = $this->processBottomLink( 
'emailuser', $toolbox['emailuser'] );
}
@@ -203,11 +221,14 @@
// Second row. Privileged actions.
$element = array();
 
-   $element[] = $this->processBottomLink(
-   'delete',
-   $content_nav['actions']['delete'],
-   'deletethispage'
-   );
+   if ( isset( $content_nav['actions']['delete'] ) ) {
+   $element[] = $this->processBottomLink(
+   'delete',
+   $content_nav['actions']['delete'],
+   'deletethispage'
+  

[MediaWiki-commits] [Gerrit] mediawiki...CologneBlue[wmf/1.29.0-wmf.11]: Fix a bunch of undefined indexes

2017-02-09 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/336885 )

Change subject: Fix a bunch of undefined indexes
..

Fix a bunch of undefined indexes

Bug: T157619
Change-Id: Ibe79c1452dcf8975ced2244793add80eca6afb12
---
M SkinCologneBlue.php
1 file changed, 31 insertions(+), 21 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/skins/CologneBlue 
refs/changes/85/336885/1

diff --git a/SkinCologneBlue.php b/SkinCologneBlue.php
index 355b616..ece6172 100644
--- a/SkinCologneBlue.php
+++ b/SkinCologneBlue.php
@@ -194,7 +194,9 @@
$element[] = $this->processBottomLink( 
'recentchangeslinked', $toolbox['recentchangeslinked'] );
 
$element[] = $this->processBottomLink( 'contributions', 
$toolbox['contributions'] );
-   $element[] = $this->processBottomLink( 'emailuser', 
$toolbox['emailuser'] );
+   if ( isset( $toolbox['emailuser'] ) ) {
+   $element[] = $this->processBottomLink( 
'emailuser', $toolbox['emailuser'] );
+   }
 
$lines[] = $this->getSkin()->getLanguage()->pipeList( 
array_filter( $element ) );
 
@@ -206,22 +208,29 @@
$content_nav['actions']['delete'],
'deletethispage'
);
-   $element[] = $this->processBottomLink(
-   'undelete',
-   $content_nav['actions']['undelete'],
-   'undeletethispage'
-   );
+   if ( isset( $content_nav['actions']['undelete'] ) ) {
+   $element[] = $this->processBottomLink(
+   'undelete',
+   $content_nav['actions']['undelete'],
+   'undeletethispage'
+   );
+   }
 
-   $element[] = $this->processBottomLink(
-   'protect',
-   $content_nav['actions']['protect'],
-   'protectthispage'
-   );
-   $element[] = $this->processBottomLink(
-   'unprotect',
-   $content_nav['actions']['unprotect'],
-   'unprotectthispage'
-   );
+   if ( isset( $content_nav['actions']['protect'] ) ) {
+   $element[] = $this->processBottomLink(
+   'protect',
+   $content_nav['actions']['protect'],
+   'protectthispage'
+   );
+   }
+
+   if ( isset( $content_nav['actions']['unprotect'] ) ) {
+   $element[] = $this->processBottomLink(
+   'unprotect',
+   $content_nav['actions']['unprotect'],
+   'unprotectthispage'
+   );
+   }
 
$element[] = $this->processBottomLink( 'move', 
$content_nav['actions']['move'], 'movethispage' );
 
@@ -455,7 +464,7 @@
 
$personalUrls = $this->getPersonalTools();
foreach ( array( 'logout', 'createaccount', 'login' ) as $key ) 
{
-   if ( $personalUrls[$key] ) {
+   if ( isset( $personalUrls[$key] ) ) {
$s[] = $this->makeListItem( $key, 
$personalUrls[$key], array( 'tag' => 'span' ) );
}
}
@@ -486,11 +495,12 @@
);
$content_navigation['actions']['watch'] = null;
$content_navigation['actions']['unwatch'] = null;
+   $qbEditLinks = [ 'edit' => $content_navigation['views']['edit'] 
];
+   if ( isset( $content_navigation['views']['addsection'] ) ) {
+   $qbEditLinks['addsection'] = 
$content_navigation['views']['addsection'];
+   }
$qbedit = array_merge(
-   array(
-   'edit' => $content_navigation['views']['edit'],
-   'addsection' => 
$content_navigation['views']['addsection'],
-   ),
+   $qbEditLinks,
$content_navigation['actions']
);
 

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: 

[MediaWiki-commits] [Gerrit] mediawiki...CologneBlue[master]: Revert "Fix remaining undefined index notices"

2017-02-09 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/336924 )

Change subject: Revert "Fix remaining undefined index notices"
..

Revert "Fix remaining undefined index notices"

This reverts commit 96b0ddfc5941187cec883c6e6597139ab8bc73dc.

Change-Id: If5db8a9bb256a8595d9a9aee326719b231a2c4a5
---
M SkinCologneBlue.php
1 file changed, 30 insertions(+), 78 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/skins/CologneBlue 
refs/changes/24/336924/1

diff --git a/SkinCologneBlue.php b/SkinCologneBlue.php
index 9b2ba42..ece6172 100644
--- a/SkinCologneBlue.php
+++ b/SkinCologneBlue.php
@@ -168,38 +168,23 @@
$element = array();
 
$editLinkMessage = 
$this->getSkin()->getTitle()->exists() ? 'editthispage' : 'create-this-page';
+   $element[] = $this->processBottomLink( 'edit', 
$content_nav['views']['edit'], $editLinkMessage );
+   $element[] = $this->processBottomLink(
+   'viewsource',
+   $content_nav['views']['viewsource'],
+   'viewsource'
+   );
 
-   if ( isset( $content_nav['views']['edit'] ) ) {
-   $element[] = $this->processBottomLink(
-   'edit',
-   $content_nav['views']['edit'],
-   $editLinkMessage
-   );
-   }
-
-   if ( isset( $content_nav['views']['viewsource'] ) ) {
-   $element[] = $this->processBottomLink(
-   'viewsource',
-   $content_nav['views']['viewsource'],
-   'viewsource'
-   );
-   }
-
-   if ( isset( $content_nav['actions']['watch'] ) ) {
-   $element[] = $this->processBottomLink(
-   'watch',
-   $content_nav['actions']['watch'],
-   'watchthispage'
-   );
-   }
-
-   if ( isset( $content_nav['actions']['unwatch'] ) ) {
-   $element[] = $this->processBottomLink(
-   'unwatch',
-   $content_nav['actions']['unwatch'],
-   'unwatchthispage'
-   );
-   }
+   $element[] = $this->processBottomLink(
+   'watch',
+   $content_nav['actions']['watch'],
+   'watchthispage'
+   );
+   $element[] = $this->processBottomLink(
+   'unwatch',
+   $content_nav['actions']['unwatch'],
+   'unwatchthispage'
+   );
 
$element[] = $this->talkLink();
 
@@ -208,10 +193,7 @@
$element[] = $this->processBottomLink( 'whatlinkshere', 
$toolbox['whatlinkshere'] );
$element[] = $this->processBottomLink( 
'recentchangeslinked', $toolbox['recentchangeslinked'] );
 
-   if ( isset( $toolbox['contributions'] ) ) {
-   $element[] = $this->processBottomLink( 
'contributions', $toolbox['contributions'] );
-   }
-
+   $element[] = $this->processBottomLink( 'contributions', 
$toolbox['contributions'] );
if ( isset( $toolbox['emailuser'] ) ) {
$element[] = $this->processBottomLink( 
'emailuser', $toolbox['emailuser'] );
}
@@ -221,14 +203,11 @@
// Second row. Privileged actions.
$element = array();
 
-   if ( isset( $content_nav['actions']['delete'] ) ) {
-   $element[] = $this->processBottomLink(
-   'delete',
-   $content_nav['actions']['delete'],
-   'deletethispage'
-   );
-   }
-
+   $element[] = $this->processBottomLink(
+   'delete',
+   $content_nav['actions']['delete'],
+   'deletethispage'
+   );
if ( isset( 

[MediaWiki-commits] [Gerrit] mediawiki...CologneBlue[wmf/1.29.0-wmf.11]: Revert "Fix remaining undefined index notices"

2017-02-09 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/336923 )

Change subject: Revert "Fix remaining undefined index notices"
..

Revert "Fix remaining undefined index notices"

This reverts commit 3249e6d10b8c3e673a2dcec6d5dc3a1749107f55.

Change-Id: I7ff254962b7b1bb1f0cb416e043d16ec54128d44
---
M SkinCologneBlue.php
1 file changed, 30 insertions(+), 78 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/skins/CologneBlue 
refs/changes/23/336923/1

diff --git a/SkinCologneBlue.php b/SkinCologneBlue.php
index 9b2ba42..ece6172 100644
--- a/SkinCologneBlue.php
+++ b/SkinCologneBlue.php
@@ -168,38 +168,23 @@
$element = array();
 
$editLinkMessage = 
$this->getSkin()->getTitle()->exists() ? 'editthispage' : 'create-this-page';
+   $element[] = $this->processBottomLink( 'edit', 
$content_nav['views']['edit'], $editLinkMessage );
+   $element[] = $this->processBottomLink(
+   'viewsource',
+   $content_nav['views']['viewsource'],
+   'viewsource'
+   );
 
-   if ( isset( $content_nav['views']['edit'] ) ) {
-   $element[] = $this->processBottomLink(
-   'edit',
-   $content_nav['views']['edit'],
-   $editLinkMessage
-   );
-   }
-
-   if ( isset( $content_nav['views']['viewsource'] ) ) {
-   $element[] = $this->processBottomLink(
-   'viewsource',
-   $content_nav['views']['viewsource'],
-   'viewsource'
-   );
-   }
-
-   if ( isset( $content_nav['actions']['watch'] ) ) {
-   $element[] = $this->processBottomLink(
-   'watch',
-   $content_nav['actions']['watch'],
-   'watchthispage'
-   );
-   }
-
-   if ( isset( $content_nav['actions']['unwatch'] ) ) {
-   $element[] = $this->processBottomLink(
-   'unwatch',
-   $content_nav['actions']['unwatch'],
-   'unwatchthispage'
-   );
-   }
+   $element[] = $this->processBottomLink(
+   'watch',
+   $content_nav['actions']['watch'],
+   'watchthispage'
+   );
+   $element[] = $this->processBottomLink(
+   'unwatch',
+   $content_nav['actions']['unwatch'],
+   'unwatchthispage'
+   );
 
$element[] = $this->talkLink();
 
@@ -208,10 +193,7 @@
$element[] = $this->processBottomLink( 'whatlinkshere', 
$toolbox['whatlinkshere'] );
$element[] = $this->processBottomLink( 
'recentchangeslinked', $toolbox['recentchangeslinked'] );
 
-   if ( isset( $toolbox['contributions'] ) ) {
-   $element[] = $this->processBottomLink( 
'contributions', $toolbox['contributions'] );
-   }
-
+   $element[] = $this->processBottomLink( 'contributions', 
$toolbox['contributions'] );
if ( isset( $toolbox['emailuser'] ) ) {
$element[] = $this->processBottomLink( 
'emailuser', $toolbox['emailuser'] );
}
@@ -221,14 +203,11 @@
// Second row. Privileged actions.
$element = array();
 
-   if ( isset( $content_nav['actions']['delete'] ) ) {
-   $element[] = $this->processBottomLink(
-   'delete',
-   $content_nav['actions']['delete'],
-   'deletethispage'
-   );
-   }
-
+   $element[] = $this->processBottomLink(
+   'delete',
+   $content_nav['actions']['delete'],
+   'deletethispage'
+   );
if ( isset( 

[MediaWiki-commits] [Gerrit] mediawiki...CologneBlue[master]: Revert "Remove warning suppression"

2017-02-09 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/336928 )

Change subject: Revert "Remove warning suppression"
..

Revert "Remove warning suppression"

This reverts commit 06a762ee7edc2a375f75650a0761d515e30a941f.

Change-Id: I3a060be08a2108d63c558f83f8c5eb3348bce1c6
---
M SkinCologneBlue.php
1 file changed, 3 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/skins/CologneBlue 
refs/changes/28/336928/1

diff --git a/SkinCologneBlue.php b/SkinCologneBlue.php
index ece6172..ce93713 100644
--- a/SkinCologneBlue.php
+++ b/SkinCologneBlue.php
@@ -56,6 +56,8 @@
 
 class CologneBlueTemplate extends BaseTemplate {
function execute() {
+   // Suppress warnings to prevent notices about missing indexes 
in $this->data
+   wfSuppressWarnings();
$this->html( 'headelement' );
echo $this->beforeContent();
$this->html( 'bodytext' );
@@ -64,6 +66,7 @@
$this->html( 'dataAfterContent' );
$this->printTrail();
echo "\n";
+   wfRestoreWarnings();
}
 
/**

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I3a060be08a2108d63c558f83f8c5eb3348bce1c6
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/skins/CologneBlue
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: all wikis to 1.29.0-wmf.11

2017-02-09 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/336934 )

Change subject: all wikis to 1.29.0-wmf.11
..

all wikis to 1.29.0-wmf.11

Change-Id: Ic93cc3794994aa1ecc7d165786280e0279ec0890
---
M wikiversions.json
1 file changed, 300 insertions(+), 300 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/34/336934/1

diff --git a/wikiversions.json b/wikiversions.json
index f85d831..3ee2aba 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -1,40 +1,40 @@
 {
-"aawiki": "php-1.29.0-wmf.10",
+"aawiki": "php-1.29.0-wmf.11",
 "aawikibooks": "php-1.29.0-wmf.11",
 "aawiktionary": "php-1.29.0-wmf.11",
-"abwiki": "php-1.29.0-wmf.10",
+"abwiki": "php-1.29.0-wmf.11",
 "abwiktionary": "php-1.29.0-wmf.11",
-"acewiki": "php-1.29.0-wmf.10",
+"acewiki": "php-1.29.0-wmf.11",
 "advisorywiki": "php-1.29.0-wmf.11",
-"adywiki": "php-1.29.0-wmf.10",
-"afwiki": "php-1.29.0-wmf.10",
+"adywiki": "php-1.29.0-wmf.11",
+"afwiki": "php-1.29.0-wmf.11",
 "afwikibooks": "php-1.29.0-wmf.11",
 "afwikiquote": "php-1.29.0-wmf.11",
 "afwiktionary": "php-1.29.0-wmf.11",
-"akwiki": "php-1.29.0-wmf.10",
+"akwiki": "php-1.29.0-wmf.11",
 "akwikibooks": "php-1.29.0-wmf.11",
 "akwiktionary": "php-1.29.0-wmf.11",
-"alswiki": "php-1.29.0-wmf.10",
+"alswiki": "php-1.29.0-wmf.11",
 "alswikibooks": "php-1.29.0-wmf.11",
 "alswikiquote": "php-1.29.0-wmf.11",
 "alswiktionary": "php-1.29.0-wmf.11",
-"amwiki": "php-1.29.0-wmf.10",
+"amwiki": "php-1.29.0-wmf.11",
 "amwikiquote": "php-1.29.0-wmf.11",
 "amwiktionary": "php-1.29.0-wmf.11",
-"angwiki": "php-1.29.0-wmf.10",
+"angwiki": "php-1.29.0-wmf.11",
 "angwikibooks": "php-1.29.0-wmf.11",
 "angwikiquote": "php-1.29.0-wmf.11",
 "angwikisource": "php-1.29.0-wmf.11",
 "angwiktionary": "php-1.29.0-wmf.11",
-"anwiki": "php-1.29.0-wmf.10",
+"anwiki": "php-1.29.0-wmf.11",
 "anwiktionary": "php-1.29.0-wmf.11",
-"arbcom_cswiki": "php-1.29.0-wmf.10",
-"arbcom_dewiki": "php-1.29.0-wmf.10",
-"arbcom_enwiki": "php-1.29.0-wmf.10",
-"arbcom_fiwiki": "php-1.29.0-wmf.10",
-"arbcom_nlwiki": "php-1.29.0-wmf.10",
-"arcwiki": "php-1.29.0-wmf.10",
-"arwiki": "php-1.29.0-wmf.10",
+"arbcom_cswiki": "php-1.29.0-wmf.11",
+"arbcom_dewiki": "php-1.29.0-wmf.11",
+"arbcom_enwiki": "php-1.29.0-wmf.11",
+"arbcom_fiwiki": "php-1.29.0-wmf.11",
+"arbcom_nlwiki": "php-1.29.0-wmf.11",
+"arcwiki": "php-1.29.0-wmf.11",
+"arwiki": "php-1.29.0-wmf.11",
 "arwikibooks": "php-1.29.0-wmf.11",
 "arwikimedia": "php-1.29.0-wmf.11",
 "arwikinews": "php-1.29.0-wmf.11",
@@ -42,80 +42,80 @@
 "arwikisource": "php-1.29.0-wmf.11",
 "arwikiversity": "php-1.29.0-wmf.11",
 "arwiktionary": "php-1.29.0-wmf.11",
-"arzwiki": "php-1.29.0-wmf.10",
-"astwiki": "php-1.29.0-wmf.10",
+"arzwiki": "php-1.29.0-wmf.11",
+"astwiki": "php-1.29.0-wmf.11",
 "astwikibooks": "php-1.29.0-wmf.11",
 "astwikiquote": "php-1.29.0-wmf.11",
 "astwiktionary": "php-1.29.0-wmf.11",
-"aswiki": "php-1.29.0-wmf.10",
+"aswiki": "php-1.29.0-wmf.11",
 "aswikibooks": "php-1.29.0-wmf.11",
 "aswikisource": "php-1.29.0-wmf.11",
 "aswiktionary": "php-1.29.0-wmf.11",
 "auditcomwiki": "php-1.29.0-wmf.11",
-"avwiki": "php-1.29.0-wmf.10",
+"avwiki": "php-1.29.0-wmf.11",
 "avwiktionary": "php-1.29.0-wmf.11",
-"aywiki": "php-1.29.0-wmf.10",
+"aywiki": "php-1.29.0-wmf.11",
 "aywikibooks": "php-1.29.0-wmf.11",
 "aywiktionary": "php-1.29.0-wmf.11",
-"azbwiki": "php-1.29.0-wmf.10",
-"azwiki": "php-1.29.0-wmf.10",
+"azbwiki": "php-1.29.0-wmf.11",
+"azwiki": "php-1.29.0-wmf.11",
 "azwikibooks": "php-1.29.0-wmf.11",
 "azwikiquote": "php-1.29.0-wmf.11",
 "azwikisource": "php-1.29.0-wmf.11",
 "azwiktionary": "php-1.29.0-wmf.11",
-"barwiki": "php-1.29.0-wmf.10",
-"bat_smgwiki": "php-1.29.0-wmf.10",
-"bawiki": "php-1.29.0-wmf.10",
+"barwiki": "php-1.29.0-wmf.11",
+"bat_smgwiki": "php-1.29.0-wmf.11",
+"bawiki": "php-1.29.0-wmf.11",
 "bawikibooks": "php-1.29.0-wmf.11",
-"bclwiki": "php-1.29.0-wmf.10",
+"bclwiki": "php-1.29.0-wmf.11",
 "bdwikimedia": "php-1.29.0-wmf.11",
-"be_x_oldwiki": "php-1.29.0-wmf.10",
+"be_x_oldwiki": "php-1.29.0-wmf.11",
 "betawikiversity": "php-1.29.0-wmf.11",
-"bewiki": "php-1.29.0-wmf.10",
+"bewiki": "php-1.29.0-wmf.11",
 "bewikibooks": "php-1.29.0-wmf.11",
 "bewikimedia": "php-1.29.0-wmf.11",
 "bewikiquote": "php-1.29.0-wmf.11",
 "bewikisource": "php-1.29.0-wmf.11",
 "bewiktionary": "php-1.29.0-wmf.11",
-"bgwiki": "php-1.29.0-wmf.10",
+"bgwiki": "php-1.29.0-wmf.11",
 "bgwikibooks": "php-1.29.0-wmf.11",
 

[MediaWiki-commits] [Gerrit] mediawiki...CologneBlue[wmf/1.29.0-wmf.11]: Fix remaining undefined index notices

2017-02-09 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/336917 )

Change subject: Fix remaining undefined index notices
..

Fix remaining undefined index notices

Since the removal of error supression the notices of undefined indecies
in this skin have been many. This should continue the work done
previously to squelch remaining undefined index notices.

Bug: T157619
Change-Id: I9d098389285d8a8d7927e6bbfb2e0b42844a7dd1
(cherry picked from commit 96b0ddfc5941187cec883c6e6597139ab8bc73dc)
---
M SkinCologneBlue.php
1 file changed, 78 insertions(+), 30 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/skins/CologneBlue 
refs/changes/17/336917/1

diff --git a/SkinCologneBlue.php b/SkinCologneBlue.php
index ece6172..9b2ba42 100644
--- a/SkinCologneBlue.php
+++ b/SkinCologneBlue.php
@@ -168,23 +168,38 @@
$element = array();
 
$editLinkMessage = 
$this->getSkin()->getTitle()->exists() ? 'editthispage' : 'create-this-page';
-   $element[] = $this->processBottomLink( 'edit', 
$content_nav['views']['edit'], $editLinkMessage );
-   $element[] = $this->processBottomLink(
-   'viewsource',
-   $content_nav['views']['viewsource'],
-   'viewsource'
-   );
 
-   $element[] = $this->processBottomLink(
-   'watch',
-   $content_nav['actions']['watch'],
-   'watchthispage'
-   );
-   $element[] = $this->processBottomLink(
-   'unwatch',
-   $content_nav['actions']['unwatch'],
-   'unwatchthispage'
-   );
+   if ( isset( $content_nav['views']['edit'] ) ) {
+   $element[] = $this->processBottomLink(
+   'edit',
+   $content_nav['views']['edit'],
+   $editLinkMessage
+   );
+   }
+
+   if ( isset( $content_nav['views']['viewsource'] ) ) {
+   $element[] = $this->processBottomLink(
+   'viewsource',
+   $content_nav['views']['viewsource'],
+   'viewsource'
+   );
+   }
+
+   if ( isset( $content_nav['actions']['watch'] ) ) {
+   $element[] = $this->processBottomLink(
+   'watch',
+   $content_nav['actions']['watch'],
+   'watchthispage'
+   );
+   }
+
+   if ( isset( $content_nav['actions']['unwatch'] ) ) {
+   $element[] = $this->processBottomLink(
+   'unwatch',
+   $content_nav['actions']['unwatch'],
+   'unwatchthispage'
+   );
+   }
 
$element[] = $this->talkLink();
 
@@ -193,7 +208,10 @@
$element[] = $this->processBottomLink( 'whatlinkshere', 
$toolbox['whatlinkshere'] );
$element[] = $this->processBottomLink( 
'recentchangeslinked', $toolbox['recentchangeslinked'] );
 
-   $element[] = $this->processBottomLink( 'contributions', 
$toolbox['contributions'] );
+   if ( isset( $toolbox['contributions'] ) ) {
+   $element[] = $this->processBottomLink( 
'contributions', $toolbox['contributions'] );
+   }
+
if ( isset( $toolbox['emailuser'] ) ) {
$element[] = $this->processBottomLink( 
'emailuser', $toolbox['emailuser'] );
}
@@ -203,11 +221,14 @@
// Second row. Privileged actions.
$element = array();
 
-   $element[] = $this->processBottomLink(
-   'delete',
-   $content_nav['actions']['delete'],
-   'deletethispage'
-   );
+   if ( isset( $content_nav['actions']['delete'] ) ) {
+   $element[] = $this->processBottomLink(
+   'delete',
+   

[MediaWiki-commits] [Gerrit] mediawiki...CologneBlue[wmf/1.29.0-wmf.11]: Revert "Remove warning suppression"

2017-02-09 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/336931 )

Change subject: Revert "Remove warning suppression"
..

Revert "Remove warning suppression"

This reverts commit 06a762ee7edc2a375f75650a0761d515e30a941f.

Change-Id: I3a060be08a2108d63c558f83f8c5eb3348bce1c6
---
M SkinCologneBlue.php
1 file changed, 3 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/skins/CologneBlue 
refs/changes/31/336931/1

diff --git a/SkinCologneBlue.php b/SkinCologneBlue.php
index ece6172..ce93713 100644
--- a/SkinCologneBlue.php
+++ b/SkinCologneBlue.php
@@ -56,6 +56,8 @@
 
 class CologneBlueTemplate extends BaseTemplate {
function execute() {
+   // Suppress warnings to prevent notices about missing indexes 
in $this->data
+   wfSuppressWarnings();
$this->html( 'headelement' );
echo $this->beforeContent();
$this->html( 'bodytext' );
@@ -64,6 +66,7 @@
$this->html( 'dataAfterContent' );
$this->printTrail();
echo "\n";
+   wfRestoreWarnings();
}
 
/**

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I3a060be08a2108d63c558f83f8c5eb3348bce1c6
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/skins/CologneBlue
Gerrit-Branch: wmf/1.29.0-wmf.11
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations/puppet[production]: Beta: Add prometheus/jmx_exporter to scap::sources

2017-02-10 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/337038 )

Change subject: Beta: Add prometheus/jmx_exporter to scap::sources
..

Beta: Add prometheus/jmx_exporter to scap::sources

Since deployment-prep does not use the hiera role hierarchy,
scap::sources in role::deployment::server are not applied; however,
several deployment-prep servers expect scap repositories to be available
on tin -- in this instance a missing prometheus/jmx_exporter is causing
puppet run failures.

Change-Id: I7aa80fdf7c8aad6cdfa235461994029ab5521151
---
M hieradata/labs/deployment-prep/common.yaml
1 file changed, 4 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/38/337038/1

diff --git a/hieradata/labs/deployment-prep/common.yaml 
b/hieradata/labs/deployment-prep/common.yaml
index 7cee964..8eef6a2 100644
--- a/hieradata/labs/deployment-prep/common.yaml
+++ b/hieradata/labs/deployment-prep/common.yaml
@@ -259,5 +259,9 @@
   # Public EventStreams service
   eventstreams/deploy:
 repository: mediawiki/services/eventstreams/deploy
+
+  # Prometheus JMX exporter
+  prometheus/jmx_exporter:
+repository: operations/software/prometheus_jmx_exporter
 prometheus_nodes:
   - deployment-prometheus01.deployment-prep.eqiad.wmflabs

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

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

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Group0 to 1.29.0-wmf.12

2017-02-14 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/337744 )

Change subject: Group0 to 1.29.0-wmf.12
..

Group0 to 1.29.0-wmf.12

Change-Id: I3df99ea46646c3137d830a7b11724710f442790f
---
M php
M wikiversions.json
2 files changed, 6 insertions(+), 6 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/44/337744/1

diff --git a/php b/php
index 9ca9da8..954df70 12
--- a/php
+++ b/php
@@ -1 +1 @@
-php-1.29.0-wmf.11
\ No newline at end of file
+php-1.29.0-wmf.12
\ No newline at end of file
diff --git a/wikiversions.json b/wikiversions.json
index 3ee2aba..a79730b 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -481,7 +481,7 @@
 "maiwiki": "php-1.29.0-wmf.11",
 "map_bmswiki": "php-1.29.0-wmf.11",
 "mdfwiki": "php-1.29.0-wmf.11",
-"mediawikiwiki": "php-1.29.0-wmf.11",
+"mediawikiwiki": "php-1.29.0-wmf.12",
 "metawiki": "php-1.29.0-wmf.11",
 "mgwiki": "php-1.29.0-wmf.11",
 "mgwikibooks": "php-1.29.0-wmf.11",
@@ -751,9 +751,9 @@
 "tawiktionary": "php-1.29.0-wmf.11",
 "tcywiki": "php-1.29.0-wmf.11",
 "tenwiki": "php-1.29.0-wmf.11",
-"test2wiki": "php-1.29.0-wmf.11",
-"testwiki": "php-1.29.0-wmf.11",
-"testwikidatawiki": "php-1.29.0-wmf.11",
+"test2wiki": "php-1.29.0-wmf.12",
+"testwiki": "php-1.29.0-wmf.12",
+"testwikidatawiki": "php-1.29.0-wmf.12",
 "tetwiki": "php-1.29.0-wmf.11",
 "tewiki": "php-1.29.0-wmf.11",
 "tewikibooks": "php-1.29.0-wmf.11",
@@ -883,7 +883,7 @@
 "zawikiquote": "php-1.29.0-wmf.11",
 "zawiktionary": "php-1.29.0-wmf.11",
 "zeawiki": "php-1.29.0-wmf.11",
-"zerowiki": "php-1.29.0-wmf.11",
+"zerowiki": "php-1.29.0-wmf.12",
 "zh_classicalwiki": "php-1.29.0-wmf.11",
 "zh_min_nanwiki": "php-1.29.0-wmf.11",
 "zh_min_nanwikibooks": "php-1.29.0-wmf.11",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I3df99ea46646c3137d830a7b11724710f442790f
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] mediawiki/core[wmf/1.29.0-wmf.11]: Type check the APC value in LoadBalancer::doWait()

2017-02-14 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/337669 )

Change subject: Type check the APC value in LoadBalancer::doWait()
..

Type check the APC value in LoadBalancer::doWait()

Change-Id: If00cd5fd2ace828ce03824ec7b5735de7d950dec
(cherry picked from commit 473b200a7d49ee25f2838cec84c6833b71d05fa2)
---
M includes/libs/rdbms/loadbalancer/LoadBalancer.php
1 file changed, 4 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/69/337669/1

diff --git a/includes/libs/rdbms/loadbalancer/LoadBalancer.php 
b/includes/libs/rdbms/loadbalancer/LoadBalancer.php
index baac3d0..fbdccc7 100644
--- a/includes/libs/rdbms/loadbalancer/LoadBalancer.php
+++ b/includes/libs/rdbms/loadbalancer/LoadBalancer.php
@@ -488,7 +488,10 @@
$key = $this->srvCache->makeGlobalKey( __CLASS__, 
'last-known-pos', $server );
/** @var DBMasterPos $knownReachedPos */
$knownReachedPos = $this->srvCache->get( $key );
-   if ( $knownReachedPos && $knownReachedPos->hasReached( 
$this->mWaitForPos ) ) {
+   if (
+   $knownReachedPos instanceof DBMasterPos &&
+   $knownReachedPos->hasReached( $this->mWaitForPos )
+   ) {
$this->replLogger->debug( __METHOD__ .
": replica DB $server known to be caught up 
(pos >= $knownReachedPos)." );
return true;

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: If00cd5fd2ace828ce03824ec7b5735de7d950dec
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: wmf/1.29.0-wmf.11
Gerrit-Owner: Thcipriani 
Gerrit-Reviewer: Aaron Schulz 

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Revert "Group0 to 1.29.0-wmf.12"

2017-02-14 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/337753 )

Change subject: Revert "Group0 to 1.29.0-wmf.12"
..

Revert "Group0 to 1.29.0-wmf.12"

This reverts commit b7ba2985155ae0769a608ddf39dd0189ea8ea0eb.

Change-Id: Ia46609c8a3ee5651a702a964e49549d260b83e52
---
M php
M wikiversions.json
2 files changed, 6 insertions(+), 6 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/53/337753/1

diff --git a/php b/php
index 954df70..9ca9da8 12
--- a/php
+++ b/php
@@ -1 +1 @@
-php-1.29.0-wmf.12
\ No newline at end of file
+php-1.29.0-wmf.11
\ No newline at end of file
diff --git a/wikiversions.json b/wikiversions.json
index a79730b..3ee2aba 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -481,7 +481,7 @@
 "maiwiki": "php-1.29.0-wmf.11",
 "map_bmswiki": "php-1.29.0-wmf.11",
 "mdfwiki": "php-1.29.0-wmf.11",
-"mediawikiwiki": "php-1.29.0-wmf.12",
+"mediawikiwiki": "php-1.29.0-wmf.11",
 "metawiki": "php-1.29.0-wmf.11",
 "mgwiki": "php-1.29.0-wmf.11",
 "mgwikibooks": "php-1.29.0-wmf.11",
@@ -751,9 +751,9 @@
 "tawiktionary": "php-1.29.0-wmf.11",
 "tcywiki": "php-1.29.0-wmf.11",
 "tenwiki": "php-1.29.0-wmf.11",
-"test2wiki": "php-1.29.0-wmf.12",
-"testwiki": "php-1.29.0-wmf.12",
-"testwikidatawiki": "php-1.29.0-wmf.12",
+"test2wiki": "php-1.29.0-wmf.11",
+"testwiki": "php-1.29.0-wmf.11",
+"testwikidatawiki": "php-1.29.0-wmf.11",
 "tetwiki": "php-1.29.0-wmf.11",
 "tewiki": "php-1.29.0-wmf.11",
 "tewikibooks": "php-1.29.0-wmf.11",
@@ -883,7 +883,7 @@
 "zawikiquote": "php-1.29.0-wmf.11",
 "zawiktionary": "php-1.29.0-wmf.11",
 "zeawiki": "php-1.29.0-wmf.11",
-"zerowiki": "php-1.29.0-wmf.12",
+"zerowiki": "php-1.29.0-wmf.11",
 "zh_classicalwiki": "php-1.29.0-wmf.11",
 "zh_min_nanwiki": "php-1.29.0-wmf.11",
 "zh_min_nanwikibooks": "php-1.29.0-wmf.11",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia46609c8a3ee5651a702a964e49549d260b83e52
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: group1 wikis to 1.29.0-wmf.12

2017-02-16 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/338161 )

Change subject: group1 wikis to 1.29.0-wmf.12
..

group1 wikis to 1.29.0-wmf.12

Change-Id: I8b417178a65f37dbdd7a1fce04058dc90e3f6ccf
---
M wikiversions.json
1 file changed, 597 insertions(+), 597 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/61/338161/1

diff --git a/wikiversions.json b/wikiversions.json
index a79730b..21e8337 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -1,33 +1,33 @@
 {
 "aawiki": "php-1.29.0-wmf.11",
-"aawikibooks": "php-1.29.0-wmf.11",
-"aawiktionary": "php-1.29.0-wmf.11",
+"aawikibooks": "php-1.29.0-wmf.12",
+"aawiktionary": "php-1.29.0-wmf.12",
 "abwiki": "php-1.29.0-wmf.11",
-"abwiktionary": "php-1.29.0-wmf.11",
+"abwiktionary": "php-1.29.0-wmf.12",
 "acewiki": "php-1.29.0-wmf.11",
-"advisorywiki": "php-1.29.0-wmf.11",
+"advisorywiki": "php-1.29.0-wmf.12",
 "adywiki": "php-1.29.0-wmf.11",
 "afwiki": "php-1.29.0-wmf.11",
-"afwikibooks": "php-1.29.0-wmf.11",
-"afwikiquote": "php-1.29.0-wmf.11",
-"afwiktionary": "php-1.29.0-wmf.11",
+"afwikibooks": "php-1.29.0-wmf.12",
+"afwikiquote": "php-1.29.0-wmf.12",
+"afwiktionary": "php-1.29.0-wmf.12",
 "akwiki": "php-1.29.0-wmf.11",
-"akwikibooks": "php-1.29.0-wmf.11",
-"akwiktionary": "php-1.29.0-wmf.11",
+"akwikibooks": "php-1.29.0-wmf.12",
+"akwiktionary": "php-1.29.0-wmf.12",
 "alswiki": "php-1.29.0-wmf.11",
-"alswikibooks": "php-1.29.0-wmf.11",
-"alswikiquote": "php-1.29.0-wmf.11",
-"alswiktionary": "php-1.29.0-wmf.11",
+"alswikibooks": "php-1.29.0-wmf.12",
+"alswikiquote": "php-1.29.0-wmf.12",
+"alswiktionary": "php-1.29.0-wmf.12",
 "amwiki": "php-1.29.0-wmf.11",
-"amwikiquote": "php-1.29.0-wmf.11",
-"amwiktionary": "php-1.29.0-wmf.11",
+"amwikiquote": "php-1.29.0-wmf.12",
+"amwiktionary": "php-1.29.0-wmf.12",
 "angwiki": "php-1.29.0-wmf.11",
-"angwikibooks": "php-1.29.0-wmf.11",
-"angwikiquote": "php-1.29.0-wmf.11",
-"angwikisource": "php-1.29.0-wmf.11",
-"angwiktionary": "php-1.29.0-wmf.11",
+"angwikibooks": "php-1.29.0-wmf.12",
+"angwikiquote": "php-1.29.0-wmf.12",
+"angwikisource": "php-1.29.0-wmf.12",
+"angwiktionary": "php-1.29.0-wmf.12",
 "anwiki": "php-1.29.0-wmf.11",
-"anwiktionary": "php-1.29.0-wmf.11",
+"anwiktionary": "php-1.29.0-wmf.12",
 "arbcom_cswiki": "php-1.29.0-wmf.11",
 "arbcom_dewiki": "php-1.29.0-wmf.11",
 "arbcom_enwiki": "php-1.29.0-wmf.11",
@@ -35,720 +35,720 @@
 "arbcom_nlwiki": "php-1.29.0-wmf.11",
 "arcwiki": "php-1.29.0-wmf.11",
 "arwiki": "php-1.29.0-wmf.11",
-"arwikibooks": "php-1.29.0-wmf.11",
-"arwikimedia": "php-1.29.0-wmf.11",
-"arwikinews": "php-1.29.0-wmf.11",
-"arwikiquote": "php-1.29.0-wmf.11",
-"arwikisource": "php-1.29.0-wmf.11",
-"arwikiversity": "php-1.29.0-wmf.11",
-"arwiktionary": "php-1.29.0-wmf.11",
+"arwikibooks": "php-1.29.0-wmf.12",
+"arwikimedia": "php-1.29.0-wmf.12",
+"arwikinews": "php-1.29.0-wmf.12",
+"arwikiquote": "php-1.29.0-wmf.12",
+"arwikisource": "php-1.29.0-wmf.12",
+"arwikiversity": "php-1.29.0-wmf.12",
+"arwiktionary": "php-1.29.0-wmf.12",
 "arzwiki": "php-1.29.0-wmf.11",
 "astwiki": "php-1.29.0-wmf.11",
-"astwikibooks": "php-1.29.0-wmf.11",
-"astwikiquote": "php-1.29.0-wmf.11",
-"astwiktionary": "php-1.29.0-wmf.11",
+"astwikibooks": "php-1.29.0-wmf.12",
+"astwikiquote": "php-1.29.0-wmf.12",
+"astwiktionary": "php-1.29.0-wmf.12",
 "aswiki": "php-1.29.0-wmf.11",
-"aswikibooks": "php-1.29.0-wmf.11",
-"aswikisource": "php-1.29.0-wmf.11",
-"aswiktionary": "php-1.29.0-wmf.11",
-"auditcomwiki": "php-1.29.0-wmf.11",
+"aswikibooks": "php-1.29.0-wmf.12",
+"aswikisource": "php-1.29.0-wmf.12",
+"aswiktionary": "php-1.29.0-wmf.12",
+"auditcomwiki": "php-1.29.0-wmf.12",
 "avwiki": "php-1.29.0-wmf.11",
-"avwiktionary": "php-1.29.0-wmf.11",
+"avwiktionary": "php-1.29.0-wmf.12",
 "aywiki": "php-1.29.0-wmf.11",
-"aywikibooks": "php-1.29.0-wmf.11",
-"aywiktionary": "php-1.29.0-wmf.11",
+"aywikibooks": "php-1.29.0-wmf.12",
+"aywiktionary": "php-1.29.0-wmf.12",
 "azbwiki": "php-1.29.0-wmf.11",
 "azwiki": "php-1.29.0-wmf.11",
-"azwikibooks": "php-1.29.0-wmf.11",
-"azwikiquote": "php-1.29.0-wmf.11",
-"azwikisource": "php-1.29.0-wmf.11",
-"azwiktionary": "php-1.29.0-wmf.11",
+"azwikibooks": "php-1.29.0-wmf.12",
+"azwikiquote": "php-1.29.0-wmf.12",
+"azwikisource": "php-1.29.0-wmf.12",
+"azwiktionary": "php-1.29.0-wmf.12",
 "barwiki": "php-1.29.0-wmf.11",
 "bat_smgwiki": "php-1.29.0-wmf.11",
 "bawiki": "php-1.29.0-wmf.11",
-"bawikibooks": 

[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: all wikis to 1.29.0-wmf.12

2017-02-16 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/338168 )

Change subject: all wikis to 1.29.0-wmf.12
..

all wikis to 1.29.0-wmf.12

Change-Id: I6c037ab45f6b50e8de386878df4ffb144d068aa6
---
M wikiversions.json
1 file changed, 300 insertions(+), 300 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/68/338168/1

diff --git a/wikiversions.json b/wikiversions.json
index 21e8337..bc461f3 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -1,40 +1,40 @@
 {
-"aawiki": "php-1.29.0-wmf.11",
+"aawiki": "php-1.29.0-wmf.12",
 "aawikibooks": "php-1.29.0-wmf.12",
 "aawiktionary": "php-1.29.0-wmf.12",
-"abwiki": "php-1.29.0-wmf.11",
+"abwiki": "php-1.29.0-wmf.12",
 "abwiktionary": "php-1.29.0-wmf.12",
-"acewiki": "php-1.29.0-wmf.11",
+"acewiki": "php-1.29.0-wmf.12",
 "advisorywiki": "php-1.29.0-wmf.12",
-"adywiki": "php-1.29.0-wmf.11",
-"afwiki": "php-1.29.0-wmf.11",
+"adywiki": "php-1.29.0-wmf.12",
+"afwiki": "php-1.29.0-wmf.12",
 "afwikibooks": "php-1.29.0-wmf.12",
 "afwikiquote": "php-1.29.0-wmf.12",
 "afwiktionary": "php-1.29.0-wmf.12",
-"akwiki": "php-1.29.0-wmf.11",
+"akwiki": "php-1.29.0-wmf.12",
 "akwikibooks": "php-1.29.0-wmf.12",
 "akwiktionary": "php-1.29.0-wmf.12",
-"alswiki": "php-1.29.0-wmf.11",
+"alswiki": "php-1.29.0-wmf.12",
 "alswikibooks": "php-1.29.0-wmf.12",
 "alswikiquote": "php-1.29.0-wmf.12",
 "alswiktionary": "php-1.29.0-wmf.12",
-"amwiki": "php-1.29.0-wmf.11",
+"amwiki": "php-1.29.0-wmf.12",
 "amwikiquote": "php-1.29.0-wmf.12",
 "amwiktionary": "php-1.29.0-wmf.12",
-"angwiki": "php-1.29.0-wmf.11",
+"angwiki": "php-1.29.0-wmf.12",
 "angwikibooks": "php-1.29.0-wmf.12",
 "angwikiquote": "php-1.29.0-wmf.12",
 "angwikisource": "php-1.29.0-wmf.12",
 "angwiktionary": "php-1.29.0-wmf.12",
-"anwiki": "php-1.29.0-wmf.11",
+"anwiki": "php-1.29.0-wmf.12",
 "anwiktionary": "php-1.29.0-wmf.12",
-"arbcom_cswiki": "php-1.29.0-wmf.11",
-"arbcom_dewiki": "php-1.29.0-wmf.11",
-"arbcom_enwiki": "php-1.29.0-wmf.11",
-"arbcom_fiwiki": "php-1.29.0-wmf.11",
-"arbcom_nlwiki": "php-1.29.0-wmf.11",
-"arcwiki": "php-1.29.0-wmf.11",
-"arwiki": "php-1.29.0-wmf.11",
+"arbcom_cswiki": "php-1.29.0-wmf.12",
+"arbcom_dewiki": "php-1.29.0-wmf.12",
+"arbcom_enwiki": "php-1.29.0-wmf.12",
+"arbcom_fiwiki": "php-1.29.0-wmf.12",
+"arbcom_nlwiki": "php-1.29.0-wmf.12",
+"arcwiki": "php-1.29.0-wmf.12",
+"arwiki": "php-1.29.0-wmf.12",
 "arwikibooks": "php-1.29.0-wmf.12",
 "arwikimedia": "php-1.29.0-wmf.12",
 "arwikinews": "php-1.29.0-wmf.12",
@@ -42,80 +42,80 @@
 "arwikisource": "php-1.29.0-wmf.12",
 "arwikiversity": "php-1.29.0-wmf.12",
 "arwiktionary": "php-1.29.0-wmf.12",
-"arzwiki": "php-1.29.0-wmf.11",
-"astwiki": "php-1.29.0-wmf.11",
+"arzwiki": "php-1.29.0-wmf.12",
+"astwiki": "php-1.29.0-wmf.12",
 "astwikibooks": "php-1.29.0-wmf.12",
 "astwikiquote": "php-1.29.0-wmf.12",
 "astwiktionary": "php-1.29.0-wmf.12",
-"aswiki": "php-1.29.0-wmf.11",
+"aswiki": "php-1.29.0-wmf.12",
 "aswikibooks": "php-1.29.0-wmf.12",
 "aswikisource": "php-1.29.0-wmf.12",
 "aswiktionary": "php-1.29.0-wmf.12",
 "auditcomwiki": "php-1.29.0-wmf.12",
-"avwiki": "php-1.29.0-wmf.11",
+"avwiki": "php-1.29.0-wmf.12",
 "avwiktionary": "php-1.29.0-wmf.12",
-"aywiki": "php-1.29.0-wmf.11",
+"aywiki": "php-1.29.0-wmf.12",
 "aywikibooks": "php-1.29.0-wmf.12",
 "aywiktionary": "php-1.29.0-wmf.12",
-"azbwiki": "php-1.29.0-wmf.11",
-"azwiki": "php-1.29.0-wmf.11",
+"azbwiki": "php-1.29.0-wmf.12",
+"azwiki": "php-1.29.0-wmf.12",
 "azwikibooks": "php-1.29.0-wmf.12",
 "azwikiquote": "php-1.29.0-wmf.12",
 "azwikisource": "php-1.29.0-wmf.12",
 "azwiktionary": "php-1.29.0-wmf.12",
-"barwiki": "php-1.29.0-wmf.11",
-"bat_smgwiki": "php-1.29.0-wmf.11",
-"bawiki": "php-1.29.0-wmf.11",
+"barwiki": "php-1.29.0-wmf.12",
+"bat_smgwiki": "php-1.29.0-wmf.12",
+"bawiki": "php-1.29.0-wmf.12",
 "bawikibooks": "php-1.29.0-wmf.12",
-"bclwiki": "php-1.29.0-wmf.11",
+"bclwiki": "php-1.29.0-wmf.12",
 "bdwikimedia": "php-1.29.0-wmf.12",
-"be_x_oldwiki": "php-1.29.0-wmf.11",
+"be_x_oldwiki": "php-1.29.0-wmf.12",
 "betawikiversity": "php-1.29.0-wmf.12",
-"bewiki": "php-1.29.0-wmf.11",
+"bewiki": "php-1.29.0-wmf.12",
 "bewikibooks": "php-1.29.0-wmf.12",
 "bewikimedia": "php-1.29.0-wmf.12",
 "bewikiquote": "php-1.29.0-wmf.12",
 "bewikisource": "php-1.29.0-wmf.12",
 "bewiktionary": "php-1.29.0-wmf.12",
-"bgwiki": "php-1.29.0-wmf.11",
+"bgwiki": "php-1.29.0-wmf.12",
 "bgwikibooks": "php-1.29.0-wmf.12",
 

[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Revert "Revert "Group0 to 1.29.0-wmf.12""

2017-02-15 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/337876 )

Change subject: Revert "Revert "Group0 to 1.29.0-wmf.12""
..

Revert "Revert "Group0 to 1.29.0-wmf.12""

This reverts commit 3dc2623ccc5f11c2089146161ee22e87093b782d.

Bug: T155527
Change-Id: I8403009b651854d762b4ee2bb956bf02a3325650
---
M php
M wikiversions.json
2 files changed, 6 insertions(+), 6 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/76/337876/1

diff --git a/php b/php
index 9ca9da8..954df70 12
--- a/php
+++ b/php
@@ -1 +1 @@
-php-1.29.0-wmf.11
\ No newline at end of file
+php-1.29.0-wmf.12
\ No newline at end of file
diff --git a/wikiversions.json b/wikiversions.json
index 3ee2aba..a79730b 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -481,7 +481,7 @@
 "maiwiki": "php-1.29.0-wmf.11",
 "map_bmswiki": "php-1.29.0-wmf.11",
 "mdfwiki": "php-1.29.0-wmf.11",
-"mediawikiwiki": "php-1.29.0-wmf.11",
+"mediawikiwiki": "php-1.29.0-wmf.12",
 "metawiki": "php-1.29.0-wmf.11",
 "mgwiki": "php-1.29.0-wmf.11",
 "mgwikibooks": "php-1.29.0-wmf.11",
@@ -751,9 +751,9 @@
 "tawiktionary": "php-1.29.0-wmf.11",
 "tcywiki": "php-1.29.0-wmf.11",
 "tenwiki": "php-1.29.0-wmf.11",
-"test2wiki": "php-1.29.0-wmf.11",
-"testwiki": "php-1.29.0-wmf.11",
-"testwikidatawiki": "php-1.29.0-wmf.11",
+"test2wiki": "php-1.29.0-wmf.12",
+"testwiki": "php-1.29.0-wmf.12",
+"testwikidatawiki": "php-1.29.0-wmf.12",
 "tetwiki": "php-1.29.0-wmf.11",
 "tewiki": "php-1.29.0-wmf.11",
 "tewikibooks": "php-1.29.0-wmf.11",
@@ -883,7 +883,7 @@
 "zawikiquote": "php-1.29.0-wmf.11",
 "zawiktionary": "php-1.29.0-wmf.11",
 "zeawiki": "php-1.29.0-wmf.11",
-"zerowiki": "php-1.29.0-wmf.11",
+"zerowiki": "php-1.29.0-wmf.12",
 "zh_classicalwiki": "php-1.29.0-wmf.11",
 "zh_min_nanwiki": "php-1.29.0-wmf.11",
 "zh_min_nanwikibooks": "php-1.29.0-wmf.11",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I8403009b651854d762b4ee2bb956bf02a3325650
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] mediawiki/core[wmf/1.29.0-wmf.11]: Make ChronologyProtector::init() use instanceof instead of e...

2017-02-15 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/337878 )

Change subject: Make ChronologyProtector::init() use instanceof instead of 
empty()
..

Make ChronologyProtector::init() use instanceof instead of empty()

This is more robust and handles old root namespaced DBMasterPos values

Bug: T158127
Change-Id: Iba775fc808ac3e73d360f1adbe45ad222351c2d9
(cherry picked from commit eb9a0a73c9f13320f17a62e5d69b51a502926749)
---
M includes/libs/rdbms/ChronologyProtector.php
1 file changed, 4 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/78/337878/1

diff --git a/includes/libs/rdbms/ChronologyProtector.php 
b/includes/libs/rdbms/ChronologyProtector.php
index dfe950e..18e3d0f 100644
--- a/includes/libs/rdbms/ChronologyProtector.php
+++ b/includes/libs/rdbms/ChronologyProtector.php
@@ -121,7 +121,10 @@
$this->initPositions();
 
$masterName = $lb->getServerName( $lb->getWriterIndex() );
-   if ( !empty( $this->startupPositions[$masterName] ) ) {
+   if (
+   isset( $this->startupPositions[$masterName] ) &&
+   $this->startupPositions[$masterName] instanceof 
DBMasterPos
+   ) {
$pos = $this->startupPositions[$masterName];
$this->logger->info( __METHOD__ . ": LB for 
'$masterName' set to pos $pos\n" );
$lb->waitFor( $pos );

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Iba775fc808ac3e73d360f1adbe45ad222351c2d9
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: wmf/1.29.0-wmf.11
Gerrit-Owner: Thcipriani 
Gerrit-Reviewer: Aaron Schulz 

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


[MediaWiki-commits] [Gerrit] mediawiki/core[wmf/1.29.0-wmf.12]: Add version to ChronologyProtector key

2017-02-15 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/338016 )

Change subject: Add version to ChronologyProtector key
..

Add version to ChronologyProtector key

This handles incompatible non-namespaced DBMasterPos values
still in cache by ignoring them. The cache value validation
has also been improved.

Bug: T158217
Change-Id: I0e25cd1390e72d8ee0c31e6bb24e9184cbbcf49f
(cherry picked from commit 96f35d42d78e97bb620ec8b6134b427bd793ed2c)
---
M includes/libs/rdbms/ChronologyProtector.php
1 file changed, 8 insertions(+), 5 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/16/338016/1

diff --git a/includes/libs/rdbms/ChronologyProtector.php 
b/includes/libs/rdbms/ChronologyProtector.php
index 1c28188..8b1aabe 100644
--- a/includes/libs/rdbms/ChronologyProtector.php
+++ b/includes/libs/rdbms/ChronologyProtector.php
@@ -75,7 +75,7 @@
public function __construct( BagOStuff $store, array $client, $posTime 
= null ) {
$this->store = $store;
$this->clientId = md5( $client['ip'] . "\n" . $client['agent'] 
);
-   $this->key = $store->makeGlobalKey( __CLASS__, $this->clientId 
);
+   $this->key = $store->makeGlobalKey( __CLASS__, $this->clientId, 
'v1' );
$this->waitForPosTime = $posTime;
$this->logger = new NullLogger();
}
@@ -301,8 +301,9 @@
 
$min = null;
foreach ( $data['positions'] as $pos ) {
-   /** @var DBMasterPos $pos */
-   $min = $min ? min( $pos->asOfTime(), $min ) : 
$pos->asOfTime();
+   if ( $pos instanceof DBMasterPos ) {
+   $min = $min ? min( $pos->asOfTime(), $min ) : 
$pos->asOfTime();
+   }
}
 
return $min;
@@ -321,8 +322,10 @@
$curPositions = $curValue['positions'];
// Use the newest positions for each DB master
foreach ( $shutdownPositions as $db => $pos ) {
-   if ( !isset( $curPositions[$db] )
-   || $pos->asOfTime() > 
$curPositions[$db]->asOfTime()
+   if (
+   !isset( $curPositions[$db] ) ||
+   !( $curPositions[$db] instanceof 
DBMasterPos ) ||
+   $pos->asOfTime() > 
$curPositions[$db]->asOfTime()
) {
$curPositions[$db] = $pos;
}

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I0e25cd1390e72d8ee0c31e6bb24e9184cbbcf49f
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: wmf/1.29.0-wmf.12
Gerrit-Owner: Thcipriani 
Gerrit-Reviewer: Aaron Schulz 

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


[MediaWiki-commits] [Gerrit] operations/puppet[production]: Scap: update version to 3.5.3-1

2017-02-27 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/340159 )

Change subject: Scap: update version to 3.5.3-1
..

Scap: update version to 3.5.3-1

Bug: T127762
Change-Id: I9bfe79c7a8096061ab7fe0aaccaaa87586c6cdf2
---
M modules/scap/manifests/init.pp
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/59/340159/1

diff --git a/modules/scap/manifests/init.pp b/modules/scap/manifests/init.pp
index 351a790..0c7954a 100644
--- a/modules/scap/manifests/init.pp
+++ b/modules/scap/manifests/init.pp
@@ -12,7 +12,7 @@
 class scap (
 $deployment_server = 'deployment',
 $wmflabs_master = 'deployment-tin.deployment-prep.eqiad.wmflabs',
-$version = '3.5.2-1',
+$version = '3.5.3-1',
 ) {
 package { 'scap':
 ensure => $version,

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

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

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


[MediaWiki-commits] [Gerrit] operations/puppet[production]: Beta Scap: dsh groups in hieradata

2016-08-22 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Beta Scap: dsh groups in hieradata
..

Beta Scap: dsh groups in hieradata

Change-Id: Ic9d427b6db82f636159e96b833bb66ffb4013cae
---
M hieradata/labs/deployment-prep/common.yaml
D modules/beta/files/dsh/group/mediawiki-api-canaries
D modules/beta/files/dsh/group/mediawiki-appserver-canaries
D modules/beta/files/dsh/group/mediawiki-installation
4 files changed, 15 insertions(+), 9 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/70/306070/1

diff --git a/hieradata/labs/deployment-prep/common.yaml 
b/hieradata/labs/deployment-prep/common.yaml
index 93ca450..218e1a5 100644
--- a/hieradata/labs/deployment-prep/common.yaml
+++ b/hieradata/labs/deployment-prep/common.yaml
@@ -165,7 +165,21 @@
 "zotero::http_proxy": 
deployment-urldownloader.deployment-prep.eqiad.wmflabs:8080
 "trebuchet::deployment_server": deployment-tin.deployment-prep.eqiad.wmflabs
 "scap::deployment_server": deployment-tin.deployment-prep.eqiad.wmflabs
-"scap::dsh::group_source": 'puppet:///modules/beta/dsh/group'
+scap::dsh::groups:
+mediawiki-installation:
+hosts:
+- deployment-jobrunner01.deployment-prep.eqiad.wmflabs
+- deployment-mediawiki01.deployment-prep.eqiad.wmflabs
+- deployment-mediawiki02.deployment-prep.eqiad.wmflabs
+- deployment-mediawiki03.deployment-prep.eqiad.wmflabs
+- deployment-tmh01.deployment-prep.eqiad.wmflabs
+- deployment-tin.deployment-prep.eqiad.wmflabs
+- mira.deployment-prep.eqiad.wmflabs
+mediawiki-appserver-canaries:
+hosts:
+- deployment-mediawiki01.deployment-prep.eqiad.wmflabs
+mediawiki-api-canaries:
+hosts: []
 "mediawiki::users::mwdeploy_pub_key": 'ssh-rsa 
B3NzaC1yc2EDAQABAAABAQDFwlmBBBJAr1GI+vuYjFh5vq0YIVa5fqE5DZdpzUZISlQ0Kt+9bIr2qNHIj+Jl5Bc6ZY1mkh8l693tAHVx+8tayoiFWYNs9IVsxR+iHgOOhAdDIBXaHaUattdiye5bQmdvJVXaVegckNX2gbmUCOc09jvZvlk3blKFTSEpZRU8dmpXQzKdZgaAq2VTajAegoFnuN9FbC7hzBPA+1NxFNKn94eIeFPSlo5rWr44OEb5Uy3O0B5c6WPM+IgfiygetP+yGL4cKv7qEjZ0Sxok/Rh1lBh1vP1YQ/Mc6tMV0s+kOv7Wz+P88bfU1/uWvy479OZdfh3NQqDTrLzqHwVW1vef
 root@deployment-salt'
 # NOTE: these elasticsearch settings will need to be overloaded on a per-host
 # basis for the Logstash Elasticsearch cluster.
diff --git a/modules/beta/files/dsh/group/mediawiki-api-canaries 
b/modules/beta/files/dsh/group/mediawiki-api-canaries
deleted file mode 100644
index e69de29..000
--- a/modules/beta/files/dsh/group/mediawiki-api-canaries
+++ /dev/null
diff --git a/modules/beta/files/dsh/group/mediawiki-appserver-canaries 
b/modules/beta/files/dsh/group/mediawiki-appserver-canaries
deleted file mode 100644
index fdc8186..000
--- a/modules/beta/files/dsh/group/mediawiki-appserver-canaries
+++ /dev/null
@@ -1 +0,0 @@
-deployment-mediawiki01.deployment-prep.eqiad.wmflabs
diff --git a/modules/beta/files/dsh/group/mediawiki-installation 
b/modules/beta/files/dsh/group/mediawiki-installation
deleted file mode 100644
index f88f395..000
--- a/modules/beta/files/dsh/group/mediawiki-installation
+++ /dev/null
@@ -1,7 +0,0 @@
-deployment-jobrunner01.deployment-prep.eqiad.wmflabs
-deployment-mediawiki01.deployment-prep.eqiad.wmflabs
-deployment-mediawiki02.deployment-prep.eqiad.wmflabs
-deployment-mediawiki03.deployment-prep.eqiad.wmflabs
-deployment-tmh01.deployment-prep.eqiad.wmflabs
-deployment-tin.deployment-prep.eqiad.wmflabs
-mira.deployment-prep.eqiad.wmflabs

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

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

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Revert "Revert "CirrusSearch BM25 A/B test config""

2016-08-29 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Revert "Revert "CirrusSearch BM25 A/B test config""
..

Revert "Revert "CirrusSearch BM25 A/B test config""

This reverts commit 15e4dcafcbc053de433767181a601bd1e8b7ec5a.

Change-Id: Ia26197e9b7c6e496d8d7e21b629bb0725974286b
---
M tests/cirrusTest.php
M wmf-config/CirrusSearch-common.php
2 files changed, 309 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/50/307350/1

diff --git a/tests/cirrusTest.php b/tests/cirrusTest.php
index 06268d5..7772c42 100644
--- a/tests/cirrusTest.php
+++ b/tests/cirrusTest.php
@@ -101,6 +101,9 @@
// variables that would have been setup elsewhere, perhaps in 
mediawiki
// default settings or by CommonSettings.php, or by 
CirrusSearch.php,
// but none of those are a part of this repository
+   $wgCirrusSearchRescoreProfiles = array();
+   $wgCirrusSearchRescoreFunctionScoreChains = array();
+   $wgCirrusSearchFullTextQueryBuilderProfiles = array();
$wgJobTypeConf = array( 'default' => array() );
$wgCirrusSearchWeights = array();
$wgCirrusSearchNamespaceWeights = array();
diff --git a/wmf-config/CirrusSearch-common.php 
b/wmf-config/CirrusSearch-common.php
index e20cbea..0b73b1c 100644
--- a/wmf-config/CirrusSearch-common.php
+++ b/wmf-config/CirrusSearch-common.php
@@ -33,6 +33,312 @@
 # Enable user testing
 $wgCirrusSearchUserTesting = $wmgCirrusSearchUserTesting;
 
+# BM25 A/B test, enabled only on enwiki to avoid conflicts with
+# with TextCat language detection
+if ( $wgDBname === 'enwiki' ) {
+# UserTesting requires that a var exists in $GLOBALS before setting it
+# All extra vars needed to customize rescore weights
+   $wgCirrusSearchPageViewsW = 1.0;
+   $wgCirrusSearchPageViewsK = 1.0;
+   $wgCirrusSearchPageViewsA = 1.0;
+   $wgCirrusSearchIncLinksW = 1.0;
+   $wgCirrusSearchIncLinksK = 1.0;
+   $wgCirrusSearchIncLinksA = 1.0;
+   $wgCirrusSearchIncLinksAloneW = 1.0;
+   $wgCirrusSearchIncLinksAloneK = 1.0;
+   $wgCirrusSearchIncLinksAloneA = 1.0;
+
+   $wgCirrusSearchUserTesting['bm25'] = [
+   'sampleRate' => 0,
+   'globals' => [
+   'wgCirrusSearchBoostTemplates' => [],
+   'wgCirrusSearchRescoreProfiles' => 
$wgCirrusSearchRescoreProfiles + [
+   'wsum_inclinks' => [
+   'supported_namespaces' => 'all',
+   'rescore' => [
+   [
+   'window' => 8192,
+   'window_size_override' 
=> 'CirrusSearchFunctionRescoreWindowSize',
+   'query_weight' => 1.0,
+   'rescore_query_weight' 
=> 1.0,
+   'score_mode' => 'total',
+   'type' => 
'function_score',
+   'function_chain' => 
'wsum_inclinks'
+   ],
+   [
+   'window' => 8192,
+   'window_size_override' 
=> 'CirrusSearchFunctionRescoreWindowSize',
+   'query_weight' => 1.0,
+   'rescore_query_weight' 
=> 1.0,
+   'score_mode' => 
'multiply',
+   'type' => 
'function_score',
+   'function_chain' => 
'optional_chain'
+   ],
+   ],
+   ],
+   'wsum_inclinks_pv' => [
+   'supported_namespaces' => 'content',
+   'fallback_profile' => 'wsum_inclinks',
+   'rescore' => [
+   [
+   'window' => 8192,
+   'window_size_override' 
=> 'CirrusSearchFunctionRescoreWindowSize',
+   'query_weight' => 1.0,
+   'rescore_query_weight' 
=> 1.0,

[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Revert "CirrusSearch BM25 A/B test config"

2016-08-29 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Revert "CirrusSearch BM25 A/B test config"
..

Revert "CirrusSearch BM25 A/B test config"

This reverts commit bac44298d7a08949ad52d1dedf5b793a6f94e5e8.

Change-Id: I1a9e38141578ce7fb8739f6579122c5cfb518aa9
---
M tests/cirrusTest.php
M wmf-config/CirrusSearch-common.php
2 files changed, 0 insertions(+), 309 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/48/307348/1

diff --git a/tests/cirrusTest.php b/tests/cirrusTest.php
index 7772c42..06268d5 100644
--- a/tests/cirrusTest.php
+++ b/tests/cirrusTest.php
@@ -101,9 +101,6 @@
// variables that would have been setup elsewhere, perhaps in 
mediawiki
// default settings or by CommonSettings.php, or by 
CirrusSearch.php,
// but none of those are a part of this repository
-   $wgCirrusSearchRescoreProfiles = array();
-   $wgCirrusSearchRescoreFunctionScoreChains = array();
-   $wgCirrusSearchFullTextQueryBuilderProfiles = array();
$wgJobTypeConf = array( 'default' => array() );
$wgCirrusSearchWeights = array();
$wgCirrusSearchNamespaceWeights = array();
diff --git a/wmf-config/CirrusSearch-common.php 
b/wmf-config/CirrusSearch-common.php
index 0b73b1c..e20cbea 100644
--- a/wmf-config/CirrusSearch-common.php
+++ b/wmf-config/CirrusSearch-common.php
@@ -33,312 +33,6 @@
 # Enable user testing
 $wgCirrusSearchUserTesting = $wmgCirrusSearchUserTesting;
 
-# BM25 A/B test, enabled only on enwiki to avoid conflicts with
-# with TextCat language detection
-if ( $wgDBname === 'enwiki' ) {
-# UserTesting requires that a var exists in $GLOBALS before setting it
-# All extra vars needed to customize rescore weights
-   $wgCirrusSearchPageViewsW = 1.0;
-   $wgCirrusSearchPageViewsK = 1.0;
-   $wgCirrusSearchPageViewsA = 1.0;
-   $wgCirrusSearchIncLinksW = 1.0;
-   $wgCirrusSearchIncLinksK = 1.0;
-   $wgCirrusSearchIncLinksA = 1.0;
-   $wgCirrusSearchIncLinksAloneW = 1.0;
-   $wgCirrusSearchIncLinksAloneK = 1.0;
-   $wgCirrusSearchIncLinksAloneA = 1.0;
-
-   $wgCirrusSearchUserTesting['bm25'] = [
-   'sampleRate' => 0,
-   'globals' => [
-   'wgCirrusSearchBoostTemplates' => [],
-   'wgCirrusSearchRescoreProfiles' => 
$wgCirrusSearchRescoreProfiles + [
-   'wsum_inclinks' => [
-   'supported_namespaces' => 'all',
-   'rescore' => [
-   [
-   'window' => 8192,
-   'window_size_override' 
=> 'CirrusSearchFunctionRescoreWindowSize',
-   'query_weight' => 1.0,
-   'rescore_query_weight' 
=> 1.0,
-   'score_mode' => 'total',
-   'type' => 
'function_score',
-   'function_chain' => 
'wsum_inclinks'
-   ],
-   [
-   'window' => 8192,
-   'window_size_override' 
=> 'CirrusSearchFunctionRescoreWindowSize',
-   'query_weight' => 1.0,
-   'rescore_query_weight' 
=> 1.0,
-   'score_mode' => 
'multiply',
-   'type' => 
'function_score',
-   'function_chain' => 
'optional_chain'
-   ],
-   ],
-   ],
-   'wsum_inclinks_pv' => [
-   'supported_namespaces' => 'content',
-   'fallback_profile' => 'wsum_inclinks',
-   'rescore' => [
-   [
-   'window' => 8192,
-   'window_size_override' 
=> 'CirrusSearchFunctionRescoreWindowSize',
-   'query_weight' => 1.0,
-   'rescore_query_weight' 
=> 1.0,
-  

[MediaWiki-commits] [Gerrit] operations/puppet[production]: [WIP] Beta: Clean puppetmaster cherry-picks

2016-09-14 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: [WIP] Beta: Clean puppetmaster cherry-picks
..

[WIP] Beta: Clean puppetmaster cherry-picks

This is an attempt to reduce the number of bit-rotted cherry-picks on
the beta puppetmaster. The git-clean-puppetmaster script takes a
two-pronged approach:

1. Remove any commits that have been merged or abandoned in gerrit.
2. Post to the phabricator task for which the cherry pick was made
   if it seems like the patch may have been forgotten.

This hopefully strikes a balance of keeping beta-cherrypicks easy and
keeping the management of cherry-picks sane.

Bug: T135427
Change-Id: I25089e194739e799e8f8c63fc74a70e25863524e
---
A modules/beta/files/puppetmaster/git-clean-puppetmaster.logrotate
A modules/beta/files/puppetmaster/git-clean-puppetmaster.py
A modules/beta/manifests/puppetmaster/gitclean.pp
M modules/role/manifests/beta/puppetmaster.pp
4 files changed, 267 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/19/310719/1

diff --git a/modules/beta/files/puppetmaster/git-clean-puppetmaster.logrotate 
b/modules/beta/files/puppetmaster/git-clean-puppetmaster.logrotate
new file mode 100644
index 000..16cb184
--- /dev/null
+++ b/modules/beta/files/puppetmaster/git-clean-puppetmaster.logrotate
@@ -0,0 +1,11 @@
+##
+### THIS FILE IS MANAGED BY PUPPET
+##
+
+/var/log/git-clean-puppetmaster.log {
+daily
+copytruncate
+missingok
+notifempty
+rotate 7
+}
diff --git a/modules/beta/files/puppetmaster/git-clean-puppetmaster.py 
b/modules/beta/files/puppetmaster/git-clean-puppetmaster.py
new file mode 100644
index 000..7279004
--- /dev/null
+++ b/modules/beta/files/puppetmaster/git-clean-puppetmaster.py
@@ -0,0 +1,221 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+"""
+git-clean-puppetmaster
+--
+
+This script will veinly attempt to enforce some order onto the patches picked
+onto a puppetmaster. It ensures that all patches are not in a MERGED or
+ABANDONED state in gerrit. This script will also be annoying and (possibly
+repeatedly) poke any tasks associated with any cherry-picked patches.
+"""
+from __future__ import print_function
+
+import json
+import os
+import subprocess
+import sys
+import time
+
+import requests
+
+# One month in seconds
+ACTIVE = 30 * 24 * 60 * 60
+
+PUPPET_DIR = '/var/lib/git/operations/puppet'
+GIT = '/usr/bin/git'
+GIT_CMD = (GIT, '-C', PUPPET_DIR)
+
+
+GERRIT_URL = 'https://gerrit.wikimedia.org/r'
+
+GERRIT_API = os.path.join(
+GERRIT_URL,
+'changes',
+'operations%2Fpuppet~production~{}'
+)
+
+
+class GerritAPIError(Exception):
+"""Exception class for gerrit api."""
+
+pass
+
+
+class PhabTask(object):
+"""Encapsulate phab task api."""
+
+URL = 'https://phabricator.wikimedia.org'
+API = os.path.join(URL, 'api')
+API_QUERY = 'maniphest.query'
+API_UPDATE = 'maniphest.update'
+API_DETAIL = 'maniphest.gettasktransactions'
+
+COMMENT = '''
+This task has a patch that is cherry-picked on deployment-puppetmaster:
+
+> {commit}
+'''
+
+"""Class to encapsulate arcanist info."""
+def __init__(self, task, sha):
+"""Build phab task."""
+self.task = task
+self.sha = sha
+self._token = None
+self._is_active = None
+self._closed = None
+
+def _api(self, endpoint=None):
+"""Return json data from api query."""
+if not endpoint:
+endpoint = self.API_QUERY
+data = {}
+headers = {'accept': 'application/json'}
+data['api.token'] = self.token
+r = requests.post(
+os.path.join(self.API, endpoint),
+headers=headers,
+data=data)
+
+r.raise_for_status()
+
+return r.json()
+
+@property
+def token(self):
+"""Get Conduit API token."""
+if self._token:
+return self._token
+
+with open('/root/beta-puppetmaster.arcrc') as arcrc:
+config_json = json.loads(arcrc.read())
+
+self._token = config_json['hosts'][self.API + '/']['token']
+
+@property
+def is_closed(self):
+"""Determine if task is closed from task-id."""
+if self._closed is not None:
+return self._closed
+
+data = {'ids[0]': self.task}
+query_data = self._api(data)
+self._closed = query_data['result'][str(self.task)]['isClosed']
+
+return self._closed
+
+@property
+def is_active(self):
+"""
+Determine if a task is active or not.
+
+Currently, "active" is defined as "has seen activity in the past month"
+"""
+if self._is_active is not None:
+return self._is_active
+
+data = {'ids[0]': 

[MediaWiki-commits] [Gerrit] operations/puppet[production]: Bump scap version to 3.2.5-1

2016-09-09 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Bump scap version to 3.2.5-1
..

Bump scap version to 3.2.5-1

Change-Id: Ia1955eb7c6004b78d816e0582eb39042dcaa03cb
---
M modules/scap/manifests/init.pp
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/35/309635/1

diff --git a/modules/scap/manifests/init.pp b/modules/scap/manifests/init.pp
index 9a333d7..59a7692 100644
--- a/modules/scap/manifests/init.pp
+++ b/modules/scap/manifests/init.pp
@@ -14,7 +14,7 @@
 $wmflabs_master = 'deployment-tin.eqiad.wmflabs',
 ) {
 package { 'scap':
-ensure => '3.2.4-1',
+ensure => '3.2.5-1',
 }
 
 file { '/etc/scap.cfg':

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

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

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


[MediaWiki-commits] [Gerrit] operations/puppet[production]: Fix failing keyholder arming check

2016-09-26 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Fix failing keyholder arming check
..

Fix failing keyholder arming check

The latest version of openssh-client no longer stores or outputs the
key filenames along with the ssh public-key fingerprint as part of
ssh-add -l.

This changes the keyholder check script to just compare public key
fingerprints rather than private-key filenames.

Change-Id: Ic6784e505d4734a725bda2a278745cf53575c11f
---
M modules/keyholder/files/check_keyholder
1 file changed, 4 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/47/312947/1

diff --git a/modules/keyholder/files/check_keyholder 
b/modules/keyholder/files/check_keyholder
index 448d645..2361ddf 100755
--- a/modules/keyholder/files/check_keyholder
+++ b/modules/keyholder/files/check_keyholder
@@ -5,12 +5,14 @@
 
 configured_keys() {
   # Get a sorted list of all key files in /etc/keyholder.d
-  /usr/bin/find /etc/keyholder.d -type f -not -name '*.pub' 2>/dev/null | 
/usr/bin/sort
+  for key in /etc/keyholder.d/*.pub; do
+  /usr/bin/ssh-keygen -l -f "$key" | /usr/bin/cut -d' ' -f2 2>/dev/null;
+  done | sort
 }
 
 active_keys() {
   # Get a sorted list of all keys currently represented by the agent.
-  /usr/bin/ssh-add -l 2>/dev/null | /usr/bin/cut -d' ' -f 3 | /usr/bin/sort
+  /usr/bin/ssh-add -l 2>/dev/null | /usr/bin/cut -d' ' -f 2 | /usr/bin/sort
 }
 
 [ -S "$SSH_AUTH_SOCK" ] || {

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

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

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


[MediaWiki-commits] [Gerrit] mediawiki/core[wmf/1.28.0-wmf.21]: Add version to LoadMonitor::getCacheKey()

2016-10-04 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Add version to LoadMonitor::getCacheKey()
..

Add version to LoadMonitor::getCacheKey()

This avoids undefined index and "servers down" errors when
using Het Deploy since only the version has the new fields.

Bug: T147359
Change-Id: Ic2d0d147df2e1c015ec4a6675294203b2adf5ed9
---
M includes/libs/rdbms/loadmonitor/LoadMonitor.php
1 file changed, 3 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/76/314176/1

diff --git a/includes/libs/rdbms/loadmonitor/LoadMonitor.php 
b/includes/libs/rdbms/loadmonitor/LoadMonitor.php
index 59075e4..60400e3 100644
--- a/includes/libs/rdbms/loadmonitor/LoadMonitor.php
+++ b/includes/libs/rdbms/loadmonitor/LoadMonitor.php
@@ -40,6 +40,8 @@
/** @var float Moving average ratio (e.g. 0.1 for 10% weight to new 
weight) */
private $movingAveRatio;
 
+   const VERSION = 1;
+
public function __construct(
ILoadBalancer $lb, BagOStuff $srvCache, BagOStuff $cache, array 
$options = []
) {
@@ -199,6 +201,7 @@
// Lag is per-server, not per-DB, so key on the master DB name
return $this->srvCache->makeGlobalKey(
'lag-times',
+   self::VERSION,
$this->parent->getServerName( 
$this->parent->getWriterIndex() )
);
}

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic2d0d147df2e1c015ec4a6675294203b2adf5ed9
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: wmf/1.28.0-wmf.21
Gerrit-Owner: Thcipriani 
Gerrit-Reviewer: Aaron Schulz 

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Revert "robots.php: Use WikiPage instead of Article class"

2016-10-07 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Revert "robots.php: Use WikiPage instead of Article class"
..

Revert "robots.php: Use WikiPage instead of Article class"

This reverts commit 286b8570488360ad7ada86d1209d3c35869ee7a1.

Change-Id: Ia55e78d16375b9a563e3d3cf80e6fdb4097b01c0
---
M w/robots.php
1 file changed, 5 insertions(+), 5 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/86/314786/1

diff --git a/w/robots.php b/w/robots.php
index 52b64b0..937206f 100644
--- a/w/robots.php
+++ b/w/robots.php
@@ -3,10 +3,10 @@
 require getMediaWiki( 'includes/WebStart.php' );
 
 $wgTitle = Title::newFromText( 'Mediawiki:robots.txt' );
-$page = WikiPage::factory( $title );
+$wgArticle = new Article( $wgTitle, 0 );
 
 header( 'Content-Type: text/plain; charset=utf-8' );
-header( 'X-Article-ID: ' . $page->getId() );
+header( 'X-Article-ID: ' . $wgArticle->getID() );
 header( 'X-Language: ' . $lang );
 header( 'X-Site: ' . $site );
 header( 'Vary: X-Subdomain' );
@@ -25,10 +25,10 @@
 
 if ( $zeroRated ) {
echo $dontIndex;
-} elseif ( $page->exists() ) {
-   $extratext = $page->getText() ?: '';
+} elseif ( $wgArticle->getID() != 0 ) {
+   $extratext = $wgArticle->getContent( false ) ;
// Take last modified timestamp of page into account
-   $mtime = max( $mtime, wfTimestamp( TS_UNIX, $page->getTouched() ) );
+   $mtime = max( $mtime, wfTimestamp( TS_UNIX,  $wgArticle->getTouched() ) 
);
 } elseif( $wmfRealm == 'labs' ) {
echo $dontIndex;
 }

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia55e78d16375b9a563e3d3cf80e6fdb4097b01c0
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] mediawiki/core[wmf/1.28.0-wmf.21]: Ignore reuseConnection() errors after LoadBalancer/LBFactory...

2016-10-06 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Ignore reuseConnection() errors after LoadBalancer/LBFactory 
destruction
..

Ignore reuseConnection() errors after LoadBalancer/LBFactory destruction

Bug: T147520
Change-Id: I9fe6acb0ab24127c1e9f3279129ff46c6b480873
---
M includes/libs/rdbms/loadbalancer/LoadBalancer.php
1 file changed, 5 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/00/314600/1

diff --git a/includes/libs/rdbms/loadbalancer/LoadBalancer.php 
b/includes/libs/rdbms/loadbalancer/LoadBalancer.php
index 66e4fcf..73aa23c 100644
--- a/includes/libs/rdbms/loadbalancer/LoadBalancer.php
+++ b/includes/libs/rdbms/loadbalancer/LoadBalancer.php
@@ -614,6 +614,10 @@
return;
}
 
+   if ( $this->disabled ) {
+   return; // DBConnRef handle probably survived longer 
than the LoadBalancer
+   }
+
$domain = $conn->getDomainID();
if ( !isset( 
$this->mConns['foreignUsed'][$serverIndex][$domain] ) ) {
throw new InvalidArgumentException( __METHOD__ .
@@ -1533,6 +1537,6 @@
 
function __destruct() {
// Avoid connection leaks for sanity
-   $this->closeAll();
+   $this->disable();
}
 }

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9fe6acb0ab24127c1e9f3279129ff46c6b480873
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: wmf/1.28.0-wmf.21
Gerrit-Owner: Thcipriani 
Gerrit-Reviewer: Aaron Schulz 

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: all wikis to 1.28.0-wmf.21

2016-10-06 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: all wikis to 1.28.0-wmf.21
..

all wikis to 1.28.0-wmf.21

Change-Id: Ib55f4e11082666d033466635560a2a62c29ea524
---
M wikiversions.json
1 file changed, 298 insertions(+), 298 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/14/314614/1

diff --git a/wikiversions.json b/wikiversions.json
index a51f874..9ec0384 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -1,39 +1,39 @@
 {
-"aawiki": "php-1.28.0-wmf.20",
+"aawiki": "php-1.28.0-wmf.21",
 "aawikibooks": "php-1.28.0-wmf.21",
 "aawiktionary": "php-1.28.0-wmf.21",
-"abwiki": "php-1.28.0-wmf.20",
+"abwiki": "php-1.28.0-wmf.21",
 "abwiktionary": "php-1.28.0-wmf.21",
-"acewiki": "php-1.28.0-wmf.20",
+"acewiki": "php-1.28.0-wmf.21",
 "advisorywiki": "php-1.28.0-wmf.21",
-"adywiki": "php-1.28.0-wmf.20",
-"afwiki": "php-1.28.0-wmf.20",
+"adywiki": "php-1.28.0-wmf.21",
+"afwiki": "php-1.28.0-wmf.21",
 "afwikibooks": "php-1.28.0-wmf.21",
 "afwikiquote": "php-1.28.0-wmf.21",
 "afwiktionary": "php-1.28.0-wmf.21",
-"akwiki": "php-1.28.0-wmf.20",
+"akwiki": "php-1.28.0-wmf.21",
 "akwikibooks": "php-1.28.0-wmf.21",
 "akwiktionary": "php-1.28.0-wmf.21",
-"alswiki": "php-1.28.0-wmf.20",
+"alswiki": "php-1.28.0-wmf.21",
 "alswikibooks": "php-1.28.0-wmf.21",
 "alswikiquote": "php-1.28.0-wmf.21",
 "alswiktionary": "php-1.28.0-wmf.21",
-"amwiki": "php-1.28.0-wmf.20",
+"amwiki": "php-1.28.0-wmf.21",
 "amwikiquote": "php-1.28.0-wmf.21",
 "amwiktionary": "php-1.28.0-wmf.21",
-"angwiki": "php-1.28.0-wmf.20",
+"angwiki": "php-1.28.0-wmf.21",
 "angwikibooks": "php-1.28.0-wmf.21",
 "angwikiquote": "php-1.28.0-wmf.21",
 "angwikisource": "php-1.28.0-wmf.21",
 "angwiktionary": "php-1.28.0-wmf.21",
-"anwiki": "php-1.28.0-wmf.20",
+"anwiki": "php-1.28.0-wmf.21",
 "anwiktionary": "php-1.28.0-wmf.21",
-"arbcom_dewiki": "php-1.28.0-wmf.20",
-"arbcom_enwiki": "php-1.28.0-wmf.20",
-"arbcom_fiwiki": "php-1.28.0-wmf.20",
-"arbcom_nlwiki": "php-1.28.0-wmf.20",
-"arcwiki": "php-1.28.0-wmf.20",
-"arwiki": "php-1.28.0-wmf.20",
+"arbcom_dewiki": "php-1.28.0-wmf.21",
+"arbcom_enwiki": "php-1.28.0-wmf.21",
+"arbcom_fiwiki": "php-1.28.0-wmf.21",
+"arbcom_nlwiki": "php-1.28.0-wmf.21",
+"arcwiki": "php-1.28.0-wmf.21",
+"arwiki": "php-1.28.0-wmf.21",
 "arwikibooks": "php-1.28.0-wmf.21",
 "arwikimedia": "php-1.28.0-wmf.21",
 "arwikinews": "php-1.28.0-wmf.21",
@@ -41,80 +41,80 @@
 "arwikisource": "php-1.28.0-wmf.21",
 "arwikiversity": "php-1.28.0-wmf.21",
 "arwiktionary": "php-1.28.0-wmf.21",
-"arzwiki": "php-1.28.0-wmf.20",
-"astwiki": "php-1.28.0-wmf.20",
+"arzwiki": "php-1.28.0-wmf.21",
+"astwiki": "php-1.28.0-wmf.21",
 "astwikibooks": "php-1.28.0-wmf.21",
 "astwikiquote": "php-1.28.0-wmf.21",
 "astwiktionary": "php-1.28.0-wmf.21",
-"aswiki": "php-1.28.0-wmf.20",
+"aswiki": "php-1.28.0-wmf.21",
 "aswikibooks": "php-1.28.0-wmf.21",
 "aswikisource": "php-1.28.0-wmf.21",
 "aswiktionary": "php-1.28.0-wmf.21",
 "auditcomwiki": "php-1.28.0-wmf.21",
-"avwiki": "php-1.28.0-wmf.20",
+"avwiki": "php-1.28.0-wmf.21",
 "avwiktionary": "php-1.28.0-wmf.21",
-"aywiki": "php-1.28.0-wmf.20",
+"aywiki": "php-1.28.0-wmf.21",
 "aywikibooks": "php-1.28.0-wmf.21",
 "aywiktionary": "php-1.28.0-wmf.21",
-"azbwiki": "php-1.28.0-wmf.20",
-"azwiki": "php-1.28.0-wmf.20",
+"azbwiki": "php-1.28.0-wmf.21",
+"azwiki": "php-1.28.0-wmf.21",
 "azwikibooks": "php-1.28.0-wmf.21",
 "azwikiquote": "php-1.28.0-wmf.21",
 "azwikisource": "php-1.28.0-wmf.21",
 "azwiktionary": "php-1.28.0-wmf.21",
-"barwiki": "php-1.28.0-wmf.20",
-"bat_smgwiki": "php-1.28.0-wmf.20",
-"bawiki": "php-1.28.0-wmf.20",
+"barwiki": "php-1.28.0-wmf.21",
+"bat_smgwiki": "php-1.28.0-wmf.21",
+"bawiki": "php-1.28.0-wmf.21",
 "bawikibooks": "php-1.28.0-wmf.21",
-"bclwiki": "php-1.28.0-wmf.20",
+"bclwiki": "php-1.28.0-wmf.21",
 "bdwikimedia": "php-1.28.0-wmf.21",
-"be_x_oldwiki": "php-1.28.0-wmf.20",
+"be_x_oldwiki": "php-1.28.0-wmf.21",
 "betawikiversity": "php-1.28.0-wmf.21",
-"bewiki": "php-1.28.0-wmf.20",
+"bewiki": "php-1.28.0-wmf.21",
 "bewikibooks": "php-1.28.0-wmf.21",
 "bewikimedia": "php-1.28.0-wmf.21",
 "bewikiquote": "php-1.28.0-wmf.21",
 "bewikisource": "php-1.28.0-wmf.21",
 "bewiktionary": "php-1.28.0-wmf.21",
-"bgwiki": "php-1.28.0-wmf.20",
+"bgwiki": "php-1.28.0-wmf.21",
 "bgwikibooks": "php-1.28.0-wmf.21",
 "bgwikinews": "php-1.28.0-wmf.21",
 "bgwikiquote": "php-1.28.0-wmf.21",
 "bgwikisource": 

[MediaWiki-commits] [Gerrit] mediawiki/core[wmf/1.28.0-wmf.21]: Make LoadMonitor use $serverIndexes in the cache key

2016-10-05 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Make LoadMonitor use $serverIndexes in the cache key
..

Make LoadMonitor use $serverIndexes in the cache key

* This avoids collisions of generic and custom LB group
  server list keys, which could cause warnings and errors.
* Remove $group param from scaleLoads(), which was unused
  and less robust for making keys anyway.
* Remove clearCaches() method, which only had one caller
  in a script that printed lag times in a loop. Its not
  worth keeping and having to pass in the server index
  list.
* Also guard scaleLoads() against recent server additions.

Bug: T147359
Change-Id: Idd15f0bebb68782fda36f483880cf7fe9673b940
---
M includes/libs/rdbms/loadbalancer/ILoadBalancer.php
M includes/libs/rdbms/loadbalancer/LoadBalancer.php
M includes/libs/rdbms/loadmonitor/ILoadMonitor.php
M includes/libs/rdbms/loadmonitor/LoadMonitor.php
M includes/libs/rdbms/loadmonitor/LoadMonitorNull.php
M maintenance/lag.php
6 files changed, 24 insertions(+), 41 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/14/314414/1

diff --git a/includes/libs/rdbms/loadbalancer/ILoadBalancer.php 
b/includes/libs/rdbms/loadbalancer/ILoadBalancer.php
index aa7d1b4..e5ed2f1 100644
--- a/includes/libs/rdbms/loadbalancer/ILoadBalancer.php
+++ b/includes/libs/rdbms/loadbalancer/ILoadBalancer.php
@@ -518,13 +518,6 @@
public function safeWaitForMasterPos( IDatabase $conn, $pos = false, 
$timeout = null );
 
/**
-* Clear the cache for slag lag delay times
-*
-* This is only used for testing
-*/
-   public function clearLagTimeCache();
-
-   /**
 * Set a callback via IDatabase::setTransactionListener() on
 * all current and future master connections of this load balancer
 *
diff --git a/includes/libs/rdbms/loadbalancer/LoadBalancer.php 
b/includes/libs/rdbms/loadbalancer/LoadBalancer.php
index 31c022c..9f1021d 100644
--- a/includes/libs/rdbms/loadbalancer/LoadBalancer.php
+++ b/includes/libs/rdbms/loadbalancer/LoadBalancer.php
@@ -301,7 +301,7 @@
}
 
# Scale the configured load ratios according to the dynamic 
load if supported
-   $this->getLoadMonitor()->scaleLoads( $nonErrorLoads, $group, 
$domain );
+   $this->getLoadMonitor()->scaleLoads( $nonErrorLoads, $domain );
 
$laggedReplicaMode = false;
 
@@ -1469,10 +1469,6 @@
}
 
return $ok;
-   }
-
-   public function clearLagTimeCache() {
-   $this->getLoadMonitor()->clearCaches();
}
 
public function setTransactionListener( $name, callable $callback = 
null ) {
diff --git a/includes/libs/rdbms/loadmonitor/ILoadMonitor.php 
b/includes/libs/rdbms/loadmonitor/ILoadMonitor.php
index 72a8785..14a52c5 100644
--- a/includes/libs/rdbms/loadmonitor/ILoadMonitor.php
+++ b/includes/libs/rdbms/loadmonitor/ILoadMonitor.php
@@ -41,12 +41,12 @@
);
 
/**
-* Perform pre-connection load ratio adjustment.
-* @param int[] &$weightByServer Map of (server index => integer weight)
-* @param string|bool $group The selected query group. Default: false
-* @param string|bool $domain Default: false
+* Perform load ratio adjustment before deciding which server to use
+*
+* @param int[] &$weightByServer Map of (server index => float weight)
+* @param string|bool $domain
 */
-   public function scaleLoads( array &$weightByServer, $group = false, 
$domain = false );
+   public function scaleLoads( array &$weightByServer, $domain );
 
/**
 * Get an estimate of replication lag (in seconds) for each server
@@ -55,14 +55,7 @@
 *
 * @param integer[] $serverIndexes
 * @param string $domain
-*
 * @return array Map of (server index => float|int|bool)
 */
public function getLagTimes( array $serverIndexes, $domain );
-
-   /**
-* Clear any process and persistent cache of lag times
-* @since 1.27
-*/
-   public function clearCaches();
 }
diff --git a/includes/libs/rdbms/loadmonitor/LoadMonitor.php 
b/includes/libs/rdbms/loadmonitor/LoadMonitor.php
index 60400e3..499542d 100644
--- a/includes/libs/rdbms/loadmonitor/LoadMonitor.php
+++ b/includes/libs/rdbms/loadmonitor/LoadMonitor.php
@@ -40,7 +40,7 @@
/** @var float Moving average ratio (e.g. 0.1 for 10% weight to new 
weight) */
private $movingAveRatio;
 
-   const VERSION = 1;
+   const VERSION = 1; // cache key version
 
public function __construct(
ILoadBalancer $lb, BagOStuff $srvCache, BagOStuff $cache, array 
$options = []
@@ -59,12 +59,17 @@
$this->replLogger = $logger;
}
 
-   public 

[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: group1 wikis to 1.28.0-wmf.21

2016-10-05 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: group1 wikis to 1.28.0-wmf.21
..

group1 wikis to 1.28.0-wmf.21

Change-Id: I7d2fb7cab8c98f8df75d457e022814b368d89ec7
---
M wikiversions.json
1 file changed, 594 insertions(+), 594 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/18/314418/1

diff --git a/wikiversions.json b/wikiversions.json
index 75f8a22..a51f874 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -1,749 +1,749 @@
 {
 "aawiki": "php-1.28.0-wmf.20",
-"aawikibooks": "php-1.28.0-wmf.20",
-"aawiktionary": "php-1.28.0-wmf.20",
+"aawikibooks": "php-1.28.0-wmf.21",
+"aawiktionary": "php-1.28.0-wmf.21",
 "abwiki": "php-1.28.0-wmf.20",
-"abwiktionary": "php-1.28.0-wmf.20",
+"abwiktionary": "php-1.28.0-wmf.21",
 "acewiki": "php-1.28.0-wmf.20",
-"advisorywiki": "php-1.28.0-wmf.20",
+"advisorywiki": "php-1.28.0-wmf.21",
 "adywiki": "php-1.28.0-wmf.20",
 "afwiki": "php-1.28.0-wmf.20",
-"afwikibooks": "php-1.28.0-wmf.20",
-"afwikiquote": "php-1.28.0-wmf.20",
-"afwiktionary": "php-1.28.0-wmf.20",
+"afwikibooks": "php-1.28.0-wmf.21",
+"afwikiquote": "php-1.28.0-wmf.21",
+"afwiktionary": "php-1.28.0-wmf.21",
 "akwiki": "php-1.28.0-wmf.20",
-"akwikibooks": "php-1.28.0-wmf.20",
-"akwiktionary": "php-1.28.0-wmf.20",
+"akwikibooks": "php-1.28.0-wmf.21",
+"akwiktionary": "php-1.28.0-wmf.21",
 "alswiki": "php-1.28.0-wmf.20",
-"alswikibooks": "php-1.28.0-wmf.20",
-"alswikiquote": "php-1.28.0-wmf.20",
-"alswiktionary": "php-1.28.0-wmf.20",
+"alswikibooks": "php-1.28.0-wmf.21",
+"alswikiquote": "php-1.28.0-wmf.21",
+"alswiktionary": "php-1.28.0-wmf.21",
 "amwiki": "php-1.28.0-wmf.20",
-"amwikiquote": "php-1.28.0-wmf.20",
-"amwiktionary": "php-1.28.0-wmf.20",
+"amwikiquote": "php-1.28.0-wmf.21",
+"amwiktionary": "php-1.28.0-wmf.21",
 "angwiki": "php-1.28.0-wmf.20",
-"angwikibooks": "php-1.28.0-wmf.20",
-"angwikiquote": "php-1.28.0-wmf.20",
-"angwikisource": "php-1.28.0-wmf.20",
-"angwiktionary": "php-1.28.0-wmf.20",
+"angwikibooks": "php-1.28.0-wmf.21",
+"angwikiquote": "php-1.28.0-wmf.21",
+"angwikisource": "php-1.28.0-wmf.21",
+"angwiktionary": "php-1.28.0-wmf.21",
 "anwiki": "php-1.28.0-wmf.20",
-"anwiktionary": "php-1.28.0-wmf.20",
+"anwiktionary": "php-1.28.0-wmf.21",
 "arbcom_dewiki": "php-1.28.0-wmf.20",
 "arbcom_enwiki": "php-1.28.0-wmf.20",
 "arbcom_fiwiki": "php-1.28.0-wmf.20",
 "arbcom_nlwiki": "php-1.28.0-wmf.20",
 "arcwiki": "php-1.28.0-wmf.20",
 "arwiki": "php-1.28.0-wmf.20",
-"arwikibooks": "php-1.28.0-wmf.20",
-"arwikimedia": "php-1.28.0-wmf.20",
-"arwikinews": "php-1.28.0-wmf.20",
-"arwikiquote": "php-1.28.0-wmf.20",
-"arwikisource": "php-1.28.0-wmf.20",
-"arwikiversity": "php-1.28.0-wmf.20",
-"arwiktionary": "php-1.28.0-wmf.20",
+"arwikibooks": "php-1.28.0-wmf.21",
+"arwikimedia": "php-1.28.0-wmf.21",
+"arwikinews": "php-1.28.0-wmf.21",
+"arwikiquote": "php-1.28.0-wmf.21",
+"arwikisource": "php-1.28.0-wmf.21",
+"arwikiversity": "php-1.28.0-wmf.21",
+"arwiktionary": "php-1.28.0-wmf.21",
 "arzwiki": "php-1.28.0-wmf.20",
 "astwiki": "php-1.28.0-wmf.20",
-"astwikibooks": "php-1.28.0-wmf.20",
-"astwikiquote": "php-1.28.0-wmf.20",
-"astwiktionary": "php-1.28.0-wmf.20",
+"astwikibooks": "php-1.28.0-wmf.21",
+"astwikiquote": "php-1.28.0-wmf.21",
+"astwiktionary": "php-1.28.0-wmf.21",
 "aswiki": "php-1.28.0-wmf.20",
-"aswikibooks": "php-1.28.0-wmf.20",
-"aswikisource": "php-1.28.0-wmf.20",
-"aswiktionary": "php-1.28.0-wmf.20",
-"auditcomwiki": "php-1.28.0-wmf.20",
+"aswikibooks": "php-1.28.0-wmf.21",
+"aswikisource": "php-1.28.0-wmf.21",
+"aswiktionary": "php-1.28.0-wmf.21",
+"auditcomwiki": "php-1.28.0-wmf.21",
 "avwiki": "php-1.28.0-wmf.20",
-"avwiktionary": "php-1.28.0-wmf.20",
+"avwiktionary": "php-1.28.0-wmf.21",
 "aywiki": "php-1.28.0-wmf.20",
-"aywikibooks": "php-1.28.0-wmf.20",
-"aywiktionary": "php-1.28.0-wmf.20",
+"aywikibooks": "php-1.28.0-wmf.21",
+"aywiktionary": "php-1.28.0-wmf.21",
 "azbwiki": "php-1.28.0-wmf.20",
 "azwiki": "php-1.28.0-wmf.20",
-"azwikibooks": "php-1.28.0-wmf.20",
-"azwikiquote": "php-1.28.0-wmf.20",
-"azwikisource": "php-1.28.0-wmf.20",
-"azwiktionary": "php-1.28.0-wmf.20",
+"azwikibooks": "php-1.28.0-wmf.21",
+"azwikiquote": "php-1.28.0-wmf.21",
+"azwikisource": "php-1.28.0-wmf.21",
+"azwiktionary": "php-1.28.0-wmf.21",
 "barwiki": "php-1.28.0-wmf.20",
 "bat_smgwiki": "php-1.28.0-wmf.20",
 "bawiki": "php-1.28.0-wmf.20",
-"bawikibooks": "php-1.28.0-wmf.20",
+

[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Revert "group1 wikis to 1.28.0-wmf.21"

2016-10-05 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Revert "group1 wikis to 1.28.0-wmf.21"
..

Revert "group1 wikis to 1.28.0-wmf.21"

This reverts commit 3d00e59ad82a2ae3bf873ca93cbc67df84307151.

Change-Id: Id041275e923ac7656c27096c542c0b4207a3a337
---
M wikiversions.json
1 file changed, 594 insertions(+), 594 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/27/314427/1

diff --git a/wikiversions.json b/wikiversions.json
index a51f874..75f8a22 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -1,749 +1,749 @@
 {
 "aawiki": "php-1.28.0-wmf.20",
-"aawikibooks": "php-1.28.0-wmf.21",
-"aawiktionary": "php-1.28.0-wmf.21",
+"aawikibooks": "php-1.28.0-wmf.20",
+"aawiktionary": "php-1.28.0-wmf.20",
 "abwiki": "php-1.28.0-wmf.20",
-"abwiktionary": "php-1.28.0-wmf.21",
+"abwiktionary": "php-1.28.0-wmf.20",
 "acewiki": "php-1.28.0-wmf.20",
-"advisorywiki": "php-1.28.0-wmf.21",
+"advisorywiki": "php-1.28.0-wmf.20",
 "adywiki": "php-1.28.0-wmf.20",
 "afwiki": "php-1.28.0-wmf.20",
-"afwikibooks": "php-1.28.0-wmf.21",
-"afwikiquote": "php-1.28.0-wmf.21",
-"afwiktionary": "php-1.28.0-wmf.21",
+"afwikibooks": "php-1.28.0-wmf.20",
+"afwikiquote": "php-1.28.0-wmf.20",
+"afwiktionary": "php-1.28.0-wmf.20",
 "akwiki": "php-1.28.0-wmf.20",
-"akwikibooks": "php-1.28.0-wmf.21",
-"akwiktionary": "php-1.28.0-wmf.21",
+"akwikibooks": "php-1.28.0-wmf.20",
+"akwiktionary": "php-1.28.0-wmf.20",
 "alswiki": "php-1.28.0-wmf.20",
-"alswikibooks": "php-1.28.0-wmf.21",
-"alswikiquote": "php-1.28.0-wmf.21",
-"alswiktionary": "php-1.28.0-wmf.21",
+"alswikibooks": "php-1.28.0-wmf.20",
+"alswikiquote": "php-1.28.0-wmf.20",
+"alswiktionary": "php-1.28.0-wmf.20",
 "amwiki": "php-1.28.0-wmf.20",
-"amwikiquote": "php-1.28.0-wmf.21",
-"amwiktionary": "php-1.28.0-wmf.21",
+"amwikiquote": "php-1.28.0-wmf.20",
+"amwiktionary": "php-1.28.0-wmf.20",
 "angwiki": "php-1.28.0-wmf.20",
-"angwikibooks": "php-1.28.0-wmf.21",
-"angwikiquote": "php-1.28.0-wmf.21",
-"angwikisource": "php-1.28.0-wmf.21",
-"angwiktionary": "php-1.28.0-wmf.21",
+"angwikibooks": "php-1.28.0-wmf.20",
+"angwikiquote": "php-1.28.0-wmf.20",
+"angwikisource": "php-1.28.0-wmf.20",
+"angwiktionary": "php-1.28.0-wmf.20",
 "anwiki": "php-1.28.0-wmf.20",
-"anwiktionary": "php-1.28.0-wmf.21",
+"anwiktionary": "php-1.28.0-wmf.20",
 "arbcom_dewiki": "php-1.28.0-wmf.20",
 "arbcom_enwiki": "php-1.28.0-wmf.20",
 "arbcom_fiwiki": "php-1.28.0-wmf.20",
 "arbcom_nlwiki": "php-1.28.0-wmf.20",
 "arcwiki": "php-1.28.0-wmf.20",
 "arwiki": "php-1.28.0-wmf.20",
-"arwikibooks": "php-1.28.0-wmf.21",
-"arwikimedia": "php-1.28.0-wmf.21",
-"arwikinews": "php-1.28.0-wmf.21",
-"arwikiquote": "php-1.28.0-wmf.21",
-"arwikisource": "php-1.28.0-wmf.21",
-"arwikiversity": "php-1.28.0-wmf.21",
-"arwiktionary": "php-1.28.0-wmf.21",
+"arwikibooks": "php-1.28.0-wmf.20",
+"arwikimedia": "php-1.28.0-wmf.20",
+"arwikinews": "php-1.28.0-wmf.20",
+"arwikiquote": "php-1.28.0-wmf.20",
+"arwikisource": "php-1.28.0-wmf.20",
+"arwikiversity": "php-1.28.0-wmf.20",
+"arwiktionary": "php-1.28.0-wmf.20",
 "arzwiki": "php-1.28.0-wmf.20",
 "astwiki": "php-1.28.0-wmf.20",
-"astwikibooks": "php-1.28.0-wmf.21",
-"astwikiquote": "php-1.28.0-wmf.21",
-"astwiktionary": "php-1.28.0-wmf.21",
+"astwikibooks": "php-1.28.0-wmf.20",
+"astwikiquote": "php-1.28.0-wmf.20",
+"astwiktionary": "php-1.28.0-wmf.20",
 "aswiki": "php-1.28.0-wmf.20",
-"aswikibooks": "php-1.28.0-wmf.21",
-"aswikisource": "php-1.28.0-wmf.21",
-"aswiktionary": "php-1.28.0-wmf.21",
-"auditcomwiki": "php-1.28.0-wmf.21",
+"aswikibooks": "php-1.28.0-wmf.20",
+"aswikisource": "php-1.28.0-wmf.20",
+"aswiktionary": "php-1.28.0-wmf.20",
+"auditcomwiki": "php-1.28.0-wmf.20",
 "avwiki": "php-1.28.0-wmf.20",
-"avwiktionary": "php-1.28.0-wmf.21",
+"avwiktionary": "php-1.28.0-wmf.20",
 "aywiki": "php-1.28.0-wmf.20",
-"aywikibooks": "php-1.28.0-wmf.21",
-"aywiktionary": "php-1.28.0-wmf.21",
+"aywikibooks": "php-1.28.0-wmf.20",
+"aywiktionary": "php-1.28.0-wmf.20",
 "azbwiki": "php-1.28.0-wmf.20",
 "azwiki": "php-1.28.0-wmf.20",
-"azwikibooks": "php-1.28.0-wmf.21",
-"azwikiquote": "php-1.28.0-wmf.21",
-"azwikisource": "php-1.28.0-wmf.21",
-"azwiktionary": "php-1.28.0-wmf.21",
+"azwikibooks": "php-1.28.0-wmf.20",
+"azwikiquote": "php-1.28.0-wmf.20",
+"azwikisource": "php-1.28.0-wmf.20",
+"azwiktionary": "php-1.28.0-wmf.20",
 "barwiki": "php-1.28.0-wmf.20",
 "bat_smgwiki": "php-1.28.0-wmf.20",
 

[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Group0 to 1.28.0-wmf.20

2016-09-21 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Group0 to 1.28.0-wmf.20
..

Group0 to 1.28.0-wmf.20

Change-Id: I9bc062c992e96e9fd56583198cd69afa09b77c50
---
M wikiversions.json
1 file changed, 5 insertions(+), 5 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/04/312104/1

diff --git a/wikiversions.json b/wikiversions.json
index 70ebafd..000732d 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -478,7 +478,7 @@
 "maiwiki": "php-1.28.0-wmf.18",
 "map_bmswiki": "php-1.28.0-wmf.18",
 "mdfwiki": "php-1.28.0-wmf.18",
-"mediawikiwiki": "php-1.28.0-wmf.18",
+"mediawikiwiki": "php-1.28.0-wmf.20",
 "metawiki": "php-1.28.0-wmf.18",
 "mgwiki": "php-1.28.0-wmf.18",
 "mgwikibooks": "php-1.28.0-wmf.18",
@@ -746,9 +746,9 @@
 "tawiktionary": "php-1.28.0-wmf.18",
 "tcywiki": "php-1.28.0-wmf.18",
 "tenwiki": "php-1.28.0-wmf.18",
-"test2wiki": "php-1.28.0-wmf.18",
-"testwiki": "php-1.28.0-wmf.18",
-"testwikidatawiki": "php-1.28.0-wmf.18",
+"test2wiki": "php-1.28.0-wmf.20",
+"testwiki": "php-1.28.0-wmf.20",
+"testwikidatawiki": "php-1.28.0-wmf.20",
 "tetwiki": "php-1.28.0-wmf.18",
 "tewiki": "php-1.28.0-wmf.18",
 "tewikibooks": "php-1.28.0-wmf.18",
@@ -878,7 +878,7 @@
 "zawikiquote": "php-1.28.0-wmf.18",
 "zawiktionary": "php-1.28.0-wmf.18",
 "zeawiki": "php-1.28.0-wmf.18",
-"zerowiki": "php-1.28.0-wmf.18",
+"zerowiki": "php-1.28.0-wmf.20",
 "zh_classicalwiki": "php-1.28.0-wmf.18",
 "zh_min_nanwiki": "php-1.28.0-wmf.18",
 "zh_min_nanwikibooks": "php-1.28.0-wmf.18",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9bc062c992e96e9fd56583198cd69afa09b77c50
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Revert "Enable ShortURL on Wikimedia Bangladesh chapter wiki"

2016-09-19 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Revert "Enable ShortURL on Wikimedia Bangladesh chapter wiki"
..

Revert "Enable ShortURL on Wikimedia Bangladesh chapter wiki"

This reverts commit 592f2d267ab2e1b537f6ed7b8164edd8688cfbc8.

Change-Id: Ideea6b019a588207025c3858b76d40a0785a2446
---
M wmf-config/InitialiseSettings.php
1 file changed, 0 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/81/311481/1

diff --git a/wmf-config/InitialiseSettings.php 
b/wmf-config/InitialiseSettings.php
index ea91bfa..263b9b3 100644
--- a/wmf-config/InitialiseSettings.php
+++ b/wmf-config/InitialiseSettings.php
@@ -15383,7 +15383,6 @@
 
 'wmgUseShortUrl' => [
'default' => false,
-   'bdwikimedia' => true, // T146014
'bhwiki' => true, // T113348
'bnwiki' => true, // T62956
'bnwikisource' => true, // T127968

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ideea6b019a588207025c3858b76d40a0785a2446
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Revert "group0 wikis to 1.28.0-wmf.19"

2016-09-19 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Revert "group0 wikis to 1.28.0-wmf.19"
..

Revert "group0 wikis to 1.28.0-wmf.19"

This reverts commit b90dc02b4cf3800a7a184fb145811166ebfb9879.

Change-Id: Ia9d7ec83a9f93e7ff70508c72e53efe7dbfd000e
---
M wikiversions.json
1 file changed, 5 insertions(+), 5 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/06/311606/1

diff --git a/wikiversions.json b/wikiversions.json
index 0660577..70ebafd 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -478,7 +478,7 @@
 "maiwiki": "php-1.28.0-wmf.18",
 "map_bmswiki": "php-1.28.0-wmf.18",
 "mdfwiki": "php-1.28.0-wmf.18",
-"mediawikiwiki": "php-1.28.0-wmf.19",
+"mediawikiwiki": "php-1.28.0-wmf.18",
 "metawiki": "php-1.28.0-wmf.18",
 "mgwiki": "php-1.28.0-wmf.18",
 "mgwikibooks": "php-1.28.0-wmf.18",
@@ -746,9 +746,9 @@
 "tawiktionary": "php-1.28.0-wmf.18",
 "tcywiki": "php-1.28.0-wmf.18",
 "tenwiki": "php-1.28.0-wmf.18",
-"test2wiki": "php-1.28.0-wmf.19",
-"testwiki": "php-1.28.0-wmf.19",
-"testwikidatawiki": "php-1.28.0-wmf.19",
+"test2wiki": "php-1.28.0-wmf.18",
+"testwiki": "php-1.28.0-wmf.18",
+"testwikidatawiki": "php-1.28.0-wmf.18",
 "tetwiki": "php-1.28.0-wmf.18",
 "tewiki": "php-1.28.0-wmf.18",
 "tewikibooks": "php-1.28.0-wmf.18",
@@ -878,7 +878,7 @@
 "zawikiquote": "php-1.28.0-wmf.18",
 "zawiktionary": "php-1.28.0-wmf.18",
 "zeawiki": "php-1.28.0-wmf.18",
-"zerowiki": "php-1.28.0-wmf.19",
+"zerowiki": "php-1.28.0-wmf.18",
 "zh_classicalwiki": "php-1.28.0-wmf.18",
 "zh_min_nanwiki": "php-1.28.0-wmf.18",
 "zh_min_nanwikibooks": "php-1.28.0-wmf.18",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia9d7ec83a9f93e7ff70508c72e53efe7dbfd000e
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: group0 wikis to 1.28.0-wmf.19

2016-09-19 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: group0 wikis to 1.28.0-wmf.19
..

group0 wikis to 1.28.0-wmf.19

Change-Id: I2bb8f3d0d45d06a788e2d22fbe570a70ff0e7136
---
M wikiversions.json
1 file changed, 5 insertions(+), 5 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/99/311599/1

diff --git a/wikiversions.json b/wikiversions.json
index 70ebafd..0660577 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -478,7 +478,7 @@
 "maiwiki": "php-1.28.0-wmf.18",
 "map_bmswiki": "php-1.28.0-wmf.18",
 "mdfwiki": "php-1.28.0-wmf.18",
-"mediawikiwiki": "php-1.28.0-wmf.18",
+"mediawikiwiki": "php-1.28.0-wmf.19",
 "metawiki": "php-1.28.0-wmf.18",
 "mgwiki": "php-1.28.0-wmf.18",
 "mgwikibooks": "php-1.28.0-wmf.18",
@@ -746,9 +746,9 @@
 "tawiktionary": "php-1.28.0-wmf.18",
 "tcywiki": "php-1.28.0-wmf.18",
 "tenwiki": "php-1.28.0-wmf.18",
-"test2wiki": "php-1.28.0-wmf.18",
-"testwiki": "php-1.28.0-wmf.18",
-"testwikidatawiki": "php-1.28.0-wmf.18",
+"test2wiki": "php-1.28.0-wmf.19",
+"testwiki": "php-1.28.0-wmf.19",
+"testwikidatawiki": "php-1.28.0-wmf.19",
 "tetwiki": "php-1.28.0-wmf.18",
 "tewiki": "php-1.28.0-wmf.18",
 "tewikibooks": "php-1.28.0-wmf.18",
@@ -878,7 +878,7 @@
 "zawikiquote": "php-1.28.0-wmf.18",
 "zawiktionary": "php-1.28.0-wmf.18",
 "zeawiki": "php-1.28.0-wmf.18",
-"zerowiki": "php-1.28.0-wmf.18",
+"zerowiki": "php-1.28.0-wmf.19",
 "zh_classicalwiki": "php-1.28.0-wmf.18",
 "zh_min_nanwiki": "php-1.28.0-wmf.18",
 "zh_min_nanwikibooks": "php-1.28.0-wmf.18",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I2bb8f3d0d45d06a788e2d22fbe570a70ff0e7136
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 
Gerrit-Reviewer: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations/puppet[production]: Scap: Bump installed version to 3.3.0-1

2016-09-22 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Scap: Bump installed version to 3.3.0-1
..

Scap: Bump installed version to 3.3.0-1

Change-Id: I4d228959f48b90115ed040a935dd6f227f659454
---
M modules/scap/manifests/init.pp
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/37/312437/1

diff --git a/modules/scap/manifests/init.pp b/modules/scap/manifests/init.pp
index 646273e..95eb713 100644
--- a/modules/scap/manifests/init.pp
+++ b/modules/scap/manifests/init.pp
@@ -14,7 +14,7 @@
 $wmflabs_master = 'deployment-mira.eqiad.wmflabs',
 ) {
 package { 'scap':
-ensure => '3.2.5-1',
+ensure => '3.3.0-1',
 }
 
 file { '/etc/scap.cfg':

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

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

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: group1 wikis to 1.28.0-wmf.20

2016-09-22 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: group1 wikis to 1.28.0-wmf.20
..

group1 wikis to 1.28.0-wmf.20

Change-Id: I0d805721b25201125defd50e71a135fdbfcb247f
---
M php
M wikiversions.json
2 files changed, 595 insertions(+), 595 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/15/312315/1

diff --git a/php b/php
index 003f828..3099981 12
--- a/php
+++ b/php
@@ -1 +1 @@
-php-1.28.0-wmf.19
\ No newline at end of file
+php-1.28.0-wmf.20
\ No newline at end of file
diff --git a/wikiversions.json b/wikiversions.json
index 000732d..7583a3f 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -1,749 +1,749 @@
 {
 "aawiki": "php-1.28.0-wmf.18",
-"aawikibooks": "php-1.28.0-wmf.18",
-"aawiktionary": "php-1.28.0-wmf.18",
+"aawikibooks": "php-1.28.0-wmf.20",
+"aawiktionary": "php-1.28.0-wmf.20",
 "abwiki": "php-1.28.0-wmf.18",
-"abwiktionary": "php-1.28.0-wmf.18",
+"abwiktionary": "php-1.28.0-wmf.20",
 "acewiki": "php-1.28.0-wmf.18",
-"advisorywiki": "php-1.28.0-wmf.18",
+"advisorywiki": "php-1.28.0-wmf.20",
 "adywiki": "php-1.28.0-wmf.18",
 "afwiki": "php-1.28.0-wmf.18",
-"afwikibooks": "php-1.28.0-wmf.18",
-"afwikiquote": "php-1.28.0-wmf.18",
-"afwiktionary": "php-1.28.0-wmf.18",
+"afwikibooks": "php-1.28.0-wmf.20",
+"afwikiquote": "php-1.28.0-wmf.20",
+"afwiktionary": "php-1.28.0-wmf.20",
 "akwiki": "php-1.28.0-wmf.18",
-"akwikibooks": "php-1.28.0-wmf.18",
-"akwiktionary": "php-1.28.0-wmf.18",
+"akwikibooks": "php-1.28.0-wmf.20",
+"akwiktionary": "php-1.28.0-wmf.20",
 "alswiki": "php-1.28.0-wmf.18",
-"alswikibooks": "php-1.28.0-wmf.18",
-"alswikiquote": "php-1.28.0-wmf.18",
-"alswiktionary": "php-1.28.0-wmf.18",
+"alswikibooks": "php-1.28.0-wmf.20",
+"alswikiquote": "php-1.28.0-wmf.20",
+"alswiktionary": "php-1.28.0-wmf.20",
 "amwiki": "php-1.28.0-wmf.18",
-"amwikiquote": "php-1.28.0-wmf.18",
-"amwiktionary": "php-1.28.0-wmf.18",
+"amwikiquote": "php-1.28.0-wmf.20",
+"amwiktionary": "php-1.28.0-wmf.20",
 "angwiki": "php-1.28.0-wmf.18",
-"angwikibooks": "php-1.28.0-wmf.18",
-"angwikiquote": "php-1.28.0-wmf.18",
-"angwikisource": "php-1.28.0-wmf.18",
-"angwiktionary": "php-1.28.0-wmf.18",
+"angwikibooks": "php-1.28.0-wmf.20",
+"angwikiquote": "php-1.28.0-wmf.20",
+"angwikisource": "php-1.28.0-wmf.20",
+"angwiktionary": "php-1.28.0-wmf.20",
 "anwiki": "php-1.28.0-wmf.18",
-"anwiktionary": "php-1.28.0-wmf.18",
+"anwiktionary": "php-1.28.0-wmf.20",
 "arbcom_dewiki": "php-1.28.0-wmf.18",
 "arbcom_enwiki": "php-1.28.0-wmf.18",
 "arbcom_fiwiki": "php-1.28.0-wmf.18",
 "arbcom_nlwiki": "php-1.28.0-wmf.18",
 "arcwiki": "php-1.28.0-wmf.18",
 "arwiki": "php-1.28.0-wmf.18",
-"arwikibooks": "php-1.28.0-wmf.18",
-"arwikimedia": "php-1.28.0-wmf.18",
-"arwikinews": "php-1.28.0-wmf.18",
-"arwikiquote": "php-1.28.0-wmf.18",
-"arwikisource": "php-1.28.0-wmf.18",
-"arwikiversity": "php-1.28.0-wmf.18",
-"arwiktionary": "php-1.28.0-wmf.18",
+"arwikibooks": "php-1.28.0-wmf.20",
+"arwikimedia": "php-1.28.0-wmf.20",
+"arwikinews": "php-1.28.0-wmf.20",
+"arwikiquote": "php-1.28.0-wmf.20",
+"arwikisource": "php-1.28.0-wmf.20",
+"arwikiversity": "php-1.28.0-wmf.20",
+"arwiktionary": "php-1.28.0-wmf.20",
 "arzwiki": "php-1.28.0-wmf.18",
 "astwiki": "php-1.28.0-wmf.18",
-"astwikibooks": "php-1.28.0-wmf.18",
-"astwikiquote": "php-1.28.0-wmf.18",
-"astwiktionary": "php-1.28.0-wmf.18",
+"astwikibooks": "php-1.28.0-wmf.20",
+"astwikiquote": "php-1.28.0-wmf.20",
+"astwiktionary": "php-1.28.0-wmf.20",
 "aswiki": "php-1.28.0-wmf.18",
-"aswikibooks": "php-1.28.0-wmf.18",
-"aswikisource": "php-1.28.0-wmf.18",
-"aswiktionary": "php-1.28.0-wmf.18",
-"auditcomwiki": "php-1.28.0-wmf.18",
+"aswikibooks": "php-1.28.0-wmf.20",
+"aswikisource": "php-1.28.0-wmf.20",
+"aswiktionary": "php-1.28.0-wmf.20",
+"auditcomwiki": "php-1.28.0-wmf.20",
 "avwiki": "php-1.28.0-wmf.18",
-"avwiktionary": "php-1.28.0-wmf.18",
+"avwiktionary": "php-1.28.0-wmf.20",
 "aywiki": "php-1.28.0-wmf.18",
-"aywikibooks": "php-1.28.0-wmf.18",
-"aywiktionary": "php-1.28.0-wmf.18",
+"aywikibooks": "php-1.28.0-wmf.20",
+"aywiktionary": "php-1.28.0-wmf.20",
 "azbwiki": "php-1.28.0-wmf.18",
 "azwiki": "php-1.28.0-wmf.18",
-"azwikibooks": "php-1.28.0-wmf.18",
-"azwikiquote": "php-1.28.0-wmf.18",
-"azwikisource": "php-1.28.0-wmf.18",
-"azwiktionary": "php-1.28.0-wmf.18",
+"azwikibooks": "php-1.28.0-wmf.20",
+"azwikiquote": "php-1.28.0-wmf.20",
+"azwikisource": "php-1.28.0-wmf.20",
+"azwiktionary": 

[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: all wikis to 1.28.0-wmf.20

2016-09-22 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: all wikis to 1.28.0-wmf.20
..

all wikis to 1.28.0-wmf.20

Change-Id: I53bfa0c7b13ece190f4ee782c53122364d7058bb
---
M wikiversions.json
1 file changed, 298 insertions(+), 298 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/26/312326/1

diff --git a/wikiversions.json b/wikiversions.json
index 7583a3f..59f3542 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -1,39 +1,39 @@
 {
-"aawiki": "php-1.28.0-wmf.18",
+"aawiki": "php-1.28.0-wmf.20",
 "aawikibooks": "php-1.28.0-wmf.20",
 "aawiktionary": "php-1.28.0-wmf.20",
-"abwiki": "php-1.28.0-wmf.18",
+"abwiki": "php-1.28.0-wmf.20",
 "abwiktionary": "php-1.28.0-wmf.20",
-"acewiki": "php-1.28.0-wmf.18",
+"acewiki": "php-1.28.0-wmf.20",
 "advisorywiki": "php-1.28.0-wmf.20",
-"adywiki": "php-1.28.0-wmf.18",
-"afwiki": "php-1.28.0-wmf.18",
+"adywiki": "php-1.28.0-wmf.20",
+"afwiki": "php-1.28.0-wmf.20",
 "afwikibooks": "php-1.28.0-wmf.20",
 "afwikiquote": "php-1.28.0-wmf.20",
 "afwiktionary": "php-1.28.0-wmf.20",
-"akwiki": "php-1.28.0-wmf.18",
+"akwiki": "php-1.28.0-wmf.20",
 "akwikibooks": "php-1.28.0-wmf.20",
 "akwiktionary": "php-1.28.0-wmf.20",
-"alswiki": "php-1.28.0-wmf.18",
+"alswiki": "php-1.28.0-wmf.20",
 "alswikibooks": "php-1.28.0-wmf.20",
 "alswikiquote": "php-1.28.0-wmf.20",
 "alswiktionary": "php-1.28.0-wmf.20",
-"amwiki": "php-1.28.0-wmf.18",
+"amwiki": "php-1.28.0-wmf.20",
 "amwikiquote": "php-1.28.0-wmf.20",
 "amwiktionary": "php-1.28.0-wmf.20",
-"angwiki": "php-1.28.0-wmf.18",
+"angwiki": "php-1.28.0-wmf.20",
 "angwikibooks": "php-1.28.0-wmf.20",
 "angwikiquote": "php-1.28.0-wmf.20",
 "angwikisource": "php-1.28.0-wmf.20",
 "angwiktionary": "php-1.28.0-wmf.20",
-"anwiki": "php-1.28.0-wmf.18",
+"anwiki": "php-1.28.0-wmf.20",
 "anwiktionary": "php-1.28.0-wmf.20",
-"arbcom_dewiki": "php-1.28.0-wmf.18",
-"arbcom_enwiki": "php-1.28.0-wmf.18",
-"arbcom_fiwiki": "php-1.28.0-wmf.18",
-"arbcom_nlwiki": "php-1.28.0-wmf.18",
-"arcwiki": "php-1.28.0-wmf.18",
-"arwiki": "php-1.28.0-wmf.18",
+"arbcom_dewiki": "php-1.28.0-wmf.20",
+"arbcom_enwiki": "php-1.28.0-wmf.20",
+"arbcom_fiwiki": "php-1.28.0-wmf.20",
+"arbcom_nlwiki": "php-1.28.0-wmf.20",
+"arcwiki": "php-1.28.0-wmf.20",
+"arwiki": "php-1.28.0-wmf.20",
 "arwikibooks": "php-1.28.0-wmf.20",
 "arwikimedia": "php-1.28.0-wmf.20",
 "arwikinews": "php-1.28.0-wmf.20",
@@ -41,80 +41,80 @@
 "arwikisource": "php-1.28.0-wmf.20",
 "arwikiversity": "php-1.28.0-wmf.20",
 "arwiktionary": "php-1.28.0-wmf.20",
-"arzwiki": "php-1.28.0-wmf.18",
-"astwiki": "php-1.28.0-wmf.18",
+"arzwiki": "php-1.28.0-wmf.20",
+"astwiki": "php-1.28.0-wmf.20",
 "astwikibooks": "php-1.28.0-wmf.20",
 "astwikiquote": "php-1.28.0-wmf.20",
 "astwiktionary": "php-1.28.0-wmf.20",
-"aswiki": "php-1.28.0-wmf.18",
+"aswiki": "php-1.28.0-wmf.20",
 "aswikibooks": "php-1.28.0-wmf.20",
 "aswikisource": "php-1.28.0-wmf.20",
 "aswiktionary": "php-1.28.0-wmf.20",
 "auditcomwiki": "php-1.28.0-wmf.20",
-"avwiki": "php-1.28.0-wmf.18",
+"avwiki": "php-1.28.0-wmf.20",
 "avwiktionary": "php-1.28.0-wmf.20",
-"aywiki": "php-1.28.0-wmf.18",
+"aywiki": "php-1.28.0-wmf.20",
 "aywikibooks": "php-1.28.0-wmf.20",
 "aywiktionary": "php-1.28.0-wmf.20",
-"azbwiki": "php-1.28.0-wmf.18",
-"azwiki": "php-1.28.0-wmf.18",
+"azbwiki": "php-1.28.0-wmf.20",
+"azwiki": "php-1.28.0-wmf.20",
 "azwikibooks": "php-1.28.0-wmf.20",
 "azwikiquote": "php-1.28.0-wmf.20",
 "azwikisource": "php-1.28.0-wmf.20",
 "azwiktionary": "php-1.28.0-wmf.20",
-"barwiki": "php-1.28.0-wmf.18",
-"bat_smgwiki": "php-1.28.0-wmf.18",
-"bawiki": "php-1.28.0-wmf.18",
+"barwiki": "php-1.28.0-wmf.20",
+"bat_smgwiki": "php-1.28.0-wmf.20",
+"bawiki": "php-1.28.0-wmf.20",
 "bawikibooks": "php-1.28.0-wmf.20",
-"bclwiki": "php-1.28.0-wmf.18",
+"bclwiki": "php-1.28.0-wmf.20",
 "bdwikimedia": "php-1.28.0-wmf.20",
-"be_x_oldwiki": "php-1.28.0-wmf.18",
+"be_x_oldwiki": "php-1.28.0-wmf.20",
 "betawikiversity": "php-1.28.0-wmf.20",
-"bewiki": "php-1.28.0-wmf.18",
+"bewiki": "php-1.28.0-wmf.20",
 "bewikibooks": "php-1.28.0-wmf.20",
 "bewikimedia": "php-1.28.0-wmf.20",
 "bewikiquote": "php-1.28.0-wmf.20",
 "bewikisource": "php-1.28.0-wmf.20",
 "bewiktionary": "php-1.28.0-wmf.20",
-"bgwiki": "php-1.28.0-wmf.18",
+"bgwiki": "php-1.28.0-wmf.20",
 "bgwikibooks": "php-1.28.0-wmf.20",
 "bgwikinews": "php-1.28.0-wmf.20",
 "bgwikiquote": "php-1.28.0-wmf.20",
 "bgwikisource": 

[MediaWiki-commits] [Gerrit] operations/puppet[production]: Beta: deployment-mira02 ip address updates

2016-09-20 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Beta: deployment-mira02 ip address updates
..

Beta: deployment-mira02 ip address updates

Change-Id: Icaf21a014986cb38b73ab7ec4ba8b9616857bdf9
---
M modules/network/manifests/constants.pp
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/60/311760/1

diff --git a/modules/network/manifests/constants.pp 
b/modules/network/manifests/constants.pp
index abced1c..ada644e 100644
--- a/modules/network/manifests/constants.pp
+++ b/modules/network/manifests/constants.pp
@@ -104,7 +104,7 @@
 'deployment_hosts' => [
 '10.68.17.240',  # 
deployment-tin.deployment-prep.eqiad.wmflabs
 '10.68.17.215',  # mira.deployment-prep.eqiad.wmflabs
-'10.68.22.226',  # 
deployment-mira02.deployment-prep.eqiad.wmflabs
+'10.68.19.67',   # 
deployment-mira02.deployment-prep.eqiad.wmflabs
 ],
 }
 }

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

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

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


[MediaWiki-commits] [Gerrit] operations/puppet[production]: Bump scap version to 3.2.4-1

2016-08-26 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Bump scap version to 3.2.4-1
..

Bump scap version to 3.2.4-1

Change-Id: I39b6bbc2abd519fdef7e1254ac230c09a79f766f
---
M modules/scap/manifests/init.pp
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/28/307028/1

diff --git a/modules/scap/manifests/init.pp b/modules/scap/manifests/init.pp
index e10e961..9a333d7 100644
--- a/modules/scap/manifests/init.pp
+++ b/modules/scap/manifests/init.pp
@@ -14,7 +14,7 @@
 $wmflabs_master = 'deployment-tin.eqiad.wmflabs',
 ) {
 package { 'scap':
-ensure => '3.2.3-1',
+ensure => '3.2.4-1',
 }
 
 file { '/etc/scap.cfg':

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

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

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


[MediaWiki-commits] [Gerrit] operations/puppet[production]: Beta: Move beta::deployaccess to role::beta::deployaccess

2016-10-03 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Beta: Move beta::deployaccess to role::beta::deployaccess
..

Beta: Move beta::deployaccess to role::beta::deployaccess

Change-Id: I16cb7cc2e8f9ef81cec41ce9a29e00d2c34e64a3
---
D modules/beta/manifests/deployaccess.pp
A modules/role/manifests/beta/mediawiki.pp
2 files changed, 12 insertions(+), 12 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/27/313927/1

diff --git a/modules/beta/manifests/deployaccess.pp 
b/modules/beta/manifests/deployaccess.pp
deleted file mode 100644
index 754412b..000
--- a/modules/beta/manifests/deployaccess.pp
+++ /dev/null
@@ -1,12 +0,0 @@
-# TODO: remove this if https://phabricator.wikimedia.org/T121721
-# is fixed.
-class beta::deployaccess(
-$bastion_ip = '10.68.20.135', # ip of deployment-mira
-) {
-
-security::access::config { 'beta-allow-mwdeploy':
-content  => "+ : deploy-service mwdeploy : ${bastion_ip}\n",
-priority => 50,
-}
-
-}
diff --git a/modules/role/manifests/beta/mediawiki.pp 
b/modules/role/manifests/beta/mediawiki.pp
new file mode 100644
index 000..f37cb52
--- /dev/null
+++ b/modules/role/manifests/beta/mediawiki.pp
@@ -0,0 +1,12 @@
+# == Class role::beta::mediawiki
+#
+# Allow mwdeploy to login from scap deployment host. Adds an exception in
+# /etc/security/access.conf to work around labs-specific restrictions
+class role::beta::mediawiki {
+$deployment_host = hiera('scap::deployment_server')
+$deployment_ip = ipresolve($deployment_host)
+security::access::config { 'scap-allow-mwdeploy':
+content  => "+ : mwdeploy : ${deployment_ip}\n",
+priority => 60,
+}
+}

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

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

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


[MediaWiki-commits] [Gerrit] operations/puppet[production]: Scap: modify deploy-local arguments

2016-10-10 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Scap: modify deploy-local arguments
..

Scap: modify deploy-local arguments

For scap to make fewer (possibly bad) assumptions about the environment
into which it is deploying more information needs be passed from the
command line arguments.

This change modifies any puppetized invocations of deploy-local to use
the new argument format.

This change will need to land along side the deployment of the scap
package that supports this change.

Bug: T146602
Change-Id: I4e0421b6ea6dda854998a59ef3165002ff022355
---
M modules/scap/lib/puppet/provider/package/scap3.rb
M modules/scap/manifests/target.pp
M modules/scap/spec/types/package/scap3_spec.rb
M modules/service/manifests/node.pp
M modules/service/templates/node/apply-config.sh.erb
5 files changed, 22 insertions(+), 9 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/39/315139/1

diff --git a/modules/scap/lib/puppet/provider/package/scap3.rb 
b/modules/scap/lib/puppet/provider/package/scap3.rb
index 4a28799..45caf06 100644
--- a/modules/scap/lib/puppet/provider/package/scap3.rb
+++ b/modules/scap/lib/puppet/provider/package/scap3.rb
@@ -57,7 +57,7 @@
 
 uid = Etc.getpwnam(deploy_user).uid
 
-execute([self.class.command(:scap), 'deploy-local', '--repo', repo_path, 
'-D', 'log_json:False'],
+execute([self.class.command(:scap), 'deploy-local', '-D', 
'log_json:False', host_path, target_path],
 :uid => uid, :failonfail => true)
   end
 
@@ -124,6 +124,14 @@
 @deploy_user ||= install_option('owner', 'root')
   end
 
+  def host
+@host_name ||= install_option('host', 'deployment.eqiad.wmnet')
+  end
+
+  def host_path
+'http://' + File.join(host, repo_path)
+  end
+
   def repo
 resource[:name]
   end
diff --git a/modules/scap/manifests/target.pp b/modules/scap/manifests/target.pp
index 00a9955..853114e 100644
--- a/modules/scap/manifests/target.pp
+++ b/modules/scap/manifests/target.pp
@@ -87,14 +87,13 @@
 }
 }
 
-
+$deployment_host = hiera('scap::deployment_server')
 
 if $::realm == 'labs' {
 if !defined(Security::Access::Config["scap-allow-${deploy_user}"]) {
 # Allow $deploy_user login from scap deployment host.
 # adds an exception in /etc/security/access.conf
 # to work around labs-specific restrictions
-$deployment_host = hiera('scap::deployment_server')
 $deployment_ip = ipresolve($deployment_host, 4, $::nameservers[0])
 security::access::config { "scap-allow-${deploy_user}":
 content  => "+ : ${deploy_user} : ${deployment_ip}\n",
@@ -104,8 +103,10 @@
 }
 
 package { $package_name:
-install_options => [{
-  owner => $deploy_user}],
+install_options  => [{
+  owner  => $deploy_user,
+  host => $deployment_host,
+}],
 provider=> 'scap3',
 require => [Package['scap'], User[$deploy_user]],
 }
diff --git a/modules/scap/spec/types/package/scap3_spec.rb 
b/modules/scap/spec/types/package/scap3_spec.rb
index 82cf391..650dc03 100644
--- a/modules/scap/spec/types/package/scap3_spec.rb
+++ b/modules/scap/spec/types/package/scap3_spec.rb
@@ -28,8 +28,9 @@
 it 'should specify the right repo' do
   allow(FileUtils).to receive(:cd)
   expect(@provider).to receive(:execute).
-with(['/usr/bin/scap', 'deploy-local', '--repo', 'foo/deploy', '-D', 
'log_json:False'],
- uid: 666, failonfail: true)
+with(['/usr/bin/scap', 'deploy-local', '-D', 'log_json:False',
+  'http://deployment.eqiad.wmnet/foo/deploy', 
'/srv/deployment/foo/deploy'],
+  uid: 666, failonfail: true)
   @provider.install
 end
   end
diff --git a/modules/service/manifests/node.pp 
b/modules/service/manifests/node.pp
index fb466fc..f2c66ba 100644
--- a/modules/service/manifests/node.pp
+++ b/modules/service/manifests/node.pp
@@ -272,6 +272,7 @@
 # the file and install its symlink
 $chown_user = "${deployment_user}:${deployment_user}"
 $chown_target = "/etc/${title}/config.yaml"
+$deployment_host = hiera('scap::deployment_host')
 exec { "chown ${chown_target}":
 command => "/bin/chown ${chown_user} ${chown_target}",
 # perform the chown only if root is the effective owner
diff --git a/modules/service/templates/node/apply-config.sh.erb 
b/modules/service/templates/node/apply-config.sh.erb
index 5ae72d9..9437acd 100755
--- a/modules/service/templates/node/apply-config.sh.erb
+++ b/modules/service/templates/node/apply-config.sh.erb
@@ -3,5 +3,7 @@
 # Do not modify it manually
 
 set -e
-/usr/bin/scap deploy-local -D 'log_json:False' --repo <%= @repo %> --force 
config_deploy;
-<%- if @auto_refresh 

[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: group1 wikis to 1.28.0-wmf.22

2016-10-12 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: group1 wikis to 1.28.0-wmf.22
..

group1 wikis to 1.28.0-wmf.22

Change-Id: Ieca7912c23e11ed3138bbeb4a08b79379aec69a8
---
M wikiversions.json
1 file changed, 594 insertions(+), 594 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/54/315554/1

diff --git a/wikiversions.json b/wikiversions.json
index 0827d03..f6b6c64 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -1,750 +1,750 @@
 {
 "aawiki": "php-1.28.0-wmf.21",
-"aawikibooks": "php-1.28.0-wmf.21",
-"aawiktionary": "php-1.28.0-wmf.21",
+"aawikibooks": "php-1.28.0-wmf.22",
+"aawiktionary": "php-1.28.0-wmf.22",
 "abwiki": "php-1.28.0-wmf.21",
-"abwiktionary": "php-1.28.0-wmf.21",
+"abwiktionary": "php-1.28.0-wmf.22",
 "acewiki": "php-1.28.0-wmf.21",
-"advisorywiki": "php-1.28.0-wmf.21",
+"advisorywiki": "php-1.28.0-wmf.22",
 "adywiki": "php-1.28.0-wmf.21",
 "afwiki": "php-1.28.0-wmf.21",
-"afwikibooks": "php-1.28.0-wmf.21",
-"afwikiquote": "php-1.28.0-wmf.21",
-"afwiktionary": "php-1.28.0-wmf.21",
+"afwikibooks": "php-1.28.0-wmf.22",
+"afwikiquote": "php-1.28.0-wmf.22",
+"afwiktionary": "php-1.28.0-wmf.22",
 "akwiki": "php-1.28.0-wmf.21",
-"akwikibooks": "php-1.28.0-wmf.21",
-"akwiktionary": "php-1.28.0-wmf.21",
+"akwikibooks": "php-1.28.0-wmf.22",
+"akwiktionary": "php-1.28.0-wmf.22",
 "alswiki": "php-1.28.0-wmf.21",
-"alswikibooks": "php-1.28.0-wmf.21",
-"alswikiquote": "php-1.28.0-wmf.21",
-"alswiktionary": "php-1.28.0-wmf.21",
+"alswikibooks": "php-1.28.0-wmf.22",
+"alswikiquote": "php-1.28.0-wmf.22",
+"alswiktionary": "php-1.28.0-wmf.22",
 "amwiki": "php-1.28.0-wmf.21",
-"amwikiquote": "php-1.28.0-wmf.21",
-"amwiktionary": "php-1.28.0-wmf.21",
+"amwikiquote": "php-1.28.0-wmf.22",
+"amwiktionary": "php-1.28.0-wmf.22",
 "angwiki": "php-1.28.0-wmf.21",
-"angwikibooks": "php-1.28.0-wmf.21",
-"angwikiquote": "php-1.28.0-wmf.21",
-"angwikisource": "php-1.28.0-wmf.21",
-"angwiktionary": "php-1.28.0-wmf.21",
+"angwikibooks": "php-1.28.0-wmf.22",
+"angwikiquote": "php-1.28.0-wmf.22",
+"angwikisource": "php-1.28.0-wmf.22",
+"angwiktionary": "php-1.28.0-wmf.22",
 "anwiki": "php-1.28.0-wmf.21",
-"anwiktionary": "php-1.28.0-wmf.21",
+"anwiktionary": "php-1.28.0-wmf.22",
 "arbcom_dewiki": "php-1.28.0-wmf.21",
 "arbcom_enwiki": "php-1.28.0-wmf.21",
 "arbcom_fiwiki": "php-1.28.0-wmf.21",
 "arbcom_nlwiki": "php-1.28.0-wmf.21",
 "arcwiki": "php-1.28.0-wmf.21",
 "arwiki": "php-1.28.0-wmf.21",
-"arwikibooks": "php-1.28.0-wmf.21",
-"arwikimedia": "php-1.28.0-wmf.21",
-"arwikinews": "php-1.28.0-wmf.21",
-"arwikiquote": "php-1.28.0-wmf.21",
-"arwikisource": "php-1.28.0-wmf.21",
-"arwikiversity": "php-1.28.0-wmf.21",
-"arwiktionary": "php-1.28.0-wmf.21",
+"arwikibooks": "php-1.28.0-wmf.22",
+"arwikimedia": "php-1.28.0-wmf.22",
+"arwikinews": "php-1.28.0-wmf.22",
+"arwikiquote": "php-1.28.0-wmf.22",
+"arwikisource": "php-1.28.0-wmf.22",
+"arwikiversity": "php-1.28.0-wmf.22",
+"arwiktionary": "php-1.28.0-wmf.22",
 "arzwiki": "php-1.28.0-wmf.21",
 "astwiki": "php-1.28.0-wmf.21",
-"astwikibooks": "php-1.28.0-wmf.21",
-"astwikiquote": "php-1.28.0-wmf.21",
-"astwiktionary": "php-1.28.0-wmf.21",
+"astwikibooks": "php-1.28.0-wmf.22",
+"astwikiquote": "php-1.28.0-wmf.22",
+"astwiktionary": "php-1.28.0-wmf.22",
 "aswiki": "php-1.28.0-wmf.21",
-"aswikibooks": "php-1.28.0-wmf.21",
-"aswikisource": "php-1.28.0-wmf.21",
-"aswiktionary": "php-1.28.0-wmf.21",
-"auditcomwiki": "php-1.28.0-wmf.21",
+"aswikibooks": "php-1.28.0-wmf.22",
+"aswikisource": "php-1.28.0-wmf.22",
+"aswiktionary": "php-1.28.0-wmf.22",
+"auditcomwiki": "php-1.28.0-wmf.22",
 "avwiki": "php-1.28.0-wmf.21",
-"avwiktionary": "php-1.28.0-wmf.21",
+"avwiktionary": "php-1.28.0-wmf.22",
 "aywiki": "php-1.28.0-wmf.21",
-"aywikibooks": "php-1.28.0-wmf.21",
-"aywiktionary": "php-1.28.0-wmf.21",
+"aywikibooks": "php-1.28.0-wmf.22",
+"aywiktionary": "php-1.28.0-wmf.22",
 "azbwiki": "php-1.28.0-wmf.21",
 "azwiki": "php-1.28.0-wmf.21",
-"azwikibooks": "php-1.28.0-wmf.21",
-"azwikiquote": "php-1.28.0-wmf.21",
-"azwikisource": "php-1.28.0-wmf.21",
-"azwiktionary": "php-1.28.0-wmf.21",
+"azwikibooks": "php-1.28.0-wmf.22",
+"azwikiquote": "php-1.28.0-wmf.22",
+"azwikisource": "php-1.28.0-wmf.22",
+"azwiktionary": "php-1.28.0-wmf.22",
 "barwiki": "php-1.28.0-wmf.21",
 "bat_smgwiki": "php-1.28.0-wmf.21",
 "bawiki": "php-1.28.0-wmf.21",
-"bawikibooks": "php-1.28.0-wmf.21",
+

[MediaWiki-commits] [Gerrit] operations/puppet[production]: SCAP: Bump version to 3.4.0-1

2016-11-28 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: SCAP: Bump version to 3.4.0-1
..

SCAP: Bump version to 3.4.0-1

Change-Id: I5e0935a931596699749fd4b97d00e8cfff50de58
---
M modules/scap/manifests/init.pp
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/52/323852/1

diff --git a/modules/scap/manifests/init.pp b/modules/scap/manifests/init.pp
index 11b6847..0ad3e35 100644
--- a/modules/scap/manifests/init.pp
+++ b/modules/scap/manifests/init.pp
@@ -12,7 +12,7 @@
 class scap (
 $deployment_server = 'deployment',
 $wmflabs_master = 'deployment-tin.eqiad.wmflabs',
-$version = '3.3.0-1',
+$version = '3.4.0-1',
 ) {
 package { 'scap':
 ensure => $version,

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

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

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Fix scap clean command

2016-11-28 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Fix scap clean command
..

Fix scap clean command

the config does not contain a staging_dir, only a stage_dir

Change-Id: I2e8c807e9ca423729f964a57a88db9167fb32817
---
M scap/plugins/clean.py
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/95/323995/1

diff --git a/scap/plugins/clean.py b/scap/plugins/clean.py
index 9d22840..77c3c19 100644
--- a/scap/plugins/clean.py
+++ b/scap/plugins/clean.py
@@ -21,7 +21,7 @@
 user=self.config['ssh_user'])
 clean_job.exclude_hosts([socket.getfqdn()])
 clean_job.shuffle()
-clean_job.command(self._clean_command(self.config['staging_dir']))
+clean_job.command(self._clean_command(self.config['stage_dir']))
 clean_job.progress('clean-apaches')
 succeeded, failed = clean_job.run()
 if failed:

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I2e8c807e9ca423729f964a57a88db9167fb32817
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations/puppet[production]: Scap: clone directory group writable

2016-11-28 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Scap: clone directory group writable
..

Scap: clone directory group writable

Ensure that deployers are able to write to scap directory.

Bug: T151231
Change-Id: I63c84b99501671cc684078fbef01f26fdc2bf23a
---
M modules/scap/lib/puppet/provider/scap_source/default.rb
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/06/324006/1

diff --git a/modules/scap/lib/puppet/provider/scap_source/default.rb 
b/modules/scap/lib/puppet/provider/scap_source/default.rb
index 700c18a..cdfbfdf 100644
--- a/modules/scap/lib/puppet/provider/scap_source/default.rb
+++ b/modules/scap/lib/puppet/provider/scap_source/default.rb
@@ -78,7 +78,7 @@
   end
 
   def checkout(name, path)
-umask = 022
+umask = 002
 file_mode = 02775
 unless Dir.exists?(path)
   FileUtils.makedirs path, :mode => file_mode

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

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

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: group1 wikis to 1.29.0-wmf.3

2016-11-16 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: group1 wikis to 1.29.0-wmf.3
..

group1 wikis to 1.29.0-wmf.3

Change-Id: I26c7f60981aa1a66518f0c731144f264a50e2c22
---
M php
M wikiversions.json
2 files changed, 597 insertions(+), 597 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/39/321939/1

diff --git a/php b/php
index 608607c..f658734 12
--- a/php
+++ b/php
@@ -1 +1 @@
-php-1.29.0-wmf.2
\ No newline at end of file
+php-1.29.0-wmf.3
\ No newline at end of file
diff --git a/wikiversions.json b/wikiversions.json
index b766b89..3b6c0bf 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -1,752 +1,752 @@
 {
 "aawiki": "php-1.29.0-wmf.2",
-"aawikibooks": "php-1.29.0-wmf.2",
-"aawiktionary": "php-1.29.0-wmf.2",
+"aawikibooks": "php-1.29.0-wmf.3",
+"aawiktionary": "php-1.29.0-wmf.3",
 "abwiki": "php-1.29.0-wmf.2",
-"abwiktionary": "php-1.29.0-wmf.2",
+"abwiktionary": "php-1.29.0-wmf.3",
 "acewiki": "php-1.29.0-wmf.2",
-"advisorywiki": "php-1.29.0-wmf.2",
+"advisorywiki": "php-1.29.0-wmf.3",
 "adywiki": "php-1.29.0-wmf.2",
 "afwiki": "php-1.29.0-wmf.2",
-"afwikibooks": "php-1.29.0-wmf.2",
-"afwikiquote": "php-1.29.0-wmf.2",
-"afwiktionary": "php-1.29.0-wmf.2",
+"afwikibooks": "php-1.29.0-wmf.3",
+"afwikiquote": "php-1.29.0-wmf.3",
+"afwiktionary": "php-1.29.0-wmf.3",
 "akwiki": "php-1.29.0-wmf.2",
-"akwikibooks": "php-1.29.0-wmf.2",
-"akwiktionary": "php-1.29.0-wmf.2",
+"akwikibooks": "php-1.29.0-wmf.3",
+"akwiktionary": "php-1.29.0-wmf.3",
 "alswiki": "php-1.29.0-wmf.2",
-"alswikibooks": "php-1.29.0-wmf.2",
-"alswikiquote": "php-1.29.0-wmf.2",
-"alswiktionary": "php-1.29.0-wmf.2",
+"alswikibooks": "php-1.29.0-wmf.3",
+"alswikiquote": "php-1.29.0-wmf.3",
+"alswiktionary": "php-1.29.0-wmf.3",
 "amwiki": "php-1.29.0-wmf.2",
-"amwikiquote": "php-1.29.0-wmf.2",
-"amwiktionary": "php-1.29.0-wmf.2",
+"amwikiquote": "php-1.29.0-wmf.3",
+"amwiktionary": "php-1.29.0-wmf.3",
 "angwiki": "php-1.29.0-wmf.2",
-"angwikibooks": "php-1.29.0-wmf.2",
-"angwikiquote": "php-1.29.0-wmf.2",
-"angwikisource": "php-1.29.0-wmf.2",
-"angwiktionary": "php-1.29.0-wmf.2",
+"angwikibooks": "php-1.29.0-wmf.3",
+"angwikiquote": "php-1.29.0-wmf.3",
+"angwikisource": "php-1.29.0-wmf.3",
+"angwiktionary": "php-1.29.0-wmf.3",
 "anwiki": "php-1.29.0-wmf.2",
-"anwiktionary": "php-1.29.0-wmf.2",
+"anwiktionary": "php-1.29.0-wmf.3",
 "arbcom_dewiki": "php-1.29.0-wmf.2",
 "arbcom_enwiki": "php-1.29.0-wmf.2",
 "arbcom_fiwiki": "php-1.29.0-wmf.2",
 "arbcom_nlwiki": "php-1.29.0-wmf.2",
 "arcwiki": "php-1.29.0-wmf.2",
 "arwiki": "php-1.29.0-wmf.2",
-"arwikibooks": "php-1.29.0-wmf.2",
-"arwikimedia": "php-1.29.0-wmf.2",
-"arwikinews": "php-1.29.0-wmf.2",
-"arwikiquote": "php-1.29.0-wmf.2",
-"arwikisource": "php-1.29.0-wmf.2",
-"arwikiversity": "php-1.29.0-wmf.2",
-"arwiktionary": "php-1.29.0-wmf.2",
+"arwikibooks": "php-1.29.0-wmf.3",
+"arwikimedia": "php-1.29.0-wmf.3",
+"arwikinews": "php-1.29.0-wmf.3",
+"arwikiquote": "php-1.29.0-wmf.3",
+"arwikisource": "php-1.29.0-wmf.3",
+"arwikiversity": "php-1.29.0-wmf.3",
+"arwiktionary": "php-1.29.0-wmf.3",
 "arzwiki": "php-1.29.0-wmf.2",
 "astwiki": "php-1.29.0-wmf.2",
-"astwikibooks": "php-1.29.0-wmf.2",
-"astwikiquote": "php-1.29.0-wmf.2",
-"astwiktionary": "php-1.29.0-wmf.2",
+"astwikibooks": "php-1.29.0-wmf.3",
+"astwikiquote": "php-1.29.0-wmf.3",
+"astwiktionary": "php-1.29.0-wmf.3",
 "aswiki": "php-1.29.0-wmf.2",
-"aswikibooks": "php-1.29.0-wmf.2",
-"aswikisource": "php-1.29.0-wmf.2",
-"aswiktionary": "php-1.29.0-wmf.2",
-"auditcomwiki": "php-1.29.0-wmf.2",
+"aswikibooks": "php-1.29.0-wmf.3",
+"aswikisource": "php-1.29.0-wmf.3",
+"aswiktionary": "php-1.29.0-wmf.3",
+"auditcomwiki": "php-1.29.0-wmf.3",
 "avwiki": "php-1.29.0-wmf.2",
-"avwiktionary": "php-1.29.0-wmf.2",
+"avwiktionary": "php-1.29.0-wmf.3",
 "aywiki": "php-1.29.0-wmf.2",
-"aywikibooks": "php-1.29.0-wmf.2",
-"aywiktionary": "php-1.29.0-wmf.2",
+"aywikibooks": "php-1.29.0-wmf.3",
+"aywiktionary": "php-1.29.0-wmf.3",
 "azbwiki": "php-1.29.0-wmf.2",
 "azwiki": "php-1.29.0-wmf.2",
-"azwikibooks": "php-1.29.0-wmf.2",
-"azwikiquote": "php-1.29.0-wmf.2",
-"azwikisource": "php-1.29.0-wmf.2",
-"azwiktionary": "php-1.29.0-wmf.2",
+"azwikibooks": "php-1.29.0-wmf.3",
+"azwikiquote": "php-1.29.0-wmf.3",
+"azwikisource": "php-1.29.0-wmf.3",
+"azwiktionary": "php-1.29.0-wmf.3",
 "barwiki": "php-1.29.0-wmf.2",
 "bat_smgwiki": "php-1.29.0-wmf.2",
 "bawiki": 

[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: all wikis to 1.29.0-wmf.3

2016-11-17 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: all wikis to 1.29.0-wmf.3
..

all wikis to 1.29.0-wmf.3

Change-Id: I95f1fbafaff259c3e4741cda503324a4a27958d8
---
M wikiversions.json
1 file changed, 299 insertions(+), 299 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/46/322146/1

diff --git a/wikiversions.json b/wikiversions.json
index 3b6c0bf..5abc2fc 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -1,39 +1,39 @@
 {
-"aawiki": "php-1.29.0-wmf.2",
+"aawiki": "php-1.29.0-wmf.3",
 "aawikibooks": "php-1.29.0-wmf.3",
 "aawiktionary": "php-1.29.0-wmf.3",
-"abwiki": "php-1.29.0-wmf.2",
+"abwiki": "php-1.29.0-wmf.3",
 "abwiktionary": "php-1.29.0-wmf.3",
-"acewiki": "php-1.29.0-wmf.2",
+"acewiki": "php-1.29.0-wmf.3",
 "advisorywiki": "php-1.29.0-wmf.3",
-"adywiki": "php-1.29.0-wmf.2",
-"afwiki": "php-1.29.0-wmf.2",
+"adywiki": "php-1.29.0-wmf.3",
+"afwiki": "php-1.29.0-wmf.3",
 "afwikibooks": "php-1.29.0-wmf.3",
 "afwikiquote": "php-1.29.0-wmf.3",
 "afwiktionary": "php-1.29.0-wmf.3",
-"akwiki": "php-1.29.0-wmf.2",
+"akwiki": "php-1.29.0-wmf.3",
 "akwikibooks": "php-1.29.0-wmf.3",
 "akwiktionary": "php-1.29.0-wmf.3",
-"alswiki": "php-1.29.0-wmf.2",
+"alswiki": "php-1.29.0-wmf.3",
 "alswikibooks": "php-1.29.0-wmf.3",
 "alswikiquote": "php-1.29.0-wmf.3",
 "alswiktionary": "php-1.29.0-wmf.3",
-"amwiki": "php-1.29.0-wmf.2",
+"amwiki": "php-1.29.0-wmf.3",
 "amwikiquote": "php-1.29.0-wmf.3",
 "amwiktionary": "php-1.29.0-wmf.3",
-"angwiki": "php-1.29.0-wmf.2",
+"angwiki": "php-1.29.0-wmf.3",
 "angwikibooks": "php-1.29.0-wmf.3",
 "angwikiquote": "php-1.29.0-wmf.3",
 "angwikisource": "php-1.29.0-wmf.3",
 "angwiktionary": "php-1.29.0-wmf.3",
-"anwiki": "php-1.29.0-wmf.2",
+"anwiki": "php-1.29.0-wmf.3",
 "anwiktionary": "php-1.29.0-wmf.3",
-"arbcom_dewiki": "php-1.29.0-wmf.2",
-"arbcom_enwiki": "php-1.29.0-wmf.2",
-"arbcom_fiwiki": "php-1.29.0-wmf.2",
-"arbcom_nlwiki": "php-1.29.0-wmf.2",
-"arcwiki": "php-1.29.0-wmf.2",
-"arwiki": "php-1.29.0-wmf.2",
+"arbcom_dewiki": "php-1.29.0-wmf.3",
+"arbcom_enwiki": "php-1.29.0-wmf.3",
+"arbcom_fiwiki": "php-1.29.0-wmf.3",
+"arbcom_nlwiki": "php-1.29.0-wmf.3",
+"arcwiki": "php-1.29.0-wmf.3",
+"arwiki": "php-1.29.0-wmf.3",
 "arwikibooks": "php-1.29.0-wmf.3",
 "arwikimedia": "php-1.29.0-wmf.3",
 "arwikinews": "php-1.29.0-wmf.3",
@@ -41,80 +41,80 @@
 "arwikisource": "php-1.29.0-wmf.3",
 "arwikiversity": "php-1.29.0-wmf.3",
 "arwiktionary": "php-1.29.0-wmf.3",
-"arzwiki": "php-1.29.0-wmf.2",
-"astwiki": "php-1.29.0-wmf.2",
+"arzwiki": "php-1.29.0-wmf.3",
+"astwiki": "php-1.29.0-wmf.3",
 "astwikibooks": "php-1.29.0-wmf.3",
 "astwikiquote": "php-1.29.0-wmf.3",
 "astwiktionary": "php-1.29.0-wmf.3",
-"aswiki": "php-1.29.0-wmf.2",
+"aswiki": "php-1.29.0-wmf.3",
 "aswikibooks": "php-1.29.0-wmf.3",
 "aswikisource": "php-1.29.0-wmf.3",
 "aswiktionary": "php-1.29.0-wmf.3",
 "auditcomwiki": "php-1.29.0-wmf.3",
-"avwiki": "php-1.29.0-wmf.2",
+"avwiki": "php-1.29.0-wmf.3",
 "avwiktionary": "php-1.29.0-wmf.3",
-"aywiki": "php-1.29.0-wmf.2",
+"aywiki": "php-1.29.0-wmf.3",
 "aywikibooks": "php-1.29.0-wmf.3",
 "aywiktionary": "php-1.29.0-wmf.3",
-"azbwiki": "php-1.29.0-wmf.2",
-"azwiki": "php-1.29.0-wmf.2",
+"azbwiki": "php-1.29.0-wmf.3",
+"azwiki": "php-1.29.0-wmf.3",
 "azwikibooks": "php-1.29.0-wmf.3",
 "azwikiquote": "php-1.29.0-wmf.3",
 "azwikisource": "php-1.29.0-wmf.3",
 "azwiktionary": "php-1.29.0-wmf.3",
-"barwiki": "php-1.29.0-wmf.2",
-"bat_smgwiki": "php-1.29.0-wmf.2",
-"bawiki": "php-1.29.0-wmf.2",
+"barwiki": "php-1.29.0-wmf.3",
+"bat_smgwiki": "php-1.29.0-wmf.3",
+"bawiki": "php-1.29.0-wmf.3",
 "bawikibooks": "php-1.29.0-wmf.3",
-"bclwiki": "php-1.29.0-wmf.2",
+"bclwiki": "php-1.29.0-wmf.3",
 "bdwikimedia": "php-1.29.0-wmf.3",
-"be_x_oldwiki": "php-1.29.0-wmf.2",
+"be_x_oldwiki": "php-1.29.0-wmf.3",
 "betawikiversity": "php-1.29.0-wmf.3",
-"bewiki": "php-1.29.0-wmf.2",
+"bewiki": "php-1.29.0-wmf.3",
 "bewikibooks": "php-1.29.0-wmf.3",
 "bewikimedia": "php-1.29.0-wmf.3",
 "bewikiquote": "php-1.29.0-wmf.3",
 "bewikisource": "php-1.29.0-wmf.3",
 "bewiktionary": "php-1.29.0-wmf.3",
-"bgwiki": "php-1.29.0-wmf.2",
+"bgwiki": "php-1.29.0-wmf.3",
 "bgwikibooks": "php-1.29.0-wmf.3",
 "bgwikinews": "php-1.29.0-wmf.3",
 "bgwikiquote": "php-1.29.0-wmf.3",
 "bgwikisource": "php-1.29.0-wmf.3",
 "bgwiktionary": "php-1.29.0-wmf.3",
-"bhwiki": "php-1.29.0-wmf.2",
+"bhwiki": 

[MediaWiki-commits] [Gerrit] operations/puppet[production]: Bump scap version to 3.3.1-1

2016-11-13 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Bump scap version to 3.3.1-1
..

Bump scap version to 3.3.1-1

Change-Id: I0f65bd55c0a80cc38a41792217425a2b752810e8
---
M modules/scap/manifests/init.pp
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/39/321339/1

diff --git a/modules/scap/manifests/init.pp b/modules/scap/manifests/init.pp
index 11b6847..6f4004a 100644
--- a/modules/scap/manifests/init.pp
+++ b/modules/scap/manifests/init.pp
@@ -12,7 +12,7 @@
 class scap (
 $deployment_server = 'deployment',
 $wmflabs_master = 'deployment-tin.eqiad.wmflabs',
-$version = '3.3.0-1',
+$version = '3.3.1-1',
 ) {
 package { 'scap':
 ensure => $version,

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

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

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


[MediaWiki-commits] [Gerrit] mediawiki/core[REL1_28]: Revert "EditPage: Show EditFilterMergedContent hook errors i...

2016-10-31 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Revert "EditPage: Show EditFilterMergedContent hook errors in 
an errorbox"
..

Revert "EditPage: Show EditFilterMergedContent hook errors in an errorbox"

This reverts commit a02a7ff8eab9d589d77c03d4b4c58fc4a05e65c8.

Bug: T149473
Change-Id: I35a650c6ec478542351824e8ae8a8d8354ffa50f
---
M includes/EditPage.php
1 file changed, 2 insertions(+), 22 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/83/318983/1

diff --git a/includes/EditPage.php b/includes/EditPage.php
index 770a74e..059af97 100644
--- a/includes/EditPage.php
+++ b/includes/EditPage.php
@@ -1641,7 +1641,7 @@
// being set. This is used by ConfirmEdit to 
display a captcha
// without any error message cruft.
} else {
-   $this->hookError = $this->formatStatusErrors( 
$status );
+   $this->hookError = $status->getWikiText();
}
// Use the existing $status->value if the hook set it
if ( !$status->value ) {
@@ -1651,33 +1651,13 @@
} elseif ( !$status->isOK() ) {
# ...or the hook could be expecting us to produce an 
error
// FIXME this sucks, we should just use the Status 
object throughout
-   $this->hookError = $this->formatStatusErrors( $status );
+   $this->hookError = $status->getWikiText();
$status->fatal( 'hookaborted' );
$status->value = self::AS_HOOK_ERROR_EXPECTED;
return false;
}
 
return true;
-   }
-
-   /**
-* Wrap status errors in an errorbox for increased visiblity
-*
-* @param Status $status
-* @return string
-*/
-   private function formatStatusErrors( Status $status ) {
-   $errmsg = $status->getHTML(
-   'edit-error-short',
-   'edit-error-long',
-   $this->context->getLanguage()
-   );
-   return <<
-{$errmsg}
-
-
-ERROR;
}
 
/**

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I35a650c6ec478542351824e8ae8a8d8354ffa50f
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: REL1_28
Gerrit-Owner: Thcipriani 
Gerrit-Reviewer: Paladox 

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


[MediaWiki-commits] [Gerrit] mediawiki/core[REL1_28]: Bump 1.28.0 to rc.0

2016-11-02 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Bump 1.28.0 to rc.0
..

Bump 1.28.0 to rc.0

Change-Id: I42527d89690e3437b450dda1ba45f0f3a1aa0bb4
---
M includes/DefaultSettings.php
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/61/319361/1

diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php
index 2ae33b2..1fc8da6 100644
--- a/includes/DefaultSettings.php
+++ b/includes/DefaultSettings.php
@@ -75,7 +75,7 @@
  * MediaWiki version number
  * @since 1.2
  */
-$wgVersion = '1.28.0-alpha';
+$wgVersion = '1.28.0-rc.0';
 
 /**
  * Name of the site. It must be changed in LocalSettings.php

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I42527d89690e3437b450dda1ba45f0f3a1aa0bb4
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: REL1_28
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Group0 to php-1.29.0-wmf.1

2016-11-01 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Group0 to php-1.29.0-wmf.1
..

Group0 to php-1.29.0-wmf.1

Change-Id: I2d3bf9849186ae3191c49fd05e8d6b4cc65f5986
---
M php
M wikiversions.json
2 files changed, 6 insertions(+), 6 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/24/319124/1

diff --git a/php b/php
index 16b3e20..a6fa075 12
--- a/php
+++ b/php
@@ -1 +1 @@
-php-1.28.0-wmf.23
\ No newline at end of file
+php-1.29.0-wmf.1
\ No newline at end of file
diff --git a/wikiversions.json b/wikiversions.json
index e41d163..eed19c3 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -478,7 +478,7 @@
 "maiwiki": "php-1.28.0-wmf.23",
 "map_bmswiki": "php-1.28.0-wmf.23",
 "mdfwiki": "php-1.28.0-wmf.23",
-"mediawikiwiki": "php-1.28.0-wmf.23",
+"mediawikiwiki": "php-1.29.0-wmf.1",
 "metawiki": "php-1.28.0-wmf.23",
 "mgwiki": "php-1.28.0-wmf.23",
 "mgwikibooks": "php-1.28.0-wmf.23",
@@ -747,9 +747,9 @@
 "tawiktionary": "php-1.28.0-wmf.23",
 "tcywiki": "php-1.28.0-wmf.23",
 "tenwiki": "php-1.28.0-wmf.23",
-"test2wiki": "php-1.28.0-wmf.23",
-"testwiki": "php-1.28.0-wmf.23",
-"testwikidatawiki": "php-1.28.0-wmf.23",
+"test2wiki": "php-1.29.0-wmf.1",
+"testwiki": "php-1.29.0-wmf.1",
+"testwikidatawiki": "php-1.29.0-wmf.1",
 "tetwiki": "php-1.28.0-wmf.23",
 "tewiki": "php-1.28.0-wmf.23",
 "tewikibooks": "php-1.28.0-wmf.23",
@@ -879,7 +879,7 @@
 "zawikiquote": "php-1.28.0-wmf.23",
 "zawiktionary": "php-1.28.0-wmf.23",
 "zeawiki": "php-1.28.0-wmf.23",
-"zerowiki": "php-1.28.0-wmf.23",
+"zerowiki": "php-1.29.0-wmf.1",
 "zh_classicalwiki": "php-1.28.0-wmf.23",
 "zh_min_nanwiki": "php-1.28.0-wmf.23",
 "zh_min_nanwikibooks": "php-1.28.0-wmf.23",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I2d3bf9849186ae3191c49fd05e8d6b4cc65f5986
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations/puppet[production]: Use contint1001.wikimedia.org as gearman host

2016-11-03 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Use contint1001.wikimedia.org as gearman host
..

Use contint1001.wikimedia.org as gearman host

Change-Id: I2539903701d59a190fa9cd622eb16b187d33790f
---
M modules/nodepool/templates/nodepool.yaml.erb
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/04/319604/1

diff --git a/modules/nodepool/templates/nodepool.yaml.erb 
b/modules/nodepool/templates/nodepool.yaml.erb
index e0f33d6..b80c394 100644
--- a/modules/nodepool/templates/nodepool.yaml.erb
+++ b/modules/nodepool/templates/nodepool.yaml.erb
@@ -30,7 +30,7 @@
 
 # Zuul / Gearman server
 gearman-servers:
-  - host: zuul.eqiad.wmnet
+  - host: contint1001.wikimedia.org
 port: 4730
 
 # Jenkins masters emits jobs start/completion over zeromq

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

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

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Group0 to 1.28.0-wmf.22

2016-10-11 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Group0 to 1.28.0-wmf.22
..

Group0 to 1.28.0-wmf.22

Change-Id: I4765de48da09c66797d8ec53e2345e96f69f3772
---
M php
M wikiversions.json
2 files changed, 6 insertions(+), 6 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/45/315345/1

diff --git a/php b/php
index 19deeda..8f27fe7 12
--- a/php
+++ b/php
@@ -1 +1 @@
-php-1.28.0-wmf.21
\ No newline at end of file
+php-1.28.0-wmf.22
\ No newline at end of file
diff --git a/wikiversions.json b/wikiversions.json
index 46b4aaa..0827d03 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -478,7 +478,7 @@
 "maiwiki": "php-1.28.0-wmf.21",
 "map_bmswiki": "php-1.28.0-wmf.21",
 "mdfwiki": "php-1.28.0-wmf.21",
-"mediawikiwiki": "php-1.28.0-wmf.21",
+"mediawikiwiki": "php-1.28.0-wmf.22",
 "metawiki": "php-1.28.0-wmf.21",
 "mgwiki": "php-1.28.0-wmf.21",
 "mgwikibooks": "php-1.28.0-wmf.21",
@@ -747,9 +747,9 @@
 "tawiktionary": "php-1.28.0-wmf.21",
 "tcywiki": "php-1.28.0-wmf.21",
 "tenwiki": "php-1.28.0-wmf.21",
-"test2wiki": "php-1.28.0-wmf.21",
-"testwiki": "php-1.28.0-wmf.21",
-"testwikidatawiki": "php-1.28.0-wmf.21",
+"test2wiki": "php-1.28.0-wmf.22",
+"testwiki": "php-1.28.0-wmf.22",
+"testwikidatawiki": "php-1.28.0-wmf.22",
 "tetwiki": "php-1.28.0-wmf.21",
 "tewiki": "php-1.28.0-wmf.21",
 "tewikibooks": "php-1.28.0-wmf.21",
@@ -879,7 +879,7 @@
 "zawikiquote": "php-1.28.0-wmf.21",
 "zawiktionary": "php-1.28.0-wmf.21",
 "zeawiki": "php-1.28.0-wmf.21",
-"zerowiki": "php-1.28.0-wmf.21",
+"zerowiki": "php-1.28.0-wmf.22",
 "zh_classicalwiki": "php-1.28.0-wmf.21",
 "zh_min_nanwiki": "php-1.28.0-wmf.21",
 "zh_min_nanwikibooks": "php-1.28.0-wmf.21",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I4765de48da09c66797d8ec53e2345e96f69f3772
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Revert "all wikis to 1.28.0-wmf.22"

2016-10-13 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Revert "all wikis to 1.28.0-wmf.22"
..

Revert "all wikis to 1.28.0-wmf.22"

This reverts commit 843914276c8e236091ca42434ccb2b262c223da5.

Change-Id: Ic3d122916770604a75fec091a8cdf2fa6fadde4e
---
M wikiversions.json
1 file changed, 299 insertions(+), 299 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/49/315749/1

diff --git a/wikiversions.json b/wikiversions.json
index 9860bc5..f6b6c64 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -1,39 +1,39 @@
 {
-"aawiki": "php-1.28.0-wmf.22",
+"aawiki": "php-1.28.0-wmf.21",
 "aawikibooks": "php-1.28.0-wmf.22",
 "aawiktionary": "php-1.28.0-wmf.22",
-"abwiki": "php-1.28.0-wmf.22",
+"abwiki": "php-1.28.0-wmf.21",
 "abwiktionary": "php-1.28.0-wmf.22",
-"acewiki": "php-1.28.0-wmf.22",
+"acewiki": "php-1.28.0-wmf.21",
 "advisorywiki": "php-1.28.0-wmf.22",
-"adywiki": "php-1.28.0-wmf.22",
-"afwiki": "php-1.28.0-wmf.22",
+"adywiki": "php-1.28.0-wmf.21",
+"afwiki": "php-1.28.0-wmf.21",
 "afwikibooks": "php-1.28.0-wmf.22",
 "afwikiquote": "php-1.28.0-wmf.22",
 "afwiktionary": "php-1.28.0-wmf.22",
-"akwiki": "php-1.28.0-wmf.22",
+"akwiki": "php-1.28.0-wmf.21",
 "akwikibooks": "php-1.28.0-wmf.22",
 "akwiktionary": "php-1.28.0-wmf.22",
-"alswiki": "php-1.28.0-wmf.22",
+"alswiki": "php-1.28.0-wmf.21",
 "alswikibooks": "php-1.28.0-wmf.22",
 "alswikiquote": "php-1.28.0-wmf.22",
 "alswiktionary": "php-1.28.0-wmf.22",
-"amwiki": "php-1.28.0-wmf.22",
+"amwiki": "php-1.28.0-wmf.21",
 "amwikiquote": "php-1.28.0-wmf.22",
 "amwiktionary": "php-1.28.0-wmf.22",
-"angwiki": "php-1.28.0-wmf.22",
+"angwiki": "php-1.28.0-wmf.21",
 "angwikibooks": "php-1.28.0-wmf.22",
 "angwikiquote": "php-1.28.0-wmf.22",
 "angwikisource": "php-1.28.0-wmf.22",
 "angwiktionary": "php-1.28.0-wmf.22",
-"anwiki": "php-1.28.0-wmf.22",
+"anwiki": "php-1.28.0-wmf.21",
 "anwiktionary": "php-1.28.0-wmf.22",
-"arbcom_dewiki": "php-1.28.0-wmf.22",
-"arbcom_enwiki": "php-1.28.0-wmf.22",
-"arbcom_fiwiki": "php-1.28.0-wmf.22",
-"arbcom_nlwiki": "php-1.28.0-wmf.22",
-"arcwiki": "php-1.28.0-wmf.22",
-"arwiki": "php-1.28.0-wmf.22",
+"arbcom_dewiki": "php-1.28.0-wmf.21",
+"arbcom_enwiki": "php-1.28.0-wmf.21",
+"arbcom_fiwiki": "php-1.28.0-wmf.21",
+"arbcom_nlwiki": "php-1.28.0-wmf.21",
+"arcwiki": "php-1.28.0-wmf.21",
+"arwiki": "php-1.28.0-wmf.21",
 "arwikibooks": "php-1.28.0-wmf.22",
 "arwikimedia": "php-1.28.0-wmf.22",
 "arwikinews": "php-1.28.0-wmf.22",
@@ -41,80 +41,80 @@
 "arwikisource": "php-1.28.0-wmf.22",
 "arwikiversity": "php-1.28.0-wmf.22",
 "arwiktionary": "php-1.28.0-wmf.22",
-"arzwiki": "php-1.28.0-wmf.22",
-"astwiki": "php-1.28.0-wmf.22",
+"arzwiki": "php-1.28.0-wmf.21",
+"astwiki": "php-1.28.0-wmf.21",
 "astwikibooks": "php-1.28.0-wmf.22",
 "astwikiquote": "php-1.28.0-wmf.22",
 "astwiktionary": "php-1.28.0-wmf.22",
-"aswiki": "php-1.28.0-wmf.22",
+"aswiki": "php-1.28.0-wmf.21",
 "aswikibooks": "php-1.28.0-wmf.22",
 "aswikisource": "php-1.28.0-wmf.22",
 "aswiktionary": "php-1.28.0-wmf.22",
 "auditcomwiki": "php-1.28.0-wmf.22",
-"avwiki": "php-1.28.0-wmf.22",
+"avwiki": "php-1.28.0-wmf.21",
 "avwiktionary": "php-1.28.0-wmf.22",
-"aywiki": "php-1.28.0-wmf.22",
+"aywiki": "php-1.28.0-wmf.21",
 "aywikibooks": "php-1.28.0-wmf.22",
 "aywiktionary": "php-1.28.0-wmf.22",
-"azbwiki": "php-1.28.0-wmf.22",
-"azwiki": "php-1.28.0-wmf.22",
+"azbwiki": "php-1.28.0-wmf.21",
+"azwiki": "php-1.28.0-wmf.21",
 "azwikibooks": "php-1.28.0-wmf.22",
 "azwikiquote": "php-1.28.0-wmf.22",
 "azwikisource": "php-1.28.0-wmf.22",
 "azwiktionary": "php-1.28.0-wmf.22",
-"barwiki": "php-1.28.0-wmf.22",
-"bat_smgwiki": "php-1.28.0-wmf.22",
-"bawiki": "php-1.28.0-wmf.22",
+"barwiki": "php-1.28.0-wmf.21",
+"bat_smgwiki": "php-1.28.0-wmf.21",
+"bawiki": "php-1.28.0-wmf.21",
 "bawikibooks": "php-1.28.0-wmf.22",
-"bclwiki": "php-1.28.0-wmf.22",
+"bclwiki": "php-1.28.0-wmf.21",
 "bdwikimedia": "php-1.28.0-wmf.22",
-"be_x_oldwiki": "php-1.28.0-wmf.22",
+"be_x_oldwiki": "php-1.28.0-wmf.21",
 "betawikiversity": "php-1.28.0-wmf.22",
-"bewiki": "php-1.28.0-wmf.22",
+"bewiki": "php-1.28.0-wmf.21",
 "bewikibooks": "php-1.28.0-wmf.22",
 "bewikimedia": "php-1.28.0-wmf.22",
 "bewikiquote": "php-1.28.0-wmf.22",
 "bewikisource": "php-1.28.0-wmf.22",
 "bewiktionary": "php-1.28.0-wmf.22",
-"bgwiki": "php-1.28.0-wmf.22",
+"bgwiki": "php-1.28.0-wmf.21",
 "bgwikibooks": "php-1.28.0-wmf.22",
 "bgwikinews": 

[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: all wikis to 1.28.0-wmf.22

2016-10-13 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: all wikis to 1.28.0-wmf.22
..

all wikis to 1.28.0-wmf.22

Change-Id: I243fc500cb335b65beda45f49646856c204fb2df
---
M wikiversions.json
1 file changed, 299 insertions(+), 299 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/47/315747/1

diff --git a/wikiversions.json b/wikiversions.json
index f6b6c64..9860bc5 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -1,39 +1,39 @@
 {
-"aawiki": "php-1.28.0-wmf.21",
+"aawiki": "php-1.28.0-wmf.22",
 "aawikibooks": "php-1.28.0-wmf.22",
 "aawiktionary": "php-1.28.0-wmf.22",
-"abwiki": "php-1.28.0-wmf.21",
+"abwiki": "php-1.28.0-wmf.22",
 "abwiktionary": "php-1.28.0-wmf.22",
-"acewiki": "php-1.28.0-wmf.21",
+"acewiki": "php-1.28.0-wmf.22",
 "advisorywiki": "php-1.28.0-wmf.22",
-"adywiki": "php-1.28.0-wmf.21",
-"afwiki": "php-1.28.0-wmf.21",
+"adywiki": "php-1.28.0-wmf.22",
+"afwiki": "php-1.28.0-wmf.22",
 "afwikibooks": "php-1.28.0-wmf.22",
 "afwikiquote": "php-1.28.0-wmf.22",
 "afwiktionary": "php-1.28.0-wmf.22",
-"akwiki": "php-1.28.0-wmf.21",
+"akwiki": "php-1.28.0-wmf.22",
 "akwikibooks": "php-1.28.0-wmf.22",
 "akwiktionary": "php-1.28.0-wmf.22",
-"alswiki": "php-1.28.0-wmf.21",
+"alswiki": "php-1.28.0-wmf.22",
 "alswikibooks": "php-1.28.0-wmf.22",
 "alswikiquote": "php-1.28.0-wmf.22",
 "alswiktionary": "php-1.28.0-wmf.22",
-"amwiki": "php-1.28.0-wmf.21",
+"amwiki": "php-1.28.0-wmf.22",
 "amwikiquote": "php-1.28.0-wmf.22",
 "amwiktionary": "php-1.28.0-wmf.22",
-"angwiki": "php-1.28.0-wmf.21",
+"angwiki": "php-1.28.0-wmf.22",
 "angwikibooks": "php-1.28.0-wmf.22",
 "angwikiquote": "php-1.28.0-wmf.22",
 "angwikisource": "php-1.28.0-wmf.22",
 "angwiktionary": "php-1.28.0-wmf.22",
-"anwiki": "php-1.28.0-wmf.21",
+"anwiki": "php-1.28.0-wmf.22",
 "anwiktionary": "php-1.28.0-wmf.22",
-"arbcom_dewiki": "php-1.28.0-wmf.21",
-"arbcom_enwiki": "php-1.28.0-wmf.21",
-"arbcom_fiwiki": "php-1.28.0-wmf.21",
-"arbcom_nlwiki": "php-1.28.0-wmf.21",
-"arcwiki": "php-1.28.0-wmf.21",
-"arwiki": "php-1.28.0-wmf.21",
+"arbcom_dewiki": "php-1.28.0-wmf.22",
+"arbcom_enwiki": "php-1.28.0-wmf.22",
+"arbcom_fiwiki": "php-1.28.0-wmf.22",
+"arbcom_nlwiki": "php-1.28.0-wmf.22",
+"arcwiki": "php-1.28.0-wmf.22",
+"arwiki": "php-1.28.0-wmf.22",
 "arwikibooks": "php-1.28.0-wmf.22",
 "arwikimedia": "php-1.28.0-wmf.22",
 "arwikinews": "php-1.28.0-wmf.22",
@@ -41,80 +41,80 @@
 "arwikisource": "php-1.28.0-wmf.22",
 "arwikiversity": "php-1.28.0-wmf.22",
 "arwiktionary": "php-1.28.0-wmf.22",
-"arzwiki": "php-1.28.0-wmf.21",
-"astwiki": "php-1.28.0-wmf.21",
+"arzwiki": "php-1.28.0-wmf.22",
+"astwiki": "php-1.28.0-wmf.22",
 "astwikibooks": "php-1.28.0-wmf.22",
 "astwikiquote": "php-1.28.0-wmf.22",
 "astwiktionary": "php-1.28.0-wmf.22",
-"aswiki": "php-1.28.0-wmf.21",
+"aswiki": "php-1.28.0-wmf.22",
 "aswikibooks": "php-1.28.0-wmf.22",
 "aswikisource": "php-1.28.0-wmf.22",
 "aswiktionary": "php-1.28.0-wmf.22",
 "auditcomwiki": "php-1.28.0-wmf.22",
-"avwiki": "php-1.28.0-wmf.21",
+"avwiki": "php-1.28.0-wmf.22",
 "avwiktionary": "php-1.28.0-wmf.22",
-"aywiki": "php-1.28.0-wmf.21",
+"aywiki": "php-1.28.0-wmf.22",
 "aywikibooks": "php-1.28.0-wmf.22",
 "aywiktionary": "php-1.28.0-wmf.22",
-"azbwiki": "php-1.28.0-wmf.21",
-"azwiki": "php-1.28.0-wmf.21",
+"azbwiki": "php-1.28.0-wmf.22",
+"azwiki": "php-1.28.0-wmf.22",
 "azwikibooks": "php-1.28.0-wmf.22",
 "azwikiquote": "php-1.28.0-wmf.22",
 "azwikisource": "php-1.28.0-wmf.22",
 "azwiktionary": "php-1.28.0-wmf.22",
-"barwiki": "php-1.28.0-wmf.21",
-"bat_smgwiki": "php-1.28.0-wmf.21",
-"bawiki": "php-1.28.0-wmf.21",
+"barwiki": "php-1.28.0-wmf.22",
+"bat_smgwiki": "php-1.28.0-wmf.22",
+"bawiki": "php-1.28.0-wmf.22",
 "bawikibooks": "php-1.28.0-wmf.22",
-"bclwiki": "php-1.28.0-wmf.21",
+"bclwiki": "php-1.28.0-wmf.22",
 "bdwikimedia": "php-1.28.0-wmf.22",
-"be_x_oldwiki": "php-1.28.0-wmf.21",
+"be_x_oldwiki": "php-1.28.0-wmf.22",
 "betawikiversity": "php-1.28.0-wmf.22",
-"bewiki": "php-1.28.0-wmf.21",
+"bewiki": "php-1.28.0-wmf.22",
 "bewikibooks": "php-1.28.0-wmf.22",
 "bewikimedia": "php-1.28.0-wmf.22",
 "bewikiquote": "php-1.28.0-wmf.22",
 "bewikisource": "php-1.28.0-wmf.22",
 "bewiktionary": "php-1.28.0-wmf.22",
-"bgwiki": "php-1.28.0-wmf.21",
+"bgwiki": "php-1.28.0-wmf.22",
 "bgwikibooks": "php-1.28.0-wmf.22",
 "bgwikinews": "php-1.28.0-wmf.22",
 "bgwikiquote": "php-1.28.0-wmf.22",
 "bgwikisource": 

[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Revert "Only set remote config if wiki isn't Zero"

2016-10-13 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review.

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

Change subject: Revert "Only set remote config if wiki isn't Zero"
..

Revert "Only set remote config if wiki isn't Zero"

This reverts commit cfa8aefa9b684e60513b65984d1ea121bbcc3a61.

Change-Id: I4c9a8332a6066261a2ebbaf9c7f12c85cef6a6cf
---
M wmf-config/mobile.php
1 file changed, 6 insertions(+), 8 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/71/315871/1

diff --git a/wmf-config/mobile.php b/wmf-config/mobile.php
index 39484d9..7a84ddd 100644
--- a/wmf-config/mobile.php
+++ b/wmf-config/mobile.php
@@ -34,14 +34,12 @@
require_once( "$IP/extensions/JsonConfig/JsonConfig.php" );
require_once( "$IP/extensions/ZeroBanner/ZeroBanner.php" );
 
-   if ( $wgDBname !== 'zerowiki' ) {
-   $wgJsonConfigs['JsonZeroConfig']['isLocal'] = false;
-   $wgJsonConfigs['JsonZeroConfig']['remote'] = [
-   'url' => 'https://zero.wikimedia.org/w/api.php',
-   'username' => $wmgZeroPortalApiUserName,
-   'password' => $wmgZeroPortalApiPassword,
-   ];
-   }
+   $wgJsonConfigs['JsonZeroConfig']['isLocal'] = false;
+   $wgJsonConfigs['JsonZeroConfig']['remote'] = [
+   'url' => 'https://zero.wikimedia.org/w/api.php',
+   'username' => $wmgZeroPortalApiUserName,
+   'password' => $wmgZeroPortalApiPassword,
+   ];
 
// @TODO: which group(s) on all wikies should Zero allow to 
flush cache?
$wgGroupPermissions['sysop']['jsonconfig-flush'] = true;

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I4c9a8332a6066261a2ebbaf9c7f12c85cef6a6cf
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] mediawiki/core[wmf/1.29.0-wmf.5]: Bump PageImages submodule

2016-12-08 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/325998 )

Change subject: Bump PageImages submodule
..

Bump PageImages submodule

Change-Id: Icde98653f60b2110e59d2952f01e1998fed8b62c
---
M extensions/PageImages
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/98/325998/1

diff --git a/extensions/PageImages b/extensions/PageImages
index 3be4f12..0590179 16
--- a/extensions/PageImages
+++ b/extensions/PageImages
@@ -1 +1 @@
-Subproject commit 3be4f123b1bc0b61a2752d0bae69b2f2562d2d92
+Subproject commit 0590179def04c636a42275af436c13b64bdb3ac6

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Icde98653f60b2110e59d2952f01e1998fed8b62c
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: wmf/1.29.0-wmf.5
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] mediawiki/core[wmf/1.29.0-wmf.4]: Bump PagesImages

2016-12-08 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/325996 )

Change subject: Bump PagesImages
..

Bump PagesImages

Change-Id: Ifee2b5b28cbf20ecebbf2584d0a6e8f17d55d6c0
---
M extensions/PageImages
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/96/325996/1

diff --git a/extensions/PageImages b/extensions/PageImages
index 381478d..02b3c95 16
--- a/extensions/PageImages
+++ b/extensions/PageImages
@@ -1 +1 @@
-Subproject commit 381478dbdaed5f8a5bde29ebbadb950a667b3de6
+Subproject commit 02b3c956db97404a388827f726f845b66d233992

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ifee2b5b28cbf20ecebbf2584d0a6e8f17d55d6c0
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: wmf/1.29.0-wmf.4
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations/puppet[production]: Bump scap version to 3.4.2-1

2016-12-14 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/327256 )

Change subject: Bump scap version to 3.4.2-1
..

Bump scap version to 3.4.2-1

Bug: T127762
Change-Id: I23fedfcc637f9063346e7d8cf82c4a4cb384f102
---
M modules/scap/manifests/init.pp
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/56/327256/1

diff --git a/modules/scap/manifests/init.pp b/modules/scap/manifests/init.pp
index e12cc3f..38c5972 100644
--- a/modules/scap/manifests/init.pp
+++ b/modules/scap/manifests/init.pp
@@ -12,7 +12,7 @@
 class scap (
 $deployment_server = 'deployment',
 $wmflabs_master = 'deployment-tin.eqiad.wmflabs',
-$version = '3.4.1-1',
+$version = '3.4.2-1',
 ) {
 package { 'scap':
 ensure => $version,

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

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

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


[MediaWiki-commits] [Gerrit] mediawiki/core[wmf/1.29.0-wmf.5]: Bump JsonConfig submodule

2016-12-14 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/327276 )

Change subject: Bump JsonConfig submodule
..

Bump JsonConfig submodule

Change-Id: Ife2a0f588893580f1c7a5335ca40195aceb13b51
---
M extensions/JsonConfig
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/76/327276/1

diff --git a/extensions/JsonConfig b/extensions/JsonConfig
index e3ef742..ee8db26 16
--- a/extensions/JsonConfig
+++ b/extensions/JsonConfig
@@ -1 +1 @@
-Subproject commit e3ef742aa22947df631a6d14fed5f530c079721f
+Subproject commit ee8db26241576c64ed89da41daeb9d69fe0a0b40

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ife2a0f588893580f1c7a5335ca40195aceb13b51
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: wmf/1.29.0-wmf.5
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] mediawiki/core[wmf/1.29.0-wmf.5]: Bump ElectronPdfService submodule

2016-12-12 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/326520 )

Change subject: Bump ElectronPdfService submodule
..

Bump ElectronPdfService submodule

Change-Id: I8d0093533a8048ed35b8cc44a5c9a95fbaa814a6
---
M extensions/ElectronPdfService
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/20/326520/1

diff --git a/extensions/ElectronPdfService b/extensions/ElectronPdfService
index b0b7520..867d284 16
--- a/extensions/ElectronPdfService
+++ b/extensions/ElectronPdfService
@@ -1 +1 @@
-Subproject commit b0b75203f394503b23263f3d8cdfb4d8a8a7e383
+Subproject commit 867d28426012d3300349dbc14c144644141876f7

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I8d0093533a8048ed35b8cc44a5c9a95fbaa814a6
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: wmf/1.29.0-wmf.5
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: all wikis to 1.29.0-wmf.7

2017-01-05 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/330730 )

Change subject: all wikis to 1.29.0-wmf.7
..

all wikis to 1.29.0-wmf.7

Change-Id: Ibe8d91de4a8bb80d52da00f686c667037beee6d2
---
M wikiversions.json
1 file changed, 300 insertions(+), 300 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/30/330730/1

diff --git a/wikiversions.json b/wikiversions.json
index 43234e2..cb1d034 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -1,40 +1,40 @@
 {
-"aawiki": "php-1.29.0-wmf.6",
+"aawiki": "php-1.29.0-wmf.7",
 "aawikibooks": "php-1.29.0-wmf.7",
 "aawiktionary": "php-1.29.0-wmf.7",
-"abwiki": "php-1.29.0-wmf.6",
+"abwiki": "php-1.29.0-wmf.7",
 "abwiktionary": "php-1.29.0-wmf.7",
-"acewiki": "php-1.29.0-wmf.6",
+"acewiki": "php-1.29.0-wmf.7",
 "advisorywiki": "php-1.29.0-wmf.7",
-"adywiki": "php-1.29.0-wmf.6",
-"afwiki": "php-1.29.0-wmf.6",
+"adywiki": "php-1.29.0-wmf.7",
+"afwiki": "php-1.29.0-wmf.7",
 "afwikibooks": "php-1.29.0-wmf.7",
 "afwikiquote": "php-1.29.0-wmf.7",
 "afwiktionary": "php-1.29.0-wmf.7",
-"akwiki": "php-1.29.0-wmf.6",
+"akwiki": "php-1.29.0-wmf.7",
 "akwikibooks": "php-1.29.0-wmf.7",
 "akwiktionary": "php-1.29.0-wmf.7",
-"alswiki": "php-1.29.0-wmf.6",
+"alswiki": "php-1.29.0-wmf.7",
 "alswikibooks": "php-1.29.0-wmf.7",
 "alswikiquote": "php-1.29.0-wmf.7",
 "alswiktionary": "php-1.29.0-wmf.7",
-"amwiki": "php-1.29.0-wmf.6",
+"amwiki": "php-1.29.0-wmf.7",
 "amwikiquote": "php-1.29.0-wmf.7",
 "amwiktionary": "php-1.29.0-wmf.7",
-"angwiki": "php-1.29.0-wmf.6",
+"angwiki": "php-1.29.0-wmf.7",
 "angwikibooks": "php-1.29.0-wmf.7",
 "angwikiquote": "php-1.29.0-wmf.7",
 "angwikisource": "php-1.29.0-wmf.7",
 "angwiktionary": "php-1.29.0-wmf.7",
-"anwiki": "php-1.29.0-wmf.6",
+"anwiki": "php-1.29.0-wmf.7",
 "anwiktionary": "php-1.29.0-wmf.7",
-"arbcom_cswiki": "php-1.29.0-wmf.6",
-"arbcom_dewiki": "php-1.29.0-wmf.6",
-"arbcom_enwiki": "php-1.29.0-wmf.6",
-"arbcom_fiwiki": "php-1.29.0-wmf.6",
-"arbcom_nlwiki": "php-1.29.0-wmf.6",
-"arcwiki": "php-1.29.0-wmf.6",
-"arwiki": "php-1.29.0-wmf.6",
+"arbcom_cswiki": "php-1.29.0-wmf.7",
+"arbcom_dewiki": "php-1.29.0-wmf.7",
+"arbcom_enwiki": "php-1.29.0-wmf.7",
+"arbcom_fiwiki": "php-1.29.0-wmf.7",
+"arbcom_nlwiki": "php-1.29.0-wmf.7",
+"arcwiki": "php-1.29.0-wmf.7",
+"arwiki": "php-1.29.0-wmf.7",
 "arwikibooks": "php-1.29.0-wmf.7",
 "arwikimedia": "php-1.29.0-wmf.7",
 "arwikinews": "php-1.29.0-wmf.7",
@@ -42,80 +42,80 @@
 "arwikisource": "php-1.29.0-wmf.7",
 "arwikiversity": "php-1.29.0-wmf.7",
 "arwiktionary": "php-1.29.0-wmf.7",
-"arzwiki": "php-1.29.0-wmf.6",
-"astwiki": "php-1.29.0-wmf.6",
+"arzwiki": "php-1.29.0-wmf.7",
+"astwiki": "php-1.29.0-wmf.7",
 "astwikibooks": "php-1.29.0-wmf.7",
 "astwikiquote": "php-1.29.0-wmf.7",
 "astwiktionary": "php-1.29.0-wmf.7",
-"aswiki": "php-1.29.0-wmf.6",
+"aswiki": "php-1.29.0-wmf.7",
 "aswikibooks": "php-1.29.0-wmf.7",
 "aswikisource": "php-1.29.0-wmf.7",
 "aswiktionary": "php-1.29.0-wmf.7",
 "auditcomwiki": "php-1.29.0-wmf.7",
-"avwiki": "php-1.29.0-wmf.6",
+"avwiki": "php-1.29.0-wmf.7",
 "avwiktionary": "php-1.29.0-wmf.7",
-"aywiki": "php-1.29.0-wmf.6",
+"aywiki": "php-1.29.0-wmf.7",
 "aywikibooks": "php-1.29.0-wmf.7",
 "aywiktionary": "php-1.29.0-wmf.7",
-"azbwiki": "php-1.29.0-wmf.6",
-"azwiki": "php-1.29.0-wmf.6",
+"azbwiki": "php-1.29.0-wmf.7",
+"azwiki": "php-1.29.0-wmf.7",
 "azwikibooks": "php-1.29.0-wmf.7",
 "azwikiquote": "php-1.29.0-wmf.7",
 "azwikisource": "php-1.29.0-wmf.7",
 "azwiktionary": "php-1.29.0-wmf.7",
-"barwiki": "php-1.29.0-wmf.6",
-"bat_smgwiki": "php-1.29.0-wmf.6",
-"bawiki": "php-1.29.0-wmf.6",
+"barwiki": "php-1.29.0-wmf.7",
+"bat_smgwiki": "php-1.29.0-wmf.7",
+"bawiki": "php-1.29.0-wmf.7",
 "bawikibooks": "php-1.29.0-wmf.7",
-"bclwiki": "php-1.29.0-wmf.6",
+"bclwiki": "php-1.29.0-wmf.7",
 "bdwikimedia": "php-1.29.0-wmf.7",
-"be_x_oldwiki": "php-1.29.0-wmf.6",
+"be_x_oldwiki": "php-1.29.0-wmf.7",
 "betawikiversity": "php-1.29.0-wmf.7",
-"bewiki": "php-1.29.0-wmf.6",
+"bewiki": "php-1.29.0-wmf.7",
 "bewikibooks": "php-1.29.0-wmf.7",
 "bewikimedia": "php-1.29.0-wmf.7",
 "bewikiquote": "php-1.29.0-wmf.7",
 "bewikisource": "php-1.29.0-wmf.7",
 "bewiktionary": "php-1.29.0-wmf.7",
-"bgwiki": "php-1.29.0-wmf.6",
+"bgwiki": "php-1.29.0-wmf.7",
 "bgwikibooks": "php-1.29.0-wmf.7",
 "bgwikinews": "php-1.29.0-wmf.7",
 "bgwikiquote": "php-1.29.0-wmf.7",
 "bgwikisource": "php-1.29.0-wmf.7",
 

[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Revert "Revert "group1 wikis to 1.29.0-wmf.7""

2017-01-05 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/330715 )

Change subject: Revert "Revert "group1 wikis to 1.29.0-wmf.7""
..

Revert "Revert "group1 wikis to 1.29.0-wmf.7""

This reverts commit 199286d113a9f63560a279922c26b794bcc53a16.

Change-Id: Ie6fae39d82920f6246839267cd509f26812fc995
---
M wikiversions.json
1 file changed, 597 insertions(+), 597 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/15/330715/1

diff --git a/wikiversions.json b/wikiversions.json
index 5240747..43234e2 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -1,33 +1,33 @@
 {
 "aawiki": "php-1.29.0-wmf.6",
-"aawikibooks": "php-1.29.0-wmf.6",
-"aawiktionary": "php-1.29.0-wmf.6",
+"aawikibooks": "php-1.29.0-wmf.7",
+"aawiktionary": "php-1.29.0-wmf.7",
 "abwiki": "php-1.29.0-wmf.6",
-"abwiktionary": "php-1.29.0-wmf.6",
+"abwiktionary": "php-1.29.0-wmf.7",
 "acewiki": "php-1.29.0-wmf.6",
-"advisorywiki": "php-1.29.0-wmf.6",
+"advisorywiki": "php-1.29.0-wmf.7",
 "adywiki": "php-1.29.0-wmf.6",
 "afwiki": "php-1.29.0-wmf.6",
-"afwikibooks": "php-1.29.0-wmf.6",
-"afwikiquote": "php-1.29.0-wmf.6",
-"afwiktionary": "php-1.29.0-wmf.6",
+"afwikibooks": "php-1.29.0-wmf.7",
+"afwikiquote": "php-1.29.0-wmf.7",
+"afwiktionary": "php-1.29.0-wmf.7",
 "akwiki": "php-1.29.0-wmf.6",
-"akwikibooks": "php-1.29.0-wmf.6",
-"akwiktionary": "php-1.29.0-wmf.6",
+"akwikibooks": "php-1.29.0-wmf.7",
+"akwiktionary": "php-1.29.0-wmf.7",
 "alswiki": "php-1.29.0-wmf.6",
-"alswikibooks": "php-1.29.0-wmf.6",
-"alswikiquote": "php-1.29.0-wmf.6",
-"alswiktionary": "php-1.29.0-wmf.6",
+"alswikibooks": "php-1.29.0-wmf.7",
+"alswikiquote": "php-1.29.0-wmf.7",
+"alswiktionary": "php-1.29.0-wmf.7",
 "amwiki": "php-1.29.0-wmf.6",
-"amwikiquote": "php-1.29.0-wmf.6",
-"amwiktionary": "php-1.29.0-wmf.6",
+"amwikiquote": "php-1.29.0-wmf.7",
+"amwiktionary": "php-1.29.0-wmf.7",
 "angwiki": "php-1.29.0-wmf.6",
-"angwikibooks": "php-1.29.0-wmf.6",
-"angwikiquote": "php-1.29.0-wmf.6",
-"angwikisource": "php-1.29.0-wmf.6",
-"angwiktionary": "php-1.29.0-wmf.6",
+"angwikibooks": "php-1.29.0-wmf.7",
+"angwikiquote": "php-1.29.0-wmf.7",
+"angwikisource": "php-1.29.0-wmf.7",
+"angwiktionary": "php-1.29.0-wmf.7",
 "anwiki": "php-1.29.0-wmf.6",
-"anwiktionary": "php-1.29.0-wmf.6",
+"anwiktionary": "php-1.29.0-wmf.7",
 "arbcom_cswiki": "php-1.29.0-wmf.6",
 "arbcom_dewiki": "php-1.29.0-wmf.6",
 "arbcom_enwiki": "php-1.29.0-wmf.6",
@@ -35,720 +35,720 @@
 "arbcom_nlwiki": "php-1.29.0-wmf.6",
 "arcwiki": "php-1.29.0-wmf.6",
 "arwiki": "php-1.29.0-wmf.6",
-"arwikibooks": "php-1.29.0-wmf.6",
-"arwikimedia": "php-1.29.0-wmf.6",
-"arwikinews": "php-1.29.0-wmf.6",
-"arwikiquote": "php-1.29.0-wmf.6",
-"arwikisource": "php-1.29.0-wmf.6",
-"arwikiversity": "php-1.29.0-wmf.6",
-"arwiktionary": "php-1.29.0-wmf.6",
+"arwikibooks": "php-1.29.0-wmf.7",
+"arwikimedia": "php-1.29.0-wmf.7",
+"arwikinews": "php-1.29.0-wmf.7",
+"arwikiquote": "php-1.29.0-wmf.7",
+"arwikisource": "php-1.29.0-wmf.7",
+"arwikiversity": "php-1.29.0-wmf.7",
+"arwiktionary": "php-1.29.0-wmf.7",
 "arzwiki": "php-1.29.0-wmf.6",
 "astwiki": "php-1.29.0-wmf.6",
-"astwikibooks": "php-1.29.0-wmf.6",
-"astwikiquote": "php-1.29.0-wmf.6",
-"astwiktionary": "php-1.29.0-wmf.6",
+"astwikibooks": "php-1.29.0-wmf.7",
+"astwikiquote": "php-1.29.0-wmf.7",
+"astwiktionary": "php-1.29.0-wmf.7",
 "aswiki": "php-1.29.0-wmf.6",
-"aswikibooks": "php-1.29.0-wmf.6",
-"aswikisource": "php-1.29.0-wmf.6",
-"aswiktionary": "php-1.29.0-wmf.6",
-"auditcomwiki": "php-1.29.0-wmf.6",
+"aswikibooks": "php-1.29.0-wmf.7",
+"aswikisource": "php-1.29.0-wmf.7",
+"aswiktionary": "php-1.29.0-wmf.7",
+"auditcomwiki": "php-1.29.0-wmf.7",
 "avwiki": "php-1.29.0-wmf.6",
-"avwiktionary": "php-1.29.0-wmf.6",
+"avwiktionary": "php-1.29.0-wmf.7",
 "aywiki": "php-1.29.0-wmf.6",
-"aywikibooks": "php-1.29.0-wmf.6",
-"aywiktionary": "php-1.29.0-wmf.6",
+"aywikibooks": "php-1.29.0-wmf.7",
+"aywiktionary": "php-1.29.0-wmf.7",
 "azbwiki": "php-1.29.0-wmf.6",
 "azwiki": "php-1.29.0-wmf.6",
-"azwikibooks": "php-1.29.0-wmf.6",
-"azwikiquote": "php-1.29.0-wmf.6",
-"azwikisource": "php-1.29.0-wmf.6",
-"azwiktionary": "php-1.29.0-wmf.6",
+"azwikibooks": "php-1.29.0-wmf.7",
+"azwikiquote": "php-1.29.0-wmf.7",
+"azwikisource": "php-1.29.0-wmf.7",
+"azwiktionary": "php-1.29.0-wmf.7",
 "barwiki": "php-1.29.0-wmf.6",
 "bat_smgwiki": "php-1.29.0-wmf.6",
 "bawiki": "php-1.29.0-wmf.6",
-"bawikibooks": "php-1.29.0-wmf.6",
+   

[MediaWiki-commits] [Gerrit] mediawiki/core[wmf/1.29.0-wmf.7]: Revert "Protect language converter markup in the preprocessor."

2017-01-03 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/330323 )

Change subject: Revert "Protect language converter markup in the preprocessor."
..

Revert "Protect language converter markup in the preprocessor."

This effectively reverts commit 28774022769d2273be16c6c6e1cca710a1fd97ef in
order to unblock the deploy train.  The underlying behavior might not be
incorrect, but it was unexpected.

Bug: T153761
Change-Id: Ifc9c7cf3482dd5d222ff4da24a6d4cc401e9d965
---
M includes/parser/Preprocessor_DOM.php
M includes/parser/Preprocessor_Hash.php
M tests/parser/parserTests.txt
3 files changed, 6 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/23/330323/1

diff --git a/includes/parser/Preprocessor_DOM.php 
b/includes/parser/Preprocessor_DOM.php
index 950d66d..661318b 100644
--- a/includes/parser/Preprocessor_DOM.php
+++ b/includes/parser/Preprocessor_DOM.php
@@ -223,7 +223,8 @@
 
$searchBase = "[{<\n"; # }
if ( !$wgDisableLangConversion ) {
-   $searchBase .= '-';
+   // FIXME: disabled due to T153761
+   // $searchBase .= '-';
}
 
// For fast reverse searches
diff --git a/includes/parser/Preprocessor_Hash.php 
b/includes/parser/Preprocessor_Hash.php
index 1317e60..2666c93 100644
--- a/includes/parser/Preprocessor_Hash.php
+++ b/includes/parser/Preprocessor_Hash.php
@@ -155,7 +155,8 @@
 
$searchBase = "[{<\n";
if ( !$wgDisableLangConversion ) {
-   $searchBase .= '-';
+   // FIXME: disabled due to T153761
+   // $searchBase .= '-';
}
 
// For fast reverse searches
diff --git a/tests/parser/parserTests.txt b/tests/parser/parserTests.txt
index b6f2830..f6b6bce 100644
--- a/tests/parser/parserTests.txt
+++ b/tests/parser/parserTests.txt
@@ -20633,10 +20633,12 @@
 
 !! end
 
+# FIXME: This test is currently broken in the PHP parser T153761
 !! test
 T146304: Don't break template parsing if language converter markup is in the 
parameter.
 !! options
 language=sr variant=sr-ec
+disabled
 !! wikitext
 {{echo|-{R|foo}-}}
 !! html/php

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ifc9c7cf3482dd5d222ff4da24a6d4cc401e9d965
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: wmf/1.29.0-wmf.7
Gerrit-Owner: Thcipriani 
Gerrit-Reviewer: C. Scott Ananian 

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Group0 to 1.29.0-wmf.7

2017-01-03 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/330331 )

Change subject: Group0 to 1.29.0-wmf.7
..

Group0 to 1.29.0-wmf.7

Change-Id: I9a6465deb17c428b02ca8e85ebd011fb81bd9fcd
---
M php
M wikiversions.json
2 files changed, 6 insertions(+), 6 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/31/330331/1

diff --git a/php b/php
index be08918..a76b8e9 12
--- a/php
+++ b/php
@@ -1 +1 @@
-php-1.29.0-wmf.6
\ No newline at end of file
+php-1.29.0-wmf.7
\ No newline at end of file
diff --git a/wikiversions.json b/wikiversions.json
index f8badaa..5240747 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -481,7 +481,7 @@
 "maiwiki": "php-1.29.0-wmf.6",
 "map_bmswiki": "php-1.29.0-wmf.6",
 "mdfwiki": "php-1.29.0-wmf.6",
-"mediawikiwiki": "php-1.29.0-wmf.6",
+"mediawikiwiki": "php-1.29.0-wmf.7",
 "metawiki": "php-1.29.0-wmf.6",
 "mgwiki": "php-1.29.0-wmf.6",
 "mgwikibooks": "php-1.29.0-wmf.6",
@@ -751,9 +751,9 @@
 "tawiktionary": "php-1.29.0-wmf.6",
 "tcywiki": "php-1.29.0-wmf.6",
 "tenwiki": "php-1.29.0-wmf.6",
-"test2wiki": "php-1.29.0-wmf.6",
-"testwiki": "php-1.29.0-wmf.6",
-"testwikidatawiki": "php-1.29.0-wmf.6",
+"test2wiki": "php-1.29.0-wmf.7",
+"testwiki": "php-1.29.0-wmf.7",
+"testwikidatawiki": "php-1.29.0-wmf.7",
 "tetwiki": "php-1.29.0-wmf.6",
 "tewiki": "php-1.29.0-wmf.6",
 "tewikibooks": "php-1.29.0-wmf.6",
@@ -883,7 +883,7 @@
 "zawikiquote": "php-1.29.0-wmf.6",
 "zawiktionary": "php-1.29.0-wmf.6",
 "zeawiki": "php-1.29.0-wmf.6",
-"zerowiki": "php-1.29.0-wmf.6",
+"zerowiki": "php-1.29.0-wmf.7",
 "zh_classicalwiki": "php-1.29.0-wmf.6",
 "zh_min_nanwiki": "php-1.29.0-wmf.6",
 "zh_min_nanwikibooks": "php-1.29.0-wmf.6",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9a6465deb17c428b02ca8e85ebd011fb81bd9fcd
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] mediawiki/core[wmf/1.29.0-wmf.7]: Point SemanticForms to 3.7 tag not branch

2017-01-04 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/330589 )

Change subject: Point SemanticForms to 3.7 tag not branch
..

Point SemanticForms to 3.7 tag not branch

Bug: T154618

Change-Id: I2d58eb23b44693e7dc8f82b53e051beb4f375958
---
M .gitmodules
M extensions/SemanticForms
2 files changed, 1 insertion(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/89/330589/1

diff --git a/.gitmodules b/.gitmodules
index 8dc3f0e..5ec7564 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -9,7 +9,6 @@
 [submodule "extensions/SemanticForms"]
path = extensions/SemanticForms
url = https://gerrit.wikimedia.org/r/mediawiki/extensions/SemanticForms
-   branch = 3.7
 [submodule "extensions/SemanticMediaWiki"]
path = extensions/SemanticMediaWiki
url = 
https://gerrit.wikimedia.org/r/mediawiki/extensions/SemanticMediaWiki
diff --git a/extensions/SemanticForms b/extensions/SemanticForms
index ae7b01c..7e9e627 16
--- a/extensions/SemanticForms
+++ b/extensions/SemanticForms
@@ -1 +1 @@
-Subproject commit ae7b01c605068ef6bd8d7f31ba7080f72551e6e4
+Subproject commit 7e9e627853dea94d6b1344383513927fd037903b

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I2d58eb23b44693e7dc8f82b53e051beb4f375958
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: wmf/1.29.0-wmf.7
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] mediawiki/core[wmf/1.29.0-wmf.7]: Change Wikidata target branch

2017-01-04 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/330590 )

Change subject: Change Wikidata target branch
..

Change Wikidata target branch

Bug: T154609
Change-Id: Ia2e87c8f4f0e66da1c41b79056d92622c60bd7df
---
M .gitmodules
M extensions/Wikidata
2 files changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/90/330590/1

diff --git a/.gitmodules b/.gitmodules
index 8dc3f0e..e612be6 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -5,7 +5,7 @@
 [submodule "extensions/Wikidata"]
path = extensions/Wikidata
url = https://gerrit.wikimedia.org/r/mediawiki/extensions/Wikidata
-   branch = wmf/1.29.0-wmf.5
+   branch = wmf/1.29.0-wmf.5.1
 [submodule "extensions/SemanticForms"]
path = extensions/SemanticForms
url = https://gerrit.wikimedia.org/r/mediawiki/extensions/SemanticForms
diff --git a/extensions/Wikidata b/extensions/Wikidata
index 3840155..1f05fce 16
--- a/extensions/Wikidata
+++ b/extensions/Wikidata
@@ -1 +1 @@
-Subproject commit 3840155296b89fec10823254f7fcea75f70db184
+Subproject commit 1f05fcedc37e7425c39f06a14e7ae0b835207768

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia2e87c8f4f0e66da1c41b79056d92622c60bd7df
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: wmf/1.29.0-wmf.7
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: group1 wikis to 1.29.0-wmf.7

2017-01-04 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/330459 )

Change subject: group1 wikis to 1.29.0-wmf.7
..

group1 wikis to 1.29.0-wmf.7

Change-Id: Id8776f399283b0ea9973f4eabd6cadd842e4a5a2
---
M wikiversions.json
1 file changed, 597 insertions(+), 597 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/59/330459/1

diff --git a/wikiversions.json b/wikiversions.json
index 5240747..43234e2 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -1,33 +1,33 @@
 {
 "aawiki": "php-1.29.0-wmf.6",
-"aawikibooks": "php-1.29.0-wmf.6",
-"aawiktionary": "php-1.29.0-wmf.6",
+"aawikibooks": "php-1.29.0-wmf.7",
+"aawiktionary": "php-1.29.0-wmf.7",
 "abwiki": "php-1.29.0-wmf.6",
-"abwiktionary": "php-1.29.0-wmf.6",
+"abwiktionary": "php-1.29.0-wmf.7",
 "acewiki": "php-1.29.0-wmf.6",
-"advisorywiki": "php-1.29.0-wmf.6",
+"advisorywiki": "php-1.29.0-wmf.7",
 "adywiki": "php-1.29.0-wmf.6",
 "afwiki": "php-1.29.0-wmf.6",
-"afwikibooks": "php-1.29.0-wmf.6",
-"afwikiquote": "php-1.29.0-wmf.6",
-"afwiktionary": "php-1.29.0-wmf.6",
+"afwikibooks": "php-1.29.0-wmf.7",
+"afwikiquote": "php-1.29.0-wmf.7",
+"afwiktionary": "php-1.29.0-wmf.7",
 "akwiki": "php-1.29.0-wmf.6",
-"akwikibooks": "php-1.29.0-wmf.6",
-"akwiktionary": "php-1.29.0-wmf.6",
+"akwikibooks": "php-1.29.0-wmf.7",
+"akwiktionary": "php-1.29.0-wmf.7",
 "alswiki": "php-1.29.0-wmf.6",
-"alswikibooks": "php-1.29.0-wmf.6",
-"alswikiquote": "php-1.29.0-wmf.6",
-"alswiktionary": "php-1.29.0-wmf.6",
+"alswikibooks": "php-1.29.0-wmf.7",
+"alswikiquote": "php-1.29.0-wmf.7",
+"alswiktionary": "php-1.29.0-wmf.7",
 "amwiki": "php-1.29.0-wmf.6",
-"amwikiquote": "php-1.29.0-wmf.6",
-"amwiktionary": "php-1.29.0-wmf.6",
+"amwikiquote": "php-1.29.0-wmf.7",
+"amwiktionary": "php-1.29.0-wmf.7",
 "angwiki": "php-1.29.0-wmf.6",
-"angwikibooks": "php-1.29.0-wmf.6",
-"angwikiquote": "php-1.29.0-wmf.6",
-"angwikisource": "php-1.29.0-wmf.6",
-"angwiktionary": "php-1.29.0-wmf.6",
+"angwikibooks": "php-1.29.0-wmf.7",
+"angwikiquote": "php-1.29.0-wmf.7",
+"angwikisource": "php-1.29.0-wmf.7",
+"angwiktionary": "php-1.29.0-wmf.7",
 "anwiki": "php-1.29.0-wmf.6",
-"anwiktionary": "php-1.29.0-wmf.6",
+"anwiktionary": "php-1.29.0-wmf.7",
 "arbcom_cswiki": "php-1.29.0-wmf.6",
 "arbcom_dewiki": "php-1.29.0-wmf.6",
 "arbcom_enwiki": "php-1.29.0-wmf.6",
@@ -35,720 +35,720 @@
 "arbcom_nlwiki": "php-1.29.0-wmf.6",
 "arcwiki": "php-1.29.0-wmf.6",
 "arwiki": "php-1.29.0-wmf.6",
-"arwikibooks": "php-1.29.0-wmf.6",
-"arwikimedia": "php-1.29.0-wmf.6",
-"arwikinews": "php-1.29.0-wmf.6",
-"arwikiquote": "php-1.29.0-wmf.6",
-"arwikisource": "php-1.29.0-wmf.6",
-"arwikiversity": "php-1.29.0-wmf.6",
-"arwiktionary": "php-1.29.0-wmf.6",
+"arwikibooks": "php-1.29.0-wmf.7",
+"arwikimedia": "php-1.29.0-wmf.7",
+"arwikinews": "php-1.29.0-wmf.7",
+"arwikiquote": "php-1.29.0-wmf.7",
+"arwikisource": "php-1.29.0-wmf.7",
+"arwikiversity": "php-1.29.0-wmf.7",
+"arwiktionary": "php-1.29.0-wmf.7",
 "arzwiki": "php-1.29.0-wmf.6",
 "astwiki": "php-1.29.0-wmf.6",
-"astwikibooks": "php-1.29.0-wmf.6",
-"astwikiquote": "php-1.29.0-wmf.6",
-"astwiktionary": "php-1.29.0-wmf.6",
+"astwikibooks": "php-1.29.0-wmf.7",
+"astwikiquote": "php-1.29.0-wmf.7",
+"astwiktionary": "php-1.29.0-wmf.7",
 "aswiki": "php-1.29.0-wmf.6",
-"aswikibooks": "php-1.29.0-wmf.6",
-"aswikisource": "php-1.29.0-wmf.6",
-"aswiktionary": "php-1.29.0-wmf.6",
-"auditcomwiki": "php-1.29.0-wmf.6",
+"aswikibooks": "php-1.29.0-wmf.7",
+"aswikisource": "php-1.29.0-wmf.7",
+"aswiktionary": "php-1.29.0-wmf.7",
+"auditcomwiki": "php-1.29.0-wmf.7",
 "avwiki": "php-1.29.0-wmf.6",
-"avwiktionary": "php-1.29.0-wmf.6",
+"avwiktionary": "php-1.29.0-wmf.7",
 "aywiki": "php-1.29.0-wmf.6",
-"aywikibooks": "php-1.29.0-wmf.6",
-"aywiktionary": "php-1.29.0-wmf.6",
+"aywikibooks": "php-1.29.0-wmf.7",
+"aywiktionary": "php-1.29.0-wmf.7",
 "azbwiki": "php-1.29.0-wmf.6",
 "azwiki": "php-1.29.0-wmf.6",
-"azwikibooks": "php-1.29.0-wmf.6",
-"azwikiquote": "php-1.29.0-wmf.6",
-"azwikisource": "php-1.29.0-wmf.6",
-"azwiktionary": "php-1.29.0-wmf.6",
+"azwikibooks": "php-1.29.0-wmf.7",
+"azwikiquote": "php-1.29.0-wmf.7",
+"azwikisource": "php-1.29.0-wmf.7",
+"azwiktionary": "php-1.29.0-wmf.7",
 "barwiki": "php-1.29.0-wmf.6",
 "bat_smgwiki": "php-1.29.0-wmf.6",
 "bawiki": "php-1.29.0-wmf.6",
-"bawikibooks": "php-1.29.0-wmf.6",
+"bawikibooks": "php-1.29.0-wmf.7",
 "bclwiki": "php-1.29.0-wmf.6",
-"bdwikimedia": 

[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Revert "group1 wikis to 1.29.0-wmf.7"

2017-01-04 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/330463 )

Change subject: Revert "group1 wikis to 1.29.0-wmf.7"
..

Revert "group1 wikis to 1.29.0-wmf.7"

This reverts commit e7fffa2567db09ca38d43fb77fbb2fc01e843558.

Change-Id: I9eeca3ddf7fb10dcbd5dc9c302d21d25b1075fc9
---
M wikiversions.json
1 file changed, 597 insertions(+), 597 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/63/330463/1

diff --git a/wikiversions.json b/wikiversions.json
index 43234e2..5240747 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -1,33 +1,33 @@
 {
 "aawiki": "php-1.29.0-wmf.6",
-"aawikibooks": "php-1.29.0-wmf.7",
-"aawiktionary": "php-1.29.0-wmf.7",
+"aawikibooks": "php-1.29.0-wmf.6",
+"aawiktionary": "php-1.29.0-wmf.6",
 "abwiki": "php-1.29.0-wmf.6",
-"abwiktionary": "php-1.29.0-wmf.7",
+"abwiktionary": "php-1.29.0-wmf.6",
 "acewiki": "php-1.29.0-wmf.6",
-"advisorywiki": "php-1.29.0-wmf.7",
+"advisorywiki": "php-1.29.0-wmf.6",
 "adywiki": "php-1.29.0-wmf.6",
 "afwiki": "php-1.29.0-wmf.6",
-"afwikibooks": "php-1.29.0-wmf.7",
-"afwikiquote": "php-1.29.0-wmf.7",
-"afwiktionary": "php-1.29.0-wmf.7",
+"afwikibooks": "php-1.29.0-wmf.6",
+"afwikiquote": "php-1.29.0-wmf.6",
+"afwiktionary": "php-1.29.0-wmf.6",
 "akwiki": "php-1.29.0-wmf.6",
-"akwikibooks": "php-1.29.0-wmf.7",
-"akwiktionary": "php-1.29.0-wmf.7",
+"akwikibooks": "php-1.29.0-wmf.6",
+"akwiktionary": "php-1.29.0-wmf.6",
 "alswiki": "php-1.29.0-wmf.6",
-"alswikibooks": "php-1.29.0-wmf.7",
-"alswikiquote": "php-1.29.0-wmf.7",
-"alswiktionary": "php-1.29.0-wmf.7",
+"alswikibooks": "php-1.29.0-wmf.6",
+"alswikiquote": "php-1.29.0-wmf.6",
+"alswiktionary": "php-1.29.0-wmf.6",
 "amwiki": "php-1.29.0-wmf.6",
-"amwikiquote": "php-1.29.0-wmf.7",
-"amwiktionary": "php-1.29.0-wmf.7",
+"amwikiquote": "php-1.29.0-wmf.6",
+"amwiktionary": "php-1.29.0-wmf.6",
 "angwiki": "php-1.29.0-wmf.6",
-"angwikibooks": "php-1.29.0-wmf.7",
-"angwikiquote": "php-1.29.0-wmf.7",
-"angwikisource": "php-1.29.0-wmf.7",
-"angwiktionary": "php-1.29.0-wmf.7",
+"angwikibooks": "php-1.29.0-wmf.6",
+"angwikiquote": "php-1.29.0-wmf.6",
+"angwikisource": "php-1.29.0-wmf.6",
+"angwiktionary": "php-1.29.0-wmf.6",
 "anwiki": "php-1.29.0-wmf.6",
-"anwiktionary": "php-1.29.0-wmf.7",
+"anwiktionary": "php-1.29.0-wmf.6",
 "arbcom_cswiki": "php-1.29.0-wmf.6",
 "arbcom_dewiki": "php-1.29.0-wmf.6",
 "arbcom_enwiki": "php-1.29.0-wmf.6",
@@ -35,720 +35,720 @@
 "arbcom_nlwiki": "php-1.29.0-wmf.6",
 "arcwiki": "php-1.29.0-wmf.6",
 "arwiki": "php-1.29.0-wmf.6",
-"arwikibooks": "php-1.29.0-wmf.7",
-"arwikimedia": "php-1.29.0-wmf.7",
-"arwikinews": "php-1.29.0-wmf.7",
-"arwikiquote": "php-1.29.0-wmf.7",
-"arwikisource": "php-1.29.0-wmf.7",
-"arwikiversity": "php-1.29.0-wmf.7",
-"arwiktionary": "php-1.29.0-wmf.7",
+"arwikibooks": "php-1.29.0-wmf.6",
+"arwikimedia": "php-1.29.0-wmf.6",
+"arwikinews": "php-1.29.0-wmf.6",
+"arwikiquote": "php-1.29.0-wmf.6",
+"arwikisource": "php-1.29.0-wmf.6",
+"arwikiversity": "php-1.29.0-wmf.6",
+"arwiktionary": "php-1.29.0-wmf.6",
 "arzwiki": "php-1.29.0-wmf.6",
 "astwiki": "php-1.29.0-wmf.6",
-"astwikibooks": "php-1.29.0-wmf.7",
-"astwikiquote": "php-1.29.0-wmf.7",
-"astwiktionary": "php-1.29.0-wmf.7",
+"astwikibooks": "php-1.29.0-wmf.6",
+"astwikiquote": "php-1.29.0-wmf.6",
+"astwiktionary": "php-1.29.0-wmf.6",
 "aswiki": "php-1.29.0-wmf.6",
-"aswikibooks": "php-1.29.0-wmf.7",
-"aswikisource": "php-1.29.0-wmf.7",
-"aswiktionary": "php-1.29.0-wmf.7",
-"auditcomwiki": "php-1.29.0-wmf.7",
+"aswikibooks": "php-1.29.0-wmf.6",
+"aswikisource": "php-1.29.0-wmf.6",
+"aswiktionary": "php-1.29.0-wmf.6",
+"auditcomwiki": "php-1.29.0-wmf.6",
 "avwiki": "php-1.29.0-wmf.6",
-"avwiktionary": "php-1.29.0-wmf.7",
+"avwiktionary": "php-1.29.0-wmf.6",
 "aywiki": "php-1.29.0-wmf.6",
-"aywikibooks": "php-1.29.0-wmf.7",
-"aywiktionary": "php-1.29.0-wmf.7",
+"aywikibooks": "php-1.29.0-wmf.6",
+"aywiktionary": "php-1.29.0-wmf.6",
 "azbwiki": "php-1.29.0-wmf.6",
 "azwiki": "php-1.29.0-wmf.6",
-"azwikibooks": "php-1.29.0-wmf.7",
-"azwikiquote": "php-1.29.0-wmf.7",
-"azwikisource": "php-1.29.0-wmf.7",
-"azwiktionary": "php-1.29.0-wmf.7",
+"azwikibooks": "php-1.29.0-wmf.6",
+"azwikiquote": "php-1.29.0-wmf.6",
+"azwikisource": "php-1.29.0-wmf.6",
+"azwiktionary": "php-1.29.0-wmf.6",
 "barwiki": "php-1.29.0-wmf.6",
 "bat_smgwiki": "php-1.29.0-wmf.6",
 "bawiki": "php-1.29.0-wmf.6",
-"bawikibooks": "php-1.29.0-wmf.7",
+"bawikibooks": 

[MediaWiki-commits] [Gerrit] operations/puppet[production]: Revert "Disable l10nupdate cron"

2016-12-22 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/328839 )

Change subject: Revert "Disable l10nupdate cron"
..

Revert "Disable l10nupdate cron"

This reverts commit 4e20a1b73eaf6db12ae1456284f2927488f8d43c.

Change-Id: I6be30e5f981f163b0ac3fccb6cf450f4ae33c022
---
M hieradata/hosts/tin.yaml
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/39/328839/1

diff --git a/hieradata/hosts/tin.yaml b/hieradata/hosts/tin.yaml
index 1aafc32..9250bb3 100644
--- a/hieradata/hosts/tin.yaml
+++ b/hieradata/hosts/tin.yaml
@@ -3,4 +3,4 @@
   - eqiad.wmnet
   - codfw.wmnet
 cluster: misc
-scap::l10nupdate::run_l10nupdate: false
+scap::l10nupdate::run_l10nupdate: true

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

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

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


[MediaWiki-commits] [Gerrit] operations/puppet[production]: Disable l10nupdate cron

2016-12-22 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/328738 )

Change subject: Disable l10nupdate cron
..

Disable l10nupdate cron

Disabled for the December deployment freeze.

Change-Id: I07ae9e2ee0011a8981558f76d1f88cdf7806cd3d
---
M hieradata/hosts/tin.yaml
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/38/328738/1

diff --git a/hieradata/hosts/tin.yaml b/hieradata/hosts/tin.yaml
index 9250bb3..1aafc32 100644
--- a/hieradata/hosts/tin.yaml
+++ b/hieradata/hosts/tin.yaml
@@ -3,4 +3,4 @@
   - eqiad.wmnet
   - codfw.wmnet
 cluster: misc
-scap::l10nupdate::run_l10nupdate: true
+scap::l10nupdate::run_l10nupdate: false

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

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

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: all wikis to 1.29.0-wmf.17

2017-03-23 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/344490 )

Change subject: all wikis to 1.29.0-wmf.17
..

all wikis to 1.29.0-wmf.17

Change-Id: I299fe1a743a21b8dfef76f3755d1566b2d5ec09b
---
M wikiversions.json
1 file changed, 300 insertions(+), 300 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/90/344490/1

diff --git a/wikiversions.json b/wikiversions.json
index 2c260d1..b707bc9 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -1,40 +1,40 @@
 {
-"aawiki": "php-1.29.0-wmf.16",
+"aawiki": "php-1.29.0-wmf.17",
 "aawikibooks": "php-1.29.0-wmf.17",
 "aawiktionary": "php-1.29.0-wmf.17",
-"abwiki": "php-1.29.0-wmf.16",
+"abwiki": "php-1.29.0-wmf.17",
 "abwiktionary": "php-1.29.0-wmf.17",
-"acewiki": "php-1.29.0-wmf.16",
+"acewiki": "php-1.29.0-wmf.17",
 "advisorywiki": "php-1.29.0-wmf.17",
-"adywiki": "php-1.29.0-wmf.16",
-"afwiki": "php-1.29.0-wmf.16",
+"adywiki": "php-1.29.0-wmf.17",
+"afwiki": "php-1.29.0-wmf.17",
 "afwikibooks": "php-1.29.0-wmf.17",
 "afwikiquote": "php-1.29.0-wmf.17",
 "afwiktionary": "php-1.29.0-wmf.17",
-"akwiki": "php-1.29.0-wmf.16",
+"akwiki": "php-1.29.0-wmf.17",
 "akwikibooks": "php-1.29.0-wmf.17",
 "akwiktionary": "php-1.29.0-wmf.17",
-"alswiki": "php-1.29.0-wmf.16",
+"alswiki": "php-1.29.0-wmf.17",
 "alswikibooks": "php-1.29.0-wmf.17",
 "alswikiquote": "php-1.29.0-wmf.17",
 "alswiktionary": "php-1.29.0-wmf.17",
-"amwiki": "php-1.29.0-wmf.16",
+"amwiki": "php-1.29.0-wmf.17",
 "amwikiquote": "php-1.29.0-wmf.17",
 "amwiktionary": "php-1.29.0-wmf.17",
-"angwiki": "php-1.29.0-wmf.16",
+"angwiki": "php-1.29.0-wmf.17",
 "angwikibooks": "php-1.29.0-wmf.17",
 "angwikiquote": "php-1.29.0-wmf.17",
 "angwikisource": "php-1.29.0-wmf.17",
 "angwiktionary": "php-1.29.0-wmf.17",
-"anwiki": "php-1.29.0-wmf.16",
+"anwiki": "php-1.29.0-wmf.17",
 "anwiktionary": "php-1.29.0-wmf.17",
-"arbcom_cswiki": "php-1.29.0-wmf.16",
-"arbcom_dewiki": "php-1.29.0-wmf.16",
-"arbcom_enwiki": "php-1.29.0-wmf.16",
-"arbcom_fiwiki": "php-1.29.0-wmf.16",
-"arbcom_nlwiki": "php-1.29.0-wmf.16",
-"arcwiki": "php-1.29.0-wmf.16",
-"arwiki": "php-1.29.0-wmf.16",
+"arbcom_cswiki": "php-1.29.0-wmf.17",
+"arbcom_dewiki": "php-1.29.0-wmf.17",
+"arbcom_enwiki": "php-1.29.0-wmf.17",
+"arbcom_fiwiki": "php-1.29.0-wmf.17",
+"arbcom_nlwiki": "php-1.29.0-wmf.17",
+"arcwiki": "php-1.29.0-wmf.17",
+"arwiki": "php-1.29.0-wmf.17",
 "arwikibooks": "php-1.29.0-wmf.17",
 "arwikimedia": "php-1.29.0-wmf.17",
 "arwikinews": "php-1.29.0-wmf.17",
@@ -42,80 +42,80 @@
 "arwikisource": "php-1.29.0-wmf.17",
 "arwikiversity": "php-1.29.0-wmf.17",
 "arwiktionary": "php-1.29.0-wmf.17",
-"arzwiki": "php-1.29.0-wmf.16",
-"astwiki": "php-1.29.0-wmf.16",
+"arzwiki": "php-1.29.0-wmf.17",
+"astwiki": "php-1.29.0-wmf.17",
 "astwikibooks": "php-1.29.0-wmf.17",
 "astwikiquote": "php-1.29.0-wmf.17",
 "astwiktionary": "php-1.29.0-wmf.17",
-"aswiki": "php-1.29.0-wmf.16",
+"aswiki": "php-1.29.0-wmf.17",
 "aswikibooks": "php-1.29.0-wmf.17",
 "aswikisource": "php-1.29.0-wmf.17",
 "aswiktionary": "php-1.29.0-wmf.17",
 "auditcomwiki": "php-1.29.0-wmf.17",
-"avwiki": "php-1.29.0-wmf.16",
+"avwiki": "php-1.29.0-wmf.17",
 "avwiktionary": "php-1.29.0-wmf.17",
-"aywiki": "php-1.29.0-wmf.16",
+"aywiki": "php-1.29.0-wmf.17",
 "aywikibooks": "php-1.29.0-wmf.17",
 "aywiktionary": "php-1.29.0-wmf.17",
-"azbwiki": "php-1.29.0-wmf.16",
-"azwiki": "php-1.29.0-wmf.16",
+"azbwiki": "php-1.29.0-wmf.17",
+"azwiki": "php-1.29.0-wmf.17",
 "azwikibooks": "php-1.29.0-wmf.17",
 "azwikiquote": "php-1.29.0-wmf.17",
 "azwikisource": "php-1.29.0-wmf.17",
 "azwiktionary": "php-1.29.0-wmf.17",
-"barwiki": "php-1.29.0-wmf.16",
-"bat_smgwiki": "php-1.29.0-wmf.16",
-"bawiki": "php-1.29.0-wmf.16",
+"barwiki": "php-1.29.0-wmf.17",
+"bat_smgwiki": "php-1.29.0-wmf.17",
+"bawiki": "php-1.29.0-wmf.17",
 "bawikibooks": "php-1.29.0-wmf.17",
-"bclwiki": "php-1.29.0-wmf.16",
+"bclwiki": "php-1.29.0-wmf.17",
 "bdwikimedia": "php-1.29.0-wmf.17",
-"be_x_oldwiki": "php-1.29.0-wmf.16",
+"be_x_oldwiki": "php-1.29.0-wmf.17",
 "betawikiversity": "php-1.29.0-wmf.17",
-"bewiki": "php-1.29.0-wmf.16",
+"bewiki": "php-1.29.0-wmf.17",
 "bewikibooks": "php-1.29.0-wmf.17",
 "bewikimedia": "php-1.29.0-wmf.17",
 "bewikiquote": "php-1.29.0-wmf.17",
 "bewikisource": "php-1.29.0-wmf.17",
 "bewiktionary": "php-1.29.0-wmf.17",
-"bgwiki": "php-1.29.0-wmf.16",
+"bgwiki": "php-1.29.0-wmf.17",
 "bgwikibooks": "php-1.29.0-wmf.17",
 

[MediaWiki-commits] [Gerrit] mediawiki...ZeroPortal[wmf/1.29.0-wmf.17]: Failure to parse json config should result in a usable error

2017-03-22 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/344190 )

Change subject: Failure to parse json config should result in a usable error
..

Failure to parse json config should result in a usable error

Invalid config is bad, and needs resolution. A warning isn't nearly
enough information about what's failing and why

Change-Id: Ic460cb41e3e794f08dc11b3d25bced981f87
(cherry picked from commit 7874723a3cc3f76d93d6e8fff417cafe4bfff2d2)
---
M includes/ApiZeroPortal.php
1 file changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/ZeroPortal 
refs/changes/90/344190/1

diff --git a/includes/ApiZeroPortal.php b/includes/ApiZeroPortal.php
index 5d8db13..f2adc29 100644
--- a/includes/ApiZeroPortal.php
+++ b/includes/ApiZeroPortal.php
@@ -6,6 +6,7 @@
 use ApiFormatBase;
 use ApiMain;
 use ApiResult;
+use Exception;
 use FauxRequest;
 use JsonConfig\JCSingleton;
 use stdClass;
@@ -339,9 +340,8 @@
$content = 
JCSingleton::parseContent( $titleValue, $rev['*'] );
if ( !$content || 
!$content->isValid() ) {
if ( 
!$hasWarnings ) {
-   
wfLogWarning( 'ZeroAPI: Unable to parse json of page ' .
+   throw 
new Exception( 'ZeroAPI: Unable to parse json of page ' .

  $page['title'] );
-   
$hasWarnings = true; // only log once per api request
}
continue;
}

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic460cb41e3e794f08dc11b3d25bced981f87
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/ZeroPortal
Gerrit-Branch: wmf/1.29.0-wmf.17
Gerrit-Owner: Thcipriani 
Gerrit-Reviewer: Chad 

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Revert "Revert "Group0 to 1.29.0-wmf.17""

2017-03-22 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/344206 )

Change subject: Revert "Revert "Group0 to 1.29.0-wmf.17""
..

Revert "Revert "Group0 to 1.29.0-wmf.17""

This reverts commit bdee06eb2839968ee8a2df41692ba7b962364339.

Change-Id: I264951e844e72daa0554a7db21f77987b5a167b9
---
M php
M wikiversions.json
2 files changed, 6 insertions(+), 6 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/06/344206/1

diff --git a/php b/php
index e51633e..36c0bf9 12
--- a/php
+++ b/php
@@ -1 +1 @@
-php-1.29.0-wmf.16
\ No newline at end of file
+php-1.29.0-wmf.17
\ No newline at end of file
diff --git a/wikiversions.json b/wikiversions.json
index 4b4eebc..51fa491 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -481,7 +481,7 @@
 "maiwiki": "php-1.29.0-wmf.16",
 "map_bmswiki": "php-1.29.0-wmf.16",
 "mdfwiki": "php-1.29.0-wmf.16",
-"mediawikiwiki": "php-1.29.0-wmf.16",
+"mediawikiwiki": "php-1.29.0-wmf.17",
 "metawiki": "php-1.29.0-wmf.16",
 "mgwiki": "php-1.29.0-wmf.16",
 "mgwikibooks": "php-1.29.0-wmf.16",
@@ -751,9 +751,9 @@
 "tawiktionary": "php-1.29.0-wmf.16",
 "tcywiki": "php-1.29.0-wmf.16",
 "tenwiki": "php-1.29.0-wmf.16",
-"test2wiki": "php-1.29.0-wmf.16",
-"testwiki": "php-1.29.0-wmf.16",
-"testwikidatawiki": "php-1.29.0-wmf.16",
+"test2wiki": "php-1.29.0-wmf.17",
+"testwiki": "php-1.29.0-wmf.17",
+"testwikidatawiki": "php-1.29.0-wmf.17",
 "tetwiki": "php-1.29.0-wmf.16",
 "tewiki": "php-1.29.0-wmf.16",
 "tewikibooks": "php-1.29.0-wmf.16",
@@ -883,7 +883,7 @@
 "zawikiquote": "php-1.29.0-wmf.16",
 "zawiktionary": "php-1.29.0-wmf.16",
 "zeawiki": "php-1.29.0-wmf.16",
-"zerowiki": "php-1.29.0-wmf.16",
+"zerowiki": "php-1.29.0-wmf.17",
 "zh_classicalwiki": "php-1.29.0-wmf.16",
 "zh_min_nanwiki": "php-1.29.0-wmf.16",
 "zh_min_nanwikibooks": "php-1.29.0-wmf.16",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I264951e844e72daa0554a7db21f77987b5a167b9
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: group1 wikis to 1.29.0-wmf.18

2017-03-29 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345409 )

Change subject: group1 wikis to 1.29.0-wmf.18
..

group1 wikis to 1.29.0-wmf.18

Change-Id: Ia9409bd856ba8a0e1f1275afa828d8511b9d25da
---
M wikiversions.json
1 file changed, 597 insertions(+), 597 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/09/345409/1

diff --git a/wikiversions.json b/wikiversions.json
index b534cf3..67d7987 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -1,33 +1,33 @@
 {
 "aawiki": "php-1.29.0-wmf.17",
-"aawikibooks": "php-1.29.0-wmf.17",
-"aawiktionary": "php-1.29.0-wmf.17",
+"aawikibooks": "php-1.29.0-wmf.18",
+"aawiktionary": "php-1.29.0-wmf.18",
 "abwiki": "php-1.29.0-wmf.17",
-"abwiktionary": "php-1.29.0-wmf.17",
+"abwiktionary": "php-1.29.0-wmf.18",
 "acewiki": "php-1.29.0-wmf.17",
-"advisorywiki": "php-1.29.0-wmf.17",
+"advisorywiki": "php-1.29.0-wmf.18",
 "adywiki": "php-1.29.0-wmf.17",
 "afwiki": "php-1.29.0-wmf.17",
-"afwikibooks": "php-1.29.0-wmf.17",
-"afwikiquote": "php-1.29.0-wmf.17",
-"afwiktionary": "php-1.29.0-wmf.17",
+"afwikibooks": "php-1.29.0-wmf.18",
+"afwikiquote": "php-1.29.0-wmf.18",
+"afwiktionary": "php-1.29.0-wmf.18",
 "akwiki": "php-1.29.0-wmf.17",
-"akwikibooks": "php-1.29.0-wmf.17",
-"akwiktionary": "php-1.29.0-wmf.17",
+"akwikibooks": "php-1.29.0-wmf.18",
+"akwiktionary": "php-1.29.0-wmf.18",
 "alswiki": "php-1.29.0-wmf.17",
-"alswikibooks": "php-1.29.0-wmf.17",
-"alswikiquote": "php-1.29.0-wmf.17",
-"alswiktionary": "php-1.29.0-wmf.17",
+"alswikibooks": "php-1.29.0-wmf.18",
+"alswikiquote": "php-1.29.0-wmf.18",
+"alswiktionary": "php-1.29.0-wmf.18",
 "amwiki": "php-1.29.0-wmf.17",
-"amwikiquote": "php-1.29.0-wmf.17",
-"amwiktionary": "php-1.29.0-wmf.17",
+"amwikiquote": "php-1.29.0-wmf.18",
+"amwiktionary": "php-1.29.0-wmf.18",
 "angwiki": "php-1.29.0-wmf.17",
-"angwikibooks": "php-1.29.0-wmf.17",
-"angwikiquote": "php-1.29.0-wmf.17",
-"angwikisource": "php-1.29.0-wmf.17",
-"angwiktionary": "php-1.29.0-wmf.17",
+"angwikibooks": "php-1.29.0-wmf.18",
+"angwikiquote": "php-1.29.0-wmf.18",
+"angwikisource": "php-1.29.0-wmf.18",
+"angwiktionary": "php-1.29.0-wmf.18",
 "anwiki": "php-1.29.0-wmf.17",
-"anwiktionary": "php-1.29.0-wmf.17",
+"anwiktionary": "php-1.29.0-wmf.18",
 "arbcom_cswiki": "php-1.29.0-wmf.17",
 "arbcom_dewiki": "php-1.29.0-wmf.17",
 "arbcom_enwiki": "php-1.29.0-wmf.17",
@@ -35,720 +35,720 @@
 "arbcom_nlwiki": "php-1.29.0-wmf.17",
 "arcwiki": "php-1.29.0-wmf.17",
 "arwiki": "php-1.29.0-wmf.17",
-"arwikibooks": "php-1.29.0-wmf.17",
-"arwikimedia": "php-1.29.0-wmf.17",
-"arwikinews": "php-1.29.0-wmf.17",
-"arwikiquote": "php-1.29.0-wmf.17",
-"arwikisource": "php-1.29.0-wmf.17",
-"arwikiversity": "php-1.29.0-wmf.17",
-"arwiktionary": "php-1.29.0-wmf.17",
+"arwikibooks": "php-1.29.0-wmf.18",
+"arwikimedia": "php-1.29.0-wmf.18",
+"arwikinews": "php-1.29.0-wmf.18",
+"arwikiquote": "php-1.29.0-wmf.18",
+"arwikisource": "php-1.29.0-wmf.18",
+"arwikiversity": "php-1.29.0-wmf.18",
+"arwiktionary": "php-1.29.0-wmf.18",
 "arzwiki": "php-1.29.0-wmf.17",
 "astwiki": "php-1.29.0-wmf.17",
-"astwikibooks": "php-1.29.0-wmf.17",
-"astwikiquote": "php-1.29.0-wmf.17",
-"astwiktionary": "php-1.29.0-wmf.17",
+"astwikibooks": "php-1.29.0-wmf.18",
+"astwikiquote": "php-1.29.0-wmf.18",
+"astwiktionary": "php-1.29.0-wmf.18",
 "aswiki": "php-1.29.0-wmf.17",
-"aswikibooks": "php-1.29.0-wmf.17",
-"aswikisource": "php-1.29.0-wmf.17",
-"aswiktionary": "php-1.29.0-wmf.17",
-"auditcomwiki": "php-1.29.0-wmf.17",
+"aswikibooks": "php-1.29.0-wmf.18",
+"aswikisource": "php-1.29.0-wmf.18",
+"aswiktionary": "php-1.29.0-wmf.18",
+"auditcomwiki": "php-1.29.0-wmf.18",
 "avwiki": "php-1.29.0-wmf.17",
-"avwiktionary": "php-1.29.0-wmf.17",
+"avwiktionary": "php-1.29.0-wmf.18",
 "aywiki": "php-1.29.0-wmf.17",
-"aywikibooks": "php-1.29.0-wmf.17",
-"aywiktionary": "php-1.29.0-wmf.17",
+"aywikibooks": "php-1.29.0-wmf.18",
+"aywiktionary": "php-1.29.0-wmf.18",
 "azbwiki": "php-1.29.0-wmf.17",
 "azwiki": "php-1.29.0-wmf.17",
-"azwikibooks": "php-1.29.0-wmf.17",
-"azwikiquote": "php-1.29.0-wmf.17",
-"azwikisource": "php-1.29.0-wmf.17",
-"azwiktionary": "php-1.29.0-wmf.17",
+"azwikibooks": "php-1.29.0-wmf.18",
+"azwikiquote": "php-1.29.0-wmf.18",
+"azwikisource": "php-1.29.0-wmf.18",
+"azwiktionary": "php-1.29.0-wmf.18",
 "barwiki": "php-1.29.0-wmf.17",
 "bat_smgwiki": "php-1.29.0-wmf.17",
 "bawiki": "php-1.29.0-wmf.17",
-"bawikibooks": 

[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Revert "group1 wikis to 1.29.0-wmf.18"

2017-03-29 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345410 )

Change subject: Revert "group1 wikis to 1.29.0-wmf.18"
..

Revert "group1 wikis to 1.29.0-wmf.18"

This reverts commit aa3379b8d06f561850fb0f951ede342864b15a71.

Change-Id: I373565fc48e3bcad3551df4b3fcb65c4ff6fdb33
---
M wikiversions.json
1 file changed, 597 insertions(+), 597 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/10/345410/1

diff --git a/wikiversions.json b/wikiversions.json
index 67d7987..b534cf3 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -1,33 +1,33 @@
 {
 "aawiki": "php-1.29.0-wmf.17",
-"aawikibooks": "php-1.29.0-wmf.18",
-"aawiktionary": "php-1.29.0-wmf.18",
+"aawikibooks": "php-1.29.0-wmf.17",
+"aawiktionary": "php-1.29.0-wmf.17",
 "abwiki": "php-1.29.0-wmf.17",
-"abwiktionary": "php-1.29.0-wmf.18",
+"abwiktionary": "php-1.29.0-wmf.17",
 "acewiki": "php-1.29.0-wmf.17",
-"advisorywiki": "php-1.29.0-wmf.18",
+"advisorywiki": "php-1.29.0-wmf.17",
 "adywiki": "php-1.29.0-wmf.17",
 "afwiki": "php-1.29.0-wmf.17",
-"afwikibooks": "php-1.29.0-wmf.18",
-"afwikiquote": "php-1.29.0-wmf.18",
-"afwiktionary": "php-1.29.0-wmf.18",
+"afwikibooks": "php-1.29.0-wmf.17",
+"afwikiquote": "php-1.29.0-wmf.17",
+"afwiktionary": "php-1.29.0-wmf.17",
 "akwiki": "php-1.29.0-wmf.17",
-"akwikibooks": "php-1.29.0-wmf.18",
-"akwiktionary": "php-1.29.0-wmf.18",
+"akwikibooks": "php-1.29.0-wmf.17",
+"akwiktionary": "php-1.29.0-wmf.17",
 "alswiki": "php-1.29.0-wmf.17",
-"alswikibooks": "php-1.29.0-wmf.18",
-"alswikiquote": "php-1.29.0-wmf.18",
-"alswiktionary": "php-1.29.0-wmf.18",
+"alswikibooks": "php-1.29.0-wmf.17",
+"alswikiquote": "php-1.29.0-wmf.17",
+"alswiktionary": "php-1.29.0-wmf.17",
 "amwiki": "php-1.29.0-wmf.17",
-"amwikiquote": "php-1.29.0-wmf.18",
-"amwiktionary": "php-1.29.0-wmf.18",
+"amwikiquote": "php-1.29.0-wmf.17",
+"amwiktionary": "php-1.29.0-wmf.17",
 "angwiki": "php-1.29.0-wmf.17",
-"angwikibooks": "php-1.29.0-wmf.18",
-"angwikiquote": "php-1.29.0-wmf.18",
-"angwikisource": "php-1.29.0-wmf.18",
-"angwiktionary": "php-1.29.0-wmf.18",
+"angwikibooks": "php-1.29.0-wmf.17",
+"angwikiquote": "php-1.29.0-wmf.17",
+"angwikisource": "php-1.29.0-wmf.17",
+"angwiktionary": "php-1.29.0-wmf.17",
 "anwiki": "php-1.29.0-wmf.17",
-"anwiktionary": "php-1.29.0-wmf.18",
+"anwiktionary": "php-1.29.0-wmf.17",
 "arbcom_cswiki": "php-1.29.0-wmf.17",
 "arbcom_dewiki": "php-1.29.0-wmf.17",
 "arbcom_enwiki": "php-1.29.0-wmf.17",
@@ -35,720 +35,720 @@
 "arbcom_nlwiki": "php-1.29.0-wmf.17",
 "arcwiki": "php-1.29.0-wmf.17",
 "arwiki": "php-1.29.0-wmf.17",
-"arwikibooks": "php-1.29.0-wmf.18",
-"arwikimedia": "php-1.29.0-wmf.18",
-"arwikinews": "php-1.29.0-wmf.18",
-"arwikiquote": "php-1.29.0-wmf.18",
-"arwikisource": "php-1.29.0-wmf.18",
-"arwikiversity": "php-1.29.0-wmf.18",
-"arwiktionary": "php-1.29.0-wmf.18",
+"arwikibooks": "php-1.29.0-wmf.17",
+"arwikimedia": "php-1.29.0-wmf.17",
+"arwikinews": "php-1.29.0-wmf.17",
+"arwikiquote": "php-1.29.0-wmf.17",
+"arwikisource": "php-1.29.0-wmf.17",
+"arwikiversity": "php-1.29.0-wmf.17",
+"arwiktionary": "php-1.29.0-wmf.17",
 "arzwiki": "php-1.29.0-wmf.17",
 "astwiki": "php-1.29.0-wmf.17",
-"astwikibooks": "php-1.29.0-wmf.18",
-"astwikiquote": "php-1.29.0-wmf.18",
-"astwiktionary": "php-1.29.0-wmf.18",
+"astwikibooks": "php-1.29.0-wmf.17",
+"astwikiquote": "php-1.29.0-wmf.17",
+"astwiktionary": "php-1.29.0-wmf.17",
 "aswiki": "php-1.29.0-wmf.17",
-"aswikibooks": "php-1.29.0-wmf.18",
-"aswikisource": "php-1.29.0-wmf.18",
-"aswiktionary": "php-1.29.0-wmf.18",
-"auditcomwiki": "php-1.29.0-wmf.18",
+"aswikibooks": "php-1.29.0-wmf.17",
+"aswikisource": "php-1.29.0-wmf.17",
+"aswiktionary": "php-1.29.0-wmf.17",
+"auditcomwiki": "php-1.29.0-wmf.17",
 "avwiki": "php-1.29.0-wmf.17",
-"avwiktionary": "php-1.29.0-wmf.18",
+"avwiktionary": "php-1.29.0-wmf.17",
 "aywiki": "php-1.29.0-wmf.17",
-"aywikibooks": "php-1.29.0-wmf.18",
-"aywiktionary": "php-1.29.0-wmf.18",
+"aywikibooks": "php-1.29.0-wmf.17",
+"aywiktionary": "php-1.29.0-wmf.17",
 "azbwiki": "php-1.29.0-wmf.17",
 "azwiki": "php-1.29.0-wmf.17",
-"azwikibooks": "php-1.29.0-wmf.18",
-"azwikiquote": "php-1.29.0-wmf.18",
-"azwikisource": "php-1.29.0-wmf.18",
-"azwiktionary": "php-1.29.0-wmf.18",
+"azwikibooks": "php-1.29.0-wmf.17",
+"azwikiquote": "php-1.29.0-wmf.17",
+"azwikisource": "php-1.29.0-wmf.17",
+"azwiktionary": "php-1.29.0-wmf.17",
 "barwiki": "php-1.29.0-wmf.17",
 "bat_smgwiki": 

[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Group0 to 1.29.0-wmf.18

2017-03-28 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/345219 )

Change subject: Group0 to 1.29.0-wmf.18
..

Group0 to 1.29.0-wmf.18

Change-Id: Id25f6f6148c508c643274d5de9722aa45f5d0ad5
---
M php
M wikiversions.json
2 files changed, 6 insertions(+), 6 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/19/345219/1

diff --git a/php b/php
index 36c0bf9..ba80a8d 12
--- a/php
+++ b/php
@@ -1 +1 @@
-php-1.29.0-wmf.17
\ No newline at end of file
+php-1.29.0-wmf.18
\ No newline at end of file
diff --git a/wikiversions.json b/wikiversions.json
index b707bc9..b534cf3 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -481,7 +481,7 @@
 "maiwiki": "php-1.29.0-wmf.17",
 "map_bmswiki": "php-1.29.0-wmf.17",
 "mdfwiki": "php-1.29.0-wmf.17",
-"mediawikiwiki": "php-1.29.0-wmf.17",
+"mediawikiwiki": "php-1.29.0-wmf.18",
 "metawiki": "php-1.29.0-wmf.17",
 "mgwiki": "php-1.29.0-wmf.17",
 "mgwikibooks": "php-1.29.0-wmf.17",
@@ -751,9 +751,9 @@
 "tawiktionary": "php-1.29.0-wmf.17",
 "tcywiki": "php-1.29.0-wmf.17",
 "tenwiki": "php-1.29.0-wmf.17",
-"test2wiki": "php-1.29.0-wmf.17",
-"testwiki": "php-1.29.0-wmf.17",
-"testwikidatawiki": "php-1.29.0-wmf.17",
+"test2wiki": "php-1.29.0-wmf.18",
+"testwiki": "php-1.29.0-wmf.18",
+"testwikidatawiki": "php-1.29.0-wmf.18",
 "tetwiki": "php-1.29.0-wmf.17",
 "tewiki": "php-1.29.0-wmf.17",
 "tewikibooks": "php-1.29.0-wmf.17",
@@ -883,7 +883,7 @@
 "zawikiquote": "php-1.29.0-wmf.17",
 "zawiktionary": "php-1.29.0-wmf.17",
 "zeawiki": "php-1.29.0-wmf.17",
-"zerowiki": "php-1.29.0-wmf.17",
+"zerowiki": "php-1.29.0-wmf.18",
 "zh_classicalwiki": "php-1.29.0-wmf.17",
 "zh_min_nanwiki": "php-1.29.0-wmf.17",
 "zh_min_nanwikibooks": "php-1.29.0-wmf.17",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Id25f6f6148c508c643274d5de9722aa45f5d0ad5
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: group1 wikis to 1.29.0-wmf.17

2017-03-23 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/344473 )

Change subject: group1 wikis to 1.29.0-wmf.17
..

group1 wikis to 1.29.0-wmf.17

Change-Id: I7dc7176188ddc72b4b8a18912f6bd56be20cb2c0
---
M wikiversions.json
1 file changed, 597 insertions(+), 597 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/73/344473/1

diff --git a/wikiversions.json b/wikiversions.json
index 51fa491..2c260d1 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -1,33 +1,33 @@
 {
 "aawiki": "php-1.29.0-wmf.16",
-"aawikibooks": "php-1.29.0-wmf.16",
-"aawiktionary": "php-1.29.0-wmf.16",
+"aawikibooks": "php-1.29.0-wmf.17",
+"aawiktionary": "php-1.29.0-wmf.17",
 "abwiki": "php-1.29.0-wmf.16",
-"abwiktionary": "php-1.29.0-wmf.16",
+"abwiktionary": "php-1.29.0-wmf.17",
 "acewiki": "php-1.29.0-wmf.16",
-"advisorywiki": "php-1.29.0-wmf.16",
+"advisorywiki": "php-1.29.0-wmf.17",
 "adywiki": "php-1.29.0-wmf.16",
 "afwiki": "php-1.29.0-wmf.16",
-"afwikibooks": "php-1.29.0-wmf.16",
-"afwikiquote": "php-1.29.0-wmf.16",
-"afwiktionary": "php-1.29.0-wmf.16",
+"afwikibooks": "php-1.29.0-wmf.17",
+"afwikiquote": "php-1.29.0-wmf.17",
+"afwiktionary": "php-1.29.0-wmf.17",
 "akwiki": "php-1.29.0-wmf.16",
-"akwikibooks": "php-1.29.0-wmf.16",
-"akwiktionary": "php-1.29.0-wmf.16",
+"akwikibooks": "php-1.29.0-wmf.17",
+"akwiktionary": "php-1.29.0-wmf.17",
 "alswiki": "php-1.29.0-wmf.16",
-"alswikibooks": "php-1.29.0-wmf.16",
-"alswikiquote": "php-1.29.0-wmf.16",
-"alswiktionary": "php-1.29.0-wmf.16",
+"alswikibooks": "php-1.29.0-wmf.17",
+"alswikiquote": "php-1.29.0-wmf.17",
+"alswiktionary": "php-1.29.0-wmf.17",
 "amwiki": "php-1.29.0-wmf.16",
-"amwikiquote": "php-1.29.0-wmf.16",
-"amwiktionary": "php-1.29.0-wmf.16",
+"amwikiquote": "php-1.29.0-wmf.17",
+"amwiktionary": "php-1.29.0-wmf.17",
 "angwiki": "php-1.29.0-wmf.16",
-"angwikibooks": "php-1.29.0-wmf.16",
-"angwikiquote": "php-1.29.0-wmf.16",
-"angwikisource": "php-1.29.0-wmf.16",
-"angwiktionary": "php-1.29.0-wmf.16",
+"angwikibooks": "php-1.29.0-wmf.17",
+"angwikiquote": "php-1.29.0-wmf.17",
+"angwikisource": "php-1.29.0-wmf.17",
+"angwiktionary": "php-1.29.0-wmf.17",
 "anwiki": "php-1.29.0-wmf.16",
-"anwiktionary": "php-1.29.0-wmf.16",
+"anwiktionary": "php-1.29.0-wmf.17",
 "arbcom_cswiki": "php-1.29.0-wmf.16",
 "arbcom_dewiki": "php-1.29.0-wmf.16",
 "arbcom_enwiki": "php-1.29.0-wmf.16",
@@ -35,720 +35,720 @@
 "arbcom_nlwiki": "php-1.29.0-wmf.16",
 "arcwiki": "php-1.29.0-wmf.16",
 "arwiki": "php-1.29.0-wmf.16",
-"arwikibooks": "php-1.29.0-wmf.16",
-"arwikimedia": "php-1.29.0-wmf.16",
-"arwikinews": "php-1.29.0-wmf.16",
-"arwikiquote": "php-1.29.0-wmf.16",
-"arwikisource": "php-1.29.0-wmf.16",
-"arwikiversity": "php-1.29.0-wmf.16",
-"arwiktionary": "php-1.29.0-wmf.16",
+"arwikibooks": "php-1.29.0-wmf.17",
+"arwikimedia": "php-1.29.0-wmf.17",
+"arwikinews": "php-1.29.0-wmf.17",
+"arwikiquote": "php-1.29.0-wmf.17",
+"arwikisource": "php-1.29.0-wmf.17",
+"arwikiversity": "php-1.29.0-wmf.17",
+"arwiktionary": "php-1.29.0-wmf.17",
 "arzwiki": "php-1.29.0-wmf.16",
 "astwiki": "php-1.29.0-wmf.16",
-"astwikibooks": "php-1.29.0-wmf.16",
-"astwikiquote": "php-1.29.0-wmf.16",
-"astwiktionary": "php-1.29.0-wmf.16",
+"astwikibooks": "php-1.29.0-wmf.17",
+"astwikiquote": "php-1.29.0-wmf.17",
+"astwiktionary": "php-1.29.0-wmf.17",
 "aswiki": "php-1.29.0-wmf.16",
-"aswikibooks": "php-1.29.0-wmf.16",
-"aswikisource": "php-1.29.0-wmf.16",
-"aswiktionary": "php-1.29.0-wmf.16",
-"auditcomwiki": "php-1.29.0-wmf.16",
+"aswikibooks": "php-1.29.0-wmf.17",
+"aswikisource": "php-1.29.0-wmf.17",
+"aswiktionary": "php-1.29.0-wmf.17",
+"auditcomwiki": "php-1.29.0-wmf.17",
 "avwiki": "php-1.29.0-wmf.16",
-"avwiktionary": "php-1.29.0-wmf.16",
+"avwiktionary": "php-1.29.0-wmf.17",
 "aywiki": "php-1.29.0-wmf.16",
-"aywikibooks": "php-1.29.0-wmf.16",
-"aywiktionary": "php-1.29.0-wmf.16",
+"aywikibooks": "php-1.29.0-wmf.17",
+"aywiktionary": "php-1.29.0-wmf.17",
 "azbwiki": "php-1.29.0-wmf.16",
 "azwiki": "php-1.29.0-wmf.16",
-"azwikibooks": "php-1.29.0-wmf.16",
-"azwikiquote": "php-1.29.0-wmf.16",
-"azwikisource": "php-1.29.0-wmf.16",
-"azwiktionary": "php-1.29.0-wmf.16",
+"azwikibooks": "php-1.29.0-wmf.17",
+"azwikiquote": "php-1.29.0-wmf.17",
+"azwikisource": "php-1.29.0-wmf.17",
+"azwiktionary": "php-1.29.0-wmf.17",
 "barwiki": "php-1.29.0-wmf.16",
 "bat_smgwiki": "php-1.29.0-wmf.16",
 "bawiki": "php-1.29.0-wmf.16",
-"bawikibooks": 

[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Revert "Revert "Turn off patrolling for FlaggedRevs in bswiki""

2017-03-20 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/343685 )

Change subject: Revert "Revert "Turn off patrolling for FlaggedRevs in bswiki""
..

Revert "Revert "Turn off patrolling for FlaggedRevs in bswiki""

This reverts commit 74397d4a62e7026ed6f22748d8c2058a1a005d21.

Change-Id: I30f0b917f81001cec6ba6194a352f80abab3020b
---
M wmf-config/InitialiseSettings.php
M wmf-config/flaggedrevs.php
2 files changed, 21 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/85/343685/1

diff --git a/wmf-config/InitialiseSettings.php 
b/wmf-config/InitialiseSettings.php
index 107300e..6ae92b2 100644
--- a/wmf-config/InitialiseSettings.php
+++ b/wmf-config/InitialiseSettings.php
@@ -7323,12 +7323,14 @@
'ruwiki' => false, // T33650
'sqwiki' => false, // T27822
'ukwiki' => false, // T35273
+   'bswiki' => false, // T158662
 ],
 
 'wgUseFilePatrol' => array(
'default' => true,
'huwiki' => false, // T21241
'ruwiki' => false, // T154285
+   'bswiki' => false, // T158662
 ),
 
 # wgNoFollow... @{
@@ -7875,10 +7877,15 @@
'autopatrolled' => [ 'autopatrol' => true, ],
],
'bswiki' => [
-   'patroller' => [ 'patrol' => true ],
-   'autopatrolled' => [ 'autopatrol' => true ],
'rollbacker' => [ 'rollback' => true ],
-   'flood' => [ 'bot' => true ], // T52425
+   'flood' => [
+   'bot' => true, // T52425
+   'autopatrol' => false, //T158662
+   ],
+   'sysop' => [ // T158662
+   'autopatrol' => false,
+   'patrol' => false,
+   ],
],
'cawiki' => [
'user' => [ 'patrol' => false ],
diff --git a/wmf-config/flaggedrevs.php b/wmf-config/flaggedrevs.php
index ebd8c5a..9982e90 100644
--- a/wmf-config/flaggedrevs.php
+++ b/wmf-config/flaggedrevs.php
@@ -81,6 +81,17 @@
$wgRemoveGroups['sysop'] = array_diff( $wgRemoveGroups['sysop'], [ 
'editor' ] );
 }
 
+elseif ( $wgDBname == 'bswiki' ) { //T158662
+
+   $wgFlaggedRevsTags = [
+   'status' => [ 'levels' => 1, 'quality' => 2, 'pristine' => 3 ],
+   ];
+
+   $wgGroupPermissions['sysop']['stablesettings'] = true;
+   #Remove reviewer group
+   unset( $wgGroupPermissions['reviewer'] );
+}
+
 elseif ( $wgDBname == 'cewiki' ) { // based on ruwiki settings
 
// T58408

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I30f0b917f81001cec6ba6194a352f80abab3020b
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Revert "Turn off patrolling for FlaggedRevs in bswiki"

2017-03-16 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/343112 )

Change subject: Revert "Turn off patrolling for FlaggedRevs in bswiki"
..

Revert "Turn off patrolling for FlaggedRevs in bswiki"

This reverts commit a1c2a39ba44d0a8e231cc0c47ac5084ee9933df7.

Change-Id: I0d1e983ecba7ea07e1d5a3aaf50c80967d2e4771
---
M wmf-config/InitialiseSettings.php
M wmf-config/flaggedrevs.php
2 files changed, 3 insertions(+), 21 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/12/343112/1

diff --git a/wmf-config/InitialiseSettings.php 
b/wmf-config/InitialiseSettings.php
index cba28e6..c2e9caf 100644
--- a/wmf-config/InitialiseSettings.php
+++ b/wmf-config/InitialiseSettings.php
@@ -7323,14 +7323,12 @@
'ruwiki' => false, // T33650
'sqwiki' => false, // T27822
'ukwiki' => false, // T35273
-   'bswiki' => false, // T158662
 ],
 
 'wgUseFilePatrol' => array(
'default' => true,
'huwiki' => false, // T21241
'ruwiki' => false, // T154285
-   'bswiki' => false, // T158662
 ),
 
 # wgNoFollow... @{
@@ -7877,15 +7875,10 @@
'autopatrolled' => [ 'autopatrol' => true, ],
],
'bswiki' => [
+   'patroller' => [ 'patrol' => true ],
+   'autopatrolled' => [ 'autopatrol' => true ],
'rollbacker' => [ 'rollback' => true ],
-   'flood' => [
-   'bot' => true, // T52425
-   'autopatrol' => false, //T158662
-   ],
-   'sysop' => [ // T158662
-   'autopatrol' => false,
-   'patrol' => false,
-   ],
+   'flood' => [ 'bot' => true ], // T52425
],
'cawiki' => [
'user' => [ 'patrol' => false ],
diff --git a/wmf-config/flaggedrevs.php b/wmf-config/flaggedrevs.php
index 9982e90..ebd8c5a 100644
--- a/wmf-config/flaggedrevs.php
+++ b/wmf-config/flaggedrevs.php
@@ -81,17 +81,6 @@
$wgRemoveGroups['sysop'] = array_diff( $wgRemoveGroups['sysop'], [ 
'editor' ] );
 }
 
-elseif ( $wgDBname == 'bswiki' ) { //T158662
-
-   $wgFlaggedRevsTags = [
-   'status' => [ 'levels' => 1, 'quality' => 2, 'pristine' => 3 ],
-   ];
-
-   $wgGroupPermissions['sysop']['stablesettings'] = true;
-   #Remove reviewer group
-   unset( $wgGroupPermissions['reviewer'] );
-}
-
 elseif ( $wgDBname == 'cewiki' ) { // based on ruwiki settings
 
// T58408

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I0d1e983ecba7ea07e1d5a3aaf50c80967d2e4771
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Revert "Group0 to 1.29.0-wmf.17"

2017-03-21 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/343970 )

Change subject: Revert "Group0 to 1.29.0-wmf.17"
..

Revert "Group0 to 1.29.0-wmf.17"

This reverts commit 2055984f515a93a6ac30a45141063f8404f114cc.

Change-Id: I370b589086d60412ec4dc97e750a1522a6242a8b
---
M php
M wikiversions.json
2 files changed, 6 insertions(+), 6 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/70/343970/1

diff --git a/php b/php
index 36c0bf9..e51633e 12
--- a/php
+++ b/php
@@ -1 +1 @@
-php-1.29.0-wmf.17
\ No newline at end of file
+php-1.29.0-wmf.16
\ No newline at end of file
diff --git a/wikiversions.json b/wikiversions.json
index 51fa491..4b4eebc 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -481,7 +481,7 @@
 "maiwiki": "php-1.29.0-wmf.16",
 "map_bmswiki": "php-1.29.0-wmf.16",
 "mdfwiki": "php-1.29.0-wmf.16",
-"mediawikiwiki": "php-1.29.0-wmf.17",
+"mediawikiwiki": "php-1.29.0-wmf.16",
 "metawiki": "php-1.29.0-wmf.16",
 "mgwiki": "php-1.29.0-wmf.16",
 "mgwikibooks": "php-1.29.0-wmf.16",
@@ -751,9 +751,9 @@
 "tawiktionary": "php-1.29.0-wmf.16",
 "tcywiki": "php-1.29.0-wmf.16",
 "tenwiki": "php-1.29.0-wmf.16",
-"test2wiki": "php-1.29.0-wmf.17",
-"testwiki": "php-1.29.0-wmf.17",
-"testwikidatawiki": "php-1.29.0-wmf.17",
+"test2wiki": "php-1.29.0-wmf.16",
+"testwiki": "php-1.29.0-wmf.16",
+"testwikidatawiki": "php-1.29.0-wmf.16",
 "tetwiki": "php-1.29.0-wmf.16",
 "tewiki": "php-1.29.0-wmf.16",
 "tewikibooks": "php-1.29.0-wmf.16",
@@ -883,7 +883,7 @@
 "zawikiquote": "php-1.29.0-wmf.16",
 "zawiktionary": "php-1.29.0-wmf.16",
 "zeawiki": "php-1.29.0-wmf.16",
-"zerowiki": "php-1.29.0-wmf.17",
+"zerowiki": "php-1.29.0-wmf.16",
 "zh_classicalwiki": "php-1.29.0-wmf.16",
 "zh_min_nanwiki": "php-1.29.0-wmf.16",
 "zh_min_nanwikibooks": "php-1.29.0-wmf.16",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I370b589086d60412ec4dc97e750a1522a6242a8b
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Group0 to 1.29.0-wmf.17

2017-03-21 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/343959 )

Change subject: Group0 to 1.29.0-wmf.17
..

Group0 to 1.29.0-wmf.17

Change-Id: I45341fe814e6d024e2f116cbaadf0a14b304c328
---
M php
M wikiversions.json
2 files changed, 6 insertions(+), 6 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/59/343959/1

diff --git a/php b/php
index e51633e..36c0bf9 12
--- a/php
+++ b/php
@@ -1 +1 @@
-php-1.29.0-wmf.16
\ No newline at end of file
+php-1.29.0-wmf.17
\ No newline at end of file
diff --git a/wikiversions.json b/wikiversions.json
index 4b4eebc..51fa491 100644
--- a/wikiversions.json
+++ b/wikiversions.json
@@ -481,7 +481,7 @@
 "maiwiki": "php-1.29.0-wmf.16",
 "map_bmswiki": "php-1.29.0-wmf.16",
 "mdfwiki": "php-1.29.0-wmf.16",
-"mediawikiwiki": "php-1.29.0-wmf.16",
+"mediawikiwiki": "php-1.29.0-wmf.17",
 "metawiki": "php-1.29.0-wmf.16",
 "mgwiki": "php-1.29.0-wmf.16",
 "mgwikibooks": "php-1.29.0-wmf.16",
@@ -751,9 +751,9 @@
 "tawiktionary": "php-1.29.0-wmf.16",
 "tcywiki": "php-1.29.0-wmf.16",
 "tenwiki": "php-1.29.0-wmf.16",
-"test2wiki": "php-1.29.0-wmf.16",
-"testwiki": "php-1.29.0-wmf.16",
-"testwikidatawiki": "php-1.29.0-wmf.16",
+"test2wiki": "php-1.29.0-wmf.17",
+"testwiki": "php-1.29.0-wmf.17",
+"testwikidatawiki": "php-1.29.0-wmf.17",
 "tetwiki": "php-1.29.0-wmf.16",
 "tewiki": "php-1.29.0-wmf.16",
 "tewikibooks": "php-1.29.0-wmf.16",
@@ -883,7 +883,7 @@
 "zawikiquote": "php-1.29.0-wmf.16",
 "zawiktionary": "php-1.29.0-wmf.16",
 "zeawiki": "php-1.29.0-wmf.16",
-"zerowiki": "php-1.29.0-wmf.16",
+"zerowiki": "php-1.29.0-wmf.17",
 "zh_classicalwiki": "php-1.29.0-wmf.16",
 "zh_min_nanwiki": "php-1.29.0-wmf.16",
 "zh_min_nanwikibooks": "php-1.29.0-wmf.16",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I45341fe814e6d024e2f116cbaadf0a14b304c328
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations/puppet[production]: Scap: set deployment_server correctly

2017-04-12 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/347898 )

Change subject: Scap: set deployment_server correctly
..

Scap: set deployment_server correctly

The only place that the deployment_server should be set is in the global
config. This change corrects the global scap config. When we need to
change the deployment_server to mira, we should be able to update the
scap::deployment_server value here to ensure that the value is updated
for all repositories that are deployed via Scap3.

Bug: T162814
Change-Id: I27ed2e8989db8b45e7b3397d37b961065f606bee
---
M hieradata/common/scap.yaml
M modules/scap/templates/scap.cfg.erb
2 files changed, 3 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/98/347898/1

diff --git a/hieradata/common/scap.yaml b/hieradata/common/scap.yaml
index edff342..115c26a 100644
--- a/hieradata/common/scap.yaml
+++ b/hieradata/common/scap.yaml
@@ -1,2 +1,2 @@
 # scap3 (git-based) deployment server
-scap::deployment_server: "deployment.eqiad.wmnet"
+scap::deployment_server: "tin.eqiad.wmnet"
diff --git a/modules/scap/templates/scap.cfg.erb 
b/modules/scap/templates/scap.cfg.erb
index ac4a753..ab222fd 100644
--- a/modules/scap/templates/scap.cfg.erb
+++ b/modules/scap/templates/scap.cfg.erb
@@ -68,7 +68,7 @@
 
 [wmnet]
 # Wikimedia Foundation production cluster configuration
-master_rsync: deployment.eqiad.wmnet
+master_rsync: <%= @deployment_server %>
 statsd_host: statsd.eqiad.wmnet
 tcpircbot_host: icinga.wikimedia.org
 udp2log_host: mwlog1001.eqiad.wmnet
@@ -83,7 +83,7 @@
 [wikimedia.org]
 # Wikimedia Foundation production cluster configuration for "public" hosts
 # This should match the [wmnet] configuration
-master_rsync: deployment.eqiad.wmnet
+master_rsync: <%= @deployment_server %>
 statsd_host: statsd.eqiad.wmnet
 tcpircbot_host: icinga.wikimedia.org
 udp2log_host: mwlog1001.eqiad.wmnet

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

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

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


[MediaWiki-commits] [Gerrit] mediawiki...MobileFrontend[wmf/1.29.0-wmf.20]: formatter: Increase log level of infobox message

2017-04-12 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/347896 )

Change subject: formatter: Increase log level of infobox message
..

formatter: Increase log level of infobox message

I61d20ea was only partially correct. The

  'mobile' => 'debug',

entry of $wmgMonologChannels sets the minimum log level for the udp2log
handler. Unless the minimum log level isn't DEBUG, the logstash handler
still has a minimum log level of INFO [0].

[0] 
https://github.com/wikimedia/operations-mediawiki-config/blob/master/wmf-config/logging.php#L216

Bug: T149884
Change-Id: I426409fcd39d39b5e6d1173eb8b5e0e2ebfdf70e
(cherry picked from commit f236a1d202e7e8cc0d57d1b611f4a8338234775a)
---
M includes/MobileFormatter.php
M tests/phpunit/MobileFormatterTest.php
2 files changed, 2 insertions(+), 2 deletions(-)


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

diff --git a/includes/MobileFormatter.php b/includes/MobileFormatter.php
index 0686414..7644c70 100644
--- a/includes/MobileFormatter.php
+++ b/includes/MobileFormatter.php
@@ -265,7 +265,7 @@
private function logInfoboxesWrappedInContainers( $leadSectionBody, 
DOMXPath $xPath ) {
$infoboxes = $xPath->query( 
'.//table[contains(@class,"infobox")]', $leadSectionBody );
if ( $infoboxes->length > 0 ) {
-   \MediaWiki\Logger\LoggerFactory::getInstance( 'mobile' 
)->debug(
+   \MediaWiki\Logger\LoggerFactory::getInstance( 'mobile' 
)->info(
"Found infobox wrapped with container on 
{$this->title} (rev:{$this->revId})"
);
}
diff --git a/tests/phpunit/MobileFormatterTest.php 
b/tests/phpunit/MobileFormatterTest.php
index 1e2973c..174ce23 100644
--- a/tests/phpunit/MobileFormatterTest.php
+++ b/tests/phpunit/MobileFormatterTest.php
@@ -838,7 +838,7 @@
 
$loggerMock = $this->getMock( \Psr\Log\LoggerInterface::class );
$loggerMock->expects( $this->once() )
-   ->method( 'debug' )
+   ->method( 'info' )
->will( $this->returnCallback( function( $message ) use 
( $title ) {
// Debug message contains Page title
$this->assertContains( $title, $message );

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I426409fcd39d39b5e6d1173eb8b5e0e2ebfdf70e
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/MobileFrontend
Gerrit-Branch: wmf/1.29.0-wmf.20
Gerrit-Owner: Thcipriani 
Gerrit-Reviewer: Phuedx 

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


[MediaWiki-commits] [Gerrit] operations/puppet[production]: Scap: update version to 3.5.4-1

2017-04-05 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/346579 )

Change subject: Scap: update version to 3.5.4-1
..

Scap: update version to 3.5.4-1

Bug: T127762
Change-Id: Idb765b8492348957562d3030f97cc0da3e79e83c
---
M modules/scap/manifests/init.pp
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/79/346579/1

diff --git a/modules/scap/manifests/init.pp b/modules/scap/manifests/init.pp
index 0c7954a..33dfcc9 100644
--- a/modules/scap/manifests/init.pp
+++ b/modules/scap/manifests/init.pp
@@ -12,7 +12,7 @@
 class scap (
 $deployment_server = 'deployment',
 $wmflabs_master = 'deployment-tin.deployment-prep.eqiad.wmflabs',
-$version = '3.5.3-1',
+$version = '3.5.4-1',
 ) {
 package { 'scap':
 ensure => $version,

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

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

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


[MediaWiki-commits] [Gerrit] mediawiki...translators[master]: Scap: Remove git_server from scap.cfg

2017-04-12 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/347931 )

Change subject: Scap: Remove git_server from scap.cfg
..

Scap: Remove git_server from scap.cfg

This change will cause scap to fall back to using the globally
configured git_server.

Bug: T162814
Change-Id: I72ed70a06afc082c4a9a5b08f181467fb589c533
Depends-On: I27ed2e8989db8b45e7b3397d37b961065f606bee
---
M scap/scap.cfg
1 file changed, 0 insertions(+), 2 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/services/zotero/translators 
refs/changes/31/347931/1

diff --git a/scap/scap.cfg b/scap/scap.cfg
index 5c5d638..9fbfa95 100644
--- a/scap/scap.cfg
+++ b/scap/scap.cfg
@@ -10,8 +10,6 @@
 lock_file: /tmp/scap.zotero.lock
 
 [wmnet]
-git_server: tin.eqiad.wmnet
 
 [deployment-prep.eqiad.wmflabs]
-git_server: deployment-tin.deployment-prep.eqiad.wmflabs
 dsh_targets: betacluster

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I72ed70a06afc082c4a9a5b08f181467fb589c533
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/services/zotero/translators
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] mediawiki...deploy[master]: Scap: Remove git_server from scap.cfg

2017-04-12 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/347914 )

Change subject: Scap: Remove git_server from scap.cfg
..

Scap: Remove git_server from scap.cfg

This change will cause scap to fall back to using the globally
configured git_server.

Bug: T162814
Change-Id: I38c218408ce41ae6515c122448077b349c6f1d8b
Depends-On: I27ed2e8989db8b45e7b3397d37b961065f606bee
---
M scap/scap.cfg
1 file changed, 0 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/services/citoid/deploy 
refs/changes/14/347914/1

diff --git a/scap/scap.cfg b/scap/scap.cfg
index d737e59..90a3c18 100644
--- a/scap/scap.cfg
+++ b/scap/scap.cfg
@@ -14,10 +14,8 @@
 config_deploy: True
 
 [wmnet]
-git_server: tin.eqiad.wmnet
 
 [deployment-prep.eqiad.wmflabs]
 environment: beta
-git_server: deployment-tin.deployment-prep.eqiad.wmflabs
 server_groups: default
 dsh_targets: betacluster

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I38c218408ce41ae6515c122448077b349c6f1d8b
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/services/citoid/deploy
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] labs...deploy[master]: Scap: Remove git_server from scap.cfg

2017-04-12 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/347926 )

Change subject: Scap: Remove git_server from scap.cfg
..

Scap: Remove git_server from scap.cfg

This change will cause scap to fall back to using the globally
configured git_server.

Bug: T162814
Change-Id: Ib273d5dcf7c99a9a7231a43acd728613831762e5
Depends-On: I27ed2e8989db8b45e7b3397d37b961065f606bee
---
M scap/scap.cfg
1 file changed, 0 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/labs/striker/deploy 
refs/changes/26/347926/1

diff --git a/scap/scap.cfg b/scap/scap.cfg
index 493fafb..96e45aa 100644
--- a/scap/scap.cfg
+++ b/scap/scap.cfg
@@ -12,8 +12,6 @@
 max_failures: 1
 
 [wmnet]
-git_server: deployment.eqiad.wmnet
 
 [wmflabs]
-git_server: striker-deploy03.striker.eqiad.wmflabs
 dsh_targets: dsh/labs-striker

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib273d5dcf7c99a9a7231a43acd728613831762e5
Gerrit-PatchSet: 1
Gerrit-Project: labs/striker/deploy
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] maps...deploy[master]: Scap: Remove git_server from scap.cfg

2017-04-12 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/347927 )

Change subject: Scap: Remove git_server from scap.cfg
..

Scap: Remove git_server from scap.cfg

This change will cause scap to fall back to using the globally
configured git_server.

Bug: T162814
Change-Id: I3f8557268113595f191f5f7600b3b5909f922208
Depends-On: I27ed2e8989db8b45e7b3397d37b961065f606bee
---
M scap/scap.cfg
1 file changed, 0 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/maps/tilerator/deploy 
refs/changes/27/347927/1

diff --git a/scap/scap.cfg b/scap/scap.cfg
index 8a5d18d..8baf966 100644
--- a/scap/scap.cfg
+++ b/scap/scap.cfg
@@ -14,7 +14,6 @@
 config_deploy: True
 
 [wmnet]
-git_server: tin.eqiad.wmnet
 
 # [deployment-prep.eqiad.wmflabs]
 # git_server: deployment-tin.deployment-prep.eqiad.wmnet

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I3f8557268113595f191f5f7600b3b5909f922208
Gerrit-PatchSet: 1
Gerrit-Project: maps/tilerator/deploy
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] mediawiki...translation-server[master]: Scap: Remove git_server from scap.cfg

2017-04-12 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/347930 )

Change subject: Scap: Remove git_server from scap.cfg
..

Scap: Remove git_server from scap.cfg

This change will cause scap to fall back to using the globally
configured git_server.

Bug: T162814
Change-Id: Id5d77eec0886dfc88a2cd771f97d340f295be413
Depends-On: I27ed2e8989db8b45e7b3397d37b961065f606bee
---
M scap/scap.cfg
1 file changed, 0 insertions(+), 2 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/services/zotero/translation-server 
refs/changes/30/347930/1

diff --git a/scap/scap.cfg b/scap/scap.cfg
index 8ffa6c1..3ab74e1 100644
--- a/scap/scap.cfg
+++ b/scap/scap.cfg
@@ -10,8 +10,6 @@
 lock_file: /tmp/scap.zotero.lock
 
 [wmnet]
-git_server: tin.eqiad.wmnet
 
 [deployment-prep.eqiad.wmflabs]
-git_server: deployment-tin.deployment-prep.eqiad.wmnet
 dsh_targets: betacluster

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Id5d77eec0886dfc88a2cd771f97d340f295be413
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/services/zotero/translation-server
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] mediawiki...deploy[master]: Scap: Remove git_server from scap.cfg

2017-04-12 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/347928 )

Change subject: Scap: Remove git_server from scap.cfg
..

Scap: Remove git_server from scap.cfg

This change will cause scap to fall back to using the globally
configured git_server.

Bug: T162814
Change-Id: I0559183524d94a85dccb4b08746ff1bd57e7a4ce
Depends-On: I27ed2e8989db8b45e7b3397d37b961065f606bee
---
M scap/scap.cfg
1 file changed, 0 insertions(+), 2 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/services/trending-edits/deploy 
refs/changes/28/347928/1

diff --git a/scap/scap.cfg b/scap/scap.cfg
index fe4c2cb..bb05536 100644
--- a/scap/scap.cfg
+++ b/scap/scap.cfg
@@ -14,10 +14,8 @@
 config_deploy: True
 
 [wmnet]
-git_server: tin.eqiad.wmnet
 
 [deployment-prep.eqiad.wmflabs]
 environment: beta
-git_server: deployment-tin.deployment-prep.eqiad.wmflabs
 server_groups: default
 dsh_targets: betacluster

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I0559183524d94a85dccb4b08746ff1bd57e7a4ce
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/services/trending-edits/deploy
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] wikidata...deploy[master]: Scap: Remove git_server from scap.cfg

2017-04-12 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/347929 )

Change subject: Scap: Remove git_server from scap.cfg
..

Scap: Remove git_server from scap.cfg

This change will cause scap to fall back to using the globally
configured git_server.

Bug: T162814
Change-Id: I371d750b24b6f9b19d7c51dc284b3549f331f27d
Depends-On: I27ed2e8989db8b45e7b3397d37b961065f606bee
---
M scap/scap.cfg
1 file changed, 0 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/wikidata/query/deploy 
refs/changes/29/347929/1

diff --git a/scap/scap.cfg b/scap/scap.cfg
index cb5ac88..c9a458d 100644
--- a/scap/scap.cfg
+++ b/scap/scap.cfg
@@ -13,7 +13,5 @@
 config_deploy: True
 
 [wmflabs]
-git_server: deployment-bastion.deployment-prep.eqiad.wmflabs
 
 [wmnet]
-git_server: deployment.eqiad.wmnet

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I371d750b24b6f9b19d7c51dc284b3549f331f27d
Gerrit-PatchSet: 1
Gerrit-Project: wikidata/query/deploy
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] mediawiki...deploy[master]: Scap: Remove git_server from scap.cfg

2017-04-12 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/347920 )

Change subject: Scap: Remove git_server from scap.cfg
..

Scap: Remove git_server from scap.cfg

This change will cause scap to fall back to using the globally
configured git_server.

Bug: T162814
Change-Id: I75c236059ca77f667bc4d76533b163f5d89555da
Depends-On: I27ed2e8989db8b45e7b3397d37b961065f606bee
---
M scap/scap.cfg
1 file changed, 0 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/services/mathoid/deploy 
refs/changes/20/347920/1

diff --git a/scap/scap.cfg b/scap/scap.cfg
index 1452976..f51eea7 100644
--- a/scap/scap.cfg
+++ b/scap/scap.cfg
@@ -14,10 +14,8 @@
 config_deploy: True
 
 [wmnet]
-git_server: tin.eqiad.wmnet
 
 [deployment-prep.eqiad.wmflabs]
 environment: beta
-git_server: deployment-tin.deployment-prep.eqiad.wmflabs
 server_groups: default
 dsh_targets: betacluster

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I75c236059ca77f667bc4d76533b163f5d89555da
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/services/mathoid/deploy
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] mediawiki...deploy[master]: Scap: Remove git_server from scap.cfg

2017-04-12 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/347923 )

Change subject: Scap: Remove git_server from scap.cfg
..

Scap: Remove git_server from scap.cfg

This change will cause scap to fall back to using the globally
configured git_server.

Bug: T162814
Change-Id: I2438c1751823ab4abc6035f26063980a53736f6c
Depends-On: I27ed2e8989db8b45e7b3397d37b961065f606bee
---
M scap/scap.cfg
1 file changed, 0 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/services/parsoid/deploy 
refs/changes/23/347923/1

diff --git a/scap/scap.cfg b/scap/scap.cfg
index c49facd..b02e6df 100644
--- a/scap/scap.cfg
+++ b/scap/scap.cfg
@@ -15,10 +15,8 @@
 failure_limit: 1
 
 [wmnet]
-git_server: tin.eqiad.wmnet
 
 [deployment-prep.eqiad.wmflabs]
 environment: beta
-git_server: deployment-tin.deployment-prep.eqiad.wmflabs
 server_groups: default
 dsh_targets: betacluster

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I2438c1751823ab4abc6035f26063980a53736f6c
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/services/parsoid/deploy
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] mediawiki...deploy[master]: Scap: Remove git_server from scap.cfg

2017-04-12 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/347919 )

Change subject: Scap: Remove git_server from scap.cfg
..

Scap: Remove git_server from scap.cfg

This change will cause scap to fall back to using the globally
configured git_server.

Bug: T162814
Change-Id: I45133ead29bdc9afec592a91e86709e2bb199316
Depends-On: I27ed2e8989db8b45e7b3397d37b961065f606bee
---
M scap/scap.cfg
1 file changed, 0 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/services/graphoid/deploy 
refs/changes/19/347919/1

diff --git a/scap/scap.cfg b/scap/scap.cfg
index 9de118f..a94babd 100644
--- a/scap/scap.cfg
+++ b/scap/scap.cfg
@@ -13,10 +13,8 @@
 lock_file: /tmp/scap.graphoid.lock
 
 [wmnet]
-git_server: tin.eqiad.wmnet
 
 [deployment-prep.eqiad.wmflabs]
 environment: beta
-git_server: deployment-tin.deployment-prep.eqiad.wmflabs
 server_groups: default
 dsh_targets: targets-betacluster

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I45133ead29bdc9afec592a91e86709e2bb199316
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/services/graphoid/deploy
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] mediawiki...deploy[master]: Scap: Remove git_server from scap.cfg

2017-04-12 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/347921 )

Change subject: Scap: Remove git_server from scap.cfg
..

Scap: Remove git_server from scap.cfg

This change will cause scap to fall back to using the globally
configured git_server.

Bug: T162814
Change-Id: I9aca94556052dd75af95794f32e6172d9e5c32f4
Depends-On: I27ed2e8989db8b45e7b3397d37b961065f606bee
---
M scap/scap.cfg
1 file changed, 0 insertions(+), 2 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/services/mobileapps/deploy 
refs/changes/21/347921/1

diff --git a/scap/scap.cfg b/scap/scap.cfg
index a5f3cb4..fb01cfa 100644
--- a/scap/scap.cfg
+++ b/scap/scap.cfg
@@ -14,10 +14,8 @@
 config_deploy: True
 
 [wmnet]
-git_server: tin.eqiad.wmnet
 
 [deployment-prep.eqiad.wmflabs]
 environment: beta
-git_server: deployment-tin.deployment-prep.eqiad.wmflabs
 server_groups: default
 dsh_targets: betacluster

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9aca94556052dd75af95794f32e6172d9e5c32f4
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/services/mobileapps/deploy
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


[MediaWiki-commits] [Gerrit] operations...prometheus_jmx_exporter[master]: Scap: Remove git_server from scap.cfg

2017-04-12 Thread Thcipriani (Code Review)
Thcipriani has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/347924 )

Change subject: Scap: Remove git_server from scap.cfg
..

Scap: Remove git_server from scap.cfg

This change will cause scap to fall back to using the globally
configured git_server.

Bug: T162814
Change-Id: I05846db9440cae8fe83be767b49f3dd6bc169f0e
Depends-On: I27ed2e8989db8b45e7b3397d37b961065f606bee
---
M scap/scap.cfg
1 file changed, 0 insertions(+), 2 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/operations/software/prometheus_jmx_exporter 
refs/changes/24/347924/1

diff --git a/scap/scap.cfg b/scap/scap.cfg
index 641d517..d0c26c9 100644
--- a/scap/scap.cfg
+++ b/scap/scap.cfg
@@ -7,8 +7,6 @@
 git_fat: True
 
 [wmnet]
-git_server: deployment.eqiad.wmnet
 
 [deployment-prep.eqiad.wmflabs]
-git_server: deployment-tin.deployment-prep.eqiad.wmflabs
 dsh_targets: restbase-betacluster

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I05846db9440cae8fe83be767b49f3dd6bc169f0e
Gerrit-PatchSet: 1
Gerrit-Project: operations/software/prometheus_jmx_exporter
Gerrit-Branch: master
Gerrit-Owner: Thcipriani 

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


<    1   2   3   4   5   >