r99628 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r99627‎ | r99628 | r99629 >
Date:12:55, 12 October 2011
Author:demon
Status:deferred
Tags:
Comment:
Quick check to tell if someone has enough USERINFO for us to migrate them to git
Modified paths:
  • /trunk/tools/subversion/users.php (modified) (history)

Diff [purge]

Index: trunk/tools/subversion/users.php
@@ -30,12 +30,15 @@
3131 $userInfo = getUserInfo( $parts[0] );
3232 $encUsername = htmlspecialchars( $parts[0] );
3333 $userInfo = array_map( 'htmlspecialchars', $userInfo );
 34+ $readyForGit = isset( $userInfo['name'] ) && isset( $userInfo['email'] ) ? 'Y' : 'N';
3435 $link = $userInfo['url'] ? "<a href=\"{$userInfo['url']}\">$encUsername</a>" : $encUsername;
3536
3637 $rows[$parts[0]] = <<<EOT
3738 <tr id="$encUsername">
3839 <td>$link</td>
3940 <td>{$userInfo['name']}</td>
 41+<td></td>
 42+<td>$readyForGit</td>
4043 </tr>
4144
4245 EOT;

Follow-up revisions

RevisionCommit summaryAuthorDate
r99629Followup r99628, forgot <th>demon12:56, 12 October 2011

Status & tagging log