Difference between revisions of "OWL Wiki Forms v0.2 installation"
Jump to navigation
Jump to search
(v0.2.1 →Install instructions) |
(config-OWL.ttl →Install instructions) |
||
Line 14: | Line 14: | ||
# Copy the directory from http://is.cs.ou.nl/OWF/files/OWLwikiForms_v0.2.1.zip into your wiki's extensions directory. | # Copy the directory from http://is.cs.ou.nl/OWF/files/OWLwikiForms_v0.2.1.zip into your wiki's extensions directory. | ||
# Add to your wiki's LocalSettings.php file the following lines:<br/><code>require_once("$IP/extensions/OWLwikiForms/OWLwikiForms.php" );</code><br/><code>$wgRawHtml = true;</code><br/><code>$owfgSparqlQueryEndpoint = 'http://localhost:3030/OWF/sparql';</code><br/><code>$owfgSparqlUpdateEndpoint = 'http://localhost:3030/OWF/update';</code> | # Add to your wiki's LocalSettings.php file the following lines:<br/><code>require_once("$IP/extensions/OWLwikiForms/OWLwikiForms.php" );</code><br/><code>$wgRawHtml = true;</code><br/><code>$owfgSparqlQueryEndpoint = 'http://localhost:3030/OWF/sparql';</code><br/><code>$owfgSparqlUpdateEndpoint = 'http://localhost:3030/OWF/update';</code> | ||
+ | # If you're using [http://jena.apache.org/documentation/serving_data/index.html Jena/Fuseki], then copy the file config-OWL.ttl from the download directory to your Fuseki directory and use or adapt it as your Fuseki configuration file | ||
# Replace the query and update endpoint URIs with those of the endpoint you installed for use by OWF | # Replace the query and update endpoint URIs with those of the endpoint you installed for use by OWF | ||
# Go to the page "Special:OWLwikiForms" on your wiki and try it out | # Go to the page "Special:OWLwikiForms" on your wiki and try it out |
Revision as of 17:04, 30 December 2013
Install instructions
- Download and install the prerequisites:
- MediaWiki
- Semantic MediaWiki
- Semantic Forms
- ParserFunctions
- Character Escapes
- access to a SPARQL endpoint server matching these requirements
- supports SPARQL 1.1 that your OWF installation can CLEAR and LOAD to it
- performs RDFS and OWL reasoning. Note that 4store does not support the required reasoning.
- OWF is developed and tested with Jena/Fuseki,
- Download and install the OWL Wiki Forms extension
- Copy the directory from http://is.cs.ou.nl/OWF/files/OWLwikiForms_v0.2.1.zip into your wiki's extensions directory.
- Add to your wiki's LocalSettings.php file the following lines:
require_once("$IP/extensions/OWLwikiForms/OWLwikiForms.php" );
$wgRawHtml = true;
$owfgSparqlQueryEndpoint = 'http://localhost:3030/OWF/sparql';
$owfgSparqlUpdateEndpoint = 'http://localhost:3030/OWF/update';
- If you're using Jena/Fuseki, then copy the file config-OWL.ttl from the download directory to your Fuseki directory and use or adapt it as your Fuseki configuration file
- Replace the query and update endpoint URIs with those of the endpoint you installed for use by OWF
- Go to the page "Special:OWLwikiForms" on your wiki and try it out