index : archweb32 | |
Archlinux32 website | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <git@eckner.net> | 2019-11-22 14:03:34 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-11-22 14:03:34 +0100 |
commit | d7a134060e2bab184ae0346ee65cd84f3981ab70 (patch) | |
tree | 7a1a505246ec7f0e018197931df81db162bf2503 | |
parent | 8414e9fde067bef257f1d788380aa61e838e87ca (diff) |
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | download/index.html | 4 | ||||
-rw-r--r-- | index.php | 2 | ||||
-rw-r--r-- | lib/helper.php | 10 |
@@ -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> @@ -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 . |