From 7d9cf5b897af1a23851da347623855953690cbe2 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sat, 13 Jul 2013 22:55:54 +0200 Subject: Use closure-templates --- scrumli.asd | 7 ++-- scrumli.lisp | 68 +++++++++++-------------------------- templates/scrumli.tmpl | 91 ++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 115 insertions(+), 51 deletions(-) create mode 100644 templates/scrumli.tmpl diff --git a/scrumli.asd b/scrumli.asd index 083f882..87d124a 100644 --- a/scrumli.asd +++ b/scrumli.asd @@ -7,8 +7,11 @@ :description "Scrum with Lisp" :author "Tom Willemse" :license "AGPLv3" - :depends-on (:restas :sexml :postmodern :cl-json :drakma) - :components ((:file "defmodule") + :depends-on (:restas :sexml :postmodern :cl-json :drakma + :closure-template) + :defsystem-depends-on (:closure-template) + :components ((:closure-template "templates/scrumli") + (:file "defmodule") (:file "pg-datastore") (:file "util") (:file "scrumli"))) diff --git a/scrumli.lisp b/scrumli.lisp index 7900740..7b324fb 100644 --- a/scrumli.lisp +++ b/scrumli.lisp @@ -31,7 +31,7 @@ (hunchentoot:session-value :username)) (defun page-title (title) - (<:title (concatenate 'string title " | scrumli"))) + (concatenate 'string title " | scrumli")) (defun css (&rest sheets) (apply 'concatenate 'string @@ -54,28 +54,18 @@ (define-route main ("") (if (logged-in-p) - (<:html - (<:head (page-title "Backlog") - (css *scrumli-bootstrap-css-location* - *scrumli-font-awesome-css-location* - (genurl 'scrumli-css)) - (js *scrumli-bootstrap-js-location* - *scrumli-jquery-js-location* - *scrumli-react-js-location* - *scrumli-jsxtransformer-js-location*)) - (<:body - (navbar (<:div :class "pull-right" - (<:span :class "navbar-text" - (hunchentoot:session-value :username)) - (<:ul :class "nav pull-right" - (<:li :class "divider-vertical") - (<:li (<:a :href (genurl 'logout-page) - "Logout")) - (<:li :class "divider-vertical")))) - (<:div :class "container" - (<:h1 "Backlog") - (<:div :id "content") - (<:script :type "text/jsx" :src (genurl 'main-js))))) + (scrumli-templates:main + `(:title ,(page-title "Backlog") + :csss ,(list *scrumli-bootstrap-css-location* + *scrumli-font-awesome-css-location* + (genurl 'scrumli-css)) + :jss ,(list *scrumli-bootstrap-js-location* + *scrumli-jquery-js-location* + *scrumli-react-js-location* + *scrumli-jsxtransformer-js-location*) + :username ,(hunchentoot:session-value :username) + :ulogout ,(genurl 'logout-page) + :umainjs ,(genurl 'main-js))) (redirect 'login-page))) (defmacro serve-static (name relpath) @@ -162,32 +152,12 @@ (define-route login-page ("login") (if (not (logged-in-p)) - (<:html :lang "en" - (<:head (<:meta :charset "utf-8") - (page-title "Login") - (css *scrumli-bootstrap-css-location*) - (js *scrumli-bootstrap-js-location* - "https://login.persona.org/include.js" - (genurl 'login-js))) - (<:body - (navbar (<:ul :class "nav pull-right" - (<:li :class "divider-vertical") - (<:li (<:a :href "javascript:login()" - "Login")) - (<:li :class "divider-vertical"))) - (<:div :class "container" - (<:br) - (<:div :class "hero-unit" - (<:h1 "Scrumli") - (<:p "As a " (<:em "developer") " I " - (<:em "love") " to " (<:em "scrum") - "...") - (<:a :class "btn btn-primary btn-large" - :href "javascript:login()" - "Login"))) - (<:form :id "login-form" :method "POST" :action "" - (<:input :id "assertion-field" :type "hidden" - :name "assertion" :value "")))) + (scrumli-templates:login + `(:title ,(page-title "Login") + :csss ,(list *scrumli-bootstrap-css-location*) + :jss ,(list *scrumli-bootstrap-js-location* + "https://login.persona.org/include.js" + (genurl 'login-js)))) (redirect 'main))) (define-route logout-page ("logout") diff --git a/templates/scrumli.tmpl b/templates/scrumli.tmpl new file mode 100644 index 0000000..03832e2 --- /dev/null +++ b/templates/scrumli.tmpl @@ -0,0 +1,91 @@ +{namespace scrumli-templates} + +{template main} + + + + + {$title} + {foreach $css in $csss} + + {/foreach} + {foreach $js in $jss} + + {/foreach} + + + + +
+

Backlog

+
+ +
+ + +{/template} + +{template login} + + + + + {$title} + {foreach $css in $csss} + + {/foreach} + {foreach $js in $jss} + + {/foreach} + + + + +
+
+
+

Scrumli

+

+ As a developer I love + to scrum... +

+ + Login + +
+
+
+ +
+ + +{/template} -- cgit v1.2.3-54-g00ecf