Skip to content

Commit 81e032b

Browse files
committed
Remove unnecessary escapes from another bunch of templates
- Legacy-Id: 6989
1 parent 23725f7 commit 81e032b

8 files changed

Lines changed: 15 additions & 15 deletions

File tree

ietf/templates/iesg/agenda_charter.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<a href="{{ settings.CHARTER_TXT_URL }}{{ doc.filename_with_rev }}">[txt]</a>
1111
</div>
1212

13-
<div>{{ doc.group.name|escape }} ({{doc.group.acronym}})</div>
13+
<div>{{ doc.group.name }} ({{doc.group.acronym}})</div>
1414

1515
<div>Area: {{ doc.group.parent.acronym|upper }} ({{ doc.ad|default:"Sponsoring AD not assigned" }})</div>
1616
</div>

ietf/templates/iesg/agenda_doc.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<span class="stream">{% if doc.stream %} - {{ doc.stream }} stream{% endif %}</span>
1818

19-
<br/>{{ doc.title|escape }} ({{ doc.intended_std_level }})
19+
<br/>{{ doc.title }} ({{ doc.intended_std_level }})
2020

2121

2222
{% if doc.note %}
@@ -29,7 +29,7 @@ <h5>IPR:</h5>
2929
<ul>
3030
{% for ipr in doc.ipr %}
3131
{% if ipr.ipr.status == 1 %}
32-
<li><a href="/ipr/{{ ipr.ipr.ipr_id }}/">{{ ipr.ipr.title|escape }}</a></li>
32+
<li><a href="/ipr/{{ ipr.ipr.ipr_id }}/">{{ ipr.ipr.title }}</a></li>
3333
{% endif %}
3434
{% endfor %}
3535
</ul>

ietf/templates/iesg/moderator_doc.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@
3838

3939
<p>
4040
<b>{{doc.name}}-{{doc.rev}}</b><br>
41-
<i>({{ doc.title|escape }})</i><br>
41+
<i>({{ doc.title }})</i><br>
4242
<b>
4343
Intended status: {{ doc.intended_std_level }}<br>
44-
Token: {{ doc.ad.plain_name|escape }}<br>
44+
Token: {{ doc.ad.plain_name }}<br>
4545
{% if doc.type_id == "draft" %}
4646
Last call ends: {{ doc.most_recent_ietflc.expires.date|default:"(none)" }}
4747
{% if doc.most_recent_ietflc.expires.date|timesince_days < 3 %}!!!{% endif %}

ietf/templates/iesg/scribe_doc_ballot.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
{% if p.discuss %}
88
<li>
99
<a href="#{{ doc.name }}+{{ p.ad|slugify }}+discuss">{{ p.ad }}: Discuss [{{ p.discuss_time }}]</a>:
10-
<br>{{ p.discuss|escape }}
10+
<br>{{ p.discuss }}
1111
</li>
1212
{% endif %}
1313
{% if p.comment %}
1414
<li>
1515
<a href="#{{ doc.name }}+{{ p.ad|slugify }}+comment">{{ p.ad }}: Comment [{{ p.comment_time }}]</a>:
16-
<br>{{ p.comment|escape }}
16+
<br>{{ p.comment }}
1717
</li>
1818
{% endif %}
1919
{% endif %}
@@ -30,4 +30,4 @@
3030
<li>...</li>
3131
<li>...</li>
3232
<li>...</li>
33-
</ul>
33+
</ul>

ietf/templates/ipr/update.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
{% block content %}
2424

25-
<h1>Updating {{ type|title }} IPR Disclosure <br><i>{{ ipr.title|escape }}</i></h1>
25+
<h1>Updating {{ type|title }} IPR Disclosure <br><i>{{ ipr.title }}</i></h1>
2626

2727
<form name="form1" method="post">{% csrf_token %}
2828
{% if form.errors %}

ietf/templates/meeting/agenda-utc.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,15 +183,15 @@ <h2 class="ietf-divider">{{ item.timeslot.time|date:"l"|upper }}, {{ item.timesl
183183
<td colspan="5">
184184
{{item.timeslot.name}}
185185
-
186-
{% if item.timeslot.show_location %}<a href="http://tools.ietf.org/agenda/{{schedule.meeting.number}}/venue/?room={{ item.timeslot.get_location|slugify }}">{{item.timeslot.get_location|escape}}</a>{% endif %}
186+
{% if item.timeslot.show_location %}<a href="http://tools.ietf.org/agenda/{{schedule.meeting.number}}/venue/?room={{ item.timeslot.get_location|slugify }}">{{item.timeslot.get_location}}</a>{% endif %}
187187
</td>
188188
</tr>
189189
{% endifchanged %}
190190
{% endif %}
191191
{% if item.timeslot.type.slug = 'session' %} {% if item.session.group %}
192192
<tr id="{{schedule.meeting.number}}-{{item.timeslot.time|date:"D-Hi"|lower}}-{{item.session.group.parent.acronym|upper}}-{{item.session.group.acronym|lower}}" class="grouprow">
193193
<td>
194-
<td>{% if item.timeslot.show_location %}<a href="http://tools.ietf.org/agenda/{{schedule.meeting.number}}/venue/?room={{ item.timeslot.get_location|slugify }}">{{item.timeslot.get_location|escape}}</a>{% endif %}</td>
194+
<td>{% if item.timeslot.show_location %}<a href="http://tools.ietf.org/agenda/{{schedule.meeting.number}}/venue/?room={{ item.timeslot.get_location|slugify }}">{{item.timeslot.get_location}}</a>{% endif %}</td>
195195
<td>{{item.session.group.parent.acronym|upper}}</td>
196196
<td>
197197
{% if item.session.group.charter %}<a href="{{item.session.group.charter.get_absolute_url}}">{{item.session.group.acronym}}</a>

ietf/templates/meeting/agenda.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,15 +171,15 @@ <h2 class="ietf-divider">{{ item.timeslot.time|date:"l"|upper }}, {{ item.timesl
171171
<td colspan="5">
172172
{{item.timeslot.name}}
173173
-
174-
{% if item.timeslot.show_location %}<a href="http://tools.ietf.org/agenda/{{schedule.meeting.number}}/venue/?room={{ item.timeslot.get_location|slugify }}">{{item.timeslot.get_location|escape}}</a>{% endif %}
174+
{% if item.timeslot.show_location %}<a href="http://tools.ietf.org/agenda/{{schedule.meeting.number}}/venue/?room={{ item.timeslot.get_location|slugify }}">{{item.timeslot.get_location}}</a>{% endif %}
175175
</td>
176176
</tr>
177177
{% endifchanged %}
178178
{% endif %}
179179
{% if item.timeslot.type.slug = 'session' %} {% if item.session.group %}
180180
<tr id="{{schedule.meeting.number}}-{{item.timeslot.time|date:"D-Hi"|lower}}-{{item.session.group.parent.acronym|upper}}-{{item.session.group.acronym|lower}}" class="grouprow">
181181
<td>
182-
<td>{% if item.timeslot.show_location %}<a href="http://tools.ietf.org/agenda/{{schedule.meeting.number}}/venue/?room={{ item.timeslot.get_location|slugify }}">{{item.timeslot.get_location|escape}}</a>{% endif %}</td>
182+
<td>{% if item.timeslot.show_location %}<a href="http://tools.ietf.org/agenda/{{schedule.meeting.number}}/venue/?room={{ item.timeslot.get_location|slugify }}">{{item.timeslot.get_location}}</a>{% endif %}</td>
183183
<td>{{item.session.group.parent.acronym|upper}}</td>
184184
<td>
185185
{% if item.session.group.charter %}<a href="{{item.session.group.charter.get_absolute_url}}">{{item.session.group.acronym}}</a>

ietf/templates/meeting/m_agenda.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ <h4>{{ item.timeslot.time|date:"l"|upper }}, {{ item.timeslot.time|date:"F j, Y"
6363
<tr>
6464
<td colspan="3">
6565
{{ item.timeslot.time_desc }} {{ item.timeslot.name }}
66-
{% if schedule.meeting.reg_area %} - <a href="http://tools.ietf.org/agenda/{{schedule.meeting.number}}/venue/?room={{ schedule.meeting.reg_area|slugify }}">{{ schedule.meeting.reg_area|escape }}</a>{% endif %}
66+
{% if schedule.meeting.reg_area %} - <a href="http://tools.ietf.org/agenda/{{schedule.meeting.number}}/venue/?room={{ schedule.meeting.reg_area|slugify }}">{{ schedule.meeting.reg_area }}</a>{% endif %}
6767
</td>
6868
</tr>
6969
{% endif %}{# reg #}
@@ -73,7 +73,7 @@ <h4>{{ item.timeslot.time|date:"l"|upper }}, {{ item.timeslot.time|date:"F j, Y"
7373
<td colspan="3">
7474
<br />
7575
{{ item.timeslot.time_desc }} {{ item.timeslot.name }}
76-
{% if schedule.meeting.break_area and item.timeslot.break_info.show_break_location %} - <a href="http://tools.ietf.org/agenda/{{schedule.meeting.number}}/venue/?room={{ schedule.meeting.break_area|slugify }}">{{ schedule.meeting.break_area|escape }}</a>{% endif %}
76+
{% if schedule.meeting.break_area and item.timeslot.break_info.show_break_location %} - <a href="http://tools.ietf.org/agenda/{{schedule.meeting.number}}/venue/?room={{ schedule.meeting.break_area|slugify }}">{{ schedule.meeting.break_area }}</a>{% endif %}
7777
</td>
7878
</tr>
7979
{% endif %}{# break #}

0 commit comments

Comments
 (0)