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
383bed65
Commit
383bed65
authored
May 12, 2014
by
Dave Cooper
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
next step in devo
parent
9238d406
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
1888 additions
and
1876 deletions
+1888
-1876
apps/yadd/source/define-object-documentation.lisp
apps/yadd/source/define-object-documentation.lisp
+7
-3
base/rest/source/sequence.lisp
base/rest/source/sequence.lisp
+388
-387
base/source/genworks.lisp
base/source/genworks.lisp
+1
-1
emacs/gdl.el
emacs/gdl.el
+1
-1
gwl/source/crawler.lisp
gwl/source/crawler.lisp
+221
-215
surf/source/approximated-curve.lisp
surf/source/approximated-curve.lisp
+445
-445
surf/source/curve.lisp
surf/source/curve.lisp
+822
-822
surf/source/surface.lisp
surf/source/surface.lisp
+3
-2
No files found.
apps/yadd/source/define-object-documentation.lisp
View file @
383bed65
...
...
@@ -452,6 +452,8 @@ If you specify :part-symbol-supplied, do not specify :instance-supplied."))
((
:td
:align
:left
)
(
format
*html-stream*
"~{~a~^, ~}"
trickle-down-slots
)))))))
(
mapc
#'
(
lambda
(
section
)
(
let
((
values
(
the-object
section
message-and-remarks
)))
...
...
@@ -552,7 +554,7 @@ If you specify :part-symbol-supplied, do not specify :instance-supplied."))
((
null
val
))
(
write-byte
val
reply-stream
))))))
(
when
(
zerop
return-value
)
(
when
(
or
(
null
return-value
)
(
zerop
return-value
)
)
(
delete-file
pdf-file
)
(
delete-file
image-file
)
(
delete-file
lisp-file
)
...
...
@@ -772,8 +774,10 @@ If you specify :part-symbol-supplied, do not specify :instance-supplied."))
(
let
((
note
(
with-cl-who-string
()
"from "
(
let
((
page-object
(
gethash
(
the
remark-mixin
)
(
the
index-ht
))))
(
htm
((
:a
:href
(
the-object
page-object
url
))
(
str
(
the
remark-mixin
))))))))
(
if
page-object
(
htm
((
:a
:href
(
the-object
page-object
url
))
(
str
(
the
remark-mixin
))))
(
htm
"unknown"
))))))
(
print-variables
note
)
note
)))
...
...
base/rest/source/sequence.lisp
View file @
383bed65
This diff is collapsed.
Click to expand it.
base/source/genworks.lisp
View file @
383bed65
...
...
@@ -292,7 +292,7 @@
#+
allegro
(
rplacd
(
assoc
'tpl::*saved-package*
tpl:*default-lisp-listener-bindings*
)
(
find-package
:gdl-user
))
#+
allegro
(
top-level:do-command
"package"
"gdl-user"
))
#+
allegro
(
top-level:do-command
"package"
:gdl-user
))
(
defun
set-defpackage-behavior
()
#+
lispworks
(
setq
hcl:*handle-existing-defpackage*
(
list
:add
))
...
...
emacs/gdl.el
View file @
383bed65
...
...
@@ -310,7 +310,7 @@
(
gdl-devo
(
get-executable
'agdl8
)))
(
defun
gdle
()
(
interactive
)
(
gdl-devo
(
get-executable
'gdl
)))
(
gdl-devo
(
get-executable
'gdl
e
)))
(
defun
gdl-devo
(
executable
)
(
interactive
)
...
...
gwl/source/crawler.lisp
View file @
383bed65
This diff is collapsed.
Click to expand it.
surf/source/approximated-curve.lisp
View file @
383bed65
This diff is collapsed.
Click to expand it.
surf/source/curve.lisp
View file @
383bed65
This diff is collapsed.
Click to expand it.
surf/source/surface.lisp
View file @
383bed65
...
...
@@ -23,6 +23,7 @@
(
defun
pin-value-to-range
(
value
min
max
&key
(
lt-test
#'
<
)
(
gt-test
#'
>
))
#+
nil
"Number. Returns a value pinned to the range described by the min and max.
If the input value is out of range, a warning is issued.
...
...
@@ -30,8 +31,8 @@ If the input value is out of range, a warning is issued.
min \"minimum end of allowed range\"
max \"maximum end of allowed range\")
:&key ((lt-test #'
<
) \"The test applied for less-than comparison\"
(gt-test #'
>
) \"The test applied for greater-than comparison\")
:&key ((lt-test #'
<
) \"The test applied for less-than comparison\"
(gt-test #'
>
) \"The test applied for greater-than comparison\")
"
(
cond
((
funcall
lt-test
value
min
)
(
warn
"Value ~a is less than minimum allowed ~a, pinning to ~a.~%"
...
...
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