Last change
on this file was
977,
checked in by lgiessmann, 13 years ago
|
trunk: merged branches/gdl-frontend with trunk; fixed all conflicts
|
File size:
1.3 KB
|
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 :jtm-exporter |
---|
11 | (:use :cl :json :datamodel :base-tools :isidorus-threading |
---|
12 | :constants :exceptions :jtm) |
---|
13 | (:export :export-as-jtm |
---|
14 | :export-as-jtm-string |
---|
15 | :export-construct-as-jtm-string |
---|
16 | :item_type-topicmap |
---|
17 | :item_type-topic |
---|
18 | :item_type-name |
---|
19 | :item_type-variant |
---|
20 | :item_type-occurrence |
---|
21 | :item_type-association |
---|
22 | :item_type-role)) |
---|
23 | |
---|
24 | |
---|
25 | (defpackage :jtm-importer |
---|
26 | (:use :cl :json :datamodel :base-tools :isidorus-threading |
---|
27 | :constants :exceptions :jtm) |
---|
28 | (:export :import-from-jtm |
---|
29 | :import-construct-from-jtm-string |
---|
30 | :import-construct-from-jtm-decoded-list |
---|
31 | :item_type-topicmap |
---|
32 | :item_type-topic |
---|
33 | :item_type-name |
---|
34 | :item_type-variant |
---|
35 | :item_type-occurrence |
---|
36 | :item_type-association |
---|
37 | :item_type-role)) |
---|
38 | |
---|
39 | |
---|
40 | (defpackage :jtm-delete-interface |
---|
41 | (:use :cl :json :datamodel :base-tools :isidorus-threading |
---|
42 | :constants :exceptions :jtm) |
---|
43 | (:export :mark-as-deleted-from-jtm)) |
---|
Note: See
TracBrowser
for help on using the repository browser.