Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
8e6bc69713 | |||
![]() |
f624f5677b | ||
![]() |
2064099696 | ||
![]() |
67209075c5 | ||
![]() |
336d686ca2 | ||
![]() |
4f0e24f1f7 |
@@ -131,7 +131,7 @@ Archweb provides multiple management commands for importing various sorts of dat
|
||||
* reporead_inotify - Watches a templated patch for updates of *.files.tar.gz to update Arch databases with.
|
||||
* donor_import - Import a single donator from a mail passed to stdin
|
||||
* mirrorcheck - Poll every active mirror URLs to store the lastsnyc time and record network timing details.
|
||||
* mirrorresolv - Poll every active mirror URLs and determine wheteher they have IP4 and/or IPv6 addresses.
|
||||
* mirrorresolv - Poll every active mirror URLs and determine whether they have IP4 and/or IPv6 addresses.
|
||||
* populate_signoffs - retrieves the latest commit message of a signoff-eligible package.
|
||||
* update_planet - Import all feeds for users who have a valid website and website_rss in their user profile.
|
||||
* read_links - Reads a repo.links.db.tar.gz file and updates the Soname model.
|
||||
|
@@ -10,7 +10,7 @@ def format_key(key_id):
|
||||
if len(key_id) in (8, 20):
|
||||
return '0x%s' % key_id
|
||||
elif len(key_id) == 40:
|
||||
# normal display format is 5 groups of 4 hex chars seperated by spaces,
|
||||
# normal display format is 5 groups of 4 hex chars separated by spaces,
|
||||
# double space, then 5 more groups of 4 hex chars
|
||||
split = tuple(key_id[i:i + 4] for i in range(0, 40, 4))
|
||||
return '%s\u00a0 %s' % (' '.join(split[0:5]), ' '.join(split[5:10]))
|
||||
|
@@ -27,7 +27,7 @@ def test_mirrorurl_get_full_url(mirrorurl):
|
||||
|
||||
def test_mirror_url_clean(mirrorurl):
|
||||
mirrorurl.clean()
|
||||
# TOOD(jelle): this expects HOSTNAME to resolve, maybe mock
|
||||
# TODO(jelle): this expects HOSTNAME to resolve, maybe mock
|
||||
assert mirrorurl.has_ipv4
|
||||
# requires ipv6 on host... mock?
|
||||
# assert mirrorurl.has_ipv6 == True
|
||||
|
@@ -7,7 +7,7 @@
|
||||
<div class="box">
|
||||
|
||||
<h2>Tier 0 Mirror usage information</h2>
|
||||
<p>Arch Linux Tier 0 mirror on <a href="https://repos.archlinux.org">repos.archlinux.org</a> which can be used if to obtain the absolute latest packages. The mirror is protected with a HTTP Basic Auth password unique per Staff member.</p>
|
||||
<p>Arch Linux Tier 0 mirror on <a href="https://repos.archlinux.org">repos.archlinux.org</a> which can be used if to obtain the absolute latest packages. The mirror is protected with an HTTP Basic Auth password unique per Staff member.</p>
|
||||
{% if mirror_url %}
|
||||
<code id="serverinfo">Server = {{ mirror_url }}</code> <button id="copybutton">Copy to clipboard</button>
|
||||
|
||||
|
@@ -84,6 +84,8 @@
|
||||
|
||||
<h3>Past donors</h3>
|
||||
|
||||
<p><a href="http://www.dotcom-monitor.com/" title="Dotcom-Monitor">Dotcom-Monitor</a> & <a href="https://www.loadview-testing.com/" title="LoadView">LoadView</a></p>
|
||||
|
||||
<div id="donor-list">
|
||||
<ul>
|
||||
{% for donor in donors %}
|
||||
|
Reference in New Issue
Block a user