* Standardised file description headers

* Added some descriptions
* Added @file where needed
This commit is contained in:
Alexandre Emsenhuber 2010-08-20 20:39:04 +00:00
parent 303dd1cab2
commit 2d078552de
7 changed files with 33 additions and 13 deletions

View file

@ -4,6 +4,8 @@
*
* Automatically generated using code and data in includes/zhtable/
* Do not modify directly!
*
* @file
*/
$zh2Hant = array(

View file

@ -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;

View file

@ -1,10 +1,9 @@
<?php
/**
* @file
* @ingroup upload
*
* Implements uploading from previously stored file.
*
* @file
* @ingroup upload
* @author Bryan Tong Minh
*/

View file

@ -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;

View file

@ -352,6 +352,8 @@ def main():
*
* Automatically generated using code and data in includes/zhtable/
* Do not modify directly!
*
* @file
*/
$zh2Hant = array(\n'''

View file

@ -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 );

View file

@ -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
*/
/**