# HG changeset patch # User Steve Losh # Date 1716497520 14400 # Node ID 5669f40ff5cba959345b159f6f955b3092212455 # Parent 2627448ea52ed5991b9ed1183c979f32bd729e0b Update diff -r 2627448ea52e -r 5669f40ff5cb README.markdown --- a/README.markdown Tue May 14 16:39:32 2024 -0400 +++ b/README.markdown Thu May 23 16:52:00 2024 -0400 @@ -722,3 +722,21 @@ of error directory, but that only allows static templates, not e.g. rendering a template. Though maybe that's good enough for what I need… +## 2024-05-15 + +A little more web stuff, pretty happy with my choice of templating library +(TEN). Now that I grok that it's mostly just the lisp with a tiny syntax +wrapper, it's trivial to just do e.g.: + + {% multiple-value-bind (foo bar) (get-stuff arg) %} + … + {% end %} + +I'm still not happy with the routing library situation. Looked at a bunch of +different options and none of them seem decent. The one I'm currently using +(easy-routes with Hunchentoot) doesn't really give me a nice way to deal with +rendering error pages, or a way to add middleware to e.g. handle trailing slash +crap site-wide. Need to think more about how I want to deal with this. + + +