diff options
| -rw-r--r-- | extras/appengine/templates/404.html | 12 | ||||
| -rw-r--r-- | extras/appengine/templates/500.html | 19 |
2 files changed, 31 insertions, 0 deletions
diff --git a/extras/appengine/templates/404.html b/extras/appengine/templates/404.html new file mode 100644 index 0000000..1eb60e8 --- /dev/null +++ b/extras/appengine/templates/404.html @@ -0,0 +1,12 @@ +<html> + <head><title>404 Not Found</title></head> + <body> + <h1>404 - Not Found.</h1> + <p> + If you think this is a bug please file an issue on the tracker: + <a href="http://code.google.com/p/python-sqlparse/issues/list"> + http://code.google.com/p/python-sqlparse/issues/list + </a>. + </p> + </body> +</html> diff --git a/extras/appengine/templates/500.html b/extras/appengine/templates/500.html new file mode 100644 index 0000000..8fa8f56 --- /dev/null +++ b/extras/appengine/templates/500.html @@ -0,0 +1,19 @@ +<html> + <head><title>500 Internal Server Error</title></head> + <body> + <h1>uups... 500 Internal Server Error.</h1> + <p> + Looks like you've hit a bug! Please file an issue on the tracker: + <a href="http://code.google.com/p/python-sqlparse/issues/list"> + http://code.google.com/p/python-sqlparse/issues/list + </a>. + </p> + <p> + Please add a short description what happened and if possible add the SQL + statement you've tried to format. + </p> + <p> + Thanks! + </p> + </body> +</html> |
