-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change html response body check (#62)
- Loading branch information
1 parent
318fb2f
commit f1cc1c6
Showing
5 changed files
with
99 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<html> | ||
<head> | ||
<title>Object moved</title> | ||
</head> | ||
<body> | ||
<h2>Object moved to <a href="/page/123">here</a>.</h2> | ||
</body> | ||
</html> | ||
|
||
<!DOCTYPE html> | ||
|
||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<title>Rock - Page Not Found</title> | ||
|
||
<link rel="stylesheet" href="/Themes/Rock/Styles/bootstrap.css" /> | ||
<link rel="stylesheet" href="/Themes/Rock/Styles/theme.css" /> | ||
|
||
<!-- Icons --> | ||
<link rel="shortcut icon" href="/Assets/Icons/favicon.ico" /> | ||
<link | ||
rel="apple-touch-icon-precomposed" | ||
sizes="144x144" | ||
href="/Assets/Icons/touch-icon-ipad-retina.png" | ||
/> | ||
<link | ||
rel="apple-touch-icon-precomposed" | ||
sizes="114x114" | ||
href="/Assets/Icons/touch-icon-iphone-retina.png" | ||
/> | ||
<link | ||
rel="apple-touch-icon-precomposed" | ||
sizes="72x72" | ||
href="/Assets/Icons/touch-icon-ipad.png" | ||
/> | ||
<link | ||
rel="apple-touch-icon-precomposed" | ||
href="/Assets/Icons/touch-icon-iphone.png" | ||
/> | ||
|
||
<script src="/Scripts/Bundles/RockJQueryLatest?v=RWC4egkRBNjCo9_aBrw2jUeb13vsJBPHaIryUym02aM1"></script> | ||
</head> | ||
<body id="splash" class="error"> | ||
<form method="post" action="/" id="form1"> | ||
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="" /> | ||
|
||
<input | ||
type="hidden" | ||
name="__VIEWSTATEGENERATOR" | ||
id="__VIEWSTATEGENERATOR" | ||
value="" | ||
/> | ||
|
||
<div id="content"> | ||
<div id="logo"></div> | ||
|
||
<div id="content-box"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<div class="error-wrap"> | ||
<h1>We Can't Find That Page</h1> | ||
|
||
<p class="error-icon info"> | ||
<i class="fa fa-question-circle"></i> | ||
</p> | ||
|
||
<p> | ||
Sorry, but the page you are looking for can not be found. | ||
Check the address of the page and see your administrator if | ||
you still need assistance. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</form> | ||
</body> | ||
</html> |