rsstootalizer/callback.pl

23 lines
491 B
Perl
Raw Normal View History

2017-04-21 14:56:24 +00:00
#!/usr/bin/perl -w
print <<EOF
Content-Type: text/html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<script src="static/js/jquery.min.js"></script>
2017-04-23 18:51:48 +00:00
<script src="static/js/RSSTootalizer.js"></script>
2017-04-21 14:56:24 +00:00
</head>
<body>
<script type="text/javascript">
2017-04-23 18:51:48 +00:00
function RSSTootalizerOnReady(){
2017-04-21 14:56:24 +00:00
var l = "index.pl?mode=Callback&code="+_GET.code;
document.location.href=l;
}
</script>
</body>
</html>
EOF