Does Hunchentoot support server side includes in static web pages? If so, what do I need to do to enable the functionality?
Thanks,
Patrick
On Fri, Sep 21, 2012 at 12:07 AM, Patrick May patrick.may@mac.com wrote:
Does Hunchentoot support server side includes in static web pages? If so, what do I need to do to enable the functionality?
Hunchentoot has no server side include functionality. html-template (http://weitz.de/html-template/) is a solution to that.
-Hans
Thanks, I'll check it out. I'm already using Hunchentoot, CL-WHO, and Drakma -- I might as well complete the set. ;-)
Is SSI something that you think Hunchentoot should support? If so, I could spare a few hours here and there to look into adding it.
Thanks,
Patrick
On Sep 21, 2012, at 12:45 AM, Hans Hübner hans.huebner@gmail.com wrote:
On Fri, Sep 21, 2012 at 12:07 AM, Patrick May patrick.may@mac.com wrote:
Does Hunchentoot support server side includes in static web pages? If so, what do I need to do to enable the functionality?
Hunchentoot has no server side include functionality. html-template (http://weitz.de/html-template/) is a solution to that.
-Hans
tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel
On Fri, Sep 21, 2012 at 1:28 PM, Patrick May patrick.may@mac.com wrote:
Thanks, I'll check it out. I'm already using Hunchentoot, CL-WHO, and Drakma -- I might as well complete the set. ;-) Is SSI something that you think Hunchentoot should support? If so, I could spare a few hours here and there to look into adding it.
I'm not sure if an SSI implementation would actually benefit from being integrated into Hunchentoot - As far as I understand (from http://en.wikipedia.org/wiki/Server_Side_Includes), SSI might as well be implemented as an add-on feature. Keeping it in a separate package would have the advantage that it would not be constrained by Hunchentoot's style of implementation and documentation.
If you need it, just implement it and if there is a good reason to make it part of Hunchentoot, let's discuss.
-Hans