]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Mirror 1.1.x changes.
authormike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Mon, 14 Jan 2002 20:36:31 +0000 (20:36 +0000)
committermike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Mon, 14 Jan 2002 20:36:31 +0000 (20:36 +0000)
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/branches/branch-1.2@2036 7a7537e8-13f0-0310-91df-b6672ffda945

CHANGES-1.1.txt
config-scripts/cups-common.m4
config-scripts/cups-compiler.m4
config-scripts/cups-openslp.m4
config-scripts/cups-openssl.m4
config-scripts/cups-sharedlibs.m4
cups.list.in
locale/it/cups_it

index a766f8a56f209546056fc2eca395d2e77abd11c6..b81b3c63b75b1fae0ccba7cd2b5e28cc66c46f08 100644 (file)
@@ -3,6 +3,12 @@ CHANGES-1.1.txt
 
 CHANGES IN CUPS V1.1.13
 
+       - Added --with-optim="flags" option to configure script.
+       - Updated the Italian message translations.
+       - Updated the cups.list file to install the correct
+         files.
+       - The pstoraster filter accessed the third element of a
+         2 element array.
        - The scheduler did not setup a status pipe for polling
          processes, so error messages went to whatever file
          descriptor 2 was pointing to when they were started.
index 937ab648d49e5df9ac4a9c10e690575f224f6a7c..5cde663e5912b6cf93dd940251f8be91d28d24fb 100644 (file)
@@ -1,5 +1,5 @@
 dnl
-dnl "$Id: cups-common.m4,v 1.12.2.5 2002/01/12 21:31:51 mike Exp $"
+dnl "$Id: cups-common.m4,v 1.12.2.6 2002/01/14 20:36:31 mike Exp $"
 dnl
 dnl   Common configuration stuff for the Common UNIX Printing System (CUPS).
 dnl
@@ -22,6 +22,10 @@ dnl       EMail: cups-info@cups.org
 dnl         WWW: http://www.cups.org
 dnl
 
+dnl We need at least autoconf 2.13...
+AC_PREREQ(2.13)
+
+dnl Set the name of the config header file...
 AC_CONFIG_HEADER(config.h)
 
 CUPS_VERSION="1.2.0a1"
@@ -30,6 +34,7 @@ AC_DEFINE_UNQUOTED(CUPS_SVERSION, "CUPS v$CUPS_VERSION")
 
 dnl Default compiler flags...
 CFLAGS="${CFLAGS:=}"
+CPPFLAGS="${CPPFLAGS:=}"
 CXXFLAGS="${CXXFLAGS:=}"
 LDFLAGS="${LDFLAGS:=}"
 
@@ -150,5 +155,5 @@ esac
 AC_SUBST(ARFLAGS)
 
 dnl
-dnl End of "$Id: cups-common.m4,v 1.12.2.5 2002/01/12 21:31:51 mike Exp $".
+dnl End of "$Id: cups-common.m4,v 1.12.2.6 2002/01/14 20:36:31 mike Exp $".
 dnl
index 3a9dca809cf5506ac5b7e31630dd1a990112664c..4eece36255994b670de91f47d73dba6c02333bfa 100644 (file)
@@ -1,5 +1,5 @@
 dnl
-dnl "$Id: cups-compiler.m4,v 1.9.2.2 2002/01/02 18:50:23 mike Exp $"
+dnl "$Id: cups-compiler.m4,v 1.9.2.3 2002/01/14 20:36:31 mike Exp $"
 dnl
 dnl   Common configuration stuff for the Common UNIX Printing System (CUPS).
 dnl
@@ -32,6 +32,8 @@ AC_ARG_ENABLE(debug, [  --enable-debug          turn on debugging [default=no]],
                OPTIM="-g"
        fi])
 
+AC_ARG_WITH(optim, [  --with-optim=\"flags\"    set optimization flags ])
+
 dnl Update compiler options...
 if test -n "$GCC"; then
        # Starting with GCC 3.0, you must link C++ programs against either
@@ -60,11 +62,15 @@ if test -n "$GCC"; then
        CXX="$CC"
 
        if test -z "$OPTIM"; then
-               if test $uname = HP-UX; then
-                       # GCC under HP-UX has bugs with -O2
-                       OPTIM="-O1"
+               if test "x$with_optim" = x; then
+                       if test $uname = HP-UX; then
+                               # GCC under HP-UX has bugs with -O2
+                               OPTIM="-O1"
+                       else
+                               OPTIM="-O2"
+                       fi
                else
-                       OPTIM="-O2"
+                       OPTIM="$with_optim $OPTIM"
                fi
        fi
 
@@ -77,17 +83,27 @@ else
        case $uname in
                AIX*)
                        if test -z "$OPTIM"; then
-                               OPTIM="-O2 -qmaxmem=6000"
+                               if test "x$with_optim" = x; then
+                                       OPTIM="-O2 -qmaxmem=6000"
+                               else
+                                       OPTIM="$with_optim $OPTIM"
+                               fi
                        fi
                        ;;
                HP-UX*)
                        if test -z "$OPTIM"; then
-                               OPTIM="+O2"
+                               if test "x$with_optim" = x; then
+                                       OPTIM="+O2"
+                               else
+                                       OPTIM="$with_optim $OPTIM"
+                               fi
                        fi
 
                        CFLAGS="-Ae $CFLAGS"
 
-                       OPTIM="+DAportable $OPTIM"
+                       if test "x$with_optim" = x; then
+                               OPTIM="+DAportable $OPTIM"
+                       fi
 
                        if test $PICFLAG = 1; then
                                OPTIM="+z $OPTIM"
@@ -95,10 +111,14 @@ else
                        ;;
                IRIX*)
                        if test -z "$OPTIM"; then
-                               OPTIM="-O2"
+                               if test "x$with_optim" = x; then
+                                       OPTIM="-O2"
+                               else
+                                       OPTIM="$with_optim $OPTIM"
+                               fi
                        fi
 
-                       if test $uversion -ge 62; then
+                       if test $uversion -ge 62 -a "x$with_optim" = x; then
                                OPTIM="$OPTIM -n32 -mips3"
                        fi
 
@@ -107,10 +127,16 @@ else
                SunOS*)
                        # Solaris
                        if test -z "$OPTIM"; then
-                               OPTIM="-xO4"
+                               if test "x$with_optim" = x; then
+                                       OPTIM="-xO4"
+                               else
+                                       OPTIM="$with_optim $OPTIM"
+                               fi
                        fi
 
-                       OPTIM="$OPTIM -xarch=generic"
+                       if test "x$with_optim" = x; then
+                               OPTIM="$OPTIM -xarch=generic"
+                       fi
 
                        if test $PICFLAG = 1; then
                                OPTIM="-KPIC $OPTIM"
@@ -119,7 +145,11 @@ else
                UNIX_SVR*)
                        # UnixWare
                        if test -z "$OPTIM"; then
-                               OPTIM="-O"
+                               if test "x$with_optim" = x; then
+                                       OPTIM="-O"
+                               else
+                                       OPTIM="$with_optim $OPTIM"
+                               fi
                        fi
 
                        if test $PICFLAG = 1; then
@@ -148,5 +178,5 @@ case $uname in
 esac
 
 dnl
-dnl End of "$Id: cups-compiler.m4,v 1.9.2.2 2002/01/02 18:50:23 mike Exp $".
+dnl End of "$Id: cups-compiler.m4,v 1.9.2.3 2002/01/14 20:36:31 mike Exp $".
 dnl
index 8ff92d7897654216c98e002529c45e4fb0bae1f9..9337d575533b4f71664408fe309f0568a022bf22 100644 (file)
@@ -1,5 +1,5 @@
 dnl
-dnl "$Id: cups-openslp.m4,v 1.2.2.2 2002/01/02 18:50:23 mike Exp $"
+dnl "$Id: cups-openslp.m4,v 1.2.2.3 2002/01/14 20:36:31 mike Exp $"
 dnl
 dnl   OpenSLP configuration stuff for the Common UNIX Printing System (CUPS).
 dnl
@@ -23,10 +23,10 @@ dnl         WWW: http://www.cups.org
 dnl
 
 AC_ARG_ENABLE(slp, [  --enable-slp            turn on SLP support [default=yes]])
-AC_ARG_WITH(openslp-libs, [  --with-openslp-libs    set directory for OpenSLP library],
+AC_ARG_WITH(openslp-libs, [  --with-openslp-libs     set directory for OpenSLP library],
     LDFLAGS="-L$withval $LDFLAGS"
     DSOFLAGS="-L$withval $DSOFLAGS",)
-AC_ARG_WITH(openslp-includes, [  --with-openslp-includes    set directory for OpenSLP includes],
+AC_ARG_WITH(openslp-includes, [  --with-openslp-includes set directory for OpenSLP includes],
     CFLAGS="-I$withval $CFLAGS"
     CXXFLAGS="-I$withval $CXXFLAGS",)
 
@@ -43,5 +43,5 @@ AC_SUBST(LIBSLP)
 
 
 dnl
-dnl End of "$Id: cups-openslp.m4,v 1.2.2.2 2002/01/02 18:50:23 mike Exp $".
+dnl End of "$Id: cups-openslp.m4,v 1.2.2.3 2002/01/14 20:36:31 mike Exp $".
 dnl
index 0b1f2569336965e59e73ba8f37c7ac8f72c2734b..27be231f746db3c0dd0bc3081bd897a0b6386816 100644 (file)
@@ -1,5 +1,5 @@
 dnl
-dnl "$Id: cups-openssl.m4,v 1.4.2.2 2002/01/02 18:50:23 mike Exp $"
+dnl "$Id: cups-openssl.m4,v 1.4.2.3 2002/01/14 20:36:31 mike Exp $"
 dnl
 dnl   OpenSSL stuff for the Common UNIX Printing System (CUPS).
 dnl
@@ -23,7 +23,7 @@ dnl         WWW: http://www.cups.org
 dnl
 
 AC_ARG_ENABLE(ssl, [  --enable-ssl            turn on SSL/TLS support [default=yes]])
-AC_ARG_WITH(openssl-libs, [  --with-openssl-libs set directory for OpenSSL library],
+AC_ARG_WITH(openssl-libs, [  --with-openssl-libs     set directory for OpenSSL library],
     LDFLAGS="-L$withval $LDFLAGS"
     DSOFLAGS="-L$withval $DSOFLAGS",)
 AC_ARG_WITH(openssl-includes, [  --with-openssl-includes set directory for OpenSSL includes],
@@ -65,5 +65,5 @@ fi
 AC_SUBST(SSLLIBS)
 
 dnl
-dnl End of "$Id: cups-openssl.m4,v 1.4.2.2 2002/01/02 18:50:23 mike Exp $".
+dnl End of "$Id: cups-openssl.m4,v 1.4.2.3 2002/01/14 20:36:31 mike Exp $".
 dnl
index 3c6e99b20e52c3d47e926598ac3f38f9c2ea8e3d..319135af4503754f75b21027dd2f0442598037f3 100644 (file)
@@ -1,5 +1,5 @@
 dnl
-dnl "$Id: cups-sharedlibs.m4,v 1.6.2.2 2002/01/02 18:50:24 mike Exp $"
+dnl "$Id: cups-sharedlibs.m4,v 1.6.2.3 2002/01/14 20:36:31 mike Exp $"
 dnl
 dnl   Shared library support for the Common UNIX Printing System (CUPS).
 dnl
@@ -41,13 +41,19 @@ if test x$enable_shared != xno; then
                        DSO="ld"
                        DSOFLAGS="$DSOFLAGS -b -z +h \$@"
                        ;;
-               OSF1* | Linux* | IRIX* | FreeBSD* | NetBSD* | OpenBSD*)
+               IRIX*)
+                       LIBCUPS="libcups.so.3"
+                       LIBCUPSIMAGE="libcupsimage.so.3"
+                       DSO="\$(CC)"
+                       DSOFLAGS="$DSOFLAGS -Wl,-rpath,\$(libdir),-set_version,sgi3.0,-soname,\$@ -shared \$(OPTIM)"
+                       ;;
+               OSF1* | Linux*)
                        LIBCUPS="libcups.so.3"
                        LIBCUPSIMAGE="libcupsimage.so.3"
                        DSO="\$(CC)"
                        DSOFLAGS="$DSOFLAGS -Wl,-soname,\$@ -shared \$(OPTIM)"
                        ;;
-               Darwin*)
+               *BSD* | Darwin*)
                        LIBCUPS="libcups.3.dylib"
                        LIBCUPSIMAGE="libcupsimage.3.dylib"
                        DSO="ld"
@@ -86,7 +92,6 @@ if test x$enable_shared = xno; then
        LINKCUPS="$LINKCUPS \$(SSLLIBS)"
 else
        if test $uname = AIX; then
-               
                LINKCUPS="-L../cups -lcups_s"
                LINKCUPSIMAGE="-L../filter -lcupsimage_s"
        else
@@ -121,7 +126,7 @@ if test "$DSO" != ":"; then
                        DSOFLAGS="-R$libdir $DSOFLAGS"
                        LDFLAGS="$LDFLAGS -R$libdir"
                        ;;
-                FreeBSD* | NetBSD* | OpenBSD*)
+                *BSD* | Darwin*)
                         # *BSD
                        DSOFLAGS="-Wl,-R$libdir $DSOFLAGS"
                         LDFLAGS="$LDFLAGS -Wl,-R$libdir"
@@ -141,5 +146,5 @@ AC_SUBST(DSOLIBS)
 AC_SUBST(IMGLIBS)
 
 dnl
-dnl End of "$Id: cups-sharedlibs.m4,v 1.6.2.2 2002/01/02 18:50:24 mike Exp $".
+dnl End of "$Id: cups-sharedlibs.m4,v 1.6.2.3 2002/01/14 20:36:31 mike Exp $".
 dnl
index 904b0ccd4af12d99cb89a3ee975a7863644cc0e7..b6a3113777adf40ed64d720fa185cdf71001fb9e 100644 (file)
@@ -1,5 +1,5 @@
 #
-# "$Id: cups.list.in,v 1.13.2.4 2002/01/02 18:04:17 mike Exp $"
+# "$Id: cups.list.in,v 1.13.2.5 2002/01/14 20:36:30 mike Exp $"
 #
 #   ESP Package Manager (EPM) file list for the Common UNIX Printing
 #   System (CUPS).
@@ -131,6 +131,7 @@ f 0555 root sys $SERVERBIN/filter/pdftops pdftops/pdftops
 f 0555 root sys $SERVERBIN/filter/imagetops filter/imagetops
 f 0555 root sys $SERVERBIN/filter/pstops filter/pstops
 f 0555 root sys $SERVERBIN/filter/texttops filter/texttops
+f 0555 root sys $SERVERBIN/filter/rastertodymo filter/rastertodymo
 f 0555 root sys $SERVERBIN/filter/rastertoepson filter/rastertoepson
 f 0555 root sys $SERVERBIN/filter/rastertohp filter/rastertohp
 f 0555 root sys $SERVERBIN/filter/hpgltops filter/hpgltops
@@ -193,6 +194,7 @@ d 1700 $CUPS_USER sys $REQUESTS/tmp -
 
 # Data files
 f 0444 root sys $LOCALEDIR/C/cups_C locale/C/cups_C
+f 0444 root sys $LOCALEDIR/cs/cups_cs locale/cs/cups_cs
 f 0444 root sys $LOCALEDIR/de/cups_de locale/de/cups_de
 f 0444 root sys $LOCALEDIR/en/cups_en locale/en/cups_en
 f 0444 root sys $LOCALEDIR/es/cups_es locale/es/cups_es
@@ -221,8 +223,6 @@ f 0444 root sys $DATADIR/charsets/windows-1256 data/windows-1256
 f 0444 root sys $DATADIR/charsets/windows-1257 data/windows-1257
 f 0444 root sys $DATADIR/charsets/windows-1258 data/windows-1258
 f 0444 root sys $DATADIR/charsets/iso-8859-1 data/iso-8859-1
-f 0444 root sys $DATADIR/charsets/iso-8859-14 data/iso-8859-14
-f 0444 root sys $DATADIR/charsets/iso-8859-15 data/iso-8859-15
 f 0444 root sys $DATADIR/charsets/iso-8859-2 data/iso-8859-2
 f 0444 root sys $DATADIR/charsets/iso-8859-3 data/iso-8859-3
 f 0444 root sys $DATADIR/charsets/iso-8859-4 data/iso-8859-4
@@ -231,6 +231,10 @@ f 0444 root sys $DATADIR/charsets/iso-8859-6 data/iso-8859-6
 f 0444 root sys $DATADIR/charsets/iso-8859-7 data/iso-8859-7
 f 0444 root sys $DATADIR/charsets/iso-8859-8 data/iso-8859-8
 f 0444 root sys $DATADIR/charsets/iso-8859-9 data/iso-8859-9
+f 0444 root sys $DATADIR/charsets/iso-8859-10 data/iso-8859-10
+f 0444 root sys $DATADIR/charsets/iso-8859-13 data/iso-8859-13
+f 0444 root sys $DATADIR/charsets/iso-8859-14 data/iso-8859-14
+f 0444 root sys $DATADIR/charsets/iso-8859-15 data/iso-8859-15
 f 0444 root sys $DATADIR/charsets/utf-8 data/utf-8
 
 d 0555 root sys $DATADIR/data -
@@ -246,12 +250,12 @@ c 0444 root sys $DATADIR/templates templates/*.tmpl
 
 # Config files
 d 0555 root sys $SERVERROOT -
-d 0711 root sys $SERVERROOT/certs -
+d 0711 $CUPS_USER $CUPS_GROUP $SERVERROOT/certs -
 d 0755 root sys $SERVERROOT/interfaces -
 d 0755 root sys $SERVERROOT/ppd -
-c 0644 root sys $SERVERROOT conf/*.conf
-c 0644 root sys $SERVERROOT/mime.convs conf/mime.convs
-c 0644 root sys $SERVERROOT/mime.types conf/mime.types
+c 0600 root sys $SERVERROOT conf/*.conf
+c 0600 root sys $SERVERROOT/mime.convs conf/mime.convs
+c 0600 root sys $SERVERROOT/mime.types conf/mime.types
 
 %system linux
 d 0555 root sys $PAMDIR -
@@ -279,7 +283,7 @@ f 0444 root sys $LIBDIR/libcupsimage.a filter/libcupsimage.a
 
 # Documentation files
 d 0555 root sys $DOCDIR -
-f 0444 root sys $DOCDIR/cups.css doc/cups.css
+f 0444 root sys $DOCDIR doc/*.css
 f 0444 root sys $DOCDIR doc/*.html
 f 0444 root sys $DOCDIR doc/*.pdf
 d 0555 root sys $DOCDIR/images -
@@ -366,5 +370,5 @@ f 0444 root sys $AMANDIR/man$MAN8DIR/lpmove.$MAN8EXT man/lpmove.man
 i 0555 root sys cups cups.sh
 
 #
-# End of "$Id: cups.list.in,v 1.13.2.4 2002/01/02 18:04:17 mike Exp $".
+# End of "$Id: cups.list.in,v 1.13.2.5 2002/01/14 20:36:30 mike Exp $".
 #
index 5f3b566cb9f85a30e464a5f7f91e2e322d13387c..e1c7586ffb1e71f0dbeb8cbc42ab72e8fafcde4e 100644 (file)
 iso-8859-1
-Procedi 
+Continua
 Annulla
-Aiuto 
-Esci 
-Chiudi 
-Sì 
-No 
-Attivo 
+Aiuto
+Esci
+Chiudi
+Sì
+No
+Attivo
 Inattivo
-Salva 
-Scarta 
-Standard 
-Opzioni 
-Più Informazioni 
-Nero 
-Colore 
-Ciano 
-Fucsia 
-Giallo 
-Copyright 1993-2002 di Easy Software Products, tutti i diritti riservati. 
+Salva
+Abbandona
+Predefinito
+Opzioni
+Maggiori informazioni
+Nero
+Colore
+Ciano
+Fucsia
+Giallo
+Copyright 1993-2002 Easy Software Products, tutti i diritti riservati.
 Generale
-Stampante 
+Stampante
 Immagini
 HP-GL/2
-Extra 
-Documento 
-Altro 
-Stampa delle pagine: 
-Intero Documento 
-Stampa intervallo: 
-Ordine inverso: 
-Formato della pagina: 
- 1-Up 
- 2-Up 
- 4-Up 
-Scaling dell'immagine: 
-Usa formato naturale dell'immagine
-Zoom in percentuale 
-Zoom in PPI 
-Immagine riflessa: 
-Saturazione del colore: 
-Tonalità del colore: 
-Adatta alla pagina: 
-Ombreggiatura: 
-Larghezza della penna: 
-Correzione Gamma: 
-Luminosità: 
-Aggiungi 
-Cancella 
-Modifica 
-URI della stampante 
-Nome della stampante 
-Collocazione della stampante 
-Informazioni sulla stampante 
-Produttore e modello della stampante 
-URI Del Dispositivo 
-Preparazione della pagina 
-Stampa della  Pagina 
-Inizializzazione Stampante 
-Condizione della stampante 
-Sto accettando le richieste di stampa
-Non sto accettando le richieste di stampa 
-Richieste di stampa 
-Codice categoria 
-Locale 
-Remoto 
+Extra
+Documento
+Altro
+Stampa delle pagine:
+Intero Documento
+Stampa intervallo:
+Ordine inverso:
+Formato della pagina:
+ 1-Up
+ 2-Up
+ 4-Up
+Dimensione dell'immagine:
+Usa dimensione originale dell'immagine
+Zoom in percentuale
+Zoom in PPI
+Immagine riflessa:
+Saturazione del colore:
+Tonalità del colore:
+Adatta alla pagina:
+Ombreggiatura:
+Larghezza della penna:
+Correzione gamma:
+Luminosità:
+Aggiungi
+Cancella
+Modifica
+URI della stampante
+Nome della stampante
+Collocazione della stampante
+Informazioni sulla stampante
+Produttore e modello della stampante
+URI del dispositivo
+Preparazione della pagina
+Stampa della pagina
+Inizializzazione della stampante
+Stato della stampante
+Accettazione dei lavori di stampa abilitata
+Accettazione dei lavori di stampa disabilitata
+Richieste di stampa
+Categoria
+Locale
+Remoto
 Fronte-retro
-Sto cucendo con punti metallici 
+Spillatura in corso
 Copie veloci
 Copie fascicolate
 Perforazione delle pagine (per fascicolatura)
-Inserendo copertina 
-Applicando fascicolatura 
-Ordinando 
-Piccolo (fino a 9.5x1în) 
-Medio (9.5x1în - 13x19in) 
-Grande (13x19in e più grande) 
-Formato personalizzato 
-Idle 
-Elaborando 
-Arrestato 
-Tutto 
-Dispari 
+Inserimento copertina in corso
+Fascicolatura in corso
+Ordinamento in corso
+Piccolo (fino a 9.5x14")
+Medio (da 9.5x14" a 13x19")
+Grande (13x19" o maggiore)
+Formato personalizzato
+In attesa
+In elaborazione
+Fermo
+Tutto
+Dispari
 Pari
-Più Scuro       Più Luminoso 
-Formato del supporto 
-Tipo del supporto 
-Sorgente del supporto 
-Orientamento: 
-Verticale 
-Orizzontale 
-Condizione di lavoro
-Nome di lavoro
-Nome dell' utente
-Priorita'
+Più scuro       Più chiaro
+Formato del supporto
+Tipo del supporto
+Sorgente del supporto
+Orientamento:
+Verticale
+Orizzontale
+Stato del processo
+Nome del processo
+Nome dell'utente
+Priorità
 Copie
 Dimensioni del file
 In attesa
 Modo stampa
 Risoluzione
 Testo
-Speciale stampa 
+Stampa di qualità
 Margini
-Sinistra
-Destra
+Sinistro
+Destro
 Inferiore
 Superiore
-Nome(s)
+Nome/i file
 Stampa
-400 Il vostro browser ha trasmesso una richiesta che questo server non ha capito 
-Questo server non ha potuto verificare che siete autorizzati ad accedere alla risorsa. 
-Dovete pagare accedere a questo server. 
-Non avete il permesso di accedere alla risorsa richiesta su questo server. 
-La risorsa chiesta non è stata trovata su questo server. 
-Il metodo richiesto non è consentito con la risorsa desiderata. 
-Una rappresentazione adatta per la risorsa non è stata trovata su questo server. 
+400 Il vostro browser ha inviato una richiesta che non può essere eseguita su questo server.
+Questo server non ha potuto verificare la vostra autorizzazione ad accedere alla risorsa.
+L'accesso a questo servizio è a pagamento.
+Non avete il permesso di accedere alla risorsa richiesta su questo server.
+La risorsa richiesta non è disponibile su questo server.
+Il metodo richiesto non è consentito con la risorsa selezionata.
+Una rappresentazione adatta per la risorsa non è disponibile su questo server.
 Non avete il permesso utilizzare questo server come proxy.
-La richiesta ha impiegato troppo tempo per essere completata ed è stata abbandonata. 
-La risorsa chiesta ha più di un valore. 
-La risorsa chiesta non e' piu' disponibile e non è stata ancora rimpiazzata. 
-Il metodo chiesto richiede un campo "Content-Length"  valido.
-I prerequisiti per la richiesta non sono soddisfatti.
-La richiesta è troppo grande per essere elaborata da questo server.
-L'URI della richiesta è troppo grande per essere elaborato da questo server.
-Il formato della richiesta non è capito da questo server. 
-426 An upgrade to a secure connection is required. If you are seeing this message in a web browser then it does not support HTTP encryption upgrades.
-500 Il server ha rilevato un errore non recuperabile e non può elaborare la vostra richiesta. 
-Il metodo chiesto non è implementato da questo server. 
+La richiesta ha impiegato troppo tempo per essere completata ed è stata annullata.
+La risorsa richiesta ha più di un valore.
+La risorsa richiesta non è più disponibile e non è stata ancora sostituita.
+Il metodo chiesto richiede un campo "Content-Length" valido.
+I prerequisiti per la richiesta non possono essere soddisfatti.
+La richiesta è troppo grande per essere eseguita da questo server.
+L'URI richiesta è troppo grande per essere eseguita da questo server.
+Il formato della richiesta non è valido su questo server.
+426 È richiesto il passaggio ad una connessione sicura. Se state leggendo questo messaggio nella finestra del vostro browser web vuol dire che non è in grado di supportare il funzionamento con HTTP crittografato.
+500 Il server ha rilevato un errore non recuperabile e non può eseguire la vostra richiesta.
+Il metodo richiesto non è implementato da questo server.
 Il proxy server ha ricevuto una risposta non valida da un server di livello superiore.
-La risorsa chiesta è attualmente non disponibile su questo server. 
-Il proxy server ha impiegato troppo tempo per rispondere a questo server. 
-Questo server non supporta la versione HTTP richiesta dal vostro browser. 
+La risorsa richiesta non è attualmente disponibile su questo server.
+Il proxy server ha impiegato troppo tempo per rispondere a questo server.
+Questo server non supporta la versione HTTP richiesta dal vostro browser.