diff -ruN squid-2.6.STABLE12/ChangeLog squid-2.6.STABLE13/ChangeLog --- squid-2.6.STABLE12/ChangeLog Tue Mar 20 15:34:20 2007 +++ squid-2.6.STABLE13/ChangeLog Thu May 10 17:56:28 2007 @@ -1,8 +1,29 @@ -Changes to squid-2.6.STABLE12 (Mar 20 2007) +Changes to squid-2.6.STABLE13 (11 May 2007) + + - Make sure reply headers gets sent even if there is no body available + yet, fixing RealMedia streaming over HTTP issues. + - Undo an accidental name change of storeUnregisterAbort. + - Kill an ancient malplaced storeUnregisterAbort call from ftp.c + - Bug #1814: SSL memory leak on persistent SSL connections + - Don't log ECONNREFUSED/ECONNABORTED accept failures in cache.log + - Cosmetic fix: added missing newline in WCCPv2 configuration dump. + - Ukrainan error messages + - Convert various error pages from DOS to UNIX text format + - Bug #1820: COSS assertion failure t->length == MD5_DIGEST_CHARS + - Clarify the max-conn=n cache_peer option syntax slightly + - Bug #1892: COSS segfault on shutdown + - Windows port: fix undefined ECONNABORTED + - Make refreshIsCachable handle ETag as a cache validator, not + only last-modified + - in_port_t is not portable, use unsigned short instead + - Fix fs / auth / snmp dependencies + - Portability: statfs() may reqire #include + +Changes to squid-2.6.STABLE12 (20 Mar 2007) - Assertion error on TRACE -Changes to squid-2.6.STABLE11 (Mar 17 2007) +Changes to squid-2.6.STABLE11 (17 Mar 2007) - Bug #1915: assertion failed: client_side.c:4055: "buf != NULL || !conn->body.request" @@ -14,7 +35,7 @@ - Fix bswap16 & bwsap32 error on NetBSD - Fix collapsed_forwarding for non-GET requests -Changes to squid-2.6.STABLE10 (Mar 4 2007) +Changes to squid-2.6.STABLE10 (4 Mar 2007) - Upgrade HTTP/0.9 responses to our HTTP version (HTTP/1.0) - various diskd bugfixes @@ -45,12 +66,12 @@ - Added support for Subversion HTTP request methods MKACTIVITY, CHECKOUT and MERGE. -Changes to squid-2.6.STABLE9 (Jan 24 2007) +Changes to squid-2.6.STABLE9 (24 Jan 2007) - Bug #1878: If-Modified-Since broken in 2.6.STABLE8 - Bug #1877 diskd bug in storeDiskdIOCallback() -Changes to squid-2.6.STABLE8 (Jan 21 2007) +Changes to squid-2.6.STABLE8 (21 Jan 2007) - Bug #1873: authenticateNTLMFixErrorHeader: state 4. - Document the https_port vhost option, useful in combination with @@ -69,7 +90,7 @@ - Fix how ftp://user@host URLs is rendered when Squid is built with leak checking enabled -Changes to squid-2.6.STABLE7 (Jan 13 2007) +Changes to squid-2.6.STABLE7 (13 Jan 2007) - Windows port: Fix intermittent build error using Visual Studio - Add missing tproxy info from the dump of http port configuration @@ -90,7 +111,7 @@ - Bug #1828: squid.conf docutemtation error for proxy_auth digest - Bug #1867: squid.pid isn't removed on shutdown -Changes to squid-2.6.STABLE6 (Dec 12 2006) +Changes to squid-2.6.STABLE6 (12 Dec 2006) - Bug #1817: Assertion failure assert(buflen >= copy_sz) in htcp.c htcpBuildAuth() - Add client source port logformat tag >p @@ -122,7 +143,7 @@ - Bug #1641: assertion failed: stmem.c:149: "size > 0" while processing certain Vary objects - Fix build errors when using latest MinGW Windows environment -Changes to squid-2.6.STABLE5 (Now 3 2006) +Changes to squid-2.6.STABLE5 (3 Now 2006) - Bug #1776: 2.6.STABLE4 aufs fails to compile if coss isn't enabled - COSS improvements and cleanups @@ -152,7 +173,7 @@ - Added a basic comm_select_simple comm loop only requiring minimal POSIX compliance. - Safeguard from kb_t counter overflows on 32-bit platforms -Changes to squid-2.6.STABLE4 (Sep 23 2006) +Changes to squid-2.6.STABLE4 (23 Sep 2006) - Bug #1736: Missing Italian translation of ERR_TOO_BIG error page - Windows port enhancement: added native exception handler with signal emulation @@ -191,7 +212,7 @@ - Cosmetic cleanup to not dump stacktraces on configuration errors -Changes to squid-2.6.STABLE3 (Aug 18 2006) +Changes to squid-2.6.STABLE3 (18 Aug 2006) - Bug #1577: assertion failed "fm->max_n_files <= (1 << 24)" on very large cache_dir. Limit number of objects stored to slightly diff -ruN squid-2.6.STABLE12/RELEASENOTES.html squid-2.6.STABLE13/RELEASENOTES.html --- squid-2.6.STABLE12/RELEASENOTES.html Tue Mar 20 15:36:18 2007 +++ squid-2.6.STABLE13/RELEASENOTES.html Thu May 10 18:00:09 2007 @@ -2,12 +2,12 @@ - Squid 2.6.STABLE12 release notes + Squid 2.6.STABLE13 release notes -

Squid 2.6.STABLE12 release notes

+

Squid 2.6.STABLE13 release notes

-

Squid Developers

$Id: release-2.6.html,v 1.44.2.6 2007/03/20 21:31:32 hno Exp $ +

Squid Developers

$Id: release-2.6.html,v 1.44.2.8 2007/05/10 23:56:29 hno Exp $
This document contains the release notes for version 2.6 of Squid. Squid is a WWW Cache application developed by the Web Caching community. @@ -63,6 +63,9 @@

17. Key changes squid-2.6.STABLE11 to 2.6.STABLE12

+

+

18. Key changes squid-2.6.STABLE12 to 2.6.STABLE13

+

1. Key changes from squid 2.5

@@ -654,6 +657,20 @@
  • Assertion error on TRACE
  • See also the list of squid-2.6.STABLE12 changes and the +ChangeLog file for details.
  • + +

    + +

    18. Key changes squid-2.6.STABLE12 to 2.6.STABLE13

    + +

    +

    diff -ruN squid-2.6.STABLE12/configure squid-2.6.STABLE13/configure --- squid-2.6.STABLE12/configure Tue Mar 20 15:35:44 2007 +++ squid-2.6.STABLE13/configure Thu May 10 17:59:36 2007 @@ -1,7 +1,7 @@ #! /bin/sh -# From configure.in Revision: 1.416.2.8 . +# From configure.in Revision: 1.416.2.10 . # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.59 for Squid Web Proxy 2.6.STABLE12. +# Generated by GNU Autoconf 2.59 for Squid Web Proxy 2.6.STABLE13. # # Report bugs to . # @@ -270,8 +270,8 @@ # Identity of this package. PACKAGE_NAME='Squid Web Proxy' PACKAGE_TARNAME='squid' -PACKAGE_VERSION='2.6.STABLE12' -PACKAGE_STRING='Squid Web Proxy 2.6.STABLE12' +PACKAGE_VERSION='2.6.STABLE13' +PACKAGE_STRING='Squid Web Proxy 2.6.STABLE13' PACKAGE_BUGREPORT='http://www.squid-cache.org/bugs/' ac_default_prefix=/usr/local/squid @@ -781,7 +781,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 2.6.STABLE12 to adapt to many kinds of systems. +\`configure' configures Squid Web Proxy 2.6.STABLE13 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -847,7 +847,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of Squid Web Proxy 2.6.STABLE12:";; + short | recursive ) echo "Configuration of Squid Web Proxy 2.6.STABLE13:";; esac cat <<\_ACEOF @@ -1158,7 +1158,7 @@ test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF -Squid Web Proxy configure 2.6.STABLE12 +Squid Web Proxy configure 2.6.STABLE13 generated by GNU Autoconf 2.59 Copyright (C) 2003 Free Software Foundation, Inc. @@ -1172,7 +1172,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 2.6.STABLE12, which was +It was created by Squid Web Proxy $as_me 2.6.STABLE13, which was generated by GNU Autoconf 2.59. Invocation command line was $ $0 $@ @@ -1818,7 +1818,7 @@ # Define the identity of the package. PACKAGE='squid' - VERSION='2.6.STABLE12' + VERSION='2.6.STABLE13' cat >>confdefs.h <<_ACEOF @@ -7298,6 +7298,7 @@ + for ac_header in sys/types.h \ stddef.h \ limits.h \ @@ -7355,6 +7356,7 @@ sys/poll.h \ sys/select.h \ sys/stat.h \ + sys/statfs.h \ sys/statvfs.h \ syscall.h \ sys/syscall.h \ @@ -18612,7 +18614,7 @@ } >&5 cat >&5 <<_CSEOF -This file was extended by Squid Web Proxy $as_me 2.6.STABLE12, which was +This file was extended by Squid Web Proxy $as_me 2.6.STABLE13, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -18675,7 +18677,7 @@ cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -Squid Web Proxy config.status 2.6.STABLE12 +Squid Web Proxy config.status 2.6.STABLE13 configured by $0, generated by GNU Autoconf 2.59, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" diff -ruN squid-2.6.STABLE12/configure.in squid-2.6.STABLE13/configure.in --- squid-2.6.STABLE12/configure.in Tue Mar 20 15:35:44 2007 +++ squid-2.6.STABLE13/configure.in Thu May 10 17:59:36 2007 @@ -1,16 +1,16 @@ dnl dnl Configuration input file for Squid dnl -dnl $Id: configure.in,v 1.416.2.8 2007/03/20 21:34:20 hno Exp $ +dnl $Id: configure.in,v 1.416.2.10 2007/05/10 23:56:28 hno Exp $ dnl dnl dnl -AC_INIT(Squid Web Proxy, 2.6.STABLE12, http://www.squid-cache.org/bugs/, squid) +AC_INIT(Squid Web Proxy, 2.6.STABLE13, http://www.squid-cache.org/bugs/, squid) AC_PREREQ(2.52) AM_CONFIG_HEADER(include/autoconf.h) AC_CONFIG_AUX_DIR(cfgaux) AM_INIT_AUTOMAKE -AC_REVISION($Revision: 1.416.2.8 $)dnl +AC_REVISION($Revision: 1.416.2.10 $)dnl AC_PREFIX_DEFAULT(/usr/local/squid) AM_MAINTAINER_MODE @@ -1625,6 +1625,7 @@ sys/poll.h \ sys/select.h \ sys/stat.h \ + sys/statfs.h \ sys/statvfs.h \ syscall.h \ sys/syscall.h \ diff -ruN squid-2.6.STABLE12/errors/Czech/ERR_SHUTTING_DOWN squid-2.6.STABLE13/errors/Czech/ERR_SHUTTING_DOWN --- squid-2.6.STABLE12/errors/Czech/ERR_SHUTTING_DOWN Tue May 17 10:56:06 2005 +++ squid-2.6.STABLE13/errors/Czech/ERR_SHUTTING_DOWN Tue Apr 17 03:48:31 2007 @@ -1,23 +1,23 @@ - - -CHYBA: Pozadovany dokument je nedostupny + + +CHYBA: Pozadovany dokument je nedostupny - -

    CHYBA

    -

    Po¾adovaný dokument je nedostupný

    -
    -

    -Pøi pokusu o pøístup k: -%U -

    -se objevila následující chyba: -

    -

    -

    + +

    CHYBA

    +

    Po¾adovaný dokument je nedostupný

    +
    +

    +Pøi pokusu o pøístup k: +%U +

    +se objevila následující chyba: +

    +

    +

    diff -ruN squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_ACCESS_DENIED squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_ACCESS_DENIED --- squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_ACCESS_DENIED Wed Aug 28 15:02:23 2002 +++ squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_ACCESS_DENIED Tue Apr 17 03:48:32 2007 @@ -1,31 +1,31 @@ - -¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ + +¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ - -

    ¿ù»~

    -

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    -
    -

    -·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G -%U -

    -µo¥Í¤F¤U¦Cªº¿ù»~¡G -

    -

    - + +

    ¿ù»~

    +

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    +
    +

    +·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G +%U +

    +µo¥Í¤F¤U¦Cªº¿ù»~¡G +

    +

    + diff -ruN squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_CACHE_ACCESS_DENIED squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_CACHE_ACCESS_DENIED --- squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_CACHE_ACCESS_DENIED Tue May 17 10:56:22 2005 +++ squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_CACHE_ACCESS_DENIED Tue Apr 17 03:48:32 2007 @@ -1,43 +1,43 @@ - -¿ù»~¡Gºô¸ô§Ö¨ú¦øªA¾¹¦s¨ú³Q©Úµ´ + +¿ù»~¡Gºô¸ô§Ö¨ú¦øªA¾¹¦s¨ú³Q©Úµ´ - - -

    ¿ù»~

    -

    ºô¸ô§Ö¨ú¦øªA¾¹¦s¨ú³Q©Úµ´

    -
    -

    -·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G -%U -

    -µo¥Í¤F¤U¦Cªº¿ù»~¡G -

    -

    - -

    -©êºp¡A±z¤£³Q¤¹³\³z¹L§Ú­Ì³o­Óºô¸ô§Ö¨ú¦øªA¾¹¶Ç¦^¤U¦C¦ì¸m¡G -
    %U
    -°£«D±z³q¹L¤F§Ú­Ìªº¨­¥÷ÅçÃÒ¡C -

    - -

    -You need to use Netscape version 2.0 or greater, or Microsoft Internet -Explorer 3.0, or an HTTP/1.1 compliant browser for this to work. Please -contact the cache administrator if you have -difficulties authenticating yourself or -change your default password. -

    -

    -±z»Ý­n¨Ï¥Î Netscape version 2.0 ©Î§ó·sªºª©¥»¡A©Î¬O¨Ï¥Î Microsoft Internet -Explorer 3.0¡A©Î¬O¤@­Ó¬Û®e HTTP/1.1 ªºÂsÄý¾¹¨Ó¶i¦æ¤u§@¡C¦pªG±z¦b¨­¥÷ÅçÃÒ¤W -µo¥Í§xÃø¡A½Ð»P ºÞ²zªÌ Ápô¡C -©Î¬O§ó§ï±zªº±K½X¡C -

    + + +

    ¿ù»~

    +

    ºô¸ô§Ö¨ú¦øªA¾¹¦s¨ú³Q©Úµ´

    +
    +

    +·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G +%U +

    +µo¥Í¤F¤U¦Cªº¿ù»~¡G +

    +

    + +

    +©êºp¡A±z¤£³Q¤¹³\³z¹L§Ú­Ì³o­Óºô¸ô§Ö¨ú¦øªA¾¹¶Ç¦^¤U¦C¦ì¸m¡G +
    %U
    +°£«D±z³q¹L¤F§Ú­Ìªº¨­¥÷ÅçÃÒ¡C +

    + +

    +You need to use Netscape version 2.0 or greater, or Microsoft Internet +Explorer 3.0, or an HTTP/1.1 compliant browser for this to work. Please +contact the cache administrator if you have +difficulties authenticating yourself or +change your default password. +

    +

    +±z»Ý­n¨Ï¥Î Netscape version 2.0 ©Î§ó·sªºª©¥»¡A©Î¬O¨Ï¥Î Microsoft Internet +Explorer 3.0¡A©Î¬O¤@­Ó¬Û®e HTTP/1.1 ªºÂsÄý¾¹¨Ó¶i¦æ¤u§@¡C¦pªG±z¦b¨­¥÷ÅçÃÒ¤W +µo¥Í§xÃø¡A½Ð»P ºÞ²zªÌ Ápô¡C +©Î¬O§ó§ï±zªº±K½X¡C +

    diff -ruN squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_CACHE_MGR_ACCESS_DENIED squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_CACHE_MGR_ACCESS_DENIED --- squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_CACHE_MGR_ACCESS_DENIED Tue May 17 10:56:22 2005 +++ squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_CACHE_MGR_ACCESS_DENIED Tue Apr 17 03:48:32 2007 @@ -1,44 +1,44 @@ - -¿ù»~¡G¨Ï¥Î§Ö¨ú¦øªA¾¹ºÞ²zµ{¦¡³Q©Úµ´ + +¿ù»~¡G¨Ï¥Î§Ö¨ú¦øªA¾¹ºÞ²zµ{¦¡³Q©Úµ´ - - -

    ¿ù»~

    -

    ¨Ï¥Î§Ö¨ú¦øªA¾¹ºÞ²zµ{¦¡³Q©Úµ´

    -
    -

    -·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G -%U -

    -µo¥Í¤F¤U¦Cªº¿ù»~¡G -

    -

    - -

    -©êºp¡A±z¤£³Q¤¹³\³z¹L§Ú­Ì³o­Ó§Ö¨ú¦øªA¾¹ºÞ²zµ{¦¡¶Ç¦^¤U¦C¦ì¸m¡G -
    %U
    -°£«D±z³q¹L§Ú­Ìªº¨­¥÷ÅçÃÒ¡C -

    - -

    You need to use Netscape version 2.0 or greater, or Microsoft Internet -Explorer 3.0, or an HTTP/1.1 compliant browser for this to work. Please -contact the cache administrator if you have -difficulties authenticating yourself or, if you are the -administrator, read Squid documentation on cache manager interface and check -cache log for more detailed error messages. -

    -

    -±z»Ý­n¨Ï¥Î Netscape version 2.0 ©Î³Ì·sªºª©¥»¡A©Î¬O¨Ï¥Î Microsoft Internet -Explorer¡A©Î¬O¤@­Ó¬Û®e HTTP/1.1 ªºÂsÄý¾¹¨Ó¶i¦æ¤u§@¡C¦pªG±z¬O¦b¨­¥÷ÅçÃÒ¤Wµo -¥Í°ÝÃD¡A½Ð¥ý½T©w±z¦³Åv¹ï§Ö¨ú¦øªA¾¹¨Ï¥ÎºÞ²zµ{¦¡¡C -©Î¬O»PºÞ²zªÌÁpô¡C¦pªG±z´N¬OºÞ²zªÌ¡A½Ð¸Ô²Ó¾\Ū Squid ©Òªþ¤å¥ó¤¤»P -cache manager ¦³Ãö³¡¥÷©ÎÀˬd cache log ¥H«K±o¨ì§ó¸ÔºÉªº²Ó¸`¡C -

    + + +

    ¿ù»~

    +

    ¨Ï¥Î§Ö¨ú¦øªA¾¹ºÞ²zµ{¦¡³Q©Úµ´

    +
    +

    +·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G +%U +

    +µo¥Í¤F¤U¦Cªº¿ù»~¡G +

    +

    + +

    +©êºp¡A±z¤£³Q¤¹³\³z¹L§Ú­Ì³o­Ó§Ö¨ú¦øªA¾¹ºÞ²zµ{¦¡¶Ç¦^¤U¦C¦ì¸m¡G +
    %U
    +°£«D±z³q¹L§Ú­Ìªº¨­¥÷ÅçÃÒ¡C +

    + +

    You need to use Netscape version 2.0 or greater, or Microsoft Internet +Explorer 3.0, or an HTTP/1.1 compliant browser for this to work. Please +contact the cache administrator if you have +difficulties authenticating yourself or, if you are the +administrator, read Squid documentation on cache manager interface and check +cache log for more detailed error messages. +

    +

    +±z»Ý­n¨Ï¥Î Netscape version 2.0 ©Î³Ì·sªºª©¥»¡A©Î¬O¨Ï¥Î Microsoft Internet +Explorer¡A©Î¬O¤@­Ó¬Û®e HTTP/1.1 ªºÂsÄý¾¹¨Ó¶i¦æ¤u§@¡C¦pªG±z¬O¦b¨­¥÷ÅçÃÒ¤Wµo +¥Í°ÝÃD¡A½Ð¥ý½T©w±z¦³Åv¹ï§Ö¨ú¦øªA¾¹¨Ï¥ÎºÞ²zµ{¦¡¡C +©Î¬O»PºÞ²zªÌÁpô¡C¦pªG±z´N¬OºÞ²zªÌ¡A½Ð¸Ô²Ó¾\Ū Squid ©Òªþ¤å¥ó¤¤»P +cache manager ¦³Ãö³¡¥÷©ÎÀˬd cache log ¥H«K±o¨ì§ó¸ÔºÉªº²Ó¸`¡C +

    diff -ruN squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_CANNOT_FORWARD squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_CANNOT_FORWARD --- squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_CANNOT_FORWARD Wed Aug 28 15:02:23 2002 +++ squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_CANNOT_FORWARD Tue Apr 17 03:48:32 2007 @@ -1,38 +1,38 @@ - -¿ù»~¡F±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ + +¿ù»~¡F±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ - -

    ¿ù»~

    -

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    -
    -

    -·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G -%U -

    -µo¥Í¤F¤U¦Cªº¿ù»~¡G -

    - -

    -This request could not be forwarded to the origin server or to any -parent caches. The most likely cause for this error is that: -

    -

    -

    -±zªº³sµ²­n¨DµLªk³QÂà¦V­ì©lºô¯¸¦øªA¾¹©Î¨ä¥Lªº¤W¼h§Ö¨ú¦øªA¾¹¡Aµo¥Í³o­Ó°ÝÃDªº³Ì¥i¯àªº­ì¦]¥i¯à¬O¡G -

    -

    + +

    ¿ù»~

    +

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    +
    +

    +·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G +%U +

    +µo¥Í¤F¤U¦Cªº¿ù»~¡G +

    + +

    +This request could not be forwarded to the origin server or to any +parent caches. The most likely cause for this error is that: +

    +

    +

    +±zªº³sµ²­n¨DµLªk³QÂà¦V­ì©lºô¯¸¦øªA¾¹©Î¨ä¥Lªº¤W¼h§Ö¨ú¦øªA¾¹¡Aµo¥Í³o­Ó°ÝÃDªº³Ì¥i¯àªº­ì¦]¥i¯à¬O¡G +

    +

    diff -ruN squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_CONNECT_FAIL squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_CONNECT_FAIL --- squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_CONNECT_FAIL Wed Aug 28 15:02:23 2002 +++ squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_CONNECT_FAIL Tue Apr 17 03:48:32 2007 @@ -1,31 +1,31 @@ - -¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ + +¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ - -

    ¿ù»~

    -

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    -
    -

    -·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G -%U -

    -µo¥Í¤F¤U¦Cªº¿ù»~¡G -

    - -

    -¨t²Î¦^À³¤F¤U¦C¿ù»~°T®§¡G -

        %E
    - -

    -The remote host or network may be down. Please try the request again. -

    -±z±ý³sµ²ªººô¯¸¦øªA¾¹©Î¬Oºô¸ô¥i¯àµo¥Í¬G»Ù¡C½Ðµy«á¦A¸Õ¡C -

    + +

    ¿ù»~

    +

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    +
    +

    +·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G +%U +

    +µo¥Í¤F¤U¦Cªº¿ù»~¡G +

    + +

    +¨t²Î¦^À³¤F¤U¦C¿ù»~°T®§¡G +

        %E
    + +

    +The remote host or network may be down. Please try the request again. +

    +±z±ý³sµ²ªººô¯¸¦øªA¾¹©Î¬Oºô¸ô¥i¯àµo¥Í¬G»Ù¡C½Ðµy«á¦A¸Õ¡C +

    diff -ruN squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_DNS_FAIL squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_DNS_FAIL --- squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_DNS_FAIL Wed Aug 28 15:02:23 2002 +++ squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_DNS_FAIL Tue Apr 17 03:48:32 2007 @@ -1,35 +1,35 @@ - -¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ + +¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ - -

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    -
    -

    -·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G -%U -

    -µo¥Í¤F¤U¦Cªº¿ù»~¡G -

    -µLªk±N±z¿é¤Jªººô¯¸¥D¾÷¦ì¸mÂàĶ¦¨¥¿½Tªº IP ¦ì¸m¡G -%H -
    - - -

    -»â°ì¦WºÙ¦øªA¾¹¦^À³¤U¦C¿ù»~°T®§¡G -

    -%z -
    - -

    -³oªí¥Ü¡G -

    - The cache was not able to resolve the hostname presented in the URL. 
    - Check if the address is correct. 
    -

    - ºô¸ô§Ö¨ú¦øªA¾¹¨S¦³¿ìªk¥¿½TÂàĶ±z¿é¤Jªººô¯¸¥D¾÷¦WºÙ¡A½ÐÀˬd±z¿é¤Jªººô - §}¡]URL¡^¬O¥¿½Tªº¡C -

    -

    - + +

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    +
    +

    +·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G +%U +

    +µo¥Í¤F¤U¦Cªº¿ù»~¡G +

    +µLªk±N±z¿é¤Jªººô¯¸¥D¾÷¦ì¸mÂàĶ¦¨¥¿½Tªº IP ¦ì¸m¡G +%H +
    + + +

    +»â°ì¦WºÙ¦øªA¾¹¦^À³¤U¦C¿ù»~°T®§¡G +

    +%z +
    + +

    +³oªí¥Ü¡G +

    + The cache was not able to resolve the hostname presented in the URL. 
    + Check if the address is correct. 
    +

    + ºô¸ô§Ö¨ú¦øªA¾¹¨S¦³¿ìªk¥¿½TÂàĶ±z¿é¤Jªººô¯¸¥D¾÷¦WºÙ¡A½ÐÀˬd±z¿é¤Jªººô + §}¡]URL¡^¬O¥¿½Tªº¡C +

    +

    + diff -ruN squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_FORWARDING_DENIED squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_FORWARDING_DENIED --- squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_FORWARDING_DENIED Wed Aug 28 15:02:23 2002 +++ squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_FORWARDING_DENIED Tue Apr 17 03:48:32 2007 @@ -1,30 +1,30 @@ - -¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ + +¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ - -

    ¿ù»~

    -

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    -
    -

    -·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G -%U -

    -µo¥Í¤F¤U¦Cªº¿ù»~¡G -

    - -

    -This cache will not forward your request because it is trying to enforce a -sibling relationship. Perhaps the client at %i is a cache which has been -misconfigured. -

    -¥»§Ö¨ú¦øªA¾¹±NµLªk´À±zÂà¦V±zªº³s½u­n¨D¡A¤]³\¬O¦]¬°±z©Ò¨Ï¥Îªº§Ö¨ú¦øªA¾¹¡]%i¡^¨Ã¥¼³Q¥»§Ö¨ú¦øªA¾¹ -³]©w¬°­ã³\¶i¦æ¦s¨ú¡C -

    + +

    ¿ù»~

    +

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    +
    +

    +·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G +%U +

    +µo¥Í¤F¤U¦Cªº¿ù»~¡G +

    + +

    +This cache will not forward your request because it is trying to enforce a +sibling relationship. Perhaps the client at %i is a cache which has been +misconfigured. +

    +¥»§Ö¨ú¦øªA¾¹±NµLªk´À±zÂà¦V±zªº³s½u­n¨D¡A¤]³\¬O¦]¬°±z©Ò¨Ï¥Îªº§Ö¨ú¦øªA¾¹¡]%i¡^¨Ã¥¼³Q¥»§Ö¨ú¦øªA¾¹ +³]©w¬°­ã³\¶i¦æ¦s¨ú¡C +

    diff -ruN squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_FTP_DISABLED squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_FTP_DISABLED --- squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_FTP_DISABLED Wed Aug 28 15:02:23 2002 +++ squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_FTP_DISABLED Tue Apr 17 03:48:32 2007 @@ -1,27 +1,27 @@ - -¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ + +¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ - -

    ¿ù»~

    -

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    -
    -

    -·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G -%U -

    -µo¥Í¤F¤U¦Cªº¿ù»~¡G -

    - -

    -This cache does not support FTP. -

    -¥»§Ö¨ú¦øªA¾¹¨Ã¥¼¶}©ñ¤ä´©Àɮ׶ǿéªA°È¡C -

    + +

    ¿ù»~

    +

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    +
    +

    +·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G +%U +

    +µo¥Í¤F¤U¦Cªº¿ù»~¡G +

    + +

    +This cache does not support FTP. +

    +¥»§Ö¨ú¦øªA¾¹¨Ã¥¼¶}©ñ¤ä´©Àɮ׶ǿéªA°È¡C +

    diff -ruN squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_FTP_FAILURE squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_FTP_FAILURE --- squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_FTP_FAILURE Wed Aug 28 15:02:23 2002 +++ squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_FTP_FAILURE Tue Apr 17 03:48:32 2007 @@ -1,26 +1,26 @@ - -¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ + +¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ - -

    ¿ù»~

    -

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    -
    -

    -¦b¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®Éµo¥ÍÀɮ׶ǿé³q°T¨ó©w¿ù»~¡G -%U -

    -PROXY ¦øªA¾¹´À±z°e¥X¤U¦CÀɮ׶ǿé©R¥O¡G -

    %f
    -ÀH«á¦¬¨ì³o¼Ëªº¦^À³¡G -
    %F
    -
    %g
    -

    -This might be caused by an FTP URL with an absolute path (which does -not comply with RFC 1738). If this is the cause, then the file -can be found at %B. -

    -³o¥i¯à¬O¦]¬°¥]§t¤Fµ´¹ï¸ô®|ªº FTP ºô§}¡]URL¡^©Ò¾É­Pªº¡]¤£²Å¦X RFC 1738¡^¡C¦pªG¯uªº¬O¦]¬° -³o­Ó­ì¦]¾É­P³o¼Ëªº¿ù»~¡AÀÉ®×¥i¯à¥i¥H¦b%B³Q§ä¨ì¡C -

    - + +

    ¿ù»~

    +

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    +
    +

    +¦b¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®Éµo¥ÍÀɮ׶ǿé³q°T¨ó©w¿ù»~¡G +%U +

    +PROXY ¦øªA¾¹´À±z°e¥X¤U¦CÀɮ׶ǿé©R¥O¡G +

    %f
    +ÀH«á¦¬¨ì³o¼Ëªº¦^À³¡G +
    %F
    +
    %g
    +

    +This might be caused by an FTP URL with an absolute path (which does +not comply with RFC 1738). If this is the cause, then the file +can be found at %B. +

    +³o¥i¯à¬O¦]¬°¥]§t¤Fµ´¹ï¸ô®|ªº FTP ºô§}¡]URL¡^©Ò¾É­Pªº¡]¤£²Å¦X RFC 1738¡^¡C¦pªG¯uªº¬O¦]¬° +³o­Ó­ì¦]¾É­P³o¼Ëªº¿ù»~¡AÀÉ®×¥i¯à¥i¥H¦b%B³Q§ä¨ì¡C +

    + diff -ruN squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_FTP_PUT_CREATED squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_FTP_PUT_CREATED --- squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_FTP_PUT_CREATED Wed Aug 28 15:02:23 2002 +++ squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_FTP_PUT_CREATED Tue Apr 17 03:48:32 2007 @@ -1,11 +1,11 @@ - -Àɮ׶ǿé PUT «ü¥O¦¨¥\§¹¦¨¡GÀɮפw³Q«Ø¥ß + +Àɮ׶ǿé PUT «ü¥O¦¨¥\§¹¦¨¡GÀɮפw³Q«Ø¥ß - -

    ©Ò­n¨Dªº«ü¥O¦¨¥\¦a³Q§¹¦¨

    -

    Àɮפw³Q¦¨¥\¦a«Ø¥ß

    -
    -

    -

    - + +

    ©Ò­n¨Dªº«ü¥O¦¨¥\¦a³Q§¹¦¨

    +

    Àɮפw³Q¦¨¥\¦a«Ø¥ß

    +
    +

    +

    + diff -ruN squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_FTP_PUT_ERROR squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_FTP_PUT_ERROR --- squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_FTP_PUT_ERROR Wed Aug 28 15:02:23 2002 +++ squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_FTP_PUT_ERROR Tue Apr 17 03:48:32 2007 @@ -1,29 +1,29 @@ - -¿ù»~¡GÀɮפW¶Ç¥¢±Ñ + +¿ù»~¡GÀɮפW¶Ç¥¢±Ñ - -

    ¿ù»~

    -

    Àɮ׶ǿé¤W¶Ç¡]PUT¡^¥¢±Ñ

    -
    -

    -·í¹Á¸Õ¤W¶Ç¡]PUT¡^¤U¦C¦ì¸m®É¡G -%U -

    -§Ö¨ú¦øªA¾¹´À±zÂà°e¥X¤U¦CÀɮ׶ǿé©R¥O¡G -

    
    -        %f
    -
    -ÀH«á¦¬¨ì³o¼Ëªº°T®§ -
    
    -        %F
    -
    -

    -³oªí¥Ü¡G -

    -Check path, permissions, diskspace and try again.
    -
    -½Ð±zÀˬd¤W¶Ç¸ô®|¡A¤W¶Ç¦ì¸mªºÅª¼gÅv­­¡A¥i¨Ï¥ÎªºªÅ¶¡¤§«á¦A¸Õ¤@¹M¡C -
    -

    - + +

    ¿ù»~

    +

    Àɮ׶ǿé¤W¶Ç¡]PUT¡^¥¢±Ñ

    +
    +

    +·í¹Á¸Õ¤W¶Ç¡]PUT¡^¤U¦C¦ì¸m®É¡G +%U +

    +§Ö¨ú¦øªA¾¹´À±zÂà°e¥X¤U¦CÀɮ׶ǿé©R¥O¡G +

    
    +        %f
    +
    +ÀH«á¦¬¨ì³o¼Ëªº°T®§ +
    
    +        %F
    +
    +

    +³oªí¥Ü¡G +

    +Check path, permissions, diskspace and try again.
    +
    +½Ð±zÀˬd¤W¶Ç¸ô®|¡A¤W¶Ç¦ì¸mªºÅª¼gÅv­­¡A¥i¨Ï¥ÎªºªÅ¶¡¤§«á¦A¸Õ¤@¹M¡C +
    +

    + diff -ruN squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_FTP_PUT_MODIFIED squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_FTP_PUT_MODIFIED --- squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_FTP_PUT_MODIFIED Wed Aug 28 15:02:23 2002 +++ squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_FTP_PUT_MODIFIED Tue Apr 17 03:48:32 2007 @@ -1,11 +1,11 @@ - -Àɮ׶ǿé PUT «ü¥O¦¨¥\§¹¦¨¡GÀɮפw³Q§ó·s + +Àɮ׶ǿé PUT «ü¥O¦¨¥\§¹¦¨¡GÀɮפw³Q§ó·s - -

    ¦¨¥\§¹¦¨©Ò­n¨Dªº«ü¥O

    -

    Àɮפw³Q§ó·s¤F

    -
    -

    -

    - + +

    ¦¨¥\§¹¦¨©Ò­n¨Dªº«ü¥O

    +

    Àɮפw³Q§ó·s¤F

    +
    +

    +

    + diff -ruN squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_INVALID_REQ squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_INVALID_REQ --- squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_INVALID_REQ Wed Aug 28 15:02:23 2002 +++ squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_INVALID_REQ Tue Apr 17 03:48:32 2007 @@ -1,43 +1,43 @@ - -¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ + +¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ - -

    ¿ù»~

    -

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    -
    -

    -·í¹Á¸Õ¶i¦æ±z©Ò­n¨Dªº¤U¦Cµ{§Ç®É¡G -

    -%R
    -
    -

    -µo¥Í¤F¤U¦Cªº¿ù»~¡G -

    - -

    -Some aspect of the HTTP Request is invalid. Possible problems: -
    -µo¥Í¤F¤@¨Ç¤£¥¿½Tªº HTTP ­n¨D¡C¥i¯à¬O¤U¦Cªº°ÝÃD¡G -

    -

    + +

    ¿ù»~

    +

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    +
    +

    +·í¹Á¸Õ¶i¦æ±z©Ò­n¨Dªº¤U¦Cµ{§Ç®É¡G +

    +%R
    +
    +

    +µo¥Í¤F¤U¦Cªº¿ù»~¡G +

    + +

    +Some aspect of the HTTP Request is invalid. Possible problems: +
    +µo¥Í¤F¤@¨Ç¤£¥¿½Tªº HTTP ­n¨D¡C¥i¯à¬O¤U¦Cªº°ÝÃD¡G +

    +

    diff -ruN squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_INVALID_URL squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_INVALID_URL --- squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_INVALID_URL Wed Aug 28 15:02:23 2002 +++ squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_INVALID_URL Tue Apr 17 03:48:32 2007 @@ -1,37 +1,37 @@ - -¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ + +¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ - -

    ¿ù»~

    -

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    -
    -

    -·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G -%U -

    -µo¥Í¤F¤U¦Cªº¿ù»~¡G -

    - -

    -Some aspect of the requested URL is incorrect. Possible problems: -
    -±ý³sµ²ªº¦ì¸m¦³¤@¨Ç¤£¥¿½T¡C¥i¯à¬O¦]¬°¤U¦C°ÝÃD¡G -

    -

    + +

    ¿ù»~

    +

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    +
    +

    +·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G +%U +

    +µo¥Í¤F¤U¦Cªº¿ù»~¡G +

    + +

    +Some aspect of the requested URL is incorrect. Possible problems: +
    +±ý³sµ²ªº¦ì¸m¦³¤@¨Ç¤£¥¿½T¡C¥i¯à¬O¦]¬°¤U¦C°ÝÃD¡G +

    +

    diff -ruN squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_LIFETIME_EXP squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_LIFETIME_EXP --- squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_LIFETIME_EXP Wed Aug 28 15:02:23 2002 +++ squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_LIFETIME_EXP Tue Apr 17 03:48:32 2007 @@ -1,28 +1,28 @@ - -¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ + +¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ - -

    ¿ù»~

    -

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    -
    -

    -·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G -%U -

    -µo¥Í¤F¤U¦Cªº¿ù»~¡G -

    - -

    -Squid has terminated the request because it has exceeded the maximum -connection lifetime. -

    -§Ö¨ú¦øªA¾¹¤w²×¤î±zªº³s½u­n¨D¡A¦]¬°¤w¸g¶W¹L³s½uµ¥«Ý®É­­¡C -

    + +

    ¿ù»~

    +

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    +
    +

    +·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G +%U +

    +µo¥Í¤F¤U¦Cªº¿ù»~¡G +

    + +

    +Squid has terminated the request because it has exceeded the maximum +connection lifetime. +

    +§Ö¨ú¦øªA¾¹¤w²×¤î±zªº³s½u­n¨D¡A¦]¬°¤w¸g¶W¹L³s½uµ¥«Ý®É­­¡C +

    diff -ruN squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_NO_RELAY squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_NO_RELAY --- squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_NO_RELAY Wed Aug 28 15:02:23 2002 +++ squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_NO_RELAY Tue Apr 17 03:48:32 2007 @@ -1,27 +1,27 @@ - -¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ + +¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ - -

    ¿ù»~

    -

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    -
    -

    -·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G -%U -

    -µo¥Í¤F¤U¦Cªº¿ù»~¡G -

    - -

    -There is no WAIS Relay host defined for this Cache! Yell at the administrator. -
    -¥»§Ö¨ú¦øªA¾¹¥¼´£¨Ñ WAIS ¼s°ì¸ê°T¦øªA¾¹ªA°È¡I¦p¦³ºÃ°Ý½Ð¬¢§Ö¨ú¦øªA¾¹ºÞ²zªÌ¡C -

    + +

    ¿ù»~

    +

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    +
    +

    +·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G +%U +

    +µo¥Í¤F¤U¦Cªº¿ù»~¡G +

    + +

    +There is no WAIS Relay host defined for this Cache! Yell at the administrator. +
    +¥»§Ö¨ú¦øªA¾¹¥¼´£¨Ñ WAIS ¼s°ì¸ê°T¦øªA¾¹ªA°È¡I¦p¦³ºÃ°Ý½Ð¬¢§Ö¨ú¦øªA¾¹ºÞ²zªÌ¡C +

    diff -ruN squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_ONLY_IF_CACHED_MISS squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_ONLY_IF_CACHED_MISS --- squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_ONLY_IF_CACHED_MISS Wed Aug 28 15:02:23 2002 +++ squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_ONLY_IF_CACHED_MISS Tue Apr 17 03:48:32 2007 @@ -1,33 +1,33 @@ - -¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ + +¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ - -

    ¿ù»~

    -

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    -
    -

    -·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G -%U -

    -µo¥Í¤F¤U¦Cªº¿ù»~¡G -

    - -

    - -You have issued a request with a only-if-cached cache control -directive. The document was not found in the cache, or it required -revalidation prohibited by only-if-cached directive. -
    -±z°e¥X¤F¤@­Ó¥]§t only-if-cached §Ö¨ú±±¨î«ü¥Oªº³sµ²­n¨D¡C¦Ó¤å¥ó¨Ã¥¼¦s¦b§Ö¨ú¦øªA¾¹¤¤¡A©ÎªÌ -³o­Ó³s½u­n¨D³Q only-if-cached «ü¥O»{©w¬O¸T¥Îªº¡C -

    + +

    ¿ù»~

    +

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    +
    +

    +·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G +%U +

    +µo¥Í¤F¤U¦Cªº¿ù»~¡G +

    + +

    + +You have issued a request with a only-if-cached cache control +directive. The document was not found in the cache, or it required +revalidation prohibited by only-if-cached directive. +
    +±z°e¥X¤F¤@­Ó¥]§t only-if-cached §Ö¨ú±±¨î«ü¥Oªº³sµ²­n¨D¡C¦Ó¤å¥ó¨Ã¥¼¦s¦b§Ö¨ú¦øªA¾¹¤¤¡A©ÎªÌ +³o­Ó³s½u­n¨D³Q only-if-cached «ü¥O»{©w¬O¸T¥Îªº¡C +

    diff -ruN squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_READ_ERROR squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_READ_ERROR --- squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_READ_ERROR Wed Aug 28 15:02:23 2002 +++ squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_READ_ERROR Tue Apr 17 03:48:32 2007 @@ -1,32 +1,32 @@ - -¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ + +¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ - -

    ¿ù»~

    -

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    -
    -

    -·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G -%U -

    -µo¥Í¤F¤U¦Cªº¿ù»~¡G -

    - -

    -¨t²Î¦^À³¡G -

        %E
    - -

    -An error condition occurred while reading data from the network. Please -retry your request. -

    -¥¿¦b³z¹Lºô¸ôŪ¨ú¸ê®Æ®Éµo¥Í¤F¿ù»~ªº±¡ªp¡A½Ð¦A¹Á¸Õ¤@¹M±zªº³sµ²­n¨D¡C -

    + +

    ¿ù»~

    +

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    +
    +

    +·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G +%U +

    +µo¥Í¤F¤U¦Cªº¿ù»~¡G +

    + +

    +¨t²Î¦^À³¡G +

        %E
    + +

    +An error condition occurred while reading data from the network. Please +retry your request. +

    +¥¿¦b³z¹Lºô¸ôŪ¨ú¸ê®Æ®Éµo¥Í¤F¿ù»~ªº±¡ªp¡A½Ð¦A¹Á¸Õ¤@¹M±zªº³sµ²­n¨D¡C +

    diff -ruN squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_READ_TIMEOUT squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_READ_TIMEOUT --- squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_READ_TIMEOUT Wed Aug 28 15:02:23 2002 +++ squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_READ_TIMEOUT Tue Apr 17 03:48:32 2007 @@ -1,33 +1,33 @@ - -¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ + +¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ - -

    ¿ù»~

    -

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    -
    -

    -·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G -%U -

    -µo¥Í¤F¤U¦Cªº¿ù»~¡G -

    - -

    -¨t²Î¦^À³¡G -

        %E
    - -

    -A Timeout occurred while waiting to read data from the network. The network -or server may be down or congested. Please retry your request. -
    -·í³z¹Lºô¸ôŪ¨ú¸ê®Æ®É¡A¶W¹L¤Fµ¥«Ý®É­­¡C³o¥i¯à¬O¦]¬°ºô¸ô©Î¬O±ý³sµ²ªººô¯¸¦øªA¾¹µo¥Í¾Ã¶ë©Î·lÃa¡C -½Ð­«·s¹Á¸Õ¤@¹M±zªº³sµ²­n¨D¡C -

    + +

    ¿ù»~

    +

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    +
    +

    +·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G +%U +

    +µo¥Í¤F¤U¦Cªº¿ù»~¡G +

    + +

    +¨t²Î¦^À³¡G +

        %E
    + +

    +A Timeout occurred while waiting to read data from the network. The network +or server may be down or congested. Please retry your request. +
    +·í³z¹Lºô¸ôŪ¨ú¸ê®Æ®É¡A¶W¹L¤Fµ¥«Ý®É­­¡C³o¥i¯à¬O¦]¬°ºô¸ô©Î¬O±ý³sµ²ªººô¯¸¦øªA¾¹µo¥Í¾Ã¶ë©Î·lÃa¡C +½Ð­«·s¹Á¸Õ¤@¹M±zªº³sµ²­n¨D¡C +

    diff -ruN squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_SHUTTING_DOWN squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_SHUTTING_DOWN --- squid-2.6.STABLE12/errors/Traditional_Chinese/ERR_SHUTTING_DOWN Wed Aug 28 15:02:23 2002 +++ squid-2.6.STABLE13/errors/Traditional_Chinese/ERR_SHUTTING_DOWN Tue Apr 17 03:48:32 2007 @@ -1,22 +1,22 @@ - -¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ + +¿ù»~¡G±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^ - -

    ¿ù»~

    -

    ±ý³sµ²¤§ºô§}¡]URL¡^µLªk¥¿½Tªº¶Ç¦^

    -
    -

    -·í¹Á¸Õ¶Ç¦^¤U­±ªººô§}¡]URL¡^®É¡G -%U -

    -µo¥Í¤F¤U¦Cªº¿ù»~¡G -