From e2ac1143fefb4a651368dc337b44a85ebdd68f81 Mon Sep 17 00:00:00 2001 From: Michele Guerini Rocco Date: Mon, 22 Jul 2013 00:36:30 +0200 Subject: [PATCH 1/2] Correzioni --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 06585d7..5fda22d 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Plugin jQuery per pagine di errore personalizzate ### Informazioni Un plugin per jQuery che permette di usare pagine di errore personalizzate. Da usare quando non si può modificare il file `.htacces` su Apache o quando si usano applicazioni non ASP su un server IIS -Semplicemente controlla se la risorsa richiesta è disponibile quando si apre un link. +Semplicemente controlla lo stato di una risorsa collegata da un link quando viene richiesta. ### Istruzioni Aggiungi nel'head: @@ -20,7 +20,7 @@ In un'altro script, ad esempio: $("a#prova").custom404({404: "pagina404.html"}); }); -Le opzioni sono `statusCode: url`. Tutti gli status code http va bene. +Le opzioni sono `statusCode: url`. Tutti gli status code http vanno bene. Se non si seleziona nulla verranno selezionati di default tutti i link della pagina. [Qui](http://jsfiddle.net/pxtbs/) c'è un'altro esempio. From 2899f687f0866e0d8390bf86ed325fb264e72160 Mon Sep 17 00:00:00 2001 From: Michele Guerini Rocco Date: Tue, 14 Jan 2014 00:31:23 +0100 Subject: [PATCH 2/2] English Translation --- README.md | 37 +++++++++++++++++++++---------------- 1 file changed, 21 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 5fda22d..643dd97 100644 --- a/README.md +++ b/README.md @@ -1,26 +1,31 @@ -Custom 404 -========== +# Custom 404 -Plugin jQuery per pagine di errore personalizzate -------------------------------------------------- +## JQuery plugin for custom error pages -### Informazioni -Un plugin per jQuery che permette di usare pagine di errore personalizzate. -Da usare quando non si può modificare il file `.htacces` su Apache o quando si usano applicazioni non ASP su un server IIS -Semplicemente controlla lo stato di una risorsa collegata da un link quando viene richiesta. - -### Istruzioni -Aggiungi nel'head: +## Info +A jQuery plugin that allows you to use custom error pages. +To be used when you can not edit the file `. Htacces` Apache or when using +applications on non-ASP on an IIS server. +Simply checks if the requested resource is available when you open a link. + +### Usage +Add in head: -In un'altro script, ad esempio: +In a script: $(document).ready(function(){ - $("a#prova").custom404({404: "pagina404.html"}); + $("a#prova").custom404({404: "404page.html"}); }); -Le opzioni sono `statusCode: url`. Tutti gli status code http vanno bene. -Se non si seleziona nulla verranno selezionati di default tutti i link della pagina. +Options are `statusCode: url`. All the http status codes are fine. +If you do not select anything by default all the links on the page will be used. -[Qui](http://jsfiddle.net/pxtbs/) c'è un'altro esempio. +You can find an example [here](http://jsfiddle.net/NY9dH/). + +### License + +Dual licensed under the MIT and GPL licenses: +http://www.opensource.org/licenses/mitlicense.php +http://www.gnu.org/licenses/gpl.html