mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
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>
This commit is contained in:
parent
a28d4f8e3e
commit
cc1e8aed30
31 changed files with 73 additions and 176 deletions
|
@ -11,4 +11,4 @@ html_header( __("Page Not Found") );
|
|||
</div>
|
||||
|
||||
<?php
|
||||
html_footer(AUR_VERSION);
|
||||
html_footer(AURWEB_VERSION);
|
||||
|
|
|
@ -136,6 +136,6 @@ if (isset($_COOKIE["AURSID"])) {
|
|||
|
||||
echo "</div>";
|
||||
|
||||
html_footer(AUR_VERSION);
|
||||
html_footer(AURWEB_VERSION);
|
||||
|
||||
?>
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
|
@ -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);
|
||||
|
|
|
@ -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");
|
||||
|
|
|
@ -53,4 +53,4 @@ html_header('AUR ' . __("Login"));
|
|||
<?php endif; ?>
|
||||
</div>
|
||||
<?php
|
||||
html_footer(AUR_VERSION);
|
||||
html_footer(AURWEB_VERSION);
|
||||
|
|
|
@ -99,5 +99,5 @@ if (isset($pkgid)) {
|
|||
}
|
||||
}
|
||||
|
||||
html_footer(AUR_VERSION);
|
||||
html_footer(AURWEB_VERSION);
|
||||
|
||||
|
|
|
@ -109,4 +109,4 @@ html_header(__("Password Reset"));
|
|||
|
||||
<?php
|
||||
|
||||
html_footer(AUR_VERSION);
|
||||
html_footer(AURWEB_VERSION);
|
||||
|
|
|
@ -155,5 +155,5 @@ if (isset($_COOKIE["AURSID"])) {
|
|||
pkgbase_display_details($base_id, $details, null);
|
||||
}
|
||||
|
||||
html_footer(AUR_VERSION);
|
||||
html_footer(AURWEB_VERSION);
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -80,5 +80,5 @@ if (isset($base_id)) {
|
|||
include('pkgreq_results.php');
|
||||
}
|
||||
|
||||
html_footer(AUR_VERSION);
|
||||
html_footer(AURWEB_VERSION);
|
||||
|
||||
|
|
|
@ -121,5 +121,5 @@ else {
|
|||
header('Location: /');
|
||||
}
|
||||
|
||||
html_footer(AUR_VERSION);
|
||||
html_footer(AURWEB_VERSION);
|
||||
|
||||
|
|
|
@ -31,4 +31,4 @@ if (has_credential(CRED_PKGBASE_LIST_VOTERS)):
|
|||
<?php
|
||||
endif;
|
||||
|
||||
html_footer(AUR_VERSION);
|
||||
html_footer(AURWEB_VERSION);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue