forked from AKSW/site.ontowiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoap.n3
46 lines (37 loc) · 1.78 KB
/
doap.n3
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
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owconfig: <http://ns.ontowiki.net/SysOnt/ExtensionConfig/> .
@prefix extension: <http://ns.ontowiki.net/Extensions/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix event: <http://ns.ontowiki.net/SysOnt/Events/> .
@prefix : <https://github.com/AKSW/site.ontowiki/raw/master/doap.n3#> .
<> foaf:primaryTopic :site .
:site a doap:Project ;
owconfig:privateNamespace <http://ns.ontowiki.net/Extensions/ontowiki/> ;
owconfig:enabled "true"^^xsd:boolean ;
rdfs:label "Site Rendering" ;
doap:name "site" ;
doap:homepage <https://github.com/AKSW/site.ontowiki>;
doap:description "A component which renders custom HTML views for linked data resource and thus creates rdf-based web sites." ;
doap:maintainer <http://aksw.org/SebastianTramp>;
owconfig:registeredAt <http://extensions.ontowiki.net/repository> ;
owconfig:templates "sites" ;
owconfig:helpers "helpers" ;
owconfig:helperEvent event:onPostBootstrap ;
owconfig:helperEvent event:onShouldLinkedDataRedirect ;
owconfig:helperEvent event:onBuildUrl ;
owconfig:helperEvent event:onIsDispatchable ;
owconfig:helperEvent event:onCreateMenu ;
owconfig:requiresExtension extension:linkeddataserver;
:defaultSite "generic" ;
doap:release :v1-0 .
:v1-0 a doap:Version ;
doap:revision "1.0" ;
doap:created "2011-01-01" ;
doap:file-release <https://github.com/AKSW/site.ontowiki/zipball/master> .
:defaultSite rdfs:label "The site identifier which is used for the site rendering".
<http://aksw.org/SebastianTramp> a foaf:Person;
foaf:name "Sebastian Tramp";
foaf:homepage <http://aksw.org/SebastianTramp>;
foaf:mbox <mailto:[email protected]> .