[isidorus-cvs] r92 - in trunk/src: . ajax/javascripts xml xml/rdf xml/xtm

Lukas Giessmann lgiessmann at common-lisp.net
Wed Jul 15 13:05:09 UTC 2009


Author: lgiessmann
Date: Wed Jul 15 09:05:08 2009
New Revision: 92

Log:
rdf-module: restructured the xml-module -> the entire xml-module is separated into an xtm-module which contains all files that have already existed. currently there exists an rdf-module which will contain all necessary files for importing/exporting rdf-data

Added:
   trunk/src/xml/rdf/
   trunk/src/xml/rdf/exporter.lisp
   trunk/src/xml/rdf/importer.lisp
   trunk/src/xml/xtm/
   trunk/src/xml/xtm/core_psis.xtm   (props changed)
      - copied unchanged from r26, /trunk/src/xml/core_psis.xtm
   trunk/src/xml/xtm/exporter.lisp   (props changed)
      - copied unchanged from r90, /trunk/src/xml/exporter.lisp
   trunk/src/xml/xtm/exporter_xtm1.0.lisp   (props changed)
      - copied unchanged from r90, /trunk/src/xml/exporter_xtm1.0.lisp
   trunk/src/xml/xtm/exporter_xtm2.0.lisp   (props changed)
      - copied unchanged from r90, /trunk/src/xml/exporter_xtm2.0.lisp
   trunk/src/xml/xtm/importer.lisp   (props changed)
      - copied unchanged from r90, /trunk/src/xml/importer.lisp
   trunk/src/xml/xtm/importer_xtm1.0.lisp   (props changed)
      - copied unchanged from r90, /trunk/src/xml/importer_xtm1.0.lisp
   trunk/src/xml/xtm/importer_xtm2.0.lisp   (props changed)
      - copied unchanged from r90, /trunk/src/xml/importer_xtm2.0.lisp
   trunk/src/xml/xtm/setup.lisp   (props changed)
      - copied unchanged from r90, /trunk/src/xml/setup.lisp
   trunk/src/xml/xtm/tools.lisp   (props changed)
      - copied unchanged from r26, /trunk/src/xml/tools.lisp
Removed:
   trunk/src/xml/core_psis.xtm
   trunk/src/xml/exporter.lisp
   trunk/src/xml/exporter_xtm1.0.lisp
   trunk/src/xml/exporter_xtm2.0.lisp
   trunk/src/xml/importer.lisp
   trunk/src/xml/importer_xtm1.0.lisp
   trunk/src/xml/importer_xtm2.0.lisp
   trunk/src/xml/setup.lisp
   trunk/src/xml/tools.lisp
Modified:
   trunk/src/ajax/javascripts/datamodel.js
   trunk/src/isidorus.asd
   trunk/src/xml-constants.lisp

Modified: trunk/src/ajax/javascripts/datamodel.js
==============================================================================
--- trunk/src/ajax/javascripts/datamodel.js	(original)
+++ trunk/src/ajax/javascripts/datamodel.js	Wed Jul 15 09:05:08 2009
@@ -1506,13 +1506,6 @@
 					  this.__scope__.disable();
 					  this.__value__.__frames__[0].disable();
 					  this.__variants__.disable();
-/*
-					  disableItemIdentity(this);
-					  disableType(this);
-					  disableScope(this);
-					  disableValue(this);
-					  disableVariants(this);
-					  this.getFrame().setStyle(DISABLED_BACKGROUND_COLOR);*/
 					  this.getFrame().writeAttribute({"class" : CLASSES.disabled()});
 					  this.getFrame().writeAttribute({"title" : this.__cssTitle__});
 					  this.hideAddButton();
@@ -1524,12 +1517,6 @@
 					  this.__scope__.enable();
 					  this.__value__.__frames__[0].enable();
 					  this.__variants__.enable();
-/*
-					  enableItemIdentity(this);
-					  enableType(this);
-					  enableScope(this);
-					  enableValue(this);
-					  enableVariants(this);*/
 					  this.getFrame().writeAttribute({"class" : CLASSES.nameFrame()});
 					  this.getFrame().removeAttribute("title");
 					  checkRemoveAddButtons(this.__owner__, 1, this.__max__, this);

Modified: trunk/src/isidorus.asd
==============================================================================
--- trunk/src/isidorus.asd	(original)
+++ trunk/src/isidorus.asd	Wed Jul 15 09:05:08 2009
@@ -19,9 +19,9 @@
   :licence "LGPL"
   :components (
 	       (:file "constants")
-               (:static-file "xml/core_psis.xtm")
+               (:static-file "xml/xtm/core_psis.xtm")
 	       (:file "xml-constants" 
-                      :depends-on ("xml/core_psis.xtm"
+                      :depends-on ("xml/xtm/core_psis.xtm"
                                    "constants"))
 	       (:module "model"
 			:components ((:file "exceptions")
@@ -33,22 +33,26 @@
                                             :depends-on ("exceptions")))
 			:depends-on ("constants"))
 	       (:module "xml"
-			:components ((:file "tools")
-				     (:file "importer"
-					    :depends-on ("tools"))
-                                     (:file "importer_xtm2.0"
-                                            :depends-on ("importer"))
-                                     (:file "importer_xtm1.0"
-                                            :depends-on ("importer"))
-                                     (:file "setup"
-                                            :depends-on ("importer_xtm2.0"
-                                                         "importer_xtm1.0"))
-				     (:file "exporter_xtm1.0")
-				     (:file "exporter_xtm2.0"
-                                            :depends-on ("exporter_xtm1.0"))
-				     (:file "exporter"
-					    :depends-on ("exporter_xtm1.0"
-							 "exporter_xtm2.0")))
+			:components ((:module "xtm"
+					      :components ((:file "tools")
+							   (:file "importer"
+								  :depends-on ("tools"))
+							   (:file "importer_xtm2.0"
+								  :depends-on ("importer"))
+							   (:file "importer_xtm1.0"
+								  :depends-on ("importer"))
+							   (:file "setup"
+								  :depends-on ("importer_xtm2.0"
+									       "importer_xtm1.0"))
+							   (:file "exporter_xtm1.0")
+							   (:file "exporter_xtm2.0"
+								  :depends-on ("exporter_xtm1.0"))
+							   (:file "exporter"
+								  :depends-on ("exporter_xtm1.0"
+									       "exporter_xtm2.0"))))
+				     (:module "rdf"
+					      :components ((:file "importer")
+							   (:file "exporter"))))
 			:depends-on ("constants"
                                      "xml-constants"
 				     "model"

Modified: trunk/src/xml-constants.lisp
==============================================================================
--- trunk/src/xml-constants.lisp	(original)
+++ trunk/src/xml-constants.lisp	Wed Jul 15 09:05:08 2009
@@ -22,5 +22,5 @@
 
 (defparameter *core_psis.xtm*
   (asdf:component-pathname
-   (asdf:find-component *isidorus-system* "xml/core_psis.xtm")))
+   (asdf:find-component *isidorus-system* "xml/xtm/core_psis.xtm")))
 

Added: trunk/src/xml/rdf/exporter.lisp
==============================================================================
--- (empty file)
+++ trunk/src/xml/rdf/exporter.lisp	Wed Jul 15 09:05:08 2009
@@ -0,0 +1,7 @@
+;;+-----------------------------------------------------------------------------
+;;+  Isidorus
+;;+  (c) 2008-2009 Marc Kuester, Christoph Ludwig, Lukas Giessmann
+;;+
+;;+  Isidorus is freely distributable under the LGPL license.
+;;+  You can find a detailed description in trunk/docs/LGPL-LICENSE.txt.
+;;+-----------------------------------------------------------------------------
\ No newline at end of file

Added: trunk/src/xml/rdf/importer.lisp
==============================================================================
--- (empty file)
+++ trunk/src/xml/rdf/importer.lisp	Wed Jul 15 09:05:08 2009
@@ -0,0 +1,7 @@
+;;+-----------------------------------------------------------------------------
+;;+  Isidorus
+;;+  (c) 2008-2009 Marc Kuester, Christoph Ludwig, Lukas Giessmann
+;;+
+;;+  Isidorus is freely distributable under the LGPL license.
+;;+  You can find a detailed description in trunk/docs/LGPL-LICENSE.txt.
+;;+-----------------------------------------------------------------------------
\ No newline at end of file




More information about the Isidorus-cvs mailing list