Fix comment blocks that start /* to /**
authorSam Reed <reedy@users.mediawiki.org>
Tue, 11 Oct 2011 18:30:50 +0000 (18:30 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Tue, 11 Oct 2011 18:30:50 +0000 (18:30 +0000)
29 files changed:
includes/DefaultSettings.php
includes/Exception.php
includes/installer/DatabaseUpdater.php
languages/messages/MessagesLv.php
languages/messages/MessagesRu.php
languages/messages/MessagesUk.php
maintenance/fuzz-tester.php
maintenance/populateParentId.php
maintenance/populateRevisionLength.php
tests/phpunit/includes/GlobalFunctions/wfExpandUrlTest.php
tests/phpunit/includes/IPTest.php
tests/phpunit/includes/api/RandomImageGenerator.php
tests/phpunit/includes/media/JpegMetadataExtractorTest.php
tests/selenium/installer/MediaWikiButtonsAvailabilityTestCase.php
tests/selenium/installer/MediaWikiDifferentDatabaseAccountTestCase.php
tests/selenium/installer/MediaWikiDifferntDatabasePrefixTestCase.php
tests/selenium/installer/MediaWikiErrorsConnectToDatabasePageTestCase.php
tests/selenium/installer/MediaWikiErrorsNamepageTestCase.php
tests/selenium/installer/MediaWikiHelpFieldHintTestCase.php
tests/selenium/installer/MediaWikiInstallationConfig.php
tests/selenium/installer/MediaWikiMySQLDataBaseTestCase.php
tests/selenium/installer/MediaWikiMySQLiteDataBaseTestCase.php
tests/selenium/installer/MediaWikiOnAlreadyInstalledTestCase.php
tests/selenium/installer/MediaWikiRestartInstallationTestCase.php
tests/selenium/installer/MediaWikiRightFrameworkLinksTestCase.php
tests/selenium/installer/MediaWikiUpgradeExistingDatabaseTestCase.php
tests/selenium/installer/MediaWikiUserInterfaceTestCase.php
tests/selenium/suites/MediawikiCoreSmokeTestSuite.php
tests/selenium/suites/SimpleSeleniumTestSuite.php

index 35ae738..daeb88b 100644 (file)
@@ -2488,7 +2488,7 @@ $wgResourceModules = array();
  */
 $wgResourceLoaderSources = array();
 
-/*
+/**
  * Default 'remoteBasePath' value for resource loader modules.
  * If not set, then $wgScriptPath will be used as a fallback.
  */
@@ -3635,7 +3635,7 @@ $wgAutopromoteOnce = array(
        'onView' => array()
 );
 
-/*
+/**
  * Put user rights log entries for autopromotion in recent changes?
  * @since 1.18
  */
index 432b768..f771af0 100644 (file)
@@ -131,7 +131,10 @@ class MWException extends Exception {
                }
        }
 
-       /* Return titles of this error page */
+       /**
+        * Return titles of this error page
+        * @return String
+        */
        function getPageTitle() {
                global $wgSitename;
                return $this->msg( 'internalerror', "$wgSitename error" );
index b8700db..b94fca4 100644 (file)
@@ -8,7 +8,7 @@
 
 require_once( dirname(__FILE__) . '/../../maintenance/Maintenance.php' );
 
-/*
+/**
  * Class for handling database updates. Roughly based off of updaters.inc, with
  * a few improvements :)
  *
index 0784e73..190ed51 100644 (file)
@@ -22,7 +22,7 @@
  * @author לערי ריינהארט
  */
 
-/*
+/**
  * @copyright Copyright © 2006, Niklas Laxström
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
  */
index 2539542..8af96b7 100644 (file)
@@ -56,7 +56,7 @@
  * @author გიორგიმელა
  */
 
-/*
+/**
  * Изменения сделанные в этом файле будут потеряны при обновлении MediaWiki.
  *
  * Если необходимо внести изменения в перевод отдельных строк интерфейса,
index 5e3b94a..c94e808 100644 (file)
@@ -35,7 +35,7 @@
  * @author Тест
  */
 
-/*
+/**
  * УВАГА! НЕ РЕДАГУЙТЕ ЦЕЙ ФАЙЛ!
  *
  * Якщо необхідно змінити переклад окремих частин інтерфейсу,
index 89a88e6..2348a15 100644 (file)
@@ -2395,8 +2395,8 @@ function wikiTestOutput( pageTest $test ) {
 
 // ////////////////// HTML VALIDATION /////////////////////////
 
-/*
- ** Asks the validator whether this is valid HTML, or not.
+/**
+ * Asks the validator whether this is valid HTML, or not.
  */
 function validateHTML( $text ) {
 
index 67689b9..14f158c 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-/*
+/**
  * Makes the required database updates for rev_parent_id
  * to be of any use. It can be used for some simple tracking
  * and to find new page edits by users.
index bb42de9..f562df4 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-/*
+/**
  * Populates the rev_len field for old revisions created before MW 1.10.
  *
  * This program is free software; you can redistribute it and/or modify
index c31e2af..d0d28f6 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-/*
+/**
  * Tests for IP validity functions. Ported from /t/inc/IP.t by avar.
  */
 
index 12ffd45..866e0fb 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-/*
+/**
  * RandomImageGenerator -- does what it says on the tin.
  * Requires Imagick, the ImageMagick library for PHP, or the command line equivalent (usually 'convert').
  *
index 99c4384..2cfffdb 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-/*
+/**
  * @todo Could use a test of extended XMP segments. Hard to find programs that
  * create example files, and creating my own in vim propbably wouldn't
  * serve as a very good "test". (Adobe photoshop probably creates such files
index 3557f51..bf5b379 100644 (file)
@@ -30,7 +30,7 @@
 
 require_once (dirname(__FILE__).'/'.'MediaWikiInstallationCommonFunction.php');
 
-/*
+/**
  * Test Case ID   : 30 (http://www.mediawiki.org/wiki/New_installer/Test_plan)
  * Test Case Name :'Back' and 'Continue' button availability
  * Version        : MediaWiki 1.18alpha
index 4afcdc0..f1b7945 100644 (file)
@@ -30,7 +30,7 @@
 
 require_once ( dirname( __FILE__ ) . '/MediaWikiInstallationCommonFunction.php' );
 
-/*
+/**
  * Test Case ID   : 04 (http://www.mediawiki.org/wiki/New_installer/Test_plan)
  * Test Case Name : Install MediaWiki with different Database accounts for web access.
  * Version        : MediaWiki 1.18alpha
index b6a0fc0..2d623af 100644 (file)
@@ -29,7 +29,7 @@
 
 require_once ( dirname( __FILE__ ) . '/MediaWikiInstallationCommonFunction.php' );
 
-/*
+/**
  * Test Case ID   : 02 (http://www.mediawiki.org/wiki/New_installer/Test_plan)
  * Test Case Name : Install MediaWiki with the same database and the different
  *                  database prefixes(Share one database between multiple wikis).
index 3642a8e..b112bc0 100644 (file)
@@ -30,7 +30,7 @@
 
 require_once ( dirname( __FILE__ ) . '/MediaWikiInstallationCommonFunction.php' );
 
-/*
+/**
  * Test Case ID   : 09 (http://www.mediawiki.org/wiki/New_installer/Test_plan)
  * Test Case Name : Invalid/ blank values for fields in 'Connect to database' page.
  * Version        : MediaWiki 1.18alpha
index d70dcc4..024fe5d 100644 (file)
@@ -27,7 +27,7 @@
  *
  */
 
-/*
+/**
  * Test Case ID   : 10 (http://www.mediawiki.org/wiki/New_installer/Test_plan)
  * Test Case Name : Invalid/ blank values for fields in 'Name' page.
  * Version        : MediaWiki 1.18alpha
index 355a285..806fcfd 100644 (file)
@@ -27,7 +27,7 @@
  *
  */
 
-/*
+/**
  * Test Case ID   : 29 (http://www.mediawiki.org/wiki/New_installer/Test_plan)
  * Test Case Name : Help field hint availability for the fields.
  * Version        : MediaWiki 1.18alpha
index d3067d6..d86bcb8 100644 (file)
@@ -28,7 +28,7 @@
  */
 
 
-/*
+/**
  * MediaWikiInstallerTestSuite.php can be run one time successfully
  * with current value of the 'DB_NAME_PREFIX'.
  * If you wish to run the suite more than one time, you need to change
@@ -39,7 +39,7 @@ define('DIRECTORY_NAME', "mediawiki" );
 define( 'PORT', "8080" );
 define( 'HOST_NAME', "localhost" );
 
-/*
+/**
  *  Use the followings to run the test suite in different browsers.
  *  Firefox : *firefox
  *  IE :  *iexplore
index abf9ddf..399ed4e 100644 (file)
@@ -30,7 +30,7 @@
 
 require_once (dirname(__FILE__).'/'.'MediaWikiInstallationCommonFunction.php');
 
-/*
+/**
  * Test Case ID   : 01 (http://www.mediawiki.org/wiki/New_installer/Test_plan)
  * Test Case Name : Install Mediawiki using 'MySQL' database type successfully
  * Version        : MediaWiki 1.18alpha
index fe704a4..f57c1a5 100644 (file)
@@ -30,7 +30,7 @@
 
 require_once (dirname(__FILE__).'/'.'MediaWikiInstallationCommonFunction.php');
 
-/*
+/**
  * Test Case ID   : 06 (http://www.mediawiki.org/wiki/New_installer/Test_plan)
  * Test Case Name : Install Mediawiki using 'MySQL' database type successfully
  * Version        : MediaWiki 1.18alpha
index e8b8f9b..4c05266 100644 (file)
@@ -31,7 +31,7 @@
 require_once (dirname(__FILE__).'/'.'MediaWikiInstallationCommonFunction.php');
 
 
-/*
+/**
  * Test Case ID   : 03 (http://www.mediawiki.org/wiki/New_installer/Test_plan)
  * Test Case Name : Install mediawiki on a already installed Mediawiki.]
  * Version        : MediaWiki 1.18alpha
index b0a3800..b9ca830 100644 (file)
@@ -31,7 +31,7 @@
 
 require_once (dirname(__FILE__).'/'.'MediaWikiInstallationCommonFunction.php');
 
-/*
+/**
  * Test Case ID   : 11, 12 (http://www.mediawiki.org/wiki/New_installer/Test_plan)
  * Test Case Name : Install mediawiki on a already installed Mediawiki.
  * Version        : MediaWiki 1.18alpha
index 346f24f..700172c 100644 (file)
@@ -30,7 +30,7 @@
 
 require_once (dirname(__FILE__).'/'.'MediaWikiInstallationCommonFunction.php');
 
-/*
+/**
  * Test Case ID   : 14, 15, 16, 17 (http://www.mediawiki.org/wiki/New_installer/Test_plan)
  * Test Case Name : User selects 'Read me' link.
  *                  User selects 'Release notes' link.
index 0ab5e65..eb82071 100644 (file)
@@ -30,7 +30,7 @@
 
 require_once (dirname(__FILE__).'/'.'MediaWikiInstallationCommonFunction.php');
 
-/*
+/**
  * Test Case ID   : 05 (http://www.mediawiki.org/wiki/New_installer/Test_plan)
  * Test Case Name : Install Mediawiki by updating the existing database.
  * Version        : MediaWiki 1.18alpha
index 7be39c0..0994892 100644 (file)
@@ -29,7 +29,7 @@
 
 require_once (dirname(__FILE__).'/'.'MediaWikiInstallationCommonFunction.php');
 
-/*
+/**
  * Test Case ID   : 18 - 27 (http://www.mediawiki.org/wiki/New_installer/Test_plan)
  * Test Case Name : UI of MediaWiki initial/ Language/ Welcome to MediaWiki!/ Connect to database/
  * Database settings/ Name/ Options/ Install/ Complete/ Restart Inslation pages
index 5d5ef51..a9a9b4d 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-/*
+/**
  * Stubs for now. We're going to start populating this test.
  */
 class MediawikiCoreSmokeTestSuite extends SeleniumTestSuite
index 3f5e364..2e0c4ee 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-/*
+/**
  * Sample test suite. 
  * Two ways to configure MW for these tests
  * 1) If you are running multiple test suites, add the following in LocalSettings.php