r105623 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r105622‎ | r105623 | r105624 >
Date:00:00, 9 December 2011
Author:jeroendedauw
Status:ok
Tags:
Comment:
Modified paths:
  • /trunk/extensions/SemanticMediaWiki/RELEASE-NOTES (modified) (history)
  • /trunk/extensions/SemanticMediaWiki/SemanticMediaWiki.php (modified) (history)
  • /trunk/extensions/SemanticMediaWiki/includes/storage/SMW_SQLStore2_Queries.php (modified) (history)

Diff [purge]

Index: trunk/extensions/SemanticMediaWiki/RELEASE-NOTES
@@ -13,7 +13,7 @@
1414 configuration called $smwgSparqlDefaultGraph
1515 * Use of native MediaWiki sortable tables for the table formats.
1616 * Added value distribution functionality that can be used by result formats.
17 -* Added validation and manipulation of the format paremeter using Validator.
 17+* Added validation and manipulation of the format parameter using Validator.
1818 * Added 'class' parameter to the 'table' format, which allows setting the CSS
1919 class.
2020 * Added automatically-generated CSS classes for rows and cells in 'table' format.
@@ -36,8 +36,9 @@
3737 * Fixed some issues with the category result format (including bug 30761).
3838 * Fixed email validation issue (bug 32295).
3939 * Fixed incorrect handling of sort and order parameters on Special:Ask (bug 32706).
40 -* Fixed display of images to old behaviour after a recent regression.
 40+* Fixed display of images to old behavior after a recent regression.
4141 * Fixed several more issues not listed here.
 42+* Fixed fatal error in the concept cache maintenance script (bug 32592).
4243
4344 == SMW 1.6.1 ==
4445
Index: trunk/extensions/SemanticMediaWiki/includes/storage/SMW_SQLStore2_Queries.php
@@ -101,7 +101,7 @@
102102 return $this->m_errors;
103103 }
104104
105 - $values = $this->m_store->getPropertyValues( $concept, new SMWDIProperty( '_CONC' ) );// two lines due to "strict standards" warning
 105+ $values = $this->m_store->getPropertyValues( SMWDIWikiPage::newFromTitle( $concept ), new SMWDIProperty( '_CONC' ) );// two lines due to "strict standards" warning
106106 $di = end( $values );
107107 $desctxt = ( $di !== false ) ? $di->getConceptQuery() : false;
108108 $this->m_errors = array();
Index: trunk/extensions/SemanticMediaWiki/SemanticMediaWiki.php
@@ -34,7 +34,7 @@
3535 }
3636
3737 // The SMW version number.
38 -define( 'SMW_VERSION', '1.7 beta 1' );
 38+define( 'SMW_VERSION', '1.7 beta 2' );
3939
4040 // Registration of the extension credits, see Special:Version.
4141 $wgExtensionCredits['semantic'][] = array(

Follow-up revisions

RevisionCommit summaryAuthorDate
r108966fixed typo that was causing Bug 32592mkroetzsch11:26, 15 January 2012

Status & tagging log