Hello everyone!
I am trying to make my server send gzipped data. I have a grok application that runs over Paste (Paste-1.7.2-py2.4.egg)
I have been trying to google how to make all that environment to serve data in gzip... But without success... I think the answer comes in http://pythonpaste.org/modules/gzipper.html but if I do this:
    [app:myAppsName]
    use = egg:grokserver
    filter-with = translogger
    filter-with = fileupload
    filter-with = gzip
    [filter:fileupload]
    use = egg:grokserver#fileupload
    [filter:gzip]
    use = egg:Paste#gzip
    [server:main]
    use = egg:Paste#http
    host = 0.0.0.0    
    port = 8080
it doesn't seem to do anything...
Thank you in advance!