forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_all_drafts.html
More file actions
63 lines (63 loc) · 2.16 KB
/
index_all_drafts.html
File metadata and controls
63 lines (63 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% block title %}Index of all Internet-Drafts and RFCs{% endblock %}
{% block content %}
{% origin %}
<h1>Index of all Internet-Drafts and RFCs</h1>
<p>
This page lists all Internet-Drafts and RFCs. The main purpose of
this page is to ensure all pages can be found by search engines. For
normal use, it is recommended to use the
<a href="{% url 'ietf.doc.views_search.search' %}">
search
page
</a>.
</p>
<p>
There is also an
<a href="{% url 'ietf.doc.views_search.index_active_drafts' %}">
index of
active Internet-Drafts
</a>
with more information.
</p>
<p>
In addition, the following files are available for download:
</p>
<ul>
<li>
<a href="{{ settings.IETF_ID_ARCHIVE_URL }}1id-index.txt">Active Internet-Drafts (text)</a>
</li>
<li>
<a href="{{ settings.IETF_ID_ARCHIVE_URL }}1id-abstracts.txt">Active Internet-Drafts with abstracts (text)</a>
</li>
<li>
<a href="{{ settings.IETF_ID_ARCHIVE_URL }}all_id2.txt">All Internet-Drafts (tab-separated)</a>,
<a href="{{ settings.IETF_ID_ARCHIVE_URL }}all_id.txt">older version (with fewer fields)</a>
</li>
<li>
<a href="https://www.rfc-editor.org/rfc/rfc-index.txt">All RFCs (text)</a>
</li>
<li>
<a href="https://www.rfc-editor.org/rfc/rfc-index.xml">All RFCs (XML)</a>
</li>
</ul>
<h2 class="mt-3">Contents</h2>
<p>
The documents are listed in the following categories:
</p>
<ul>
{% for state, heading, count, _ in categories %}
<li>
<a href="#{{ state.slug }}">{{ heading }} ({{ count }})</a>
</li>
{% endfor %}
</ul>
{% for state, heading, count, links in categories %}
<h2 class="mt-3" id="{{ state.slug }}">{{ heading }} ({{ count }})</h2>
<p class="links">
{{ links|safe }}
</p>
{% endfor %}
{% endblock %}