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
28357ea8
Commit
28357ea8
authored
May 04, 2017
by
Dave Cooper
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reverted external-format for aserve startup to :utf8-base for allegro, :utf-8 otherwise
parent
d7a9bd04
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
7 deletions
+12
-7
emacs/gdl.el
emacs/gdl.el
+3
-3
gwl/ajax/source/ajax.lisp
gwl/ajax/source/ajax.lisp
+3
-0
gwl/source/new-urls.lisp
gwl/source/new-urls.lisp
+3
-1
gwl/zzinit/source/initialize.lisp
gwl/zzinit/source/initialize.lisp
+3
-3
No files found.
emacs/gdl.el
View file @
28357ea8
...
...
@@ -417,9 +417,9 @@
(
setq
mac-option-modifier
nil
)
(
setq
mac-command-modifier
'meta
))))
;;
(when (eql system-type 'darwin)
;;
(mac-switch-meta)
;;
(mac-switch-meta))
(
when
(
eql
system-type
'darwin
)
(
mac-switch-meta
)
(
mac-switch-meta
))
;; A. REFERENCES
...
...
gwl/ajax/source/ajax.lisp
View file @
28357ea8
...
...
@@ -237,6 +237,9 @@
(
with-http-response
((
the
req
)
(
the
ent
)
:content-type
"text/xml"
)
(
with-http-body
((
the
req
)
(
the
ent
))
(
with-html-output
(
*html-stream*
nil
)
(
when
*debug?*
(
print-variables
(
socket:remote-host
(
net.aserve:request-socket
(
the
req
)))))
(
:document
(
mapc
#'
(
lambda
(
replace-pair
js-to-eval-status
)
(
declare
(
ignore
js-to-eval-status
))
;; this can play into the flag
...
...
gwl/source/new-urls.lisp
View file @
28357ea8
...
...
@@ -104,7 +104,9 @@
(
with-http-body
(
req
ent
)
(
when
(
null
(
getf
header-plist
:location
))
(
let
((
*req*
req
)
(
*ent*
ent
)
(
*skin*
skin
))
(
when
*debug?*
(
print-variables
(
socket:remote-host
(
net.aserve:request-socket
req
))))
(
the-object
respondent
(
:before-present!
))
(
let
((
*stream*
*html-stream*
))
(
the-object
respondent
(
:write-html-sheet
)))
...
...
gwl/zzinit/source/initialize.lisp
View file @
28357ea8
...
...
@@ -105,8 +105,8 @@ Perhaps a zombie process is holding port ~a?~%" port port))
(
handler-case
(
let
((
sock
(
usocket:socket-listen
"localhost"
port
)))
(
usocket:socket-close
sock
))
(
usocket:address-in-use-error
(
e
)
:in-use
)
(
t
(
e
)
:unknown
))))
(
usocket:address-in-use-error
(
e
)
(
declare
(
ignore
e
))
:in-use
)
(
t
(
e
)
(
declare
(
ignore
e
))
:unknown
))))
(
unless
(
member
result
'
(
:in-use
:unknown
))
port
)))
...
...
@@ -114,7 +114,7 @@ Perhaps a zombie process is holding port ~a?~%" port port))
;;
;; FLAG -- figure out external-format for the other Lisps.
;;
(
external-format
:utf-
8
)
aserve-start-args
)
(
external-format
#+
allegro
:utf8-base
#-
allegro
:utf
8
)
aserve-start-args
)
(
net.aserve:shutdown
)
(
let
((
wait-time
1
))
(
block
:outer
...
...
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