Index: trunk/extensions/SemanticResultFormats/SemanticResultFormats.php |
— | — | @@ -0,0 +1,13 @@ |
| 2 | +<?php |
| 3 | + |
| 4 | +/** |
| 5 | + * Main entry point for the SemanticResultFormats extension. |
| 6 | + */ |
| 7 | + |
| 8 | +/** |
| 9 | + * This documentation group collects source code files belonging to SemanticResultFormats. |
| 10 | + * |
| 11 | + * @defgroup SemanticResultFormats SemanticResultFormats |
| 12 | + */ |
| 13 | + |
| 14 | +require_once dirname( __FILE__ ) . '/SRF_Settings.php'; |
\ No newline at end of file |
Property changes on: trunk/extensions/SemanticResultFormats/SemanticResultFormats.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 15 | + native |
Index: trunk/extensions/SemanticResultFormats/SRF_Settings.php |
— | — | @@ -1,15 +1,19 @@ |
2 | 2 | <?php |
| 3 | + |
3 | 4 | /** |
4 | | - * Initializing file for the Semantic Result Formats extension. |
| 5 | + * Settings file for the Semantic Result Formats extension. |
| 6 | + * |
| 7 | + * NOTE: Do not use this file as entry point, use SemanticresultFormats.php instead. |
5 | 8 | * |
6 | 9 | * @file |
7 | 10 | * @ingroup SemanticResultFormats |
8 | 11 | */ |
| 12 | + |
9 | 13 | if ( !defined( 'MEDIAWIKI' ) ) { |
10 | 14 | die( 'Not an entry point.' ); |
11 | 15 | } |
12 | 16 | |
13 | | -define( 'SRF_VERSION', '1.5.0' ); |
| 17 | +define( 'SRF_VERSION', '1.5.1 alpha' ); |
14 | 18 | |
15 | 19 | $srfgScriptPath = $wgScriptPath . '/extensions/SemanticResultFormats'; // TODO: fix hardcoded path |
16 | 20 | $srfgIP = dirname( __FILE__ ); |