diff -u -r -N squid-3.1.15/ChangeLog squid-3.1.16/ChangeLog
--- squid-3.1.15/ChangeLog	2011-08-28 19:53:14.000000000 +1200
+++ squid-3.1.16/ChangeLog	2011-10-13 21:30:05.000000000 +1300
@@ -1,3 +1,16 @@
+Changes to squid-3.1.16 (14 Oct 2011):
+
+	- Bug 3373: invalid URL in ERR_CACHE_ACCESS_DENIED
+	- Bug 3368: Unhandled exceptions are not logged (workaround)
+	- Bug 3326: miss_access incorrect default
+	- Bug 3320: miss_access description confusing
+	- Bug 3241: squid_kerb_auth cross compilation fix
+	- Bug 3237: seq fault in free() from rfc1035RRDestroy
+	- Bug 3190: Large HTTP POST stuck after early ICAP 400 error response 
+	- db_auth: display available DSN drivers on connect error
+	- Updated OpenSSL 1.0.0 version checks
+	- ... and several documentation fixes
+
 Changes to squid-3.1.15 (28 Aug 2011):
 
 	- Regression fix: vhost and defaultsite causing vport to be ignored
@@ -140,7 +153,6 @@
 	- ... and updated documentation
 	- ... and some code optimization/simplification polish
 
->>>>>>> MERGE-SOURCE
 Changes to squid-3.1.9 (25 Oct 2010):
 
 	- Bug 3088: dnsserver is segfaulting
diff -u -r -N squid-3.1.15/configure squid-3.1.16/configure
--- squid-3.1.15/configure	2011-08-28 19:54:06.000000000 +1200
+++ squid-3.1.16/configure	2011-10-13 21:38:19.000000000 +1300
@@ -1,7 +1,7 @@
 #! /bin/sh
 # From configure.ac Revision.
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for Squid Web Proxy 3.1.15.
+# Generated by GNU Autoconf 2.68 for Squid Web Proxy 3.1.16.
 #
 # Report bugs to <http://www.squid-cache.org/bugs/>.
 #
@@ -575,8 +575,8 @@
 # Identity of this package.
 PACKAGE_NAME='Squid Web Proxy'
 PACKAGE_TARNAME='squid'
-PACKAGE_VERSION='3.1.15'
-PACKAGE_STRING='Squid Web Proxy 3.1.15'
+PACKAGE_VERSION='3.1.16'
+PACKAGE_STRING='Squid Web Proxy 3.1.16'
 PACKAGE_BUGREPORT='http://www.squid-cache.org/bugs/'
 PACKAGE_URL=''
 
@@ -1540,7 +1540,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures Squid Web Proxy 3.1.15 to adapt to many kinds of systems.
+\`configure' configures Squid Web Proxy 3.1.16 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1610,7 +1610,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of Squid Web Proxy 3.1.15:";;
+     short | recursive ) echo "Configuration of Squid Web Proxy 3.1.16:";;
    esac
   cat <<\_ACEOF
 
@@ -1941,7 +1941,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-Squid Web Proxy configure 3.1.15
+Squid Web Proxy configure 3.1.16
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2952,7 +2952,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by Squid Web Proxy $as_me 3.1.15, which was
+It was created by Squid Web Proxy $as_me 3.1.16, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -3771,7 +3771,7 @@
 
 # Define the identity of the package.
  PACKAGE='squid'
- VERSION='3.1.15'
+ VERSION='3.1.16'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -28143,7 +28143,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by Squid Web Proxy $as_me 3.1.15, which was
+This file was extended by Squid Web Proxy $as_me 3.1.16, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -28209,7 +28209,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-Squid Web Proxy config.status 3.1.15
+Squid Web Proxy config.status 3.1.16
 configured by $0, generated by GNU Autoconf 2.68,
   with options \\"\$ac_cs_config\\"
 
diff -u -r -N squid-3.1.15/configure.ac squid-3.1.16/configure.ac
--- squid-3.1.15/configure.ac	2011-08-28 19:54:06.000000000 +1200
+++ squid-3.1.16/configure.ac	2011-10-13 21:38:19.000000000 +1300
@@ -2,7 +2,7 @@
 dnl
 dnl  $Id$
 dnl
-AC_INIT([Squid Web Proxy],[3.1.15],[http://www.squid-cache.org/bugs/],[squid])
+AC_INIT([Squid Web Proxy],[3.1.16],[http://www.squid-cache.org/bugs/],[squid])
 AC_PREREQ(2.61)
 AC_CONFIG_HEADERS([include/autoconf.h])
 AC_CONFIG_AUX_DIR(cfgaux)
diff -u -r -N squid-3.1.15/errors/af/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/af/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/af/ERR_CACHE_ACCESS_DENIED	2011-08-28 19:55:08.000000000 +1200
+++ squid-3.1.16/errors/af/ERR_CACHE_ACCESS_DENIED	2011-10-13 21:49:09.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>FOUT: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Toegang geweier.</h2> </div> <hr>  <div id="content"> <p>Die volgende fout is teëgekom tydens verkryging van die URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Toegang tot kasgeheue geweier.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself or <a href="http://%h/cgi-bin/chpasswd.cgi">change</a> your default password.</p>  <br> </div>  <hr>  <div id="footer"> <p>Gegenereer op %T deur %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>FOUT: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Toegang geweier.</h2> </div> <hr>  <div id="content"> <p>Die volgende fout is teëgekom tydens verkryging van die URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Toegang tot kasgeheue geweier.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Gegenereer op %T deur %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/ar/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/ar/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/ar/ERR_CACHE_ACCESS_DENIED	2011-08-28 19:55:25.000000000 +1200
+++ squid-3.1.16/errors/ar/ERR_CACHE_ACCESS_DENIED	2011-10-13 21:52:07.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>خطأ: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Access Denied.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Cache Access Denied.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself or <a href="http://%h/cgi-bin/chpasswd.cgi">change</a> your default password.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>خطأ: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Access Denied.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Cache Access Denied.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/az/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/az/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/az/ERR_CACHE_ACCESS_DENIED	2011-08-28 19:55:42.000000000 +1200
+++ squid-3.1.16/errors/az/ERR_CACHE_ACCESS_DENIED	2011-10-13 21:54:12.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>SƏHV: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Giriş qadağandır.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Keşdən istifadə qadağandır</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>İdentifikasiya ilə çətinlik olduğu halda, xahiş edirik, <a href="mailto:%w%W">KEŞİN sistem administratoru </a> ilə əlaqə saxlayın və ya <a href="http://%h/cgi-bin/chpasswd.cgi">şifrənizi</a> dəyişdirin.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>SƏHV: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Giriş qadağandır.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Keşdən istifadə qadağandır</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/bg/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/bg/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/bg/ERR_CACHE_ACCESS_DENIED	2011-08-28 19:55:59.000000000 +1200
+++ squid-3.1.16/errors/bg/ERR_CACHE_ACCESS_DENIED	2011-10-13 21:56:04.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ГРЕШКА: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Отказан достъп</h2> </div> <hr>  <div id="content"> <p>Възникна следната грешка при опит за достъп до: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Отказан достъп до кешираните данни.</b></p> </blockquote>  <p>Съжалявам, не Ви е позволен достъп до %U от този кеш докато не представите своето име и парола за достъп.</p>  <p>Моля обърнете се към <a href="mailto:%w%W">администратора</a> ако имате проблем с достъпа или <a href="http://%h/cgi-bin/chpasswd.cgi">сменете</a> паролата си.</p>  <br> </div>  <hr>  <div id="footer"> <p>Генерирано на %T от %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ГРЕШКА: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Отказан достъп</h2> </div> <hr>  <div id="content"> <p>Възникна следната грешка при опит за достъп до: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Отказан достъп до кешираните данни.</b></p> </blockquote>  <p>Съжалявам, не Ви е позволен достъп до %U от този кеш докато не представите своето име и парола за достъп.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Генерирано на %T от %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/ca/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/ca/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/ca/ERR_CACHE_ACCESS_DENIED	2011-08-28 19:56:17.000000000 +1200
+++ squid-3.1.16/errors/ca/ERR_CACHE_ACCESS_DENIED	2011-10-13 21:58:07.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERROR: Acc&eacute;s denegat a la cache</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Acc&eacute;s no autoritzat.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Acc&eacute;s denegat a la cache</b></p> </blockquote>  <p>L'acc&eacute;s a l'objecte %U no est&agrave; perm&egrave;s sense autentificaci&oacute; pr&egrave;via.</p>  <p>Contacteu ambel vostre <a href="mailto:%w%W">administrador de <i>cache</i></a> si teniudificultats per a autentificar-vos o <a href="http://%h/cgi-bin/chpasswd.cgi">canvieu</a> la vostra contrasenya.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERROR: Acc&eacute;s denegat a la cache</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Acc&eacute;s no autoritzat.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Acc&eacute;s denegat a la cache</b></p> </blockquote>  <p>L'acc&eacute;s a l'objecte %U no est&agrave; perm&egrave;s sense autentificaci&oacute; pr&egrave;via.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/cs/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/cs/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/cs/ERR_CACHE_ACCESS_DENIED	2011-08-28 19:56:34.000000000 +1200
+++ squid-3.1.16/errors/cs/ERR_CACHE_ACCESS_DENIED	2011-10-13 21:59:50.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>CHYBA: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Přístup odepřen.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Přístup k cache odepřen.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>V případě problému se prosím obraťte na <a href="mailto:%w%W">cache administratora</a> nebo si změňte <a href="http://%h/cgi-bin/chpasswd.cgi">heslo</a>.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>CHYBA: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Přístup odepřen.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Přístup k cache odepřen.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/da/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/da/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/da/ERR_CACHE_ACCESS_DENIED	2011-08-28 19:56:51.000000000 +1200
+++ squid-3.1.16/errors/da/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:02:40.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>FEJL: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Adgang N&aelig;gtet.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Cache Adgang N&aelig;gtet.</b></p> </blockquote>  <p>Du har desv&aelig;rre ikke lov til at hente %U fra denne cache f&oslash;rend du har autenticieret dig selv.</p>  <p>Kontakt <a href="mailto:%w%W">cache administratoren</a> hvis du har problemer med at autenticiere dig eller <a href="http://%h/cgi-bin/chpasswd.cgi">skift</a> dit password.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>FEJL: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Adgang N&aelig;gtet.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Cache Adgang N&aelig;gtet.</b></p> </blockquote>  <p>Du har desv&aelig;rre ikke lov til at hente %U fra denne cache f&oslash;rend du har autenticieret dig selv.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/de/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/de/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/de/ERR_CACHE_ACCESS_DENIED	2011-08-28 19:57:09.000000000 +1200
+++ squid-3.1.16/errors/de/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:04:54.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>FEHLER: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Zugriff verweigert.</h2> </div> <hr>  <div id="content"> <p>Der folgende Fehler wurde beim Versuch die URL <a href="%U">%U</a> zu holen festgestellt:</p>  <blockquote id="error"> <p><b>Cache Zugriff verweigert.</b></p> </blockquote>  <p>Sie sind momentan nicht berechtigt %U von diesem Cache abzurufen, bis sie sich authentifiziert haben.</p>  <p>Bitte kontaktieren sie den <a href="mailto:%w%W">Cache Administrator</a> Falls sie Schwierigkeiten haben sich zu authentifizieren oder <a href="http://%h/cgi-bin/chpasswd.cgi">ändern</a> sie ihr Standardpasswort.</p>  <br> </div>  <hr>  <div id="footer"> <p>Erzeugt am %T von %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>FEHLER: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Zugriff verweigert.</h2> </div> <hr>  <div id="content"> <p>Der folgende Fehler wurde beim Versuch die URL <a href="%U">%U</a> zu holen festgestellt:</p>  <blockquote id="error"> <p><b>Cache Zugriff verweigert.</b></p> </blockquote>  <p>Sie sind momentan nicht berechtigt %U von diesem Cache abzurufen, bis sie sich authentifiziert haben.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Erzeugt am %T von %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/el/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/el/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/el/ERR_CACHE_ACCESS_DENIED	2011-08-28 19:57:26.000000000 +1200
+++ squid-3.1.16/errors/el/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:07:30.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ΣΦΑΛΜΑ: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Απαγορεύεται η Πρόσβαση.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Απαγορεύεται η Πρόσβαση στο Μεσολαβητή.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Επικοινωνήστε με τον <a href="mailto:%w%W">διαχειριστή του μεσολαβητή σας</a> αν αντιμετωπίζετε δυσκολία να πιστοποιήσετε τον λογαριασμό σας ή να <a href="http://%h/cgi-bin/chpasswd.cgi">αλλάξτε</a> τον κωδικό σας.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ΣΦΑΛΜΑ: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Απαγορεύεται η Πρόσβαση.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Απαγορεύεται η Πρόσβαση στο Μεσολαβητή.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/en/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/en/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/en/ERR_CACHE_ACCESS_DENIED	2011-08-28 19:57:43.000000000 +1200
+++ squid-3.1.16/errors/en/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:08:48.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERROR: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Access Denied.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Cache Access Denied.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself or <a href="http://%h/cgi-bin/chpasswd.cgi">change</a> your default password.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERROR: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Access Denied.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Cache Access Denied.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/es/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/es/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/es/ERR_CACHE_ACCESS_DENIED	2011-08-28 19:58:01.000000000 +1200
+++ squid-3.1.16/errors/es/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:09:59.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERROR: Acceso Denegado a la Caché</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Acceso Denegado</h2> </div> <hr>  <div id="content"> <p>Se encontró el siguiente error al intentar recuperar la dirección URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Acceso Denegado a la Caché</b></p> </blockquote>  <p>Lo lamento, tu no estás autorizado a solicitar %U de este caché hasta que te hayas autenticado.</p>  <p>Por favor contacte al <a href="mailto:%w%W">administrador del cach&eacute;</a> si tiene dificultad para autenticarse o <a href="http://%h/cgi-bin/chpasswd.cgi">cambie</a> su password.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generado %T por %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERROR: Acceso Denegado a la Caché</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Acceso Denegado</h2> </div> <hr>  <div id="content"> <p>Se encontró el siguiente error al intentar recuperar la dirección URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Acceso Denegado a la Caché</b></p> </blockquote>  <p>Lo lamento, tu no estás autorizado a solicitar %U de este caché hasta que te hayas autenticado.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generado %T por %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/et/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/et/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/et/ERR_CACHE_ACCESS_DENIED	2011-08-28 19:58:18.000000000 +1200
+++ squid-3.1.16/errors/et/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:11:38.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>VIGA: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Juurdep&auml;&auml;s keelatud.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Vahemälu serveri kasutamine keelatud.</b></p> </blockquote>  <p>abandust, teil pole &otilde;igust p&auml;ringule %U kuni te pole l&auml;binud autoriseerimist.</p>  <p>Palun kontakteeruge <a href="mailto:%w%W">vahemälu serveri administraatoriga</a>, kui teil on probleeme autoriseerimisega v&otilde;i<a href="http://%h/cgi-bin/chpasswd.cgi">vahetage</a> oma parool.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>VIGA: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Juurdep&auml;&auml;s keelatud.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Vahemälu serveri kasutamine keelatud.</b></p> </blockquote>  <p>abandust, teil pole &otilde;igust p&auml;ringule %U kuni te pole l&auml;binud autoriseerimist.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/fa/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/fa/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/fa/ERR_CACHE_ACCESS_DENIED	2011-08-28 19:58:35.000000000 +1200
+++ squid-3.1.16/errors/fa/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:13:03.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>خطا: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache دسترسی رد شد.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>دسترسی به نهانگاه رد شد.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>لطفا در صورت داشتن مشکلاتی در زمینه شناسایی خودتان با <a href="mailto:%w%W">cache administrator</a> تماس حاصل فرمایید یا از طریق <a href="http://%h/cgi-bin/chpasswd.cgi">تغییر</a> رمز خود مشکل را حل نمایید.</p>  <br> </div>  <hr>  <div id="footer"> <p>%T توسط %h(%s) تولید شد.</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>خطا: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache دسترسی رد شد.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>دسترسی به نهانگاه رد شد.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>%T توسط %h(%s) تولید شد.</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/fi/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/fi/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/fi/ERR_CACHE_ACCESS_DENIED	2011-08-28 19:58:52.000000000 +1200
+++ squid-3.1.16/errors/fi/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:14:27.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>VIRHE: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Pääsy evätty.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Pääsy välityspalvelimeen evätty.</b></p> </blockquote>  <p>Sinulla ei tällä hetkellä ole oikeutta pyytää osoitetta %U tästä välityspalvelimesta ennen kuin olet todentanut henkilöllisyytesi.</p>  <p>Jos sinulla on hankaluuksia hekilöllisyytesi todentamisessa, ota yhteyttä <a href="mailto:%w%W">välityspalvelimen ylläpitoon</a> tai <a href="http://%h/cgi-bin/chpasswd.cgi">vaihda</a> oletussalasanasi.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>VIRHE: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Pääsy evätty.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Pääsy välityspalvelimeen evätty.</b></p> </blockquote>  <p>Sinulla ei tällä hetkellä ole oikeutta pyytää osoitetta %U tästä välityspalvelimesta ennen kuin olet todentanut henkilöllisyytesi.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/fr/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/fr/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/fr/ERR_CACHE_ACCESS_DENIED	2011-08-28 19:59:10.000000000 +1200
+++ squid-3.1.16/errors/fr/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:15:54.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERREUR: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Accès interdit.</h2> </div> <hr>  <div id="content"> <p>En essayant d'accéder à l'URL <a href="%U">%U</a> l'erreur suivante a été rencontrée :</p>  <blockquote id="error"> <p><b>Accès au cache interdit.</b></p> </blockquote>  <p>Désolé, vous n'êtes pas autorisé à demander la requête %U de ce cache tant que vous ne vous serez pas identifié.</p>  <p>S'il vous plait, contacter <a href="mailto:%w%W">administrateur du proxy</a> si vous avez des difficultés pour vous authentifier ou pour <a href="http://%h/cgi-bin/chpasswd.cgi">changez</a> votre mot de passe par défaut.</p>  <br> </div>  <hr>  <div id="footer"> <p>Générer le %T en %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERREUR: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Accès interdit.</h2> </div> <hr>  <div id="content"> <p>En essayant d'accéder à l'URL <a href="%U">%U</a> l'erreur suivante a été rencontrée :</p>  <blockquote id="error"> <p><b>Accès au cache interdit.</b></p> </blockquote>  <p>Désolé, vous n'êtes pas autorisé à demander la requête %U de ce cache tant que vous ne vous serez pas identifié.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Générer le %T en %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/he/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/he/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/he/ERR_CACHE_ACCESS_DENIED	2011-08-28 19:59:27.000000000 +1200
+++ squid-3.1.16/errors/he/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:17:24.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>שגיאה: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache הגישה נדחית</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>גישה ל-Cache נדחית</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself or <a href="http://%h/cgi-bin/chpasswd.cgi">change</a> your default password.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>שגיאה: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache הגישה נדחית</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>גישה ל-Cache נדחית</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/hu/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/hu/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/hu/ERR_CACHE_ACCESS_DENIED	2011-08-28 19:59:44.000000000 +1200
+++ squid-3.1.16/errors/hu/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:18:38.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>HIBA: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Hozzáférés megtagadva.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Cache hozzáférés megtagadva.</b></p> </blockquote>  <p>Sajnos az alábbi URL-t nem töltheti le cache szerverünktől %U amíg nem jelentkezik be rendszerünkbe.</p>  <p>Kérjük, forduljon a <a href="mailto:%w%W">cache adminisztrátorhoz</a> amennyiben nem sikerül bejelentkeznie vagy <a ref="http://%h/cgi-bin/chpasswd.cgi">megváltoztatnia</a>eredetileg beállított jelszavát.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>HIBA: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Hozzáférés megtagadva.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Cache hozzáférés megtagadva.</b></p> </blockquote>  <p>Sajnos az alábbi URL-t nem töltheti le cache szerverünktől %U amíg nem jelentkezik be rendszerünkbe.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/hy/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/hy/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/hy/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:00:02.000000000 +1200
+++ squid-3.1.16/errors/hy/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:19:57.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ՍԽԱԼ: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Մուտքն արգելված է.</h2> </div> <hr>  <div id="content"> <p>URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Մուտքը քեշին արգելված է.</b></p> </blockquote>  <p>Ներողություն,Դուք չեք կարող իրականացնել հետևյալ հարցումը %U մինչև աութենտիֆիկացիան չանցնեք.</p>  <p>Խնդիրներ առաջանալու դեպքում խնդրվում է դիմել<a href="mailto:%w%W">քեշի կառավարիչին</a> կամ <a href="http://%h/cgi-bin/chpasswd.cgi">փոխել</a> Ձեր ընթացիկ գաղտնաբառը.</p>  <br> </div>  <hr>  <div id="footer"> <p>Ստեղծված է %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ՍԽԱԼ: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Մուտքն արգելված է.</h2> </div> <hr>  <div id="content"> <p>URL-ի ստացման ընթացքում առաջացավ հետևյալ սխալը: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Մուտքը քեշին արգելված է.</b></p> </blockquote>  <p>Ներողություն,Դուք չեք կարող իրականացնել հետևյալ հարցումը %U մինչև աութենտիֆիկացիան չանցնեք.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Ստեղծված է %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/id/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/id/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/id/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:00:19.000000000 +1200
+++ squid-3.1.16/errors/id/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:21:45.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERROR: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Akses Ditolak</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Akses Cache Ditolak</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself or <a href="http://%h/cgi-bin/chpasswd.cgi">change</a> your default password.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERROR: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Akses Ditolak</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Akses Cache Ditolak</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/it/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/it/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/it/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:00:36.000000000 +1200
+++ squid-3.1.16/errors/it/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:23:41.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERRORE: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Accesso negato.</h2> </div> <hr>  <div id="content"> <p>Mentre si cercava di accedere alla URL <a href="%U">%U</a> si è presentato il seguente errore:</p>  <blockquote id="error"> <p><b>Accesso alla cache negato.</b></p> </blockquote>  <p>Per richiedere %U da questa cache è necessario prima identificarsi.</p>  <p>Si prega di contattare il <a href="mailto:%w%W">gestore del vostro proxy</a> se avete diffcoltà nell'identificarvi per l'accesso al servizio, o di <a href="http://%h/cgi-bin/chpasswd.cgi">cambiare</a> la vostra password iniziale.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generato da %h (%s) il %T.</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERRORE: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Accesso negato.</h2> </div> <hr>  <div id="content"> <p>Mentre si cercava di accedere alla URL <a href="%U">%U</a> si è presentato il seguente errore:</p>  <blockquote id="error"> <p><b>Accesso alla cache negato.</b></p> </blockquote>  <p>Per richiedere %U da questa cache è necessario prima identificarsi.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generato da %h (%s) il %T.</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/ja/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/ja/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/ja/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:00:54.000000000 +1200
+++ squid-3.1.16/errors/ja/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:25:46.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>エラー: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache アクセスを拒否されました。</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>キャッシュへのアクセスを拒否されました．</b></p> </blockquote>  <p>申し訳ありませんが、あなた自身の認証を済ませるまで、このキャッシュに %U をリクエストすることは現在許可されていません。</p>  <p>あなた自身の認証やデフォルトのパスワードの<a href="http://%h/cgi-bin/chpasswd.cgi">変更</a>困難な場合は、<a href="mailto:%w%W">キャッシュの管理者</a>に連絡してください。</p>  <br> </div>  <hr>  <div id="footer"> <p>%Tに%h (%s)が生成しました。</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>エラー: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache アクセスを拒否されました。</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>キャッシュへのアクセスを拒否されました．</b></p> </blockquote>  <p>申し訳ありませんが、あなた自身の認証を済ませるまで、このキャッシュに %U をリクエストすることは現在許可されていません。</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>%Tに%h (%s)が生成しました。</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/ko/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/ko/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/ko/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:01:11.000000000 +1200
+++ squid-3.1.16/errors/ko/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:27:50.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>에러: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache 서버 이용 요구가 거절되었습니다.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>캐쉬 이용 요청이 거절되었습니다.</b></p> </blockquote>  <p>죄송합니다. 이 캐쉬를 통해 다음 서비스를 받기 위해서는 %U 인증절차를 거쳐야 합니다.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself or <a href="http://%h/cgi-bin/chpasswd.cgi">change</a> your default password.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>에러: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache 서버 이용 요구가 거절되었습니다.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>캐쉬 이용 요청이 거절되었습니다.</b></p> </blockquote>  <p>죄송합니다. 이 캐쉬를 통해 다음 서비스를 받기 위해서는 %U 인증절차를 거쳐야 합니다.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/lt/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/lt/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/lt/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:01:28.000000000 +1200
+++ squid-3.1.16/errors/lt/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:29:33.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>KLAIDA: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Priėjimas draudžiamas.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Priėjimas prie kešo uždraustas.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Prašome susisiekti su <a href="mailto:%w%W">proxy administratoriumi</a>, jei jums kils sunkumai prisistatant arba <a href="http://%h/cgi-bin/chpasswd.cgi">pakeisti</a> savo slaptažodį.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>KLAIDA: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Priėjimas draudžiamas.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Priėjimas prie kešo uždraustas.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/lv/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/lv/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/lv/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:01:46.000000000 +1200
+++ squid-3.1.16/errors/lv/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:31:26.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Kļūda: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Pieeja liegta</h2> </div> <hr>  <div id="content"> <p>Iestājusies sekojoša kļūda mēģinot atvērt adresi: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Kešatmiņas pieeja liegta</b></p> </blockquote>  <p>Atvainojiet, Jums nav atļauts pieprasīt %U no kešatmiņas pirms neesat autentificējies.</p>  <p>Lūdzu sazinieties <a href="mailto:%w%W">kešatmiņas administratoru</a>, ja Jums ir problēmas ar autentifikāciju vai <a href="http://%h/cgi-bin/chpasswd.cgi">nomainiet</a> Jūsu paroli.</p>  <br> </div>  <hr>  <div id="footer"> <p>Ģenerēts %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Kļūda: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Pieeja liegta</h2> </div> <hr>  <div id="content"> <p>Iestājusies sekojoša kļūda mēģinot atvērt adresi: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Kešatmiņas pieeja liegta</b></p> </blockquote>  <p>Atvainojiet, Jums nav atļauts pieprasīt %U no kešatmiņas pirms neesat autentificējies.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Ģenerēts %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/ms/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/ms/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/ms/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:02:03.000000000 +1200
+++ squid-3.1.16/errors/ms/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:33:14.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>RALAT: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Akses Disekat</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Akses ke Cache disekat</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself or <a href="http://%h/cgi-bin/chpasswd.cgi">change</a> your default password.</p>  <br> </div>  <hr>  <div id="footer"> <p>Dibuat pada %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>RALAT: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Akses Disekat</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Akses ke Cache disekat</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Dibuat pada %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/nl/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/nl/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/nl/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:02:20.000000000 +1200
+++ squid-3.1.16/errors/nl/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:35:27.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>FOUT: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Toegang niet toegestaan.</h2> </div> <hr>  <div id="content"> <p>De volgende fout is opgetreden tijdens het ophalen van URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Cache toegang niet toegestaan.</b></p> </blockquote>  <p>Sorry, het is u niet toegestaan om %U van deze cache op te vragen totdat u zich geidentificeerd hebt.</p>  <p>Neem contact op met de <a href="mailto:%w%W">cache beheerder</a> als u problemen heeft met authenticatie of <a href="http://%h/cgi-bin/chpasswd.cgi">verander</a> hier uw standaard wachtwoord.</p>  <br> </div>  <hr>  <div id="footer"> <p>Gegenereerd %T door %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>FOUT: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Toegang niet toegestaan.</h2> </div> <hr>  <div id="content"> <p>De volgende fout is opgetreden tijdens het ophalen van URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Cache toegang niet toegestaan.</b></p> </blockquote>  <p>Sorry, het is u niet toegestaan om %U van deze cache op te vragen totdat u zich geidentificeerd hebt.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Gegenereerd %T door %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/oc/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/oc/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/oc/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:02:37.000000000 +1200
+++ squid-3.1.16/errors/oc/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:37:25.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERROR: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Accès interdich.</h2> </div> <hr>  <div id="content"> <p>L'error seguenta s'es producha en ensajant d'accedir a l'URL : <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Accès a l'amagatal interdich.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself or <a href="http://%h/cgi-bin/chpasswd.cgi">change</a> your default password.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generada lo %T per %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERROR: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Accès interdich.</h2> </div> <hr>  <div id="content"> <p>L'error seguenta s'es producha en ensajant d'accedir a l'URL : <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Accès a l'amagatal interdich.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generada lo %T per %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/pl/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/pl/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/pl/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:02:55.000000000 +1200
+++ squid-3.1.16/errors/pl/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:40:24.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>BŁĄD: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Dostęp zabroniony.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Dostęp do serwera cache zabroniony.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Skontaktuj się z <a href="mailto:%w%W">administratorem serwera cache</a> jeśli masz trudności z autoryzacją lub <a href="http://%h/cgi-bin/chpasswd.cgi">zmień</a> haslo.</p>  <br> </div>  <hr>  <div id="footer"> <p>Utworzono %T przez %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>BŁĄD: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Dostęp zabroniony.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Dostęp do serwera cache zabroniony.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Utworzono %T przez %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/pt/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/pt/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/pt/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:03:29.000000000 +1200
+++ squid-3.1.16/errors/pt/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:47:15.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERRO: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Proibido o Acesso.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Proibido o acesso ao Cache.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Por favor, contate o <a href="mailto:%w%W">administrador do cache</a> se você tiver dificuldades para se autenticar ou, <a href="http://%h/cgi-bin/chpasswd.cgi">altere</a> sua senha.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERRO: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Proibido o Acesso.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Proibido o acesso ao Cache.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/pt-br/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/pt-br/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/pt-br/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:03:12.000000000 +1200
+++ squid-3.1.16/errors/pt-br/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:43:35.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERRO: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Acesso Negado.</h2> </div> <hr>  <div id="content"> <p>O seguinte erro foi encontrado ao tentar recuperar a URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Acesso negado ao cache.</b></p> </blockquote>  <p>Desculpe. Atualmente, você não está permitido a requisitar %U desse cache até que você tenha se autenticado.</p>  <p>Por favor, contate o <a href="mailto:%w%W">administrador do cache</a> se você está tendo dificuldades em se autenticar ou <a href="http://%h/cgi-bin/chpasswd.cgi">mude</a> sua senha.</p>  <br> </div>  <hr>  <div id="footer"> <p>Gerado %T por %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERRO: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Acesso Negado.</h2> </div> <hr>  <div id="content"> <p>O seguinte erro foi encontrado ao tentar recuperar a URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Acesso negado ao cache.</b></p> </blockquote>  <p>Desculpe. Atualmente, você não está permitido a requisitar %U desse cache até que você tenha se autenticado.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Gerado %T por %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/ro/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/ro/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/ro/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:03:46.000000000 +1200
+++ squid-3.1.16/errors/ro/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:50:27.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>EROARE: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Acces interzis.</h2> </div> <hr>  <div id="content"> <p>S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Interzis accesul la cache.</b></p> </blockquote>  <p>Ne pare rău, nu aveţi momentan permisiunea să accesaţi %U din acest cache până când nu vă autentificaţi.</p>  <p>Vă rugăm contactaţi <a href="mailto:%w%W">administratorul cache-ului</a> dacă aveţi dificultăţi în a vă autentifica sau <a href="http://%h/cgi-bin/chpasswd.cgi">schimbaţi-vă</a> parola implicită.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generat %T de către %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>EROARE: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Acces interzis.</h2> </div> <hr>  <div id="content"> <p>S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Interzis accesul la cache.</b></p> </blockquote>  <p>Ne pare rău, nu aveţi momentan permisiunea să accesaţi %U din acest cache până când nu vă autentificaţi.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generat %T de către %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/ru/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/ru/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/ru/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:04:04.000000000 +1200
+++ squid-3.1.16/errors/ru/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:53:21.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ОШИБКА: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Доступ запрещён.</h2> </div> <hr>  <div id="content"> <p>При получении URL <a href="%U">%U</a> произошла следующая ошибка</p>  <blockquote id="error"> <p><b>Доступ к кэшу запрещён.</b></p> </blockquote>  <p>Извините, Вы не можете запросить %U из этого кэша до тех пор, пока не пройдёте аутентификацию.</p>  <p>Если у Вас возникли проблемы с аутентификацией, пожалуйста, свяжитесь с <a href="mailto:%w%W">администратором кэша</a> или <a href="http://%h/cgi-bin/chpasswd.cgi">смените</a> Ваш пароль по умолчанию.</p>  <br> </div>  <hr>  <div id="footer"> <p>Создано %T на %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ОШИБКА: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Доступ запрещён.</h2> </div> <hr>  <div id="content"> <p>При получении URL <a href="%U">%U</a> произошла следующая ошибка</p>  <blockquote id="error"> <p><b>Доступ к кэшу запрещён.</b></p> </blockquote>  <p>Извините, Вы не можете запросить %U из этого кэша до тех пор, пока не пройдёте аутентификацию.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Создано %T на %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/sk/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/sk/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/sk/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:04:21.000000000 +1200
+++ squid-3.1.16/errors/sk/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:56:12.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>CHYBA: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Prístup zamietnutý.</h2> </div> <hr>  <div id="content"> <p>Pri pokuse o získanie URL sa vyskytla nasledovná chyba: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Prístup ku cache zamietnutý.</b></p> </blockquote>  <p>Ľutujeme, prístup k dokumentu %U z cache vám bude povolený až po tom ako sa autentifikujete.</p>  <p>Ak máte problém pri autentifikácii, kontaktujte prosím <a href="mailto:%w%W">správcu cache</a> alebo si <a href="http://%h/cgi-bin/chpasswd.cgi">zmeňte</a> svoje predvolené heslo.</p>  <br> </div>  <hr>  <div id="footer"> <p>Vytvoril %T, %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>CHYBA: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Prístup zamietnutý.</h2> </div> <hr>  <div id="content"> <p>Pri pokuse o získanie URL sa vyskytla nasledovná chyba: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Prístup ku cache zamietnutý.</b></p> </blockquote>  <p>Ľutujeme, prístup k dokumentu %U z cache vám bude povolený až po tom ako sa autentifikujete.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Vytvoril %T, %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/sr-cyrl/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/sr-cyrl/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/sr-cyrl/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:04:38.000000000 +1200
+++ squid-3.1.16/errors/sr-cyrl/ERR_CACHE_ACCESS_DENIED	2011-10-13 22:58:35.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERROR: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Access Denied.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Cache Access Denied.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself or <a href="http://%h/cgi-bin/chpasswd.cgi">change</a> your default password.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERROR: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Access Denied.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Cache Access Denied.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/sr-latn/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/sr-latn/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/sr-latn/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:04:55.000000000 +1200
+++ squid-3.1.16/errors/sr-latn/ERR_CACHE_ACCESS_DENIED	2011-10-13 23:02:01.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>GREŠKA: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Pristup nije dozvoljen.</h2> </div> <hr>  <div id="content"> <p>Greška učitavanja podataka sa adrese (URL): <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Pristup proksi/keš serveru nije dozvoljen.</b></p> </blockquote>  <p>Na žalost nije vam dozvoljen da zahtev %U od ovog proksi servera ukoliko se ne autentifikujete.</p>  <p>Molimo kontaktirajte <a href="mailto:%w%W">keš administratora</a> ako imate problema sa autentifikacijom ili <a href="http://%h/cgi-bin/chpasswd.cgi">promenite</a> vašu šifru.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generisano %T sa %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>GREŠKA: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Pristup nije dozvoljen.</h2> </div> <hr>  <div id="content"> <p>Greška učitavanja podataka sa adrese (URL): <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Pristup proksi/keš serveru nije dozvoljen.</b></p> </blockquote>  <p>Na žalost nije vam dozvoljen da zahtev %U od ovog proksi servera ukoliko se ne autentifikujete.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generisano %T sa %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/sv/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/sv/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/sv/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:05:13.000000000 +1200
+++ squid-3.1.16/errors/sv/ERR_CACHE_ACCESS_DENIED	2011-10-13 23:05:40.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>FEL: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Tilltr&auml;de Nekas.</h2> </div> <hr>  <div id="content"> <p>F&ouml;ljande fel p&aring;tr&auml;ffades vid h&auml;mtning av URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Tilltr&auml;de till Cache Nekas.</b></p> </blockquote>  <p>Ledsen, Ni &auml;r f&ouml;rn&auml;rvarande ej ber&auml;ttigad att beg&auml;ra %U fr&aring;n denna cache tills det att Ni har autentifierat Er.</p>  <p>V&auml;nligen kontakta <a href="mailto:%w%W">cacheadministratorn</a> om Ni har sv&aring;righ eter med att autentifiera Er sj&auml;lv, eller <a href="http://%h/cgi-bin/chpasswd.cgi">byt</a> Ert l&ouml;senord.</p>  <br> </div>  <hr>  <div id="footer"> <p>Skapad %T av %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>FEL: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Tilltr&auml;de Nekas.</h2> </div> <hr>  <div id="content"> <p>F&ouml;ljande fel p&aring;tr&auml;ffades vid h&auml;mtning av URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Tilltr&auml;de till Cache Nekas.</b></p> </blockquote>  <p>Ledsen, Ni &auml;r f&ouml;rn&auml;rvarande ej ber&auml;ttigad att beg&auml;ra %U fr&aring;n denna cache tills det att Ni har autentifierat Er.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Skapad %T av %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/templates/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/templates/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/templates/ERR_CACHE_ACCESS_DENIED	2011-08-28 19:53:14.000000000 +1200
+++ squid-3.1.16/errors/templates/ERR_CACHE_ACCESS_DENIED	2011-10-13 21:30:05.000000000 +1300
@@ -25,7 +25,7 @@
 
 <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>
 
-<p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself or <a href="http://%h/cgi-bin/chpasswd.cgi">change</a> your default password.</p>
+<p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>
 
 <br>
 </div>
diff -u -r -N squid-3.1.15/errors/th/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/th/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/th/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:05:31.000000000 +1200
+++ squid-3.1.16/errors/th/ERR_CACHE_ACCESS_DENIED	2011-10-13 23:08:16.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERROR: การเรียกใช้ระบบแคชไม่ได้รับอนุญาต</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>การเรียกใช้ระบบแคชไม่ได้รับอนุญาต</h2> </div> <hr>  <div id="content"> <p>พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Cache Access Denied.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself or <a href="http://%h/cgi-bin/chpasswd.cgi">change</a> your default password.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERROR: การเรียกใช้ระบบแคชไม่ได้รับอนุญาต</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>การเรียกใช้ระบบแคชไม่ได้รับอนุญาต</h2> </div> <hr>  <div id="content"> <p>พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Cache Access Denied.</b></p> </blockquote>  <p>Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/tr/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/tr/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/tr/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:05:48.000000000 +1200
+++ squid-3.1.16/errors/tr/ERR_CACHE_ACCESS_DENIED	2011-10-13 23:09:43.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>HATA: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Erişim Yasak.</h2> </div> <hr>  <div id="content"> <p>URL adresine erişilmeye çalışıyorken hata meydana geldi: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Cache Sunucusunu Kullanamazsınız.</b></p> </blockquote>  <p>Özür dilerim, istediğiniz %U adresine bu Cache Sunucusunu kullanarak ulaşamazsınız.</p>  <p>Lütfen <a href="mailto:%w%W">Cache Yöneticisi</a> ile bağlantıya geçin, veya şifrenizi değiştirmek için <a href="http://%h/cgi-bin/chpasswd.cgi">buraya</a> tıklayın.</p>  <br> </div>  <hr>  <div id="footer"> <p>%h (%s) tarafından %T oluşturuldu</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>HATA: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Erişim Yasak.</h2> </div> <hr>  <div id="content"> <p>URL adresine erişilmeye çalışıyorken hata meydana geldi: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Cache Sunucusunu Kullanamazsınız.</b></p> </blockquote>  <p>Özür dilerim, istediğiniz %U adresine bu Cache Sunucusunu kullanarak ulaşamazsınız.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>%h (%s) tarafından %T oluşturuldu</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/uk/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/uk/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/uk/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:06:05.000000000 +1200
+++ squid-3.1.16/errors/uk/ERR_CACHE_ACCESS_DENIED	2011-10-13 23:11:40.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ПОМИЛКА: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Доступ заборонено</h2> </div> <hr>  <div id="content"> <p>При отриманні URL: <a href="%U">%U</a> виникла помилка.</p>  <blockquote id="error"> <p><b>Доступ до кешу заборонено</b></p> </blockquote>  <p>Вибачте, Вам зараз не дозволено запитувати %U з цього кешу. Спочатку авторизуйтеся.</p>  <p>Будь-ласка, зв'яжіться з <a href="mailto:%w%W">Адміністратором кешу</a>, якщо у Вас виникли труднощі з авторизацією, або <a href="http://%h/cgi-bin/chpasswd.cgi">змініть</a> Ваш пароль.</p>  <br> </div>  <hr>  <div id="footer"> <p>Згенеровано %T на %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ПОМИЛКА: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Доступ заборонено</h2> </div> <hr>  <div id="content"> <p>При отриманні URL: <a href="%U">%U</a> виникла помилка.</p>  <blockquote id="error"> <p><b>Доступ до кешу заборонено</b></p> </blockquote>  <p>Вибачте, Вам зараз не дозволено запитувати %U з цього кешу. Спочатку авторизуйтеся.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Згенеровано %T на %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/uz/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/uz/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/uz/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:06:22.000000000 +1200
+++ squid-3.1.16/errors/uz/ERR_CACHE_ACCESS_DENIED	2011-10-13 23:13:26.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ХАТО: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Рухсат берилмаган.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Cache Access Denied.</b></p> </blockquote>  <p>Кечирасиз, сизнинг %U сўровингизга ушбу кеш томонидан тасдиқдан ўтмагунингизча рухсат берилмайди.</p>  <p></a> Агар сиз тасдиқдан ўтишда ёки андоза махфий сўзингизни <a href="http://%h/cgi-bin/chpasswd.cgi">ўзгартиришда</a>қийналаётган бўлсангиз,  марҳамат, <a href="mailto:%w%W">кеш адмнистратори билан боғланинг.</p>  <br> </div>  <hr>  <div id="footer"> <p>%h (%s) томонидан  %T яратилган</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ХАТО: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Рухсат берилмаган.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Cache Access Denied.</b></p> </blockquote>  <p>Кечирасиз, сизнинг %U сўровингизга ушбу кеш томонидан тасдиқдан ўтмагунингизча рухсат берилмайди.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>%h (%s) томонидан  %T яратилган</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/vi/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/vi/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/vi/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:06:40.000000000 +1200
+++ squid-3.1.16/errors/vi/ERR_CACHE_ACCESS_DENIED	2011-10-13 23:15:06.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>LỖI: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Truy cập bị từ chối.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Truy cập đến vùng nhớ tạm bị từ chối.</b></p> </blockquote>  <p>Để yêu cầu %U từ vùng nhớ tạm này thì trước tiên bạn cần phải tự xác thực.</p>  <p>Hãy liên lạc với <a href="mailto:%w%W">quản trị vùng nhớ tạm</a> nếu bạn gặp khó khăn trong việc tự xác thực, hoặc bạn <a href="http://%h/cgi-bin/chpasswd.cgi">thay đổi</a> mật khẩu mặc định của mình.</p>  <br> </div>  <hr>  <div id="footer"> <p>Tạo %T bởi %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>LỖI: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache Truy cập bị từ chối.</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>Truy cập đến vùng nhớ tạm bị từ chối.</b></p> </blockquote>  <p>Để yêu cầu %U từ vùng nhớ tạm này thì trước tiên bạn cần phải tự xác thực.</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Tạo %T bởi %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/zh-cn/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/zh-cn/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/zh-cn/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:06:57.000000000 +1200
+++ squid-3.1.16/errors/zh-cn/ERR_CACHE_ACCESS_DENIED	2011-10-13 23:16:22.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>错误: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache 访问被拒绝。</h2> </div> <hr>  <div id="content"> <p>当尝试取回该 URL 时遇到下面的错误：<a href="%U">%U</a></p>  <blockquote id="error"> <p><b>缓存访问被拒绝。</b></p> </blockquote>  <p>抱歉，您不被允许通过本网络缓存服务器访问下列位置 %U 除非您通过了我们的身份验证。</p>  <p>如果您在身份验证上 发生困难，请与 <a href="mailto:%w%W">管理者</a> 联系。 或是<a href="http://%h/cgi-bin/chpasswd.cgi">更改</a>您的密码。</p>  <br> </div>  <hr>  <div id="footer"> <p>已由 %h (%s) 生成 %T</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>错误: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache 访问被拒绝。</h2> </div> <hr>  <div id="content"> <p>当尝试取回该 URL 时遇到下面的错误：<a href="%U">%U</a></p>  <blockquote id="error"> <p><b>缓存访问被拒绝。</b></p> </blockquote>  <p>抱歉，您不被允许通过本网络缓存服务器访问下列位置 %U 除非您通过了我们的身份验证。</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>已由 %h (%s) 生成 %T</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/errors/zh-tw/ERR_CACHE_ACCESS_DENIED squid-3.1.16/errors/zh-tw/ERR_CACHE_ACCESS_DENIED
--- squid-3.1.15/errors/zh-tw/ERR_CACHE_ACCESS_DENIED	2011-08-28 20:07:14.000000000 +1200
+++ squid-3.1.16/errors/zh-tw/ERR_CACHE_ACCESS_DENIED	2011-10-13 23:17:44.000000000 +1300
@@ -1 +1 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>錯誤: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache 存取被拒絕</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>快取伺服器存取被拒絕</b></p> </blockquote>  <p>抱歉，您不被允許透過我們這個網路快取伺服器傳回下列位置 %U 除非您通過了我們的身份驗證。</p>  <p>如果您在身份驗證上發生困難，請與 <a href="mailto:%w%W">管理者</a> 聯繫。或是<a href="http://%h/cgi-bin/chpasswd.cgi">更改</a>您的密碼。</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>錯誤: Cache Access Denied</title> <style type="text/css"><!--   %l  body :lang(fa) { direction: rtl; font-size: 100%; font-family: Tahoma, Roya, sans-serif; float: right; } :lang(he) { direction: rtl; float: right; }  --></style> </head><body id=%c> <div id="titles"> <h1>ERROR</h1> <h2>Cache 存取被拒絕</h2> </div> <hr>  <div id="content"> <p>The following error was encountered while trying to retrieve the URL: <a href="%U">%U</a></p>  <blockquote id="error"> <p><b>快取伺服器存取被拒絕</b></p> </blockquote>  <p>抱歉，您不被允許透過我們這個網路快取伺服器傳回下列位置 %U 除非您通過了我們的身份驗證。</p>  <p>Please contact the <a href="mailto:%w%W">cache administrator</a> if you have difficulties authenticating yourself.</p>  <br> </div>  <hr>  <div id="footer"> <p>Generated %T by %h (%s)</p> <!-- %c --> </div> </body></html> 
\ No newline at end of file
diff -u -r -N squid-3.1.15/helpers/basic_auth/DB/squid_db_auth.in squid-3.1.16/helpers/basic_auth/DB/squid_db_auth.in
--- squid-3.1.15/helpers/basic_auth/DB/squid_db_auth.in	2011-08-28 19:53:14.000000000 +1200
+++ squid-3.1.16/helpers/basic_auth/DB/squid_db_auth.in	2011-10-13 21:30:05.000000000 +1300
@@ -127,6 +127,12 @@
     $_dbh = DBI->connect($dsn, $db_user, $db_passwd);
     if (!defined $_dbh) {
     	warn ("Could not connect to $dsn\n");
+	my @driver_names = DBI->available_drivers();
+	my $msg = "DSN drivers apparently installed, available:\n";
+	foreach my $dn (@driver_names) {
+		$msg .= "\t$dn";
+	}
+	warn($msg."\n");
 	return undef;
     }
     my $sql_query;
diff -u -r -N squid-3.1.15/helpers/negotiate_auth/squid_kerb_auth/configure squid-3.1.16/helpers/negotiate_auth/squid_kerb_auth/configure
--- squid-3.1.15/helpers/negotiate_auth/squid_kerb_auth/configure	2011-08-28 19:54:06.000000000 +1200
+++ squid-3.1.16/helpers/negotiate_auth/squid_kerb_auth/configure	2011-10-13 21:38:18.000000000 +1300
@@ -5117,10 +5117,7 @@
 else
 
 if test "$cross_compiling" = yes; then :
-  { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-as_fn_error $? "cannot run test program while cross compiling
-See \`config.log' for more details" "$LINENO" 5; }
+  ac_cv_have_squid=yes
 else
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 /* end confdefs.h.  */
diff -u -r -N squid-3.1.15/helpers/negotiate_auth/squid_kerb_auth/configure.ac squid-3.1.16/helpers/negotiate_auth/squid_kerb_auth/configure.ac
--- squid-3.1.15/helpers/negotiate_auth/squid_kerb_auth/configure.ac	2011-08-28 19:53:14.000000000 +1200
+++ squid-3.1.16/helpers/negotiate_auth/squid_kerb_auth/configure.ac	2011-10-13 21:30:05.000000000 +1300
@@ -377,7 +377,8 @@
 #endif
 }],
   ac_cv_have_squid=yes,
-  ac_cv_have_squid=no)
+  ac_cv_have_squid=no,
+  ac_cv_have_squid=yes)
 ])
 LDFLAGS="$LDFLAGS -L../../../lib"
 if test "x$ac_cv_have_squid" = "xyes"; then
diff -u -r -N squid-3.1.15/include/version.h squid-3.1.16/include/version.h
--- squid-3.1.15/include/version.h	2011-08-28 19:54:06.000000000 +1200
+++ squid-3.1.16/include/version.h	2011-10-13 21:38:19.000000000 +1300
@@ -9,7 +9,7 @@
  */
 
 #ifndef SQUID_RELEASE_TIME
-#define SQUID_RELEASE_TIME 1314517993
+#define SQUID_RELEASE_TIME 1318494596
 #endif
 
 #ifndef APP_SHORTNAME
diff -u -r -N squid-3.1.15/lib/rfc1035.c squid-3.1.16/lib/rfc1035.c
--- squid-3.1.15/lib/rfc1035.c	2011-08-28 19:53:14.000000000 +1200
+++ squid-3.1.16/lib/rfc1035.c	2011-10-13 21:30:05.000000000 +1300
@@ -479,11 +479,11 @@
 void
 rfc1035RRDestroy(rfc1035_rr ** rr, int n)
 {
-    if (*rr == NULL || n < 1) {
+    if (*rr == NULL) {
         return;
     }
 
-    while (n--) {
+    while (n-- > 0) {
         if ((*rr)[n].rdata)
             xfree((*rr)[n].rdata);
     }
diff -u -r -N squid-3.1.15/RELEASENOTES.html squid-3.1.16/RELEASENOTES.html
--- squid-3.1.15/RELEASENOTES.html	2011-08-28 20:07:34.000000000 +1200
+++ squid-3.1.16/RELEASENOTES.html	2011-10-13 23:22:28.000000000 +1300
@@ -2,10 +2,10 @@
 <HTML>
 <HEAD>
  <META NAME="GENERATOR" CONTENT="LinuxDoc-Tools 0.9.66">
- <TITLE>Squid 3.1.15 release notes</TITLE>
+ <TITLE>Squid 3.1.16 release notes</TITLE>
 </HEAD>
 <BODY>
-<H1>Squid 3.1.15 release notes</H1>
+<H1>Squid 3.1.16 release notes</H1>
 
 <H2>Squid Developers</H2>
 <HR>
@@ -71,7 +71,7 @@
 <HR>
 <H2><A NAME="s1">1.</A> <A HREF="#toc1">Notice</A></H2>
 
-<P>The Squid Team are pleased to announce the release of Squid-3.1.15</P>
+<P>The Squid Team are pleased to announce the release of Squid-3.1.16</P>
 <P>This new release is available for download from 
 <A HREF="http://www.squid-cache.org/Versions/v3/3.1/">http://www.squid-cache.org/Versions/v3/3.1/</A> or the 
 <A HREF="http://www.squid-cache.org/Mirrors/http-mirrors.html">mirrors</A>.</P>
@@ -90,13 +90,13 @@
 <P>
 <UL>
 <LI>The lack of some features available in Squid-2.x series. See the regression sections below for full details.</LI>
-<LI>CVE-2009-0801 : NAT interception vulnerability to malicious clients. This is fixed in 3.2 series.</LI>
 </UL>
 </P>
 
 <P>Currently known issues which only depends on available developer time and may still be resolved in a future 3.1 release are:</P>
 <P>
 <UL>
+<LI>CVE-2009-0801 : NAT interception vulnerability to malicious clients. This is fixed in 3.2 series.</LI>
 <LI>Windows support is still largely missing.</LI>
 <LI>AIX support for building with the IBM compiler is broken.</LI>
 <LI>OpenSSL 1.0.0 support is incomplete.</LI>
@@ -729,6 +729,10 @@
 </PRE>
 </P>
 
+<DT><B>dns_v4_first</B><DD>
+<P>Added in 3.1.16. Controls whether IPv4 or IPv6 connection is
+attempted first when contacting servers and peers.</P>
+
 <DT><B>ecap_enable</B><DD>
 <P>Controls whether eCAP support is enabled. Default: OFF</P>
 
diff -u -r -N squid-3.1.15/src/cf.data.pre squid-3.1.16/src/cf.data.pre
--- squid-3.1.15/src/cf.data.pre	2011-08-28 19:53:14.000000000 +1200
+++ squid-3.1.16/src/cf.data.pre	2011-10-13 21:30:05.000000000 +1300
@@ -1026,20 +1026,25 @@
 NAME: miss_access
 TYPE: acl_access
 LOC: Config.accessList.miss
-DEFAULT: allow all
+DEFAULT_IF_NONE: allow all
 DOC_START
-	Use to force your neighbors to use you as a sibling instead of
-	a parent.  For example:
+	Determins whether network access is permitted when satisfying a request.
+
+	For example;
+	    to force your neighbors to use you as a sibling instead of
+	    a parent.
 
 		acl localclients src 172.16.0.0/16
 		miss_access allow localclients
 		miss_access deny  !localclients
 
-	This means only your local clients are allowed to fetch
-	MISSES and all other clients can only fetch HITS.
+	This means only your local clients are allowed to fetch relayed/MISS
+	replies from the network and all other clients can only fetch cached
+	objects (HITs).
+
 
-	By default, allow all clients who passed the http_access rules
-	to fetch MISSES from us.
+	The default for this setting allows all clients who passed the
+	http_access rules to relay via this proxy.
 
 	This clause only supports fast acl types.
 	See http://wiki.squid-cache.org/SquidFaq/SquidAcl for details.
@@ -6416,6 +6421,7 @@
 TYPE: onoff
 LOC: Config.onoff.ignore_unknown_nameservers
 DEFAULT: on
+IFDEF: !USE_DNSSERVERS
 DOC_START
 	By default Squid checks that DNS responses are received
 	from the same IP addresses they are sent to.  If they
@@ -6428,6 +6434,7 @@
 TYPE: onoff
 DEFAULT: on
 LOC: Config.onoff.dns_require_A
+IFDEF: !USE_DNSSERVERS
 DOC_START
 	Standard practice with DNS is to lookup either A or AAAA records
 	and use the results if it succeeds. Only looking up the other if
@@ -6444,6 +6451,25 @@
 		*) May negatively impact connection delay times.
 DOC_END
 
+NAME: dns_v4_first
+TYPE: onoff
+DEFAULT: off
+LOC: Config.dns.v4_first
+IFDEF: !USE_DNSSERVERS
+DOC_START
+	With the IPv6 Internet being as fast or faster than IPv4 Internet
+	for most networks Squid prefers to contact websites over IPv6.
+
+	This option reverses the order of preference to make Squid contact
+	dual-stack websites over IPv4 first. Squid will still perform both
+	IPv6 and IPv4 DNS lookups before connecting.
+
+	WARNING:
+	  This option will restrict the situations under which IPv6
+	  connectivity is used (and tested). Hiding network problems
+	  which would otherwise be detected and warned about.
+DOC_END
+
 NAME: ipcache_size
 COMMENT: (number of entries)
 TYPE: int
@@ -6675,10 +6701,16 @@
 LOC: Config.retry.onerror
 DEFAULT: off
 DOC_START
-	If set to on Squid will automatically retry requests when
-	receiving an error response. This is mainly useful if you
-	are in a complex cache hierarchy to work around access
-	control errors.
+	If set to ON Squid will automatically retry requests when
+	receiving an error response with status 403 (Forbidden),
+	500 (Internal Error), 501 or 503 (Service not available).
+	Status 502 and 504 (Gateway errors) are always retried.
+	
+	This is mainly useful if you are in a complex cache hierarchy to
+	work around access control errors.
+	
+	NOTE: This retry will attempt to find another working destination.
+	Which is different from the server which just failed.
 DOC_END
 
 NAME: as_whois_server
diff -u -r -N squid-3.1.15/src/client_side.cc squid-3.1.16/src/client_side.cc
--- squid-3.1.15/src/client_side.cc	2011-08-28 19:53:14.000000000 +1200
+++ squid-3.1.16/src/client_side.cc	2011-10-13 21:30:05.000000000 +1300
@@ -3827,6 +3827,15 @@
     bodyPipe->enableAutoConsumption();
 }
 
+void
+ConnStateData::expectNoForwarding()
+{
+    if (bodyPipe != NULL) {
+        debugs(33, 4, HERE << "no consumer for virgin body " << bodyPipe->status());
+        bodyPipe->expectNoConsumption();
+    }
+}
+
 // initialize dechunking state
 void
 ConnStateData::startDechunkingRequest(HttpParser *hp)
diff -u -r -N squid-3.1.15/src/client_side.h squid-3.1.16/src/client_side.h
--- squid-3.1.15/src/client_side.h	2011-08-28 19:53:14.000000000 +1200
+++ squid-3.1.16/src/client_side.h	2011-10-13 21:30:05.000000000 +1300
@@ -216,6 +216,7 @@
 
     bool closing() const;
     void startClosing(const char *reason);
+    void expectNoForwarding(); ///< cleans up virgin request [body] forwarding state
 
     BodyPipe::Pointer expectRequestBody(int64_t size);
     virtual void noteMoreBodySpaceAvailable(BodyPipe::Pointer);
diff -u -r -N squid-3.1.15/src/client_side_request.cc squid-3.1.16/src/client_side_request.cc
--- squid-3.1.15/src/client_side_request.cc	2011-08-28 19:53:14.000000000 +1200
+++ squid-3.1.16/src/client_side_request.cc	2011-10-13 21:30:05.000000000 +1300
@@ -1559,6 +1559,7 @@
                                 (c != NULL && c->auth_user_request ?
                                  c->auth_user_request : request->auth_user_request));
     c->flags.readMoreRequests = true;
+    c->expectNoForwarding();
     node = (clientStreamNode *)client_stream.tail->data;
     clientStreamRead(node, this, node->readBuffer);
 }
diff -u -r -N squid-3.1.15/src/dns_internal.cc squid-3.1.16/src/dns_internal.cc
--- squid-3.1.15/src/dns_internal.cc	2011-08-28 19:53:14.000000000 +1200
+++ squid-3.1.16/src/dns_internal.cc	2011-10-13 21:30:05.000000000 +1300
@@ -1117,25 +1117,35 @@
 
         debugs(78, 6, HERE << "Merging DNS results " << q->name << " AAAA has " << q->initial_AAAA.count << " RR, A has " << n << " RR");
 
+        if (Config.dns.v4_first) {
+            memcpy( tmp, message->answer, (sizeof(rfc1035_rr)*n) );
+            tmp += n;
+            /* free the RR object without freeing its child strings (they are now taken by the copy above) */
+            safe_free(message->answer);
+        }
+
         memcpy(tmp, q->initial_AAAA.answers, (sizeof(rfc1035_rr)*(q->initial_AAAA.count)) );
         tmp += q->initial_AAAA.count;
         /* free the RR object without freeing its child strings (they are now taken by the copy above) */
         safe_free(q->initial_AAAA.answers);
 
-        memcpy( tmp, message->answer, (sizeof(rfc1035_rr)*n) );
-        /* free the RR object without freeing its child strings (they are now taken by the copy above) */
-        safe_free(message->answer);
+        if (!Config.dns.v4_first) {
+            memcpy( tmp, message->answer, (sizeof(rfc1035_rr)*n) );
+            /* free the RR object without freeing its child strings (they are now taken by the copy above) */
+            safe_free(message->answer);
+        }
 
-        message->answer = result;
-        message->ancount += q->initial_AAAA.count;
         n += q->initial_AAAA.count;
-        q->initial_AAAA.count=0;
+        q->initial_AAAA.count = 0;
+        message->answer = result;
+        message->ancount = n;
     } else if (q->initial_AAAA.count > 0 && n <= 0) {
         /* initial of dual queries was the only result set. */
         debugs(78, 6, HERE << "Merging DNS results " << q->name << " AAAA has " << q->initial_AAAA.count << " RR, A has " << n << " RR");
         rfc1035RRDestroy(&(message->answer), n);
         message->answer = q->initial_AAAA.answers;
         n = q->initial_AAAA.count;
+        message->ancount = n;
     }
     /* else initial results were empty. just use the final set as authoritative */
 
diff -u -r -N squid-3.1.15/src/gopher.cc squid-3.1.16/src/gopher.cc
--- squid-3.1.15/src/gopher.cc	2011-08-28 19:53:14.000000000 +1200
+++ squid-3.1.16/src/gopher.cc	2011-10-13 21:30:05.000000000 +1300
@@ -462,14 +462,6 @@
             gopherState->len += llen;
             break;
         }
-        if (!lpos) {
-            /* there is no complete line in inbuf */
-            /* copy it to temp buffer */
-            /* note: llen is adjusted above */
-            xmemcpy(gopherState->buf + gopherState->len, pos, llen);
-            gopherState->len += llen;
-            break;
-        }
         if (gopherState->len != 0) {
             /* there is something left from last tx. */
             xmemcpy(line, gopherState->buf, gopherState->len);
diff -u -r -N squid-3.1.15/src/main.cc squid-3.1.16/src/main.cc
--- squid-3.1.15/src/main.cc	2011-08-28 19:53:14.000000000 +1200
+++ squid-3.1.16/src/main.cc	2011-10-13 21:30:05.000000000 +1300
@@ -1176,9 +1176,11 @@
         return SquidMain(argc, argv);
     } catch (const std::exception &e) {
         std::cerr << "dying from an unhandled exception: " << e.what() << std::endl;
+        debugs(1, DBG_CRITICAL, "FATAL: dying from an unhandled exception: " << e.what());
         throw;
     } catch (...) {
         std::cerr << "dying from an unhandled exception." << std::endl;
+        debugs(1, DBG_CRITICAL, "FATAL: dying from an unhandled exception.");
         throw;
     }
     return -1; // not reached
diff -u -r -N squid-3.1.15/src/ssl/certificate_db.cc squid-3.1.16/src/ssl/certificate_db.cc
--- squid-3.1.15/src/ssl/certificate_db.cc	2011-08-28 19:53:14.000000000 +1200
+++ squid-3.1.16/src/ssl/certificate_db.cc	2011-10-13 21:30:05.000000000 +1300
@@ -394,7 +394,7 @@
         corrupt = true;
 
     // Create indexes in db.
-#if OPENSSL_VERSION_NUMBER > 0x10000000L
+#if OPENSSL_VERSION_NUMBER >= 0x1000004fL
     if (!corrupt && !TXT_DB_create_index(temp_db.get(), cnlSerial, NULL, LHASH_HASH_FN(index_serial), LHASH_COMP_FN(index_serial)))
         corrupt = true;
 
@@ -434,7 +434,7 @@
         return false;
 
     bool removed_one = false;
-#if OPENSSL_VERSION_NUMBER > 0x10000000L
+#if OPENSSL_VERSION_NUMBER >= 0x1000004fL
     for (int i = 0; i < sk_OPENSSL_PSTRING_num(db.get()->data); i++) {
         const char ** current_row = ((const char **)sk_OPENSSL_PSTRING_value(db.get()->data, i));
 #else
@@ -445,7 +445,7 @@
         if (!sslDateIsInTheFuture(current_row[cnlExp_date])) {
             std::string filename(cert_full + "/" + current_row[cnlSerial] + ".pem");
             FileLocker cert_locker(filename);
-#if OPENSSL_VERSION_NUMBER > 0x10000000L
+#if OPENSSL_VERSION_NUMBER >= 0x1000004fL
             sk_OPENSSL_PSTRING_delete(db.get()->data, i);
 #else
             sk_delete(db.get()->data, i);
@@ -467,14 +467,14 @@
     if (!db)
         return false;
 
-#if OPENSSL_VERSION_NUMBER > 0x10000000L
+#if OPENSSL_VERSION_NUMBER >= 0x1000004fL
     if (sk_OPENSSL_PSTRING_num(db.get()->data) == 0)
 #else
     if (sk_num(db.get()->data) == 0)
 #endif
         return false;
 
-#if OPENSSL_VERSION_NUMBER > 0x10000000L
+#if OPENSSL_VERSION_NUMBER >= 0x1000004fL
     const char **row = (const char **)sk_OPENSSL_PSTRING_value(db.get()->data, 0);
 #else
     const char **row = (const char **)sk_value(db.get()->data, 0);
@@ -482,7 +482,7 @@
     std::string filename(cert_full + "/" + row[cnlSerial] + ".pem");
     FileLocker cert_locker(filename);
 
-#if OPENSSL_VERSION_NUMBER > 0x10000000L
+#if OPENSSL_VERSION_NUMBER >= 0x1000004fL
     sk_OPENSSL_PSTRING_delete(db.get()->data, 0);
 #else
     sk_delete(db.get()->data, 0);
@@ -499,7 +499,7 @@
     if (!db)
         return false;
 
-#if OPENSSL_VERSION_NUMBER > 0x10000000L
+#if OPENSSL_VERSION_NUMBER >= 0x1000004fL
     for (int i = 0; i < sk_OPENSSL_PSTRING_num(db.get()->data); i++) {
         const char ** current_row = ((const char **)sk_OPENSSL_PSTRING_value(db.get()->data, i));
 #else
@@ -509,7 +509,7 @@
         if (host == current_row[cnlName]) {
             std::string filename(cert_full + "/" + current_row[cnlSerial] + ".pem");
             FileLocker cert_locker(filename);
-#if OPENSSL_VERSION_NUMBER > 0x10000000L
+#if OPENSSL_VERSION_NUMBER >= 0x1000004fL
             sk_OPENSSL_PSTRING_delete(db.get()->data, i);
 #else
             sk_delete(db.get()->data, i);
diff -u -r -N squid-3.1.15/src/structs.h squid-3.1.16/src/structs.h
--- squid-3.1.15/src/structs.h	2011-08-28 19:53:14.000000000 +1200
+++ squid-3.1.16/src/structs.h	2011-10-13 21:30:05.000000000 +1300
@@ -628,6 +628,9 @@
 #endif
 
     int client_ip_max_connections;
+    struct {
+        int v4_first;       ///< Place IPv4 first in the order of DNS results.
+    } dns;
 };
 
 SQUIDCEXTERN SquidConfig Config;
