Index: trunk/extensions/SemanticResultFormats/README |
— | — | @@ -112,6 +112,11 @@ |
113 | 113 | nested HTML list. ultree is an alias of tree. oltree produces an ordered |
114 | 114 | (numbered) list instead of an unordered list. |
115 | 115 | |
| 116 | +=== filtered === |
| 117 | + |
| 118 | +Displays results in switchable views and offers client-side (JavaScript based) |
| 119 | +filtering. (unfinished, e.g. no switching between views yet) |
| 120 | + |
116 | 121 | == Contact == |
117 | 122 | |
118 | 123 | If you have remarks, questions, or suggestions, please send them to |
Index: trunk/extensions/SemanticResultFormats/SRF_Settings.php |
— | — | @@ -57,6 +57,7 @@ |
58 | 58 | } |
59 | 59 | |
60 | 60 | # load hash format only if HashTables extension is initialised, otherwise 'Array' format is enough |
| 61 | +// FIXME: According to the INSTALL file only formats should be enabled, that "do not require further software to be installed (besides SMW)" |
61 | 62 | if( array_key_exists( 'ExtHashTables', $wgAutoloadClasses ) && defined( 'ExtHashTables::VERSION' ) |
62 | 63 | && version_compare( ExtHashTables::VERSION, '0.999', '>=' ) |
63 | 64 | || isset( $wgHashTables ) // Version < 1.0 alpha |
Index: trunk/extensions/SemanticResultFormats/INSTALL |
— | — | @@ -34,8 +34,13 @@ |
35 | 35 | |
36 | 36 | Currently, these default formats thus are: |
37 | 37 | 'vcard', 'icalendar', 'calendar', 'timeline', 'eventline', 'bibtex', 'outline', |
38 | | -'gallery', 'jqplotbar', 'jqplotpie', 'sum', 'average', 'min', 'max', 'tagcloud'. |
| 38 | +'gallery', 'jqplotbar', 'jqplotpie', 'sum', 'average', 'min', 'max', 'tagcloud', |
| 39 | +'median', 'product', 'valuerank', 'array', 'tree', 'ultree', 'oltree', |
| 40 | +'D3Line'¹, 'D3Bar'¹, 'D3Treemap'¹, 'filtered'¹, 'hash'². |
39 | 41 | |
| 42 | +¹ from MediaWiki 1.17 onwards |
| 43 | +² with HashTables extension installed |
| 44 | + |
40 | 45 | To add more formats to this list, you can add lines like: |
41 | 46 | |
42 | 47 | $srfgFormats[] = 'googlebar'; |
Index: trunk/extensions/SemanticResultFormats/RELEASE-NOTES |
— | — | @@ -13,8 +13,9 @@ |
14 | 14 | * Added 'default' parameter to math formats (bug 34983). |
15 | 15 | |
16 | 16 | New formats in this version are: |
17 | | -* JitGraph, still in alpha, disabled by default (written by Alex Shapovalov) (bug 32877) |
| 17 | +* JitGraph (still in alpha, disabled by default (written by Alex Shapovalov) (bug 32877)) |
18 | 18 | * tree, ultree, oltree |
| 19 | +* filtered (unfinished) |
19 | 20 | |
20 | 21 | == SRF 1.7 == |
21 | 22 | |