summaryrefslogtreecommitdiffstats
path: root/web/lib/routing.inc.php
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2014-11-21 11:34:38 +0100
committerLukas Fleischer <archlinux@cryptocrack.de>2014-11-21 11:43:31 +0100
commit571b74b9017169ed6181a57d637ad737fd15f6b3 (patch)
treec636c26608acb3cd06a446beaf33532caf854a6b /web/lib/routing.inc.php
parentbef4fc9f44bf6762f64ffe0521cd60b445f3d816 (diff)
downloadaurweb-571b74b9017169ed6181a57d637ad737fd15f6b3.tar.xz
Always use virtual URLs
Support for non-virtual URLs has been broken for a long time and is no longer used on the official AUR setup. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/lib/routing.inc.php')
-rw-r--r--web/lib/routing.inc.php33
1 files changed, 4 insertions, 29 deletions
diff --git a/web/lib/routing.inc.php b/web/lib/routing.inc.php
index 9585304..833ea0f 100644
--- a/web/lib/routing.inc.php
+++ b/web/lib/routing.inc.php
@@ -26,10 +26,6 @@ $PKGBASE_PATH = '/pkgbase';
$PKGREQ_PATH = '/requests';
$USER_PATH = '/account';
-function use_virtual_urls() {
- return config_get_bool('options', 'use_virtual_urls');
-}
-
function get_route($path) {
global $ROUTES;
@@ -42,13 +38,7 @@ function get_route($path) {
}
function get_uri($path) {
- global $ROUTES;
-
- if (use_virtual_urls()) {
- return $path;
- } else {
- return get_route($path);
- }
+ return $path;
}
function get_pkg_route() {
@@ -68,22 +58,12 @@ function get_pkgreq_route() {
function get_pkg_uri($pkgname) {
global $PKG_PATH;
-
- if (use_virtual_urls()) {
- return $PKG_PATH . '/' . urlencode($pkgname) . '/';
- } else {
- return '/' . get_route($PKG_PATH) . '?N=' . urlencode($pkgname);
- }
+ return $PKG_PATH . '/' . urlencode($pkgname) . '/';
}
function get_pkgbase_uri($pkgbase_name) {
global $PKGBASE_PATH;
-
- if (use_virtual_urls()) {
- return $PKGBASE_PATH . '/' . urlencode($pkgbase_name) . '/';
- } else {
- return '/' . get_route($PKGBASE_PATH) . '?N=' . urlencode($pkgbase_name);
- }
+ return $PKGBASE_PATH . '/' . urlencode($pkgbase_name) . '/';
}
function get_user_route() {
@@ -93,10 +73,5 @@ function get_user_route() {
function get_user_uri($username) {
global $USER_PATH;
-
- if (use_virtual_urls()) {
- return $USER_PATH . '/' . urlencode($username) . '/';
- } else {
- return '/' . get_route($USER_PATH) . '?U=' . urlencode($username);
- }
+ return $USER_PATH . '/' . urlencode($username) . '/';
}