r112990 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r112989‎ | r112990 | r112991 >
Date:23:51, 4 March 2012
Author:jeroendedauw
Status:deferred
Tags:
Comment:
1.7.1
Modified paths:
  • /trunk/extensions/SemanticMediaWiki/INSTALL (modified) (history)
  • /trunk/extensions/SemanticMediaWiki/RELEASE-NOTES (modified) (history)
  • /trunk/extensions/SemanticMediaWiki/SemanticMediaWiki.php (modified) (history)

Diff [purge]

Index: trunk/extensions/SemanticMediaWiki/INSTALL
@@ -1,4 +1,4 @@
2 -[[Semantic MediaWiki 1.6]]
 2+[[Semantic MediaWiki 1.7.1]]
33
44 Install instructions for the latest SMW version are also online in a more
55 convenient format for reading:
Index: trunk/extensions/SemanticMediaWiki/RELEASE-NOTES
@@ -3,18 +3,15 @@
44
55 == SMW 1.7.1 ==
66
7 -THIS IS NOT A RELEASE YET
 7+Released on March 5, 2012.
88
9 -Semantic MediaWiki 1.7.1 is currently in beta-quality and is not recommended for use in
10 -production until the actual release.
11 -
12 -* Added "Last editor is" and "Is a new page" special properties (bug 34359).
139 * Added basic support for OpenLink Virtuoso RDF database. In addition to
1410 $smwgDefaultStore = 'SMWSparqlStore', users should set
1511 $smwgSparqlDatabase = 'SMWSparqlDatabaseVirtuoso' and use Virtuoso's SPARQL
1612 endpoint at ./sparql/ for query and update alike. for further remarks and known
1713 limitations, see the file ./includes/sparql/SMW_SparqlDatabaseVirtuoso.php .
1814 * Added ability to sort dates as dates in tables generated by SMW (bug 25768).
 15+* Added "Last editor is" and "Is a new page" special properties (bug 34359).
1916 * When there are only invalid query conditions, query answering is stopped (bug 33177).
2017 * Fixed display of nearby values on Special:SearchByProperty (bug 34178).
2118 * Fixed display of URL values (bug 34312, 34044).
Index: trunk/extensions/SemanticMediaWiki/SemanticMediaWiki.php
@@ -34,7 +34,7 @@
3535 }
3636
3737 // The SMW version number.
38 -define( 'SMW_VERSION', '1.7.1 beta 1' );
 38+define( 'SMW_VERSION', '1.7.1' );
3939
4040 // Registration of the extension credits, see Special:Version.
4141 $wgExtensionCredits['semantic'][] = array(
@@ -50,6 +50,7 @@
5151 define( 'SEMANTIC_EXTENSION_TYPE', true );
5252
5353 // A flag used to indicate SMW supports Validator style parameter definitions and validation in the SMWResultPrinter class.
 54+// @deprecated, removal in 1.9
5455 define( 'SMW_SUPPORTS_VALIDATOR', true );
5556
5657 require_once dirname( __FILE__ ) . '/SMW_Settings.php';