Tagged Questions
Hunchentoot is a HTTP server written in Common Lisp and at the same time a toolkit for building dynamic websites. As a stand-alone web server, Hunchentoot is capable of HTTP/1.1 chunking (both directions), persistent connections (keep-alive), and SSL.
6
votes
2answers
269 views
What are some recommended Common Lisp Web Servers options?
So far I've only tried Hunchentoot and heard about AllegroServe, ABCLweb, though I wouldn't know how they compare in performance. I was wondering, what is currently the best option for deploying a ...
5
votes
1answer
113 views
Feedback desired: non-disruptive deployment strategies for production Lisp webapps
I am interested in hearing how people do their Lisp webapp deployments and updates (especially updates) in production.
In Ruby many, myself included, use Capistrano for deployments. It provides some ...
4
votes
5answers
1k views
Using ASDF to start Hunchentoot
I'm working on a web app using Hunchentoot (on SBCL and Linux), and usually I just run it from Emacs (SLIME), but for deployment I want something that's easier to automate. So I'm trying to figure ...
3
votes
2answers
94 views
How to tell Hunchentoot where to find static web pages to serve?
The Hunchentoot documentation states:
"The method for ACCEPTOR tries to serve a static file relative to it's ACCEPTOR-DOCUMENT-ROOT."
acceptor-document-root acceptor => (or pathname null)
...
3
votes
3answers
267 views
Problem Installing Lispy Package Manager
I am installing Hunchentoot on a new machine. This time I thought I would try out Lispy, because it appears to be simplest way of managing the dependencies for Hunchentoot in a standard and hopefully ...
2
votes
1answer
323 views
Hunchentoot/cl-who page composition
Hunchentoot/cl-who Page Composition
I'm trying to put together a few pages in hunchentoot as an experiment, and I'm running into an unexpected wall. As an example, I have the following template ...
2
votes
1answer
170 views
How to change a Hunchentoot session cookie name by specializing a function?
I'm using Hunchentoot and would like to change the name of the session cookie. This is implemented with a generic function and the docs say to change the name you can "specialize the function".
I'm ...
2
votes
3answers
804 views
Newbie question about Lisp and Packages
Here is the back story skip to the bottom if you do not care and only want to see the question.
So I have been playing around in LISP for a little while. Some basic functions, some classes ,and file ...
2
votes
2answers
1k views
How to Connect a Web App to Hunchentoot
I am writing a web app that would require the hunchentoot web server. I have almost no working knowledge of hunchentoot, or any web server for that matter, and I am wondering how my app written in ...
1
vote
3answers
70 views
Can hunchentoot host CGI application?
We have a CGI application developed using python, which can be hosted in erlang YAWS easily:
>cat ~/yaws.conf
...
<server 192.168.1.2>
port = 8000
listen = 0.0.0.0
docroot = ...
1
vote
2answers
101 views
Trouble grabbing lisp input from the web using hunchentoot and sbcl
A lisp question here. I've been slowly learning lisp over the last couple of months and have ran into a problem when trying to grab input from a web browser vs. grabbing input from a REPL.
The ...
1
vote
5answers
333 views
Common Lisp implementation with CFFI and thread support on Mac, Windows, and Linux?
Goal: Install Hunchentoot and be able to run Hunchentoot as a background thread.
This is what I do:
Install Common Lisp.
Install Quicklisp.
(ql:quickload "hunchentoot")
(hunchentoot:start ...
1
vote
3answers
192 views
Format in cl-who does't work properly
I'm trying to build a personal Website via hunchentoot and cl-who, but I'm occurring an semantic error in the following code:
(defun index ()
(standart-page (:title "~apb")
(dolist ...
0
votes
1answer
76 views
Why can't the python script get the post parameters from hunchentoot-cgi?
The hunchentoot-cgi basically works with hunchentoot-1.2.2 now with a few modification:
In #'handle-cgi-script, replacing :external-format tbnl::+latin-1+ with :external-format tbnl::+utf-8+
As ...
0
votes
1answer
31 views
Why cannot CCL load hunchentoot?
SBCL can load hunchentoot successfully. However, the CCL reported:
? (ql:quickload :hunchentoot)
To load "hunchentoot":
Load 1 ASDF system:
hunchentoot
; Loading "hunchentoot"
> Error: Unable to ...
0
votes
0answers
28 views
Why canot hunchentoot find my function?
(defun index ()
(standard-page (:title "Game Voter")
(:h1 "Vote on your all time favourite games!")
(:p "Missing a game? Make it available for votes " (:a :href "new-game" "here"))
(:h2 ...
0
votes
1answer
76 views
Serving dynamic webpages using Hunchentoot/html-template/Lisp
The following code using Hunchentoot and html-template was allowing me to serve dynamic webpages up until recently when I upgraded Hunchentoot to the latest version. Can someone please suggest where ...
0
votes
2answers
84 views
Install “hunchentoot” error?
I want to install hunchentoot on my freebsd box, but quicklisp reports error:
(ql:quickload "hunchentoot")
To load "hunchentoot":
Load 3 ASDF systems:
rfc2388 trivial-backtrace usocket
Install 15 ...
0
votes
0answers
354 views
Making HTTP POST request from Django request - error
I have django app running on server A. That app makes HTTP POST request to server B using urllib2 and urlopen. Sometimes, I am getting 'incomplete' responses from the server B. Everything is ok, ...
0
votes
1answer
135 views
function using cl-who:with-html-output ignoring parameter
I'm not sure whether this is an issue with my use of cl-who (specifically with-html-output-to-string and with-html-output) or an issue with my understanding of Common Lisp (as this is my first project ...
0
votes
1answer
290 views
Hunchentoot 1.0 returns only empty responses
I'm using an Intel Mac with Mac OS 10.5 and SBCL 1.0.29. I've done pre-1.0 Hunchentoot development here before, so I've had that installed (via asdf-install).
Recently I started a new project, and ...