Index: trunk/extensions/SemanticMediaWiki/RELEASE-NOTES |
— | — | @@ -3,6 +3,11 @@ |
4 | 4 | |
5 | 5 | == SMW 1.7 == |
6 | 6 | |
| 7 | +THIS IS NOT A RELEASE YET |
| 8 | + |
| 9 | +Semantic MediaWiki 1.7 is currently in beta-quality and is not recommended for use in |
| 10 | +production untill the actual release. |
| 11 | + |
7 | 12 | * Added native "internal objects" that can be set using #setobject. |
8 | 13 | * Added support for selecting a default graph when using RDF stores, |
9 | 14 | configuration called $smwgSparqlDefaultGraph |
Index: trunk/extensions/SemanticMediaWiki/includes/SMW_Setup.php |
— | — | @@ -7,12 +7,6 @@ |
8 | 8 | * @ingroup SMW |
9 | 9 | */ |
10 | 10 | |
11 | | -// The SMW version number. |
12 | | -define( 'SMW_VERSION', '1.7 alpha' ); |
13 | | - |
14 | | -// A flag used to indicate SMW defines a semantic extension type for extension crdits. |
15 | | -define( 'SEMANTIC_EXTENSION_TYPE', true ); |
16 | | - |
17 | 11 | require_once( 'SMW_GlobalFunctions.php' ); |
18 | 12 | |
19 | 13 | /** |
Index: trunk/extensions/SemanticMediaWiki/SemanticMediaWiki.php |
— | — | @@ -19,7 +19,7 @@ |
20 | 20 | die( 'Not an entry point.' ); |
21 | 21 | } |
22 | 22 | |
23 | | -if ( version_compare( $wgVersion, '1.16', '<' ) ) { |
| 23 | +if ( version_compare( $wgVersion, '1.16c', '<' ) ) { |
24 | 24 | die( '<b>Error:</b> This version of Semantic MediaWiki requires MediaWiki 1.16 or above; use SMW 1.6.x for MediaWiki 1.15.x.' ); |
25 | 25 | } |
26 | 26 | |
— | — | @@ -33,7 +33,8 @@ |
34 | 34 | die( '<b>Error:</b> You need to have <a href="http://www.mediawiki.org/wiki/Extension:Validator">Validator</a> installed in order to use <a href="http://www.semantic-mediawiki.org">Semantic MediaWiki</a>.<br />' ); |
35 | 35 | } |
36 | 36 | |
37 | | -require_once dirname( __FILE__ ) . '/SMW_Settings.php'; |
| 37 | +// The SMW version number. |
| 38 | +define( 'SMW_VERSION', '1.7 beta 1' ); |
38 | 39 | |
39 | 40 | // Registration of the extension credits, see Special:Version. |
40 | 41 | $wgExtensionCredits['semantic'][] = array( |
— | — | @@ -45,5 +46,10 @@ |
46 | 47 | 'descriptionmsg' => 'smw-desc' |
47 | 48 | ); |
48 | 49 | |
| 50 | +// A flag used to indicate SMW defines a semantic extension type for extension crdits. |
| 51 | +define( 'SEMANTIC_EXTENSION_TYPE', true ); |
| 52 | + |
49 | 53 | // A flag used to indicate SMW supports Validator style parameter definitions and validation in the SMWResultPrinter class. |
50 | 54 | define( 'SMW_SUPPORTS_VALIDATOR', true ); |
| 55 | + |
| 56 | +require_once dirname( __FILE__ ) . '/SMW_Settings.php'; |