Compare commits

..

No commits in common. "3bbd987e35d27b9edb39d88bb35f60472825dfaa" and "024ef59428cfc26f1e35f3f1f8326b55cba2cd71" have entirely different histories.

73 changed files with 223 additions and 379 deletions

View file

@ -1,9 +1,5 @@
# Software Freedom Conservancy website
This is a Python/[Django](https://www.djangoproject.com/)-based website that
runs [sfconservancy.org](https://sfconservancy.org).
## Contributing
The canonical location for this repository is [on Conservancys
@ -13,9 +9,9 @@ Kallithea instance](https://k.sfconservancy.org/website).
## License
The software included herein, such as the Python source files, are generally
licensed [AGPLv3](AGPLv3)-or-later. JavaScript source is generally
[GPLv3](GPLv3)-or-later. See the notices at the top of each Javascript file for
specific licensing details.
licensed [AGPLv3](AGPLv3)-or-later. The Javascript is a hodgepodge of
licensing, but all of it is compatible with [AGPLv3](AGPLv3)-or-later. See
the notices at the top of each Javascript file for licensing details.
The content and text (such as the HTML files) is currently
[CC-BY-SA-3.0](CC-By-SA-3.0).
@ -24,7 +20,7 @@ The content and text (such as the HTML files) is currently
## Server configuration
Conservancy's webserver runs on a standard Debian installation. For
configuration requirements, see `deploy/install.yml`.
configuration requirements, see `deploy/ansible/install.yml`.
## CDN

View file

@ -1,6 +0,0 @@
#!/usr/bin/env sh
set -e # Abort on failure
set -x
python3 -m pytest

View file

@ -17,3 +17,5 @@ class EntryAdmin(admin.ModelAdmin):
search_fields = ['headline', 'summary', 'body']
prepopulated_fields = {'slug': ("headline",)}
filter_horizontal = ('tags',)

View file

@ -72,11 +72,11 @@ class Entry(models.Model, bsoup.SoupModelMixin):
# Ping Technorati
j = xmlrpc.client.Server('http://rpc.technorati.com/rpc/ping')
j.weblogUpdates.ping(blog_name, blog_url)
reply = j.weblogUpdates.ping(blog_name, blog_url)
# Ping Google Blog Search
j = xmlrpc.client.Server('http://blogsearch.google.com/ping/RPC2')
j.weblogUpdates.ping(blog_name, blog_url, post_url)
reply = j.weblogUpdates.ping(blog_name, blog_url, post_url)
# Call any superclass's method
super().save()

View file

@ -3,6 +3,7 @@ from functools import reduce
from django.core.paginator import EmptyPage, PageNotAnInteger, Paginator
from django.shortcuts import get_object_or_404, render
from django.views.generic import ListView
from django.views.generic.dates import (
DateDetailView,
DayArchiveView,
@ -11,7 +12,7 @@ from django.views.generic.dates import (
)
from ..staff.models import Person
from .models import EntryTag
from .models import Entry, EntryTag
def OR_filter(field_name, objs):

View file

@ -46,12 +46,10 @@ def run(cmd, encoding=None, ok_exitcodes=frozenset([0]), **kwargs):
no_data = ''
with contextlib.ExitStack() as exit_stack:
proc = exit_stack.enter_context(subprocess.Popen(cmd, **kwargs))
pipes = [
exit_stack.enter_context(open(
pipes = [exit_stack.enter_context(open(
getattr(proc, name).fileno(), mode, encoding=encoding, closefd=False))
for name in ['stdout', 'stderr']
if kwargs.get(name) is subprocess.PIPE
]
if kwargs.get(name) is subprocess.PIPE]
if pipes:
yield (proc, *pipes)
else:
@ -90,7 +88,6 @@ class GitPath:
def _cache(orig_func):
attr_name = '_cached_' + orig_func.__name__
@functools.wraps(orig_func)
def cache_wrapper(self):
try:
@ -356,3 +353,4 @@ def main(arglist=None, stdout=sys.stdout, stderr=sys.stderr):
if __name__ == '__main__':
exit(main())

View file

@ -16,3 +16,6 @@ class EventAdmin(admin.ModelAdmin):
@admin.register(EventMedia)
class EventMediaAdmin(admin.ModelAdmin):
list_display = ("event", "format", "novel")

View file

@ -96,3 +96,4 @@ class EventMedia(models.Model):
def __str__(self):
return "{} media: {}".format(self.event, self.format)

View file

@ -13,11 +13,9 @@ from .news.models import PressRelease
class ConservancyFeedBase(Feed):
def copyright_holder(self):
return "Software Freedom Conservancy"
def copyright_holder(self): return "Software Freedom Conservancy"
def license_no_html(self):
return "Licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License."
def license_no_html(self): return "Licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License."
def item_copyright(self, item):
year = 2008
@ -91,8 +89,7 @@ class OmnibusFeed(ConservancyFeedBase):
def item_description(self, item):
return item.summary
def item_enclosure_mime_type(self):
return "audio/mpeg"
def item_enclosure_mime_type(self): return "audio/mpeg"
def item_enclosure_url(self, item):
if hasattr(item, 'mp3_path'):
@ -101,6 +98,9 @@ class OmnibusFeed(ConservancyFeedBase):
if hasattr(item, 'mp3_path'):
return item.mp3_length
def item_pubdate(self, item):
return item.pub_date
def item_author_name(self, item):
if item.omnibus_type == "blog":
return item.author.formal_name
@ -174,8 +174,7 @@ class BlogFeed(ConservancyFeedBase):
firstTime = True
done = {}
for tag in tags:
if tag in done:
continue
if tag in done: continue
if firstTime:
answer += " ("
firstTime = False
@ -193,10 +192,8 @@ class BlogFeed(ConservancyFeedBase):
GET = obj.GET
tags = []
if 'author' in GET:
tags = GET.getlist('author')
if 'tag' in GET:
tags += GET.getlist('tag')
if 'author' in GET: tags = GET.getlist('author')
if 'tag' in GET: tags += GET.getlist('tag')
done = {}
if len(tags) == 1:
@ -204,8 +201,7 @@ class BlogFeed(ConservancyFeedBase):
elif len(tags) > 1:
firstTime = True
for tag in tags:
if tag in done:
continue
if tag in done: continue
if firstTime:
answer += " tagged with "
firstTime = False

View file

@ -19,3 +19,7 @@ class ExternalArticleAdmin(admin.ModelAdmin):
list_filter = ['date']
date_hierarchy = 'date'
search_fields = ["title", "info", "publication"]

View file

@ -34,10 +34,8 @@ class PressRelease(models.Model, bsoup.SoupModelMixin):
return self.headline
def get_absolute_url(self):
return "/news/{}/{}/".format(
self.pub_date.strftime("%Y/%b/%d").lower(),
self.slug,
)
return "/news/{}/{}/".format(self.pub_date.strftime("%Y/%b/%d").lower(),
self.slug)
def is_recent(self):
return self.pub_date > (datetime.now() - timedelta(days=5))
@ -62,11 +60,11 @@ class PressRelease(models.Model, bsoup.SoupModelMixin):
# Ping Technorati
j = xmlrpc.client.Server('http://rpc.technorati.com/rpc/ping')
j.weblogUpdates.ping(blog_name, blog_url)
reply = j.weblogUpdates.ping(blog_name, blog_url)
# Ping Google Blog Search
j = xmlrpc.client.Server('http://blogsearch.google.com/ping/RPC2')
j.weblogUpdates.ping(blog_name, blog_url, post_url)
reply = j.weblogUpdates.ping(blog_name, blog_url, post_url)
# Call any superclass's method
super().save()
@ -116,3 +114,4 @@ class ExternalArticle(models.Model):
objects = models.Manager()
public = PublicExternalArticleManager()

View file

@ -1,6 +1,7 @@
from datetime import datetime
from django.core.paginator import EmptyPage, PageNotAnInteger, Paginator
from django.http import HttpResponse
from django.shortcuts import render
from django.views.generic import ListView
from django.views.generic.dates import (
@ -10,7 +11,8 @@ from django.views.generic.dates import (
YearArchiveView,
)
from .models import PressRelease
from ..events.models import Event
from .models import ExternalArticle, PressRelease
class NewsListView(ListView):
@ -25,9 +27,8 @@ def listing(request, *args, **kwargs):
news_queryset = PressRelease.objects.all()
# if (not kwargs.has_key('allow_future')) or not kwargs['allow_future']:
news_queryset = news_queryset.filter(
**{'%s__lte' % kwargs['date_field']: datetime.now()}
)
news_queryset = news_queryset.filter(**{'%s__lte' % kwargs['date_field']:
datetime.now()})
date_list = news_queryset.dates(kwargs['date_field'], 'year')
@ -92,3 +93,4 @@ class NewsDateDetailView(DateDetailView):
# # del kwargs['slug']
# callable = NewsDateDetailView.as_view(**kwargs)
# return callable(request)

View file

@ -39,3 +39,5 @@ class CastAdmin(admin.ModelAdmin):
search_fields = ['title', 'summary', 'body']
prepopulated_fields = {'slug': ("title",)}
filter_horizontal = ('tags',)

View file

@ -19,6 +19,7 @@
from datetime import datetime, timedelta
from django.db import models
from django.urls import reverse
class Podcast(models.Model):

View file

@ -1,4 +1,4 @@
from .base import * # NOQA
from .base import *
DEBUG = True
ALLOWED_HOSTS = ['*']

View file

@ -2,7 +2,7 @@ import json
from django.core.exceptions import ImproperlyConfigured
from .base import * # NOQA
from .base import *
DEBUG = False
ALLOWED_HOSTS = ['www.sfconservancy.org', 'sfconservancy.org']
@ -25,7 +25,7 @@ DATABASES = {
# Apache/mod_wsgi doesn't make it straightforward to pass environment variables
# to Django (can't use the Apache config).
with open(BASE_DIR.parent / 'secrets.json') as f: # NOQA
with open(BASE_DIR.parent / 'secrets.json') as f:
secrets = json.load(f)
def get_secret(secrets, setting):

View file

@ -8,3 +8,4 @@ class PersonAdmin(admin.ModelAdmin):
list_display = ("username", "formal_name", "casual_name",
"currently_employed")
list_filter = ["currently_employed"]

View file

@ -8,7 +8,7 @@ p, h1, h2, h3, h4, h5, h6, #mainContent ul, #mainContent ol {
margin-bottom: 1em;
}
p, li {
p {
line-height: 1.6;
}

File diff suppressed because one or more lines are too long

View file

@ -4434,3 +4434,4 @@ being here with Ken thanks so much
01:00:28.380 --> 01:00:31.380
foreign

View file

@ -202,3 +202,4 @@ we request
00:03:38.680 --> 00:03:44.200
that you grant Karen Sandler
the KU Leuven honorary doctorate.

View file

@ -214,3 +214,4 @@ op voordracht van de Academische Raad,
00:03:38.680 --> 00:03:44.200
het eredoctoraat van de KU Leuven
te verlenen aan mevrouw Karen Sandler.

View file

@ -6,3 +6,4 @@ from .models import Supporter
@admin.register(Supporter)
class SupporterAdmin(admin.ModelAdmin):
list_display = ('display_name', 'display_until_date')

View file

@ -52,7 +52,7 @@ strategies that defend FOSS (such as copyleft). <a href="/about" class="orange">
<section class="mh0 pa3 bg-light-blue ba b--gray">
<video style="height: auto;" controls="" poster="/videos/sfc-introduction-video_poster.jpg">
<source src="/videos/sfc-introduction_1080p.mp4" />
<track src="{% static 'docs/sfc-introduction-vtt-captions.txt' %}" kind="subtitles" srclang="en" label="English" />
<track src="/docs/sfc-introduction-vtt-captions.txt" kind="subtitles" srclang="en" label="English" />
<a href="/videos/sfc-introduction_1080p.mp4"><img src="/videos/sfc-introduction-video_poster.jpg" alt="Software Freedom Conservancy introduction video"></a><br/>
<a href="https://youtu.be/yCCxMfW0LTM">(watch on Youtube)</a>
</video>

View file

@ -1,7 +1,7 @@
from django.contrib import admin
from .emails import make_candidate_email
from .models import Candidate, Comment, SourceOffer
from .models import Candidate, Comment
class CommentInline(admin.TabularInline):
@ -36,10 +36,3 @@ class CandidateAdmin(admin.ModelAdmin):
# Announce the new candidate
email = make_candidate_email(obj, request.user)
email.send()
@admin.register(SourceOffer)
class SourceOfferAdmin(admin.ModelAdmin):
list_display = ['time', 'vendor', 'device']
fields = ['time', 'vendor', 'device', 'photo']
readonly_fields = ['time']

View file

@ -1,6 +1,6 @@
from django import forms
from .models import Comment, SourceOffer
from .models import Comment
class CommentForm(forms.ModelForm):
@ -17,14 +17,3 @@ class CommentForm(forms.ModelForm):
class DownloadForm(forms.Form):
agree = forms.BooleanField(label="I understand that the goal of this process is to determine compliance with FOSS licenses, and that in downloading the source code candidate and/or firmware image, I am assisting SFC as a volunteer to investigate that question. I, therefore, promise and represent that I will not copy, distribute, modify, or otherwise use this source code candidate and/or firmware image for any purpose other than to help SFC evaluate the source code candidate for compliance with the terms of FOSS licenses, including but not limited to any version of the GNU General Public License. Naturally, if I determine in good faith that portions of the source code candidate and/or firmware image are subject to a FOSS license and are compliant with it, I may copy, distribute, modify, or otherwise use those portions in accordance with the FOSS license, and I take full responsibility for that determination and subsequent use.")
class SourceOfferForm(forms.ModelForm):
class Meta:
model = SourceOffer
fields = ['vendor', 'device', 'photo']
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.fields['photo'].widget.attrs['capture'] = 'camera'
self.fields['photo'].widget.attrs['accept'] = 'image/*'

View file

@ -1,30 +0,0 @@
# Generated by Django 4.2.11 on 2024-07-22 08:59
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('usethesource', '0008_comment_attribute_to'),
]
operations = [
migrations.CreateModel(
name='SourceOffer',
fields=[
(
'id',
models.AutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name='ID',
),
),
('vendor', models.CharField(max_length=50, verbose_name='Vendor name')),
('device', models.CharField(max_length=50, verbose_name='Device name')),
('photo', models.ImageField(upload_to='usethesource/offers')),
],
),
]

View file

@ -1,18 +0,0 @@
# Generated by Django 4.2.11 on 2024-07-29 09:42
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('usethesource', '0009_sourceoffer'),
]
operations = [
migrations.AddField(
model_name='sourceoffer',
name='time',
field=models.DateTimeField(auto_now_add=True, null=True),
),
]

View file

@ -67,13 +67,3 @@ class Comment(models.Model):
class Meta:
ordering = ['id']
class SourceOffer(models.Model):
time = models.DateTimeField(auto_now_add=True, null=True)
vendor = models.CharField('Vendor name', max_length=50)
device = models.CharField('Device name', max_length=50)
photo = models.ImageField(upload_to='usethesource/offers')
def __str__(self):
return f'{self.vendor} {self.device}'

View file

@ -24,7 +24,7 @@
<p>One crucial way to get involved is to let us know about any source candidates you find! Many devices have an offer for source code (check the manual or device's user interface to find it) and we'd be very interested to know what they send you when you request it. Here are the steps to submit a new source candidate to list on this page:</p>
<ol class="pl4">
<li class="mb2">find a source candidate offered by a company - normally this is offered to you in the manual or user interface of your device, through a link or email address (the company's GitHub page is not canonical, unless they explicitly say so in this offer). If you're curious what an offer is, check out the PDFs referenced in <a href="https://sfconservancy.org/blog/2022/dec/21/energyguide-software-repair-label/">our submission to the FTC</a>, and <a href="{% url 'usethesource:upload_offer' %}">submit a picture/image of a new offer</a> so we can test it for you if you like</li>
<li class="mb2">find a source candidate offered by a company - normally this is offered to you in the manual or user interface of your device, through a link or email address (the company's GitHub page is not canonical, unless they explicitly say so in this offer)</li>
<li class="mb2"><a href="https://usl-upload.sfconservancy.org/s/4Ykmx7rSGMJ7s43">upload the source candidate</a> to us - write down the file name(s) you uploaded for the next step (can be multiple), and upload a firmware image if you have it and are ok with us publishing it</li>

View file

@ -1,49 +0,0 @@
{% extends "usethesource/base.html" %}
{% block title %}Upload an offer for source - Software Freedom Conservancy{% endblock %}
{% block head %}
{{ block.super }}
<script src="https://unpkg.com/htmx.org@1.9.6"></script>
{% endblock %}
{% block content %}
{{ block.super }}
<section class="mt4 mb3">
<h2 class="f2 lh-title ttu mt0">Upload an offer for source</h2>
</section>
<form id="form" hx-encoding="multipart/form-data" hx-post="{% url 'usethesource:upload_offer' %}">
{% csrf_token %}
{{ form.non_field_errors }}
<div class="mv2">
{{ form.vendor.errors }}
<label for="{{ form.vendor.id_for_label }}" class="db mb1">Vendor:</label>
{{ form.vendor }}
</div>
<div class="mv2">
{{ form.device.errors }}
<label for="{{ form.device.id_for_label }}" class="db mb1">Device:</label>
{{ form.device }}
</div>
<div class="mv2">
{{ form.photo.errors }}
<label for="{{ form.photo.id_for_label }}" class="db mb1">Photo:</label>
{{ form.photo }}
</div>
<progress id="progress" class="htmx-indicator" value="0" max="100"></progress>
<div class="mv1">
<button type="submit" class="white bg-green b db pv2 ph3 bn mb2">Send</button>
</div>
</form>
<script>
form = document.querySelector('#form');
let progress = document.querySelector('#progress');
form.addEventListener('htmx:xhr:progress', function(evt) {
console.log('progress', evt.detail.loaded/evt.detail.total * 100);
progress.value = evt.detail.loaded/evt.detail.total * 100;
});
</script>
{% endblock content %}

View file

@ -1 +0,0 @@
<p>Thanks! We've received your offer for source.</p>

View file

@ -13,5 +13,4 @@ urlpatterns = [
path('delete-comment/<int:comment_id>/<show_add>/', views.delete_comment, name='delete_comment'),
path('add-button/<slug:slug>/', views.add_button, name='add_button'),
path('ccirt-process/', views.ccirt_process, name='ccirt_process'),
path('offer/', views.upload_offer, name='upload_offer'),
]

View file

@ -3,7 +3,7 @@ from django.core.exceptions import PermissionDenied
from django.shortcuts import get_object_or_404, redirect, render
from .models import Candidate, Comment
from .forms import CommentForm, DownloadForm, SourceOfferForm
from .forms import CommentForm, DownloadForm
from .emails import make_comment_email
@ -91,21 +91,3 @@ def add_button(request, slug):
def ccirt_process(request):
return render(request, 'usethesource/ccirt_process.html', {})
def handle_uploaded_file(f):
with open("some/file/name.txt", "wb+") as destination:
for chunk in f.chunks():
destination.write(chunk)
def upload_offer(request):
if request.method == 'POST':
form = SourceOfferForm(request.POST, request.FILES)
if form.is_valid():
form.save()
return render(request, 'usethesource/upload_success_partial.html')
else:
return render(request, 'usethesource/upload_offer.html', {'form': form})
else:
form = SourceOfferForm()
return render(request, 'usethesource/upload_offer.html', {'form': form})

View file

@ -6,3 +6,4 @@ from .models import EarthLocation
@admin.register(EarthLocation)
class EarthLocationAdmin(admin.ModelAdmin):
list_display = ("label", "html_map_link")

View file

@ -26,3 +26,4 @@ class EarthLocation(models.Model):
def html_map_link(self): # for Admin, fixme: fix_ampersands
return '<a href="%s">map link</a>' % self.default_map_link()
html_map_link.allow_tags = True

View file

@ -1,18 +0,0 @@
[tool.black]
skip-string-normalization = true
line-length = 90
[tool.isort]
profile = "black"
force_sort_within_sections = true
line_length = 90
sections = "FUTURE,STDLIB,THIRDPARTY,LOCALFOLDER,FIRSTPARTY"
no_lines_before = "FIRSTPARTY"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = 'conservancy.settings.dev'
python_files = ['test*.py']
# pytest-django will default to running tests with DEBUG = False, regardless of
# the settings you provide it. This fails due to the
# `ManifestStaticFilesStorage` without explicitly running `collectstatic` first.
django_debug_mode = true