Fix bug where XMLHTTPRequest sent bogus data
[phoros.git] / package.lisp
blobd0d69edff68e38dfc15fa5bec8dea0974cc08dcd
1 ;;; PHOROS -- Photogrammetric Road Survey
2 ;;; Copyright (C) 2010, 2011 Bert Burgemeister
3 ;;;
4 ;;; This program is free software; you can redistribute it and/or modify
5 ;;; it under the terms of the GNU General Public License as published by
6 ;;; the Free Software Foundation; either version 2 of the License, or
7 ;;; (at your option) any later version.
8 ;;;
9 ;;; This program is distributed in the hope that it will be useful,
10 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 ;;; GNU General Public License for more details.
13 ;;;
14 ;;; You should have received a copy of the GNU General Public License along
15 ;;; with this program; if not, write to the Free Software Foundation, Inc.,
16 ;;; 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 (defpackage :phoros-photogrammetry
20 (:documentation "Interface to the PhoML library.")
21 (:use :cl
22 :phoml)
23 (:export :photogrammetry
24 :*photogrammetry-mutex*
25 :del-all))
27 (defpackage :phoros
28 (:use :cl
29 :phoros-photogrammetry
30 :parenscript
31 :postmodern))
33 (defpackage :phoros-command-line-interface
34 (:documentation "The part of Phoros that provides its UNIX command
35 line interface.")
36 (:nicknames :cli)
37 (:use :cl)
38 (:import-from :command-line-arguments
39 :compute-and-process-command-line-options
40 :*command-line-arguments*
41 :show-option-help
42 :process-command-line-options)
43 (:export :compute-and-process-command-line-options
44 :*command-line-arguments*
45 :show-option-help
46 :process-command-line-options
47 :*general-options*
48 :*db-connection-options*
49 :*aux-db-connection-options*
50 :*get-image-options*
51 :*camera-hardware-options*
52 :*lens-options*
53 :*generic-device-options*
54 :*device-stage-of-life-options*
55 :*device-stage-of-life-end-options*
56 :*camera-calibration-options*
57 :*acquisition-project-options*
58 :*store-images-and-points-options*
59 :*start-server-options*
60 :*presentation-project-options*
61 :*aux-view-options*
62 :*user-points-options*
63 :*user-options*
64 :*options*
65 :with-options
66 :remaining-options
67 :help-action
68 :version-action
69 :licence-action
70 :main
71 :check-db-action
72 :check-dependencies-action
73 :nuke-all-tables-action
74 :create-sys-tables-action
75 :create-acquisition-project-action
76 :delete-acquisition-project-action
77 :delete-measurement-action
78 :list-acquisition-project-action
79 :store-images-and-points-action
80 :canonicalize-bayer-pattern
81 :canonicalize-color-raiser
82 :store-stuff
83 :store-camera-hardware-action
84 :store-lens-action
85 :store-generic-device-action
86 :store-device-stage-of-life-action
87 :store-device-stage-of-life-end-action
88 :store-camera-calibration-action
89 :get-image-action
90 :create-presentation-project-action
91 :delete-presentation-project-action
92 :add-to-presentation-project-action
93 :remove-from-presentation-project-action
94 :redefine-trigger-function-action
95 :create-aux-view-action
96 :store-user-points-action
97 :get-user-points-action
98 :create-user-action
99 :delete-user-action
100 :list-user-action
101 :list-presentation-project-action
102 :format-table
103 :server-action))