Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gendl
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
45
Issues
45
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
gendl
gendl
Commits
f44f004c
Commit
f44f004c
authored
Nov 05, 2019
by
Dave Cooper
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated crawler, simplified gendl-asdf system.
parent
1d18bbad
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
161 additions
and
161 deletions
+161
-161
gendl-asdf.asd
gendl-asdf.asd
+1
-1
gendl-asdf.lisp
gendl-asdf.lisp
+1
-1
gwl/depends-on.isc
gwl/depends-on.isc
+1
-1
gwl/gwl.asd
gwl/gwl.asd
+1
-1
gwl/source/answer.lisp
gwl/source/answer.lisp
+4
-4
gwl/source/crawler.lisp
gwl/source/crawler.lisp
+153
-153
No files found.
gendl-asdf.asd
View file @
f44f004c
...
...
@@ -4,5 +4,5 @@
:description
"asdf gendl artifacts loading"
:serial
t
:version
"20161111"
:depends-on
(
#:gwl
)
;; TODO reduce this one to a minimal dependency
:depends-on
(
)
:components
((
:file
"gendl-asdf"
)))
gendl-asdf.lisp
View file @
f44f004c
;;;; -*- coding: utf-8 -*-
(
in-package
:
gd
l-user
)
(
in-package
:
c
l-user
)
(
defclass
asdf::gdl
(
asdf::cl-source-file
)
((
type
:initform
"gdl"
)))
(
defclass
asdf::gendl
(
asdf::cl-source-file
)
((
type
:initform
"gendl"
)))
...
...
gwl/depends-on.isc
View file @
f44f004c
"(
#+(or ccl sbcl allegro) :zaserve #-(or ccl sbcl allegro) :paserve :cl-who :yason :glisp
)"
"(
#-allegro :cl-html-parse #+(or ccl sbcl allegro) :zaserve #-(or ccl sbcl allegro) :paserve :cl-who :yason :glisp
)"
gwl/gwl.asd
View file @
f44f004c
...
...
@@ -5,7 +5,7 @@
"Dave Cooper, Genworks International"
:license
"Affero Gnu Public License (http://www.gnu.org/licenses/)"
:serial
t
:version
"20181023"
:depends-on
(
#+
(
or
ccl
sbcl
allegro
)
:zaserve
#-
(
or
ccl
sbcl
allegro
)
:paserve
:cl-who
:yason
:glisp
)
(
#-
allegro
:cl-html-parse
#+
(
or
ccl
sbcl
allegro
)
:zaserve
#-
(
or
ccl
sbcl
allegro
)
:paserve
:cl-who
:yason
:glisp
)
#-
asdf-unicode
:defsystem-depends-on
#-
asdf-unicode
(
:asdf-encodings
)
#+
asdf-unicode
:defsystem-depends-on
#+
asdf-unicode
()
#+
asdf-encodings
:encoding
#+
asdf-encodings
:utf-8
...
...
gwl/source/answer.lisp
View file @
f44f004c
...
...
@@ -420,12 +420,12 @@ being generated dynamically.
:function
#'
(
lambda
(
req
ent
)
(
let
((
*req*
req
)
(
*ent*
ent
)
(
object
(
first
(
gethash
key
*instance-hash-table*
))))
(
with-http-response
(
req
ent
)
(
with-http-response
(
req
ent
:response
*response-found*
)
(
setf
(
reply-header-slot-value
req
:location
)
(
format
nil
"~a"
(
the-object
object
url
)))
(
setf
(
reply-header-slot-value
req
:cache-control
)
"no-cache"
)
(
setf
(
reply-header-slot-value
req
:pragma
)
"no-cache"
)
(
with-http-body
(
req
ent
)
(
the-object
object
write-html-sheet
))))))))
(
with-http-body
(
req
ent
))
))))))
...
...
gwl/source/crawler.lisp
View file @
f44f004c
This diff is collapsed.
Click to expand it.
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