summaryrefslogtreecommitdiff
path: root/docs/web/link.php
diff options
context:
space:
mode:
authorrandomguy3 <randomguy3@7c02a99a-9b00-45e3-bf44-6f3dd7fddb64>2012-01-06 13:44:40 +0000
committerrandomguy3 <randomguy3@7c02a99a-9b00-45e3-bf44-6f3dd7fddb64>2012-01-06 13:44:40 +0000
commit2ed61cfb3ad3d404b9a44bbb3f4c8083b469ae22 (patch)
tree9939c67d95720a330bd7b884363d801cc7d5811d /docs/web/link.php
Move everything into trunk.
Also add branches and tags directories. git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@348 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
Diffstat (limited to 'docs/web/link.php')
-rw-r--r--docs/web/link.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/docs/web/link.php b/docs/web/link.php
new file mode 100644
index 0000000..f0d4078
--- /dev/null
+++ b/docs/web/link.php
@@ -0,0 +1,23 @@
+<?
+$dmg_ver = "0.4";
+$src_ver = "0.6";
+$win_ver = "0.3";
+$file_root = "http://sourceforge.net/projects/tikzit/files";
+
+$urls = array(
+'src' => "$file_root/tikzit-$source_ver/tikzit-$src_ver.tar.gz/download",
+'dmg' => "$file_root/tikzit-$dmg_ver/TikZiT-$dmg_ver.dmg/download",
+'win' => "$file_root/tikzit-$win_ver/tikzit-$win_ver.zip/download"
+);
+
+
+$url = $urls[$_GET['to']];
+if ($url == '') $url='/';
+?>
+<html>
+<head>
+ <title>Redirecting...</title>
+ <meta http-equiv="refresh" content="0;url=<?=$url?>" />
+</head>
+<body></body>
+</html> \ No newline at end of file