Mercurial > laserkard
annotate common.clj @ 75:874a6a2c28cf laserkard
session with nick. redisigned faq page
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Tue, 29 Jun 2010 15:36:30 -0400 |
parents | |
children | 5b0753c6f34d |
rev | line source |
---|---|
rlm@75 | 1 (ns laserkard.common |
rlm@75 | 2 (:use (compojure.http request servlet session routes) |
rlm@75 | 3 (compojure.server jetty) |
rlm@75 | 4 (compojure control) |
rlm@75 | 5 (clojure.contrib prxml str-utils duck-streams))) |
rlm@75 | 6 |
rlm@75 | 7 |
rlm@75 | 8 (defn pxml [ & args] |
rlm@75 | 9 (with-out-str (apply prxml args))) |
rlm@75 | 10 |
rlm@75 | 11 (defn header [] |
rlm@75 | 12 (pxml [:doctype! "html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\""])) |
rlm@75 | 13 |
rlm@75 | 14 |
rlm@75 | 15 |
rlm@75 | 16 |