Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gendl
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
47
Issues
47
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gendl
gendl
Commits
78c72d7a
Commit
78c72d7a
authored
Dec 07, 2013
by
Dave Cooper
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
regenerated .asds
parent
1f47314b
Changes
19
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
55 additions
and
75 deletions
+55
-75
apps/ta2/ta2.asd
apps/ta2/ta2.asd
+3
-3
apps/tasty/tasty.asd
apps/tasty/tasty.asd
+3
-3
apps/translators/translators.asd
apps/translators/translators.asd
+3
-3
apps/tree/tree.asd
apps/tree/tree.asd
+3
-3
apps/yadd/yadd.asd
apps/yadd/yadd.asd
+3
-3
base/base.asd
base/base.asd
+3
-4
cl-lite/cl-lite.asd
cl-lite/cl-lite.asd
+3
-4
demos/bus/bus.asd
demos/bus/bus.asd
+3
-4
demos/ledger/ledger.asd
demos/ledger/ledger.asd
+3
-4
demos/robot/robot.asd
demos/robot/robot.asd
+3
-3
demos/wire-world/wire-world.asd
demos/wire-world/wire-world.asd
+3
-3
documentation/training/g102-tud/examples/examples.asd
documentation/training/g102-tud/examples/examples.asd
+3
-4
emacs/gdl.el
emacs/gdl.el
+1
-11
geom-base/geom-base.asd
geom-base/geom-base.asd
+3
-4
glisp/glisp.asd
glisp/glisp.asd
+3
-4
gwl-graphics/gwl-graphics.asd
gwl-graphics/gwl-graphics.asd
+3
-4
gwl/gwl.asd
gwl/gwl.asd
+3
-4
regression/regression.asd
regression/regression.asd
+3
-4
surf/surf.asd
surf/surf.asd
+3
-3
No files found.
apps/ta2/ta2.asd
View file @
78c72d7a
...
...
@@ -2,9 +2,9 @@
(
asdf:defsystem
#:ta2
:description
"The Gendl™ (legacy) Testing and Tracking Utility, version 2 (using Ajax but pre-gdlAjax, and no JQuery or CSS)"
:author
"
Dave Cooper and Genworks International
"
:license
"
Gnu Affero General Public License (please see http://www.gnu.org/licenses/)"
:
serial
t
:version
"20131206
"
:depends-on
(
:gwl-graphics
)
:author
"
John McCarthy
"
:license
"
Affero Gnu Public License (http://www.gnu.org/licenses/)"
:serial
t
:
version
"20131207
"
:depends-on
(
:gwl-graphics
)
#-
asdf-unicode
:defsystem-depends-on
#-
asdf-unicode
(
:asdf-encodings
)
#+
asdf-encodings
:encoding
#+
asdf-encodings
:utf-8
:components
...
...
apps/tasty/tasty.asd
View file @
78c72d7a
...
...
@@ -2,9 +2,9 @@
(
asdf:defsystem
#:tasty
:description
"The Gendl™ Web-based Development Environment (tasty)"
:author
"
Dave Cooper and Genworks International
"
:license
"
Gnu Affero General Public License (please see http://www.gnu.org/licenses/)"
:
serial
t
:version
"20131206
"
:depends-on
(
:tree
:gwl-graphics
)
"
John McCarthy
"
:license
"
Affero Gnu Public License (http://www.gnu.org/licenses/)"
:serial
t
:
version
"20131207
"
:depends-on
(
:tree
:gwl-graphics
)
#-
asdf-unicode
:defsystem-depends-on
#-
asdf-unicode
(
:asdf-encodings
)
#+
asdf-encodings
:encoding
#+
asdf-encodings
:utf-8
:components
...
...
apps/translators/translators.asd
View file @
78c72d7a
...
...
@@ -2,9 +2,9 @@
(
asdf:defsystem
#:translators
:description
"The Gendl™ Translators to/from XML and potentially other high-level KBE and Knowledge formats"
:author
"
Dave Cooper and Genworks International
"
:license
"
Gnu Affero General Public License (please see http://www.gnu.org/licenses/)"
:
serial
t
:version
"20131206
"
:depends-on
(
:gwl
)
:author
"
John McCarthy
"
:license
"
Affero Gnu Public License (http://www.gnu.org/licenses/)"
:serial
t
:
version
"20131207
"
:depends-on
(
:gwl
)
#-
asdf-unicode
:defsystem-depends-on
#-
asdf-unicode
(
:asdf-encodings
)
#+
asdf-encodings
:encoding
#+
asdf-encodings
:utf-8
:components
...
...
apps/tree/tree.asd
View file @
78c72d7a
...
...
@@ -2,9 +2,9 @@
(
asdf:defsystem
#:tree
:description
"The Gendl™ Tree component used by Tasty and potentially as a UI component on its own"
:author
"
Dave Cooper and Genworks International
"
:license
"
Gnu Affero General Public License (please see http://www.gnu.org/licenses/)"
:
serial
t
:version
"20131206
"
:depends-on
(
:gwl-graphics
)
:author
"
John McCarthy
"
:license
"
Affero Gnu Public License (http://www.gnu.org/licenses/)"
:serial
t
:
version
"20131207
"
:depends-on
(
:gwl-graphics
)
#-
asdf-unicode
:defsystem-depends-on
#-
asdf-unicode
(
:asdf-encodings
)
#+
asdf-encodings
:encoding
#+
asdf-encodings
:utf-8
:components
...
...
apps/yadd/yadd.asd
View file @
78c72d7a
...
...
@@ -2,9 +2,9 @@
(
asdf:defsystem
#:yadd
:description
"The Gendl™ Yet Another Definition Documenter (yadd)"
:author
"
Dave Cooper and Genworks International
"
:license
"
Gnu Affero General Public License (please see http://www.gnu.org/licenses/)"
:
serial
t
:version
"20131206
"
:depends-on
"
John McCarthy
"
:license
"
Affero Gnu Public License (http://www.gnu.org/licenses/)"
:serial
t
:
version
"20131207
"
:depends-on
(
:gwl-graphics
#-
allegro
:cl-html-parse
)
#-
asdf-unicode
:defsystem-depends-on
#-
asdf-unicode
(
:asdf-encodings
)
#+
asdf-encodings
:encoding
#+
asdf-encodings
:utf-8
...
...
base/base.asd
View file @
78c72d7a
;;;; -*- coding: utf-8 -*-
(
asdf:defsystem
#:base
:description
"The Gendl™ Base Core Kernel Engine"
:author
"Dave Cooper and Genworks International"
:license
"Gnu Affero General Public License (please see http://www.gnu.org/licenses/)"
:serial
t
:version
"20131206"
:depends-on
nil
"The Gendl™ Base Core Kernel Engine"
:author
"John McCarthy"
:license
"Affero Gnu Public License (http://www.gnu.org/licenses/)"
:serial
t
:version
"20131207"
:depends-on
nil
#-
asdf-unicode
:defsystem-depends-on
#-
asdf-unicode
(
:asdf-encodings
)
#+
asdf-encodings
:encoding
#+
asdf-encodings
:utf-8
:components
...
...
cl-lite/cl-lite.asd
View file @
78c72d7a
;;;; -*- coding: utf-8 -*-
(
asdf:defsystem
#:cl-lite
:description
"The Gendl™ Compile-and-Load Lite Utility"
:author
"Dave Cooper and Genworks International"
:license
"Gnu Affero General Public License (please see http://www.gnu.org/licenses/)"
:serial
t
:version
"20131206"
:depends-on
(
:glisp
)
"The Gendl™ Compile-and-Load Lite Utility"
:author
"John McCarthy"
:license
"Affero Gnu Public License (http://www.gnu.org/licenses/)"
:serial
t
:version
"20131207"
:depends-on
(
:glisp
)
#-
asdf-unicode
:defsystem-depends-on
#-
asdf-unicode
(
:asdf-encodings
)
#+
asdf-encodings
:encoding
#+
asdf-encodings
:utf-8
:components
...
...
demos/bus/bus.asd
View file @
78c72d7a
;;;; -*- coding: utf-8 -*-
(
asdf:defsystem
#:bus
:description
"The Gendl™ Wireframe School Bus Demo"
:author
"Dave Cooper and Genworks International"
:license
"Gnu Affero General Public License (please see http://www.gnu.org/licenses/)"
:serial
t
:version
"20131206"
:depends-on
nil
"The Gendl™ Wireframe School Bus Demo"
:author
"John McCarthy"
:license
"Affero Gnu Public License (http://www.gnu.org/licenses/)"
:serial
t
:version
"20131207"
:depends-on
nil
#-
asdf-unicode
:defsystem-depends-on
#-
asdf-unicode
(
:asdf-encodings
)
#+
asdf-encodings
:encoding
#+
asdf-encodings
:utf-8
:components
...
...
demos/ledger/ledger.asd
View file @
78c72d7a
;;;; -*- coding: utf-8 -*-
(
asdf:defsystem
#:ledger
:description
"The Gendl™ Ledger Bookkeeping Demo"
:author
"Dave Cooper and Genworks International"
:license
"Gnu Affero General Public License (please see http://www.gnu.org/licenses/)"
:serial
t
:version
"20131206"
:depends-on
(
:gwl
)
"The Gendl™ Ledger Bookkeeping Demo"
:author
"John McCarthy"
:license
"Affero Gnu Public License (http://www.gnu.org/licenses/)"
:serial
t
:version
"20131207"
:depends-on
(
:gwl
)
#-
asdf-unicode
:defsystem-depends-on
#-
asdf-unicode
(
:asdf-encodings
)
#+
asdf-encodings
:encoding
#+
asdf-encodings
:utf-8
:components
...
...
demos/robot/robot.asd
View file @
78c72d7a
...
...
@@ -2,9 +2,9 @@
(
asdf:defsystem
#:robot
:description
"The Gendl™ Simplified Android Robot example "
:author
"
Dave Cooper and Genworks International
"
:license
"
Gnu Affero General Public License (please see http://www.gnu.org/licenses/)"
:
serial
t
:version
"20131206
"
:depends-on
nil
"
John McCarthy
"
:license
"
Affero Gnu Public License (http://www.gnu.org/licenses/)"
:serial
t
:
version
"20131207
"
:depends-on
nil
#-
asdf-unicode
:defsystem-depends-on
#-
asdf-unicode
(
:asdf-encodings
)
#+
asdf-encodings
:encoding
#+
asdf-encodings
:utf-8
:components
...
...
demos/wire-world/wire-world.asd
View file @
78c72d7a
...
...
@@ -2,9 +2,9 @@
(
asdf:defsystem
#:wire-world
:description
"The Gendl™ Wire-World demo and test-case for wireframe tessellation and X3D output"
:author
"
Dave Cooper and Genworks International
"
:license
"
Gnu Affero General Public License (please see http://www.gnu.org/licenses/)"
:
serial
t
:version
"20131206
"
:depends-on
(
:gwl-graphics
)
:author
"
John McCarthy
"
:license
"
Affero Gnu Public License (http://www.gnu.org/licenses/)"
:serial
t
:
version
"20131207
"
:depends-on
(
:gwl-graphics
)
#-
asdf-unicode
:defsystem-depends-on
#-
asdf-unicode
(
:asdf-encodings
)
#+
asdf-encodings
:encoding
#+
asdf-encodings
:utf-8
:components
((
:file
"source/package"
)
(
:file
"source/assembly"
)))
documentation/training/g102-tud/examples/examples.asd
View file @
78c72d7a
;;;; -*- coding: utf-8 -*-
(
asdf:defsystem
#:examples
:description
"The Gendl™ examples Subsystem"
:author
"Dave Cooper and Genworks International"
:license
"Gnu Affero General Public License (please see http://www.gnu.org/licenses/)"
:serial
t
:version
"20131206"
:depends-on
(
:surf
)
"The Gendl™ examples Subsystem"
:author
"John McCarthy"
:license
"Affero Gnu Public License (http://www.gnu.org/licenses/)"
:serial
t
:version
"20131207"
:depends-on
(
:surf
)
#-
asdf-unicode
:defsystem-depends-on
#-
asdf-unicode
(
:asdf-encodings
)
#+
asdf-encodings
:encoding
#+
asdf-encodings
:utf-8
:components
...
...
emacs/gdl.el
View file @
78c72d7a
...
...
@@ -58,12 +58,6 @@
(
color-theme-sitaramv-solaris
)
;;(color-theme-feng-shui)
;; 3.2.1 Set up org-mode-pomodoro for task time management and tracking:
(
add-to-list
'load-path
(
concat
*gendl-home*
"emacs/alert"
))
(
require
'alert
)
(
add-to-list
'load-path
(
concat
*gendl-home*
"emacs/org-pomodoro"
))
(
require
'org-pomodoro
)
;; 3.3. Indents
...
...
@@ -94,9 +88,7 @@
;; http://emacswiki.org/emacs/AutoIndentation).
;;
;;(global-set-key (kbd "C-m") 'newline-and-indent)
(
global-set-key
"\C-ca"
'org-agenda
)
(
global-set-key
"\C-cc"
'org-capture
))
)
...
...
@@ -274,8 +266,6 @@
(
glime
)
(
setq
org-timer-default-timer
25
org-timer-done-hook
'
(
progn
(
ding
)
(
ding
)
(
ding
)))
;; A. REFERENCES
;;
...
...
geom-base/geom-base.asd
View file @
78c72d7a
;;;; -*- coding: utf-8 -*-
(
asdf:defsystem
#:geom-base
:description
"The Gendl™ Wireframe Geometry"
:author
"Dave Cooper and Genworks International"
:license
"Gnu Affero General Public License (please see http://www.gnu.org/licenses/)"
:serial
t
:version
"20131206"
:depends-on
(
:glisp
)
"The Gendl™ Wireframe Geometry"
:author
"John McCarthy"
:license
"Affero Gnu Public License (http://www.gnu.org/licenses/)"
:serial
t
:version
"20131207"
:depends-on
(
:glisp
)
#-
asdf-unicode
:defsystem-depends-on
#-
asdf-unicode
(
:asdf-encodings
)
#+
asdf-encodings
:encoding
#+
asdf-encodings
:utf-8
:components
...
...
glisp/glisp.asd
View file @
78c72d7a
;;;; -*- coding: utf-8 -*-
(
asdf:defsystem
#:glisp
:description
"The Gendl™ Common Lisp Portability"
:author
"Dave Cooper and Genworks International"
:license
"Gnu Affero General Public License (please see http://www.gnu.org/licenses/)"
:serial
t
:version
"20131206"
:depends-on
"The Gendl™ Common Lisp Portability"
:author
"John McCarthy"
:license
"Affero Gnu Public License (http://www.gnu.org/licenses/)"
:serial
t
:version
"20131207"
:depends-on
(
:base
:uiop
:cl-typesetting
:cl-ppcre
:cl-who
#-
allegro
:cl-base64
#-
allegro
:babel
#-
allegro
:acl-compat
)
#-
asdf-unicode
:defsystem-depends-on
#-
asdf-unicode
(
:asdf-encodings
)
#+
asdf-encodings
:encoding
#+
asdf-encodings
:utf-8
...
...
gwl-graphics/gwl-graphics.asd
View file @
78c72d7a
;;;; -*- coding: utf-8 -*-
(
asdf:defsystem
#:gwl-graphics
:description
"The Gendl™ GWL embedded graphics support"
:author
"Dave Cooper and Genworks International"
:license
"Gnu Affero General Public License (please see http://www.gnu.org/licenses/)"
:serial
t
:version
"20131206"
:depends-on
(
:geom-base
:gwl
)
"The Gendl™ GWL embedded graphics support"
:author
"John McCarthy"
:license
"Affero Gnu Public License (http://www.gnu.org/licenses/)"
:serial
t
:version
"20131207"
:depends-on
(
:geom-base
:gwl
)
#-
asdf-unicode
:defsystem-depends-on
#-
asdf-unicode
(
:asdf-encodings
)
#+
asdf-encodings
:encoding
#+
asdf-encodings
:utf-8
:components
...
...
gwl/gwl.asd
View file @
78c72d7a
;;;; -*- coding: utf-8 -*-
(
asdf:defsystem
#:gwl
:description
"The Gendl™ Generative Web Language (GWL)"
:author
"Dave Cooper and Genworks International"
:license
"Gnu Affero General Public License (please see http://www.gnu.org/licenses/)"
:serial
t
:version
"20131206"
:depends-on
(
:glisp
:aserve
)
"The Gendl™ Generative Web Language (GWL)"
:author
"John McCarthy"
:license
"Affero Gnu Public License (http://www.gnu.org/licenses/)"
:serial
t
:version
"20131207"
:depends-on
(
:glisp
:aserve
)
#-
asdf-unicode
:defsystem-depends-on
#-
asdf-unicode
(
:asdf-encodings
)
#+
asdf-encodings
:encoding
#+
asdf-encodings
:utf-8
:components
...
...
regression/regression.asd
View file @
78c72d7a
;;;; -*- coding: utf-8 -*-
(
asdf:defsystem
#:regression
:description
"The Gendl™ regression Subsystem"
:author
"Dave Cooper and Genworks International"
:license
"Gnu Affero General Public License (please see http://www.gnu.org/licenses/)"
:serial
t
:version
"20131206"
:depends-on
(
:lift
:surf
:tasty
)
"The Gendl™ regression Subsystem"
:author
"John McCarthy"
:license
"Affero Gnu Public License (http://www.gnu.org/licenses/)"
:serial
t
:version
"20131207"
:depends-on
(
:lift
:surf
:tasty
)
#-
asdf-unicode
:defsystem-depends-on
#-
asdf-unicode
(
:asdf-encodings
)
#+
asdf-encodings
:encoding
#+
asdf-encodings
:utf-8
:components
...
...
surf/surf.asd
View file @
78c72d7a
...
...
@@ -2,9 +2,9 @@
(
asdf:defsystem
#:surf
:description
"The Gendl™ NURBS Surface and Solids Geometry Primitives"
:author
"
Dave Cooper and Genworks International
"
:license
"
Gnu Affero General Public License (please see http://www.gnu.org/licenses/)"
:
serial
t
:version
"20131206
"
:depends-on
(
:geom-base
)
"
John McCarthy
"
:license
"
Affero Gnu Public License (http://www.gnu.org/licenses/)"
:serial
t
:
version
"20131207
"
:depends-on
(
:geom-base
)
#-
asdf-unicode
:defsystem-depends-on
#-
asdf-unicode
(
:asdf-encodings
)
#+
asdf-encodings
:encoding
#+
asdf-encodings
:utf-8
:components
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment