Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张磊
/
FileStorageBeego
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
20cfece1
authored
2014-01-02 07:17:49 -0800
by
astaxie
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge pull request #438 from Codonaut/error_page_improvements
Error page improvements
2 parents
480aa521
c433b702
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
10 deletions
middleware/error.go
middleware/error.go
View file @
20cfece
...
...
@@ -185,7 +185,7 @@ func NotFound(rw http.ResponseWriter, r *http.Request) {
t
,
_
:=
template
.
New
(
"beegoerrortemp"
)
.
Parse
(
errtpl
)
data
:=
make
(
map
[
string
]
interface
{})
data
[
"Title"
]
=
"Page Not Found"
data
[
"Content"
]
=
template
.
HTML
(
"<br>The
Page You have requested
flown the coop."
+
data
[
"Content"
]
=
template
.
HTML
(
"<br>The
page you have requested has
flown the coop."
+
"<br>Perhaps you are here because:"
+
"<br><br><ul>"
+
"<br>The page has moved"
+
...
...
@@ -203,11 +203,11 @@ func Unauthorized(rw http.ResponseWriter, r *http.Request) {
t
,
_
:=
template
.
New
(
"beegoerrortemp"
)
.
Parse
(
errtpl
)
data
:=
make
(
map
[
string
]
interface
{})
data
[
"Title"
]
=
"Unauthorized"
data
[
"Content"
]
=
template
.
HTML
(
"<br>The
Page You have requested can't
authorized."
+
data
[
"Content"
]
=
template
.
HTML
(
"<br>The
page you have requested can't be
authorized."
+
"<br>Perhaps you are here because:"
+
"<br><br><ul>"
+
"<br>
Check the credentials that you supplied
"
+
"<br>
Check the address for error
s"
+
"<br>
The credentials you supplied are incorrect
"
+
"<br>
There are errors in the website addres
s"
+
"</ul>"
)
data
[
"BeegoVersion"
]
=
VERSION
//rw.WriteHeader(http.StatusUnauthorized)
...
...
@@ -219,7 +219,7 @@ func Forbidden(rw http.ResponseWriter, r *http.Request) {
t
,
_
:=
template
.
New
(
"beegoerrortemp"
)
.
Parse
(
errtpl
)
data
:=
make
(
map
[
string
]
interface
{})
data
[
"Title"
]
=
"Forbidden"
data
[
"Content"
]
=
template
.
HTML
(
"<br>The
Page You have requested
forbidden."
+
data
[
"Content"
]
=
template
.
HTML
(
"<br>The
page you have requested is
forbidden."
+
"<br>Perhaps you are here because:"
+
"<br><br><ul>"
+
"<br>Your address may be blocked"
+
...
...
@@ -236,7 +236,7 @@ func ServiceUnavailable(rw http.ResponseWriter, r *http.Request) {
t
,
_
:=
template
.
New
(
"beegoerrortemp"
)
.
Parse
(
errtpl
)
data
:=
make
(
map
[
string
]
interface
{})
data
[
"Title"
]
=
"Service Unavailable"
data
[
"Content"
]
=
template
.
HTML
(
"<br>The
Page You have requested
unavailable."
+
data
[
"Content"
]
=
template
.
HTML
(
"<br>The
page you have requested is
unavailable."
+
"<br>Perhaps you are here because:"
+
"<br><br><ul>"
+
"<br><br>The page is overloaded"
+
...
...
@@ -252,11 +252,10 @@ func InternalServerError(rw http.ResponseWriter, r *http.Request) {
t
,
_
:=
template
.
New
(
"beegoerrortemp"
)
.
Parse
(
errtpl
)
data
:=
make
(
map
[
string
]
interface
{})
data
[
"Title"
]
=
"Internal Server Error"
data
[
"Content"
]
=
template
.
HTML
(
"<br>The
Page You have requested has down
now."
+
data
[
"Content"
]
=
template
.
HTML
(
"<br>The
page you have requested is down right
now."
+
"<br><br><ul>"
+
"<br>simply try again later"
+
"<br>you should report the fault to the website administrator"
+
"</ul>"
)
"<br>Please try again later and report the error to the website administrator"
+
"<br></ul>"
)
data
[
"BeegoVersion"
]
=
VERSION
//rw.WriteHeader(http.StatusInternalServerError)
t
.
Execute
(
rw
,
data
)
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment