[MediaWiki-commits] [Gerrit] mediawiki...Video[master]: Update our forked version of Special:Undelete from MW 1.24.1...

2018-01-15 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/404273 )

Change subject: Update our forked version of Special:Undelete from MW 1.24.1 
version to 1.30.0 version
..

Update our forked version of Special:Undelete from MW 1.24.1 version to 1.30.0 
version

The fact that we even *have* to copy this much code just to add support
for a new namespace to Special:Undelete is absurd and ridiculous.

Mostly copypasted from core, the changes specific to the Video extension
are appropriately marked as such with the "CORE HACK" tags to easily
identify them.

Untested.

Change-Id: Ic6b7b494ec8bbd416d0488ed52f54dd49348c241
---
M includes/specials/SpecialUndeleteWithVideoSupport.php
1 file changed, 187 insertions(+), 113 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Video 
refs/changes/73/404273/1

diff --git a/includes/specials/SpecialUndeleteWithVideoSupport.php 
b/includes/specials/SpecialUndeleteWithVideoSupport.php
index 83ab994..0a8d2ba 100644
--- a/includes/specials/SpecialUndeleteWithVideoSupport.php
+++ b/includes/specials/SpecialUndeleteWithVideoSupport.php
@@ -3,7 +3,7 @@
  * A hacked version of MediaWiki's standard Special:Undelete for supporting the
  * undeletion of videos without changing core MediaWiki code.
  *
- * Based on MediaWiki 1.24.1's /includes/specials/SpecialUndelete.php.
+ * Based on MediaWiki 1.30.0's /includes/specials/SpecialUndelete.php.
  *
  * Check the code comments to see what's changed.
  * The four major chunks of code which have been added are marked with "CORE 
HACK",
@@ -13,8 +13,11 @@
  *
  * @file
  * @ingroup SpecialPage
- * @date 4 May 2015
+ * @date 15 January 2017
  */
+
+// Not sure if we even need this, but better safe than sorry...
+use Wikimedia\Rdbms\ResultWrapper;
 
 class SpecialUndeleteWithVideoSupport extends SpecialUndelete {
/** @var Title */
@@ -49,6 +52,7 @@
$posted = $request->wasPosted() &&
$user->matchEditToken( $request->getVal( 'wpEditToken' 
) );
$this->mRestore = $request->getCheck( 'restore' ) && $posted;
+   $this->mRevdel = $request->getCheck( 'revdel' ) && $posted;
$this->mInvert = $request->getCheck( 'invert' ) && $posted;
$this->mPreview = $request->getCheck( 'preview' ) && $posted;
$this->mDiff = $request->getCheck( 'diff' );
@@ -72,10 +76,10 @@
}
 
if ( $this->mRestore || $this->mInvert ) {
-   $timestamps = array();
-   $this->mFileVersions = array();
+   $timestamps = [];
+   $this->mFileVersions = [];
foreach ( $request->getValues() as $key => $val ) {
-   $matches = array();
+   $matches = [];
if ( preg_match( '/^ts(\d{14})$/', $key, 
$matches ) ) {
array_push( $timestamps, $matches[1] );
}
@@ -107,6 +111,8 @@
}
 
function execute( $par ) {
+   $this->useTransactionalTimeLimit();
+
$user = $this->getUser();
 
$this->setHeaders();
@@ -128,9 +134,7 @@
return;
}
 
-   if ( method_exists( $out, 'addHelpLink' ) ) { // MW 1.25 or 
1.26+ thing
-   $out->addHelpLink( 'Help:Undelete' );
-   }
+   $this->addHelpLink( 'Help:Undelete' );
if ( $this->mAllowed ) {
$out->setPageTitle( $this->msg( 'undeletepage' ) );
} else {
@@ -178,32 +182,62 @@
}
}
// END CORE HACK
-   elseif ( $this->mRestore && $this->mAction == 'submit' ) {
-   $this->undelete();
+   elseif ( $this->mAction == 'submit' ) {
+   if ( $this->mRestore ) {
+   $this->undelete();
+   } elseif ( $this->mRevdel ) {
+   $this->redirectToRevDel();
+   }
} else {
$this->showHistory();
}
}
 
+   /**
+* Convert submitted form data to format expected by RevisionDelete and
+* redirect the request
+*/
+   private function redirectToRevDel() {
+   // CORE HACK
+   if ( $this->mTargetObj->inNamespace( NS_VIDEO ) ) {
+   $archive = new VideoPageArchive( $this->mTargetObj );
+   } else {
+   $archive = new PageArchive( $this->mTargetObj );
+   }
+   // CORE HACK END
+
+   $revisions = [];
+
+   foreach ( 

[MediaWiki-commits] [Gerrit] mediawiki...SocialProfile[master]: Use the $context object passed to the ArticleFromTitle hook ...

2018-01-15 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/404271 )

Change subject: Use the $context object passed to the ArticleFromTitle hook 
handler to avoid fatals
..

Use the $context object passed to the ArticleFromTitle hook handler to avoid 
fatals

Follow-up to I3501ebb7a562b87c12f3ad5c4a87883ed6c04701

Change-Id: I59d7676a7cb03518c79db26dafdc2e19e8f9facb
---
M UserProfile/UserProfileHooks.php
1 file changed, 1 insertion(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/SocialProfile 
refs/changes/71/404271/1

diff --git a/UserProfile/UserProfileHooks.php b/UserProfile/UserProfileHooks.php
index 173983b..1dc6f26 100644
--- a/UserProfile/UserProfileHooks.php
+++ b/UserProfile/UserProfileHooks.php
@@ -43,10 +43,9 @@
 * @param WikiPage|Article &$article
 * @return bool
 */
-   public static function onArticleFromTitle( &$title, &$article ) {
+   public static function onArticleFromTitle( &$title, &$article, $context 
) {
global $wgHooks, $wgUserPageChoice;
 
-   $context = $article->getContext();
$out = $context->getOutput();
$request = $context->getRequest();
 

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I59d7676a7cb03518c79db26dafdc2e19e8f9facb
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/SocialProfile
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...SharedHelpPages[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403877 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: I25d09ce3dff4363fd3569fbe6e52b2177d5a2c1e
---
M SharedHelpPage.body.php
1 file changed, 2 insertions(+), 2 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/SharedHelpPages 
refs/changes/77/403877/1

diff --git a/SharedHelpPage.body.php b/SharedHelpPage.body.php
index a065d38..800fbf7 100644
--- a/SharedHelpPage.body.php
+++ b/SharedHelpPage.body.php
@@ -276,8 +276,8 @@
// either from memcached, or failing that, via an API query.
global $wgContLang, $wgLanguageCode, $wgMemc;
 
-   $projectNSCacheKey = wfMemcKey( 'helppages', $wgLanguageCode, 
'projectns' );
-   $projectTalkNSCacheKey = wfMemcKey( 'helppages', 
$wgLanguageCode, 'projecttalkns' );
+   $projectNSCacheKey = $wgMemc->makeKey( 'helppages', 
$wgLanguageCode, 'projectns' );
+   $projectTalkNSCacheKey = $wgMemc->makeKey( 'helppages', 
$wgLanguageCode, 'projecttalkns' );
 
$remoteWikiProjectNS = $wgMemc->get( $projectNSCacheKey );
$remoteWikiProjectTalkNS = $wgMemc->get( $projectTalkNSCacheKey 
);

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I25d09ce3dff4363fd3569fbe6e52b2177d5a2c1e
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/SharedHelpPages
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...NewSignupPage[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403876 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: I8993282673199d5050a0a62d2384382c69c81da2
---
M includes/auth/NewSignupPageSecondaryAuthenticationProvider.php
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/NewSignupPage 
refs/changes/76/403876/1

diff --git a/includes/auth/NewSignupPageSecondaryAuthenticationProvider.php 
b/includes/auth/NewSignupPageSecondaryAuthenticationProvider.php
index 2f3194e..0372854 100644
--- a/includes/auth/NewSignupPageSecondaryAuthenticationProvider.php
+++ b/includes/auth/NewSignupPageSecondaryAuthenticationProvider.php
@@ -97,7 +97,7 @@
}
 
if ( $wgRegisterTrack ) {
-   $wgMemc->delete( wfMemcKey( 'users', 'new', '1' ) );
+   $wgMemc->delete( $wgMemc->makeKey( 'users', 'new', '1' 
) );
 
// How the user registered (via email from friend, just 
on the site etc.)?
$from = $req->from;

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I8993282673199d5050a0a62d2384382c69c81da2
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/NewSignupPage
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...EditcountAdditions[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403873 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: Ic46307e405b72087139c8eaf47f1b33e5474181e
---
M EditcountAdditions.class.php
1 file changed, 2 insertions(+), 2 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/EditcountAdditions 
refs/changes/73/403873/1

diff --git a/EditcountAdditions.class.php b/EditcountAdditions.class.php
index ad72985..77c196c 100644
--- a/EditcountAdditions.class.php
+++ b/EditcountAdditions.class.php
@@ -37,7 +37,7 @@
global $wgMemc;
 
$uid = $user->getId();
-   $key = wfMemcKey( 'editcount', 'accurate', $uid );
+   $key = $wgMemc->makeKey( 'editcount', 'accurate', $uid );
$editCount = $wgMemc->get( $key );
 
if ( $editCount === false ) {
@@ -67,7 +67,7 @@
// No need to run this code for anons since anons don't have 
preferences
// nor does Special:Editcount work for them
if ( $user && $user->isLoggedIn() ) {
-   $key = wfMemcKey( 'editcount', 'accurate', 
$user->getId() );
+   $key = $wgMemc->makeKey( 'editcount', 'accurate', 
$user->getId() );
$wgMemc->incr( $key );
}
return true;

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic46307e405b72087139c8eaf47f1b33e5474181e
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/EditcountAdditions
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...PollNY[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403872 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: I15f00e509f4c69028ef4c4846bf256dff39df890
---
M includes/Poll.class.php
M includes/PollNY.hooks.php
M includes/specials/SpecialCreatePoll.php
3 files changed, 3 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/PollNY 
refs/changes/72/403872/1

diff --git a/includes/Poll.class.php b/includes/Poll.class.php
index 77bbf76..c836277 100644
--- a/includes/Poll.class.php
+++ b/includes/Poll.class.php
@@ -330,7 +330,7 @@
 
$polls = array();
// Try cache
-   $key = wfMemcKey( 'polls', 'order', $order, 'count', $count );
+   $key = $wgMemc->makeKey( 'polls', 'order', $order, 'count', 
$count );
$data = $wgMemc->get( $key );
if( !empty( $data ) && is_array( $data ) ) {
wfDebug( "Got polls list ($count) ordered by {$order} 
from cache\n" );
diff --git a/includes/PollNY.hooks.php b/includes/PollNY.hooks.php
index 9b81f63..0879e3d 100644
--- a/includes/PollNY.hooks.php
+++ b/includes/PollNY.hooks.php
@@ -55,7 +55,7 @@
if ( $s !== false ) {
// Clear profile cache for user id that created 
poll
global $wgMemc;
-   $key = wfMemcKey( 'user', 'profile', 'polls', 
$s->poll_user_id );
+   $key = $wgMemc->makeKey( 'user', 'profile', 
'polls', $s->poll_user_id );
$wgMemc->delete( $key );
 
// Delete poll record
diff --git a/includes/specials/SpecialCreatePoll.php 
b/includes/specials/SpecialCreatePoll.php
index 02fed89..6ebb524 100644
--- a/includes/specials/SpecialCreatePoll.php
+++ b/includes/specials/SpecialCreatePoll.php
@@ -141,7 +141,7 @@
}
 
// Clear poll cache
-   $key = wfMemcKey( 'user', 'profile', 'polls', 
$user->getID() );
+   $key = $wgMemc->makeKey( 'user', 'profile', 'polls', 
$user->getId() );
$wgMemc->delete( $key );
 
// Redirect to new poll page

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I15f00e509f4c69028ef4c4846bf256dff39df890
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/PollNY
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...CodeReview[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403871 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: Ibd174f842230118285b682b03c49ec2a432f7764
---
M backend/CodeRepository.php
M backend/RepoStats.php
2 files changed, 14 insertions(+), 4 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/CodeReview 
refs/changes/71/403871/1

diff --git a/backend/CodeRepository.php b/backend/CodeRepository.php
index 4b60804..eb90ac4 100644
--- a/backend/CodeRepository.php
+++ b/backend/CodeRepository.php
@@ -188,11 +188,13 @@
 */
public function getAuthorList() {
global $wgMemc;
-   $key = wfMemcKey( 'codereview', 'authors', $this->getId() );
+
+   $key = $wgMemc->makeKey( 'codereview', 'authors', 
$this->getId() );
$authors = $wgMemc->get( $key );
if ( is_array( $authors ) ) {
return $authors;
}
+
$dbr = wfGetDB( DB_REPLICA );
$res = $dbr->select(
'code_rev',
@@ -205,6 +207,7 @@
'LIMIT' => 500
]
);
+
$authors = [];
foreach ( $res as $row ) {
if ( $row->cr_author !== null ) {
@@ -214,7 +217,9 @@
];
}
}
+
$wgMemc->set( $key, $authors, 3600 * 24 );
+
return $authors;
}
 
@@ -232,11 +237,13 @@
 */
public function getTagList( $recache = false ) {
global $wgMemc;
-   $key = wfMemcKey( 'codereview', 'tags', $this->getId() );
+
+   $key = $wgMemc->makeKey( 'codereview', 'tags', $this->getId() );
$tags = $wgMemc->get( $key );
if ( is_array( $tags ) && !$recache ) {
return $tags;
}
+
$dbr = wfGetDB( DB_REPLICA );
$res = $dbr->select(
'code_tags',
@@ -249,11 +256,14 @@
'LIMIT' => 500
]
);
+
$tags = [];
foreach ( $res as $row ) {
$tags[$row->ct_tag] = $row->revs;
}
+
$wgMemc->set( $key, $tags, 3600 * 3 );
+
return $tags;
}
 
@@ -355,7 +365,7 @@
 
// Set up the cache key, which will be used both to check if 
already in the
// cache, and to write the final result to the cache.
-   $key = wfMemcKey( 'svn', md5( $this->path ), 'diff', $rev1, 
$rev2 );
+   $key = $wgMemc->makeKey( 'svn', md5( $this->path ), 'diff', 
$rev1, $rev2 );
 
// If not set to explicitly skip the cache, get the current 
diff from memcached
// directly.
diff --git a/backend/RepoStats.php b/backend/RepoStats.php
index 1e9d779..de27b7f 100644
--- a/backend/RepoStats.php
+++ b/backend/RepoStats.php
@@ -25,7 +25,7 @@
public static function newFromRepo( CodeRepository $repo ) {
global $wgMemc, $wgCodeReviewRepoStatsCacheTime;
 
-   $key = wfMemcKey( 'codereview1', 'stats', $repo->getName() );
+   $key = $wgMemc->makeKey( 'codereview1', 'stats', 
$repo->getName() );
$stats = $wgMemc->get( $key );
wfDebug( "{$repo->getName()} repo stats: cache " );
if ( $stats ) {

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ibd174f842230118285b682b03c49ec2a432f7764
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/CodeReview
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...VoteNY[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403868 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: I23499cc349687d9f1fab97f014afd35900531d21
---
M includes/Vote.class.php
M includes/VoteNY.hooks.php
M includes/specials/SpecialTopRatings.php
3 files changed, 8 insertions(+), 8 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/VoteNY 
refs/changes/68/403868/1

diff --git a/includes/Vote.class.php b/includes/Vote.class.php
index dcd6aaa..0c1e1d7 100644
--- a/includes/Vote.class.php
+++ b/includes/Vote.class.php
@@ -36,7 +36,7 @@
function count() {
global $wgMemc;
 
-   $key = wfMemcKey( 'vote', 'count', $this->PageID );
+   $key = $wgMemc->makeKey( 'vote', 'count', $this->PageID );
$data = $wgMemc->get( $key );
 
// Try cache
@@ -69,7 +69,8 @@
 */
function getAverageVote() {
global $wgMemc;
-   $key = wfMemcKey( 'vote', 'avg', $this->PageID );
+
+   $key = $wgMemc->makeKey( 'vote', 'avg', $this->PageID );
$data = $wgMemc->get( $key );
 
$voteAvg = 0;
@@ -101,8 +102,8 @@
global $wgUser, $wgMemc;
 
// Kill internal cache
-   $wgMemc->delete( wfMemcKey( 'vote', 'count', $this->PageID ) );
-   $wgMemc->delete( wfMemcKey( 'vote', 'avg', $this->PageID ) );
+   $wgMemc->delete( $wgMemc->makeKey( 'vote', 'count', 
$this->PageID ) );
+   $wgMemc->delete( $wgMemc->makeKey( 'vote', 'avg', $this->PageID 
) );
 
// Purge squid
$pageTitle = Title::newFromID( $this->PageID );
diff --git a/includes/VoteNY.hooks.php b/includes/VoteNY.hooks.php
index c6e3193..8c8994a 100644
--- a/includes/VoteNY.hooks.php
+++ b/includes/VoteNY.hooks.php
@@ -98,7 +98,7 @@
global $wgMemc;
 
if ( $magicWordId == 'NUMBEROFVOTES' ) {
-   $key = wfMemcKey( 'vote', 'magic-word' );
+   $key = $wgMemc->makeKey( 'vote', 'magic-word' );
$data = $wgMemc->get( $key );
if ( $data != '' ) {
// We have it in cache? Oh goody, let's just 
use the cached value!
@@ -142,7 +142,7 @@
 
$id = $title->getArticleID();
 
-   $key = wfMemcKey( 'vote', 'magic-word-page', $id );
+   $key = $wgMemc->makeKey( 'vote', 'magic-word-page', $id );
$data = $wgMemc->get( $key );
 
if ( $data ) {
diff --git a/includes/specials/SpecialTopRatings.php 
b/includes/specials/SpecialTopRatings.php
index 01dc14c..5d73c2e 100644
--- a/includes/specials/SpecialTopRatings.php
+++ b/includes/specials/SpecialTopRatings.php
@@ -9,7 +9,6 @@
  *
  * @file
  * @ingroup Extensions
- * @date 11 December 2011
  * @license To the extent that it is possible, this code is in the public 
domain
  */
 class SpecialTopRatings extends IncludableSpecialPage {
@@ -171,7 +170,7 @@
public static function getAverageRatingForPage( $pageId ) {
global $wgMemc;
 
-   $key = wfMemcKey( 'vote', 'avg', $pageId );
+   $key = $wgMemc->makeKey( 'vote', 'avg', $pageId );
$data = $wgMemc->get( $key );
$voteAvg = 0;
 

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I23499cc349687d9f1fab97f014afd35900531d21
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/VoteNY
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...Video[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403867 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: I9e0f85e34e48fb98938ea9e26b91e30357f58829
---
M includes/providers/BlipTVVideo.php
M includes/providers/HuluVideo.php
M includes/providers/ViddlerVideo.php
3 files changed, 3 insertions(+), 4 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Video 
refs/changes/67/403867/1

diff --git a/includes/providers/BlipTVVideo.php 
b/includes/providers/BlipTVVideo.php
index b82f0dc..4ff401f 100644
--- a/includes/providers/BlipTVVideo.php
+++ b/includes/providers/BlipTVVideo.php
@@ -23,7 +23,7 @@
 
$videoId = $matches[1];
 
-   $cacheKey = wfMemcKey( 'video', 'bliptv', $videoId );
+   $cacheKey = $wgMemc->makeKey( 'video', 'bliptv', $videoId );
$cachedEmbedId = $wgMemc->get( $cacheKey );
 
if ( $cachedEmbedId !== false ) {
diff --git a/includes/providers/HuluVideo.php b/includes/providers/HuluVideo.php
index a5fdcdd..899e728 100644
--- a/includes/providers/HuluVideo.php
+++ b/includes/providers/HuluVideo.php
@@ -24,7 +24,7 @@
 
$videoId = $matches['id'];
 
-   $cacheKey = wfMemcKey( 'video', 'hulu', $videoId );
+   $cacheKey = $wgMemc->makeKey( 'video', 'hulu', $videoId );
$cachedEmbedId = $wgMemc->get( $cacheKey );
 
if ( $cachedEmbedId !== false ) {
diff --git a/includes/providers/ViddlerVideo.php 
b/includes/providers/ViddlerVideo.php
index 56f6db4..1152d84 100644
--- a/includes/providers/ViddlerVideo.php
+++ b/includes/providers/ViddlerVideo.php
@@ -12,11 +12,10 @@
return 437 / 288;
}
 
-
protected function extractVideoId( $url ) {
global $wgMemc;
 
-   $cacheKey = wfMemcKey( 'video', 'viddler', sha1( $url ) );
+   $cacheKey = $wgMemc->makeKey( 'video', 'viddler', sha1( $url ) 
);
$cachedEmbedId = $wgMemc->get( $cacheKey );
 
if ( $cachedEmbedId !== false ) {

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9e0f85e34e48fb98938ea9e26b91e30357f58829
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Video
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...UserStatus[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403866 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: Ic32593c512e852e7875f1c48fd67e7a20f3244c7
---
M includes/UserStatus.class.php
1 file changed, 1 insertion(+), 1 deletion(-)


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

diff --git a/includes/UserStatus.class.php b/includes/UserStatus.class.php
index 15a9a99..a998db5 100644
--- a/includes/UserStatus.class.php
+++ b/includes/UserStatus.class.php
@@ -118,7 +118,7 @@
public function updateUserCache( $text, $sport_id, $team_id = 0 ) {
global $wgUser, $wgMemc;
 
-   $key = wfMemcKey( 'user', 'status-last-update', 
$wgUser->getID() );
+   $key = $wgMemc->makeKey( 'user', 'status-last-update', 
$wgUser->getId() );
 
$data['text'] = $this->formatMessage( $text );
$data['sport_id'] = $sport_id;

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic32593c512e852e7875f1c48fd67e7a20f3244c7
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/UserStatus
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...SportsTeams[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403865 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: Iecfd09bf5711c33dfc585e80f052762406fde83a
---
M includes/SportsTeams.class.php
M includes/specials/SpecialFanHome.php
2 files changed, 5 insertions(+), 5 deletions(-)


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

diff --git a/includes/SportsTeams.class.php b/includes/SportsTeams.class.php
index c371382..80d9f29 100644
--- a/includes/SportsTeams.class.php
+++ b/includes/SportsTeams.class.php
@@ -194,7 +194,7 @@
 
static function clearUserCache( $user_id ) {
global $wgMemc;
-   $key = wfMemcKey( 'user', 'teams', $user_id );
+   $key = $wgMemc->makeKey( 'user', 'teams', $user_id );
$data = $wgMemc->delete( $key );
}
 
@@ -202,7 +202,7 @@
global $wgMemc;
 
// Try cache first
-   $key = wfMemcKey( 'user', 'teams', $user_id );
+   $key = $wgMemc->makeKey( 'user', 'teams', $user_id );
$data = $wgMemc->get( $key );
 
if ( $data ) {
@@ -324,7 +324,7 @@
global $wgMemc;
 
// Try cache first
-   //$key = wfMemcKey( 'user', 'teams', $user_id );
+   //$key = $wgMemc->makeKey( 'user', 'teams', $user_id );
#$wgMemc->delete( $key );
//$data = $wgMemc->get( $key );
//if ( $data ) {
diff --git a/includes/specials/SpecialFanHome.php 
b/includes/specials/SpecialFanHome.php
index 3962f70..09d1f7c 100644
--- a/includes/specials/SpecialFanHome.php
+++ b/includes/specials/SpecialFanHome.php
@@ -518,7 +518,7 @@
global $wgMemc;
 
// Try cache first
-   $key = wfMemcKey( 'fanhome', 'network-articles', 'six' );
+   $key = $wgMemc->makeKey( 'fanhome', 'network-articles', 'six' );
$data = $wgMemc->get( $key );
 
if ( $data != '' ) {
@@ -604,7 +604,7 @@
global $wgMemc;
 
// Try cache first
-   $key = wfMemcKey( 'fanhome', 'vote', 'count' );
+   $key = $wgMemc->makeKey( 'fanhome', 'vote', 'count' );
$data = $wgMemc->get( $key );
 
if ( $data != '' ) {

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Iecfd09bf5711c33dfc585e80f052762406fde83a
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/SportsTeams
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...SocialProfile[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403864 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: Icad1be17fc1426d0defbe8e65d2d127e3d7dc737
---
M SystemGifts/SystemGiftsClass.php
M SystemGifts/UserSystemGiftsClass.php
M UserActivity/SiteActivityHook.php
M UserBoard/UserBoardClass.php
M UserGifts/SpecialGiveGift.php
M UserGifts/SpecialRemoveGift.php
M UserGifts/UserGiftsClass.php
M UserProfile/AvatarClass.php
M UserProfile/SpecialRemoveAvatar.php
M UserProfile/SpecialToggleUserPageType.php
M UserProfile/SpecialUpdateProfile.php
M UserProfile/UploadAvatar.php
M UserProfile/UserProfilePage.php
M UserRelationship/UserRelationshipClass.php
14 files changed, 48 insertions(+), 48 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/SocialProfile 
refs/changes/64/403864/1

diff --git a/SystemGifts/SystemGiftsClass.php b/SystemGifts/SystemGiftsClass.php
index 646c7eb..141ee07 100644
--- a/SystemGifts/SystemGiftsClass.php
+++ b/SystemGifts/SystemGiftsClass.php
@@ -82,7 +82,7 @@
__METHOD__
);
 
-   $sg_key = wfMemcKey( 'user', 
'profile', 'system_gifts', "{$row2->stats_user_id}" );
+   $sg_key = $wgMemc->makeKey( 
'user', 'profile', 'system_gifts', "{$row2->stats_user_id}" );
$wgMemc->delete( $sg_key );
 
// Update counters 
(https://phabricator.wikimedia.org/T29981)
diff --git a/SystemGifts/UserSystemGiftsClass.php 
b/SystemGifts/UserSystemGiftsClass.php
index 9b0f269..1824918 100644
--- a/SystemGifts/UserSystemGiftsClass.php
+++ b/SystemGifts/UserSystemGiftsClass.php
@@ -70,7 +70,7 @@
) );
}
 
-   $wgMemc->delete( wfMemcKey( 'user', 'profile', 'system_gifts', 
$this->user_id ) );
+   $wgMemc->delete( $wgMemc->makeKey( 'user', 'profile', 
'system_gifts', $this->user_id ) );
 
return $sg_gift_id;
}
@@ -251,7 +251,7 @@
 */
public function incNewSystemGiftCount( $user_id ) {
global $wgMemc;
-   $key = wfMemcKey( 'system_gifts', 'new_count', $user_id );
+   $key = $wgMemc->makeKey( 'system_gifts', 'new_count', $user_id 
);
$wgMemc->incr( $key );
}
 
@@ -263,7 +263,7 @@
 */
public function decNewSystemGiftCount( $user_id ) {
global $wgMemc;
-   $key = wfMemcKey( 'system_gifts', 'new_count', $user_id );
+   $key = $wgMemc->makeKey( 'system_gifts', 'new_count', $user_id 
);
$wgMemc->decr( $key );
}
 
@@ -273,7 +273,7 @@
 */
public function clearNewSystemGiftCountCache() {
global $wgMemc;
-   $key = wfMemcKey( 'system_gifts', 'new_count', $user_id );
+   $key = $wgMemc->makeKey( 'system_gifts', 'new_count', $user_id 
);
$wgMemc->set( $key, 0 );
}
 
@@ -287,7 +287,7 @@
 */
static function getNewSystemGiftCountCache( $user_id ) {
global $wgMemc;
-   $key = wfMemcKey( 'system_gifts', 'new_count', $user_id );
+   $key = $wgMemc->makeKey( 'system_gifts', 'new_count', $user_id 
);
$data = $wgMemc->get( $key );
if ( $data != '' ) {
wfDebug( "Got new award count of $data for id $user_id 
from cache\n" );
@@ -329,7 +329,7 @@
wfDebug( "Got new award count for id $user_id from DB\n" );
 
global $wgMemc;
-   $key = wfMemcKey( 'system_gifts', 'new_count', $user_id );
+   $key = $wgMemc->makeKey( 'system_gifts', 'new_count', $user_id 
);
$dbr = wfGetDB( DB_REPLICA );
$new_gift_count = 0;
$s = $dbr->selectRow(
diff --git a/UserActivity/SiteActivityHook.php 
b/UserActivity/SiteActivityHook.php
index 049e6f2..65f7942 100644
--- a/UserActivity/SiteActivityHook.php
+++ b/UserActivity/SiteActivityHook.php
@@ -23,7 +23,7 @@
// so that  will return 5 items instead 
of 4...
$fixedLimit = $limit + 1;
 
-   $key = wfMemcKey( 'site_activity', 'all', $fixedLimit );
+   $key = $wgMemc->makeKey( 'site_activity', 'all', $fixedLimit );
$data = $wgMemc->get( $key );
if ( !$data ) {
wfDebug( "Got site activity from DB\n" );
diff --git a/UserBoard/UserBoardClass.php b/UserBoard/UserBoardClass.php
index a1dadc2..2b59a45 100644
--- a/UserBoard/UserBoardClass.php
+++ 

[MediaWiki-commits] [Gerrit] mediawiki...RandomUsersWithAvatars[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403862 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: I07affcff22ae1aef55f4e6fcf49fa00e61b1c0c5
---
M includes/RandomUsersWithAvatars.class.php
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/RandomUsersWithAvatars 
refs/changes/62/403862/1

diff --git a/includes/RandomUsersWithAvatars.class.php 
b/includes/RandomUsersWithAvatars.class.php
index ec1b7f3..e0619a2 100644
--- a/includes/RandomUsersWithAvatars.class.php
+++ b/includes/RandomUsersWithAvatars.class.php
@@ -35,7 +35,7 @@
}
 
// Try cache
-   $key = wfMemcKey( 'users', 'random', 'avatars', $count, 
$per_row, $size );
+   $key = $wgMemc->makeKey( 'users', 'random', 'avatars', $count, 
$per_row, $size );
$data = $wgMemc->get( $key );
if ( !$data ) {
$files = glob( $wgUploadDirectory . 
"/avatars/{$wgDBname}_*_{$size}.*" );

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I07affcff22ae1aef55f4e6fcf49fa00e61b1c0c5
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/RandomUsersWithAvatars
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...SiteScout[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403863 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: I55347dc192a089bbf6d0a34adcb788713fa0e7eb
---
M includes/SiteScout.class.php
1 file changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/SiteScout 
refs/changes/63/403863/1

diff --git a/includes/SiteScout.class.php b/includes/SiteScout.class.php
index d4df4fe..a00c771 100644
--- a/includes/SiteScout.class.php
+++ b/includes/SiteScout.class.php
@@ -369,7 +369,7 @@
function populateItems() {
global $wgMemc;
 
-   $key = wfMemcKey( 'site_scout', $this->itemMax );
+   $key = $wgMemc->makeKey( 'site_scout', $this->itemMax );
$data = $wgMemc->get( $key );
if ( $data ) {
wfDebug( "Site scout loaded from cache\n" );
@@ -583,7 +583,7 @@
 
// Set cache
global $wgMemc;
-   $key = wfMemcKey( 'site_scout', $this->itemMax );
+   $key = $wgMemc->makeKey( 'site_scout', $this->itemMax );
$wgMemc->set( $key, $this->all_items, 30 );
}
 

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I55347dc192a089bbf6d0a34adcb788713fa0e7eb
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/SiteScout
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...RandomImageByCategory[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403861 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: I9b470a6c27062bd273900e1cd81717228dac54f3
---
M RandomImageByCategory.class.php
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/RandomImageByCategory 
refs/changes/61/403861/1

diff --git a/RandomImageByCategory.class.php b/RandomImageByCategory.class.php
index fa25068..911ed7c 100644
--- a/RandomImageByCategory.class.php
+++ b/RandomImageByCategory.class.php
@@ -39,7 +39,7 @@
$width = 200;
}
 
-   $key = wfMemcKey( 'image', 'random', $limit, str_replace( ' ', 
'', $categories ) );
+   $key = $wgMemc->makeKey( 'image', 'random', $limit, 
str_replace( ' ', '', $categories ) );
$data = $wgMemc->get( $key );
$image_list = array();
if ( !$data ) {

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9b470a6c27062bd273900e1cd81717228dac54f3
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/RandomImageByCategory
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...RandomGameUnit[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403860 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: I62960014189aa608465e1a0c858f3683525a94cb
---
M includes/RandomGameUnit.class.php
1 file changed, 2 insertions(+), 2 deletions(-)


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

diff --git a/includes/RandomGameUnit.class.php 
b/includes/RandomGameUnit.class.php
index f452ef5..ab445ee 100644
--- a/includes/RandomGameUnit.class.php
+++ b/includes/RandomGameUnit.class.php
@@ -73,7 +73,7 @@
case 'quiz':
$quiz = array();
// Try cache
-   $key = wfMemcKey( 'quiz', 'order', 'q_id', 
'count', $count );
+   $key = $wgMemc->makeKey( 'quiz', 'order', 
'q_id', 'count', $count );
$data = $wgMemc->get( $key );
if ( $data ) {
wfDebugLog( 'RandomGameUnit', "Got quiz 
list ($count) from cache" );
@@ -107,7 +107,7 @@
case 'picgame':
// Try cache
$pics = array();
-   $key = wfMemcKey( 'picgame', 'order', 'q_id', 
'count', $count );
+   $key = $wgMemc->makeKey( 'picgame', 'order', 
'q_id', 'count', $count );
$data = $wgMemc->get( $key );
if ( $data ) {
wfDebugLog( 'RandomGameUnit', "Got 
picture game list ($count) ordered by id from cache" );

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I62960014189aa608465e1a0c858f3683525a94cb
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/RandomGameUnit
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...RandomFeaturedUser[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403859 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

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


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/RandomFeaturedUser 
refs/changes/59/403859/1

diff --git a/includes/RandomFeaturedUser.php b/includes/RandomFeaturedUser.php
index e47df95..5571520 100644
--- a/includes/RandomFeaturedUser.php
+++ b/includes/RandomFeaturedUser.php
@@ -57,7 +57,7 @@
$realCount = 10;
 
// Try cache
-   $key = wfMemcKey( 'user_stats', 'top', 'points', 'weekly', 
$realCount );
+   $key = $wgMemc->makeKey( 'user_stats', 'top', 'points', 
'weekly', $realCount );
$data = $wgMemc->get( $key );
 
if ( $data != '' ) {

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia1359fc695984be6369651d99825e19dc8bb8ab5
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/RandomFeaturedUser
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...ProtectSite[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403857 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: I86dd85de392e2fc10e1516aa0abe784c932e4fb8
---
M ProtectSite.body.php
1 file changed, 5 insertions(+), 5 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/ProtectSite 
refs/changes/57/403857/1

diff --git a/ProtectSite.body.php b/ProtectSite.body.php
index 78dd0f4..97fc86c 100644
--- a/ProtectSite.body.php
+++ b/ProtectSite.body.php
@@ -75,11 +75,11 @@
$persist_data = new SqlBagOStuff( array() );
 
/* Get data into the prot hash */
-   $prot = $wgMemc->get( wfMemcKey( 'protectsite' ) );
+   $prot = $wgMemc->get( $wgMemc->makeKey( 'protectsite' ) );
if ( !$prot ) {
$prot = $persist_data->get( 'protectsite' );
if ( !$prot ) {
-   $wgMemc->set( wfMemcKey( 'protectsite' ), 
'disabled' );
+   $wgMemc->set( $wgMemc->makeKey( 'protectsite' 
), 'disabled' );
}
}
 
@@ -145,7 +145,7 @@
$this->persist_data = new SqlBagOStuff( array() );
 
/* Get data into the value variable/array */
-   $prot = $wgMemc->get( wfMemcKey( 'protectsite' ) );
+   $prot = $wgMemc->get( $wgMemc->makeKey( 'protectsite' ) );
if ( !$prot ) {
$prot = $this->persist_data->get( 'protectsite' );
}
@@ -204,7 +204,7 @@
 
/* Write the array out to the database */
$this->persist_data->set( 'protectsite', $prot, 
$prot['until'] );
-   $wgMemc->set( wfMemcKey( 'protectsite' ), $prot, 
$prot['until'] );
+   $wgMemc->set( $wgMemc->makeKey( 'protectsite' ), $prot, 
$prot['until'] );
 
/* Create a log entry */
$log = new LogPage( 'protect' );
@@ -228,7 +228,7 @@
 
/* Remove the data from the database to disable extension. */
$this->persist_data->delete( 'protectsite' );
-   $wgMemc->delete( wfMemcKey( 'protectsite' ) );
+   $wgMemc->delete( $wgMemc->makeKey( 'protectsite' ) );
 
/* Create a log entry */
$log = new LogPage( 'protect' );

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I86dd85de392e2fc10e1516aa0abe784c932e4fb8
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/ProtectSite
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...PictureGame[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403856 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: I97c7b0aa498e6c328f1985878328dc53ad10b543
---
M includes/specials/SpecialPictureGameHome.php
1 file changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/PictureGame 
refs/changes/56/403856/1

diff --git a/includes/specials/SpecialPictureGameHome.php 
b/includes/specials/SpecialPictureGameHome.php
index e46647d..7f64d05 100644
--- a/includes/specials/SpecialPictureGameHome.php
+++ b/includes/specials/SpecialPictureGameHome.php
@@ -175,7 +175,7 @@
$dbw->commit( __METHOD__ );
 
global $wgMemc;
-   $key = wfMemcKey( 'user', 'profile', 'picgame', $user->getID() 
);
+   $key = $wgMemc->makeKey( 'user', 'profile', 'picgame', 
$user->getID() );
$wgMemc->delete( $key );
 
/* Pop the images out of MediaWiki also */
@@ -1633,7 +1633,7 @@
 
// Purge memcached
global $wgMemc;
-   $key = wfMemcKey( 'user', 'profile', 'picgame', 
$user->getID() );
+   $key = $wgMemc->makeKey( 'user', 'profile', 
'picgame', $user->getID() );
$wgMemc->delete( $key );
}
}

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I97c7b0aa498e6c328f1985878328dc53ad10b543
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/PictureGame
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...NumberOfWikis[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403855 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: I5e90fe59907812ac24dd936a598e7878753bfc27
---
M NumberOfWikis.class.php
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/NumberOfWikis 
refs/changes/55/403855/1

diff --git a/NumberOfWikis.class.php b/NumberOfWikis.class.php
index 81380ef..eec5943 100644
--- a/NumberOfWikis.class.php
+++ b/NumberOfWikis.class.php
@@ -15,7 +15,7 @@
global $wgMemc;
 
if ( $magicWordId == 'NUMBEROFWIKIS' ) {
-   $key = wfMemcKey( 'shoutwiki', 'numberofwikis' );
+   $key = $wgMemc->makeKey( 'shoutwiki', 'numberofwikis' );
$data = $wgMemc->get( $key );
if ( $data != '' ) {
// We have it in cache? Oh goody, let's just 
use the cached value!

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I5e90fe59907812ac24dd936a598e7878753bfc27
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/NumberOfWikis
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...QuizGame[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403858 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: I6bf230c740a887f4eb629661cfee8c09e48004d5
---
M includes/api/ApiQuizGame.php
M includes/specials/SpecialQuizGameHome.php
2 files changed, 3 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/QuizGame 
refs/changes/58/403858/1

diff --git a/includes/api/ApiQuizGame.php b/includes/api/ApiQuizGame.php
index ca7044f..ae11b34 100644
--- a/includes/api/ApiQuizGame.php
+++ b/includes/api/ApiQuizGame.php
@@ -199,7 +199,7 @@
}
 
global $wgMemc;
-   $key = wfMemcKey( 'user', 'stats', 
$row->a_user_id );
+   $key = $wgMemc->makeKey( 'user', 
'stats', $row->a_user_id );
$wgMemc->delete( $key );
}
 
diff --git a/includes/specials/SpecialQuizGameHome.php 
b/includes/specials/SpecialQuizGameHome.php
index 616230d..bc15f91 100644
--- a/includes/specials/SpecialQuizGameHome.php
+++ b/includes/specials/SpecialQuizGameHome.php
@@ -881,7 +881,7 @@
if( $user->getName() != $question['user_name'] ) {
// check to see if the user already had viewed this 
question
global $wgMemc;
-   $key = wfMemcKey( 'quizgame-user-view', $user->getID(), 
$question['id'] );
+   $key = $wgMemc->makeKey( 'quizgame-user-view', 
$user->getID(), $question['id'] );
$data = $wgMemc->get( $key );
if( $data > 0 ) {
$timestampedViewed = $data;
@@ -1325,7 +1325,7 @@
}
 
// Delete memcached key
-   $key = wfMemcKey( 'user', 'profile', 'quiz', $user->getID() );
+   $key = $wgMemc->makeKey( 'user', 'profile', 'quiz', 
$user->getID() );
$wgMemc->delete( $key );
 
// Redirect the user

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I6bf230c740a887f4eb629661cfee8c09e48004d5
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/QuizGame
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...LinkFilter[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403852 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: I88a59efdcdfbf242aa38305abe9f473809a954ea
---
M includes/LinkFilter.hooks.php
M includes/LinkPage.class.php
2 files changed, 3 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/LinkFilter 
refs/changes/52/403852/1

diff --git a/includes/LinkFilter.hooks.php b/includes/LinkFilter.hooks.php
index 196225a..ce8c29b 100644
--- a/includes/LinkFilter.hooks.php
+++ b/includes/LinkFilter.hooks.php
@@ -122,7 +122,7 @@
$count = 10;
}
 
-   $key = wfMemcKey( 'linkfilter', $count );
+   $key = $wgMemc->makeKey( 'linkfilter', $count );
$data = $wgMemc->get( $key );
 
if ( $data ) {
diff --git a/includes/LinkPage.class.php b/includes/LinkPage.class.php
index 74e66a6..654ca21 100644
--- a/includes/LinkPage.class.php
+++ b/includes/LinkPage.class.php
@@ -148,7 +148,7 @@
function getCreateDate( $pageId ) {
global $wgMemc;
 
-   $key = wfMemcKey( 'page', 'create_date', $pageId );
+   $key = $wgMemc->makeKey( 'page', 'create_date', $pageId );
$data = $wgMemc->get( $key );
 
if ( !$data ) {
@@ -347,7 +347,7 @@
$comments = array();
 
// Try cache first
-   $key = wfMemcKey( 'comments-link', 'plus', '24hours' );
+   $key = $wgMemc->makeKey( 'comments-link', 'plus', '24hours' );
$wgMemc->delete( $key );
$data = $wgMemc->get( $key );
 

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I88a59efdcdfbf242aa38305abe9f473809a954ea
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/LinkFilter
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...NewUsersList[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403853 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: I141254787579f4130147d021ce1c3552b3664bca
---
M includes/NewUsersList.class.php
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/NewUsersList 
refs/changes/53/403853/1

diff --git a/includes/NewUsersList.class.php b/includes/NewUsersList.class.php
index b8af02a..87c4d80 100644
--- a/includes/NewUsersList.class.php
+++ b/includes/NewUsersList.class.php
@@ -53,7 +53,7 @@
}
 
// Try cache
-   $key = wfMemcKey( 'users', 'new', $count );
+   $key = $wgMemc->makeKey( 'users', 'new', $count );
$data = $wgMemc->get( $key );
 
if ( !$data ) {

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I141254787579f4130147d021ce1c3552b3664bca
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/NewUsersList
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...FanBoxes[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403849 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: I339c54648cf555f54226135793e7d478ff84d3a8
---
M includes/FanBox.class.php
M includes/UserBoxes.hooks.php
2 files changed, 4 insertions(+), 6 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/FanBoxes 
refs/changes/49/403849/1

diff --git a/includes/FanBox.class.php b/includes/FanBox.class.php
index bfb4f02..b86fe60 100644
--- a/includes/FanBox.class.php
+++ b/includes/FanBox.class.php
@@ -206,7 +206,7 @@
array( 'fantag_pg_id' => intval( $fanboxId ) ),
__METHOD__
);
-   $key = wfMemcKey( 'fantag', 'page', $this->name );
+   $key = $wgMemc->makeKey( 'fantag', 'page', $this->name );
$wgMemc->delete( $key );
 
$categories_wiki = '';
@@ -279,10 +279,9 @@
private function loadFromCache() {
global $wgMemc;
 
-   wfProfileIn( __METHOD__ );
$this->dataLoaded = false;
 
-   $key = wfMemcKey( 'fantag', 'page', $this->name );
+   $key = $wgMemc->makeKey( 'fantag', 'page', $this->name );
$data = $wgMemc->get( $key );
 
if ( !empty( $data ) && is_array( $data ) ) {
@@ -310,7 +309,6 @@
wfIncrStats( 'fantag_cache_miss' );
}
 
-   wfProfileOut( __METHOD__ );
return $this->dataLoaded;
}
 
@@ -320,7 +318,7 @@
private function saveToCache() {
global $wgMemc;
 
-   $key = wfMemcKey( 'fantag', 'page', $this->name );
+   $key = $wgMemc->makeKey( 'fantag', 'page', $this->name );
if ( $this->exists() ) {
$cachedValues = array(
'id' => $this->id,
diff --git a/includes/UserBoxes.hooks.php b/includes/UserBoxes.hooks.php
index 64fe958..3da627b 100644
--- a/includes/UserBoxes.hooks.php
+++ b/includes/UserBoxes.hooks.php
@@ -45,7 +45,7 @@
$f = new UserFanBoxes( $user_name );
 
// Try cache
-   //$key = wfMemcKey( 'user', 'profile', 'fanboxes', $f->user_id 
);
+   //$key = $wgMemc->makeKey( 'user', 'profile', 'fanboxes', 
$f->user_id );
//$data = $wgMemc->get( $key );
 
//if ( !$data ) {

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I339c54648cf555f54226135793e7d478ff84d3a8
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/FanBoxes
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...ImageRating[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403851 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: I84eca971e057b14fa92823042805b3fab493cc59
---
M includes/FeaturedImage.class.php
M includes/specials/SpecialImageRating.php
2 files changed, 3 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/ImageRating 
refs/changes/51/403851/1

diff --git a/includes/FeaturedImage.class.php b/includes/FeaturedImage.class.php
index ffad583..01b8d52 100644
--- a/includes/FeaturedImage.class.php
+++ b/includes/FeaturedImage.class.php
@@ -26,7 +26,7 @@
$width = intval( $width );
 
// Set up memcached
-   $key = wfMemcKey( 'image', 'featured', $width );
+   $key = $wgMemc->makeKey( 'image', 'featured', $width );
$data = $wgMemc->get( $key );
$cache_expires = ( 60 * 30 );
 
diff --git a/includes/specials/SpecialImageRating.php 
b/includes/specials/SpecialImageRating.php
index 0d40ce9..7436da1 100644
--- a/includes/specials/SpecialImageRating.php
+++ b/includes/specials/SpecialImageRating.php
@@ -259,7 +259,7 @@
/*
// set up memcached
$width = 250;
-   $key = wfMemcKey( 'image', 'featured', 
"category:{$category}:width:{$width}" );
+   $key = $wgMemc->makeKey( 'image', 'featured', 
"category:{$category}:width:{$width}" );
$data = $wgMemc->get( $key );
$cache_expires = ( 60 * 30 );
 
@@ -353,7 +353,7 @@
 
$output .= '' . $this->msg( 'imagerating-ratetitle' 
)->plain() . '';
 
-   $key = wfMemcKey( 'image', 'list', 
"type:{$type}:category:{$category}:per:{$perPage}" );
+   $key = $wgMemc->makeKey( 'image', 'list', 
"type:{$type}:category:{$category}:per:{$perPage}" );
$data = $wgMemc->get( $key );
if ( $data && $page == 0 ) {
$imageList = $data;

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I84eca971e057b14fa92823042805b3fab493cc59
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/ImageRating
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...Comments[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403848 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: Ibe93d353a0aa63d3a4b638ef7cf73bea8866c571
---
M includes/Comment.class.php
M includes/parser/CommentsOfTheDay.class.php
M includes/parser/NumberOfComments.class.php
3 files changed, 4 insertions(+), 4 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Comments 
refs/changes/48/403848/1

diff --git a/includes/Comment.class.php b/includes/Comment.class.php
index 2e473a8..cc3d315 100644
--- a/includes/Comment.class.php
+++ b/includes/Comment.class.php
@@ -429,7 +429,7 @@
 
// update cache for comment list
// should perform better than deleting cache completely since 
Votes happen more frequently
-   $key = wfMemcKey( 'comment', 'pagethreadlist', $this->page->id 
);
+   $key = $wgMemc->makeKey( 'comment', 'pagethreadlist', 
$this->page->id );
$comments = $wgMemc->get( $key );
if ( $comments ) {
foreach ( $comments as &$comment ) {
diff --git a/includes/parser/CommentsOfTheDay.class.php 
b/includes/parser/CommentsOfTheDay.class.php
index 9eecd12..ddc1d5a 100644
--- a/includes/parser/CommentsOfTheDay.class.php
+++ b/includes/parser/CommentsOfTheDay.class.php
@@ -45,7 +45,7 @@
global $wgMemc;
 
// Try memcached first
-   $key = wfMemcKey( 'comments-of-the-day', 'standalone-hook-new' 
);
+   $key = $wgMemc->makeKey( 'comments-of-the-day', 
'standalone-hook-new' );
$data = $wgMemc->get( $key );
 
if ( $data ) { // success, got it from memcached!
diff --git a/includes/parser/NumberOfComments.class.php 
b/includes/parser/NumberOfComments.class.php
index b34b454..9a2f43e 100644
--- a/includes/parser/NumberOfComments.class.php
+++ b/includes/parser/NumberOfComments.class.php
@@ -34,7 +34,7 @@
global $wgMemc;
 
if ( $magicWordId == 'NUMBEROFCOMMENTS' ) {
-   $key = wfMemcKey( 'comments', 'magic-word' );
+   $key = $wgMemc->makeKey( 'comments', 'magic-word' );
$data = $wgMemc->get( $key );
if ( $data != '' ) {
// We have it in cache? Oh goody, let's just 
use the cached value!
@@ -96,7 +96,7 @@
static function getNumberOfCommentsPage( $pageId ) {
global $wgMemc;
 
-   $key = wfMemcKey( 'comments', 'numberofcommentspage', $pageId );
+   $key = $wgMemc->makeKey( 'comments', 'numberofcommentspage', 
$pageId );
$cache = $wgMemc->get( $key );
 
if ( $cache ) {

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ibe93d353a0aa63d3a4b638ef7cf73bea8866c571
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Comments
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...BlogPage[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403847 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: Ifb4607d329402f900b3106d0b6cb6ec53dcb3a27
---
M includes/BlogPage.class.php
M includes/BlogPage.hooks.php
M includes/specials/SpecialArticleLists.php
M includes/specials/SpecialArticlesHome.php
4 files changed, 17 insertions(+), 17 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/BlogPage 
refs/changes/47/403847/1

diff --git a/includes/BlogPage.class.php b/includes/BlogPage.class.php
index 817299e..0c31601 100644
--- a/includes/BlogPage.class.php
+++ b/includes/BlogPage.class.php
@@ -195,7 +195,7 @@
global $wgMemc;
 
// Try memcached first
-   $key = wfMemcKey( 'page', 'create_date', $pageId );
+   $key = $wgMemc->makeKey( 'page', 'create_date', $pageId );
$data = $wgMemc->get( $key );
 
if ( !$data ) {
@@ -397,7 +397,7 @@
$articles = array();
 
// Try cache first
-   $key = wfMemcKey( 'blog', 'author', 'articles', $user_id );
+   $key = $wgMemc->makeKey( 'blog', 'author', 'articles', $user_id 
);
$data = $wgMemc->get( $key );
 
if ( $data != '' ) {
@@ -503,7 +503,7 @@
 
$pageTitleId = $this->getId();
 
-   $key = wfMemcKey( 'recenteditors', 'list', $pageTitleId );
+   $key = $wgMemc->makeKey( 'recenteditors', 'list', $pageTitleId 
);
$data = $wgMemc->get( $key );
$editors = array();
 
@@ -596,7 +596,7 @@
// Gets the page ID for the query
$pageTitleId = $this->getId();
 
-   $key = wfMemcKey( 'recentvoters', 'list', $pageTitleId );
+   $key = $wgMemc->makeKey( 'recentvoters', 'list', $pageTitleId );
$data = $wgMemc->get( $key );
 
$voters = array();
@@ -716,7 +716,7 @@
}
 
// Try cache first
-   $key = wfMemcKey( 'blog', 'popular', 'five' );
+   $key = $wgMemc->makeKey( 'blog', 'popular', 'five' );
$data = $wgMemc->get( $key );
 
if ( $data != '' ) {
@@ -804,7 +804,7 @@
}
 
// Try cache first
-   $key = wfMemcKey( 'blog', 'new', 'five' );
+   $key = $wgMemc->makeKey( 'blog', 'new', 'five' );
$data = $wgMemc->get( $key );
 
if ( $data != '' ) {
@@ -950,7 +950,7 @@
global $wgMemc;
 
// Try cache first
-   $key = wfMemcKey( 'blog', 'comments', 'count', 'pageid-' . $id 
);
+   $key = $wgMemc->makeKey( 'blog', 'comments', 'count', 'pageid-' 
. $id );
$data = $wgMemc->get( $key );
 
if ( $data != '' ) {
@@ -983,7 +983,7 @@
global $wgMemc;
 
// Try cache first
-   $key = wfMemcKey( 'blog', 'vote', 'count', 'pageid-' . $id );
+   $key = $wgMemc->makeKey( 'blog', 'vote', 'count', 'pageid-' . 
$id );
$data = $wgMemc->get( $key );
 
if ( $data != '' ) {
@@ -1103,7 +1103,7 @@
public static function getPageImage( $pageId ) {
global $wgMemc;
 
-   $key = wfMemcKey( 'blog', 'page', 'image', $pageId );
+   $key = $wgMemc->makeKey( 'blog', 'page', 'image', $pageId );
$data = $wgMemc->get( $key );
 
if ( !$data ) {
diff --git a/includes/BlogPage.hooks.php b/includes/BlogPage.hooks.php
index da61042..a0ac3c6 100644
--- a/includes/BlogPage.hooks.php
+++ b/includes/BlogPage.hooks.php
@@ -190,7 +190,7 @@
$output = '';
 
// Try cache first
-   $key = wfMemcKey( 'user', 'profile', 'articles', 
$userProfile->user_id );
+   $key = $wgMemc->makeKey( 'user', 'profile', 'articles', 
$userProfile->user_id );
$data = $wgMemc->get( $key );
$articles = array();
 
diff --git a/includes/specials/SpecialArticleLists.php 
b/includes/specials/SpecialArticleLists.php
index 28f5917..63d2fad 100644
--- a/includes/specials/SpecialArticleLists.php
+++ b/includes/specials/SpecialArticleLists.php
@@ -50,7 +50,7 @@
}
 
// Try cache first
-   $key = wfMemcKey( 'blog', 'new', 'twentyfive' );
+   $key = $wgMemc->makeKey( 'blog', 'new', 'twentyfive' );
$data = $wgMemc->get( $key );
 
if ( $data != '' ) {
diff --git a/includes/specials/SpecialArticlesHome.php 
b/includes/specials/SpecialArticlesHome.php
index cf1c2ec..f18b9f9 100644
--- 

[MediaWiki-commits] [Gerrit] mediawiki...ArticleFeedbackv5[master]: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuf...

2018-01-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403842 )

Change subject: wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff 
instance
..

wfMemcKey (deprecated in MW 1.30) -> makeKey() on a BagOStuff instance

Change-Id: Ib40ec6ec8e148c8f60e6bfd8a740a783b202a648
---
M ArticleFeedbackv5.activity.php
M ArticleFeedbackv5.hooks.php
M ArticleFeedbackv5.model.php
M api/ApiAddFlagNoteArticleFeedbackv5.php
M data/DataModel.php
M data/maintenance/DataModelPurgeCache.php
M data/tests/DataModelSampleTests.php
M maintenance/purgeCache.php
M tests/ArticleFeedbackv5ModelTest.php
9 files changed, 29 insertions(+), 28 deletions(-)


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

diff --git a/ArticleFeedbackv5.activity.php b/ArticleFeedbackv5.activity.php
index a7dbbd8..7a2af83 100644
--- a/ArticleFeedbackv5.activity.php
+++ b/ArticleFeedbackv5.activity.php
@@ -188,7 +188,7 @@
 * data in cache may be out of date.
 */
global $wgMemc;
-   $key = wfMemcKey( get_called_class(), 
'getLastEditorActivity', $itemId );
+   $key = $wgMemc->makeKey( get_called_class(), 
'getLastEditorActivity', $itemId );
$wgMemc->delete( $key );
}
 
@@ -285,7 +285,7 @@
foreach( $wgArticleFeedbackv5Permissions as $permission 
) {
if ( $user->isAllowed( $permission ) ) {
// get count for this specific 
permission level from cache
-   $key = wfMemcKey( 'articlefeedbackv5', 
'getActivityCount', $permission, $feedback->aft_id );
+   $key = $wgMemc->makeKey( 
'articlefeedbackv5', 'getActivityCount', $permission, $feedback->aft_id );
$count = $wgMemc->get( $key );
 
if ( $count === false ) {
@@ -322,7 +322,7 @@
// get permission level that should be updated
$permission = self::$actions[$action]['permissions'];
 
-   $key = wfMemcKey( 'articlefeedbackv5', 'getActivityCount', 
$permission, $feedbackId );
+   $key = $wgMemc->makeKey( 'articlefeedbackv5', 
'getActivityCount', $permission, $feedbackId );
$count = $wgMemc->get( $key );
 
/*
@@ -389,7 +389,7 @@
continue;
}
 
-   $key = wfMemcKey( get_called_class(), 
'getLastEditorActivity', $feedback->aft_id );
+   $key = $wgMemc->makeKey( get_called_class(), 
'getLastEditorActivity', $feedback->aft_id );
$cache = $wgMemc->get( $key );
if ( $cache !== false ) {
$activity[$feedback->aft_id] = $cache;
@@ -487,7 +487,7 @@
}
 
// cache, per feedback entry
-   $key = wfMemcKey( get_called_class(), 
'getLastEditorActivity', $params['feedbackId'] );
+   $key = $wgMemc->makeKey( get_called_class(), 
'getLastEditorActivity', $params['feedbackId'] );
$wgMemc->set( $key, $action, 60 * 60 );
 
$activity[$params['feedbackId']] = $action;
diff --git a/ArticleFeedbackv5.hooks.php b/ArticleFeedbackv5.hooks.php
index e3f268e..01b50fe 100644
--- a/ArticleFeedbackv5.hooks.php
+++ b/ArticleFeedbackv5.hooks.php
@@ -518,7 +518,7 @@
if ( $pager->contribs == 'newbie' ) {
// fetch max user id from cache (if present)
global $wgMemc;
-   $key = wfMemcKey( 'articlefeedbackv5', 'maxUserId' );
+   $key = $wgMemc->makeKey( 'articlefeedbackv5', 
'maxUserId' );
$max = $wgMemc->get( $key );
if ( $max === false ) {
// max user id not present in cache; fetch from 
db & save to cache for 1h
diff --git a/ArticleFeedbackv5.model.php b/ArticleFeedbackv5.model.php
index 5f29276..9cc0f34 100644
--- a/ArticleFeedbackv5.model.php
+++ b/ArticleFeedbackv5.model.php
@@ -245,7 +245,7 @@
return $existingValue + $difference;
};
 
-   $key = wfMemcKey( get_called_class(), 'getCountFound', 
$shard );
+   $key = static::getCache()->makeKey( get_called_class(), 
'getCountFound', $shard );
static::getCache()->merge( $key, $callback );
}
}
@@ -261,7 +261,7 @@
 * @return float
 */
public static function 

[MediaWiki-commits] [Gerrit] mediawiki...Comments[master]: Fix typo in PostgreSQL schema (extra, unwanted comma)

2017-12-26 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/400223 )

Change subject: Fix typo in PostgreSQL schema (extra, unwanted comma)
..

Fix typo in PostgreSQL schema (extra, unwanted comma)

Bug: T183693
Change-Id: Ie0964273b7951a59880db047d4ff0a5f3a10bc26
---
M sql/comments.postgres.sql
1 file changed, 1 insertion(+), 1 deletion(-)


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

diff --git a/sql/comments.postgres.sql b/sql/comments.postgres.sql
index d52581b..a66eea3 100644
--- a/sql/comments.postgres.sql
+++ b/sql/comments.postgres.sql
@@ -19,7 +19,7 @@
   Comment_Text TEXT NOT NULL,
   Comment_Date TIMESTAMPTZ NOT NULL DEFAULT now(),
   Comment_Parent_ID INTEGER NOT NULL DEFAULT 0,
-  Comment_IP TEXT NOT NULL DEFAULT '',
+  Comment_IP TEXT NOT NULL DEFAULT ''
 );
 
 CREATE INDEX comment_page_id_index ON Comments (Comment_Page_ID);

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie0964273b7951a59880db047d4ff0a5f3a10bc26
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Comments
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...SocialProfile[master]: Fix fatal when viewing users' social profile pages

2017-12-26 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/400222 )

Change subject: Fix fatal when viewing users' social profile pages
..

Fix fatal when viewing users' social profile pages

BadMethodCallException from line 1617 of
/vagrant/mediawiki/extensions/SocialProfile/UserProfile/UserProfilePage.php:
Call to a member function getName() on a non-object (null)

This was because $user was being used but not defined.
Follow-up to
I32f88f699280e07db13f6e2327f4c78c2c55a54a/rESPRd3f7573e59abc115546245da36b17f350e72072a

Change-Id: Ieb5eec09a8dbb2e6a56fd92401a0ca47c26b42b2
---
M UserProfile/UserProfilePage.php
1 file changed, 1 insertion(+), 0 deletions(-)


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

diff --git a/UserProfile/UserProfilePage.php b/UserProfile/UserProfilePage.php
index fb86ada..53a5b75 100644
--- a/UserProfile/UserProfilePage.php
+++ b/UserProfile/UserProfilePage.php
@@ -1587,6 +1587,7 @@
 
$context = $this->getContext();
$out = $context->getOutput();
+   $user = $context->getUser();
 
// Anonymous users cannot have user boards
if ( $user_id == 0 ) {

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ieb5eec09a8dbb2e6a56fd92401a0ca47c26b42b2
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/SocialProfile
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...Quantcast[master]: Use protocol-relative URLs to avoid mixed content warnings w...

2017-12-26 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/400208 )

Change subject: Use protocol-relative URLs to avoid mixed content warnings when 
using HTTPS
..

Use protocol-relative URLs to avoid mixed content warnings when using HTTPS

Bug: T183677
Change-Id: I5b0cf58e079d46dafe69e87c632d0e6f5402f60a
---
M QuantcastTracking.class.php
M extension.json
2 files changed, 5 insertions(+), 7 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Quantcast 
refs/changes/08/400208/1

diff --git a/QuantcastTracking.class.php b/QuantcastTracking.class.php
index a12a16b..f159df5 100644
--- a/QuantcastTracking.class.php
+++ b/QuantcastTracking.class.php
@@ -25,7 +25,7 @@
 
$groups = $skin->getUser()->getEffectiveGroups();
if ( !in_array( $wgQuantcastTrackingExcludedGroups, $groups ) ) 
{
-   $message = $skin->msg( 'quantcast-tracking-number' 
)->inContentLanguage();
+   $message = $skin->msg( 'quantcast-tracking-number' 
)->inContentLanguage();
// We have a custom tracking code, use it!
if ( !$message->isDisabled() ) {
$trackingCode = trim( $message->text() );
@@ -39,9 +39,9 @@
qacct: "' . $safeCode . '"
};
/*]]>*/
-   http://edge.quantserve.com/quant.js";>
+   

-   http://pixel.quantserve.com/pixel/' . $safeCode . 
'.gif" style="display: none;" border="0" height="1" width="1" alt="Quantcast" />
+   

' . "\n\n";
}
diff --git a/extension.json b/extension.json
index 2bc2bb4..fce32d5 100644
--- a/extension.json
+++ b/extension.json
@@ -1,6 +1,6 @@
 {
"name": "Quantcast Tracking",
-   "version": "0.4.0",
+   "version": "0.4.1",
"author": [
"Jack Phoenix"
],
@@ -19,9 +19,7 @@
"QuantcastTracking": "QuantcastTracking.class.php"
},
"Hooks": {
-   "SkinAfterBottomScripts": [
-   "QuantcastTracking::onSkinAfterBottomScripts"
-   ]
+   "SkinAfterBottomScripts": 
"QuantcastTracking::onSkinAfterBottomScripts"
},
"manifest_version": 1
 }

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I5b0cf58e079d46dafe69e87c632d0e6f5402f60a
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Quantcast
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki/core[master]: Make ImagePage#getThumbPrevText and ImagePage#makeSizeLink p...

2017-12-20 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/399574 )

Change subject: Make ImagePage#getThumbPrevText and ImagePage#makeSizeLink 
protected instead of private
..

Make ImagePage#getThumbPrevText and ImagePage#makeSizeLink protected instead of 
private

So that extensions wishing to modify ImagePage#openShowImage() that want
to preserve most of the existing functionality (at least in certain
contexts) do not have to copypaste these two methods over.
ImagePage#openShowImage() itself is ridiculously large and it's absurd
that to change a few things there you need to copy over the whole giant
block of code, but that's a separate matter.

Inspired by wikiHow's WikihowImagePage extension and their associated core
hacks to ImagePage.php, which hopefully won't be needed in the future.

Change-Id: Ic5e16acfc2cf4683154a60a3eaa9df69d30d03cb
---
M includes/page/ImagePage.php
1 file changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/74/399574/1

diff --git a/includes/page/ImagePage.php b/includes/page/ImagePage.php
index 1dcdc65..8724c45 100644
--- a/includes/page/ImagePage.php
+++ b/includes/page/ImagePage.php
@@ -632,7 +632,7 @@
 * @param string $sizeLinkBigImagePreview HTML for the current size
 * @return string HTML output
 */
-   private function getThumbPrevText( $params, $sizeLinkBigImagePreview ) {
+   protected function getThumbPrevText( $params, $sizeLinkBigImagePreview 
) {
if ( $sizeLinkBigImagePreview ) {
// Show a different message of preview is different 
format from original.
$previewTypeDiffers = false;
@@ -670,7 +670,7 @@
 * @param int $height
 * @return string
 */
-   private function makeSizeLink( $params, $width, $height ) {
+   protected function makeSizeLink( $params, $width, $height ) {
$params['width'] = $width;
$params['height'] = $height;
$thumbnail = $this->displayImg->transform( $params );

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic5e16acfc2cf4683154a60a3eaa9df69d30d03cb
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...Theme[master]: 2008 called, it wants its IDs back

2017-12-20 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/399563 )

Change subject: 2008 called, it wants its IDs back
..

2008 called, it wants its IDs back

These IDs haven't been used since r41798.

Change-Id: I036da7bedf089764cfe4d6cfabe6ced85646
---
M monobook/dark.css
1 file changed, 1 insertion(+), 4 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Theme 
refs/changes/63/399563/1

diff --git a/monobook/dark.css b/monobook/dark.css
index d011d5d..7ba4edc 100644
--- a/monobook/dark.css
+++ b/monobook/dark.css
@@ -1,8 +1,6 @@
 /*
 ** Dark theme for MonoBook
 ** Originally from ZeldaWiki.org and modified by Skizzerz 
 for ShoutWiki
-**
-** @date 1 November 2014
 */
 div#content {
background: #1c3855;
@@ -318,8 +316,7 @@
 }
 
 /* Recreating-deleted-page/reupload file warning and log entries */
-div#mw-upload-deleted-warn,
-div#mw-recreate-deleted-warn {
+div.mw-warning-with-logexcerpt {
padding: 3px;
margin-bottom: 3px;
border: 2px solid #2F6FAB;

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I036da7bedf089764cfe4d6cfabe6ced85646
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Theme
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...Timeless[master]: LanguageConverter support for [[MediaWiki:Timeless-sitetitle]]

2017-11-24 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/393221 )

Change subject: LanguageConverter support for [[MediaWiki:Timeless-sitetitle]]
..

LanguageConverter support for [[MediaWiki:Timeless-sitetitle]]

Bug: T181260
Change-Id: Ife63a96ad9b38345abff508cbdaeaf70a3663ac7
---
M TimelessTemplate.php
1 file changed, 6 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/skins/Timeless 
refs/changes/21/393221/1

diff --git a/TimelessTemplate.php b/TimelessTemplate.php
index d035e3b..7f89511 100644
--- a/TimelessTemplate.php
+++ b/TimelessTemplate.php
@@ -250,6 +250,7 @@
 */
protected function getLogo( $id = 'p-logo', $part = 'both' ) {
$html = '';
+   $language = $this->getSkin()->getLanguage();
 
$html .= Html::openElement(
'div',
@@ -261,7 +262,11 @@
);
if ( $part !== 'image' ) {
$titleClass = '';
-   $siteTitle = $this->getMsg( 'timeless-sitetitle' 
)->escaped();
+   if ( $language->hasVariants() ) {
+   $siteTitle = $language->convert( $this->getMsg( 
'timeless-sitetitle' )->escaped() );
+   } else {
+   $siteTitle = $this->getMsg( 
'timeless-sitetitle' )->escaped();
+   }
// width is 11em; 13 characters will probably fit?
if ( mb_strlen( $siteTitle ) > 13 ) {
$titleClass = 'long';

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ife63a96ad9b38345abff508cbdaeaf70a3663ac7
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/skins/Timeless
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...Timeless[master]: Pass the amount of hidden categories as a parameter to the h...

2017-11-23 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/393099 )

Change subject: Pass the amount of hidden categories as a parameter to the 
hidden-categories i18n message
..

Pass the amount of hidden categories as a parameter to the hidden-categories 
i18n message

Bug: T178655
Change-Id: Iade5e2af18529b8ebd9e26f45819fd77f549db20
---
M TimelessTemplate.php
1 file changed, 5 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/skins/Timeless 
refs/changes/99/393099/1

diff --git a/TimelessTemplate.php b/TimelessTemplate.php
index d035e3b..a781e71 100644
--- a/TimelessTemplate.php
+++ b/TimelessTemplate.php
@@ -771,7 +771,11 @@
$catList .= $this->getCatList( 
$normalCats, 'catlist-normal', 'categories' );
}
if ( $hiddenCount ) {
-   $catList .= $this->getCatList( 
$hiddenCats, 'catlist-hidden', 'hidden-categories' );
+   $catList .= $this->getCatList(
+   $hiddenCats,
+   'catlist-hidden',
+   [ 'hidden-categories', 
$hiddenCount ]
+   );
}
}
}

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Iade5e2af18529b8ebd9e26f45819fd77f549db20
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/skins/Timeless
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] mediawiki...RelatedArticles[master]: [WIP] Use mw.util to get the element ID for skin-agnosticness

2017-11-23 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/393080 )

Change subject: [WIP] Use mw.util to get the element ID for skin-agnosticness
..

[WIP] Use mw.util to get the element ID for skin-agnosticness

Bug: T181242
Change-Id: I1120462862bd458cb742e5246d4bc068eed72b52
---
M extension.json
M resources/ext.relatedArticles.readMore.bootstrap/index.js
2 files changed, 10 insertions(+), 2 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/RelatedArticles 
refs/changes/80/393080/1

diff --git a/extension.json b/extension.json
index 8bf4b46..1e25ab7 100644
--- a/extension.json
+++ b/extension.json
@@ -116,6 +116,7 @@
"mediawiki.experiments",
"mediawiki.user",
"mediawiki.api",
+   "mediawiki.util",
"mediawiki.Uri",
"mediawiki.viewport",
"ext.relatedArticles.readMore.gateway",
diff --git a/resources/ext.relatedArticles.readMore.bootstrap/index.js 
b/resources/ext.relatedArticles.readMore.bootstrap/index.js
index 3c1c81e..9c4a65f 100644
--- a/resources/ext.relatedArticles.readMore.bootstrap/index.js
+++ b/resources/ext.relatedArticles.readMore.bootstrap/index.js
@@ -13,7 +13,8 @@
loadRelatedArticles(); // eslint-disable-line
} ),
$window = $( window ),
-   shouldShowReadMore;
+   shouldShowReadMore,
+   insertAfterElementId;
 
/**
 * Gets whether the feature is enabled for the user.
@@ -79,8 +80,14 @@
if ( $( '.footer-content' ).length ) {
$( '' ).prependTo( 
'.footer-content' );
} else {
+   // At least try being skin-agnostic if possible 
(T181242)
+   if ( mw.util.$content[0].id !== undefined ) {
+   insertAfterElementId = '#' + 
mw.util.$content[0].id;
+   } else {
+   insertAfterElementId = '#content';
+   }
$( '' )
-   .insertAfter( '#content' );
+   .insertAfter( insertAfterElementId );
}
 
// try related articles load on scroll

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I1120462862bd458cb742e5246d4bc068eed72b52
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/RelatedArticles
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...Form[master]: Axing old reCAPTCHA support

2017-11-21 Thread Jack Phoenix (Code Review)
Jack Phoenix has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/392741 )

Change subject: Axing old reCAPTCHA support
..


Axing old reCAPTCHA support

Use $wgCaptchaTriggers['form'] to configure CAPTCHA for forms.

Change-Id: If38683947deb116b9edd2599b37c9f41a88c4f6b
---
M SpecialForm.php
M extension.json
M i18n/en.json
3 files changed, 0 insertions(+), 32 deletions(-)

Approvals:
  Jack Phoenix: Verified; Looks good to me, approved



diff --git a/SpecialForm.php b/SpecialForm.php
index 710c51f..56921ca 100644
--- a/SpecialForm.php
+++ b/SpecialForm.php
@@ -156,8 +156,6 @@
}
 
private function showForm( $form, $errMsg = null ) {
-   global $wgSpecialFormRecaptcha;
-
$out = $this->getOutput();
$request = $this->getRequest();
$user = $this->getUser();
@@ -199,13 +197,6 @@
);
}
 
-   # Anonymous user, use reCAPTCHA
-   if ( $user->isAnon() && $wgSpecialFormRecaptcha ) {
-   require_once 'recaptchalib.php';
-   global $recaptcha_public_key; # same as used by 
reCAPTCHA extension
-   $out->addHTML( recaptcha_get_html( 
$recaptcha_public_key ) );
-   }
-
# CAPTCHA enabled?
if ( $this->useCaptcha() ) {
$out->addHTML( $this->getCaptcha() );
@@ -226,28 +217,9 @@
 * @param Form $form
 */
private function createArticle( $form ) {
-   global $wgSpecialFormRecaptcha;
-
$out = $this->getOutput();
$request = $this->getRequest();
$user = $this->getUser();
-
-   # Check reCAPTCHA
-   if ( $user->isAnon() && $wgSpecialFormRecaptcha ) {
-   require_once 'recaptchalib.php';
-   global $recaptcha_private_key; # same as used by 
reCAPTCHA extension
-   $resp = recaptcha_check_answer(
-   $recaptcha_private_key,
-   $_SERVER['REMOTE_ADDR'],
-   $request->getText( 'recaptcha_challenge_field' 
),
-   $request->getText( 'recaptcha_response_field' )
-   );
-
-   if ( !$resp->is_valid ) {
-   $this->showForm( $form, $this->msg( 
'form-bad-recaptcha' )->text() );
-   return;
-   }
-   }
 
# Check ordinary CAPTCHA
if ( $this->useCaptcha() && 
!ConfirmEditHooks::getInstance()->passCaptchaFromRequest( $request, $user ) ) {
diff --git a/extension.json b/extension.json
index 437c297..af98792 100644
--- a/extension.json
+++ b/extension.json
@@ -9,9 +9,6 @@
"url": "https://www.mediawiki.org/wiki/Extension:Form;,
"descriptionmsg": "form-desc",
"type": "specialpage",
-   "config": {
-   "SpecialFormRecaptcha": false
-   },
"SpecialPages": {
"Form": "SpecialForm"
},
diff --git a/i18n/en.json b/i18n/en.json
index 7cbbc22..5ca2299 100644
--- a/i18n/en.json
+++ b/i18n/en.json
@@ -21,7 +21,6 @@
"form-article-exists": "Page exists",
"form-article-existstext": "The page [[$1]] already exists.",
"form-bad-page-name": "Bad page name",
-   "form-bad-recaptcha": "Incorrect values for reCaptcha. Try again.",
"form-bad-page-name-text": "The form data you entered makes a bad page 
name, \"$1\".",
"form-required-field-error": "The {{PLURAL:$2|field $1 is|fields $1 
are}} required for this form.\nPlease fill {{PLURAL:$2|it|them}} in.",
"form-save-summary": "New page using [[Special:Form/$1|form $1]]",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: If38683947deb116b9edd2599b37c9f41a88c4f6b
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Form
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 
Gerrit-Reviewer: Jack Phoenix 
Gerrit-Reviewer: Siebrand 

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


[MediaWiki-commits] [Gerrit] mediawiki...Form[master]: Axing old reCAPTCHA support

2017-11-21 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/392741 )

Change subject: Axing old reCAPTCHA support
..

Axing old reCAPTCHA support

Use $wgCaptchaTriggers['form'] to configure CAPTCHA for forms.

Change-Id: If38683947deb116b9edd2599b37c9f41a88c4f6b
---
M SpecialForm.php
M extension.json
M i18n/en.json
3 files changed, 0 insertions(+), 32 deletions(-)


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

diff --git a/SpecialForm.php b/SpecialForm.php
index 710c51f..56921ca 100644
--- a/SpecialForm.php
+++ b/SpecialForm.php
@@ -156,8 +156,6 @@
}
 
private function showForm( $form, $errMsg = null ) {
-   global $wgSpecialFormRecaptcha;
-
$out = $this->getOutput();
$request = $this->getRequest();
$user = $this->getUser();
@@ -199,13 +197,6 @@
);
}
 
-   # Anonymous user, use reCAPTCHA
-   if ( $user->isAnon() && $wgSpecialFormRecaptcha ) {
-   require_once 'recaptchalib.php';
-   global $recaptcha_public_key; # same as used by 
reCAPTCHA extension
-   $out->addHTML( recaptcha_get_html( 
$recaptcha_public_key ) );
-   }
-
# CAPTCHA enabled?
if ( $this->useCaptcha() ) {
$out->addHTML( $this->getCaptcha() );
@@ -226,28 +217,9 @@
 * @param Form $form
 */
private function createArticle( $form ) {
-   global $wgSpecialFormRecaptcha;
-
$out = $this->getOutput();
$request = $this->getRequest();
$user = $this->getUser();
-
-   # Check reCAPTCHA
-   if ( $user->isAnon() && $wgSpecialFormRecaptcha ) {
-   require_once 'recaptchalib.php';
-   global $recaptcha_private_key; # same as used by 
reCAPTCHA extension
-   $resp = recaptcha_check_answer(
-   $recaptcha_private_key,
-   $_SERVER['REMOTE_ADDR'],
-   $request->getText( 'recaptcha_challenge_field' 
),
-   $request->getText( 'recaptcha_response_field' )
-   );
-
-   if ( !$resp->is_valid ) {
-   $this->showForm( $form, $this->msg( 
'form-bad-recaptcha' )->text() );
-   return;
-   }
-   }
 
# Check ordinary CAPTCHA
if ( $this->useCaptcha() && 
!ConfirmEditHooks::getInstance()->passCaptchaFromRequest( $request, $user ) ) {
diff --git a/extension.json b/extension.json
index 437c297..af98792 100644
--- a/extension.json
+++ b/extension.json
@@ -9,9 +9,6 @@
"url": "https://www.mediawiki.org/wiki/Extension:Form;,
"descriptionmsg": "form-desc",
"type": "specialpage",
-   "config": {
-   "SpecialFormRecaptcha": false
-   },
"SpecialPages": {
"Form": "SpecialForm"
},
diff --git a/i18n/en.json b/i18n/en.json
index 7cbbc22..5ca2299 100644
--- a/i18n/en.json
+++ b/i18n/en.json
@@ -21,7 +21,6 @@
"form-article-exists": "Page exists",
"form-article-existstext": "The page [[$1]] already exists.",
"form-bad-page-name": "Bad page name",
-   "form-bad-recaptcha": "Incorrect values for reCaptcha. Try again.",
"form-bad-page-name-text": "The form data you entered makes a bad page 
name, \"$1\".",
"form-required-field-error": "The {{PLURAL:$2|field $1 is|fields $1 
are}} required for this form.\nPlease fill {{PLURAL:$2|it|them}} in.",
"form-save-summary": "New page using [[Special:Form/$1|form $1]]",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: If38683947deb116b9edd2599b37c9f41a88c4f6b
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Form
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...SocialProfile[master]: Add missing i18n message "user-profile-preferences-emails-ma...

2017-11-21 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/392692 )

Change subject: Add missing i18n message 
"user-profile-preferences-emails-manage"
..

Add missing i18n message "user-profile-preferences-emails-manage"

Bug: T180306
Change-Id: I71444bacfb86b6167c74df854e051be72ed2f9ac
---
M UserProfile/i18n/en.json
M UserProfile/i18n/fi.json
2 files changed, 2 insertions(+), 0 deletions(-)


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

diff --git a/UserProfile/i18n/en.json b/UserProfile/i18n/en.json
index eb81a10..7c635fd 100644
--- a/UserProfile/i18n/en.json
+++ b/UserProfile/i18n/en.json
@@ -125,6 +125,7 @@
"user-profile-interests-foodsnacks": "Food & snacks",
"user-profile-interests-drinks": "Drinks",
"user-profile-preferences-emails": "E-mail notifications",
+   "user-profile-preferences-emails-manage": "E-mail notifications are 
handled by the Echo extension. You can change these in your 
[[Special:Preferences#mw-prefsection-echo|preferences]].",
"user-profile-preferences-emails-personalmessage": "When sent a 
personal message",
"user-profile-preferences-emails-friendfoe": "When another user friends 
or foes you",
"user-profile-preferences-emails-gift": "When you receive a gift",
diff --git a/UserProfile/i18n/fi.json b/UserProfile/i18n/fi.json
index c3f85ac..9d55f13 100644
--- a/UserProfile/i18n/fi.json
+++ b/UserProfile/i18n/fi.json
@@ -129,6 +129,7 @@
"user-profile-interests-foodsnacks": "Ruoka & naposteltavat",
"user-profile-interests-drinks": "Juomat",
"user-profile-preferences-emails": "Sähköposti-ilmoitukset",
+   "user-profile-preferences-emails-manage": "Sähköposti-ilmoituksista 
vastaa Echo-lisäosa. Voit muuttaa näitä asetuksia 
[[Special:Preferences#mw-prefsection-echo|henkilökohtaisissa asetuksissasi]].",
"user-profile-preferences-emails-personalmessage": "Kun saan 
yksityisviestin",
"user-profile-preferences-emails-friendfoe": "Kun toinen käyttäjä lisää 
minut ystäväksi tai viholliseksi",
"user-profile-preferences-emails-gift": "Kun saan lahjan",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I71444bacfb86b6167c74df854e051be72ed2f9ac
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/SocialProfile
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] integration/config[master]: Whitelist ShoutWiki and Uncyclomedia email addresses

2017-11-20 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/392492 )

Change subject: Whitelist ShoutWiki and Uncyclomedia email addresses
..

Whitelist ShoutWiki and Uncyclomedia email addresses

Change-Id: Ifbb23ff58ec0833252103a242a3a876224352c9b
---
M zuul/layout.yaml
1 file changed, 4 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/integration/config 
refs/changes/92/392492/1

diff --git a/zuul/layout.yaml b/zuul/layout.yaml
index e215313..4c3dce5 100644
--- a/zuul/layout.yaml
+++ b/zuul/layout.yaml
@@ -45,6 +45,8 @@
 - |
   (?x) ^(?!(
 .*?@wikimedia\.(org|de)
+| .*?@shoutwiki\.com
+| .*?@uncyclomedia\.co
 | 0freerunning@gmail\.com
 | 01tonythomas@gmail\.com
 | 6020peaks@gmail\.com
@@ -301,6 +303,8 @@
 
   email: _whitelist
- .*?@wikimedia\.(org|de)$
+   - .*?@shoutwiki\.com$
+   - .*?@uncyclomedia\.co$
 
   # WMF staff & contractors:
- ^aarcos\.wiki@gmail\.com$

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ifbb23ff58ec0833252103a242a3a876224352c9b
Gerrit-PatchSet: 1
Gerrit-Project: integration/config
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...CodeReview[master]: Add user name autocompletion support to the "link SVN commit...

2017-11-20 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/392487 )

Change subject: Add user name autocompletion support to the "link SVN committer 
to wiki user" page (Special:Code//author//link)
..

Add user name autocompletion support to the "link SVN committer to wiki user" 
page (Special:Code//author//link)

Change-Id: I543abc9bcf0ba9198c7caee4c4a9b1967e45c798
---
M ui/CodeRevisionAuthorLink.php
1 file changed, 4 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/CodeReview 
refs/changes/87/392487/1

diff --git a/ui/CodeRevisionAuthorLink.php b/ui/CodeRevisionAuthorLink.php
index 521fa92..ebe8e69 100644
--- a/ui/CodeRevisionAuthorLink.php
+++ b/ui/CodeRevisionAuthorLink.php
@@ -17,6 +17,7 @@
 
function execute() {
global $wgRequest, $wgUser;
+
if ( !$wgUser->isAllowed( 'codereview-link-user' ) ) {
throw new PermissionsError( 'codereview-link-user' );
}
@@ -30,6 +31,7 @@
 
function doForm() {
global $wgOut, $wgUser;
+
$form = Xml::openElement( 'form', [ 'method' => 'post',
'action' => $this->getTitle()->getLocalURL(),
'name' => 'uluser', 'id' => 'mw-codeauthor-form1' ] );
@@ -50,12 +52,13 @@
}
 
$form .= Xml::inputLabel( wfMessage( 'code-author-name' 
)->text(),
-   'linktouser', 'username', 30, '' ) . ' ' .
+   'linktouser', 'username', 30, '', [ 'class' => 
'mw-autocomplete-user' ] ) . ' ' .
Xml::submitButton( wfMessage( 'ok' )->text(), [ 
'name' => 'newname' ] ) .
Xml::closeElement( 'fieldset' ) .
$additional .
Xml::closeElement( 'form' ) . "\n";
 
+   $wgOut->addModules( 'mediawiki.userSuggest' );
$wgOut->addHTML( $this->linkStatus() . $form );
}
 

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I543abc9bcf0ba9198c7caee4c4a9b1967e45c798
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/CodeReview
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...SocialProfile[master]: Fix sender name in messages sent via Special:SendBoardBlast

2017-11-20 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/392482 )

Change subject: Fix sender name in messages sent via Special:SendBoardBlast
..

Fix sender name in messages sent via Special:SendBoardBlast

In I93e7e67afd0bc36018ade0611e0840b01d515060 I had converted
SpecialSendBoardBlast.php to use RequestContext instead of globals, but
this didn't take into account the fact that the execute() method already
had a local variable named $user. Now the $user variable represents the
current user (sender) while the $recipient variable is used for the
message recipient.

Change-Id: I85dc740c0569ccfb1bd1f6587152f51b2bd7b629
---
M UserBoard/SpecialSendBoardBlast.php
1 file changed, 4 insertions(+), 4 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/SocialProfile 
refs/changes/82/392482/1

diff --git a/UserBoard/SpecialSendBoardBlast.php 
b/UserBoard/SpecialSendBoardBlast.php
index 3bc307d..a1e67c9 100644
--- a/UserBoard/SpecialSendBoardBlast.php
+++ b/UserBoard/SpecialSendBoardBlast.php
@@ -62,11 +62,11 @@
$count = 0;
$user_ids_to = explode( ',', $request->getVal( 'ids' ) 
);
foreach ( $user_ids_to as $user_id ) {
-   $user = User::newFromId( $user_id );
-   $user->loadFromId();
-   $user_name = $user->getName();
+   $recipient = User::newFromId( $user_id );
+   $recipient->loadFromId();
+   $user_name = $recipient->getName();
$b->sendBoardMessage(
-   $user->getID(),
+   $user->getId(),
$user->getName(),
$user_id,
$user_name,

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I85dc740c0569ccfb1bd1f6587152f51b2bd7b629
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/SocialProfile
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...webplatform[master]: Turn the topics navigation (bottom footer) into an editable ...

2017-11-17 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/392013 )

Change subject: Turn the topics navigation (bottom footer) into an editable 
MediaWiki: message
..

Turn the topics navigation (bottom footer) into an editable MediaWiki: message

The syntax of [[MediaWiki:Webplatform-bottom-footer]] is similar to that
of [[MediaWiki:Sidebar]]:
* Page name|Displayed text
* Another page|some-interface-message-name

The skin class parseItem(), getMessageAsArray() and getBottomFooterLinks()
methods originate from Wikia codebase and thus are licensed under GPLv2+.
See
https://github.com/Wikia/app/blob/dev/includes/wikia/GlobalFunctions.php
for the current Wikia versions of these methods (well, the first two,
anyway) as well as a full history of authors.
These particular methods are copied from ShoutWiki's version of the Monaco
skin and changed to non-static methods (to make use of RequestContext
where appropriate) and old (long) array syntax converted to short array
syntax.

Change-Id: Iad79bd61f679d38ce9eb2b20023f3fd86835bff4
---
M SkinWebPlatform.class.php
M WebPlatformTemplate.class.php
M i18n/en.json
M i18n/qqq.json
4 files changed, 119 insertions(+), 8 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/skins/webplatform 
refs/changes/13/392013/1

diff --git a/SkinWebPlatform.class.php b/SkinWebPlatform.class.php
index 887052e..bf17b57 100644
--- a/SkinWebPlatform.class.php
+++ b/SkinWebPlatform.class.php
@@ -70,4 +70,108 @@
parent::setupSkinUserCss( $out );
$out->addModuleStyles( 'skins.webplatform.css' );
}
+
+   /**
+* Parses MediaWiki:Webplatform-bottom-footer
+* @return array
+*/
+   public function getBottomFooterLinks() {
+   $nodes = [];
+   $lines = $this->getMessageAsArray( 'Webplatform-bottom-footer' 
);
+   if ( !$lines ) {
+   return $nodes;
+   }
+
+   foreach ( $lines as $line ) {
+   $depth = strrpos( $line, '*' );
+   if ( $depth === 0 ) {
+   $nodes[] = $this->parseItem( $line );
+   }
+   }
+
+   return $nodes;
+   }
+
+   /**
+* Parse one line from MediaWiki message to array with indexes 'text', 
'href',
+* 'org' and 'desc'
+*
+* @param string $line Name of a MediaWiki: message
+* @return array
+*/
+   public function parseItem( $line ) {
+   $href = false;
+
+   // trim spaces and asterisks from line and then split it to 
maximum three chunks
+   $line_temp = explode( '|', trim( $line, '* ' ), 3 );
+
+   // trim [ and ] from line to have just http://en.wikipedia.org 
instead
+   // of [http://en.wikipedia.org] for external links
+   $line_temp[0] = trim( $line_temp[0], '[]' );
+
+   // $line_temp now contains page name or URL as the 0th array 
element
+   // and the link description as the 1st array element
+   if ( count( $line_temp ) >= 2 && $line_temp[1] != '' ) {
+   $msgObj = $this->msg( $line_temp[0] );
+   $link = ( $msgObj->isDisabled() ? $line_temp[0] : trim( 
$msgObj->inContentLanguage()->text() ) );
+   $textObj = $this->msg( trim( $line_temp[1] ) );
+   $line = ( !$textObj->isDisabled() ? $textObj->text() : 
trim( $line_temp[1] ) );
+   } else {
+   $line = $link = trim( $line_temp[0] );
+   }
+
+   $descText = null;
+   if ( count( $line_temp ) > 2 && $line_temp[2] != '' ) {
+   $desc = $line_temp[2];
+   $descObj = $this->msg( $desc );
+   if ( $descObj->isDisabled() ) {
+   $descText = $desc;
+   } else {
+   $descText = $descObj->text();
+   }
+   }
+
+   $lineObj = $this->msg( $line );
+   if ( $lineObj->isDisabled() ) {
+   $text = $line;
+   } else {
+   $text = $lineObj->text();
+   }
+
+   if ( $link != null ) {
+   if ( preg_match( '/^(?:' . wfUrlProtocols() . ')/', 
$link ) ) {
+   $href = $link;
+   } else {
+   $title = Title::newFromText( $link );
+   if ( $title ) {
+   $title = $title->fixSpecialName();
+   $href = $title->getLocalURL();
+   } else {
+   $href 

[MediaWiki-commits] [Gerrit] mediawiki...webplatform[master]: Convert to short array syntax

2017-11-17 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/392010 )

Change subject: Convert to short array syntax
..

Convert to short array syntax

Also fixed the documentation for WebPlatformTemplate::renderSearch().

Change-Id: I4e4ef728e9bf45d0d32e2565b5e8729160533b30
---
M WebPlatformTemplate.class.php
1 file changed, 7 insertions(+), 10 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/skins/webplatform 
refs/changes/10/392010/1

diff --git a/WebPlatformTemplate.class.php b/WebPlatformTemplate.class.php
index f96ea77..7a9148f 100644
--- a/WebPlatformTemplate.class.php
+++ b/WebPlatformTemplate.class.php
@@ -109,7 +109,7 @@

http://webplatform.org/;>HOME
DOCS
-   
+   


 
@@ -121,7 +121,7 @@



-   
+   
 

data['sitenotice'] ): ?>
@@ -319,11 +319,11 @@
$link = $this->data['view_urls']['form_edit'];
}
} else {
-   $link = array(
+   $link = [
'href' => Skin::makeSpecialUrl( 'Userlogin' ),
'id' => 'ca-edit',
'text' => $this->getSkin()->msg( 'edit' 
)->text()
-   );
+   ];
}
?>

@@ -422,10 +422,7 @@
}
 
/**
-* Render one or more navigations elements by name, automatically 
reveresed
-* when UI is in RTL mode
-*
-* @param $elements array
+* Render the search portlet
 */
private function renderSearch() {
?>
@@ -438,8 +435,8 @@


makeSearchInput( 
array( 'id' => 'searchInput', 'type' => 'input' ) );
-   echo $this->makeSearchButton( 
'fulltext', array( 'id' => 'mw-searchButton', 'class' => 'searchButton', 
'value' => ' ' ) );
+   echo $this->makeSearchInput( [ 
'id' => 'searchInput', 'type' => 'input' ] );
+   echo $this->makeSearchButton( 
'fulltext', [ 'id' => 'mw-searchButton', 'class' => 'searchButton', 'value' => 
' ' ] );
?>



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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I4e4ef728e9bf45d0d32e2565b5e8729160533b30
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/skins/webplatform
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...Video[master]: Version 1.7.2: register the video log properly in extension....

2017-11-16 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/391791 )

Change subject: Version 1.7.2: register the video log properly in 
extension.json so [[Special:Log/video]] works as intended
..

Version 1.7.2: register the video log properly in extension.json so 
[[Special:Log/video]] works as intended

Bug: T180411
Change-Id: If16a41e790ce0c8342b769d894639828094a5f43
---
M extension.json
1 file changed, 4 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Video 
refs/changes/91/391791/1

diff --git a/extension.json b/extension.json
index d562611..5ca8bf9 100644
--- a/extension.json
+++ b/extension.json
@@ -1,6 +1,6 @@
 {
"name": "Video",
-   "version": "1.7.1",
+   "version": "1.7.2",
"author": [
"David Pean",
"Jack Phoenix",
@@ -117,6 +117,9 @@
"position": "top"
}
},
+   "LogTypes": [
+   "video"
+   ],
"LogActionsHandlers": {
"video/*": "LogFormatter"
},

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: If16a41e790ce0c8342b769d894639828094a5f43
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Video
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...grabbers[master]: Removing my email address

2017-11-12 Thread Jack Phoenix (Code Review)
Jack Phoenix has submitted this change and it was merged. ( 
https://gerrit.wikimedia.org/r/390870 )

Change subject: Removing my email address
..


Removing my email address

Change-Id: I73b3ee66ed31bd4233b0593d1eff57bae32c9378
---
M grabUserBlocks.php
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  Jack Phoenix: Verified; Looks good to me, approved



diff --git a/grabUserBlocks.php b/grabUserBlocks.php
index 0f25579..ce9865e 100644
--- a/grabUserBlocks.php
+++ b/grabUserBlocks.php
@@ -5,7 +5,7 @@
  *
  * @file
  * @ingroup Maintenance
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @author Jesús Martínez 
  * @version 1.0
  * @date 28 July 2013

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I73b3ee66ed31bd4233b0593d1eff57bae32c9378
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/tools/grabbers
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 
Gerrit-Reviewer: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...grabbers[master]: Removing my email address

2017-11-12 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390870 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I73b3ee66ed31bd4233b0593d1eff57bae32c9378
---
M grabUserBlocks.php
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/tools/grabbers 
refs/changes/70/390870/1

diff --git a/grabUserBlocks.php b/grabUserBlocks.php
index 0f25579..ce9865e 100644
--- a/grabUserBlocks.php
+++ b/grabUserBlocks.php
@@ -5,7 +5,7 @@
  *
  * @file
  * @ingroup Maintenance
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @author Jesús Martínez 
  * @version 1.0
  * @date 28 July 2013

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I73b3ee66ed31bd4233b0593d1eff57bae32c9378
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/tools/grabbers
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...ImageRating[master]: Removing my email address

2017-11-12 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390869 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I3aa56c7baef9c34d1c07ad29e184a8c7f74615c0
---
M includes/api/ApiImageRating.php
1 file changed, 0 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/ImageRating 
refs/changes/69/390869/1

diff --git a/includes/api/ApiImageRating.php b/includes/api/ApiImageRating.php
index 9c74fc9..6b26e28 100644
--- a/includes/api/ApiImageRating.php
+++ b/includes/api/ApiImageRating.php
@@ -4,8 +4,6 @@
  *
  * @file
  * @ingroup API
- * @author Jack Phoenix 
- * @date 14 January 2017
  * @see https://www.mediawiki.org/wiki/API:Extensions#ApiSampleApiExtension.php
  */
 class ApiImageRating extends ApiBase {

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I3aa56c7baef9c34d1c07ad29e184a8c7f74615c0
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/ImageRating
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...NoBogusUserpages[master]: Removing my email address

2017-11-12 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390868 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I362f74d65174a845409058a6459e8f8dff9033c9
---
M i18n/fi.json
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/NoBogusUserpages 
refs/changes/68/390868/1

diff --git a/i18n/fi.json b/i18n/fi.json
index 263398d..0434f93 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"nobogususerpages-desc": "Rajoittaa käyttäjäsivujen luontia sellaisille 
käyttäjätunnuksille, joita ei ole olemassa",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I362f74d65174a845409058a6459e8f8dff9033c9
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/NoBogusUserpages
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...DeskMessMirrored[master]: Removing my email address

2017-11-12 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390867 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Iddf616b3e904d8b2166d8ef642c39b8fcbcf
---
M i18n/fi.json
M includes/DeskMessMirroredTemplate.php
2 files changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/skins/DeskMessMirrored 
refs/changes/67/390867/1

diff --git a/i18n/fi.json b/i18n/fi.json
index b5b7158..88bdb7d 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"deskmessmirrored-skin-desc": "Marmorinen pöytä, jonka päällä on 
sekoitus erinäisiä uusia ja vanhoja esineitä, kuten vanhoja papereita, 
ruostumattomasta teräksestä valmistettu kynä ja kuppi kuumaa kahvia!"
diff --git a/includes/DeskMessMirroredTemplate.php 
b/includes/DeskMessMirroredTemplate.php
index 44f4f31..6a8a181 100644
--- a/includes/DeskMessMirroredTemplate.php
+++ b/includes/DeskMessMirroredTemplate.php
@@ -6,7 +6,7 @@
  *
  * @file
  * @author Edward Caissie  -- original WordPress 
theme
- * @author Jack Phoenix  -- MediaWiki port
+ * @author Jack Phoenix -- MediaWiki port
  * @see http://wordpress.org/themes/desk-mess-mirrored
  * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public 
License version 2
  */

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Iddf616b3e904d8b2166d8ef642c39b8fcbcf
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/skins/DeskMessMirrored
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...Nimbus[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390865 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I45e8a6720e1c9ff403f9fce9bee4034a2974ebcd
---
M i18n/fi.json
M i18n/fr.json
M includes/NimbusTemplate.php
M nimbus/Menu.js
4 files changed, 3 insertions(+), 4 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/skins/Nimbus 
refs/changes/65/390865/1

diff --git a/i18n/fi.json b/i18n/fi.json
index 59308a6..4979cf2 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,6 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix ",
"Linnea",
"SuperPete",
"01miki10",
diff --git a/i18n/fr.json b/i18n/fr.json
index 54a4af5..d1665aa 100644
--- a/i18n/fr.json
+++ b/i18n/fr.json
@@ -3,7 +3,7 @@
"authors": [
"Gomoko",
"Hashar",
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Urhixidur",
"Linedwell",
"Macofe",
diff --git a/includes/NimbusTemplate.php b/includes/NimbusTemplate.php
index e0d0179..207505f 100644
--- a/includes/NimbusTemplate.php
+++ b/includes/NimbusTemplate.php
@@ -12,7 +12,7 @@
  * @author Aaron Wright 
  * @author David Pean 
  * @author Inez Korczyński 
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @copyright Copyright © 2008-2017 Aaron Wright, David Pean, Inez Korczyński, 
Jack Phoenix
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
  */
diff --git a/nimbus/Menu.js b/nimbus/Menu.js
index 0c4598e..5750513 100644
--- a/nimbus/Menu.js
+++ b/nimbus/Menu.js
@@ -2,7 +2,7 @@
  * Menu navigation and other JavaScript functions used by the Nimbus skin.
  *
  * @file
- * @author Jack Phoenix  - cleanup & removal of YUI 
dependency, etc.
+ * @author Jack Phoenix - cleanup & removal of YUI dependency, etc.
  */
 /* global getElementsByClassName, window, document, setTimeout, clearTimeout */
 ( function ( $ ) {

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I45e8a6720e1c9ff403f9fce9bee4034a2974ebcd
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/skins/Nimbus
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...Truglass[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390866 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Ia7d727c3f114843110f7c132ce6c1be4e7dec40b
---
M i18n/fi.json
M includes/TruglassTemplate.php
M truglass/main.css
3 files changed, 3 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/skins/Truglass 
refs/changes/66/390866/1

diff --git a/i18n/fi.json b/i18n/fi.json
index 6f36d17..e797752 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"truglass-links": "{{GRAMMAR:genitive|{{SITENAME linkit",
diff --git a/includes/TruglassTemplate.php b/includes/TruglassTemplate.php
index bd94b0b..7c9b9a5 100644
--- a/includes/TruglassTemplate.php
+++ b/includes/TruglassTemplate.php
@@ -6,7 +6,7 @@
  *
  * @file
  * @author Elliott Franklin Cable 
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @copyright Copyright © Elliott Franklin Cable
  * @copyright Copyright © 2009-2017 Jack Phoenix
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
diff --git a/truglass/main.css b/truglass/main.css
index 0d27784..6c26669 100644
--- a/truglass/main.css
+++ b/truglass/main.css
@@ -4,7 +4,7 @@
 ** @license GPL (http://www.gnu.org/copyleft/gpl.html)
 ** @author Elliott Franklin Cable 
 ** @copyright © 2006-2007 Elliott Franklin Cable 
-** @copyright © 2007-2014 Jack Phoenix  -- fixes, 
standardization
+** @copyright © 2007-2017 Jack Phoenix -- fixes, standardization
 */
 
 /*--*

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia7d727c3f114843110f7c132ce6c1be4e7dec40b
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/skins/Truglass
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...Gamepress[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390864 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I26d3f3ed544b754423b50cd9cee5f26f615025d6
---
M i18n/fi.json
M includes/GamepressTemplate.php
2 files changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/skins/Gamepress 
refs/changes/64/390864/1

diff --git a/i18n/fi.json b/i18n/fi.json
index 48ec2a6..e96f630 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"gamepress-back-to-top": "Palaa alkuun "
diff --git a/includes/GamepressTemplate.php b/includes/GamepressTemplate.php
index d8bb813..c8bc04d 100644
--- a/includes/GamepressTemplate.php
+++ b/includes/GamepressTemplate.php
@@ -4,7 +4,7 @@
  *
  * @file
  * @author Aleksandra Łączek
- * @author Jack Phoenix  -- MediaWiki port
+ * @author Jack Phoenix -- MediaWiki port
  * @see http://wordpress.org/themes/gamepress
  * @see http://wp-themes.com/gamepress/
  */

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I26d3f3ed544b754423b50cd9cee5f26f615025d6
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/skins/Gamepress
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...DuskToDawn[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390863 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I10c9a15874b3473f6e350ab7a20db4327822ac7a
---
M i18n/fi.json
M includes/DuskToDawnTemplate.php
2 files changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/skins/DuskToDawn 
refs/changes/63/390863/1

diff --git a/i18n/fi.json b/i18n/fi.json
index d7fdede..35f3b94 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"dusktodawn-page-edited": "Sivua muokattu viimeksi {{int:ago|$1}}",
diff --git a/includes/DuskToDawnTemplate.php b/includes/DuskToDawnTemplate.php
index 40a127d..141a539 100644
--- a/includes/DuskToDawnTemplate.php
+++ b/includes/DuskToDawnTemplate.php
@@ -4,7 +4,7 @@
  *
  * @file
  * @author Automattic
- * @author Jack Phoenix  -- MediaWiki port
+ * @author Jack Phoenix -- MediaWiki port
  * @see http://theme.wordpress.com/themes/dusk-to-dawn/
  * @see http://wp-themes.com/dusk-to-dawn/
  */

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I10c9a15874b3473f6e350ab7a20db4327822ac7a
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/skins/DuskToDawn
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...MultiUpload[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390859 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I93f4ae1ff24b0333ea0779ad826061ef5486c7d8
---
M i18n/fi.json
1 file changed, 1 insertion(+), 1 deletion(-)


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

diff --git a/i18n/fi.json b/i18n/fi.json
index d920bab..de2da88 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Hopea"
]
},

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I93f4ae1ff24b0333ea0779ad826061ef5486c7d8
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/MultiUpload
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...TopLists[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390861 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I4ae87f60b2ca9133e5966b97e84d759c849927f7
---
M includes/api/ApiTopListsAddItem.php
M includes/api/ApiTopListsCheckListStatus.php
M includes/api/ApiTopListsVoteItem.php
M sql/toplists_votes.sql
4 files changed, 1 insertion(+), 7 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/TopLists 
refs/changes/61/390861/1

diff --git a/includes/api/ApiTopListsAddItem.php 
b/includes/api/ApiTopListsAddItem.php
index f1164f7..7e18811 100644
--- a/includes/api/ApiTopListsAddItem.php
+++ b/includes/api/ApiTopListsAddItem.php
@@ -4,8 +4,6 @@
  *
  * @file
  * @ingroup API
- * @author Jack Phoenix 
- * @date 12 February 2017
  * @see https://www.mediawiki.org/wiki/API:Extensions#ApiSampleApiExtension.php
  */
 class ApiTopListsAddItem extends ApiBase {
diff --git a/includes/api/ApiTopListsCheckListStatus.php 
b/includes/api/ApiTopListsCheckListStatus.php
index ff98e9d..2546e96 100644
--- a/includes/api/ApiTopListsCheckListStatus.php
+++ b/includes/api/ApiTopListsCheckListStatus.php
@@ -4,8 +4,6 @@
  *
  * @file
  * @ingroup API
- * @author Jack Phoenix 
- * @date 12 February 2017
  * @see https://www.mediawiki.org/wiki/API:Extensions#ApiSampleApiExtension.php
  */
 class ApiTopListsCheckListStatus extends ApiBase {
diff --git a/includes/api/ApiTopListsVoteItem.php 
b/includes/api/ApiTopListsVoteItem.php
index 862e04a..6cc7136 100644
--- a/includes/api/ApiTopListsVoteItem.php
+++ b/includes/api/ApiTopListsVoteItem.php
@@ -4,8 +4,6 @@
  *
  * @file
  * @ingroup API
- * @author Jack Phoenix 
- * @date 12 February 2017
  * @see https://www.mediawiki.org/wiki/API:Extensions#ApiSampleApiExtension.php
  */
 class ApiTopListsVoteItem extends ApiBase {
diff --git a/sql/toplists_votes.sql b/sql/toplists_votes.sql
index cd76bab..24ff761 100644
--- a/sql/toplists_votes.sql
+++ b/sql/toplists_votes.sql
@@ -1,5 +1,5 @@
 -- Based on the page_vote table schema by Piotr Molski (Moli)
--- With tweaks by Jack Phoenix 
+-- With tweaks by Jack Phoenix
 CREATE TABLE IF NOT EXISTS /*_*/toplists_votes (
-- Page ID
tlv_page_id int unsigned NOT NULL,

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I4ae87f60b2ca9133e5966b97e84d759c849927f7
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/TopLists
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...HAWelcome[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390856 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Ib9429e5043ce860e5fe463823f6baaab8a357e93
---
M HAWelcome.class.php
M i18n/fi.json
2 files changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/HAWelcome 
refs/changes/56/390856/1

diff --git a/HAWelcome.class.php b/HAWelcome.class.php
index b88718d..63397cc 100644
--- a/HAWelcome.class.php
+++ b/HAWelcome.class.php
@@ -6,7 +6,7 @@
  * @ingroup JobQueue
  * @author Krzysztof Krzyżaniak (eloy) 
  * @author Maciej Błaszkowski (Marooned) 
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @date 2009-12-27 (r8975)
  * @copyright Copyright © Krzysztof Krzyżaniak for Wikia Inc.
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
diff --git a/i18n/fi.json b/i18n/fi.json
index 0e1a5cc..1a91125 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"welcome-user-page": "==Tietoa minusta==\n''Tämä on käyttäjäsivusi. Ole 
hyvä ja muokkaa tätä sivua kertoaksesi yhteisölle itsestäsi!''\n\n==Omat 
muokkaukseni==\n*[[Special:Contributions/{{PAGENAME}}|Käyttäjän 
muokkaukset]]\n\n==Omat suosikkisivuni==\n*Lisää suosikkisivujasi 
tähän!\n*Suosikkisivu #2\n*Suosikkisivu #3",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib9429e5043ce860e5fe463823f6baaab8a357e93
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/HAWelcome
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...SiteScout[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390860 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I6742f6db3637366a414dd9a3f262ef00d08472e0
---
M i18n/fi.json
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/SiteScout 
refs/changes/60/390860/1

diff --git a/i18n/fi.json b/i18n/fi.json
index 0151d8d..205ca24 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"sitescout-anon": "Anonyymi käyttäjä",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I6742f6db3637366a414dd9a3f262ef00d08472e0
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/SiteScout
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...MiniInvite[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390858 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I883cb859ef3add497958c1c5838bdda7d107f4d7
---
M i18n/fi.json
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/MiniInvite 
refs/changes/58/390858/1

diff --git a/i18n/fi.json b/i18n/fi.json
index 2b57f21..d989cb8 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"invite-subject": "$1 haluaa sinun liittyvän 
{{GRAMMAR:illative|{{SITENAME!",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I883cb859ef3add497958c1c5838bdda7d107f4d7
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/MiniInvite
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...UnusedRedirects[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390862 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I2f29a7e6cffa5c8c8a6161c6014521380cbdae40
---
M SpecialUnusedRedirects.php
M i18n/en.json
M i18n/fi.json
M i18n/fr.json
4 files changed, 4 insertions(+), 4 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/UnusedRedirects 
refs/changes/62/390862/1

diff --git a/SpecialUnusedRedirects.php b/SpecialUnusedRedirects.php
index a9039f1..0b8f954 100644
--- a/SpecialUnusedRedirects.php
+++ b/SpecialUnusedRedirects.php
@@ -20,7 +20,7 @@
  *
  * @file
  * @ingroup SpecialPage
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @date 30 August 2016
  * @see https://phabricator.wikimedia.org/T144245
  */
diff --git a/i18n/en.json b/i18n/en.json
index 8b95c0c..6bbbcc0 100644
--- a/i18n/en.json
+++ b/i18n/en.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"unusedredirects": "Unused redirects",
diff --git a/i18n/fi.json b/i18n/fi.json
index 22eac88..6c75044 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"unusedredirects": "Käyttämättömät ohjaukset"
diff --git a/i18n/fr.json b/i18n/fr.json
index 9841632..2eec4ba 100644
--- a/i18n/fr.json
+++ b/i18n/fr.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Archaeodontosaurus",
"Gomoko"
]

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I2f29a7e6cffa5c8c8a6161c6014521380cbdae40
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/UnusedRedirects
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...ImageRating[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390857 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Ieaffcc13b0c082420b0128fe58b3fa88e7b40f98
---
M i18n/en.json
M i18n/fi.json
M i18n/fr.json
3 files changed, 3 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/ImageRating 
refs/changes/57/390857/1

diff --git a/i18n/en.json b/i18n/en.json
index b62211e..45f97bf 100644
--- a/i18n/en.json
+++ b/i18n/en.json
@@ -3,7 +3,7 @@
"authors": [
"Aaron Wright ",
"David Pean ",
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"apihelp-imagerating-description": "ImageRating API module -- allows 
adding categories to a page when given a page ID",
diff --git a/i18n/fi.json b/i18n/fi.json
index 5d1a642..8c41821 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"imagerating-add-button": "lisää",
diff --git a/i18n/fr.json b/i18n/fr.json
index 1dbee1e..78ff0fb 100644
--- a/i18n/fr.json
+++ b/i18n/fr.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Wladek92"
]
},

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ieaffcc13b0c082420b0128fe58b3fa88e7b40f98
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/ImageRating
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...BrickipediaExtra[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390854 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Ic65b09bbed48790ff906169902f2c64831b4a55b
---
M i18n/en.json
M i18n/fi.json
2 files changed, 2 insertions(+), 2 deletions(-)


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

diff --git a/i18n/en.json b/i18n/en.json
index 80334d4..e215f46 100644
--- a/i18n/en.json
+++ b/i18n/en.json
@@ -2,7 +2,7 @@
"@metadata": {
"authors": [
"George Barnick",
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"brickipedia-extra-desc": "Brickipedia-specific i18n messages and other 
functionality",
diff --git a/i18n/fi.json b/i18n/fi.json
index 0a9e6b2..6b47ad2 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"group-chatmod": "Chatin valvojat",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic65b09bbed48790ff906169902f2c64831b4a55b
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/BrickipediaExtra
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...EditAccount[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390855 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Ibbfdea0fc2bd0a99818e0294947b1c93380f46e7
---
M i18n/fi.json
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/EditAccount 
refs/changes/55/390855/1

diff --git a/i18n/fi.json b/i18n/fi.json
index 3f03166..da5b517 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -3,7 +3,7 @@
"authors": [
"Centerlink",
"Crt",
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Nike",
"Tm T"
]

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ibbfdea0fc2bd0a99818e0294947b1c93380f46e7
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/EditAccount
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...RSS[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390775 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I483ed8e632eab9d7e426549e46aedec75ac98ece
---
M i18n/fi.json
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/RSS 
refs/changes/75/390775/1

diff --git a/i18n/fi.json b/i18n/fi.json
index 8b3241a..4f65c38 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Nike",
"Olli"
]

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I483ed8e632eab9d7e426549e46aedec75ac98ece
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/RSS
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...UserStatus[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390784 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I268faf5a7c6cb61e22b869ee9093e3a3d90a7b3a
---
M i18n/fi.json
M sql/user_status.sql
2 files changed, 2 insertions(+), 2 deletions(-)


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

diff --git a/i18n/fi.json b/i18n/fi.json
index 0ca4e13..f2c9097 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"userstatus-network-thoughts": "Ajatuksia aiheesta $1",
diff --git a/sql/user_status.sql b/sql/user_status.sql
index 969a1cb..81e7731 100644
--- a/sql/user_status.sql
+++ b/sql/user_status.sql
@@ -1,4 +1,4 @@
--- Author: Jack Phoenix 
+-- Author: Jack Phoenix
 -- Date: 11 August 2011
 -- License: public domain to the extent that it is possible
 CREATE TABLE /*_*/user_status (

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I268faf5a7c6cb61e22b869ee9093e3a3d90a7b3a
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/UserStatus
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...RegexBlock[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390774 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I25fb2e5f69001dea89c1549c4c9fcb4b7600a935
---
M i18n/fi.json
M includes/RegexBlockCore.php
M includes/specials/SpecialRegexBlock.php
3 files changed, 3 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/RegexBlock 
refs/changes/74/390774/1

diff --git a/i18n/fi.json b/i18n/fi.json
index 9e9150b..c8af296 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -2,7 +2,7 @@
"@metadata": {
"authors": [
"Crt",
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Option",
"Str4nd"
]
diff --git a/includes/RegexBlockCore.php b/includes/RegexBlockCore.php
index cf735c9..5401464 100644
--- a/includes/RegexBlockCore.php
+++ b/includes/RegexBlockCore.php
@@ -11,7 +11,7 @@
  * @author Piotr Molski 
  * @author Adrian 'ADi' Wieczorek 
  * @author Alexandre Emsenhuber
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @copyright Copyright © 2007, Wikia Inc.
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
  */
diff --git a/includes/specials/SpecialRegexBlock.php 
b/includes/specials/SpecialRegexBlock.php
index d757e9a..4e42432 100644
--- a/includes/specials/SpecialRegexBlock.php
+++ b/includes/specials/SpecialRegexBlock.php
@@ -11,7 +11,7 @@
  * @author Piotr Molski 
  * @author Adrian 'ADi' Wieczorek 
  * @author Alexandre Emsenhuber
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @copyright Copyright © 2007, Wikia Inc.
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
  * @note This file heavily reuses GPL-licensed code from MediaWiki core special

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I25fb2e5f69001dea89c1549c4c9fcb4b7600a935
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/RegexBlock
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...SpamDiffTool[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390780 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I39b70b144d701182264443e5c2e3146b9c42981f
---
M SpamDiffTool.body.php
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/SpamDiffTool 
refs/changes/80/390780/1

diff --git a/SpamDiffTool.body.php b/SpamDiffTool.body.php
index 9205084..9554062 100644
--- a/SpamDiffTool.body.php
+++ b/SpamDiffTool.body.php
@@ -7,7 +7,7 @@
  * @ingroup Extensions
  * @author Travis Derouin 
  * @author Alexandre Emsenhuber
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
  * @link https://www.mediawiki.org/wiki/Extension:SpamDiffTool Documentation
  */

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I39b70b144d701182264443e5c2e3146b9c42981f
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/SpamDiffTool
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...WikiTextLoggedInOut[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390788 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Ie180ad5185fd9192867a7802f1b76d9670726518
---
M WikiTextLoggedInOut.class.php
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/WikiTextLoggedInOut 
refs/changes/88/390788/1

diff --git a/WikiTextLoggedInOut.class.php b/WikiTextLoggedInOut.class.php
index 42e33c8..c7cfc9a 100644
--- a/WikiTextLoggedInOut.class.php
+++ b/WikiTextLoggedInOut.class.php
@@ -9,7 +9,7 @@
  * @ingroup Extensions
  * @author Aaron Wright
  * @author David Pean
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
  * @link https://www.mediawiki.org/wiki/Extension:WikiTextLoggedInOut 
Documentation
  */

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie180ad5185fd9192867a7802f1b76d9670726518
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/WikiTextLoggedInOut
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...StaffPowers[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390783 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Icb42e6cb542a4b0da6608b5b0c27783d8ab6051d
---
M StaffPowers.class.php
M i18n/fi.json
2 files changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/StaffPowers 
refs/changes/83/390783/1

diff --git a/StaffPowers.class.php b/StaffPowers.class.php
index e0f2795..eafd71a 100644
--- a/StaffPowers.class.php
+++ b/StaffPowers.class.php
@@ -8,7 +8,7 @@
  * @version 1.4
  * @date 23 February 2017
  * @author Łukasz Garczewski 
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @author Mainframe98 
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
3.0 or later
  * @link https://www.mediawiki.org/wiki/Extension:StaffPowers Documentation
diff --git a/i18n/fi.json b/i18n/fi.json
index 8fcb5e4..fb3b4a3 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"staffpowers-ipblock-abort": "ShoutWikin henkilökunnan estäminen ei ole 
mahdollista. Käytä [[Special:Contact|yhteydenottolomaketta]] ilmoittaaksesi 
mahdollisista ongelmista henkilökuntamme kanssa.",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Icb42e6cb542a4b0da6608b5b0c27783d8ab6051d
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/StaffPowers
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...StaffEdits[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390782 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: If16a57c6d66ce2b1f22e7633e263fd6b159c2690
---
M StaffEdits.class.php
M i18n/en.json
M i18n/fi.json
M i18n/qqq.json
4 files changed, 4 insertions(+), 4 deletions(-)


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

diff --git a/StaffEdits.class.php b/StaffEdits.class.php
index dd2b866..9fbe55e 100644
--- a/StaffEdits.class.php
+++ b/StaffEdits.class.php
@@ -5,7 +5,7 @@
  *
  * @file
  * @ingroup Extensions
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @link https://www.mediawiki.org/wiki/Extension:StaffEdits Documentation
  * @license https://en.wikipedia.org/wiki/Public_domain Public domain
  */
diff --git a/i18n/en.json b/i18n/en.json
index 923a36a..528e83f 100644
--- a/i18n/en.json
+++ b/i18n/en.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"staffedit-desc": "Allows to tag edits as official 
[[Special:ListUsers/staff|staff]] edits in the edit view",
diff --git a/i18n/fi.json b/i18n/fi.json
index 9625383..df263a2 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"staffedit-desc": "Mahdollistaa muokkausten merkitsemisen virallisiksi 
[[Special:ListUsers/staff|henkilökunnan]] muokkauksiksi muokkausnäkymässä",
diff --git a/i18n/qqq.json b/i18n/qqq.json
index 34fa6ce..dda5f3c 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"staffedit-desc": 
"{{desc|name=StaffEdits|url=https://www.mediawiki.org/wiki/Extension:StaffEdits}}\nDo
 not translate the \"Special:ListUsers/staff\" part of the link.",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: If16a57c6d66ce2b1f22e7633e263fd6b159c2690
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/StaffEdits
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...WikiForum[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390787 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Ibe34befb44c6a33bba6073cc92dd069a6301c2b1
---
M i18n/en.json
M i18n/fi.json
M i18n/fr.json
M sql/wikiforum.sql
4 files changed, 5 insertions(+), 5 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/WikiForum 
refs/changes/87/390787/1

diff --git a/i18n/en.json b/i18n/en.json
index 23a4906..6e4e165 100644
--- a/i18n/en.json
+++ b/i18n/en.json
@@ -2,7 +2,7 @@
"@metadata": {
"authors": [
"Michael Chlebek",
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Adam Carter/UltrasonicNXT"
]
},
diff --git a/i18n/fi.json b/i18n/fi.json
index 2ef8eb4..bcd1d32 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -2,7 +2,7 @@
"@metadata": {
"authors": [
"Crt",
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Pxos",
"Stryn",
"Nike",
diff --git a/i18n/fr.json b/i18n/fr.json
index 2abff5a..ab64208 100644
--- a/i18n/fr.json
+++ b/i18n/fr.json
@@ -4,7 +4,7 @@
"Balzac 40",
"Crochet.david",
"Gomoko",
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Linedwell",
"Verdy p",
"Urhixidur",
diff --git a/sql/wikiforum.sql b/sql/wikiforum.sql
index 6bc0d10..6cf98f5 100644
--- a/sql/wikiforum.sql
+++ b/sql/wikiforum.sql
@@ -1,5 +1,5 @@
 -- SQL schema for WikiForum extension
--- Rewritten by Jack Phoenix  in December 2010
+-- Rewritten by Jack Phoenix in December 2010
 -- the "formerly" comments refer to the names that Michael Chlebek, the
 -- original author of WikiForum, called those columns
 --
@@ -8,7 +8,7 @@
 --
 -- This schema should be SQLite-friendly, too.
 -- I followed this commit by Mark when making the changes:
--- http://www.mediawiki.org/wiki/Special:Code/MediaWiki/77272
+-- https://www.mediawiki.org/wiki/Special:Code/MediaWiki/77272
 
 CREATE TABLE IF NOT EXISTS /*_*/wikiforum_category (
wfc_category int(10) NOT NULL PRIMARY KEY AUTO_INCREMENT, -- formerly: 
pkCategory

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ibe34befb44c6a33bba6073cc92dd069a6301c2b1
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/WikiForum
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...VoteNY[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390785 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Ic66092231fb98e583eae820297e1320ab493377b
---
M i18n/fi.json
M i18n/fr.json
M resources/js/Vote.js
3 files changed, 3 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/VoteNY 
refs/changes/85/390785/1

diff --git a/i18n/fi.json b/i18n/fi.json
index a61090a..eddf678 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Nike"
]
},
diff --git a/i18n/fr.json b/i18n/fr.json
index 8ba3952..2c77246 100644
--- a/i18n/fr.json
+++ b/i18n/fr.json
@@ -2,7 +2,7 @@
"@metadata": {
"authors": [
"Crochet.david",
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Tititou36",
"Gomoko"
]
diff --git a/resources/js/Vote.js b/resources/js/Vote.js
index 6c5be0d..f6eabb8 100644
--- a/resources/js/Vote.js
+++ b/resources/js/Vote.js
@@ -7,7 +7,7 @@
  *
  * @constructor
  *
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @author Daniel A. R. Werner < daniel.a.r.wer...@gmail.com >
  */
 var VoteNY = function VoteNY() {

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic66092231fb98e583eae820297e1320ab493377b
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/VoteNY
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...Video[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390786 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I7685f58120c3974d56ed48a6211e0a8105e4d4e0
---
M ReadMe
M i18n/fi.json
M i18n/fr.json
3 files changed, 6 insertions(+), 10 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Video 
refs/changes/86/390786/1

diff --git a/ReadMe b/ReadMe
index efe099f..2a71df5 100644
--- a/ReadMe
+++ b/ReadMe
@@ -18,7 +18,7 @@
 showing Videos in category pages.
 
 ==2. Requirements==
-The '''Video Namespace''' extension requires MediaWiki 1.24.1 or greater.
+The '''Video Namespace''' extension requires MediaWiki 1.29.0 or greater.
 
 ==3. Installing Video Extension==
 Installing the Video extension is very easy if you have shell (SSH) access to
@@ -31,10 +31,6 @@
 paste them into phpMyAdmin's SQL prompt to create the tables.
 
 Then add the following into your wiki's LocalSettings.php:
-
-require_once "$IP/extensions/Video/Video.php";
-
-Or if you're using MediaWiki 1.25 or newer and Video version 1.5.3 or newer:
 
 wfLoadExtension( 'Video' );
 
@@ -77,9 +73,9 @@
 to him, we can embed media from Archive.org, Gametrailers.com, GoGreenTube.com
 and WeGame.com.
 
-Jack Phoenix  performed code cleanup and wrote the
-code for deleting videos and improved the undeletion code, ported a bunch of
-providers from the YouTube extension and tweaked internationalization messages.
+Jack Phoenix performed code cleanup and wrote the code for deleting videos and
+improved the undeletion code, ported a bunch of providers from the YouTube
+extension and tweaked internationalization messages.
 
 William Lee  wrote some code for the WikiaVideo extension,
 which was used to build providers/HuluVideo.php.
\ No newline at end of file
diff --git a/i18n/fi.json b/i18n/fi.json
index 0675302..f466b19 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"addvideo": "Lisää video",
diff --git a/i18n/fr.json b/i18n/fr.json
index fb70475..2c53c07 100644
--- a/i18n/fr.json
+++ b/i18n/fr.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Gomoko"
]
},

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I7685f58120c3974d56ed48a6211e0a8105e4d4e0
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Video
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...SiteMetrics[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390778 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I275bf51c920390bb6f7e689ae0589f389486eaa2
---
M i18n/en.json
M i18n/fi.json
M i18n/fr.json
M includes/specials/SpecialSiteMetrics.php
4 files changed, 4 insertions(+), 4 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/SiteMetrics 
refs/changes/78/390778/1

diff --git a/i18n/en.json b/i18n/en.json
index 5467da0..506d55b 100644
--- a/i18n/en.json
+++ b/i18n/en.json
@@ -3,7 +3,7 @@
"authors": [
"Aaron Wright ",
"David Pean ",
-   "Jack Phoenix ",
+   "Jack Phoenix",
"SamanthaNguyen "
]
},
diff --git a/i18n/fi.json b/i18n/fi.json
index d42e44a..f3a9922 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Nike"
]
},
diff --git a/i18n/fr.json b/i18n/fr.json
index ac41faa..9dc3a6e 100644
--- a/i18n/fr.json
+++ b/i18n/fr.json
@@ -2,7 +2,7 @@
"@metadata": {
"authors": [
"Gomoko",
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Wladek92",
"Urhixidur"
]
diff --git a/includes/specials/SpecialSiteMetrics.php 
b/includes/specials/SpecialSiteMetrics.php
index f7f7d9e..7680dea 100644
--- a/includes/specials/SpecialSiteMetrics.php
+++ b/includes/specials/SpecialSiteMetrics.php
@@ -6,7 +6,7 @@
  * @ingroup Extensions
  * @author Aaron Wright 
  * @author David Pean 
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
  * @link https://www.mediawiki.org/wiki/Extensions:SiteMetrics Documentation
  */

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I275bf51c920390bb6f7e689ae0589f389486eaa2
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/SiteMetrics
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...SportsTeams[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390781 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I16a740cee9d586cd8f992c28d71e82ad8f6135f9
---
M SportsTeams.php
M i18n/fi.json
M sql/sportsteams.sql
3 files changed, 3 insertions(+), 3 deletions(-)


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

diff --git a/SportsTeams.php b/SportsTeams.php
index a234380..288cd73 100644
--- a/SportsTeams.php
+++ b/SportsTeams.php
@@ -7,7 +7,7 @@
  * @author Aaron Wright 
  * @author Ashish Datta 
  * @author David Pean 
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
  * @link https://www.mediawiki.org/wiki/Extension:SportsTeams Documentation
  */
diff --git a/i18n/fi.json b/i18n/fi.json
index 1a6147d..50c7dbc 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"topnetworks": "Verkostojen tilastoja",
diff --git a/sql/sportsteams.sql b/sql/sportsteams.sql
index 273ed56..d545630 100644
--- a/sql/sportsteams.sql
+++ b/sql/sportsteams.sql
@@ -1,4 +1,4 @@
--- Author: Jack Phoenix 
+-- Author: Jack Phoenix
 -- Date: 3 August 2011
 -- License: public domain to the extent that it is possible
 CREATE TABLE /*_*/sport (

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I16a740cee9d586cd8f992c28d71e82ad8f6135f9
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/SportsTeams
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...SocialProfile[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390779 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I8380a6a8172ce174311cf829fc7699d8368f4343
---
M README
M UserActivity/i18n/fi.json
M UserProfile/i18n/fi.json
M UserRelationship/i18n/fi.json
M UserStats/TopUsersTag.php
M UserStats/i18n/fi.json
M UserWelcome/UserWelcomeClass.php
M shared/LightBox.js
8 files changed, 8 insertions(+), 8 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/SocialProfile 
refs/changes/79/390779/1

diff --git a/README b/README
index 0c73de1..d96ce62 100644
--- a/README
+++ b/README
@@ -12,7 +12,7 @@
 ==Authors==
 SocialProfile was written by David Pean and Aaron Wright for Wikia, Inc.
 
-It has been maintained by Jack Phoenix  since 2008.
+It has been maintained by Jack Phoenix since 2008.
 
 ==License==
 SocialProfile is licensed under GNU General Public License 2.0 or later.
diff --git a/UserActivity/i18n/fi.json b/UserActivity/i18n/fi.json
index 4f6b5f1..040c962 100644
--- a/UserActivity/i18n/fi.json
+++ b/UserActivity/i18n/fi.json
@@ -2,7 +2,7 @@
"@metadata": {
"authors": [
"Centerlink",
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Str4nd"
]
},
diff --git a/UserProfile/i18n/fi.json b/UserProfile/i18n/fi.json
index 69314ca..c3f85ac 100644
--- a/UserProfile/i18n/fi.json
+++ b/UserProfile/i18n/fi.json
@@ -4,7 +4,7 @@
"Centerlink",
"Cimon Avaro",
"Crt",
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Nike",
"Str4nd"
]
diff --git a/UserRelationship/i18n/fi.json b/UserRelationship/i18n/fi.json
index 5669f0d..1af1607 100644
--- a/UserRelationship/i18n/fi.json
+++ b/UserRelationship/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"viewrelationships": "Ystävä- ja vihollislista",
diff --git a/UserStats/TopUsersTag.php b/UserStats/TopUsersTag.php
index a7a8cdc..21dd43f 100644
--- a/UserStats/TopUsersTag.php
+++ b/UserStats/TopUsersTag.php
@@ -7,7 +7,7 @@
  * @file
  * @ingroup Extensions
  * @date 19 August 2013
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  */
 if ( !defined( 'MEDIAWIKI' ) ) {
die();
diff --git a/UserStats/i18n/fi.json b/UserStats/i18n/fi.json
index f4574fd..3be3c04 100644
--- a/UserStats/i18n/fi.json
+++ b/UserStats/i18n/fi.json
@@ -3,7 +3,7 @@
"authors": [
"Centerlink",
"Cimon Avaro",
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Str4nd"
]
},
diff --git a/UserWelcome/UserWelcomeClass.php b/UserWelcome/UserWelcomeClass.php
index e2b4304..1d0c3a4 100644
--- a/UserWelcome/UserWelcomeClass.php
+++ b/UserWelcome/UserWelcomeClass.php
@@ -6,7 +6,7 @@
  * @file
  * @ingroup Extensions
  * @author David Pean 
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @link https://www.mediawiki.org/wiki/Extension:UserWelcome Documentation
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
  */
diff --git a/shared/LightBox.js b/shared/LightBox.js
index a029e3b..a75bd1d 100644
--- a/shared/LightBox.js
+++ b/shared/LightBox.js
@@ -6,7 +6,7 @@
Licensed under the Creative Commons Attribution 2.5 License - 
http://creativecommons.org/licenses/by/2.5/
(basically, do anything you want, just leave my name and link)
Stripped this down a bit - Ashish
-   Rewritten to be more object-oriented by Jack Phoenix 

+   Rewritten to be more object-oriented by Jack Phoenix
on 21 June 2011 and JSHinted on 14 August 2015
 */
 window.LightBox = {

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I8380a6a8172ce174311cf829fc7699d8368f4343
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/SocialProfile
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...RefreshSpecial[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390773 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I3160cc81e00e8502af57e4e17f5972086ade0d62
---
M RefreshSpecial.body.php
M i18n/fi.json
2 files changed, 1 insertion(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/RefreshSpecial 
refs/changes/73/390773/1

diff --git a/RefreshSpecial.body.php b/RefreshSpecial.body.php
index f540341..26a4ffd 100644
--- a/RefreshSpecial.body.php
+++ b/RefreshSpecial.body.php
@@ -1,12 +1,11 @@
 
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
  * @link https://www.mediawiki.org/wiki/Extension:RefreshSpecial Documentation
  */
diff --git a/i18n/fi.json b/i18n/fi.json
index 8e20576..95732dc 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -2,7 +2,6 @@
"@metadata": {
"authors": [
"Crt",
-   "Jack Phoenix ",
"Mobe",
"Nike",
"Vililikku",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I3160cc81e00e8502af57e4e17f5972086ade0d62
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/RefreshSpecial
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...ShoutWikiAds[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390776 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Id8bfb1030ff1ab7c16e763c00b2fba727dd7687f
---
M ShoutWikiAds.class.php
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/ShoutWikiAds 
refs/changes/76/390776/1

diff --git a/ShoutWikiAds.class.php b/ShoutWikiAds.class.php
index b853532..6b1ce21 100644
--- a/ShoutWikiAds.class.php
+++ b/ShoutWikiAds.class.php
@@ -17,7 +17,7 @@
  *
  * @file
  * @ingroup Extensions
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @license https://en.wikipedia.org/wiki/Public_domain Public domain
  * @link https://www.mediawiki.org/wiki/Extension:ShoutWiki_Ads Documentation
  */

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Id8bfb1030ff1ab7c16e763c00b2fba727dd7687f
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/ShoutWikiAds
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...RandomUsersWithAvatars[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390772 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I4b83e4cdb103e644a3f892bf4822288bcc8f5c15
---
M includes/RandomUsersWithAvatars.class.php
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/RandomUsersWithAvatars 
refs/changes/72/390772/1

diff --git a/includes/RandomUsersWithAvatars.class.php 
b/includes/RandomUsersWithAvatars.class.php
index c81bf3f..45c287b 100644
--- a/includes/RandomUsersWithAvatars.class.php
+++ b/includes/RandomUsersWithAvatars.class.php
@@ -7,7 +7,7 @@
  * @file
  * @ingroup Extensions
  * @author David Pean 
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
  * @link https://www.mediawiki.org/wiki/Extension:RandomUsersWithAvatars 
Documentation
  */

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I4b83e4cdb103e644a3f892bf4822288bcc8f5c15
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/RandomUsersWithAvatars
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...PrivateDomains[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390766 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I6f2f2dd7ef70945797621b6c46daff5d9eb5e445
---
M SpecialPrivateDomains.php
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/PrivateDomains 
refs/changes/66/390766/1

diff --git a/SpecialPrivateDomains.php b/SpecialPrivateDomains.php
index bda573a..8d7f629 100644
--- a/SpecialPrivateDomains.php
+++ b/SpecialPrivateDomains.php
@@ -6,7 +6,7 @@
  * @file
  * @ingroup Extensions
  * @author Inez Korczyński 
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @link https://www.mediawiki.org/wiki/Extension:PrivateDomains Documentation
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
  */

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I6f2f2dd7ef70945797621b6c46daff5d9eb5e445
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/PrivateDomains
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...RandomFeaturedUser[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390769 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I4c1f8c8850fef0daf25bd024b2ad7e49fc14d02e
---
M i18n/fi.json
M i18n/fr.json
M includes/RandomFeaturedUser.php
3 files changed, 3 insertions(+), 3 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/RandomFeaturedUser 
refs/changes/69/390769/1

diff --git a/i18n/fi.json b/i18n/fi.json
index 6a408ac..fbc7d4d 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"random-user-points-weekly": "{{PLURAL:$1|yksi piste|$1 pistettä}} 
tällä viikolla",
diff --git a/i18n/fr.json b/i18n/fr.json
index eda9305..c6ea4b5 100644
--- a/i18n/fr.json
+++ b/i18n/fr.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"random-user-points-weekly": "{{PLURAL:$1|un point|$1 points}} cette 
semaine",
diff --git a/includes/RandomFeaturedUser.php b/includes/RandomFeaturedUser.php
index ae03bad..f8ee0bb 100644
--- a/includes/RandomFeaturedUser.php
+++ b/includes/RandomFeaturedUser.php
@@ -15,7 +15,7 @@
  * @ingroup Extensions
  * @author Aaron Wright 
  * @author David Pean 
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @link https://www.mediawiki.org/wiki/Extension:RandomFeaturedUser 
Documentation
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
  */

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I4c1f8c8850fef0daf25bd024b2ad7e49fc14d02e
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/RandomFeaturedUser
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...PictureGame[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390764 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Ie63699ac0ff6562697a88915ae471b41c1dc5d23
---
M i18n/fi.json
M includes/specials/SpecialPictureGameAjaxUpload.php
M includes/specials/SpecialPictureGameHome.php
M resources/js/PictureGame.js
4 files changed, 3 insertions(+), 4 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/PictureGame 
refs/changes/64/390764/1

diff --git a/i18n/fi.json b/i18n/fi.json
index bcf333d..65a8cc1 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"picturegame-signup": "Rekisteröidy",
diff --git a/includes/specials/SpecialPictureGameAjaxUpload.php 
b/includes/specials/SpecialPictureGameAjaxUpload.php
index f045c65..ae9c4e8 100644
--- a/includes/specials/SpecialPictureGameAjaxUpload.php
+++ b/includes/specials/SpecialPictureGameAjaxUpload.php
@@ -14,7 +14,7 @@
  * @file
  * @ingroup SpecialPage
  * @ingroup Upload
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @date 22 July 2013
  * @note Based on 1.16 core SpecialUpload.php (GPL-licensed) by Bryan et al.
  * @see http://bugzilla.shoutwiki.com/show_bug.cgi?id=22
diff --git a/includes/specials/SpecialPictureGameHome.php 
b/includes/specials/SpecialPictureGameHome.php
index 9ce9fc1..e46647d 100644
--- a/includes/specials/SpecialPictureGameHome.php
+++ b/includes/specials/SpecialPictureGameHome.php
@@ -7,7 +7,7 @@
  * @author Aaron Wright 
  * @author Ashish Datta 
  * @author David Pean 
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
  * @link https://www.mediawiki.org/wiki/Extension:PictureGame Documentation
  */
diff --git a/resources/js/PictureGame.js b/resources/js/PictureGame.js
index 3567bb9..7e9ce4e 100644
--- a/resources/js/PictureGame.js
+++ b/resources/js/PictureGame.js
@@ -3,7 +3,6 @@
  *
  * @file
  * @ingroup Extensions
- * @author Jack Phoenix 
  */
 
  /*

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie63699ac0ff6562697a88915ae471b41c1dc5d23
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/PictureGame
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...ProtectSite[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390767 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I1ba13419906f618b4a3eb382098de493447e78e6
---
M ProtectSite.body.php
M i18n/fi.json
2 files changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/ProtectSite 
refs/changes/67/390767/1

diff --git a/ProtectSite.body.php b/ProtectSite.body.php
index e41c44d..78dd0f4 100644
--- a/ProtectSite.body.php
+++ b/ProtectSite.body.php
@@ -14,7 +14,7 @@
  * @ingroup Extensions
  * @author Eric Johnston 
  * @author Chris Stafford 
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
  */
 
diff --git a/i18n/fi.json b/i18n/fi.json
index 4bd7b0a..ab1bb73 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -2,7 +2,7 @@
"@metadata": {
"authors": [
"Beluga",
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"protectsite": "Suojaa sivusto",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I1ba13419906f618b4a3eb382098de493447e78e6
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/ProtectSite
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...RandomImageByCategory[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390771 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I8482155d01cf2282cc279b8e4cc0f0eeff4fd703
---
M RandomImageByCategory.class.php
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/RandomImageByCategory 
refs/changes/71/390771/1

diff --git a/RandomImageByCategory.class.php b/RandomImageByCategory.class.php
index 01ce7a7..bd0f352 100644
--- a/RandomImageByCategory.class.php
+++ b/RandomImageByCategory.class.php
@@ -8,7 +8,7 @@
  * @ingroup Extensions
  * @author Aaron Wright 
  * @author David Pean 
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @link https://www.mediawiki.org/wiki/Extension:RandomImageByCategory 
Documentation
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
  */

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I8482155d01cf2282cc279b8e4cc0f0eeff4fd703
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/RandomImageByCategory
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...PollNY[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390765 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I5d94f0f689ba2712c1c76a154a0a2734b50e8385
---
M i18n/fi.json
M includes/specials/SpecialPollAjaxUpload.php
2 files changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/PollNY 
refs/changes/65/390765/1

diff --git a/i18n/fi.json b/i18n/fi.json
index 09c463b..76d725f 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"adminpoll": "Hallinnoi äänestyksiä",
diff --git a/includes/specials/SpecialPollAjaxUpload.php 
b/includes/specials/SpecialPollAjaxUpload.php
index bab33a6..ea8596f 100644
--- a/includes/specials/SpecialPollAjaxUpload.php
+++ b/includes/specials/SpecialPollAjaxUpload.php
@@ -11,7 +11,7 @@
  * @file
  * @ingroup SpecialPage
  * @ingroup Upload
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @date 21 July 2013
  * @note Based on 1.16 core SpecialUpload.php (GPL-licensed) by Bryan et al.
  * @see http://bugzilla.shoutwiki.com/show_bug.cgi?id=22

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I5d94f0f689ba2712c1c76a154a0a2734b50e8385
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/PollNY
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...NewUsersList[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390762 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Ief5cca09aa1b5c287d11b3f36c09e00672029eba
---
M includes/NewUsersList.class.php
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/NewUsersList 
refs/changes/62/390762/1

diff --git a/includes/NewUsersList.class.php b/includes/NewUsersList.class.php
index d9723dc..194afeb 100644
--- a/includes/NewUsersList.class.php
+++ b/includes/NewUsersList.class.php
@@ -11,7 +11,7 @@
  * @ingroup Extensions
  * @author Aaron Wright 
  * @author David Pean 
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @link https://www.mediawiki.org/wiki/Extension:NewUsersList Documentation
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
  */

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ief5cca09aa1b5c287d11b3f36c09e00672029eba
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/NewUsersList
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...RandomGameUnit[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390770 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Ie67a96c87fe82560b73afe5d44e6e98ddb1a0b8f
---
M i18n/fi.json
M includes/RandomGameUnit.class.php
2 files changed, 3 insertions(+), 3 deletions(-)


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

diff --git a/i18n/fi.json b/i18n/fi.json
index 6765df2..120c0a8 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"game-unit-poll-title": "Ota osaa äänestykseen",
diff --git a/includes/RandomGameUnit.class.php 
b/includes/RandomGameUnit.class.php
index b0bb342..f452ef5 100644
--- a/includes/RandomGameUnit.class.php
+++ b/includes/RandomGameUnit.class.php
@@ -7,8 +7,8 @@
  * @ingroup Extensions
  * @author Aaron Wright 
  * @author David Pean 
- * @author Jack Phoenix 
- * @copyright Copyright © 2009-2016 Jack Phoenix 
+ * @author Jack Phoenix
+ * @copyright Copyright © 2009-2017 Jack Phoenix
  * @link https://www.mediawiki.org/wiki/Extension:RandomGameUnit Documentation
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
  */

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie67a96c87fe82560b73afe5d44e6e98ddb1a0b8f
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/RandomGameUnit
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...Prezi[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390763 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Ib2071f86d9c536a4d884fc8485da2130b3a6f219
---
M i18n/fi.json
M i18n/fr.json
2 files changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Prezi 
refs/changes/63/390763/1

diff --git a/i18n/fi.json b/i18n/fi.json
index 2a4a2fe..7a0eed7 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"prezi-desc": "Mahdollistaa [//prezi.com Prezi.com]-esitysten 
upottamisen",
diff --git a/i18n/fr.json b/i18n/fr.json
index c11bc7c..b01b1a9 100644
--- a/i18n/fr.json
+++ b/i18n/fr.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Djiboun"
]
},

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib2071f86d9c536a4d884fc8485da2130b3a6f219
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Prezi
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...QuizGame[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390768 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: If17a2e8f2bc406e0112a58723f8bffaa36c4b094
---
M i18n/fi.json
M includes/specials/SpecialQuestionGameUpload.php
M includes/specials/SpecialQuizGameHome.php
M resources/js/QuizGame.js
4 files changed, 3 insertions(+), 5 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/QuizGame 
refs/changes/68/390768/1

diff --git a/i18n/fi.json b/i18n/fi.json
index d42aa8b..7e6fc33 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Pyscowicz"
]
},
diff --git a/includes/specials/SpecialQuestionGameUpload.php 
b/includes/specials/SpecialQuestionGameUpload.php
index a1d3e38..52e854c 100644
--- a/includes/specials/SpecialQuestionGameUpload.php
+++ b/includes/specials/SpecialQuestionGameUpload.php
@@ -9,7 +9,7 @@
  * @file
  * @ingroup SpecialPage
  * @ingroup Upload
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @date 26 June 2011
  * @note Based on 1.16 core SpecialUpload.php (GPL-licensed) by Bryan et al.
  * @see http://bugzilla.shoutwiki.com/show_bug.cgi?id=22
diff --git a/includes/specials/SpecialQuizGameHome.php 
b/includes/specials/SpecialQuizGameHome.php
index a308732..616230d 100644
--- a/includes/specials/SpecialQuizGameHome.php
+++ b/includes/specials/SpecialQuizGameHome.php
@@ -7,7 +7,7 @@
  * @author Aaron Wright 
  * @author Ashish Datta 
  * @author David Pean 
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
  * @link https://www.mediawiki.org/wiki/Extension:QuizGame Documentation
  */
diff --git a/resources/js/QuizGame.js b/resources/js/QuizGame.js
index 2edf269..f2440e1 100644
--- a/resources/js/QuizGame.js
+++ b/resources/js/QuizGame.js
@@ -3,8 +3,6 @@
  *
  * @file
  * @ingroup Extensions
- * @author Jack Phoenix 
- * @date 8 October 2014
  */
 
  /*

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: If17a2e8f2bc406e0112a58723f8bffaa36c4b094
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/QuizGame
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...GlobalUserPage[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390757 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Iab08c5fde85c4c0eddb1afa83bc5e2d8684ebe8f
---
M i18n/fi.json
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/GlobalUserPage 
refs/changes/57/390757/1

diff --git a/i18n/fi.json b/i18n/fi.json
index 27b..2605878 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Stryn",
"01miki10"
]

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Iab08c5fde85c4c0eddb1afa83bc5e2d8684ebe8f
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GlobalUserPage
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...LinkFilter[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390758 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Ia88fc3bdc885dff6f34f8d8963e1d272ffecd089
---
M i18n/fi.json
M resources/js/LinkFilter.js
2 files changed, 1 insertion(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/LinkFilter 
refs/changes/58/390758/1

diff --git a/i18n/fi.json b/i18n/fi.json
index ccb1aad..65e6749 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -2,7 +2,7 @@
"@metadata": {
"authors": [
"Crt",
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Nike",
"Silvonen"
]
diff --git a/resources/js/LinkFilter.js b/resources/js/LinkFilter.js
index 2a1c052..c6d5399 100644
--- a/resources/js/LinkFilter.js
+++ b/resources/js/LinkFilter.js
@@ -2,7 +2,6 @@
  * JavaScript for LinkFilter extension
  *
  * @file
- * @author Jack Phoenix 
  */
 var LinkFilter = {
/**

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia88fc3bdc885dff6f34f8d8963e1d272ffecd089
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/LinkFilter
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...NewSignupPage[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390761 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I5d53810bb491e04f014e25328a3850ab449a1784
---
M includes/NewSignupPage.class.php
1 file changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/NewSignupPage 
refs/changes/61/390761/1

diff --git a/includes/NewSignupPage.class.php b/includes/NewSignupPage.class.php
index 1931868..f0d8a2e 100644
--- a/includes/NewSignupPage.class.php
+++ b/includes/NewSignupPage.class.php
@@ -6,8 +6,8 @@
  *
  * @file
  * @ingroup Extensions
- * @author Jack Phoenix 
- * @copyright Copyright © 2008-2016 Jack Phoenix
+ * @author Jack Phoenix
+ * @copyright Copyright © 2008-2017 Jack Phoenix
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
  */
 class NewSignupPage {

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I5d53810bb491e04f014e25328a3850ab449a1784
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/NewSignupPage
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...LockDownEnglishPages[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390760 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Ie1f0d58c8c2fe0182f23507a59e1df682ad798d1
---
M LockDownEnglishPages.class.php
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/LockDownEnglishPages 
refs/changes/60/390760/1

diff --git a/LockDownEnglishPages.class.php b/LockDownEnglishPages.class.php
index 9d96351..0753ac8 100644
--- a/LockDownEnglishPages.class.php
+++ b/LockDownEnglishPages.class.php
@@ -7,7 +7,7 @@
  * @ingroup Extensions
  * @version 0.2.0
  * @date 6 July 2011
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @license http://en.wikipedia.org/wiki/Public_domain Public domain
  */
 

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie1f0d58c8c2fe0182f23507a59e1df682ad798d1
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/LockDownEnglishPages
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...FanBoxes[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390755 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Iaff494f8eb97ccd5a4dca05d86aa808dce2e628a
---
M i18n/fi.json
M i18n/fr.json
M includes/specials/SpecialFanBoxAjaxUpload.php
3 files changed, 3 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/FanBoxes 
refs/changes/55/390755/1

diff --git a/i18n/fi.json b/i18n/fi.json
index d689c57..f249e5d 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"fanbox-add": "Lisää",
diff --git a/i18n/fr.json b/i18n/fr.json
index e0417ce..3e83e0b 100644
--- a/i18n/fr.json
+++ b/i18n/fr.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"fanbox-add": "Ajouter",
diff --git a/includes/specials/SpecialFanBoxAjaxUpload.php 
b/includes/specials/SpecialFanBoxAjaxUpload.php
index 5a9ba05..44ba013 100644
--- a/includes/specials/SpecialFanBoxAjaxUpload.php
+++ b/includes/specials/SpecialFanBoxAjaxUpload.php
@@ -9,7 +9,7 @@
  * @file
  * @ingroup SpecialPage
  * @ingroup Upload
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @date 29 August 2013
  * @note Based on 1.16 core SpecialUpload.php (GPL-licensed) by Bryan et al.
  */

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Iaff494f8eb97ccd5a4dca05d86aa808dce2e628a
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/FanBoxes
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...LinkSuggest[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390759 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I25552118a139a3f9bcbfe3a4dd77ed32c8296b84
---
M LinkSuggest.class.php
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/LinkSuggest 
refs/changes/59/390759/1

diff --git a/LinkSuggest.class.php b/LinkSuggest.class.php
index cccbb2c..5e1be72 100644
--- a/LinkSuggest.class.php
+++ b/LinkSuggest.class.php
@@ -11,7 +11,7 @@
  * @author Łukasz Garczewski (TOR) 
  * @author Maciej Brencz 
  * @author Jesús Martínez Novo 
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @copyright Copyright © 2008-2009, Wikia Inc.
  * @copyright Copyright © 2011 Jesús Martínez Novo
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I25552118a139a3f9bcbfe3a4dd77ed32c8296b84
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/LinkSuggest
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...FilterListUsers[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390756 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Ia0e118f8959a07c94c646d8de7e5d5145b231d85
---
M FilterListUsers.class.php
M i18n/en.json
M i18n/fi.json
3 files changed, 3 insertions(+), 3 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/FilterListUsers 
refs/changes/56/390756/1

diff --git a/FilterListUsers.class.php b/FilterListUsers.class.php
index ae187b2..c02e36b 100644
--- a/FilterListUsers.class.php
+++ b/FilterListUsers.class.php
@@ -4,7 +4,7 @@
  *
  * @file
  * @ingroup Extensions
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
  */
 class FilterListUsers {
diff --git a/i18n/en.json b/i18n/en.json
index 743b5a6..7225c16 100644
--- a/i18n/en.json
+++ b/i18n/en.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"filterlistusers-desc": "Filters out users that have not edited from 
[[Special:ListUsers|users list]]",
diff --git a/i18n/fi.json b/i18n/fi.json
index 3b82357..d2d9d44 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -2,7 +2,7 @@
"@metadata": {
"authors": [
"Crt",
-   "Jack Phoenix ",
+   "Jack Phoenix",
"01miki10"
]
},

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia0e118f8959a07c94c646d8de7e5d5145b231d85
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/FilterListUsers
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...EditSimilar[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390754 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Ibbbc5e31e6fe234ddedca44cc0b603cd8e835d04
---
M i18n/fi.json
1 file changed, 1 insertion(+), 1 deletion(-)


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

diff --git a/i18n/fi.json b/i18n/fi.json
index 5041d88..2765381 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Mobe",
"Varusmies"
]

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ibbbc5e31e6fe234ddedca44cc0b603cd8e835d04
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/EditSimilar
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...BlogPage[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390752 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Id32cf6432a0f2c6e2c23054cdc83f9f709eaca76
---
M i18n/fi.json
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/BlogPage 
refs/changes/52/390752/1

diff --git a/i18n/fi.json b/i18n/fi.json
index 039a7af..1b19d61 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -1,7 +1,7 @@
 {
"@metadata": {
"authors": [
-   "Jack Phoenix "
+   "Jack Phoenix"
]
},
"blog-and": "ja",

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Id32cf6432a0f2c6e2c23054cdc83f9f709eaca76
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/BlogPage
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...Comments[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390753 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: I36473f7595cfe4c76361ca636dcc1bfa39422132
---
M i18n/fi.json
M includes/Comments.hooks.php
M resources/js/Comment.js
M sql/comments.mssql.sql
M sql/comments.oracle.sql
M sql/comments.postgres.sql
6 files changed, 5 insertions(+), 8 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Comments 
refs/changes/53/390753/1

diff --git a/i18n/fi.json b/i18n/fi.json
index 34b8778..a685ab1 100644
--- a/i18n/fi.json
+++ b/i18n/fi.json
@@ -2,7 +2,7 @@
"@metadata": {
"authors": [
"Crt",
-   "Jack Phoenix ",
+   "Jack Phoenix",
"Nedergard",
"Nike",
"Pxos"
diff --git a/includes/Comments.hooks.php b/includes/Comments.hooks.php
index 39949d0..c3709c9 100644
--- a/includes/Comments.hooks.php
+++ b/includes/Comments.hooks.php
@@ -5,7 +5,7 @@
  *
  * @file
  * @ingroup Extensions
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @author Alexia E. Smith
  * @copyright (c) 2013 Curse Inc.
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 
2.0 or later
diff --git a/resources/js/Comment.js b/resources/js/Comment.js
index 427c582..c81daee 100644
--- a/resources/js/Comment.js
+++ b/resources/js/Comment.js
@@ -1,10 +1,7 @@
 /**
  * JavaScript for the Comments extension.
- * Rewritten by Jack Phoenix  to be more
- * object-oriented.
  *
  * @file
- * @date 6 December 2013
  */
 ( function ( $, mw ) {
 var Comment = {
diff --git a/sql/comments.mssql.sql b/sql/comments.mssql.sql
index b3db5c4..a45c744 100644
--- a/sql/comments.mssql.sql
+++ b/sql/comments.mssql.sql
@@ -6,7 +6,7 @@
 -- Tested at SQLFiddle.com against MS SQL Server 2008 & 2012 and at least this
 -- builds. Doesn't guarantee anything, though.
 --
--- Author: Jack Phoenix 
+-- Author: Jack Phoenix
 -- Date: 24 July 2013
 CREATE TABLE /*$wgDBprefix*/Comments (
   CommentID INT NOT NULL PRIMARY KEY IDENTITY(0,1),
diff --git a/sql/comments.oracle.sql b/sql/comments.oracle.sql
index 2957692..f7bf357 100644
--- a/sql/comments.oracle.sql
+++ b/sql/comments.oracle.sql
@@ -5,7 +5,7 @@
 --
 -- This DOES NOT build at SQLFiddle.com...
 --
--- Author: Jack Phoenix 
+-- Author: Jack Phoenix
 -- Date: 24 July 2013
 
 -- No idea if this is needed, but /maintenance/oracle/tables.sql uses it, so I
diff --git a/sql/comments.postgres.sql b/sql/comments.postgres.sql
index 8a397ff..d52581b 100644
--- a/sql/comments.postgres.sql
+++ b/sql/comments.postgres.sql
@@ -6,7 +6,7 @@
 -- Tested at SQLFiddle.com against PostgreSQL 8.3.20 & 9.1.9 and at least this
 -- builds. Doesn't guarantee anything, though.
 --
--- Author: Jack Phoenix 
+-- Author: Jack Phoenix
 -- Date: 24 July 2013
 DROP SEQUENCE IF EXISTS Comments_CommentID_seq CASCADE;
 CREATE SEQUENCE Comments_CommentID_seq MINVALUE 0 START WITH 0;

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I36473f7595cfe4c76361ca636dcc1bfa39422132
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Comments
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


[MediaWiki-commits] [Gerrit] mediawiki...AJAXPoll[master]: Removing my email address

2017-11-11 Thread Jack Phoenix (Code Review)
Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/390751 )

Change subject: Removing my email address
..

Removing my email address

Change-Id: Id1fe70f53a7622e852f2b70f2970cbaa740285fb
---
M includes/AJAXPoll.class.php
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/AJAXPoll 
refs/changes/51/390751/1

diff --git a/includes/AJAXPoll.class.php b/includes/AJAXPoll.class.php
index 0561bee..de2c3f2 100644
--- a/includes/AJAXPoll.class.php
+++ b/includes/AJAXPoll.class.php
@@ -8,7 +8,7 @@
  * @file
  * @ingroup Extensions
  * @author Dariusz Siedlecki 
- * @author Jack Phoenix 
+ * @author Jack Phoenix
  * @author Thomas Gries
  * @maintainer Thomas Gries
  * @link http://www.mediawiki.org/wiki/Extension:AJAX_Poll Documentation

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Id1fe70f53a7622e852f2b70f2970cbaa740285fb
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/AJAXPoll
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix 

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


  1   2   3   4   5   6   7   8   9   10   >