-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.ttl
92 lines (83 loc) · 4.15 KB
/
config.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
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
81
82
83
84
85
86
87
88
89
90
91
92
# Pubby Configuration for the Data2Semantics AERS dataset
#
# This configuration connects to the Data2Semantics SPARQL endpoint and
# re-publishes on the web (eculture2), with dereferenceable
# eculture2.cs.vu.nl URIs.
#
# Prefix declarations to be used in RDF output
@prefix conf: <http://richard.cyganiak.de/2007/pubby/config.rdf#> .
@prefix meta: <http://example.org/metadata#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix dbpedia: <http://localhost:3030/resource/> .
@prefix p: <http://localhost:3030/property/> .
@prefix yago: <http://localhost:3030/class/yago/> .
@prefix units: <http://dbpedia.org/units/> .
@prefix geonames: <http://www.geonames.org/ontology#> .
@prefix prv: <http://purl.org/net/provenance/ns#> .
@prefix prvTypes: <http://purl.org/net/provenance/types#> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix void: <http://rdfs.org/ns/void#> .
@prefix aers: <http://aers.data2semantics.org/> .
@prefix ir: <http://www.ontologydesignpatterns.org/cp/owl/informationrealization.owl#> .
@prefix d2sa: <http://aers.data2semantics/vocab/annotation/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix frbr: <http://purl.org/vocab/frbr/core#> .
@prefix oa: <http://www.w3.org/ns/openannotation/core/> .
@prefix oax: <http://www.w3.org/ns/openannotation/extensions/> .
@prefix swanrel: <http://purl.org/swan/2.0/discourse-relationships/> .
# Server configuration section
<> a conf:Configuration;
# Project name for display in page titles
conf:projectName "aers.data2semantics.org";
# Homepage with description of the project for the link in the page header
conf:projectHomepage <http://www.data2semantics.org>;
# The Pubby root, where the webapp is running inside the servlet container.
conf:webBase <http://aers.data2semantics.org/>;
# URL of an RDF file whose prefix mapping is to be used by the
# server; defaults to <>, which is *this* file.
# conf:usePrefixesFrom <>;
# If labels and descriptions are available in multiple languages,
# prefer this one.
conf:defaultLanguage "en";
# When the homepage of the server is accessed, this resource will
# be shown.
conf:indexResource <http://aers.data2semantics.org/resource/diagnosis/FEBRILE_NEUTROPENIA>;
# Dataset configuration for AERS resources
#
# URIs in the SPARQL endpoint: http://aers.data2semantics.org/*
# URIs on the Web: http://aers.data2semantics.org/*
conf:dataset [
# SPARQL endpoint URL of the dataset
conf:sparqlEndpoint <http://eculture2.cs.vu.nl:5020/sparql/>;
# Default graph name to query (not necessary for most endpoints)
# conf:sparqlDefaultGraph <http://dbpedia.org>;
# Common URI prefix of all resource URIs in the SPARQL dataset
conf:datasetBase <http://aers.data2semantics.org/>;
# Will be appended to the conf:webBase to form the public
# resource URIs; if not present, defaults to ""
conf:webResourcePrefix "";
# Fixes an issue with the server running behind an Apache proxy;
# can be ignored otherwise
# conf:fixUnescapedCharacters "(),'!$&*+;=@";
# include metadata
conf:metadataTemplate "metadata.ttl";
# configure your metadata here
# Use properties with the meta: prefix where the property name
# corresponds to the placeholder URIs in metadata.ttl that begin
# with about:metadata:metadata:
# Examples for such properties are:
meta:pubbyUser <http://aers.data2semantics.org>;
meta:pubbyOperator <http://www.rinkehoekstra.nl>;
meta:endpointUser <http://eculture2.cs.vu.nl>;
meta:endpointOperator <http://www.rinkehoekstra.nl>;
meta:endpointDataset <http://aers.data2semantics.org>;
];
.