forked from AKSW/page.ontowiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doap.n3
29 lines (27 loc) · 1.1 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
@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> ;
:languageSupport "true"^^xsd:boolean ;
owconfig:config [
a owconfig:Config;
owconfig:id "titles";
:example "Example Page"
] ;
doap:release :v1-0 .
:v1-0 a doap:Version ;
doap:revision "1.0" .