Compare commits
5 Commits
v25.6.23
...
59229f280b
Author | SHA1 | Date | |
---|---|---|---|
![]() |
59229f280b | ||
![]() |
4c57725862 | ||
![]() |
8ded12a7cf | ||
![]() |
0180242d2a | ||
![]() |
bf29716008 |
@@ -1,5 +1,5 @@
|
||||
import json
|
||||
from datetime import datetime
|
||||
from datetime import datetime, timezone
|
||||
from operator import attrgetter
|
||||
|
||||
from django.contrib.auth.models import User
|
||||
@@ -99,7 +99,7 @@ def keys(request):
|
||||
user_key_ids = frozenset(user.userprofile.pgp_key[-16:] for user in users
|
||||
if user.userprofile.pgp_key)
|
||||
|
||||
not_expired = Q(expires__gt=datetime.utcnow()) | Q(expires__isnull=True)
|
||||
not_expired = Q(expires__gt=datetime.now(timezone.utc)) | Q(expires__isnull=True)
|
||||
master_keys = MasterKey.objects.select_related('owner', 'revoker',
|
||||
'owner__userprofile', 'revoker__userprofile').filter(
|
||||
revoked__isnull=True)
|
||||
@@ -155,7 +155,7 @@ def keys_json(request):
|
||||
'group': 'master'
|
||||
} for key in master_keys)
|
||||
|
||||
not_expired = Q(expires__gt=datetime.utcnow()) | Q(expires__isnull=True)
|
||||
not_expired = Q(expires__gt=datetime.now(timezone.utc)) | Q(expires__isnull=True)
|
||||
signatures = PGPSignature.objects.filter(not_expired, revoked__isnull=True)
|
||||
edge_list = [{ 'signee': sig.signee, 'signer': sig.signer }
|
||||
for sig in signatures]
|
||||
|
@@ -1,5 +1,5 @@
|
||||
from base64 import b64encode
|
||||
from datetime import datetime
|
||||
from datetime import datetime, timezone
|
||||
|
||||
import pytest
|
||||
from bencode import bencode
|
||||
@@ -24,7 +24,7 @@ def torrent_data():
|
||||
data = {
|
||||
'comment': 'comment',
|
||||
'created_by': 'Arch Linux',
|
||||
'creation date': int(datetime.utcnow().timestamp()),
|
||||
'creation date': int(datetime.now(timezone.utc).timestamp()),
|
||||
'info': {
|
||||
'name': 'arch.iso',
|
||||
'length': 1,
|
||||
|
@@ -1,5 +1,5 @@
|
||||
-e git+https://github.com/fredj/cssmin.git@master#egg=cssmin
|
||||
Django==5.1.9
|
||||
Django==5.1.10
|
||||
IPy==1.1
|
||||
Markdown==3.3.7
|
||||
bencode.py==4.0.0
|
||||
|
@@ -26,10 +26,8 @@
|
||||
<div><label for="id_repo_{{ repo_name|lower }}" title="Target Repository {{ repo_name }}">[{{ repo_name|lower }}]</label>
|
||||
<input type="checkbox" name="repo_{{ repo_name|lower }}" id="id_repo_{{ repo_name|lower }}" class="repo_filter" value="{{ repo_name|lower }}" checked="checked"/></div>
|
||||
{% endfor %}
|
||||
{% if user.is_authenticated %}
|
||||
<div><label for="id_mine_only" title="Show only packages packaged by me">Only Mine</label>
|
||||
<input type="checkbox" name="mine_only" id="id_mine_only" value="mine_only"/></div>
|
||||
{% endif %}
|
||||
<div><label for="id_pending" title="Packages with not enough signoffs">Only Pending Approval</label>
|
||||
<input type="checkbox" name="pending" id="id_pending" value="pending"/></div>
|
||||
<div><label> </label><input title="Reset search criteria" type="button" id="criteria_reset" value="Reset"/></div>
|
||||
|
@@ -153,6 +153,7 @@
|
||||
<ul>
|
||||
<li><a href="https://wiki.archlinux.org/title/Getting_involved"
|
||||
title="Getting involved">Getting involved</a></li>
|
||||
<li><a href="https://devblog.archlinux.page" title="Dev Blog">Dev Blog</a></li>
|
||||
<li><a href="https://gitlab.archlinux.org/archlinux/"
|
||||
title="Official Arch projects (git)">Projects in Git</a></li>
|
||||
<li><a href="https://wiki.archlinux.org/title/DeveloperWiki"
|
||||
|
@@ -2,6 +2,8 @@
|
||||
{% load static %}
|
||||
{% load package_extras %}
|
||||
{% load todolists %}
|
||||
{% load tz %}
|
||||
{% load humanize %}
|
||||
|
||||
{% block title %}Arch Linux - Todo: {{ list.name }}{% endblock %}
|
||||
|
||||
@@ -103,7 +105,15 @@
|
||||
<span class="{{ pkg.status_css_class }}">{{ pkg.get_status_display }}</span>
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>{{ pkg.user|default:"" }}</td>
|
||||
<td>
|
||||
{% if pkg.user %}
|
||||
{% if user.is_authenticated %}
|
||||
{{ pkg.user }} <span title="{{ pkg.last_modified|timezone:user.userprofile.time_zone|date:"Y-m-d H:i T" }}">({{ pkg.last_modified|naturaltime }})</span>
|
||||
{% else %}
|
||||
{{ pkg.user }} <span title="{{ pkg.last_modified|date:"Y-m-d H:i T" }}">({{ pkg.last_modified|naturaltime }})</span>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
Reference in New Issue
Block a user