summaryrefslogtreecommitdiffstats
path: root/web/html
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2014-10-10 10:57:47 +0200
committerLukas Fleischer <archlinux@cryptocrack.de>2014-10-10 10:57:47 +0200
commit725a4778dbe51873e1ab1219339397ad50d78e61 (patch)
treee7bcfe7dfedafd7deaefd628eacdcf878a31b1b3 /web/html
parent89b0fb83487be96daf7f84a582da62f7239e23f4 (diff)
downloadaurweb-725a4778dbe51873e1ab1219339397ad50d78e61.tar.xz
Add a script to generate package lists
This can be used to regularly generate lists of packages and package bases that are made available under /packages.gz and /pkgbase.gz, respectively. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html')
-rw-r--r--web/html/index.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/web/html/index.php b/web/html/index.php
index 91d0222..95989f5 100644
--- a/web/html/index.php
+++ b/web/html/index.php
@@ -164,6 +164,12 @@ if (!empty($tokens[1]) && '/' . $tokens[1] == get_pkg_route()) {
header("Content-Type: application/javascript");
readfile("./$path");
break;
+ case "/packages.gz":
+ case "/pkgbase.gz":
+ header("Content-Type: text/plain");
+ header("Content-Encoding: gzip");
+ readfile("./$path");
+ break;
default:
header("HTTP/1.0 404 Not Found");
include "./404.php";