r93504 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r93503‎ | r93504 | r93505 >
Date:01:17, 30 July 2011
Author:jeroendedauw
Status:deferred
Tags:
Comment:
1.6 release
Modified paths:
  • /trunk/extensions/SemanticResultFormats/INSTALL (modified) (history)
  • /trunk/extensions/SemanticResultFormats/RELEASE-NOTES (modified) (history)
  • /trunk/extensions/SemanticResultFormats/SemanticResultFormats.php (modified) (history)

Diff [purge]

Index: trunk/extensions/SemanticResultFormats/SemanticResultFormats.php
@@ -20,7 +20,7 @@
2121 die( 'Not an entry point.' );
2222 }
2323
24 -define( 'SRF_VERSION', '1.6 rc1' );
 24+define( 'SRF_VERSION', '1.6' );
2525
2626 // Require the settings file.
2727 require dirname( __FILE__ ) . '/SRF_Settings.php';
Index: trunk/extensions/SemanticResultFormats/RELEASE-NOTES
@@ -4,9 +4,10 @@
55
66 == SRF 1.6 ==
77
 8+Released on July 30, 2011.
 9+
810 Changes in this version:
911 * Added compatibility with SMW 1.6.
10 -* Added product and median formats.
1112 * Rewrote math formats for efficiency, correct recursion and handling of multiple numerical properties.
1213 * Cleaned up the graph format.
1314 * Fixed division by zero issue (oh shii~) in the tagcloud format.
@@ -16,6 +17,10 @@
1718 * Fixed double HTML escaping issue in the tagcloud format.
1819 * Added fileextensions parameter to the Gallery format and added missing parameter description messages.
1920
 21+New formats in this version are:
 22+* product (written by Jeroen De Dauw)
 23+* median (written by Jeroen De Dauw)
 24+
2025 == SRF 1.5.3 ==
2126
2227 Released on February 9, 2011.
Index: trunk/extensions/SemanticResultFormats/INSTALL
@@ -22,7 +22,7 @@
2323
2424 Currently, these default formats thus are:
2525 'vcard', 'icalendar', 'calendar', 'timeline', 'eventline', 'bibtex', 'outline',
26 -'jqplotbar', 'jqplotpie', 'sum', 'average', 'min', 'max'.
 26+'gallery', 'jqplotbar', 'jqplotpie', 'sum', 'average', 'min', 'max', 'tagcloud'.
2727
2828 To add more formats to this list, you can add lines like:
2929
@@ -30,7 +30,7 @@
3131
3232 ... or you can override the set of formats entirely, with a call like:
3333
34 - $srfgFormats = array('calendar', 'timeline');
 34+ $srfgFormats = array( 'calendar', 'timeline' );
3535
3636 There are some formats that you may not want to include because they may
3737 not follow certain policies within your wiki; the formats 'googlebar' and