Remove ClientRedirect.aspx

This commit is contained in:
Thomas Morris
2018-12-14 15:57:34 +00:00
committed by Sebastiaan Janssen
parent b087b862e8
commit c79f557e94
2 changed files with 0 additions and 65 deletions

View File

@@ -213,7 +213,6 @@
<Content Include="Config\Lang\sv-SE.user.xml" />
<Content Include="Config\Lang\zh-CN.user.xml" />
<Content Include="Umbraco\Config\Lang\cs.xml" />
<Content Include="Umbraco\ClientRedirect.aspx" />
<Content Include="Umbraco\Config\Lang\tr.xml" />
<Content Include="Umbraco\Config\Lang\zh_tw.xml" />
<Content Include="Umbraco\create.aspx" />

View File

@@ -1,64 +0,0 @@
<%@ Page Language="C#" AutoEventWireup="true" Inherits="Umbraco.Web.UI.Pages.UmbracoEnsuredPage" %>
<%--
This page is required because we cannot reload the angular app with a changed Hash since it just detects the hash and doesn't reload.
So this is used purely for a full reload of an angular app with a changed hash.
--%>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Redirecting...</title>
<script type="text/javascript">
var parts = window.location.href.split("?redirectUrl=");
if (parts.length !== 2) {
window.location.href = "/";
}
else {
//This is a genius way of parsing a uri
//https://gist.github.com/jlong/2428561
try {
var parser = document.createElement('a');
parser.href = parts[1];
// This next line may seem redundant but is required to get around a bug in IE
// that doesn't set the parser.hostname or parser.protocol correctly for relative URLs.
// See https://gist.github.com/jlong/2428561#gistcomment-1461205
parser.href = parser.href;
// => "http:"
if (!parser.protocol || (parser.protocol.toLowerCase() !== "http:" && parser.protocol.toLowerCase() !== "https:")) {
throw "invalid protocol";
};
// => "example.com"
if (!parser.hostname || parser.hostname === "") {
throw "invalid hostname";
}
//parser.port; // => "3000"
//parser.pathname => "/pathname/"
//parser.search => "?search=test"
// => "#hash"
if (parser.hash && parser.hash.indexOf("#/developer/framed/") !== 0) {
throw "invalid hash";
}
//parser.host; // => "example.com:3000"
if (parser.host === window.location.host) {
window.location.href = parts[1];
}
} catch (e) {
alert(e);
}
}
</script>
</head>
<body>
<small>Redirecting...</small>
</body>
</html>