Author: Armin Rigo <[email protected]> Branch: extradoc Changeset: r655:8819072a1c08 Date: 2015-11-16 18:49 +0100 http://bitbucket.org/pypy/pypy.org/changeset/8819072a1c08/
Log: Add the HTML file we use to redirect from bugs.pypy.org diff --git a/redirect_bugs_pypy_org.html b/redirect_bugs_pypy_org.html new file mode 100644 --- /dev/null +++ b/redirect_bugs_pypy_org.html @@ -0,0 +1,20 @@ +<html> +<body> +<h1>PyPy Issue tracker</h1> +<p>The issue tracker for PyPy moved here: +<a href="https://bitbucket.org/pypy/pypy/issues?status=new&status=open">https://bitbucket.org/pypy/pypy/issues</a></p> +<p>You should be redirected automatically.</p> + +<script type="text/javascript"> + +go_to = "https://bitbucket.org/pypy/pypy/issues?status=new&status=open"; +re = /[/]issue([0123456789]+)/g; +if (tokens = re.exec(document.location.href)) { + num = tokens[1]; + go_to = "https://bitbucket.org/pypy/pypy/issue/" + num + "/"; +} +document.location.href = go_to; + +</script> +</body> +</html> _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
