-
Notifications
You must be signed in to change notification settings - Fork 2
/
ont-policy.rdf
80 lines (66 loc) · 3.02 KB
/
ont-policy.rdf
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?xml version='1.0'?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE rdf:RDF [
<!ENTITY jena 'http://jena.hpl.hp.com/schemas/'>
<!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'>
<!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'>
<!ENTITY xsd 'http://www.w3.org/2001/XMLSchema#'>
<!ENTITY base '&jena;2003/03/ont-manager'>
<!ENTITY ont '&base;#'>
]>
<rdf:RDF
xmlns:rdf ="&rdf;"
xmlns:rdfs="&rdfs;"
xmlns ="&ont;"
xml:base ="&base;"
>
<!--
The default set of mappings for locally cached ontologies
Author: Ian Dickinson, mailto:ian_dickinson@users.sourceforge.net
CVS: $Id: ont-policy.rdf,v 1.8 2009-10-06 13:04:42 ian_dickinson Exp $
-->
<DocumentManagerPolicy>
<!-- policy for controlling the document manager's behaviour -->
<processImports rdf:datatype="&xsd;boolean">true</processImports>
<cacheModels rdf:datatype="&xsd;boolean">true</cacheModels>
</DocumentManagerPolicy>
<OntologySpec>
<!-- local version of the OWL language ontology (in OWL) -->
<publicURI rdf:resource="http://www.w3.org/2002/07/owl" />
<!-- uncomment the following line to re-direct attempts to http get the file
<altURL rdf:resource="file:vocabularies/owl.owl" /-->
<language rdf:resource="http://www.w3.org/2002/07/owl" />
<prefix rdf:datatype="&xsd;string">owl</prefix>
</OntologySpec>
<OntologySpec>
<!-- local version of the RDFS vocabulary -->
<publicURI rdf:resource="http://www.w3.org/2000/01/rdf-schema" />
<!-- uncomment the following line to re-direct attempts to http get the file
<altURL rdf:resource="file:vocabularies/rdf-schema.rdf" /-->
<language rdf:resource="http://www.w3.org/2000/01/rdf-schema" />
<prefix rdf:datatype="&xsd;string">rdfs</prefix>
</OntologySpec>
<!-- Removed as a default entry from Jena 2.6 onwards
<OntologySpec>
<!- - local version of the DAML vocabulary - ->
<publicURI rdf:resource="http://www.daml.org/2001/03/daml+oil" />
<!- - uncomment the following line to re-direct attempts to http get the file
<altURL rdf:resource="file:vocabularies/daml+oil.daml" /- ->
<language rdf:resource="http://www.daml.org/2001/03/daml+oil" />
<prefix rdf:datatype="&xsd;string">daml</prefix>
</OntologySpec>
-->
</rdf:RDF>