1 |
<!DOCTYPE HTML> |
2 |
<html lang=en> |
3 |
<head> |
4 |
<title>Live URL Resolution Viewer</title> |
5 |
<link rel=author href="http://suika.fam.cx/~wakaba/who?" title=Wakaba lang=ja> |
6 |
<style> |
7 |
h1 { |
8 |
font-size: 100%; |
9 |
} |
10 |
textarea { |
11 |
width: 90%; |
12 |
height: 3em; |
13 |
} |
14 |
iframe { |
15 |
visibility: hidden; |
16 |
width: 0; |
17 |
height: 0; |
18 |
} |
19 |
var { |
20 |
color: orange; |
21 |
} |
22 |
</style> |
23 |
<script> |
24 |
document.createElement ('output'); |
25 |
|
26 |
var updateTimer = 0; |
27 |
function update () { |
28 |
if (updateTimer) { |
29 |
clearTimeout (updateTimer); |
30 |
} |
31 |
updateTimer = setTimeout (realUpdate, 100); |
32 |
} // update |
33 |
|
34 |
function htescape (s) { |
35 |
return s.replace (/&/g, '&') |
36 |
.replace (/</g, '<') |
37 |
.replace (/>/g, '>') |
38 |
.replace (/"/g, '"'); |
39 |
} // htescape |
40 |
|
41 |
function htescape2 (s) { |
42 |
return s.replace (/&/g, '&') |
43 |
.replace (/</g, '<') |
44 |
.replace (/>/g, '>') |
45 |
.replace (/"/g, '"') |
46 |
.replace (/[\u0000-\u0020\u007F-\u00A0]/g, function (t) { |
47 |
return '<var>&#x' + t.charCodeAt (0).toString (16).toUpperCase () + ';</var>'; |
48 |
}); |
49 |
} // htescape2 |
50 |
|
51 |
function realUpdate () { |
52 |
var baseURL = document.getElementById ('base-url').value; |
53 |
var resolvedURL = document.getElementById ('resolved-url').value; |
54 |
|
55 |
var pl = document.getElementById ('permalink'); |
56 |
pl.href = location.pathname + '?' + encodeURIComponent (baseURL) + ';' + |
57 |
encodeURIComponent (resolvedURL); |
58 |
|
59 |
var iframe = document.getElementsByTagName ('iframe')[0]; |
60 |
var doc = iframe.contentWindow.document; |
61 |
doc.open (); |
62 |
doc.write ('<!DOCTYPE HTML>'); |
63 |
doc.write ('<base href="' + htescape (baseURL) + '">'); |
64 |
doc.write ('<a href="' + htescape (resolvedURL) + '">xx</a>'); |
65 |
doc.close (); |
66 |
|
67 |
var resultURL = doc.getElementsByTagName ('a')[0].href; |
68 |
var output = document.getElementsByTagName ('output')[0]; |
69 |
output.innerHTML = ''; |
70 |
if (typeof (resultURL) == 'undefined') { |
71 |
output.innerHTML = '(undefined)'; |
72 |
} else if (resultURL === null) { |
73 |
output.innerHTML = '(null)'; |
74 |
} else if (resultURL === '') { |
75 |
output.innerHTML = '(empty string - URL resolution failed?)'; |
76 |
} else { |
77 |
output.innerHTML = '<code>' + htescape2 ('' + resultURL) + |
78 |
'</code> of type <code>' + htescape (typeof (resultURL)) + '</code>'; |
79 |
} |
80 |
} // realUpdate |
81 |
|
82 |
window.onload = function () { |
83 |
if (location.search) { |
84 |
var q = location.search.substring (1).split (/;/); |
85 |
if (q[0] != null) { |
86 |
document.getElementById ('base-url').value = decodeURIComponent (q[0]); |
87 |
} |
88 |
if (q[1] != null) { |
89 |
document.getElementById ('resolved-url').value = decodeURIComponent (q[1]); |
90 |
} |
91 |
} |
92 |
|
93 |
update (); |
94 |
}; // window.onload |
95 |
</script> |
96 |
</head> |
97 |
<body> |
98 |
<h1>Live URL Resolution Viewer |
99 |
(<a rel=bookmark id=permalink href>Permalink</a>)</h1> |
100 |
|
101 |
<dl> |
102 |
<dt><label for=resolved-url>Resolved URL</label>: |
103 |
<dd><textarea id=resolved-url oninput="update()" onkeypress="update()"></textarea> |
104 |
<dt><label for=base-url>Base URL</label>: |
105 |
<dd><textarea id=base-url oninput="update()" onkeypress="update()"></textarea> |
106 |
</dl> |
107 |
<hr> |
108 |
<dl> |
109 |
<dt>Result (Using <code>HTMLAnchorElement.href</code>): |
110 |
<dd><output></output> |
111 |
</dl> |
112 |
|
113 |
<iframe></iframe> |
114 |
|
115 |
</body> |
116 |
</html> |