Skip to content

Commit ebef6d0

Browse files
committed
Reverted some links to htmlized draft versions, on request.
- Legacy-Id: 13091
1 parent d04869a commit ebef6d0

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

ietf/doc/templatetags/ietf_filters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def rfclink(string):
197197
URL for that RFC.
198198
"""
199199
string = str(string);
200-
return "/doc/html/rfc" + string;
200+
return "https://tools.ietf.org/html/rfc" + string;
201201

202202
@register.filter(name='urlize_ietf_docs', is_safe=True, needs_autoescape=True)
203203
def urlize_ietf_docs(string, autoescape=None):

ietf/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
TOOLS_SERVER = 'tools.' + IETF_DOMAIN
6262
TOOLS_SERVER_URL = 'https://' + TOOLS_SERVER
6363
TOOLS_ID_PDF_URL = TOOLS_SERVER_URL + '/pdf/'
64-
TOOLS_ID_HTML_URL = '/doc/html/'
64+
TOOLS_ID_HTML_URL = TOOLS_SERVER_URL + '/html/'
6565

6666
# Override this in the settings_local.py file:
6767
SERVER_EMAIL = 'Django Server <django-project@' + TOOLS_SERVER + '>'

ietf/templates/submit/announce_to_authors.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Group: {{ group }}
1111
Pages: {{ submission.pages }}
1212
URL: https://www.ietf.org/internet-drafts/{{ submission.name }}-{{ submission.rev }}.txt
1313
Status: https://datatracker.ietf.org/doc/{{ submission.name }}/
14+
Htmlized: https://tools.ietf.org/html/{{ submission.name }}-{{ submission.rev }}
1415
Htmlized: https://datatracker.ietf.org/doc/html/{{ submission.name }}-{{ submission.rev }}
1516
{% if submission.rev != "00" %}Diff: {{rfcdiff_base_url}}?url2={{ submission.name }}-{{ submission.rev }}{% endif %}
1617

@@ -20,7 +21,7 @@ Abstract:
2021
{{ submission.note|default:"" }}
2122

2223
Please note that it may take a couple of minutes from the time of submission
23-
until the diff is available at tools.ietf.org.
24+
until the htmlized version and diff are available at tools.ietf.org.
2425

2526
The IETF Secretariat
2627
{% endautoescape %}

ietf/templates/submit/announce_to_lists.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,16 @@ Abstract:
1515
The IETF datatracker status page for this draft is:
1616
https://datatracker.ietf.org/doc/{{ submission.name }}/
1717

18-
There's also a htmlized version available at:
18+
There are also htmlized versions available at:
19+
https://tools.ietf.org/html/{{ submission.name }}-{{ submission.rev }}
1920
https://datatracker.ietf.org/doc/html/{{ submission.name }}-{{ submission.rev }}
2021
{% if submission.rev != "00" %}
2122
A diff from the previous version is available at:
2223
{{settings.RFCDIFF_BASE_URL}}?url2={{ submission.name }}-{{ submission.rev }}
2324
{% endif %}
2425

2526
Please note that it may take a couple of minutes from the time of submission
26-
until the diff is available at tools.ietf.org.
27+
until the htmlized version and diff are available at tools.ietf.org.
2728

2829
Internet-Drafts are also available by anonymous FTP at:
2930
ftp://ftp.ietf.org/internet-drafts/

0 commit comments

Comments
 (0)