Documentation: Assign files to packages
authorJens Frank <jeluf@users.mediawiki.org>
Fri, 1 Oct 2004 06:25:50 +0000 (06:25 +0000)
committerJens Frank <jeluf@users.mediawiki.org>
Fri, 1 Oct 2004 06:25:50 +0000 (06:25 +0000)
includes/HTMLForm.php
includes/SpecialData.php
includes/SpecialPage.php
includes/SpecialSitesettings.php
includes/ZhConversion.php
maintenance/convertUtf8.php

index 04d553f..b5b7084 100644 (file)
@@ -1,8 +1,9 @@
 <?php
-/** */
-
 /**
  * Class to build various forms
+ *
+ * @package MediaWiki
+ * @author jeluf, hashar
  */
 class HTMLForm {
        /** name of our form. Used as prefix for labels */
index bb397fd..c875f35 100644 (file)
@@ -1,4 +1,7 @@
 <?php
+/**
+ * @package MediaWiki
+ */
 
 /* You'll need to run these CREATEs :
 
index 8dfa787..1c3a0d6 100644 (file)
@@ -89,7 +89,7 @@ $wgSpecialPages = array_merge($wgSpecialPages, array (
 #      "Import"                => new SpecialPage( "Import", "sysop" ),
        'Lockdb'                => new SpecialPage( 'Lockdb', 'developer' ),
        'Unlockdb'              => new SpecialPage( 'Unlockdb', 'developer' ),
-//     "Sitesettings"          => new SpecialPage( "Sitesettings" )
+       "Sitesettings"          => new SpecialPage( "Sitesettings" )
 ));
 
 /**
index 0c8f450..536e5a8 100644 (file)
@@ -1,4 +1,8 @@
 <?php
+/**
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
 require_once('HTMLForm.php');
 
 function wfSpecialSiteSettings() {
index 6a16fc2..bf5bd80 100644 (file)
@@ -1,21 +1,24 @@
 <?php
-/* Simplified/Traditional Chinese conversion tables
-
-   The character-to-character mappings are mainly extracted from the
-   Unihan database from the 4.0.1 version of the Unicode standard,
-   with some modification adapted from the following paper published
-   in China:
-   冯寿忠,“非对称繁简字”对照表, 《语文建设通讯》1997-9第53期.
-   The paper is available from
-   /http://www.yywzw.com/jt/feng/fengb01.htm
-
-   The phrases are extracted from various phrase tables in the SCIM
-   package (http://www.freedesktop.org/Software/scim), and the mappings
-   of the phrases are computed using the character-to-character
-   mappings. Only phrases that contains one-to-many
-   character-to-character mappings are included, and the length of the
-   phrases are limited to below 5 characters.
-*/
+/**
+ * Simplified/Traditional Chinese conversion tables
+ *
+ * The character-to-character mappings are mainly extracted from the
+ * Unihan database from the 4.0.1 version of the Unicode standard,
+ * with some modification adapted from the following paper published
+ * in China:
+ * 冯寿忠,“非对称繁简字”对照表, 《语文建设通讯》1997-9第53期.
+ * The paper is available from
+ * /http://www.yywzw.com/jt/feng/fengb01.htm
+ *
+ * The phrases are extracted from various phrase tables in the SCIM
+ * package (http://www.freedesktop.org/Software/scim), and the mappings
+ * of the phrases are computed using the character-to-character
+ * mappings. Only phrases that contains one-to-many
+ * character-to-character mappings are included, and the length of the
+ * phrases are limited to below 5 characters.
+ *
+ * @package MediaWiki
+ */
 
 $zhSimp2Trad=array(
 "万"=>"萬",
@@ -8438,4 +8441,4 @@ $zhTrad2Simp=array(
 "雕棟畫梁" =>      "雕栋画梁",
 "雕梁畫棟" =>      "雕梁画栋",
 );
-?>
\ No newline at end of file
+?>
index 3281d6b..def49e9 100644 (file)
@@ -1,4 +1,8 @@
 <?php
+/**
+ * @package MediaWiki
+ * @subpackage Maintenance
+ */
 
 die("This file is not complete; it's checked in so I don't forget it.");
 
@@ -196,4 +200,4 @@ archive
        ar_user_text
 */
 
-?>
\ No newline at end of file
+?>