Index: trunk/extensions/SemanticResultFormats/SemanticResultFormats.php |
— | — | @@ -20,7 +20,7 @@ |
21 | 21 | die( 'Not an entry point.' ); |
22 | 22 | } |
23 | 23 | |
24 | | -define( 'SRF_VERSION', '1.6 rc1' ); |
| 24 | +define( 'SRF_VERSION', '1.6' ); |
25 | 25 | |
26 | 26 | // Require the settings file. |
27 | 27 | require dirname( __FILE__ ) . '/SRF_Settings.php'; |
Index: trunk/extensions/SemanticResultFormats/RELEASE-NOTES |
— | — | @@ -4,9 +4,10 @@ |
5 | 5 | |
6 | 6 | == SRF 1.6 == |
7 | 7 | |
| 8 | +Released on July 30, 2011. |
| 9 | + |
8 | 10 | Changes in this version: |
9 | 11 | * Added compatibility with SMW 1.6. |
10 | | -* Added product and median formats. |
11 | 12 | * Rewrote math formats for efficiency, correct recursion and handling of multiple numerical properties. |
12 | 13 | * Cleaned up the graph format. |
13 | 14 | * Fixed division by zero issue (oh shii~) in the tagcloud format. |
— | — | @@ -16,6 +17,10 @@ |
17 | 18 | * Fixed double HTML escaping issue in the tagcloud format. |
18 | 19 | * Added fileextensions parameter to the Gallery format and added missing parameter description messages. |
19 | 20 | |
| 21 | +New formats in this version are: |
| 22 | +* product (written by Jeroen De Dauw) |
| 23 | +* median (written by Jeroen De Dauw) |
| 24 | + |
20 | 25 | == SRF 1.5.3 == |
21 | 26 | |
22 | 27 | Released on February 9, 2011. |
Index: trunk/extensions/SemanticResultFormats/INSTALL |
— | — | @@ -22,7 +22,7 @@ |
23 | 23 | |
24 | 24 | Currently, these default formats thus are: |
25 | 25 | 'vcard', 'icalendar', 'calendar', 'timeline', 'eventline', 'bibtex', 'outline', |
26 | | -'jqplotbar', 'jqplotpie', 'sum', 'average', 'min', 'max'. |
| 26 | +'gallery', 'jqplotbar', 'jqplotpie', 'sum', 'average', 'min', 'max', 'tagcloud'. |
27 | 27 | |
28 | 28 | To add more formats to this list, you can add lines like: |
29 | 29 | |
— | — | @@ -30,7 +30,7 @@ |
31 | 31 | |
32 | 32 | ... or you can override the set of formats entirely, with a call like: |
33 | 33 | |
34 | | - $srfgFormats = array('calendar', 'timeline'); |
| 34 | + $srfgFormats = array( 'calendar', 'timeline' ); |
35 | 35 | |
36 | 36 | There are some formats that you may not want to include because they may |
37 | 37 | not follow certain policies within your wiki; the formats 'googlebar' and |