Compare commits
No commits in common. "f27631954e5a061c37b41d764f5ae4a85a59cd4f" and "1d5272c29941bfa0491e2847667de8c96083ec95" have entirely different histories.
f27631954e
...
1d5272c299
|
@ -4,9 +4,6 @@ ErrorDocument 403 "Access forbidden"
|
||||||
ErrorDocument 404 /cgi/main.py
|
ErrorDocument 404 /cgi/main.py
|
||||||
ErrorDocument 500 "A very nasty bug found his way onto this very server"
|
ErrorDocument 500 "A very nasty bug found his way onto this very server"
|
||||||
|
|
||||||
# Work around for Safari
|
|
||||||
Header set X-Content-Type-Options "nosniff"
|
|
||||||
|
|
||||||
<Files ~ "\.(py|pyc|db|log)$">
|
<Files ~ "\.(py|pyc|db|log)$">
|
||||||
deny from all
|
deny from all
|
||||||
</Files>
|
</Files>
|
||||||
|
|
|
@ -224,7 +224,6 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
//<![CDATA[
|
|
||||||
document.getElementById("url").value = window.location.href
|
document.getElementById("url").value = window.location.href
|
||||||
|
|
||||||
if (!/:html/.test(window.location.href))
|
if (!/:html/.test(window.location.href))
|
||||||
|
@ -237,7 +236,8 @@
|
||||||
for (var select of document.forms[0].elements)
|
for (var select of document.forms[0].elements)
|
||||||
if (select.tagName == 'SELECT')
|
if (select.tagName == 'SELECT')
|
||||||
for (var option of select)
|
for (var option of select)
|
||||||
if (option.value && options.match(option.value)) {
|
if (option.value)
|
||||||
|
if (options.match(option.value)) {
|
||||||
select.value = option.value
|
select.value = option.value
|
||||||
options = options.replace(option.value, '')
|
options = options.replace(option.value, '')
|
||||||
break
|
break
|
||||||
|
@ -269,7 +269,6 @@
|
||||||
if (target != window.location.pathname)
|
if (target != window.location.pathname)
|
||||||
window.location.href = target
|
window.location.href = target
|
||||||
}
|
}
|
||||||
//]]>
|
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in New Issue