r109012 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r109011‎ | r109012 | r109013 >
Date:23:16, 15 January 2012
Author:jeroendedauw
Status:deferred (Comments)
Tags:
Comment:
bump version nr and update script path assignment now 1.15 support has been dropped
Modified paths:
  • /trunk/extensions/SemanticMediaWiki/RELEASE-NOTES (modified) (history)
  • /trunk/extensions/SemanticMediaWiki/SMW_Settings.php (modified) (history)
  • /trunk/extensions/SemanticMediaWiki/SemanticMediaWiki.php (modified) (history)

Diff [purge]

Index: trunk/extensions/SemanticMediaWiki/RELEASE-NOTES
@@ -1,6 +1,15 @@
22 For a documentation of all features, see http://semantic-mediawiki.org
33
44
 5+== SMW 1.7.1 ==
 6+
 7+THIS IS NOT A RELEASE YET
 8+
 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+*
 13+
514 == SMW 1.7.0.2 ==
615
716 Released on January 16, 2012.
Index: trunk/extensions/SemanticMediaWiki/SMW_Settings.php
@@ -23,10 +23,7 @@
2424 # web. Change it if required ($wgScriptPath is the path to the base directory
2525 # of your wiki). No final slash.
2626 ##
27 -$smwgScriptPath = (
28 - ( version_compare( $wgVersion, '1.16', '>=' ) && isset( $wgExtensionAssetsPath ) && $wgExtensionAssetsPath )
29 - ? $wgExtensionAssetsPath : $wgScriptPath . '/extensions'
30 - ) . '/SemanticMediaWiki';
 27+$smwgScriptPath = ( $wgExtensionAssetsPath === false ? $wgScriptPath . '/extensions' : $wgExtensionAssetsPath ) . '/SemanticMediaWiki';
3128 ##
3229
3330 ###
Index: trunk/extensions/SemanticMediaWiki/SemanticMediaWiki.php
@@ -34,7 +34,7 @@
3535 }
3636
3737 // The SMW version number.
38 -define( 'SMW_VERSION', '1.7.0.2' );
 38+define( 'SMW_VERSION', '1.7.1 alpha3' );
3939
4040 // Registration of the extension credits, see Special:Version.
4141 $wgExtensionCredits['semantic'][] = array(

Comments

#Comment by Nikerabbit (talk | contribs)   08:48, 16 January 2012

Why would wgExtensionAssetsPath ever be false?

Status & tagging log