<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to bugs</title><link href="https://sourceforge.net/p/hevea/bugs/" rel="alternate"/><link href="https://sourceforge.net/p/hevea/bugs/feed.atom" rel="self"/><id>https://sourceforge.net/p/hevea/bugs/</id><updated>2006-07-27T14:18:44Z</updated><subtitle>Recent changes to bugs</subtitle><entry><title>ACCEPT_LANGUAGE</title><link href="https://sourceforge.net/p/hevea/bugs/1/" rel="alternate"/><published>2006-07-27T14:18:44Z</published><updated>2006-07-27T14:18:44Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.net0df11fab3506b830040229838a2020c82837cc38</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Hello, I'm working with your hevea http server,&lt;br /&gt;
congratulations for you job.&lt;/p&gt;
&lt;p&gt;I do a change because I need the ACCEPT_LANGUAGE's&lt;br /&gt;
defined by the user i nthe header, but hevea truncate&lt;br /&gt;
this list of languages. For example:&lt;/p&gt;
&lt;p&gt;Accept-Language:&lt;br /&gt;
es,&lt;br /&gt;
ca;q=0.8,&lt;br /&gt;
en-gb;q=0.7,&lt;br /&gt;
en-us;q=0.5,&lt;br /&gt;
sk;q=0.3,&lt;br /&gt;
or;q=0.2&lt;/p&gt;
&lt;p&gt;hevea take: es,ca&lt;/p&gt;
&lt;p&gt;and remove: q=0.8,en-gb;q=0.7,en-us;q=0.5,sk;q=0.3,or;q=0.2&lt;/p&gt;
&lt;p&gt;I paste the code of the change.&lt;/p&gt;
&lt;p&gt;old code:&lt;br /&gt;
if (languages.Length &amp;gt; 0) mLanguages =&lt;br /&gt;
languages.Replace(" ",&lt;br /&gt;
string.Empty).Split(';')[0].Split(',');&lt;/p&gt;
&lt;p&gt;new code:&lt;br /&gt;
if (languages.Length &amp;gt; 0) mLanguages =&lt;br /&gt;
languages.Replace(" ", string.Empty).Split(',');&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>