from gluon.contrib.htmlminify import minify
retrun minify(response.render(...))
Yet I am not sure this will provide any improvement over gzip http
responses. In fact the gzipping would be performed by the web server
and would result in smaller data and faster processing. It is
different for JS because there the minimization can take advantage
variable name rewriting.
What do other people think?
About gzipping. It is not true that the webserver does the gzipping
at least not every combination of frontend/backend.
1) Rocket does gzipping?
2) Apache + wsgi does gzipping?
3) <server> + fcgi does gzipping?
What I know for sure is <server> + SCGI does gzipping: I wrote it so
that uses wsgitools wsgi gzip application.
I also think UWSGI does the gzip.
The server usually gzips only static files. Anyway I think that
gzipping can be implemented in python with little overhead since it
uses the underlying C implementation.
mic
2012/2/3 Massimo Di Pierro <massimo....@gmail.com>:
So how do I turn minify on?
<script><!--
here be the javascript
--></script>
<script><!-- var whatever, errors on this first line because of the leading '<!--' on the same line as script source --></script>
Hmm... Go to listacaiu.com and view source code of the main page..