6
votes
3answers
209 views
How does server side GZipping work?
You might know that HTML related file formats are compressed using GZip compression, server side, (by mod_gzip on Apache servers), and are decompressed by compatible browsers. ("content encoding")
…
6
votes
5answers
1k views
How can I pre-compress files with mod_deflate in Apache 2.x?
I am serving all content through apache with Content-Encoding: zip but that compresses on the fly. A good amount of my content is static files on the disk. I want to gzip the files beforehand rather …
4
votes
4answers
568 views
What content encoding does a Perl CGI script use by default?
Hi there,
I'm modifying a mature CGI application written in Perl and the question of content encoding has come up. The browser reports that the content is iso-8859-1 encoded and the application is …
2
votes
4answers
291 views
How can I accept gzip-compressed content using LWP::UserAgent?
I am fetching some pages over the Web using Perl's LWP::UserAgent and would like to be as polite as possible. By default, LWP::UserAgent does not seamlessly handle compressed content via gzip. Is …
2
votes
2answers
180 views
Transparently Handling GZip Encoded content with WWW::Mechanize
Hi,
I am using WWW::Mechanize and currently handling HTTP responses with the 'Content-Encoding: gzip' header in my code by first checking the response headers and then using IO::Uncompress::Gunzip to …
2
votes
2answers
232 views
How do HTTP proxy caches decide between serving identity- vs. gzip-encoded resources?
An HTTP server uses content-negotiation to serve a single URL identity- or gzip-encoded based on the client's Accept-Encoding header.
Now say we have a proxy cache like squid between clients and the …
0
votes
1answer
13 views
Does internet Explorer 7 honour the Vary header by caching properly?
I'm using a technique similar to Rick Strahls example, but have notcied using google's speed tracer that
Resource Caching : @10.88s - The following resources specify a "Vary" header that disables …
0
votes
1answer
42 views
How do I differentiate between request and response in an HTTPURLConnection?
Hi I need to evaluate if a server supports gzip compression.
Therefore I want to set gzip as Accept-Encoding in my request and evaluate if the response of the server containts "Content-Encoding: …
0
votes
2answers
156 views
Android: HTTP communication should use “Accept-Encoding: gzip”
I've a HTTP communication to a webserver requesting JSON data. I'd like compress this data stream with Content-Encoding: gzip. Is there a way I can set Accept-Encoding: gzip in my HttpClient? The …
0
votes
2answers
106 views
Reasons why gzipped content might not be grokked by the browser
I'm attempting to serve static resources (css and javascript) as cached gzipped files for performance reasons.
The pages look gzipped when rendered, the Content-Encoding is correctly set to gzip …
0
votes
1answer
25 views
Media Encoding
I have to choose methods for digitizing and encoding media for a project which collects media from a variety of sources.
What are the open media encoding standards I should consider?
What could be the …
0
votes
1answer
146 views
Can you translate php function quoted_printable_decode() to an NSString-based, objective-C function / category method?
In http://php.net/quoted_printable_decode, I found ways to do it using preg_replace. Anyone who knows any code that could convert a normal NSString to something RFC 2045 section 6.7?
Thanks in …
0
votes
3answers
532 views
Setting iso-8859-1 instead of utf-8 in oscommerce / sts template website ?
In an oscommerce site I have the following:
Server response = Content-type: text/html;charset=UTF-8
and I want: Content-type: text/html;charset=ISO-8859-1
How and where do I set this up.
Html …
0
votes
3answers
215 views
Why do Umlauts and special characters not show up correctly in my Grails pages?
How do I make sure the correct encoding (UTF-8) is used by Grails?
0
votes
1answer
446 views
How to get the charset from an HTML page
Hi all,
I'm trying to get the charset attribute in any HTML meta tag.
(ie.< meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" >)
Is there any way to do that in C++ under linux. …
