r93506 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r93505‎ | r93506 | r93507 >
Date:01:20, 30 July 2011
Author:jeroendedauw
Status:deferred
Tags:
Comment:
0.1 release :)
Modified paths:
  • /trunk/extensions/SemanticWatchlist/RELEASE-NOTES (modified) (history)
  • /trunk/extensions/SemanticWatchlist/SemanticWatchlist.php (modified) (history)
  • /trunk/extensions/SemanticWatchlist/specials/SpecialSemanticWatchlist.php (modified) (history)

Diff [purge]

Index: trunk/extensions/SemanticWatchlist/specials/SpecialSemanticWatchlist.php
@@ -244,7 +244,7 @@
245245
246246 $changeSetsHTML = array();
247247
248 - foreach ( $sets as $set ) {
 248+ foreach ( $sets as /* SWLChangeSet */ $set ) {
249249 $dayKey = substr( $set->getEdit()->getTime(), 0, 8 ); // Get the YYYYMMDD part.
250250
251251 if ( !array_key_exists( $dayKey, $changeSetsHTML ) ) {
Index: trunk/extensions/SemanticWatchlist/RELEASE-NOTES
@@ -5,7 +5,7 @@
66
77
88 === Version 0.1 ===
9 -2011-07-3x
 9+2011-07-30
1010
1111 Initial release with these features:
1212
Index: trunk/extensions/SemanticWatchlist/SemanticWatchlist.php
@@ -37,7 +37,7 @@
3838 die( '<b>Error:</b> Semantic Watchlist requires Semantic MediaWiki 1.6 or above.' );
3939 }
4040
41 -define( 'SemanticWatchlist_VERSION', '0.1 RC1' );
 41+define( 'SemanticWatchlist_VERSION', '0.1' );
4242
4343 $wgExtensionCredits[defined( 'SEMANTIC_EXTENSION_TYPE' ) ? 'semantic' : 'other'][] = array(
4444 'path' => __FILE__,