/usr/include/tracker-1.0/libtracker-sparql/tracker-ontologies.h is in libtracker-sparql-1.0-dev 1.6.2-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
* Copyright (C) 2006, Jamie McCracken <jamiemcc@gnome.org>
* Copyright (C) 2008, Nokia <ivan.frade@nokia.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef __LIBTRACKER_SPARQL_ONTOLOGIES_H__
#define __LIBTRACKER_SPARQL_ONTOLOGIES_H__
G_BEGIN_DECLS
#if !defined (__LIBTRACKER_SPARQL_INSIDE__) && !defined (TRACKER_COMPILATION)
#error "only <libtracker-sparql/tracker-sparql.h> must be included directly."
#endif
/* Core: resources, data types */
#define TRACKER_PREFIX_RDF "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
#define TRACKER_PREFIX_RDFS "http://www.w3.org/2000/01/rdf-schema#"
#define TRACKER_PREFIX_XSD "http://www.w3.org/2001/XMLSchema#"
#define TRACKER_PREFIX_TRACKER "http://www.tracker-project.org/ontologies/tracker#"
#define TRACKER_PREFIX_DC "http://purl.org/dc/elements/1.1/"
/* Our Nepomuk selection */
#define TRACKER_PREFIX_NRL "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#"
#define TRACKER_PREFIX_NMO "http://www.semanticdesktop.org/ontologies/2007/03/22/nmo#"
#define TRACKER_PREFIX_NIE "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#"
#define TRACKER_PREFIX_NCO "http://www.semanticdesktop.org/ontologies/2007/03/22/nco#"
#define TRACKER_PREFIX_NAO "http://www.semanticdesktop.org/ontologies/2007/08/15/nao#"
#define TRACKER_PREFIX_NID3 "http://www.semanticdesktop.org/ontologies/2007/05/10/nid3#"
#define TRACKER_PREFIX_NFO "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#"
/* Temporary */
#define TRACKER_PREFIX_SLO "http://www.tracker-project.org/temp/slo#"
#define TRACKER_PREFIX_NMM "http://www.tracker-project.org/temp/nmm#"
#define TRACKER_PREFIX_MLO "http://www.tracker-project.org/temp/mlo#"
#define TRACKER_PREFIX_MFO "http://www.tracker-project.org/temp/mfo#"
/* RDF/SPARQL consistency */
#define TRACKER_PREFIX_DATASOURCE_URN \
"urn:nepomuk:datasource:"
#define TRACKER_DATASOURCE_URN_NON_REMOVABLE_MEDIA \
TRACKER_PREFIX_DATASOURCE_URN "9291a450-1d49-11de-8c30-0800200c9a66"
#define TRACKER_OWN_GRAPH_URN "urn:uuid:472ed0cc-40ff-4e37-9c0c-062d78656540"
G_END_DECLS
#endif /* __LIBTRACKER_SPARQL_ONTOLOGY_H__ */
|