summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--download/index.html4
-rw-r--r--index.php2
-rw-r--r--lib/helper.php10
4 files changed, 9 insertions, 9 deletions
diff --git a/README.md b/README.md
index e7ace87..173b92f 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,3 @@
# website
archlinux32's web frontend
-They are currently hosted on https://git.archlinux32.org/archlinux32/archweb32.
+They are currently hosted on https://git.archlinux32.org/archweb32.
diff --git a/download/index.html b/download/index.html
index 9cbea4e..d951e4f 100644
--- a/download/index.html
+++ b/download/index.html
@@ -48,7 +48,7 @@
<p>If you are an existing Arch user, there is no need to download a new ISO
to update your existing system. You may be looking for
- <a href="https://git.archlinux32.org/archlinux32/packages/raw/branch/master/core/pacman-mirrorlist/mirrorlist">an updated mirrorlist</a> instead.</p>
+ <a href="https://git.archlinux32.org/packages/plain/core/pacman-mirrorlist/mirrorlist">an updated mirrorlist</a> instead.</p>
<h3>Package Archive</h3>
@@ -61,7 +61,7 @@
to <a href="https://mirror.archlinux32.org/i686/">our community maintained repositories</a>, follow
these steps:</p>
<ul>
- <li> Put any mirror from <a href="https://git.archlinux32.org/archlinux32/packages/raw/branch/master/core/pacman-mirrorlist/mirrorlist">our mirrorlist</a>
+ <li> Put any mirror from <a href="https://git.archlinux32.org/packages/plain/core/pacman-mirrorlist/mirrorlist">our mirrorlist</a>
into <code>/etc/pacman.d/mirrorlist</code>.</li>
<li> Execute <code>pacman -Syy archlinux32-keyring-transition</code> to install our keyring transition package signed by one of the x86_64 archlinux devs.</li>
<li> Execute <code>pacman -S archlinux32-keyring</code> to install our most recent keyring package.</li>
diff --git a/index.php b/index.php
index 370fe5a..cca24ce 100644
--- a/index.php
+++ b/index.php
@@ -280,7 +280,7 @@ foreach($package_updates as $pkg) {
</ul>
<h4>Development</h4>
<ul>
- <li><a href="https://git.archlinux32.org/archlinux32/" title="Official Arch 32 projects (git)">Projects in Git</a></li>
+ <li><a href="https://git.archlinux32.org/" title="Official Arch 32 projects (git)">Projects in Git</a></li>
<li><a href="/groups/" title="View the available package groups">Package Groups</a></li>
<li><a href="/buildmaster/todos.php" title="Developer Todo Lists">Todo List</a></li>
<li><a href="/buildmaster/" title="Build Master">Build Master</a></li>
diff --git a/lib/helper.php b/lib/helper.php
index 8a25b9b..043fab9 100644
--- a/lib/helper.php
+++ b/lib/helper.php
@@ -91,7 +91,7 @@ function git_url($repository,$type,$commit,$path,$line = null,$commit_is_hash =
$git_available =
preg_match(
"/ 200 OK$/",
- get_headers("https://git.archlinux32.org/archlinux32/packages")[0]
+ get_headers("https://git.archlinux32.org/packages")[0]
);
apcu_store('git_available', $git_available, 120);
};
@@ -111,7 +111,7 @@ function git_url($repository,$type,$commit,$path,$line = null,$commit_is_hash =
switch ($type) {
case "tree":
return
- "https://git.archlinux32.org/archlinux32/" .
+ "https://git.archlinux32.org/" .
$repository .
"/src/" .
$commit .
@@ -120,7 +120,7 @@ function git_url($repository,$type,$commit,$path,$line = null,$commit_is_hash =
$line;
case "log":
return
- "https://git.archlinux32.org/archlinux32/" .
+ "https://git.archlinux32.org/" .
$repository .
"/commits/" .
$commit .
@@ -141,7 +141,7 @@ function git_url($repository,$type,$commit,$path,$line = null,$commit_is_hash =
switch ($type) {
case "tree":
return
- "https://git2.archlinux32.org/archlinux32/" .
+ "https://git2.archlinux32.org/" .
$repository .
"/tree/" .
$path .
@@ -149,7 +149,7 @@ function git_url($repository,$type,$commit,$path,$line = null,$commit_is_hash =
$line;
case "log":
return
- "https://git2.archlinux32.org/archlinux32/" .
+ "https://git2.archlinux32.org/" .
$repository .
"/log/" .
$path .