-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdoap.n3
34 lines (32 loc) · 1.2 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
@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 : <http://ns.ontowiki.net/Extensions/page/> .
<> foaf:primaryTopic :this .
:this a doap:Project ;
doap:name "page" ;
owconfig:privateNamespace <http://ns.ontowiki.net/Extensions/page/> ;
owconfig:templates "." ;
owconfig:enabled "true"^^xsd:boolean ;
rdfs:label "Pages" ;
doap:description "redirect controller actions to template calls. a minimal filesystem-based CMS. see the 'site' extension for a more sophisticated variant" ;
owconfig:authorLabel "AKSW" ;
doap:maintainer <http://aksw.org> ;
owconfig:config [
a owconfig:Config;
owconfig:id "titles";
:example "Example Page";
:welcome "Welcome"
] ;
owconfig:config [
a owconfig:Config;
owconfig:id "directories";
:pageBase "extensions/page/page/"
] ;
doap:release :v1-0 .
:v1-0 a doap:Version ;
doap:revision "1.0" .