r85767 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r85766‎ | r85767 | r85768 >
Date:18:22, 10 April 2011
Author:foxtrott
Status:deferred
Tags:
Comment:
documentation structure (assigned classes and files to modules)
Modified paths:
  • /trunk/extensions/SemanticForms/SemanticForms.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/SF_AutoEditAjaxHandler.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/SF_AutocompleteAPI.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/SF_CreatePageJob.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/SF_FormClasses.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/SF_FormEditPage.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/SF_FormEditTab.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/SF_FormField.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/SF_FormInputs.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/SF_FormLinker.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/SF_FormPrinter.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/SF_FormUtils.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/SF_GlobalFunctions.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/SF_ParserFunctions.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/SF_Settings.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/SF_TemplateField.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/SF_Utils.php (modified) (history)
  • /trunk/extensions/SemanticForms/languages/SF_Aliases.php (modified) (history)
  • /trunk/extensions/SemanticForms/languages/SF_Language.php (modified) (history)
  • /trunk/extensions/SemanticForms/languages/SF_LanguageAr.php (modified) (history)
  • /trunk/extensions/SemanticForms/languages/SF_LanguageArz.php (modified) (history)
  • /trunk/extensions/SemanticForms/languages/SF_LanguageCa.php (modified) (history)
  • /trunk/extensions/SemanticForms/languages/SF_LanguageDe.php (modified) (history)
  • /trunk/extensions/SemanticForms/languages/SF_LanguageDe_formal.php (modified) (history)
  • /trunk/extensions/SemanticForms/languages/SF_LanguageEn.php (modified) (history)
  • /trunk/extensions/SemanticForms/languages/SF_LanguageEs.php (modified) (history)
  • /trunk/extensions/SemanticForms/languages/SF_LanguageFa.php (modified) (history)
  • /trunk/extensions/SemanticForms/languages/SF_LanguageFr.php (modified) (history)
  • /trunk/extensions/SemanticForms/languages/SF_LanguageHe.php (modified) (history)
  • /trunk/extensions/SemanticForms/languages/SF_LanguageIt.php (modified) (history)
  • /trunk/extensions/SemanticForms/languages/SF_LanguageNl.php (modified) (history)
  • /trunk/extensions/SemanticForms/languages/SF_LanguageNo.php (modified) (history)
  • /trunk/extensions/SemanticForms/languages/SF_LanguagePt_br.php (modified) (history)
  • /trunk/extensions/SemanticForms/languages/SF_LanguageZh_cn.php (modified) (history)
  • /trunk/extensions/SemanticForms/languages/SF_LanguageZh_tw.php (modified) (history)
  • /trunk/extensions/SemanticForms/languages/SF_Magic.php (modified) (history)
  • /trunk/extensions/SemanticForms/languages/SF_Messages.php (modified) (history)
  • /trunk/extensions/SemanticForms/specials/SF_CreateCategory.php (modified) (history)
  • /trunk/extensions/SemanticForms/specials/SF_CreateClass.php (modified) (history)
  • /trunk/extensions/SemanticForms/specials/SF_CreateForm.php (modified) (history)
  • /trunk/extensions/SemanticForms/specials/SF_CreateProperty.php (modified) (history)
  • /trunk/extensions/SemanticForms/specials/SF_CreateTemplate.php (modified) (history)
  • /trunk/extensions/SemanticForms/specials/SF_FormEdit.php (modified) (history)
  • /trunk/extensions/SemanticForms/specials/SF_FormStart.php (modified) (history)
  • /trunk/extensions/SemanticForms/specials/SF_Forms.php (modified) (history)
  • /trunk/extensions/SemanticForms/specials/SF_RunQuery.php (modified) (history)
  • /trunk/extensions/SemanticForms/specials/SF_Templates.php (modified) (history)
  • /trunk/extensions/SemanticForms/specials/SF_UploadWindow.php (modified) (history)
  • /trunk/extensions/SemanticForms/specials/SF_UploadWindow2.php (modified) (history)

Diff [purge]

Index: trunk/extensions/SemanticForms/SemanticForms.php
@@ -1,7 +1,45 @@
22 <?php
33 /**
44 * Default settings for Semantic Forms.
 5+ *
 6+ * @file
 7+ * @ingroup SF
58 */
 9+
 10+/**
 11+ * Forms for adding and editing semantic data
 12+ *
 13+ * @defgroup SF Semantic Forms
 14+ */
 15+
 16+/**
 17+ * The module Form Inputs contains form input classes
 18+ * @defgroup SFFormInput Form Inputs
 19+ * @ingroup SF
 20+ */
 21+
 22+/**
 23+ * The module Special Pages contains all Special Pages defined by
 24+ * Semantic Forms.
 25+ *
 26+ * @defgroup SFSpecialPages Special Pages
 27+ * @ingroup SF
 28+ */
 29+
 30+/**
 31+ * The module Language contains all language-related classes.
 32+ *
 33+ * @defgroup SFLanguage Language
 34+ * @ingroup SF
 35+ */
 36+
 37+
 38+/**
 39+ * Forms for adding and editing semantic data
 40+ *
 41+ * @defgroup SF Semantic Forms
 42+ */
 43+
644 if ( !defined( 'MEDIAWIKI' ) ) die();
745
846 define( 'SF_VERSION', '2.2-alpha' );
Index: trunk/extensions/SemanticForms/specials/SF_CreateCategory.php
@@ -4,10 +4,15 @@
55 * page, with SF forms associated with it
66 *
77 * @author Yaron Koren
 8+ * @file
 9+ * @ingroup SF
810 */
911
1012 if ( !defined( 'MEDIAWIKI' ) ) die();
1113
 14+/**
 15+ * @ingroup SFSpecialPages
 16+ */
1217 class SFCreateCategory extends SpecialPage {
1318
1419 /**
Index: trunk/extensions/SemanticForms/specials/SF_FormStart.php
@@ -5,9 +5,14 @@
66 *
77 * @author Yaron Koren
88 * @author Jeffrey Stuckman
 9+ * @file
 10+ * @ingroup SF
911 */
1012 if ( !defined( 'MEDIAWIKI' ) ) die();
1113
 14+/**
 15+ * @ingroup SFSpecialPages
 16+ */
1217 class SFFormStart extends SpecialPage {
1318
1419 /**
Index: trunk/extensions/SemanticForms/specials/SF_Forms.php
@@ -3,10 +3,15 @@
44 * Shows list of all forms on the site.
55 *
66 * @author Yaron Koren
 7+ * @file
 8+ * @ingroup SF
79 */
810
911 if ( !defined( 'MEDIAWIKI' ) ) die();
1012
 13+/**
 14+ * @ingroup SFSpecialPages
 15+ */
1116 class SFForms extends SpecialPage {
1217
1318 /**
@@ -30,6 +35,9 @@
3136 }
3237 }
3338
 39+/**
 40+ * @ingroup SFSpecialPages
 41+ */
3442 class FormsPage extends QueryPage {
3543 public function __construct( $name = 'Forms' ) {
3644 // For MW <= 1.17
Index: trunk/extensions/SemanticForms/specials/SF_CreateForm.php
@@ -4,10 +4,15 @@
55 * form.
66 *
77 * @author Yaron Koren
 8+ * @file
 9+ * @ingroup SF
810 */
911
1012 if ( !defined( 'MEDIAWIKI' ) ) die();
1113
 14+/**
 15+ * @ingroup SFSpecialPages
 16+ */
1217 class SFCreateForm extends SpecialPage {
1318
1419 /**
Index: trunk/extensions/SemanticForms/specials/SF_CreateProperty.php
@@ -4,10 +4,15 @@
55 * property.
66 *
77 * @author Yaron Koren
 8+ * @file
 9+ * @ingroup SF
810 */
911
1012 if ( !defined( 'MEDIAWIKI' ) ) die();
1113
 14+/**
 15+ * @ingroup SFSpecialPages
 16+ */
1217 class SFCreateProperty extends SpecialPage {
1318
1419 /**
Index: trunk/extensions/SemanticForms/specials/SF_CreateClass.php
@@ -5,10 +5,15 @@
66 *
77 * @author Yaron Koren
88 * @author Sanyam Goyal
 9+ * @file
 10+ * @ingroup SF
911 */
1012
1113 if ( !defined( 'MEDIAWIKI' ) ) die();
1214
 15+/**
 16+ * @ingroup SFSpecialPages
 17+ */
1318 class SFCreateClass extends SpecialPage {
1419
1520 /**
Index: trunk/extensions/SemanticForms/specials/SF_FormEdit.php
@@ -4,9 +4,14 @@
55 * existing one.
66 *
77 * @author Yaron Koren
 8+ * @file
 9+ * @ingroup SF
810 */
911 if ( !defined( 'MEDIAWIKI' ) ) die();
1012
 13+/**
 14+ * @ingroup SFSpecialPages
 15+ */
1116 class SFFormEdit extends SpecialPage {
1217
1318 public $mTarget;
Index: trunk/extensions/SemanticForms/specials/SF_RunQuery.php
@@ -3,10 +3,15 @@
44 * Displays a pre-defined form that a user can run a query with.
55 *
66 * @author Yaron Koren
 7+ * @file
 8+ * @ingroup SF
79 */
810
911 if ( !defined( 'MEDIAWIKI' ) ) die();
1012
 13+/**
 14+ * @ingroup SFSpecialPages
 15+ */
1116 class SFRunQuery extends IncludableSpecialPage {
1217
1318 /**
Index: trunk/extensions/SemanticForms/specials/SF_UploadWindow.php
@@ -10,13 +10,15 @@
1111 * This class is based almost entirely on the upload functionality
1212 * developed by the Chickipedia.com team.
1313 *
 14+ * @author Yaron Koren
1415 * @file
15 - * @ingroup SpecialPage
16 - *
17 - * @author Yaron Koren
 16+ * @ingroup SF
1817 */
1918 if ( !defined( 'MEDIAWIKI' ) ) die();
2019
 20+/**
 21+ * @ingroup SFSpecialPages
 22+ */
2123 class SFUploadWindow extends UnlistedSpecialPage {
2224
2325 /**
@@ -109,7 +111,7 @@
110112
111113 /**
112114 * implements Special:UploadWindow
113 - * @ingroup SpecialPage
 115+ * @ingroup SFSpecialPages
114116 */
115117 class UploadWindowForm {
116118 /**#@+
Index: trunk/extensions/SemanticForms/specials/SF_Templates.php
@@ -3,10 +3,15 @@
44 * Shows list of all templates on the site.
55 *
66 * @author Yaron Koren
 7+ * @file
 8+ * @ingroup SF
79 */
810
911 if ( !defined( 'MEDIAWIKI' ) ) die();
1012
 13+/**
 14+ * @ingroup SFSpecialPages
 15+ */
1116 class SFTemplates extends SpecialPage {
1217
1318 /**
@@ -30,6 +35,9 @@
3136 }
3237 }
3338
 39+/**
 40+ * @ingroup SFSpecialPages
 41+ */
3442 class TemplatesPage extends QueryPage {
3543 public function __construct( $name = 'Templates' ) {
3644 // For MW <= 1.17
Index: trunk/extensions/SemanticForms/specials/SF_UploadWindow2.php
@@ -6,12 +6,14 @@
77 * a few changes to remove skin CSS and HTML, and to populate the relevant
88 * field in the form with the name of the uploaded form.
99 *
10 - * @ingroup SpecialPage
11 - *
1210 * @author Yaron Koren
 11+ * @file
 12+ * @ingroup SF
1313 */
1414
15 -
 15+/**
 16+ * @ingroup SFSpecialPages
 17+ */
1618 class SFUploadWindow2 extends UnlistedSpecialPage {
1719 /**
1820 * Constructor : initialise object
Index: trunk/extensions/SemanticForms/specials/SF_CreateTemplate.php
@@ -4,10 +4,15 @@
55 * with semantic fields.
66 *
77 * @author Yaron Koren
 8+ * @file
 9+ * @ingroup SF
810 */
911
1012 if ( !defined( 'MEDIAWIKI' ) ) die();
1113
 14+/**
 15+ * @ingroup SFSpecialPages
 16+ */
1217 class SFCreateTemplate extends SpecialPage {
1318
1419 /**
Index: trunk/extensions/SemanticForms/includes/SF_FormEditPage.php
@@ -1,11 +1,17 @@
22 <?php
33 /**
4 - * Form Edit Page inheriting from EditPage
 4+ * Contains Form Edit Page inheriting from EditPage
55 *
66 * @author Daniel Friesen
77 * @author Yaron Koren
 8+ * @file
 9+ * @ingroup SF
810 */
911
 12+/**
 13+ * Form Edit Page inheriting from EditPage
 14+ * @ingroup SF
 15+ */
1016 class SFFormEditPage extends EditPage {
1117
1218 protected $form, $form_name;
Index: trunk/extensions/SemanticForms/includes/SF_FormInputs.php
@@ -7,10 +7,13 @@
88 * @author Matt Williamson
99 * @author Patrick Nagel
1010 * @author Sanyam Goyal
 11+ * @file
 12+ * @ingroup SF
1113 */
1214
1315 /**
1416 * Parent class for all form input classes.
 17+ * @ingroup SFFormInput
1518 */
1619 class SFFormInput {
1720 /**
@@ -83,6 +86,7 @@
8487 /**
8588 * The base class for every form input that holds a pre-set enumeration
8689 * of values.
 90+ * @ingroup SFFormInput
8791 */
8892 class SFEnumInput extends SFFormInput {
8993 public static function getOtherPropTypesHandled() {
@@ -110,6 +114,7 @@
111115 /**
112116 * The base class for every form input that holds a list of elements, each
113117 * one from a pre-set enumeration of values.
 118+ * @ingroup SFFormInput
114119 */
115120 class SFMultiEnumInput extends SFEnumInput {
116121 public static function getOtherPropTypesHandled() {
@@ -127,6 +132,9 @@
128133 }
129134 }
130135
 136+/**
 137+ * @ingroup SFFormInput
 138+ */
131139 class SFTextInput extends SFFormInput {
132140 public static function getName() {
133141 return 'text';
@@ -273,6 +281,9 @@
274282 }
275283 }
276284
 285+/**
 286+ * @ingroup SFFormInput
 287+ */
277288 class SFTextAreaInput extends SFFormInput {
278289 public static function getName() {
279290 return 'textarea';
@@ -357,6 +368,9 @@
358369 }
359370 }
360371
 372+/**
 373+ * @ingroup SFFormInput
 374+ */
361375 class SFCheckboxInput extends SFFormInput {
362376 public static function getName() {
363377 return 'checkbox';
@@ -421,6 +435,9 @@
422436 }
423437 }
424438
 439+/**
 440+ * @ingroup SFFormInput
 441+ */
425442 class SFDropdownInput extends SFEnumInput {
426443 public static function getName() {
427444 return 'dropdown';
@@ -494,6 +511,9 @@
495512 }
496513 }
497514
 515+/**
 516+ * @ingroup SFFormInput
 517+ */
498518 class SFRadioButtonInput extends SFEnumInput {
499519 public static function getName() {
500520 return 'radiobutton';
@@ -583,6 +603,9 @@
584604 }
585605 }
586606
 607+/**
 608+ * @ingroup SFFormInput
 609+ */
587610 class SFListBoxInput extends SFMultiEnumInput {
588611 public static function getName() {
589612 return 'listbox';
@@ -660,6 +683,9 @@
661684 }
662685 }
663686
 687+/**
 688+ * @ingroup SFFormInput
 689+ */
664690 class SFCheckboxesInput extends SFMultiEnumInput {
665691 public static function getName() {
666692 return 'checkboxes';
@@ -752,6 +778,9 @@
753779 }
754780 }
755781
 782+/**
 783+ * @ingroup SFFormInput
 784+ */
756785 class SFTextWithAutocompleteInput extends SFTextInput {
757786 public static function getName() {
758787 return 'text with autocomplete';
@@ -947,6 +976,9 @@
948977 }
949978 }
950979
 980+/**
 981+ * @ingroup SFFormInput
 982+ */
951983 class SFTextAreaWithAutocompleteInput extends SFTextAreaInput {
952984 public static function getName() {
953985 return 'textarea with autocomplete';
@@ -1051,6 +1083,9 @@
10521084 }
10531085 }
10541086
 1087+/**
 1088+ * @ingroup SFFormInput
 1089+ */
10551090 class SFComboBoxInput extends SFFormInput {
10561091 public static function getName() {
10571092 return 'combobox';
@@ -1128,6 +1163,9 @@
11291164 }
11301165 }
11311166
 1167+/**
 1168+ * @ingroup SFFormInput
 1169+ */
11321170 class SFDateInput extends SFFormInput {
11331171 public static function getName() {
11341172 return 'date';
@@ -1226,6 +1264,9 @@
12271265 }
12281266 }
12291267
 1268+/**
 1269+ * @ingroup SFFormInput
 1270+ */
12301271 class SFDateTimeInput extends SFDateInput {
12311272 public static function getName() {
12321273 return 'datetime';
@@ -1334,6 +1375,9 @@
13351376 }
13361377 }
13371378
 1379+/**
 1380+ * @ingroup SFFormInput
 1381+ */
13381382 class SFYearInput extends SFTextInput {
13391383 public static function getName() {
13401384 return 'year';
@@ -1371,6 +1415,9 @@
13721416 }
13731417 }
13741418
 1419+/**
 1420+ * @ingroup SFFormInput
 1421+ */
13751422 class SFCategoryInput extends SFFormInput {
13761423 public static function getName() {
13771424 return 'category';
@@ -1459,6 +1506,9 @@
14601507 }
14611508 }
14621509
 1510+/**
 1511+ * @ingroup SFFormInput
 1512+ */
14631513 class SFCategoriesInput extends SFCategoryInput {
14641514 public static function getName() {
14651515 return 'categories';
Index: trunk/extensions/SemanticForms/includes/SF_FormField.php
@@ -1,9 +1,16 @@
22 <?php
3 -/*
 3+/**
 4+ *
 5+ * @file
 6+ * @ingroup SF
 7+ */
 8+
 9+/**
410 * This class is distinct from SFTemplateField in that it represents a
511 * template field defined in a form - it contains a SFTemplateField object
612 * within it (the $template_field variable), along with the other properties
713 * for that field that are set within the form
 14+ * @ingroup SF
815 */
916 class SFFormField {
1017 var $num;
Index: trunk/extensions/SemanticForms/includes/SF_FormPrinter.php
@@ -7,6 +7,8 @@
88 * @author Jeffrey Stuckman
99 * @author Harold Solbrig
1010 * @author Daniel Hansch
 11+ * @file
 12+ * @ingroup SF
1113 */
1214
1315 class SFFormPrinter {
Index: trunk/extensions/SemanticForms/includes/SF_FormLinker.php
@@ -6,6 +6,8 @@
77 * MediaWiki data store.
88 *
99 * @author Yaron Koren
 10+ * @file
 11+ * @ingroup SF
1012 */
1113
1214 if ( !defined( 'MEDIAWIKI' ) ) die();
Index: trunk/extensions/SemanticForms/includes/SF_TemplateField.php
@@ -5,6 +5,8 @@
66 * templates and displaying user-created forms
77 *
88 * @author Yaron Koren
 9+ * @file
 10+ * @ingroup SF
911 */
1012
1113 class SFTemplateField {
Index: trunk/extensions/SemanticForms/includes/SF_AutoEditAjaxHandler.php
@@ -1,10 +1,16 @@
22 <?php
 3+/**
 4+ *
 5+ * @file
 6+ * @ingroup SF
 7+ */
38
49 /**
510 * Ajax handler for the autoedit parser function and for the
611 * submit and continue button in forms
712 *
813 * @author Stephan Gambke
 14+ * @ingroup SF
915 */
1016 class SFAutoEditAjaxHandler {
1117
Index: trunk/extensions/SemanticForms/includes/SF_FormClasses.php
@@ -4,8 +4,14 @@
55 * form and a template contained within that form, respectively.
66 *
77 * @author Yaron Koren
 8+ * @file
 9+ * @ingroup SF
810 */
911
 12+/**
 13+ * Represents a user-defined form.
 14+ * @ingroup SF
 15+ */
1016 class SFForm {
1117 var $form_name;
1218 var $templates;
@@ -65,6 +71,10 @@
6672
6773 }
6874
 75+/**
 76+ * Represents a template in a user-defined form.
 77+ * @ingroup SF
 78+ */
6979 class SFTemplateInForm {
7080 var $template_name;
7181 var $label;
Index: trunk/extensions/SemanticForms/includes/SF_FormUtils.php
@@ -6,6 +6,8 @@
77 * @author Jeffrey Stuckman
88 * @author Harold Solbrig
99 * @author Eugene Mednikov
 10+ * @file
 11+ * @ingroup SF
1012 */
1113
1214 class SFFormUtils {
Index: trunk/extensions/SemanticForms/includes/SF_ParserFunctions.php
@@ -2,6 +2,8 @@
33 /**
44 * Parser functions for Semantic Forms.
55 *
 6+ * @file
 7+ * @ingroup SF
68 * Four parser functions are defined: 'forminput', 'formlink', 'arraymap'
79 * and 'arraymaptemplate'.
810 *
Index: trunk/extensions/SemanticForms/includes/SF_GlobalFunctions.php
@@ -3,6 +3,8 @@
44 * Global functions for Semantic Forms.
55 *
66 * @author Yaron Koren
 7+ * @file
 8+ * @ingroup SF
79 */
810
911 if ( !defined( 'MEDIAWIKI' ) ) die();
Index: trunk/extensions/SemanticForms/includes/SF_AutocompleteAPI.php
@@ -1,9 +1,13 @@
22 <?php
 3+/**
 4+ * @file
 5+ * @ingroup SF
 6+ */
37
48 /**
59 * Adds and handles the 'sfautocomplete' action to the MediaWiki API.
610 *
7 - * @ingroup API
 11+ * @ingroup SF
812 *
913 * @author Sergey Chernyshev
1014 * @author Yaron Koren
Index: trunk/extensions/SemanticForms/includes/SF_CreatePageJob.php
@@ -1,9 +1,15 @@
22 <?php
 3+/**
 4+ *
 5+ * @file
 6+ * @ingroup SF
 7+ */
38
49 /**
510 * Background job to create a new page, for use by the 'CreateClass' special page
611 *
712 * @author Yaron Koren
 13+ * @ingroup SF
814 */
915 class SFCreatePageJob extends Job {
1016
Index: trunk/extensions/SemanticForms/includes/SF_FormEditTab.php
@@ -1,9 +1,15 @@
22 <?php
 3+/**
 4+ *
 5+ * @file
 6+ * @ingroup SF
 7+ */
38
49 /**
510 * Utility class for 'edit with form' tab and page
611 *
712 * @author Yaron Koren
 13+ * @ingroup SF
814 */
915 class SFFormEditTab {
1016
Index: trunk/extensions/SemanticForms/includes/SF_Settings.php
@@ -3,6 +3,9 @@
44 /**
55 * This file exists here for backward compatibility with installations of
66 * Semantic Forms before version 2.0.
 7+ *
 8+ * @file
 9+ * @ingroup SF
710 */
811
912 require_once dirname( __FILE__ ) . '/../SemanticForms.php';
Index: trunk/extensions/SemanticForms/includes/SF_Utils.php
@@ -3,6 +3,8 @@
44 * Helper functions for the Semantic Forms extension.
55 *
66 * @author Yaron Koren
 7+ * @file
 8+ * @ingroup SF
79 */
810
911 if ( !defined( 'MEDIAWIKI' ) ) die();
Index: trunk/extensions/SemanticForms/languages/SF_LanguageZh_cn.php
@@ -1,8 +1,13 @@
22 <?php
33 /**
44 * @author: Yaron Koren 翻译:张致信 本档系以电子字典译自繁体版,请自行修订(Translation: Roc Michael Email:roc.no1@gmail.com. This file is translated from Tradition Chinese by using electronic dictionary. Please correct the file by yourself.)
 5+ * @file
 6+ * @ingroup SF
57 */
68
 9+/**
 10+ * @ingroup SFLanguage
 11+ */
712 class SF_LanguageZh_cn extends SF_Language {
813
914 /* private */ var $m_SpecialProperties = array(
Index: trunk/extensions/SemanticForms/languages/SF_LanguageAr.php
@@ -1,8 +1,13 @@
22 <?php
33 /**
44 * @author Meno25
 5+ * @file
 6+ * @ingroup SF
57 */
68
 9+/**
 10+ * @ingroup SFLanguage
 11+ */
712 class SF_LanguageAr extends SF_Language {
813
914 /* private */ var $m_SpecialProperties = array(
Index: trunk/extensions/SemanticForms/languages/SF_LanguageEn.php
@@ -1,8 +1,13 @@
22 <?php
33 /**
44 * @author Yaron Koren
 5+ * @file
 6+ * @ingroup SF
57 */
68
 9+/**
 10+ * @ingroup SFLanguage
 11+ */
712 class SF_LanguageEn extends SF_Language {
813
914 /* private */ var $m_SpecialProperties = array(
Index: trunk/extensions/SemanticForms/languages/SF_Messages.php
@@ -4,6 +4,7 @@
55 *
66 * @file
77 * @ingroup Extensions
 8+ * @ingroup SF
89 */
910
1011 // FIXME: Can be enabled when new style magic words are used (introduced in r52503)
Index: trunk/extensions/SemanticForms/languages/SF_LanguagePt_br.php
@@ -1,8 +1,13 @@
22 <?php
33 /**
44 * @author Leonardo Costa
 5+ * @file
 6+ * @ingroup SF
57 */
68
 9+/**
 10+ * @ingroup SFLanguage
 11+ */
712 class SF_LanguagePt_br extends SF_Language {
813
914 /* private */ var $m_SpecialProperties = array(
Index: trunk/extensions/SemanticForms/languages/SF_LanguageEs.php
@@ -1,8 +1,13 @@
22 <?php
33 /**
44 * @author Yaron Koren
 5+ * @file
 6+ * @ingroup SF
57 */
68
 9+/**
 10+ * @ingroup SFLanguage
 11+ */
712 class SF_LanguageEs extends SF_Language {
813
914 /* private */ var $m_SpecialProperties = array(
Index: trunk/extensions/SemanticForms/languages/SF_LanguageFr.php
@@ -1,8 +1,13 @@
22 <?php
33 /**
44 * @author Yaron Koren
 5+ * @file
 6+ * @ingroup SF
57 */
68
 9+/**
 10+ * @ingroup SFLanguage
 11+ */
712 class SF_LanguageFr extends SF_Language {
813
914 /* private */ var $m_SpecialProperties = array(
Index: trunk/extensions/SemanticForms/languages/SF_LanguageNl.php
@@ -1,10 +1,13 @@
22 <?php
33 /**
4 - * @ingroup Language
5 - * @ingroup SFLanguage
64 * @author Siebrand Mazeland
 5+ * @file
 6+ * @ingroup SF
77 */
88
 9+/**
 10+ * @ingroup SFLanguage
 11+ */
912 class SF_LanguageNl extends SF_Language {
1013 /* private */ var $m_SpecialProperties = array(
1114 // always start upper-case
Index: trunk/extensions/SemanticForms/languages/SF_Magic.php
@@ -1,4 +1,8 @@
22 <?php
 3+/**
 4+ * @file
 5+ * @ingroup SF
 6+ */
37
48 $magicWords = array();
59
Index: trunk/extensions/SemanticForms/languages/SF_LanguageIt.php
@@ -1,8 +1,13 @@
22 <?php
33 /**
44 * @author Melos
 5+ * @file
 6+ * @ingroup SF
57 */
68
 9+/**
 10+ * @ingroup SFLanguage
 11+ */
712 class SF_LanguageIt extends SF_Language {
813
914 /* private */ var $m_SpecialProperties = array(
Index: trunk/extensions/SemanticForms/languages/SF_LanguageNo.php
@@ -1,8 +1,13 @@
22 <?php
33 /**
44 * @author Jon Harald Søby
 5+ * @file
 6+ * @ingroup SF
57 */
68
 9+/**
 10+ * @ingroup SFLanguage
 11+ */
712 class SF_LanguageNo extends SF_Language {
813
914 /* private */ var $m_SpecialProperties = array(
Index: trunk/extensions/SemanticForms/languages/SF_Aliases.php
@@ -4,6 +4,7 @@
55 *
66 * @file
77 * @ingroup Extensions
 8+ * @ingroup SF
89 */
910
1011 $specialPageAliases = array();
Index: trunk/extensions/SemanticForms/languages/SF_Language.php
@@ -1,11 +1,14 @@
22 <?php
33 /**
44 * @author Yaron Koren
 5+ * @file
 6+ * @ingroup SF
57 */
68
79 /**
810 * Base class for all language classes - a truncated version of Semantic
911 * MediaWiki's 'SMW_Language' class
 12+ * @ingroup SFLanguage
1013 */
1114 abstract class SF_Language {
1215
Index: trunk/extensions/SemanticForms/languages/SF_LanguageCa.php
@@ -1,8 +1,13 @@
22 <?php
33 /**
44 * @author Yaron Koren
 5+ * @file
 6+ * @ingroup SF
57 */
68
 9+/**
 10+ * @ingroup SFLanguage
 11+ */
712 class SF_LanguageCa extends SF_Language {
813
914 /* private */ var $m_SpecialProperties = array(
Index: trunk/extensions/SemanticForms/languages/SF_LanguageFa.php
@@ -1,8 +1,13 @@
22 <?php
33 /**
44 * @author Yaron Koren (Translation:Ghassem Tofighi Email:[MyFamily]@gmail.com, HomePage:http://ght.ir)
 5+ * @file
 6+ * @ingroup SF
57 */
68
 9+/**
 10+ * @ingroup SFLanguage
 11+ */
712 class SF_LanguageFa extends SF_Language {
813
914 /* private */ var $m_SpecialProperties = array(
Index: trunk/extensions/SemanticForms/languages/SF_LanguageDe_formal.php
@@ -1,8 +1,13 @@
22 <?php
33 /**
44 * @author Dominik Rodler
 5+ * @file
 6+ * @ingroup SF
57 */
68
 9+/**
 10+ * @ingroup SFLanguage
 11+ */
712 class SF_LanguageDe_formal extends SF_Language {
813
914 /* private */ var $m_SpecialProperties = array(
Index: trunk/extensions/SemanticForms/languages/SF_LanguageDe.php
@@ -1,8 +1,13 @@
22 <?php
33 /**
44 * @author Dominik Rodler
 5+ * @file
 6+ * @ingroup SF
57 */
68
 9+/**
 10+ * @ingroup SFLanguage
 11+ */
712 class SF_LanguageDe extends SF_Language {
813
914 /* private */ var $m_SpecialProperties = array(
Index: trunk/extensions/SemanticForms/languages/SF_LanguageZh_tw.php
@@ -1,8 +1,13 @@
22 <?php
33 /**
44 * @author Yaron Koren 翻譯:張致信(Translation: Roc Michael Email:roc.no1@gmail.com)
 5+ * @file
 6+ * @ingroup SF
57 */
68
 9+/**
 10+ * @ingroup SFLanguage
 11+ */
712 class SF_LanguageZh_tw extends SF_Language {
813
914 /* private */ var $m_SpecialProperties = array(
Index: trunk/extensions/SemanticForms/languages/SF_LanguageHe.php
@@ -1,8 +1,13 @@
22 <?php
33 /**
44 * @author Yaron Koren
 5+ * @file
 6+ * @ingroup SF
57 */
68
 9+/**
 10+ * @ingroup SFLanguage
 11+ */
712 class SF_LanguageHe extends SF_Language {
813
914 /* private */ var $m_SpecialProperties = array(
Index: trunk/extensions/SemanticForms/languages/SF_LanguageArz.php
@@ -1,8 +1,13 @@
22 <?php
33 /**
44 * @author Meno25
 5+ * @file
 6+ * @ingroup SF
57 */
68
 9+/**
 10+ * @ingroup SFLanguage
 11+ */
712 class SF_LanguageArz extends SF_Language {
813
914 /* private */ var $m_SpecialProperties = array(

Follow-up revisions

RevisionCommit summaryAuthorDate
r88938Follow-up to r85767 - simplified documentation headersyaron22:03, 26 May 2011