Skip to content

Commit e1b8fdb

Browse files
committed
Added a page with GDPR-related information on handling of personal information within the datatracker.
- Legacy-Id: 15090
1 parent 905a6d9 commit e1b8fdb

3 files changed

Lines changed: 88 additions & 0 deletions

File tree

ietf/help/urls.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright The IETF Trust 2013-2018, All Rights Reserved
2+
3+
from django.views.generic import TemplateView
14

25
from ietf.help import views
36
from ietf.utils.urls import url
@@ -6,5 +9,6 @@
69
url(r'^state/(?P<doc>[-\w]+)/(?P<type>[-\w]+)/?$', views.state),
710
url(r'^state/(?P<doc>[-\w]+)/?$', views.state),
811
url(r'^state/?$', views.state_index),
12+
url(r'^personal-information/?$', TemplateView.as_view(template_name='help/personal-information.html'), name='personal-information'),
913
]
1014

ietf/templates/base/menu_user.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
<li><a rel="nofollow" href="/accounts/reset/">Password reset</a></li>
2727
<li><a href="{%url "ietf.cookies.views.preferences" %}" rel="nofollow">Preferences</a></li>
2828
{% endif %}
29+
<li><a href="{% url 'personal-information' %}">Handling of personal information</a></li>
2930
{% endif %}
3031

3132
{% if not request.user.is_authenticated %}
Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
{% extends "base.html" %}
2+
{# Copyright The IETF Trust 2018-2018, All Rights Reserved #}
3+
{% load origin %}
4+
5+
{% block title %}Personal Information in the Datatracker{% endblock %}
6+
7+
{% block content %}
8+
{% origin %}
9+
<div class="col-sm-12" style="max-width: 85ex;">
10+
<h1>Personal Information in the Datatracker</h1>
11+
<p>
12+
13+
<a href="https://tools.ietf.org/html/rfc3935">RFC 3935, "A Mission Statement for the IETF"</a> lays out
14+
the goal and the mission of the IETF as follows:
15+
</p>
16+
17+
<samp class="preformatted small"> The goal of the IETF is to make the Internet work better.
18+
19+
The mission of the IETF is to produce high quality, relevant
20+
technical and engineering documents that influence the way people
21+
design, use, and manage the Internet in such a way as to make the
22+
Internet work better. These documents include protocol standards,
23+
best current practices, and informational documents of various kinds.
24+
</samp>
25+
26+
<p>
27+
28+
In order to fulfil its mission, the IETF provides ways to distribute
29+
drafts, discuss them, ballot them, and otherwise process them to the
30+
point where they are considered ready for publication.
31+
32+
</p>
33+
<p>
34+
35+
This makes the information in the draft documents, as well as
36+
contributions related to the draft documents and their processing, as
37+
laid out in the "<a href="https://www.ietf.org/about/note-well/">Note
38+
Well</a>" statement, of legitimate interest to the IETF when it pursues
39+
its mission; not only in general terms, but specifically under Article
40+
6(1)&nbsp;f) of <a href="https://eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri=CELEX:32016R0679#d1e1888-1-1">
41+
EU's General Data Protection Regulation </a>.
42+
43+
</p>
44+
<p>
45+
46+
The datatracker treats all personal information derived from draft documents and
47+
documents published as RFC accordingly, as well as personal information derived from
48+
processing draft documents through the IETF process. This includes author names,
49+
email addresses and other address information provided in draft documents or as
50+
contact information for IETF roles such as Working Group chairs, secretaries,
51+
Area Directors and other roles.
52+
53+
</p>
54+
<p>
55+
56+
There is however personal information held in the datatracker which
57+
is not considered covered by Legitimate Interest. This information
58+
requires Consent for its storage and processing, and the person it
59+
relates to may at any time request its removal. This includes:
60+
61+
</p>
62+
63+
<ul>
64+
<li>Personal photo</li>
65+
<li>Personal biography</li>
66+
<li>Personal email addresses not derived from IETF contributions</li>
67+
<li>Personal account login information</li>
68+
</ul>
69+
70+
<p>
71+
72+
Most of this information can be edited on their <a
73+
href="/accounts/profile/">Account Info</a> page by anybody with an
74+
account. If the datatracker holds such information about a person, and
75+
they don't have an account, a request to the <a
76+
href="mailto:ietf-action@ietf.org">IETF secretariat</a> to change or
77+
remove the information will be honoured.
78+
79+
</p>
80+
81+
82+
</div>
83+
{% endblock %}

0 commit comments

Comments
 (0)