-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.03 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="1;url=html/R_Project_32feet_NET.htm">
<script type="text/javascript">
// Use an alternate default page if a topic is specified in the query string
var location = window.location;
var queryString = location.search;
if(queryString != "")
{
var idx, options = queryString.split(/[\?\=\&]/);
for(idx = 0; idx < options.length; idx++)
{
// Don't allow javascript, or references outside the current site
if(options[idx] == "topic" && idx + 1 < options.length && options[idx + 1].match(/^\w[\w\/.-]*$/))
{
location.replace(location.origin + location.pathname + options[idx + 1]);
break;
}
}
}
else
location.replace("html/R_Project_32feet_NET.htm");
</script>
<title>32feet.NET - Personal Area Networking for .NET - Redirect</title>
</head>
<body>
<p>If you are not redirected automatically, follow this link to the <a href="html/R_Project_32feet_NET.htm">default topic</a>.</p>
</body>
</html>