mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Use HTTPS links everywhere for Arch sites
The main site, wiki, and BBS are using HTTPS exclusively, so link directly to the correct protocol rather than forcing a redirect. Signed-off-by: Dan McGee <dan@archlinux.org> Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
7e201e5a3a
commit
5222bf0932
9 changed files with 16 additions and 16 deletions
2
HACKING
2
HACKING
|
@ -32,7 +32,7 @@ Submitting patches
|
||||||
Submit uncompressed git-formatted patches to aur-dev@archlinux.org.
|
Submit uncompressed git-formatted patches to aur-dev@archlinux.org.
|
||||||
|
|
||||||
You will need to register on the mailing list before submitting:
|
You will need to register on the mailing list before submitting:
|
||||||
http://mailman.archlinux.org/mailman/listinfo/aur-dev
|
https://mailman.archlinux.org/mailman/listinfo/aur-dev
|
||||||
|
|
||||||
Base your patches on the master branch as forward development is done there.
|
Base your patches on the master branch as forward development is done there.
|
||||||
When writing patches please keep unnecessary changes to a minimum.
|
When writing patches please keep unnecessary changes to a minimum.
|
||||||
|
|
2
README
2
README
|
@ -64,4 +64,4 @@ Contact:
|
||||||
========
|
========
|
||||||
Questions, comments, and patches related to the AUR can be sent to the AUR
|
Questions, comments, and patches related to the AUR can be sent to the AUR
|
||||||
development mailing list: aur-dev@archlinux.org
|
development mailing list: aur-dev@archlinux.org
|
||||||
Mailing list archives: http://mailman.archlinux.org/mailman/listinfo/aur-dev
|
Mailing list archives: https://mailman.archlinux.org/mailman/listinfo/aur-dev
|
||||||
|
|
|
@ -2,7 +2,7 @@ AUR Translation
|
||||||
================
|
================
|
||||||
|
|
||||||
This document describes how to create and maintain AUR translations. It was
|
This document describes how to create and maintain AUR translations. It was
|
||||||
originally derived from http://wiki.archlinux.org/index.php/AUR_Translation
|
originally derived from https://wiki.archlinux.org/index.php/AUR_Translation
|
||||||
|
|
||||||
Creating an AUR translation requires a Transifex (http://www.transifex.net/)
|
Creating an AUR translation requires a Transifex (http://www.transifex.net/)
|
||||||
account. You will need to register with a translation team on the AUR project
|
account. You will need to register with a translation team on the AUR project
|
||||||
|
|
|
@ -170,7 +170,7 @@ ALTER TABLE PackageCategories MODIFY Category VARCHAR(32) NOT NULL;
|
||||||
ALTER TABLE Packages MODIFY Name VARCHAR(64) NOT NULL,
|
ALTER TABLE Packages MODIFY Name VARCHAR(64) NOT NULL,
|
||||||
MODIFY Version VARCHAR(32) NOT NULL DEFAULT '',
|
MODIFY Version VARCHAR(32) NOT NULL DEFAULT '',
|
||||||
MODIFY Description VARCHAR(255) NOT NULL DEFAULT "An Arch Package",
|
MODIFY Description VARCHAR(255) NOT NULL DEFAULT "An Arch Package",
|
||||||
MODIFY URL VARCHAR(255) NOT NULL DEFAULT "http://www.archlinux.org",
|
MODIFY URL VARCHAR(255) NOT NULL DEFAULT "https://www.archlinux.org",
|
||||||
MODIFY License VARCHAR(40) NOT NULL DEFAULT '';
|
MODIFY License VARCHAR(40) NOT NULL DEFAULT '';
|
||||||
ALTER TABLE PackageSources
|
ALTER TABLE PackageSources
|
||||||
MODIFY Source VARCHAR(255) NOT NULL DEFAULT "/dev/null";
|
MODIFY Source VARCHAR(255) NOT NULL DEFAULT "/dev/null";
|
||||||
|
|
|
@ -97,7 +97,7 @@ CREATE TABLE Packages (
|
||||||
Version VARCHAR(32) NOT NULL DEFAULT '',
|
Version VARCHAR(32) NOT NULL DEFAULT '',
|
||||||
CategoryID TINYINT UNSIGNED NOT NULL DEFAULT 1,
|
CategoryID TINYINT UNSIGNED NOT NULL DEFAULT 1,
|
||||||
Description VARCHAR(255) NOT NULL DEFAULT "An Arch Package",
|
Description VARCHAR(255) NOT NULL DEFAULT "An Arch Package",
|
||||||
URL VARCHAR(255) NOT NULL DEFAULT "http://www.archlinux.org",
|
URL VARCHAR(255) NOT NULL DEFAULT "https://www.archlinux.org",
|
||||||
License VARCHAR(40) NOT NULL DEFAULT '',
|
License VARCHAR(40) NOT NULL DEFAULT '',
|
||||||
NumVotes INTEGER UNSIGNED NOT NULL DEFAULT 0,
|
NumVotes INTEGER UNSIGNED NOT NULL DEFAULT 0,
|
||||||
OutOfDateTS BIGINT UNSIGNED NULL DEFAULT NULL,
|
OutOfDateTS BIGINT UNSIGNED NULL DEFAULT NULL,
|
||||||
|
|
|
@ -22,9 +22,9 @@ $dbh = db_connect();
|
||||||
<?php
|
<?php
|
||||||
echo __(
|
echo __(
|
||||||
'Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU Guidelines%s for more information.',
|
'Welcome to the AUR! Please read the %sAUR User Guidelines%s and %sAUR TU Guidelines%s for more information.',
|
||||||
'<a href="http://wiki.archlinux.org/index.php/AUR_User_Guidelines">',
|
'<a href="https://wiki.archlinux.org/index.php/AUR_User_Guidelines">',
|
||||||
'</a>',
|
'</a>',
|
||||||
'<a href="http://wiki.archlinux.org/index.php/AUR_Trusted_User_Guidelines">',
|
'<a href="https://wiki.archlinux.org/index.php/AUR_Trusted_User_Guidelines">',
|
||||||
'</a>'
|
'</a>'
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
|
@ -34,7 +34,7 @@ $dbh = db_connect();
|
||||||
echo __(
|
echo __(
|
||||||
'Contributed PKGBUILDs %smust%s conform to the %sArch Packaging Standards%s otherwise they will be deleted!',
|
'Contributed PKGBUILDs %smust%s conform to the %sArch Packaging Standards%s otherwise they will be deleted!',
|
||||||
'<strong>', '</strong>',
|
'<strong>', '</strong>',
|
||||||
'<a href="http://wiki.archlinux.org/index.php/Arch_Packaging_Standards">',
|
'<a href="https://wiki.archlinux.org/index.php/Arch_Packaging_Standards">',
|
||||||
'</a>'
|
'</a>'
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
|
@ -48,9 +48,9 @@ $dbh = db_connect();
|
||||||
<?php
|
<?php
|
||||||
echo __(
|
echo __(
|
||||||
'General discussion regarding the Arch User Repository (AUR) and Trusted User structure takes place on %saur-general%s. This list can be used for package orphan requests, merge requests, and deletion requests. 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. This list can be used for package orphan requests, merge requests, and deletion requests. For discussion relating to the development of the AUR, use the %saur-dev%s mailing list.',
|
||||||
'<a href="http://mailman.archlinux.org/mailman/listinfo/aur-general">',
|
'<a href="https://mailman.archlinux.org/mailman/listinfo/aur-general">',
|
||||||
'</a>',
|
'</a>',
|
||||||
'<a href="http://mailman.archlinux.org/mailman/listinfo/aur-dev">',
|
'<a href="https://mailman.archlinux.org/mailman/listinfo/aur-dev">',
|
||||||
'</a>'
|
'</a>'
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -100,7 +100,7 @@ html_header(__("Password Reset"));
|
||||||
} else {
|
} else {
|
||||||
?>
|
?>
|
||||||
<p><?= __('If you have forgotten the e-mail address you used to register, please send a message to the %saur-general%s mailing list.',
|
<p><?= __('If you have forgotten the e-mail address you used to register, please send a message to the %saur-general%s mailing list.',
|
||||||
'<a href="http://mailman.archlinux.org/mailman/listinfo/aur-general">',
|
'<a href="https://mailman.archlinux.org/mailman/listinfo/aur-general">',
|
||||||
'</a>'); ?></p>
|
'</a>'); ?></p>
|
||||||
<form action="" method="post">
|
<form action="" method="post">
|
||||||
<p><?= __("Enter your e-mail address:"); ?>
|
<p><?= __("Enter your e-mail address:"); ?>
|
||||||
|
|
|
@ -13,16 +13,16 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="archnavbar" class="anb-aur">
|
<div id="archnavbar" class="anb-aur">
|
||||||
<div id="archnavbarlogo"><h1><a href="http://www.archlinux.org" title="Return to the main page">Arch Linux</a></h1></div>
|
<div id="archnavbarlogo"><h1><a href="https://www.archlinux.org/" title="Return to the main page">Arch Linux</a></h1></div>
|
||||||
<div id="archnavbarmenu">
|
<div id="archnavbarmenu">
|
||||||
<ul id="archnavbarlist">
|
<ul id="archnavbarlist">
|
||||||
<li id="anb-home"><a href="http://www.archlinux.org/" title="Arch news, packages, projects and more">Home</a></li>
|
<li id="anb-home"><a href="https://www.archlinux.org/" title="Arch news, packages, projects and more">Home</a></li>
|
||||||
<li id="anb-packages"><a href="http://www.archlinux.org/packages/" title="Arch Package Database">Packages</a></li>
|
<li id="anb-packages"><a href="https://www.archlinux.org/packages/" title="Arch Package Database">Packages</a></li>
|
||||||
<li id="anb-forums"><a href="https://bbs.archlinux.org/" title="Community forums">Forums</a></li>
|
<li id="anb-forums"><a href="https://bbs.archlinux.org/" title="Community forums">Forums</a></li>
|
||||||
<li id="anb-wiki"><a href="https://wiki.archlinux.org/" title="Community documentation">Wiki</a></li>
|
<li id="anb-wiki"><a href="https://wiki.archlinux.org/" title="Community documentation">Wiki</a></li>
|
||||||
<li id="anb-bugs"><a href="https://bugs.archlinux.org/" title="Report and track bugs">Bugs</a></li>
|
<li id="anb-bugs"><a href="https://bugs.archlinux.org/" title="Report and track bugs">Bugs</a></li>
|
||||||
<li id="anb-aur"><a href="/" title="Arch Linux User Repository">AUR</a></li>
|
<li id="anb-aur"><a href="/" title="Arch Linux User Repository">AUR</a></li>
|
||||||
<li id="anb-download"><a href="http://www.archlinux.org/download/" title="Get Arch Linux">Download</a></li>
|
<li id="anb-download"><a href="https://www.archlinux.org/download/" title="Get Arch Linux">Download</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div><!-- #archnavbar -->
|
</div><!-- #archnavbar -->
|
||||||
|
|
|
@ -192,7 +192,7 @@ if ($row["MaintainerUID"]):
|
||||||
?>
|
?>
|
||||||
<li><a href="<?= htmlspecialchars(get_pkg_uri($darr[0]), ENT_QUOTES); ?>" title="<?= __('View packages details for').' '.$darr[0].$darr[1]?>"><?= $darr[0].$darr[1]?></a></li>
|
<li><a href="<?= htmlspecialchars(get_pkg_uri($darr[0]), ENT_QUOTES); ?>" title="<?= __('View packages details for').' '.$darr[0].$darr[1]?>"><?= $darr[0].$darr[1]?></a></li>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<li><a href="http://www.archlinux.org/packages/?q=<?= urlencode($darr[0])?>" title="<?= __('View packages details for').' '.$darr[0].$darr[1] ?>"><?= $darr[0].$darr[1] ?></a></li>
|
<li><a href="https://www.archlinux.org/packages/?q=<?= urlencode($darr[0])?>" title="<?= __('View packages details for').' '.$darr[0].$darr[1] ?>"><?= $darr[0].$darr[1] ?></a></li>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<?php endwhile; ?>
|
<?php endwhile; ?>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
Loading…
Add table
Reference in a new issue