Skip to content

Commit

Permalink
Lowercased package numbers.
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavrc committed May 4, 2013
1 parent 249d622 commit 724bc64
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
6 changes: 3 additions & 3 deletions histRenderer.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@
,@response)))))

(restas:define-route main ("")
(pathname "~/workbase/QuickHist/res/index.html"))
(pathname "~/workbase/quickhist/res/index.html"))

(restas:define-route css ("index.css")
(pathname "~/workbase/QuickHist/res/index.css"))
(pathname "~/workbase/quickhist/res/index.css"))

(restas:define-route favicon ("favicon.ico")
(pathname "~/workbase/QuickHist/res/favicon.ico"))
(pathname "~/workbase/quickhist/res/favicon.ico"))

(restas:define-route histInput (":(input)/*title")
(progn
Expand Down
10 changes: 10 additions & 0 deletions quickhist.asd
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
(in-package :asdf)

(asdf:defsystem #:quickhist
:depends-on (#:cl-who #:hunchentoot)
:description "quickhist: ASCII Histograms API in Common Lisp."
:version "1.0"
:author "Pranav Ravichandran <me@onloop.net>"
:license "WTFPL <http://en.wikipedia.org/wiki/WTFPL>"
:components ((:file "histUtil")
(:file "histRenderer" :depends-on ("histUtil"))))

0 comments on commit 724bc64

Please sign in to comment.