File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323IDSUBMIT_IDNITS_BINARY = "/usr/local/bin/idnits"
2424IDSUBMIT_REPOSITORY_PATH = "/test/id/"
2525IDSUBMIT_STAGING_PATH = "/test/staging/"
26- INTERNET_DRAFT_ARCHIVE_DIR = "/test/archive/"
27- INTERNET_ALL_DRAFTS_ARCHIVE_DIR = "/test/archive/"
28- RFC_PATH = "/test/rfc/"
2926
3027AGENDA_PATH = '/assets/www6s/proceedings/'
3128MEETINGHOST_LOGO_PATH = AGENDA_PATH
6562STATUS_CHANGE_PATH = '/assets/ietf-ftp/status-changes/'
6663INTERNET_DRAFT_ARCHIVE_DIR = '/assets/ietf-ftp/internet-drafts/'
6764INTERNET_ALL_DRAFTS_ARCHIVE_DIR = '/assets/ietf-ftp/internet-drafts/'
65+ BIBXML_BASE_PATH = '/assets/ietfdata/derived/bibxml'
6866
6967NOMCOM_PUBLIC_KEYS_DIR = 'data/nomcom_keys/public_keys/'
7068SLIDE_STAGING_PATH = '/test/staging/'
Original file line number Diff line number Diff line change 2020IDSUBMIT_IDNITS_BINARY = "/usr/local/bin/idnits"
2121IDSUBMIT_REPOSITORY_PATH = "test/id/"
2222IDSUBMIT_STAGING_PATH = "test/staging/"
23- INTERNET_DRAFT_ARCHIVE_DIR = "test/archive/"
24- INTERNET_ALL_DRAFTS_ARCHIVE_DIR = "test/archive/"
25- RFC_PATH = "test/rfc/"
2623
2724AGENDA_PATH = '/assets/www6s/proceedings/'
2825MEETINGHOST_LOGO_PATH = AGENDA_PATH
6259STATUS_CHANGE_PATH = '/assets/ietf-ftp/status-changes/'
6360INTERNET_DRAFT_ARCHIVE_DIR = '/assets/ietf-ftp/internet-drafts/'
6461INTERNET_ALL_DRAFTS_ARCHIVE_DIR = '/assets/ietf-ftp/internet-drafts/'
62+ BIBXML_BASE_PATH = '/assets/ietfdata/derived/bibxml'
6563
6664NOMCOM_PUBLIC_KEYS_DIR = 'data/nomcom_keys/public_keys/'
6765SLIDE_STAGING_PATH = 'test/staging/'
Original file line number Diff line number Diff line change 1919IDSUBMIT_IDNITS_BINARY = "/usr/local/bin/idnits"
2020IDSUBMIT_REPOSITORY_PATH = "test/id/"
2121IDSUBMIT_STAGING_PATH = "test/staging/"
22- INTERNET_DRAFT_ARCHIVE_DIR = "test/archive/"
23- INTERNET_ALL_DRAFTS_ARCHIVE_DIR = "test/archive/"
24- RFC_PATH = "test/rfc/"
2522
2623AGENDA_PATH = '/assets/www6s/proceedings/'
2724MEETINGHOST_LOGO_PATH = AGENDA_PATH
6158STATUS_CHANGE_PATH = '/assets/ietf-ftp/status-changes/'
6259INTERNET_DRAFT_ARCHIVE_DIR = '/assets/ietf-ftp/internet-drafts/'
6360INTERNET_ALL_DRAFTS_ARCHIVE_DIR = '/assets/ietf-ftp/internet-drafts/'
61+ BIBXML_BASE_PATH = '/assets/ietfdata/derived/bibxml'
6462
6563NOMCOM_PUBLIC_KEYS_DIR = 'data/nomcom_keys/public_keys/'
6664SLIDE_STAGING_PATH = 'test/staging/'
Original file line number Diff line number Diff line change 1010IDSUBMIT_IDNITS_BINARY = "/usr/local/bin/idnits"
1111IDSUBMIT_REPOSITORY_PATH = "test/id/"
1212IDSUBMIT_STAGING_PATH = "test/staging/"
13- INTERNET_DRAFT_ARCHIVE_DIR = "test/archive/"
14- INTERNET_ALL_DRAFTS_ARCHIVE_DIR = "test/archive/"
15- RFC_PATH = "test/rfc/"
1613
1714AGENDA_PATH = '/assets/www6s/proceedings/'
1815MEETINGHOST_LOGO_PATH = AGENDA_PATH
5249STATUS_CHANGE_PATH = '/assets/ietf-ftp/status-changes/'
5350INTERNET_DRAFT_ARCHIVE_DIR = '/assets/archive/id'
5451INTERNET_ALL_DRAFTS_ARCHIVE_DIR = '/assets/archive/id'
52+ BIBXML_BASE_PATH = '/assets/ietfdata/derived/bibxml'
5553
5654NOMCOM_PUBLIC_KEYS_DIR = 'data/nomcom_keys/public_keys/'
5755SLIDE_STAGING_PATH = 'test/staging/'
Original file line number Diff line number Diff line change @@ -21,6 +21,10 @@ for sub in \
2121 /assets/ietf-ftp/yang/ianamod \
2222 /assets/ietf-ftp/yang/invalmod \
2323 /assets/ietf-ftp/yang/rfcmod \
24+ /assets/ietfdata \
25+ /assets/ietfdata/derived \
26+ /assets/ietfdata/derived/bibxml \
27+ /assets/ietfdata/derived/bibxml/bibxml-ids \
2428 /assets/www6s \
2529 /assets/www6s/staging \
2630 /assets/www6s/wg-descriptions \
Original file line number Diff line number Diff line change 1010{% block nomcom_content %}
1111 {% origin %}
1212 < h2 > Volunteers for {{ nomcom.group }}</ h2 >
13- {% if not public %}< a href ="{% url 'ietf.nomcom.views.private_volunteers_csv' year=year %} "> Download as csv</ a > {% endif %}
13+ {% if not public %}
14+ < a class ="btn btn-primary " role ="button " href ="{% url 'ietf.nomcom.views.private_volunteers_csv' year=year %} "> Download as csv</ a >
15+ < a class ="btn btn-primary " role ="button " href ="{% url 'ietf.nomcom.views.qualified_volunteer_list_for_announcement' year=year %} "> View simplified list of only qualified volunteers</ a >
16+ {% endif %}
1417 {% regroup volunteers by eligible as volunteers_by_eligibility %}
1518 {% for eligibility_group in volunteers_by_eligibility %}
1619 < h3 class ="mt-3 "> {{ eligibility_group.grouper|yesno:"Eligible, Not Eligible" }}</ h3 >
Original file line number Diff line number Diff line change @@ -210,6 +210,7 @@ class TestCase(django.test.TestCase):
210210 'INTERNET_ALL_DRAFTS_ARCHIVE_DIR' ,
211211 'INTERNET_DRAFT_ARCHIVE_DIR' ,
212212 'INTERNET_DRAFT_PATH' ,
213+ 'BIBXML_BASE_PATH' ,
213214 ]
214215
215216 parser = html5lib .HTMLParser (strict = True )
@@ -314,4 +315,4 @@ def tearDown(self):
314315 for dir in self ._ietf_temp_dirs .values ():
315316 shutil .rmtree (dir )
316317 self .requests_mock .stop ()
317- super ().tearDown ()
318+ super ().tearDown ()
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ django-csp>=3.7
1717django-cors-headers >= 3.11.0
1818django-debug-toolbar >= 3.2.4
1919django-markup >= 1.5 # Limited use - need to reconcile against direct use of markdown
20- django-oidc-provider >= 0.7
20+ django-oidc-provider >= 0.7 , < 0.8 # 0.8 dropped Django 2 support
2121django-password-strength >= 1.2.1
2222django-referrer-policy >= 1.0
2323django-simple-history >= 3.0.0
You can’t perform that action at this time.
0 commit comments