-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxmlrdf.ttl
41 lines (33 loc) · 1.44 KB
/
xmlrdf.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix cpack: <http://cliopatria.swi-prolog.org/schema/cpack#> .
# This file is a Turtle-format RDF file that describes the package. It
# *must* be located in rdf/cpack/xmlrdf.ttl
#
# Author is a FOAF Person. If you have a FOAF profile, you can link to
# this. Otherwise you can specify the information inline as done below.
# See http://xmlns.com/foaf/spec/ for defines fields.
<> a cpack:Library ;
cpack:packageName "xmlrdf" ;
dcterms:title "XML to RDF conversion" ;
cpack:home <http://semanticweb.cs.vu.nl/xmlrdf/> ;
cpack:author [ a foaf:Person ;
foaf:name "Jan Wielemaker" ;
foaf:mbox "[email protected]" ;
] ;
cpack:primaryRepository
[ a cpack:GitRepository ;
cpack:gitURL <git://eculture.cs.vu.nl/home/janw/git/ClioPatria/xmlrdf.git>
] ;
cpack:description
"""The XML to RDF convertor allows for importing XML as RDF using two steps:
1. A generic translation from XML to RDF. This generally needs no
configuration but it allows for a few parameters:
- Define the primary record element
- Define the target namespace
- Define elements that must be kept as XMLLiteral
2. Preform a rewrite on the generated graph using a Prolog based
rewrite language.
""" .