summaryrefslogtreecommitdiff
path: root/web/html
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2015-01-30 07:34:26 +0100
committerLukas Fleischer <archlinux@cryptocrack.de>2015-02-04 09:50:01 +0100
commitcc1e8aed3059c62d56bccfc07f3041901cec8ebb (patch)
tree1916ffdf90e6e0e7e227b4410253327ae892b9b8 /web/html
parenta28d4f8e3eeefc3c6773e903f956f163380631ff (diff)
Rename the AUR software to aurweb
Rename the project to help differentiate between the software providing access to the Arch User Repository and the collection of source packages itself. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html')
-rw-r--r--web/html/404.php2
-rw-r--r--web/html/account.php2
-rw-r--r--web/html/addvote.php2
-rw-r--r--web/html/comaintainers.php2
-rw-r--r--web/html/css/aurweb.css (renamed from web/html/css/aur.css)3
-rw-r--r--web/html/home.php4
-rw-r--r--web/html/index.php2
-rw-r--r--web/html/login.php2
-rw-r--r--web/html/packages.php2
-rw-r--r--web/html/passreset.php2
-rw-r--r--web/html/pkgbase.php2
-rw-r--r--web/html/pkgdel.php2
-rw-r--r--web/html/pkgmerge.php2
-rw-r--r--web/html/pkgreq.php2
-rw-r--r--web/html/tu.php2
-rw-r--r--web/html/voters.php2
16 files changed, 18 insertions, 17 deletions
diff --git a/web/html/404.php b/web/html/404.php
index 06ad683..a47ae1e 100644
--- a/web/html/404.php
+++ b/web/html/404.php
@@ -11,4 +11,4 @@ html_header( __("Page Not Found") );
</div>
<?php
-html_footer(AUR_VERSION);
+html_footer(AURWEB_VERSION);
diff --git a/web/html/account.php b/web/html/account.php
index 3dc8ef0..a4c630e 100644
--- a/web/html/account.php
+++ b/web/html/account.php
@@ -136,6 +136,6 @@ if (isset($_COOKIE["AURSID"])) {
echo "</div>";
-html_footer(AUR_VERSION);
+html_footer(AURWEB_VERSION);
?>
diff --git a/web/html/addvote.php b/web/html/addvote.php
index 0b6b9c6..0372518 100644
--- a/web/html/addvote.php
+++ b/web/html/addvote.php
@@ -113,5 +113,5 @@ if (has_credential(CRED_TU_ADD_VOTE)) {
print __("You are not allowed to access this area.");
}
-html_footer(AUR_VERSION);
+html_footer(AURWEB_VERSION);
diff --git a/web/html/comaintainers.php b/web/html/comaintainers.php
index 591fcad..23d8d19 100644
--- a/web/html/comaintainers.php
+++ b/web/html/comaintainers.php
@@ -16,6 +16,6 @@ if (!isset($base_id) || !has_credential(CRED_PKGBASE_EDIT_COMAINTAINERS, array(p
html_header(__("Manage Co-maintainers"));
$users = pkgbase_get_comaintainers($base_id);
include('comaintainers_form.php');
-html_footer(AUR_VERSION);
+html_footer(AURWEB_VERSION);
diff --git a/web/html/css/aur.css b/web/html/css/aurweb.css
index dfa6717..79acce4 100644
--- a/web/html/css/aur.css
+++ b/web/html/css/aurweb.css
@@ -1,4 +1,5 @@
-/* AUR-specific customizations to "archweb.css". */
+/* aurweb-specific customizations to archweb.css */
+
#archnavbar.anb-aur ul li#anb-aur a {
color: white !important;
}
diff --git a/web/html/home.php b/web/html/home.php
index 556e21b..031ad2b 100644
--- a/web/html/home.php
+++ b/web/html/home.php
@@ -45,7 +45,7 @@ html_header( __("Home") );
<p>
<?php
echo __(
- 'General discussion regarding the Arch User Repository (AUR) and Trusted User structure takes place on %saur-general%s. Package orphan requests, merge requests, and deletion requests should be filed in the %sPackage Actions%s box. For discussion relating to the development of the AUR, use the %saur-dev%s mailing list.',
+ 'General discussion regarding the Arch User Repository (AUR) and Trusted User structure takes place on %saur-general%s. Package orphan requests, merge requests, and deletion requests should be filed in the %sPackage Actions%s box. For discussion relating to the development of the AUR web interface, use the %saur-dev%s mailing list.',
'<a href="https://mailman.archlinux.org/mailman/listinfo/aur-general">',
'</a>',
'<var>',
@@ -129,4 +129,4 @@ $(document).ready(function() {
});
</script>
<?php
-html_footer(AUR_VERSION);
+html_footer(AURWEB_VERSION);
diff --git a/web/html/index.php b/web/html/index.php
index cfd6598..fad1d2f 100644
--- a/web/html/index.php
+++ b/web/html/index.php
@@ -143,7 +143,7 @@ if (!empty($tokens[1]) && '/' . $tokens[1] == get_pkg_route()) {
} else {
switch ($path) {
case "/css/archweb.css":
- case "/css/aur.css":
+ case "/css/aurweb.css":
case "/css/cgit.css":
case "/css/archnavbar/archnavbar.css":
header("Content-Type: text/css");
diff --git a/web/html/login.php b/web/html/login.php
index 9818d04..94da559 100644
--- a/web/html/login.php
+++ b/web/html/login.php
@@ -53,4 +53,4 @@ html_header('AUR ' . __("Login"));
<?php endif; ?>
</div>
<?php
-html_footer(AUR_VERSION);
+html_footer(AURWEB_VERSION);
diff --git a/web/html/packages.php b/web/html/packages.php
index 645806e..76f7563 100644
--- a/web/html/packages.php
+++ b/web/html/packages.php
@@ -99,5 +99,5 @@ if (isset($pkgid)) {
}
}
-html_footer(AUR_VERSION);
+html_footer(AURWEB_VERSION);
diff --git a/web/html/passreset.php b/web/html/passreset.php
index fecefe4..bc2eefc 100644
--- a/web/html/passreset.php
+++ b/web/html/passreset.php
@@ -109,4 +109,4 @@ html_header(__("Password Reset"));
<?php
-html_footer(AUR_VERSION);
+html_footer(AURWEB_VERSION);
diff --git a/web/html/pkgbase.php b/web/html/pkgbase.php
index 201749e..ef9b2c4 100644
--- a/web/html/pkgbase.php
+++ b/web/html/pkgbase.php
@@ -155,5 +155,5 @@ if (isset($_COOKIE["AURSID"])) {
pkgbase_display_details($base_id, $details, null);
}
-html_footer(AUR_VERSION);
+html_footer(AURWEB_VERSION);
diff --git a/web/html/pkgdel.php b/web/html/pkgdel.php
index 41900e4..45a3ad4 100644
--- a/web/html/pkgdel.php
+++ b/web/html/pkgdel.php
@@ -45,4 +45,4 @@ if (has_credential(CRED_PKGBASE_DELETE)): ?>
print __("Only Trusted Users and Developers can delete packages.");
endif;
-html_footer(AUR_VERSION);
+html_footer(AURWEB_VERSION);
diff --git a/web/html/pkgmerge.php b/web/html/pkgmerge.php
index df97a2a..5fbdbd8 100644
--- a/web/html/pkgmerge.php
+++ b/web/html/pkgmerge.php
@@ -66,4 +66,4 @@ if (has_credential(CRED_PKGBASE_DELETE)): ?>
print __("Only Trusted Users and Developers can merge packages.");
endif;
-html_footer(AUR_VERSION);
+html_footer(AURWEB_VERSION);
diff --git a/web/html/pkgreq.php b/web/html/pkgreq.php
index ccb0acd..1e671d0 100644
--- a/web/html/pkgreq.php
+++ b/web/html/pkgreq.php
@@ -80,5 +80,5 @@ if (isset($base_id)) {
include('pkgreq_results.php');
}
-html_footer(AUR_VERSION);
+html_footer(AURWEB_VERSION);
diff --git a/web/html/tu.php b/web/html/tu.php
index 158632a..cc77d62 100644
--- a/web/html/tu.php
+++ b/web/html/tu.php
@@ -121,5 +121,5 @@ else {
header('Location: /');
}
-html_footer(AUR_VERSION);
+html_footer(AURWEB_VERSION);
diff --git a/web/html/voters.php b/web/html/voters.php
index a40a9a1..8833be1 100644
--- a/web/html/voters.php
+++ b/web/html/voters.php
@@ -31,4 +31,4 @@ if (has_credential(CRED_PKGBASE_LIST_VOTERS)):
<?php
endif;
-html_footer(AUR_VERSION);
+html_footer(AURWEB_VERSION);