~ubuntu-branches/ubuntu/natty/kdebase-runtime/natty-proposed

« back to all changes in this revision

Viewing changes to nepomuk/ontologies/kuvo.trig

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-11-24 11:07:10 UTC
  • mto: (0.8.7 upstream)
  • mto: This revision was merged to the branch mainline in revision 129.
  • Revision ID: james.westby@ubuntu.com-20101124110710-6dbsyw0yh21qvn82
Tags: upstream-4.5.80
ImportĀ upstreamĀ versionĀ 4.5.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Copyright (c) 2010 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 xsd:     <http://www.w3.org/2001/XMLSchema#> .
 
40
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
 
41
@prefix kuvo:    <http://nepomuk.kde.org/ontologies/2010/08/18/kuvo#> .
 
42
@prefix nuao:    <http://www.semanticdesktop.org/ontologies/2010/01/25/nuao#> .
 
43
 
 
44
kuvo: {
 
45
    # Setting a baseline calms down the algorithm that creates all the entries.
 
46
    rdfs:Resource
 
47
        nao:userVisible true .
 
48
 
 
49
    nuao:Event
 
50
        nao:userVisible false .
 
51
 
 
52
    nao:score
 
53
        nao:userVisible false .
 
54
 
 
55
    nrl:Graph
 
56
        nao:userVisible false .
 
57
 
 
58
    rdf:Property
 
59
        nao:userVisible false .
 
60
 
 
61
    rdfs:Class
 
62
        nao:userVisible false .
 
63
}
 
64
 
 
65
<http://nepomuk.kde.org/ontologies/2010/08/18/kuvo/metadata> {
 
66
    <http://nepomuk.kde.org/ontologies/2010/08/18/kuvo/metadata>
 
67
          a       nrl:GraphMetadata ;
 
68
          nrl:coreGraphMetadataFor kuvo: .
 
69
 
 
70
 
 
71
    kuvo:
 
72
          a       nrl:Ontology , nrl:DocumentGraph ;
 
73
          nao:hasDefaultNamespace "http://nepomuk.kde.org/ontologies/2010/08/18/kuvo#" ;
 
74
          nao:hasDefaultNamespaceAbbreviation "kuvo" ;
 
75
          nao:lastModified "2010-08-18T12:31:43Z" ;
 
76
          nao:serializationLanguage "TriG" ;
 
77
          nao:status "Unstable" ;
 
78
          nrl:updatable "0" ;
 
79
          nao:version "1" .
 
80
}
 
81