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.

learn more… | top users | synonyms

5
votes
2answers
97 views

In Common Lisp what is a printed representation?

I'm using SBCL, emacs, slime, and quicklisp to install various packages. I instantiate and start a hunchentoot acceptor like so, CL-USER> (hunchentoot:start (make-instance 'hunchentoot:acceptor ...
1
vote
0answers
50 views

How to access a context of RESTAS submodules from other RESTAS modules

Let's say, I define a dynamic variable *a* inside a module m1. Then I mount-module m1 in a m2 module: (in-package m2) (mount-module sub (#:m1) (m1:*a* 3)) How can I get the value 3 now from the ...
1
vote
1answer
124 views

How to handle multiple file upload in hunchentoot?

I know how to handle a single file upload in hunchentoot using hunchentoot:post-paremter, but when I add a property multiple, i. e. <input name="file" type="file" multiple="multiple"/> I got ...
1
vote
1answer
48 views

Where are the files for a package?

Following this clisp basic website tutorial it asks me to define a package to persist the code: (defpackage :retro-games (:use :cl :cl-who :hunchentoot :parenscript)) However, I cannot work out ...
0
votes
0answers
69 views

Chunking HTTP replies with RESTAS

Lets say that I would like to send a rather large file (10MB for example) and that I would like to do this with HTTP1.1 chunked transfer encoding. How would I do this in RESTAS?
3
votes
1answer
195 views

Using hunchentoot to parse post request sent by model.save() in Backbone.js

I am a javascript/web application newbie and trying to implement my first web application using hunchentoot and backbone.js. The first thing I was experimenting is to understand how model.fetch() and ...
1
vote
1answer
201 views

User authentication with RESTAS and Hunchentoot

(I use Hunchentoot and Restas, just thought that I would mention it up here too) I don't really know how to do this stuff in general with HTTP, so I thought that maybe posting my code would be the ...
1
vote
1answer
48 views

Is enough-url function deleted in hunchentoot-1.2.3?

If so, how can i change the following code: (script-path (tbnl::enough-url (ppcre:regex-replace-all "\\\\" script-name "/") uri-prefix)) thanks!
2
votes
1answer
156 views

cl-who and format

I'm trying to generate the following html code using cl-who: <html> <body> <div id="cnt_1"></div> <div id="cnt_2"></div> <div id="cnt_3"></div> ...
4
votes
2answers
445 views

Common Lisp on Heroku with Hunchentoot?

Has anyone been able to successfully deploy an app on Heroku with the Heroku Common Lisp Buildpack using Hunchentoot? I'm getting a ! Heroku push rejected, no Cedar-supported app detected and ...
0
votes
1answer
270 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 ...
2
votes
2answers
256 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
1answer
212 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 ...
4
votes
2answers
450 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) ...
1
vote
3answers
174 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 = ...
0
votes
2answers
296 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 ...
1
vote
2answers
135 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
4answers
635 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 ...
0
votes
1answer
244 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 ...
1
vote
3answers
302 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 ...
2
votes
1answer
527 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 ...
5
votes
1answer
145 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 ...
2
votes
1answer
255 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 ...
3
votes
3answers
368 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 ...
0
votes
1answer
329 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 ...
4
votes
3answers
1k 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
2k 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 ...
5
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 ...
6
votes
2answers
418 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 ...