RhoInc / viz-library

A series of reproducible statistical visualization examples.
https://rhoinc.github.io/viz-library/
MIT License
6 stars 3 forks source link

Set up redirects to new test pages for existing example URLs #107

Closed jwildfire closed 5 years ago

jwildfire commented 5 years ago

Simple js redirects seems to work fine. Just update index.html as shown below and then delete other files:

<html lang="en"><head>
  <title></title>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
  This page has moved. You will be redirected to the <a href="https://rhoinc.github.io/r-library/examples/0006-precip-levelplot-lattice/">new location</a> momentarily ...
</body>
  <script>
    window.location.replace("https://rhoinc.github.io/r-library/examples/0006-precip-levelplot-lattice/");
  </script>
</html>

Migration checklist

jwildfire commented 5 years ago

R example redirects done in #106 / #112