Modified: CalendarServer/trunk/twistedcaldav/config.py (1502 => 1503)
--- CalendarServer/trunk/twistedcaldav/config.py 2007-04-27 22:20:45 UTC (rev 1502)
+++ CalendarServer/trunk/twistedcaldav/config.py 2007-04-28 01:07:43 UTC (rev 1503)
@@ -177,8 +177,9 @@
# crypto operations and shared by multiple server processes
"SharedSecret": "",
- # Support for the gzip Content-Encoding as specified in RFC2616 Section 3.5
- "GZipEncoding": True,
+ # Support for Content-Encoding compression options as specified in
+ # RFC2616 Section 3.5
+ "ResponseCompression": True,
}
class Config (object):
Modified: CalendarServer/trunk/twistedcaldav/root.py (1502 => 1503)
--- CalendarServer/trunk/twistedcaldav/root.py 2007-04-27 22:20:45 UTC (rev 1502)
+++ CalendarServer/trunk/twistedcaldav/root.py 2007-04-28 01:07:43 UTC (rev 1503)
@@ -53,7 +53,7 @@
self.contentFilters = []
- if config.GZipEncoding:
+ if config.ResponseCompression:
from twisted.web2.filter import gzip
self.contentFilters.append((gzip.gzipfilter, True))