forked from AKSW/imagehelper.ontowiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoap.n3
72 lines (64 loc) · 2.51 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
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
@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 foaf: <http://xmlns.com/foaf/0.1/> .
@prefix event: <http://ns.ontowiki.net/SysOnt/Events/> .
@prefix : <https://raw.github.com/AKSW/imagehelper.ontowiki/master/doap.n3#> .
<> foaf:primaryTopic :imagehelper .
:imagehelper a doap:Project ;
doap:name "imagehelper" ;
rdfs:label "Image Helper Extension" ;
doap:homepage <https://github.com/AKSW/imagehelper.ontowiki>;
doap:description "Rewrites a given value of a resource to an image URL and displays this image in a module" ;
doap:maintainer <http://aksw.org/NatanaelArndt> ;
:license "http://opensource.org/licenses/gpl-license.php GNU General Public License (GPL)" ;
owconfig:privateNamespace : ;
owconfig:enabled "true"^^xsd:boolean ;
owconfig:templates "templates/" ;
owconfig:languages "languages/" ;
owconfig:hasModule :ImageHelper ;
owconfig:registeredAt <http://extensions.ontowiki.net/repository> ;
doap:release :v1 .
:v1 a doap:Version ;
doap:revision "1.0" ;
doap:created "2014-01-29" ;
owconfig:minOWVersion "0.9.10" ;
doap:file-release <https://github.com/AKSW/imagehelper.ontowiki/zipball/v1.0> .
<http://aksw.org/NatanaelArndt> a foaf:Person;
foaf:name "Natanael Arndt" ;
foaf:homepage <http://aksw.org/NatanaelArndt>;
foaf:mbox <mailto:[email protected]> .
:ImageHelper a owconfig:Module ;
rdfs:label "Image Helper" ;
owconfig:priority "10" ;
rdfs:label "Image Helper" ;
owconfig:context (
"main.window.properties"
) .
:imagehelper owconfig:config [
a owconfig:Config;
owconfig:id "properties";
owconfig:config [
a owconfig:Config;
owconfig:id "EISSN";
:property <http://vocab.ub.uni-leipzig.de/bibrm/eissn> ;
:pattern "/^urn:ISSN:([-0-9xX]+)$/i" ;
:replacement <http://www.worldcat.org/xissn/titlehistory/cgi-bin/webdot/xissn/titlehistory/dot/issns/$1.dot.dot.png>
] ;
owconfig:config [
a owconfig:Config;
owconfig:id "PISSN";
:property <http://vocab.ub.uni-leipzig.de/bibrm/pissn> ;
:pattern "/^urn:ISSN:([-0-9xX]+)$/i" ;
:replacement <http://www.worldcat.org/xissn/titlehistory/cgi-bin/webdot/xissn/titlehistory/dot/issns/$1.dot.dot.png>
]
];
:dontShowController (
"model"
"application"
"error"
"debug"
"module"
"index"
) .