r100588 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r100587‎ | r100588 | r100589 >
Date:09:08, 24 October 2011
Author:hashar
Status:ok (Comments)
Tags:
Comment:
using real identity for hashar

Converting my pseudonym to use my real identity instead:
Ashar Voultoiz -> Antoine Musso
Modified paths:
  • /trunk/phase3/includes/BacklinkCache.php (modified) (history)
  • /trunk/phase3/includes/FormOptions.php (modified) (history)
  • /trunk/phase3/includes/IP.php (modified) (history)
  • /trunk/phase3/includes/OutputPage.php (modified) (history)
  • /trunk/phase3/includes/specials/SpecialListusers.php (modified) (history)
  • /trunk/phase3/includes/specials/SpecialVersion.php (modified) (history)
  • /trunk/phase3/maintenance/findHooks.php (modified) (history)
  • /trunk/phase3/maintenance/language/StatOutputs.php (modified) (history)
  • /trunk/phase3/maintenance/language/transstat.php (modified) (history)
  • /trunk/phase3/maintenance/mwdocgen.php (modified) (history)
  • /trunk/phase3/maintenance/showJobs.php (modified) (history)
  • /trunk/phase3/maintenance/showStats.php (modified) (history)
  • /trunk/phase3/maintenance/userOptions.php (modified) (history)
  • /trunk/phase3/tests/phpunit/includes/FormOptionsInitializationTest.php (modified) (history)
  • /trunk/phase3/tests/phpunit/includes/FormOptionsTest.php (modified) (history)
  • /trunk/phase3/tests/phpunit/includes/MWNamespaceTest.php (modified) (history)
  • /trunk/phase3/tests/phpunit/includes/Providers.php (modified) (history)
  • /trunk/phase3/tests/phpunit/includes/parser/MagicVariableTest.php (modified) (history)
  • /trunk/phase3/tests/phpunit/includes/specials/SpecialRecentchangesTest.php (modified) (history)
  • /trunk/phase3/tests/phpunit/languages/LanguageTrTest.php (modified) (history)

Diff [purge]

Index: trunk/phase3/maintenance/mwdocgen.php
@@ -33,7 +33,7 @@
3434 * @todo document
3535 * @ingroup Maintenance
3636 *
37 - * @author Ashar Voultoiz <hashar at free dot fr>
 37+ * @author Antoine Musso <hashar at free dot fr>
3838 * @author Brion Vibber
3939 * @author Alexandre Emsenhuber
4040 * @version first release
Index: trunk/phase3/maintenance/userOptions.php
@@ -23,7 +23,7 @@
2424 *
2525 * @file
2626 * @ingroup Maintenance
27 - * @author Ashar Voultoiz <hashar at free dot fr>
 27+ * @author Antoine Musso <hashar at free dot fr>
2828 */
2929
3030 // This is a command line script, load tools and parse args
Index: trunk/phase3/maintenance/findHooks.php
@@ -12,7 +12,7 @@
1313 *
1414 * Any instance of wfRunHooks that doesn't meet these parameters will be noted.
1515 *
16 - * Copyright © Ashar Voultoiz
 16+ * Copyright © Antoine Musso
1717 *
1818 * This program is free software; you can redistribute it and/or modify
1919 * it under the terms of the GNU General Public License as published by
@@ -31,7 +31,7 @@
3232 *
3333 * @file
3434 * @ingroup Maintenance
35 - * @author Ashar Voultoiz <hashar at free dot fr>
 35+ * @author Antoine Musso <hashar at free dot fr>
3636 */
3737
3838 require_once( dirname( __FILE__ ) . '/Maintenance.php' );
Index: trunk/phase3/maintenance/language/StatOutputs.php
@@ -21,7 +21,7 @@
2222 * @file
2323 * @ingroup MaintenanceLanguage
2424 * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
25 - * @author Ashar Voultoiz <hashar at free dot fr>
 25+ * @author Antoine Musso <hashar at free dot fr>
2626 */
2727
2828 /** A general output object. Need to be overriden */
Index: trunk/phase3/maintenance/language/transstat.php
@@ -21,7 +21,7 @@
2222 * @ingroup MaintenanceLanguage
2323 *
2424 * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
25 - * @author Ashar Voultoiz <hashar at free dot fr>
 25+ * @author Antoine Musso <hashar at free dot fr>
2626 *
2727 * Output is posted from time to time on:
2828 * http://www.mediawiki.org/wiki/Localisation_statistics
Index: trunk/phase3/maintenance/showJobs.php
@@ -21,7 +21,7 @@
2222 *
2323 * @ingroup Maintenance
2424 * @author Tim Starling
25 - * @author Ashar Voultoiz
 25+ * @author Antoine Musso
2626 */
2727
2828 require_once( dirname( __FILE__ ) . '/Maintenance.php' );
Index: trunk/phase3/maintenance/showStats.php
@@ -20,7 +20,7 @@
2121 * http://www.gnu.org/copyleft/gpl.html
2222 *
2323 * @ingroup Maintenance
24 - * @author Ashar Voultoiz <hashar at free dot fr>
 24+ * @author Antoine Musso <hashar at free dot fr>
2525 * Based on initStats.php by:
2626 * @author Brion Vibber
2727 * @author Rob Church <robchur@gmail.com>
Index: trunk/phase3/tests/phpunit/includes/FormOptionsTest.php
@@ -12,9 +12,9 @@
1313 * Test class for FormOptions methods.
1414 * Generated by PHPUnit on 2011-02-28 at 20:46:27.
1515 *
16 - * Copyright © 2011, Ashar Voultoiz
 16+ * Copyright © 2011, Antoine Musso
1717 *
18 - * @author Ashar Voultoiz
 18+ * @author Antoine Musso
1919 */
2020 class FormOptionsTest extends MediaWikiTestCase {
2121 /**
Index: trunk/phase3/tests/phpunit/includes/FormOptionsInitializationTest.php
@@ -25,9 +25,9 @@
2626 *
2727 * Generated by PHPUnit on 2011-02-28 at 20:46:27.
2828 *
29 - * Copyright © 2011, Ashar Voultoiz
 29+ * Copyright © 2011, Antoine Musso
3030 *
31 - * @author Ashar Voultoiz
 31+ * @author Antoine Musso
3232 */
3333 class FormOptionsInitializationTest extends MediaWikiTestCase {
3434 /**
Index: trunk/phase3/tests/phpunit/includes/MWNamespaceTest.php
@@ -1,7 +1,7 @@
22 <?php
33 /**
4 - * @author Ashar Voultoiz
5 - * @copyright Copyright © 2011, Ashar Voultoiz
 4+ * @author Antoine Musso
 5+ * @copyright Copyright © 2011, Antoine Musso
66 * @file
77 */
88
Index: trunk/phase3/tests/phpunit/includes/parser/MagicVariableTest.php
@@ -6,8 +6,8 @@
77 * As of february 2011, it only tests some revisions and date related
88 * magic variables.
99 *
10 - * @author Ashar Voultoiz
11 - * @copyright Copyright © 2011, Ashar Voultoiz
 10+ * @author Antoine Musso
 11+ * @copyright Copyright © 2011, Antoine Musso
1212 * @file
1313 */
1414
Index: trunk/phase3/tests/phpunit/includes/Providers.php
@@ -2,8 +2,8 @@
33 /**
44 * Generic providers for the MediaWiki PHPUnit test suite
55 *
6 - * @author Ashar Voultoiz
7 - * @copyright Copyright © 2011, Ashar Voultoiz
 6+ * @author Antoine Musso
 7+ * @copyright Copyright © 2011, Antoine Musso
88 * @file
99 */
1010
Index: trunk/phase3/tests/phpunit/includes/specials/SpecialRecentchangesTest.php
@@ -2,9 +2,9 @@
33 /**
44 * Test class for SpecialRecentchanges class
55 *
6 - * Copyright © 2011, Ashar Voultoiz
 6+ * Copyright © 2011, Antoine Musso
77 *
8 - * @author Ashar Voultoiz
 8+ * @author Antoine Musso
99 * @group Database
1010 */
1111 class SpecialRecentchangesTest extends MediaWikiTestCase {
Index: trunk/phase3/tests/phpunit/languages/LanguageTrTest.php
@@ -1,7 +1,7 @@
22 <?php
33 /**
4 - * @author Ashar Voultoiz
5 - * @copyright Copyright © 2011, Ashar Voultoiz
 4+ * @author Antoine Musso
 5+ * @copyright Copyright © 2011, Antoine Musso
66 * @file
77 */
88
Index: trunk/phase3/includes/FormOptions.php
@@ -5,10 +5,10 @@
66 *
77 * Copyright © 2008, Niklas Laxstiröm
88 *
9 - * Copyright © 2011, Ashar Voultoiz
 9+ * Copyright © 2011, Antoine Musso
1010 *
1111 * @author Niklas Laxström
12 - * @author Ashar Voultoiz
 12+ * @author Antoine Musso
1313 */
1414
1515 class FormOptions implements ArrayAccess {
Index: trunk/phase3/includes/OutputPage.php
@@ -13,7 +13,7 @@
1414 *
1515 * @todo FIXME: Another class handles sending the whole page to the client.
1616 *
17 - * Some comments comes from a pairing session between Zak Greant and Ashar Voultoiz
 17+ * Some comments comes from a pairing session between Zak Greant and Antoine Musso
1818 * in November 2010.
1919 *
2020 * @todo document
Index: trunk/phase3/includes/BacklinkCache.php
@@ -22,7 +22,7 @@
2323 * @author Tim Starling
2424 * @copyright © 2009, Tim Starling, Domas Mituzas
2525 * @copyright © 2010, Max Sem
26 - * @copyright © 2011, Ashar Voultoiz
 26+ * @copyright © 2011, Antoine Musso
2727 */
2828 class BacklinkCache {
2929
Index: trunk/phase3/includes/specials/SpecialVersion.php
@@ -107,7 +107,7 @@
108108 'Aryeh Gregor', 'Aaron Schulz', 'Andrew Garrett', 'Raimond Spekking',
109109 'Alexandre Emsenhuber', 'Siebrand Mazeland', 'Chad Horohoe',
110110 'Roan Kattouw', 'Trevor Parscal', 'Bryan Tong Minh', 'Sam Reed',
111 - 'Victor Vasiliev', 'Rotem Liss', 'Platonides', 'Ashar Voultoiz',
 111+ 'Victor Vasiliev', 'Rotem Liss', 'Platonides', 'Antoine Musso',
112112 wfMsg( 'version-poweredby-others' )
113113 );
114114
Index: trunk/phase3/includes/specials/SpecialListusers.php
@@ -3,7 +3,7 @@
44 * Implements Special:Listusers
55 *
66 * Copyright © 2004 Brion Vibber, lcrocker, Tim Starling,
7 - * Domas Mituzas, Ashar Voultoiz, Jens Frank, Zhengzhu,
 7+ * Domas Mituzas, Antoine Musso, Jens Frank, Zhengzhu,
88 * 2006 Rob Church <robchur@gmail.com>
99 *
1010 * This program is free software; you can redistribute it and/or modify
Index: trunk/phase3/includes/IP.php
@@ -18,7 +18,7 @@
1919 * http://www.gnu.org/copyleft/gpl.html
2020 *
2121 * @file
22 - * @author Ashar Voultoiz <hashar at free dot fr>, Aaron Schulz
 22+ * @author Antoine Musso <hashar at free dot fr>, Aaron Schulz
2323 */
2424
2525 // Some regex definition to "play" with IP address and IP address blocks

Follow-up revisions

RevisionCommit summaryAuthorDate
r100589using real identity for hashar...hashar09:09, 24 October 2011
r104404using real identity for hashar...hashar06:52, 28 November 2011

Comments

#Comment by Reach Out to the Truth (talk | contribs)   03:22, 27 November 2011

CREDITS as well.

#Comment by Hashar (talk | contribs)   06:53, 28 November 2011

Thanks for spotting it! ack-grep did not catch the README / CREDITS files. Fixed this with r104404.

Status & tagging log