Fix comment blocks that start /* to /**
This commit is contained in:
parent
1c79fd803d
commit
90e74042b4
29 changed files with 35 additions and 32 deletions
|
|
@ -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
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -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" );
|
||||
|
|
|
|||
|
|
@ -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 :)
|
||||
*
|
||||
|
|
|
|||
|
|
@ -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
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
* @author გიორგიმელა
|
||||
*/
|
||||
|
||||
/*
|
||||
/**
|
||||
* Изменения сделанные в этом файле будут потеряны при обновлении MediaWiki.
|
||||
*
|
||||
* Если необходимо внести изменения в перевод отдельных строк интерфейса,
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@
|
|||
* @author Тест
|
||||
*/
|
||||
|
||||
/*
|
||||
/**
|
||||
* УВАГА! НЕ РЕДАГУЙТЕ ЦЕЙ ФАЙЛ!
|
||||
*
|
||||
* Якщо необхідно змінити переклад окремих частин інтерфейсу,
|
||||
|
|
|
|||
|
|
@ -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 ) {
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
/*
|
||||
/**
|
||||
* Unit tests for wfExpandUrl()
|
||||
*/
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
/*
|
||||
/**
|
||||
* Tests for IP validity functions. Ported from /t/inc/IP.t by avar.
|
||||
*/
|
||||
|
||||
|
|
|
|||
|
|
@ -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').
|
||||
*
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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).
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
/*
|
||||
/**
|
||||
* Stubs for now. We're going to start populating this test.
|
||||
*/
|
||||
class MediawikiCoreSmokeTestSuite extends SeleniumTestSuite
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue