source: branches/new-datamodel/src/xml-constants.lisp

Last change on this file was 101, checked in by lgiessmann, 15 years ago

added some functions to write the actual tm constructs into elephant; added a minimal core_psis.xtm to initialize the rdf-module

  • Property svn:eol-style set to native
File size: 934 bytes
Line 
1;;+-----------------------------------------------------------------------------
2;;+  Isidorus
3;;+  (c) 2008-2009 Marc Kuester, Christoph Ludwig, Lukas Giessmann
4;;+
5;;+  Isidorus is freely distributable under the LGPL license.
6;;+  You can find a detailed description in trunk/docs/LGPL-LICENSE.txt.
7;;+-----------------------------------------------------------------------------
8
9
10(defpackage :xml-constants
11  (:use :common-lisp
12        :asdf)
13  (:import-from :constants
14                *isidorus-system*)
15  (:export :*xml-component*
16           :*core_psis.xtm*
17           :*rdf_core_psis.xtm*))
18
19(in-package :xml-constants)
20
21(defparameter *xml-component*
22  (asdf:find-component *isidorus-system* "xml"))
23
24(defparameter *core_psis.xtm*
25  (asdf:component-pathname
26   (asdf:find-component *isidorus-system* "xml/xtm/core_psis.xtm")))
27
28(defparameter *rdf_core_psis.xtm*
29  (asdf:component-pathname
30   (asdf:find-component *isidorus-system* "xml/rdf/rdf_core_psis.xtm")))
Note: See TracBrowser for help on using the repository browser.