Index: trunk/extensions/SemanticForms/SemanticForms.php |
— | — | @@ -0,0 +1,7 @@ |
| 2 | +<?php |
| 3 | + |
| 4 | +/** |
| 5 | + * Main entry point for the SemanticForms extension. |
| 6 | + */ |
| 7 | + |
| 8 | +require_once dirname( __FILE__ ) . '/includes/SF_Settings.php'; |
\ No newline at end of file |
Property changes on: trunk/extensions/SemanticForms/SemanticForms.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 9 | + native |
Index: trunk/extensions/SemanticForms/includes/SF_GlobalFunctions.php |
— | — | @@ -13,7 +13,7 @@ |
14 | 14 | 'path' => __FILE__, |
15 | 15 | 'name' => 'Semantic Forms', |
16 | 16 | 'version' => SF_VERSION, |
17 | | - 'author' => 'Yaron Koren and others', |
| 17 | + 'author' => '[http://www.mediawiki.org/wiki/User:Yaron_Koren Yaron Koren] and [http://www.ohloh.net/p/semantic-forms/contributors others]', |
18 | 18 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Semantic_Forms', |
19 | 19 | 'descriptionmsg' => 'semanticforms-desc', |
20 | 20 | ); |
Index: trunk/extensions/SemanticForms/includes/SF_Settings.php |
— | — | @@ -1,6 +1,10 @@ |
2 | 2 | <?php |
3 | 3 | /** |
4 | | - * Default settings for Semantic Forms |
| 4 | + * Default settings for Semantic Forms. |
| 5 | + * |
| 6 | + * Note: |
| 7 | + * Do not use this file as entry point, |
| 8 | + * use SemanticForms.php in this extensions root instead. |
5 | 9 | */ |
6 | 10 | if ( !defined( 'MEDIAWIKI' ) ) die(); |
7 | 11 | |