Index: trunk/extensions/SemanticMediaWiki/INSTALL |
— | — | @@ -1,4 +1,4 @@ |
2 | | -[[Semantic MediaWiki 0.5]] |
| 2 | +[[Semantic MediaWiki 0.6]] |
3 | 3 | |
4 | 4 | Contents: |
5 | 5 | * Disclaimer |
— | — | @@ -130,6 +130,10 @@ |
131 | 131 | to 0.2 before upgrtading further from 0.2 to 0.3. Also, do not forget to backup your |
132 | 132 | database before any upgrade. |
133 | 133 | |
| 134 | +'''Upgrading from 0.5:''' |
| 135 | + |
| 136 | +Please recreate your SMW_LocalSettings.php, since they have changed slightly. |
| 137 | + |
134 | 138 | '''Upgrading from 0.4.x:''' |
135 | 139 | |
136 | 140 | Upgrading does not require any special changes. However, you have to upgrade MediaWiki to 1.7 |
— | — | @@ -194,22 +198,14 @@ |
195 | 199 | Enable template support. The required manual patch is described above. |
196 | 200 | |
197 | 201 | - Problem: After installing SMW, some or all pages are not displayed at all. |
| 202 | +- Problem: In some cases, pages are displayed incompletely, with some parts |
| 203 | + vanishing. |
198 | 204 | |
199 | 205 | This is due to the restrictive memory default settings on some sites, and |
200 | 206 | is not directly caused by SMW (any additional extension code might cause this). |
201 | 207 | Uncomment the line "ini_set( 'memory_limit', '20M' );" in LocalSettings.php |
202 | 208 | and possibly adjust the value to your needs. |
203 | 209 | |
204 | | -- Problem: Semantic search does not work for as expected. |
205 | | - |
206 | | - The current search special "Simple Semantic Search" (Special:SearchTriple) |
207 | | - is mostly intended to let you explore the database, and is not very user- |
208 | | - friendly yet. If you get wrong results it might also be due to upgrades |
209 | | - from earlier versions of Semantic MediaWiki. Such issues can often be fixed by |
210 | | - saving the problematic article again. A robot that does this automatically |
211 | | - might be provided in future versions. Consider writting one for yourself |
212 | | - (and send it to us ;-). |
213 | | - |
214 | 210 | - Problem: I have a problem that is not in this list. |
215 | 211 | |
216 | 212 | General bugs are reported at http://sourceforge.net/projects/semediawiki/ |
— | — | @@ -221,4 +217,4 @@ |
222 | 218 | If you have remarks or questions, please send them to |
223 | 219 | semediawiki-user@lists.sourceforge.net |
224 | 220 | Bugs can easily be reported at |
225 | | - http://sourceforge.net/projects/semediawiki/ |
| 221 | + http://bugzilla.wikimedia.org/ |
Index: trunk/extensions/SemanticMediaWiki/RELEASE-NOTES |
— | — | @@ -1,6 +1,31 @@ |
2 | 2 | For a detailed account of past and current development activities, |
3 | 3 | see http://wiki.ontoworld.org/index.php/Semantic_MediaWiki_development_activities |
4 | 4 | |
| 5 | +== Semantic MediaWiki 0.6 == |
| 6 | + |
| 7 | +* New Special:Ask for directly browsing query results and for testing queries. |
| 8 | +* New output format "timeline" for inline queries that deal with dates. Available |
| 9 | + parameters are: timelinestart (name of start date attribute), timelineend (name |
| 10 | + of end date attribute, if any), tiemlinesize (CSS-encoded height), timelinebands |
| 11 | + (comma-seperated list of bands such as DAY, WEEK, MONTH, YEAR, ...), and |
| 12 | + timelineposition (one of start, end, today, middle). |
| 13 | +* Complete RDF export is now possible with a maintenance script, whic can e.g. be |
| 14 | + run periodically on a server to create RDF files. |
| 15 | +* New "service links" feature: any attribute can provide configurable links to |
| 16 | + online services. As a special case, the map-services of geo-coordinates are now |
| 17 | + fully configurable. |
| 18 | +* Inline queries now link to life search for further results if not all results |
| 19 | + were shown inline. |
| 20 | +* The formatting code for inline queries was rewritten to become more powerful. |
| 21 | + For instance, multi-property outputs in list format will never produce empty |
| 22 | + parentheses now. |
| 23 | +* RDF-export code is cleaner and some further OWL DL incompatibilities are caught. |
| 24 | +* RDF-export now can generate browsable RDF (with backlinks) even for Category |
| 25 | + pages. |
| 26 | +* Improved headers for sorting tables. Sort icon now visible even if no text is |
| 27 | + shown in header. |
| 28 | +* Many bugfixes. |
| 29 | + |
5 | 30 | == Semantic MediaWiki 0.5 == |
6 | 31 | |
7 | 32 | * Customised datatypes for unit conversion: it is now possible to create customised |
Index: trunk/extensions/SemanticMediaWiki/COPYING |
— | — | @@ -1,3 +1,11 @@ |
| 2 | +The license text below "----" applies to all files within this distribution, other |
| 3 | +than those that are in a directory which contains files named "LICENSE" or |
| 4 | +"COPYING", or a subdirectory thereof. For those files, the license text contained in |
| 5 | +said file overrides any license information contained in directories of smaller depth. |
| 6 | +Alternative licenses are typically used for software that is provided by external |
| 7 | +parties, and merely packaged with the Semantic MediaWiki release for convenience. |
| 8 | +---- |
| 9 | + |
2 | 10 | GNU GENERAL PUBLIC LICENSE |
3 | 11 | Version 2, June 1991 |
4 | 12 | |
Index: trunk/extensions/SemanticMediaWiki/README |
— | — | @@ -20,6 +20,11 @@ |
21 | 21 | * The sorttable java script function was developed by Stuart Langridge, |
22 | 22 | and taken from http://www.kryogenix.org/code/browser/sorttable |
23 | 23 | |
| 24 | +* The JavaScript upon which the Timeline format of inline queries is based is |
| 25 | + provided by Simile (http://simile.mit.edu). Note that it is distributed with |
| 26 | + a BSD-style license, and not under the GPL that applies to most parts of |
| 27 | + Semantic MediaWiki. |
| 28 | + |
24 | 29 | * The Jurispedia project (www.jurispedia.org) has initiated and supported |
25 | 30 | some of the translations: |
26 | 31 | |