~ubuntu-branches/ubuntu/quantal/kde-runtime/quantal

« back to all changes in this revision

Viewing changes to nepomuk/ontologies/kext.trig

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2012-06-03 21:50:00 UTC
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: package-import@ubuntu.com-20120603215000-vn7oarsq0ynrydj5
Tags: upstream-4.8.80
Import upstream version 4.8.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# Copyright (c) 2010-2011 Sebastian Trueg <trueg@kde.org>
3
 
# All rights reserved, licensed under either CC-BY or BSD.
4
 
#
5
 
# You are free:
6
 
#  * to Share - to copy, distribute and transmit the work
7
 
#  * to Remix - to adapt the work
8
 
# Under the following conditions:
9
 
#  * Attribution - You must attribute the work in the manner specified by the author
10
 
#    or licensor (but not in any way that suggests that they endorse you or your use
11
 
#    of the work).
12
 
#
13
 
# Redistribution and use in source and binary forms, with or without modification,
14
 
# are permitted provided that the following conditions are met:
15
 
#  * Redistributions of source code must retain the above copyright notice, this
16
 
#    list of conditions and the following disclaimer.
17
 
#  * Redistributions in binary form must reproduce the above copyright notice, this
18
 
#    list of conditions and the following disclaimer in the documentation and/or
19
 
#    other materials provided with the distribution.
20
 
#  * Neither the names of the authors nor the names of contributors may
21
 
#    be used to endorse or promote products derived from this ontology without
22
 
#    specific prior written permission.
23
 
#
24
 
# THIS ONTOLOGY IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
25
 
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26
 
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27
 
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
28
 
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29
 
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30
 
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31
 
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32
 
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33
 
# THIS ONTOLOGY, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
 
#
35
 
 
36
 
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
37
 
@prefix nao:     <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#> .
38
 
@prefix nrl:     <http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#> .
39
 
@prefix nie:     <http://www.semanticdesktop.org/ontologies/2007/01/19/nie#> .
40
 
@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .
41
 
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
42
 
@prefix kext:    <http://nepomuk.kde.org/ontologies/2010/11/29/kext#> .
43
 
@prefix nfo:     <http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#> .
44
 
 
45
 
kext: {
46
 
    kext:unixFileMode
47
 
          a      rdf:Property ;
48
 
          rdfs:label "Unix file mode" ;
49
 
          rdfs:comment "The file mode value as seen on unix file systems." ;
50
 
          rdfs:domain nfo:FileDataObject ;
51
 
          rdfs:range xsd:integer ;
52
 
          nrl:maxCardinality 1 ;
53
 
          nao:userVisible false .
54
 
 
55
 
    kext:unixFileOwner
56
 
          a      rdf:Property ;
57
 
          rdfs:label "Unix file owner" ;
58
 
          rdfs:comment "The owner of the file as seen on unix file systems. This is intended as the low-level counterpart to nfo:owner." ;
59
 
          rdfs:domain nfo:FileDataObject ;
60
 
          rdfs:range xsd:string ;
61
 
          nrl:maxCardinality 1 ;
62
 
          nao:userVisible false .
63
 
 
64
 
    kext:unixFileGroup
65
 
          a      rdf:Property ;
66
 
          rdfs:label "Unix file group" ;
67
 
          rdfs:comment "The group of the file as seen on unix file systems." ;
68
 
          rdfs:domain nfo:FileDataObject ;
69
 
          rdfs:range xsd:string ;
70
 
          nrl:maxCardinality 1 ;
71
 
          nao:userVisible false .
72
 
 
73
 
    kext:Activity
74
 
          a rdfs:Class ;
75
 
          rdfs:subClassOf rdfs:Resource ;
76
 
          rdfs:label "activity" ;
77
 
          rdfs:comment "A Plasma activity." .
78
 
 
79
 
    kext:usedActivity
80
 
          a rdf:Property ;
81
 
          rdfs:label "used activity" ;
82
 
          rdfs:comment "The activity that was active when resource was created. This is mostly used for graphs or desktop events." ;
83
 
          rdfs:domain rdfs:Resource ;
84
 
          rdfs:range kext:Activity ;
85
 
          nrl:maxCardinality 1 ;
86
 
          nao:userVisible false .
87
 
 
88
 
    kext:activityIdentifier
89
 
          a rdf:Property ;
90
 
          rdfs:subPropertyOf nao:identifier ;
91
 
          rdfs:label "activity identifier" ;
92
 
          rdfs:comment "The unique ID of the activity as used outside of Nepomuk. Typically this is a UUID." ;
93
 
          rdfs:domain kext:Activity ;
94
 
          rdfs:range xsd:string ;
95
 
          nrl:cardinality 1 ;
96
 
          nao:userVisible false .
97
 
 
98
 
    kext:ResourceScoreCache
99
 
          a rdfs:Class ;
100
 
          rdfs:subClassOf rdfs:Resource ;
101
 
          rdfs:label "Resource score cache" ;
102
 
          rdfs:comment "For storing the automatically calculated score based on the usage statistics" ;
103
 
          nao:userVisible false .
104
 
 
105
 
    kext:targettedResource
106
 
          a rdf:Property ;
107
 
          rdfs:comment "Resource for which the score is calculated." ;
108
 
          rdfs:domain kext:ResourceScoreCache ;
109
 
          rdfs:label "resource" ;
110
 
          rdfs:range rdfs:Resource .
111
 
 
112
 
    kext:initiatingAgent
113
 
          a rdf:Property ;
114
 
          rdfs:comment "Relates the score to the agent initiating the events." ;
115
 
          rdfs:domain kext:ResourceScoreCache ;
116
 
          rdfs:label "involved agent" ;
117
 
          rdfs:range nao:Agent .
118
 
 
119
 
    kext:cachedScore
120
 
          a rdf:Property ;
121
 
          rdfs:subPropertyOf nao:score ;
122
 
          rdfs:comment "The automatically calculated score" ;
123
 
          rdfs:domain kext:ResourceScoreCache ;
124
 
          rdfs:label "calculated score" ;
125
 
          rdfs:range xsd:float .
126
 
}
127
 
 
128
 
<http://nepomuk.kde.org/ontologies/2010/11/29/kext/metadata> {
129
 
    <http://nepomuk.kde.org/ontologies/2010/11/29/kext/metadata>
130
 
          a       nrl:GraphMetadata ;
131
 
          nrl:coreGraphMetadataFor kext: .
132
 
 
133
 
 
134
 
    kext:
135
 
          a       nrl:Ontology , nrl:DocumentGraph ;
136
 
          nao:prefLabel "KDE Extensions Ontology" ;
137
 
          nao:hasDefaultNamespace "http://nepomuk.kde.org/ontologies/2010/11/29/kext#" ;
138
 
          nao:hasDefaultNamespaceAbbreviation "kext" ;
139
 
          nao:lastModified "2011-06-15T18:09:43Z" ;
140
 
          nao:serializationLanguage "TriG" ;
141
 
          nao:status "Unstable" ;
142
 
          nrl:updatable "0" ;
143
 
          nao:version "2" .
144
 
}
145