On 2008-03-03, Joshua Slive wrote:
> On Mon, Mar 3, 2008 at 1:05 AM, Daniel Aleksandersen
>
> <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> >  Taken from the example were the Accept-Language (and it qualifiers)
> > HTTP header is overridden by a cookie set in the user's browser; from
> > http://httpd.apache.org/docs/2.2/content-negotiation.html#better :
> > SetEnvIf Cookie "lang=(.+)" prefer-language=$1 Header append Vary
> > cookie
> >
> >  But can this be done with the Accept HTTP header as well? Is there
> > an environmental variable that can be used to override the default
> > negotiation method for the Content-Type as well? I had visioned
> > something like the below, but I have not found anything in the
> > documentation. SetEnvIf Cookie "type=(.+)" prefer-type=$1 Header
> > append Vary cookie
> >
> >  If this is an undocumented or unsupported feature… How can I achieve
> > the same result using other approaches? Basically I want to offer the
> > user a way to override the default content negotiation method. Like
> > with the prefer-language option.
>
> No, there is no similar environment variable to override type
> selection.
>
> If you don't need full content negotiation -- that is, you are able to
> boil your selection algorithm down to a few simple rules and you don't
> need to worry about preference priorities, etc -- then you can use
> mod_rewrite to do this based on the Accept header and the cookie.

So I cannot achieve this using the content negotiation module? That is a 
shame. I do rely on the preference priorities, and how mod_negotiation 
resolves local file names and URIs.

If I somehow knew that one magical regex that would deal with preference 
priorities and language handlers just as good as mod_negotiation… Then I 
could replace it. Hehe.

…or maybe it is possible to check for a cookie, and if that fails (meaning 
no override) than the mod_negotiation process would start. I have no idea 
how this would look in a .htaccess file.

What I am looking for is way to respect the user’s wish to consistently 
override their browser’s preferences. The ugly fix is to link directly to 
the file. But that will cause problems with the languages. :-/
-- 
Daniel’s open source notebook – http://www.opensource-notebook.com/

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to