Compare commits
6 commits
Author | SHA1 | Date | |
---|---|---|---|
200496031c | |||
445564b98e | |||
034c8f0549 | |||
9fc1501022 | |||
089adf8b6b | |||
0c18a614cb |
13 changed files with 282 additions and 133 deletions
79
ROLLING OVER.md
Normal file
79
ROLLING OVER.md
Normal file
|
@ -0,0 +1,79 @@
|
|||
Export any reports you want to keep.
|
||||
|
||||
Take a database dump.
|
||||
|
||||
Remove all accounts, tickets, invoices, talks, etc. I used the commands below, but this may be simpler to achieve by selecting the relevant users in the Django Admin, selecting "Delete" and letting the cascading deletes deal with it.
|
||||
|
||||
```
|
||||
Replace USERNAMES_TO_KEEP with an array of staff usernames.
|
||||
|
||||
$ sudo -u postgres psql symposion
|
||||
delete from registrasion_lineitem;
|
||||
delete from registrasion_manualpayment;
|
||||
delete from registripe_stripepayment;
|
||||
delete from registrasion_creditnote;
|
||||
delete from registrasion_paymentbase;
|
||||
delete from registrasion_invoice;
|
||||
delete from registrasion_cart_vouchers;
|
||||
delete from registrasion_productitem;
|
||||
delete from registrasion_discountitem;
|
||||
delete from registrasion_cart;
|
||||
delete from pinaxcon_registrasion_attendeeprofile;
|
||||
delete from registrasion_attendeeprofilebase;
|
||||
delete from registrasion_attendee;
|
||||
|
||||
delete from proposals_aiandmachinelearningproposal;
|
||||
delete from proposals_diversityequityandinclusionproposal;
|
||||
delete from proposals_fossandarm64proposal;
|
||||
delete from proposals_fossfundingandeconomicsproposal;
|
||||
delete from proposals_fossindailylifeproposal;
|
||||
delete from proposals_fossineducationproposal;
|
||||
delete from proposals_keynotepanelproposal;
|
||||
delete from proposals_licensingandlegalissuesproposal;
|
||||
delete from proposals_memberprojectsproposal;
|
||||
delete from proposals_mobiledeviceuserfreedomproposal;
|
||||
delete from proposals_reproducibilityproposal;
|
||||
delete from proposals_righttorepairproposal;
|
||||
delete from proposals_scienceofcommunityproposal;
|
||||
delete from proposals_seleniumproposal;
|
||||
delete from proposals_supportingusergroupsproposal;
|
||||
delete from proposals_talkproposal;
|
||||
delete from proposals_tutorialproposal;
|
||||
delete from proposals_wildcardproposal;
|
||||
delete from proposals_xmppproposal;
|
||||
|
||||
delete from symposion_reviews_proposalresult;
|
||||
delete from symposion_reviews_resultnotification;
|
||||
delete from symposion_schedule_presentation_additional_speakers;
|
||||
delete from symposion_schedule_presentation;
|
||||
delete from symposion_reviews_latestvote;
|
||||
delete from symposion_reviews_proposalmessage;
|
||||
delete from symposion_proposals_additionalspeaker;
|
||||
delete from symposion_proposals_supportingdocument;
|
||||
delete from symposion_proposals_proposalbase;
|
||||
|
||||
delete from account_account where user_id in (select id from auth_user where username not in USERNAMES_TO_KEEP);
|
||||
delete from account_emailconfirmation;
|
||||
delete from account_emailaddress where user_id in (select id from auth_user where username not in USERNAMES_TO_KEEP);
|
||||
|
||||
delete from symposion_speakers_speaker;
|
||||
delete from reversion_version;
|
||||
delete from reversion_revision;
|
||||
delete from teams_membership;
|
||||
delete from pinax_stripe_card;
|
||||
delete from pinax_stripe_charge;
|
||||
delete from pinax_stripe_customer;
|
||||
delete from django_admin_log;
|
||||
|
||||
delete from auth_user where username not in USERNAMES_TO_KEEP;
|
||||
```
|
||||
|
||||
Set any remaining account `completed_registration` to false.
|
||||
|
||||
Add a new Conference entry in Django Admin and update the `CONFERENCE_ID` in pinaxcon/settings.py. Also update the conference dates.
|
||||
|
||||
Find and update all uses of 2025 and the conference dates in this codebase.
|
||||
|
||||
Update flatpages such as the "/" home page.
|
||||
|
||||
Update the Django "site" in the Admin.
|
16
fabfile.py
vendored
16
fabfile.py
vendored
|
@ -18,12 +18,12 @@ hosts = os.environ['FABRIC_HOSTS'].split(',')
|
|||
|
||||
def install_essentials(c):
|
||||
# ImageMagick (convert) and Inkscape required for generating badges.
|
||||
c.run('sudo apt-get install -yy git python3-dev python3-venv python3-wheel build-essential python3-cairocffi python3-psycopg2 postgresql uwsgi-emperor uwsgi-plugin-python3 memcached netcat-openbsd nginx certbot libpq-dev libmemcached-dev libxml2-dev libxslt-dev xmlsec1 imagemagick inkscape cronic')
|
||||
c.run('sudo apt-get install -yy git python3-dev python3-venv python3-wheel build-essential python3-cairocffi python3-psycopg2 postgresql uwsgi-emperor uwsgi-plugin-python3 memcached netcat-openbsd nginx certbot python3-certbot-nginx libpq-dev libmemcached-dev libxml2-dev libxslt-dev xmlsec1 imagemagick inkscape cronic')
|
||||
|
||||
|
||||
@task(hosts=hosts)
|
||||
def deploy(c):
|
||||
install_essentials(c)
|
||||
# install_essentials(c)
|
||||
df2.transfer_files_git(c)
|
||||
df2.init(c)
|
||||
if not c.run(f'test -e {c.env.virtualenv}', warn=True):
|
||||
|
@ -36,6 +36,12 @@ def deploy(c):
|
|||
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1003252
|
||||
# https://github.com/pypa/setuptools/issues/3278
|
||||
c.run('SETUPTOOLS_USE_DISTUTILS=stdlib {env.virtualenv}/bin/python -m pip install -c constraints.txt -r vendored_requirements.txt'.format(env=c.env))
|
||||
# Compile SASS
|
||||
with c.cd(c.env.project_dir):
|
||||
with c.prefix(f'set -a && source {c.env.project_dir}/env'):
|
||||
c.run('{env.virtualenv}/bin/python manage.py compilescss --settings={env.settings} -v0'.format(
|
||||
env=c.env,
|
||||
))
|
||||
df2.prepare_django(c, fail_level='ERROR')
|
||||
df2.fix_permissions(
|
||||
c,
|
||||
|
@ -75,7 +81,7 @@ ns.configure({
|
|||
|
||||
# Our custom project config.
|
||||
'env': {
|
||||
'branch': 'fossy2024',
|
||||
'branch': 'fossy2025',
|
||||
'app_user': 'www-data',
|
||||
'db_name': 'symposion',
|
||||
'project_dir': '/srv/symposion_app',
|
||||
|
@ -87,7 +93,7 @@ ns.configure({
|
|||
'uwsgi_conf': 'deploy/uwsgi.ini',
|
||||
'nginx_conf': 'deploy/nginx.conf',
|
||||
'python': '/usr/bin/python3.11',
|
||||
'url': 'https://2024.fossy.us/',
|
||||
'domain': '2024.fossy.us',
|
||||
'url': 'https://2025.fossy.us/',
|
||||
'domain': '2025.fossy.us',
|
||||
},
|
||||
})
|
||||
|
|
|
@ -21,21 +21,16 @@ class CategoryAdmin(admin.ModelAdmin):
|
|||
|
||||
|
||||
models_to_register = [
|
||||
models.AIAndMachineLearningProposal,
|
||||
models.DiversityEquityAndInclusionProposal,
|
||||
models.FOSSAndARM64Proposal,
|
||||
models.FOSSFundingandEconomicsProposal,
|
||||
models.DistrosProposal,
|
||||
models.FOSSInDailyLifeProposal,
|
||||
models.FOSSInEducationProposal,
|
||||
models.LicensingAndLegalIssuesProposal,
|
||||
models.MobileDeviceUserFreedomProposal,
|
||||
models.ReproducibilityProposal,
|
||||
models.RightToRepairProposal,
|
||||
models.LegalIssuesProposal,
|
||||
models.LinuxKernalProposal,
|
||||
models.P2PLocalFirstProposal,
|
||||
models.ScienceOfCommunityProposal,
|
||||
models.MemberProjectsProposal,
|
||||
models.SupportingUserGroupsProposal,
|
||||
models.XMPPProposal,
|
||||
models.WildCardProposal,
|
||||
models.XMPPProposal,
|
||||
]
|
||||
for model in models_to_register:
|
||||
admin.site.register(model, CategoryAdmin,
|
||||
|
|
|
@ -61,27 +61,9 @@ class MiniconfProposalForm(ProposalForm):
|
|||
pass
|
||||
|
||||
|
||||
class AIAndMachineLearningProposalForm(MiniconfProposalForm):
|
||||
class DistrosProposalForm(MiniconfProposalForm):
|
||||
class Meta:
|
||||
model = models.AIAndMachineLearningProposal
|
||||
fields = TALK_FORMAT_FIELDS
|
||||
|
||||
|
||||
class DiversityEquityAndInclusionProposalForm(MiniconfProposalForm):
|
||||
class Meta:
|
||||
model = models.DiversityEquityAndInclusionProposal
|
||||
fields = TALK_FORMAT_FIELDS
|
||||
|
||||
|
||||
class FOSSAndARM64ProposalForm(MiniconfProposalForm):
|
||||
class Meta:
|
||||
model = models.FOSSAndARM64Proposal
|
||||
fields = TALK_FORMAT_FIELDS
|
||||
|
||||
|
||||
class FOSSFundingandEconomicsProposalForm(MiniconfProposalForm):
|
||||
class Meta:
|
||||
model = models.FOSSFundingandEconomicsProposal
|
||||
model = models.DistrosProposal
|
||||
fields = TALK_FORMAT_FIELDS
|
||||
|
||||
|
||||
|
@ -97,39 +79,21 @@ class FOSSInEducationProposalForm(MiniconfProposalForm):
|
|||
fields = TALK_FORMAT_FIELDS
|
||||
|
||||
|
||||
class KeynotePanelProposalForm(MiniconfProposalForm):
|
||||
class LegalIssuesProposalForm(MiniconfProposalForm):
|
||||
class Meta:
|
||||
model = models.KeynotePanelProposal
|
||||
model = models.LegalIssuesProposal
|
||||
fields = TALK_FORMAT_FIELDS
|
||||
|
||||
|
||||
class LicensingAndLegalIssuesProposalForm(MiniconfProposalForm):
|
||||
class LinuxKernelProposalForm(MiniconfProposalForm):
|
||||
class Meta:
|
||||
model = models.LicensingAndLegalIssuesProposal
|
||||
model = models.LinuxKernalProposal
|
||||
fields = TALK_FORMAT_FIELDS
|
||||
|
||||
|
||||
class MobileDeviceUserFreedomProposalForm(MiniconfProposalForm):
|
||||
class P2PLocalFirstProposalForm(MiniconfProposalForm):
|
||||
class Meta:
|
||||
model = models.MobileDeviceUserFreedomProposal
|
||||
fields = TALK_FORMAT_FIELDS
|
||||
|
||||
|
||||
class ReproducibilityProposalForm(MiniconfProposalForm):
|
||||
class Meta:
|
||||
model = models.ReproducibilityProposal
|
||||
fields = TALK_FORMAT_FIELDS
|
||||
|
||||
|
||||
class RightToRepairProposalForm(MiniconfProposalForm):
|
||||
class Meta:
|
||||
model = models.RightToRepairProposal
|
||||
fields = TALK_FORMAT_FIELDS
|
||||
|
||||
|
||||
class SeleniumProposalForm(MiniconfProposalForm):
|
||||
class Meta:
|
||||
model = models.SeleniumProposal
|
||||
model = models.P2PLocalFirstProposal
|
||||
fields = TALK_FORMAT_FIELDS
|
||||
|
||||
|
||||
|
@ -139,12 +103,6 @@ class ScienceOfCommunityProposalForm(MiniconfProposalForm):
|
|||
fields = TALK_FORMAT_FIELDS
|
||||
|
||||
|
||||
class MemberProjectsProposalForm(MiniconfProposalForm):
|
||||
class Meta:
|
||||
model = models.MemberProjectsProposal
|
||||
fields = TALK_FORMAT_FIELDS
|
||||
|
||||
|
||||
class SupportingUserGroupsProposalForm(MiniconfProposalForm):
|
||||
class Meta:
|
||||
model = models.SupportingUserGroupsProposal
|
||||
|
|
152
pinaxcon/proposals/migrations/0016_auto_20250304_0337.py
Normal file
152
pinaxcon/proposals/migrations/0016_auto_20250304_0337.py
Normal file
|
@ -0,0 +1,152 @@
|
|||
# Generated by Django 2.2.28 on 2025-03-04 03:37
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('symposion_proposals', '0003_auto_20170702_2250'),
|
||||
('symposion_speakers', '0012_auto_20230420_0018'),
|
||||
('symposion_reviews', '0001_initial'),
|
||||
('symposion_schedule', '0009_presentation_videos'),
|
||||
('proposals', '0015_seleniumproposal'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='DistrosProposal',
|
||||
fields=[
|
||||
('proposalbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='symposion_proposals.ProposalBase')),
|
||||
('target_audience', models.IntegerField(choices=[(4, 'Developer'), (3, 'Community'), (1, 'End User'), (2, 'Business')], help_text='Who is the target audience for your session?')),
|
||||
('recording_release', models.BooleanField(default=True, help_text="I allow Software Freedom Conservancy to release any recordings of presentations covered by this proposal, on YouTube under the standard YouTube licence, and on other platforms under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (<a href='https://creativecommons.org/licenses/by-nc-sa/4.0/'> CC BY-NC-SA 4.0</a>) licence.")),
|
||||
('materials_release', models.BooleanField(default=True, help_text="I allow Software Freedom Conservancy to release any other material (such as slides) from presentations covered by this proposal, under the <a href='https://creativecommons.org/licenses/by-sa/4.0/'> Creative Commons Attribution-ShareAlike 4.0 International</a>")),
|
||||
('primary_topic', models.IntegerField(choices=[(1, 'Linux'), (2, 'Software'), (3, 'Hardware'), (4, 'Firmware'), (5, 'System Administration / Operations'), (6, 'Security'), (7, 'Documentation'), (8, 'Community'), (9, 'Science & Data'), (10, 'Galleries, Libraries, Archives & Museums (GLAM)'), (11, 'Multimedia'), (12, 'Aerospace / UAV'), (13, 'Agriculture'), (14, 'Other')], help_text='What is the primary topic area for your session?', null=True)),
|
||||
('experience_level', models.IntegerField(choices=[(1, 'Beginner'), (2, 'Intermediate'), (3, 'Advanced')], help_text='What level of experience will your session be pitched at?')),
|
||||
('require_approval', models.BooleanField(default=False, help_text='Do you require further approval from your employer or institution before you can confirm your availability to present?')),
|
||||
('content_warning', models.TextField(blank=True, help_text='This will be shown on the schedule to give attendees advanced warning of topics covered in the session. ', verbose_name='Content Warning')),
|
||||
('content_warning_html', models.TextField(blank=True)),
|
||||
('talk_format', models.IntegerField(choices=[(1, 'Lightning Talk (5-10 min)'), (2, 'Short Presentation (20-25 min)'), (3, 'Long Presentation (40-45 min)')], default=3, help_text='Please indicate your preferred talk length in the private abstract field below.')),
|
||||
('ticket_acknowledgement', models.BooleanField(default=False, help_text='I understand that I will be required to purchase a conference ticket and arrange my own travel and accommodation.')),
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'Distros talk proposal',
|
||||
},
|
||||
bases=('symposion_proposals.proposalbase',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='LinuxKernalProposal',
|
||||
fields=[
|
||||
('proposalbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='symposion_proposals.ProposalBase')),
|
||||
('target_audience', models.IntegerField(choices=[(4, 'Developer'), (3, 'Community'), (1, 'End User'), (2, 'Business')], help_text='Who is the target audience for your session?')),
|
||||
('recording_release', models.BooleanField(default=True, help_text="I allow Software Freedom Conservancy to release any recordings of presentations covered by this proposal, on YouTube under the standard YouTube licence, and on other platforms under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (<a href='https://creativecommons.org/licenses/by-nc-sa/4.0/'> CC BY-NC-SA 4.0</a>) licence.")),
|
||||
('materials_release', models.BooleanField(default=True, help_text="I allow Software Freedom Conservancy to release any other material (such as slides) from presentations covered by this proposal, under the <a href='https://creativecommons.org/licenses/by-sa/4.0/'> Creative Commons Attribution-ShareAlike 4.0 International</a>")),
|
||||
('primary_topic', models.IntegerField(choices=[(1, 'Linux'), (2, 'Software'), (3, 'Hardware'), (4, 'Firmware'), (5, 'System Administration / Operations'), (6, 'Security'), (7, 'Documentation'), (8, 'Community'), (9, 'Science & Data'), (10, 'Galleries, Libraries, Archives & Museums (GLAM)'), (11, 'Multimedia'), (12, 'Aerospace / UAV'), (13, 'Agriculture'), (14, 'Other')], help_text='What is the primary topic area for your session?', null=True)),
|
||||
('experience_level', models.IntegerField(choices=[(1, 'Beginner'), (2, 'Intermediate'), (3, 'Advanced')], help_text='What level of experience will your session be pitched at?')),
|
||||
('require_approval', models.BooleanField(default=False, help_text='Do you require further approval from your employer or institution before you can confirm your availability to present?')),
|
||||
('content_warning', models.TextField(blank=True, help_text='This will be shown on the schedule to give attendees advanced warning of topics covered in the session. ', verbose_name='Content Warning')),
|
||||
('content_warning_html', models.TextField(blank=True)),
|
||||
('talk_format', models.IntegerField(choices=[(1, 'Lightning Talk (5-10 min)'), (2, 'Short Presentation (20-25 min)'), (3, 'Long Presentation (40-45 min)')], default=3, help_text='Please indicate your preferred talk length in the private abstract field below.')),
|
||||
('ticket_acknowledgement', models.BooleanField(default=False, help_text='I understand that I will be required to purchase a conference ticket and arrange my own travel and accommodation.')),
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'Linux Kernal talk proposal',
|
||||
},
|
||||
bases=('symposion_proposals.proposalbase',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='P2PLocalFirstProposal',
|
||||
fields=[
|
||||
('proposalbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='symposion_proposals.ProposalBase')),
|
||||
('target_audience', models.IntegerField(choices=[(4, 'Developer'), (3, 'Community'), (1, 'End User'), (2, 'Business')], help_text='Who is the target audience for your session?')),
|
||||
('recording_release', models.BooleanField(default=True, help_text="I allow Software Freedom Conservancy to release any recordings of presentations covered by this proposal, on YouTube under the standard YouTube licence, and on other platforms under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (<a href='https://creativecommons.org/licenses/by-nc-sa/4.0/'> CC BY-NC-SA 4.0</a>) licence.")),
|
||||
('materials_release', models.BooleanField(default=True, help_text="I allow Software Freedom Conservancy to release any other material (such as slides) from presentations covered by this proposal, under the <a href='https://creativecommons.org/licenses/by-sa/4.0/'> Creative Commons Attribution-ShareAlike 4.0 International</a>")),
|
||||
('primary_topic', models.IntegerField(choices=[(1, 'Linux'), (2, 'Software'), (3, 'Hardware'), (4, 'Firmware'), (5, 'System Administration / Operations'), (6, 'Security'), (7, 'Documentation'), (8, 'Community'), (9, 'Science & Data'), (10, 'Galleries, Libraries, Archives & Museums (GLAM)'), (11, 'Multimedia'), (12, 'Aerospace / UAV'), (13, 'Agriculture'), (14, 'Other')], help_text='What is the primary topic area for your session?', null=True)),
|
||||
('experience_level', models.IntegerField(choices=[(1, 'Beginner'), (2, 'Intermediate'), (3, 'Advanced')], help_text='What level of experience will your session be pitched at?')),
|
||||
('require_approval', models.BooleanField(default=False, help_text='Do you require further approval from your employer or institution before you can confirm your availability to present?')),
|
||||
('content_warning', models.TextField(blank=True, help_text='This will be shown on the schedule to give attendees advanced warning of topics covered in the session. ', verbose_name='Content Warning')),
|
||||
('content_warning_html', models.TextField(blank=True)),
|
||||
('talk_format', models.IntegerField(choices=[(1, 'Lightning Talk (5-10 min)'), (2, 'Short Presentation (20-25 min)'), (3, 'Long Presentation (40-45 min)')], default=3, help_text='Please indicate your preferred talk length in the private abstract field below.')),
|
||||
('ticket_acknowledgement', models.BooleanField(default=False, help_text='I understand that I will be required to purchase a conference ticket and arrange my own travel and accommodation.')),
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'Peer-to-Peer and Local First talk proposal',
|
||||
},
|
||||
bases=('symposion_proposals.proposalbase',),
|
||||
),
|
||||
migrations.RenameModel(
|
||||
old_name='LicensingAndLegalIssuesProposal',
|
||||
new_name='LegalIssuesProposal',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='diversityequityandinclusionproposal',
|
||||
name='proposalbase_ptr',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='fossandarm64proposal',
|
||||
name='proposalbase_ptr',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='fossfundingandeconomicsproposal',
|
||||
name='proposalbase_ptr',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='keynotepanelproposal',
|
||||
name='proposalbase_ptr',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='memberprojectsproposal',
|
||||
name='proposalbase_ptr',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='mobiledeviceuserfreedomproposal',
|
||||
name='proposalbase_ptr',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='reproducibilityproposal',
|
||||
name='proposalbase_ptr',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='righttorepairproposal',
|
||||
name='proposalbase_ptr',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='seleniumproposal',
|
||||
name='proposalbase_ptr',
|
||||
),
|
||||
migrations.AlterModelOptions(
|
||||
name='legalissuesproposal',
|
||||
options={'verbose_name': 'Legal Issues talk proposal'},
|
||||
),
|
||||
migrations.DeleteModel(
|
||||
name='AIAndMachineLearningProposal',
|
||||
),
|
||||
migrations.DeleteModel(
|
||||
name='DiversityEquityAndInclusionProposal',
|
||||
),
|
||||
migrations.DeleteModel(
|
||||
name='FOSSAndARM64Proposal',
|
||||
),
|
||||
migrations.DeleteModel(
|
||||
name='FOSSFundingandEconomicsProposal',
|
||||
),
|
||||
migrations.DeleteModel(
|
||||
name='KeynotePanelProposal',
|
||||
),
|
||||
migrations.DeleteModel(
|
||||
name='MemberProjectsProposal',
|
||||
),
|
||||
migrations.DeleteModel(
|
||||
name='MobileDeviceUserFreedomProposal',
|
||||
),
|
||||
migrations.DeleteModel(
|
||||
name='ReproducibilityProposal',
|
||||
),
|
||||
migrations.DeleteModel(
|
||||
name='RightToRepairProposal',
|
||||
),
|
||||
migrations.DeleteModel(
|
||||
name='SeleniumProposal',
|
||||
),
|
||||
]
|
|
@ -160,24 +160,9 @@ class MiniconfSessionProposal(Proposal):
|
|||
abstract = True
|
||||
|
||||
|
||||
class AIAndMachineLearningProposal(MiniconfSessionProposal):
|
||||
class DistrosProposal(MiniconfSessionProposal):
|
||||
class Meta:
|
||||
verbose_name = "AI and Machine Learning talk proposal"
|
||||
|
||||
|
||||
class DiversityEquityAndInclusionProposal(MiniconfSessionProposal):
|
||||
class Meta:
|
||||
verbose_name = "Diversity Equity and Inclusion and FOSS talk proposal"
|
||||
|
||||
|
||||
class FOSSAndARM64Proposal(MiniconfSessionProposal):
|
||||
class Meta:
|
||||
verbose_name = "FOSS and ARM64; from the Cloud to the Edge talk proposal"
|
||||
|
||||
|
||||
class FOSSFundingandEconomicsProposal(MiniconfSessionProposal):
|
||||
class Meta:
|
||||
verbose_name = "FOSS Funding and Economics talk proposal"
|
||||
verbose_name = "Distros talk proposal"
|
||||
|
||||
|
||||
class FOSSInDailyLifeProposal(MiniconfSessionProposal):
|
||||
|
@ -190,29 +175,19 @@ class FOSSInEducationProposal(MiniconfSessionProposal):
|
|||
verbose_name = "FOSS in Education talk proposal"
|
||||
|
||||
|
||||
class KeynotePanelProposal(MiniconfSessionProposal):
|
||||
class LegalIssuesProposal(MiniconfSessionProposal):
|
||||
class Meta:
|
||||
verbose_name = "Keynote panel talk proposal"
|
||||
verbose_name = "Legal Issues talk proposal"
|
||||
|
||||
|
||||
class LicensingAndLegalIssuesProposal(MiniconfSessionProposal):
|
||||
class LinuxKernalProposal(MiniconfSessionProposal):
|
||||
class Meta:
|
||||
verbose_name = "Licensing and Legal Issues talk proposal"
|
||||
verbose_name = "Linux Kernal talk proposal"
|
||||
|
||||
|
||||
class MobileDeviceUserFreedomProposal(MiniconfSessionProposal):
|
||||
class P2PLocalFirstProposal(MiniconfSessionProposal):
|
||||
class Meta:
|
||||
verbose_name = "Mobile Device User Freedom talk proposal"
|
||||
|
||||
|
||||
class ReproducibilityProposal(MiniconfSessionProposal):
|
||||
class Meta:
|
||||
verbose_name = "Reproducability talk proposal"
|
||||
|
||||
|
||||
class RightToRepairProposal(MiniconfSessionProposal):
|
||||
class Meta:
|
||||
verbose_name = "Right to Repair talk proposal"
|
||||
verbose_name = "Peer-to-Peer and Local First talk proposal"
|
||||
|
||||
|
||||
class ScienceOfCommunityProposal(MiniconfSessionProposal):
|
||||
|
@ -220,16 +195,6 @@ class ScienceOfCommunityProposal(MiniconfSessionProposal):
|
|||
verbose_name = "Science of Community talk proposal"
|
||||
|
||||
|
||||
class SeleniumProposal(MiniconfSessionProposal):
|
||||
class Meta:
|
||||
verbose_name = "Selenium talk proposal"
|
||||
|
||||
|
||||
class MemberProjectsProposal(MiniconfSessionProposal):
|
||||
class Meta:
|
||||
verbose_name = "SFC Member Projects talk proposal"
|
||||
|
||||
|
||||
class SupportingUserGroupsProposal(MiniconfSessionProposal):
|
||||
class Meta:
|
||||
verbose_name = "Supporting User Groups talk proposal"
|
||||
|
|
|
@ -369,22 +369,15 @@ AUTHENTICATION_BACKENDS = [
|
|||
LOGIN_URL = '/account/login/'
|
||||
SESSION_EXPIRE_AT_BROWSER_CLOSE = True
|
||||
|
||||
CONFERENCE_ID = 3
|
||||
CONFERENCE_ID = 4
|
||||
PROPOSAL_FORMS = {
|
||||
"ai-and-machine-learning": "pinaxcon.proposals.forms.AIAndMachineLearningProposalForm",
|
||||
"diversity-equity-and-inclusion": "pinaxcon.proposals.forms.DiversityEquityAndInclusionProposalForm",
|
||||
"foss-and-arm64": "pinaxcon.proposals.forms.FOSSAndARM64ProposalForm",
|
||||
"foss-funding-and-economics": "pinaxcon.proposals.forms.FOSSFundingandEconomicsProposalForm",
|
||||
"distros": "pinaxcon.proposals.forms.DistrosProposalForm",
|
||||
"foss-in-daily-life": "pinaxcon.proposals.forms.FOSSInDailyLifeProposalForm",
|
||||
"foss-in-education": "pinaxcon.proposals.forms.FOSSInEducationProposalForm",
|
||||
"keynote-panel": "pinaxcon.proposals.forms.KeynotePanelProposalForm",
|
||||
"licensing-and-legal-issues": "pinaxcon.proposals.forms.LicensingAndLegalIssuesProposalForm",
|
||||
"mobile-device-user-freedom": "pinaxcon.proposals.forms.MobileDeviceUserFreedomProposalForm",
|
||||
"reproducibility": "pinaxcon.proposals.forms.ReproducibilityProposalForm",
|
||||
"right-to-repair": "pinaxcon.proposals.forms.RightToRepairProposalForm",
|
||||
"selenium": "pinaxcon.proposals.forms.SeleniumProposalForm",
|
||||
"legal-issues": "pinaxcon.proposals.forms.LegalIssuesProposalForm",
|
||||
"linux-kernel": "pinaxcon.proposals.forms.LinuxKernelProposalForm",
|
||||
"peer-to-peer-local-first": "pinaxcon.proposals.forms.P2PLocalFirstProposalForm",
|
||||
"science-of-community": "pinaxcon.proposals.forms.ScienceOfCommunityProposalForm",
|
||||
"member-projects": "pinaxcon.proposals.forms.MemberProjectsProposalForm",
|
||||
"supporting-user-groups": "pinaxcon.proposals.forms.SupportingUserGroupsProposalForm",
|
||||
"xmpp": "pinaxcon.proposals.forms.XMPPProposalForm",
|
||||
"wild-card": "pinaxcon.proposals.forms.WildCardProposalForm",
|
||||
|
@ -542,8 +535,8 @@ CONFERENCE_NAME = os.environ.get('CONFERENCE_NAME', 'FOSSY')
|
|||
CONFERENCE_NAME_SHORT = os.environ.get('CONFERENCE_NAME_SHORT', 'FOSSY')
|
||||
CONFERENCE_EMAIL = os.environ.get('CONFERENCE_EMAIL', DEFAULT_FROM_EMAIL)
|
||||
CONF_TZINFO = pytz.timezone(TIME_ZONE)
|
||||
CONF_START = CONF_TZINFO.localize(datetime(2024, 8, 1))
|
||||
CONF_END = CONF_TZINFO.localize(datetime(2024, 8, 4))
|
||||
CONF_START = CONF_TZINFO.localize(datetime(2025, 7, 31))
|
||||
CONF_END = CONF_TZINFO.localize(datetime(2025, 8, 3))
|
||||
CONF_MINICONF_END = CONF_TZINFO.localize(datetime(2023, 3, 14, 23, 59))
|
||||
EARLY_BIRD_DEADLINE = CONF_TZINFO.localize(datetime(2023, 1, 28))
|
||||
PENGUIN_DINNER_TICKET_DATE = date(2023, 3, 15)
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
<div class="col-md-4">
|
||||
<form method="POST" action="{% url "account_login" %}" autocapitalize="off" {% if form.is_multipart %} enctype="multipart/form-data"{% endif %}>
|
||||
<legend>{% trans "Log in to an existing account" %}</legend>
|
||||
<div class="alert alert-primary">Please note that accounts from 2024 are not transferred for privacy reasons.</div>
|
||||
{% csrf_token %}
|
||||
{{ form|bootstrap }}
|
||||
{% if redirect_field_value %}
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
|
||||
{# NOTE: This template is not used due to flatpages. #}
|
||||
|
||||
{% block meta_desc %}FOSSY (Free and Open Source Yearly) is a 4 day community-oriented conference focused on the creation and impact of free and open source software. Join us in Portland, OR - August 1–4th 2024 at Portland State University.{% endblock %}
|
||||
{% block og_desc %}FOSSY (Free and Open Source Yearly) is a 4 day community-oriented conference focused on the creation and impact of free and open source software. Join us in Portland, OR - August 1–4th 2024 at Portland State University.{% endblock %}
|
||||
{% block meta_desc %}FOSSY (Free and Open Source Yearly) is a 4 day community-oriented conference focused on the creation and impact of free and open source software. Join us in Portland, OR - July 31st – August 3rd 2025 at Portland State University.{% endblock %}
|
||||
{% block og_desc %}FOSSY (Free and Open Source Yearly) is a 4 day community-oriented conference focused on the creation and impact of free and open source software. Join us in Portland, OR - July 31st – August 3rd 2025 at Portland State University.{% endblock %}
|
||||
|
||||
{% block head_title %}FOSSY 2024: The first Free and Open Source Software Yearly conference{% endblock %}
|
||||
{% block head_title %}FOSSY 2025: The third Free and Open Source Software Yearly conference{% endblock %}
|
||||
|
||||
{% block body_class %}home{% endblock %}
|
||||
|
||||
|
@ -14,8 +14,8 @@
|
|||
<header class="pt2-ns pb4">
|
||||
<div class="flex-ns center">
|
||||
<div class="mr4 dark-green sans-serif" style="flex-grow: 1">
|
||||
<h1 class="f-subheadline f-headline-ns b lh-solid tracked-tight mv0">FOSSY 2024</h1>
|
||||
<h2 class="f3 f2-ns b lh-solid mt0 mb3">August 1–4th 2024 — Portland, OR</h2>
|
||||
<h1 class="f-subheadline f-headline-ns b lh-solid tracked-tight mv0">FOSSY 2025</h1>
|
||||
<h2 class="f3 f2-ns b lh-solid mt0 mb3">July 31st – August 3rd 2025 — Portland, OR</h2>
|
||||
<h3 class="f4 f4-ns b lh-title mv2 mv3-ns">The first Free and Open Source Software Yearly conference</h3>
|
||||
</div>
|
||||
<div class="lh-solid mt4 mt0-ns" style="font-size: 10rem; max-width: 250px;"><img class="db" src="{% static 'img/conservancy_logo_tall_mono.svg' %}" style="max-height: 180px" alt="Software Freedom Conservancy"></div>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<div class="container">
|
||||
<h2 class="sans-serif f2 f1-ns b lh-solid tracked-tight mv0 mr3">
|
||||
<a class="washed-yellow hover-washed-yellow" href="/" style="text-decoration: none">
|
||||
FOSSY 2024
|
||||
FOSSY 2025
|
||||
</a>
|
||||
</h2>
|
||||
|
||||
|
|
|
@ -96,7 +96,7 @@
|
|||
<path d="M250.66,374.21V399H247V374.21Z" fill="#36a852"/>
|
||||
<path d="M265.49,393.87l2.88,1.92a8.4,8.4,0,0,1-7,3.75,8.26,8.26,0,0,1-8.38-8.45c0-5,3.61-8.45,8-8.45s6.53,3.49,7.23,5.38l.39,1-11.3,4.67a4.3,4.3,0,0,0,4.1,2.56A4.82,4.82,0,0,0,265.49,393.87Zm-8.87-3,7.56-3.13a3.28,3.28,0,0,0-3.14-1.79A4.63,4.63,0,0,0,256.62,390.83Z" fill="#ea4535"/>
|
||||
<rect x="160.95" y="373.04" width="112" height="36" fill="none"/>
|
||||
<text transform="translate(84.43 102.23)" font-size="15" fill="#231f20" font-family="SourceSansPro-Regular, Source Sans Pro">August 1–4 2024
|
||||
<text transform="translate(84.43 102.23)" font-size="15" fill="#231f20" font-family="SourceSansPro-Regular, Source Sans Pro">July 31st – August 3rd 2025
|
||||
</text>
|
||||
<g id="Layer_2" data-name="Layer 2">
|
||||
<g id="emperor">
|
||||
|
|
Before (image error) Size: 116 KiB After (image error) Size: 116 KiB |
|
@ -127,8 +127,8 @@
|
|||
</div> -->
|
||||
<div class="row">
|
||||
<div class="col-md-4 pb-4">
|
||||
<strong>FOSSY 2024</strong> <br>
|
||||
August 1–4th 2024 <br>
|
||||
<strong>FOSSY 2025</strong> <br>
|
||||
July 31st – August 3rd 2025 <br>
|
||||
Portland, OR<br>
|
||||
Timezone: PDT - UTC-7 <br>
|
||||
<a href="mailto:{{ settings.CONFERENCE_EMAIL }}" alt="Email"><i class="far fa-envelope"></i></a> <a
|
||||
|
@ -141,7 +141,7 @@
|
|||
<div class="col-md-4 pb-4 text-right">
|
||||
<small>
|
||||
<a href="#">Back to top</a><br>
|
||||
© 2024 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||
© 2025 <a href="https://sfconservancy.org/">Software Freedom Conservancy</a><br>
|
||||
<a href="/credits/">Credits</a>
|
||||
</small>
|
||||
</div>
|
||||
|
|
2
vendor/symposion/symposion/schedule/views.py
vendored
2
vendor/symposion/symposion/schedule/views.py
vendored
|
@ -303,7 +303,7 @@ def schedule_json(request):
|
|||
|
||||
class EventFeed(ICalFeed):
|
||||
|
||||
product_id = '-//2024.fossy.us/schedule//EN'
|
||||
product_id = '-//2025.fossy.us/schedule//EN'
|
||||
timezone = settings.TIME_ZONE
|
||||
filename = 'conference.ics'
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue