31 Mar
2005
31 Mar
'05
5:59 p.m.
On Thu, Mar 31, 2005 at 11:38:59AM -0600, Andy Yates wrote:
Am I going to have to write a python script to call the style sheet page template and change the content type or is there a better way to handle this?
Page Templates are awkward to use for non-XML output. I never tried to use them for stylesheets. fwiw, I have good results using DTML Methods for my dynamic stylesheets. It's about the only thing I use DTML for anymore. Mine look roughly like this: <dtml-with SomethingThatGivesMeABunchOfProperties> body { background-color: &dtml-mainBackgroundColor;; color: &dtml-mainTextColor;; } /* more style rules follow */ ... </dtml-with> -- Paul Winkler http://www.slinkp.com