|
Last change
on this file was
385,
checked in by lgiessmann, 15 years ago
|
|
tm-sparql: added an xtm file that contains all special uris defined by the networkedplanet tmsparql proposal as topic with corresponding PSIs; added a funtion that allos to initialise the tmsparql module, ie. the tmsparql xtm is imported
|
|
File size:
1014 bytes
|
| Line | |
|---|
| 1 | ;;+----------------------------------------------------------------------------- |
|---|
| 2 | ;;+ Isidorus |
|---|
| 3 | ;;+ (c) 2008-2010 Marc Kuester, Christoph Ludwig, Lukas Georgieff |
|---|
| 4 | ;;+ |
|---|
| 5 | ;;+ Isidorus is freely distributable under the LLGPL license. |
|---|
| 6 | ;;+ You can find a detailed description in trunk/docs/LLGPL-LICENSE.txt and |
|---|
| 7 | ;;+ trunk/docs/LGPL-LICENSE.txt. |
|---|
| 8 | ;;+----------------------------------------------------------------------------- |
|---|
| 9 | |
|---|
| 10 | (defpackage :TM-SPARQL-Constants |
|---|
| 11 | (:use :cl :base-tools) |
|---|
| 12 | (:nicknames tms) |
|---|
| 13 | (:export :*tms* |
|---|
| 14 | :*tms-reifier* |
|---|
| 15 | :*tms-role* |
|---|
| 16 | :*tms-player* |
|---|
| 17 | :*tms-topicProperty* |
|---|
| 18 | :*tms-scope* |
|---|
| 19 | :*tms-value*)) |
|---|
| 20 | |
|---|
| 21 | (in-package :TM-SPARQL-Constants) |
|---|
| 22 | |
|---|
| 23 | (defvar *tms* "http://www.networkedplanet.com/tmsparql/") |
|---|
| 24 | |
|---|
| 25 | (defvar *tms-reifier* (concat *tms* "reifier")) |
|---|
| 26 | |
|---|
| 27 | (defvar *tms-role* (concat *tms* "role")) |
|---|
| 28 | |
|---|
| 29 | (defvar *tms-player* (concat *tms* "player")) |
|---|
| 30 | |
|---|
| 31 | (defvar *tms-topicProperty* (concat *tms* "topicProperty")) |
|---|
| 32 | |
|---|
| 33 | (defvar *tms-scope* (concat *tms* "scope")) |
|---|
| 34 | |
|---|
| 35 | (defvar *tms-value* (concat *tms* "value")) |
|---|
Note: See
TracBrowser
for help on using the repository browser.