Skip to content

Commit a0fffcc

Browse files
committed
more changes
- Legacy-Id: 5432
1 parent 00dbf38 commit a0fffcc

5 files changed

Lines changed: 9 additions & 93 deletions

File tree

ietf/secr/templates/base_secr.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<table width="100%">
3939
<tr>
4040
<td align="left">
41-
{% block breadcrumbs %}<a href="/secr/">Home</a>{% endblock %}
41+
{% block breadcrumbs %}<a href="/secret/">Home</a>{% endblock %}
4242
</td>
4343
<td align="right">
4444
{% block instructions %}{% endblock %}

ietf/secr/templates/includes/ietf_footer.html

Lines changed: 0 additions & 15 deletions
This file was deleted.

ietf/secr/templates/includes/ietf_menu.html

Lines changed: 0 additions & 75 deletions
This file was deleted.

ietf/settings.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@
111111
'ietf.middleware.RedirectTrailingPeriod',
112112
'django.middleware.transaction.TransactionMiddleware',
113113
'ietf.middleware.UnicodeNfkcNormalization',
114+
'ietf.secr.middleware.secauth.SecAuthMiddleware'
114115
)
115116

116117
ROOT_URLCONF = 'ietf.urls'
@@ -203,7 +204,7 @@
203204
INTERNET_DRAFT_PATH = '/a/www/ietf-ftp/internet-drafts/'
204205
INTERNET_DRAFT_PDF_PATH = '/a/www/ietf-datatracker/pdf/'
205206
RFC_PATH = '/a/www/ietf-ftp/rfc/'
206-
CHARTER_PATH = '/a/www/ietf-ftp/charters/'
207+
CHARTER_PATH = '/a/www/ietf-ftp/charter/'
207208
CHARTER_TXT_URL = 'http://www.ietf.org/charter/'
208209
CONFLICT_REVIEW_PATH = '/a/www/ietf-ftp/conflict-reviews'
209210
CONFLICT_REVIEW_TXT_URL = 'http://www.ietf.org/cr/'
@@ -311,6 +312,11 @@
311312
CHANGELOG_PATH = '/www/ietf-datatracker/web/changelog'
312313

313314
# Secretariat Tool
315+
BLUE_SHEET_PATH = '/a/www/ietf-datatracker/documents/blue_sheet.rtf'
316+
BLUE_SHEET_URL = 'https://datatracker.ietf.org/documents/blue_sheet.rtf'
317+
INTERIM_LISTING_DIR = '/a/www/www6/meeting/interim'
318+
MAX_UPLOAD_SIZE = 40960000
319+
PROCEEDINGS_DIR = '/a/www/www6s/proceedings/'
314320
# this is a tuple of regular expressions. if the incoming URL matches one of
315321
# these, than non secretariat access is allowed.
316322
SEC_AUTH_UNRESTRICTED_URLS = (

ietf/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
(r'^person/', include('ietf.person.urls')),
6363
(r'^release/$', 'ietf.release.views.release'),
6464
(r'^release/(?P<version>.+)/$', 'ietf.release.views.release'),
65-
(r'^secr/', include('ietf.secr.urls')),
65+
(r'^secret/', include('ietf.secr.urls')),
6666
(r'^sitemap-(?P<section>.+).xml$', 'django.contrib.sitemaps.views.sitemap', {'sitemaps': sitemaps}),
6767
(r'^sitemap.xml$', 'django.contrib.sitemaps.views.index', { 'sitemaps': sitemaps}),
6868
(r'^streams/', include('ietf.ietfworkflows.urls')),

0 commit comments

Comments
 (0)