* Standardised file description headers
* Added some descriptions * Added @file where needed
This commit is contained in:
parent
303dd1cab2
commit
2d078552de
7 changed files with 33 additions and 13 deletions
|
|
@ -4,6 +4,8 @@
|
|||
*
|
||||
* Automatically generated using code and data in includes/zhtable/
|
||||
* Do not modify directly!
|
||||
*
|
||||
* @file
|
||||
*/
|
||||
|
||||
$zh2Hant = array(
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
<?php
|
||||
/**
|
||||
* Implements regular file uploads
|
||||
*
|
||||
* @file
|
||||
* @ingroup upload
|
||||
*
|
||||
* @author Bryan Tong Minh
|
||||
*
|
||||
* Implements regular file uploads
|
||||
*/
|
||||
|
||||
class UploadFromFile extends UploadBase {
|
||||
protected $mUpload = null;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
<?php
|
||||
/**
|
||||
* @file
|
||||
* @ingroup upload
|
||||
*
|
||||
* Implements uploading from previously stored file.
|
||||
*
|
||||
* @file
|
||||
* @ingroup upload
|
||||
* @author Bryan Tong Minh
|
||||
*/
|
||||
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
<?php
|
||||
/**
|
||||
* @file
|
||||
* @ingroup upload
|
||||
*
|
||||
* Implements uploading from a HTTP resource.
|
||||
*
|
||||
* @file
|
||||
* @ingroup upload
|
||||
* @author Bryan Tong Minh
|
||||
* @author Michael Dale
|
||||
*/
|
||||
|
||||
class UploadFromUrl extends UploadBase {
|
||||
protected $mAsync, $mUrl;
|
||||
protected $mIgnoreWarnings = true;
|
||||
|
|
|
|||
|
|
@ -352,6 +352,8 @@ def main():
|
|||
*
|
||||
* Automatically generated using code and data in includes/zhtable/
|
||||
* Do not modify directly!
|
||||
*
|
||||
* @file
|
||||
*/
|
||||
|
||||
$zh2Hant = array(\n'''
|
||||
|
|
|
|||
|
|
@ -1,11 +1,15 @@
|
|||
<?php
|
||||
/**
|
||||
* @defgroup Language Language
|
||||
* Internationalisation code
|
||||
*
|
||||
* @file
|
||||
* @ingroup Language
|
||||
*/
|
||||
|
||||
/**
|
||||
* @defgroup Language Language
|
||||
*/
|
||||
|
||||
if ( !defined( 'MEDIAWIKI' ) ) {
|
||||
echo "This file is part of MediaWiki, it is not a valid entry point.\n";
|
||||
exit( 1 );
|
||||
|
|
|
|||
|
|
@ -1,11 +1,24 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Contains the LanguageConverter class and ConverterRule class
|
||||
* @ingroup Language
|
||||
*
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
* http://www.gnu.org/copyleft/gpl.html
|
||||
*
|
||||
* @file
|
||||
* @ingroup Language
|
||||
*/
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue