-
Notifications
You must be signed in to change notification settings - Fork 1
/
doap.n3
52 lines (51 loc) · 2.25 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
@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/fulltextsearch/raw/master/doap.n3#> .
<> foaf:primaryTopic :fulltextsearch .
:fulltextsearch a doap:Project ;
doap:name "fulltextsearch" ;
owconfig:privateNamespace <https://github.com/AKSW/history/raw/master/doap.n3#> ;
owconfig:enabled "true"^^xsd:boolean ;
owconfig:templates "templates" ;
owconfig:languages "languages" ;
rdfs:label "Fulltextsearch" ;
doap:description "An extension that provides elasticsearch-based fulltext-search for OntoWiki" ;
owconfig:authorLabel "AKSW" ;
owconfig:pluginEvent event:onIndexAction ;
owconfig:pluginEvent event:onReindexAction ;
owconfig:pluginEvent event:onDeleteResourceAction ;
owconfig:pluginEvent event:onFullreindexAction ;
doap:maintainer <http://aksw.org> ;
owconfig:config [
a owconfig:Config;
owconfig:id "fulltextsearch";
:hosts "172.18.113.206:9201";
:username "my_username";
:password "my_password";
:index "bibo:periodical";
:fields "http://www.w3.org/2000/01/rdf-schema#label",
"http://vocab.ub.uni-leipzig.de/bibrm/shortBudget",
"http://www.w3.org/2006/vcard/ns#family-name",
"http://vocab.ub.uni-leipzig.de/bibrm/eralttitle",
"http://purl.org/lobid/lv#isil",
"http://xmlns.com/foaf/0.1/name",
"http://vocab.ub.uni-leipzig.de/bibrm/licenseType",
"http://purl.org/dc/elements/1.1/publisher",
"http://purl.org/dc/elements/1.1/title",
"http://purl.org/dc/terms/alternative",
"http://www.w3.org/2006/vcard/ns#hasOrganizationName",
"http://vocab.ub.uni-leipzig.de/bibrm/shortFaculty";
:defaultOperator "AND";
:dropdownField "http://purl.org/dc/elements/1.1/title";
:size "10";
:indexService "172.18.113.206:8080";
:indexServicePath "/erm/index/";
] ;
doap:release :v1-0 .
:v1-0 a doap:Version ;
doap:revision "1.0" .