| 1 |
// $Id: README.txt,v 1.1.2.1 2009/02/08 01:51:35 scor Exp $
|
| 2 |
|
| 3 |
RDF external vocabulary importer
|
| 4 |
================================
|
| 5 |
|
| 6 |
The RDF external vocabulary importer (evoc) provides a user interface and an API to fetch external vocabularies and make them available to other modules for mapping Drupal object. This helper module is required by other modules like RDF CCK and Neologism.
|
| 7 |
|
| 8 |
Evoc requires the modules:
|
| 9 |
* RDF - http://drupal.org/project/rdf
|
| 10 |
* SPARQL - http://drupal.org/project/sparql
|
| 11 |
|
| 12 |
To install evoc, place the entire evoc folder into your modules directory.
|
| 13 |
Go to Administer -> Site building -> Modules and enable the evoc module.
|
| 14 |
|
| 15 |
Browse to the form available at evoc/import. Enter the URI of the vocabulary you want to import, and the prefix that you want to use in the system to refer to this vocabulary. Example of prefixes are dc for Dublin Core, foaf for Friend of a Friend etc.
|
| 16 |
|
| 17 |
Upon installation, the following vocabularies are imported:
|
| 18 |
dc : http://purl.org/dc/elements/1.1/
|
| 19 |
foaf : http://xmlns.com/foaf/0.1/
|
| 20 |
sioc : http://rdfs.org/sioc/ns#
|
| 21 |
|
| 22 |
Other common vocabularies include:
|
| 23 |
skos : http://www.w3.org/2008/05/skos#
|
| 24 |
doap : http://usefulinc.com/ns/doap#
|
| 25 |
dcterms : http://purl.org/dc/terms/
|
| 26 |
dcmitype : http://purl.org/dc/dcmitype/
|
| 27 |
|
| 28 |
|
| 29 |
|
| 30 |
AUTHOR/MAINTAINER
|
| 31 |
======================
|
| 32 |
scor (Stéphane Corlosquet) http://drupal.org/user/52142
|