From ca09dd69e071b225095953aed434ebb69e7e92bb Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer <paul-christian.volkmer@mni.thm.de> Date: Thu, 18 Oct 2012 11:11:04 +0200 Subject: [PATCH] Wording change on default error pages and 503 error page added --- src/main/webapp/error/401.html | 2 +- src/main/webapp/error/403.html | 2 +- src/main/webapp/error/404.html | 2 +- src/main/webapp/error/503.html | 16 ++++++++++++++++ 4 files changed, 19 insertions(+), 3 deletions(-) create mode 100644 src/main/webapp/error/503.html diff --git a/src/main/webapp/error/401.html b/src/main/webapp/error/401.html index 63363fc8..f1b70621 100644 --- a/src/main/webapp/error/401.html +++ b/src/main/webapp/error/401.html @@ -9,7 +9,7 @@ <article> <h1>401 - UNAUTORIZED</h1> <p> - Sorry, you must be authorized to request this ressource + Sorry, you must be authorized to request this resource </p> </article> </body> diff --git a/src/main/webapp/error/403.html b/src/main/webapp/error/403.html index 78d4f35c..395c74bb 100644 --- a/src/main/webapp/error/403.html +++ b/src/main/webapp/error/403.html @@ -9,7 +9,7 @@ <article> <h1>403 - FORBIDDEN</h1> <p> - Sorry, you are not allowed to request this ressource + Sorry, you are not allowed to request this resource </p> </article> </body> diff --git a/src/main/webapp/error/404.html b/src/main/webapp/error/404.html index 6bae8b15..714ec032 100644 --- a/src/main/webapp/error/404.html +++ b/src/main/webapp/error/404.html @@ -9,7 +9,7 @@ <article> <h1>404 - NOT FOUND</h1> <p> - Sorry, the ressource you are requesting could not be found + Sorry, the resource you are requesting could not be found </p> </article> </body> diff --git a/src/main/webapp/error/503.html b/src/main/webapp/error/503.html new file mode 100644 index 00000000..bc742739 --- /dev/null +++ b/src/main/webapp/error/503.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="UTF-8"> + <title>Not Found</title> + <link href="error/error.css" rel="stylesheet" type="text/css" /> +</head> +<body> + <article> + <h1>503 - SERVICE UNAVAILABLE</h1> + <p> + Sorry, this should not happen. + </p> + </article> +</body> +</html> \ No newline at end of file -- GitLab