81 lines
3.1 KiB
HTML
81 lines
3.1 KiB
HTML
{% comment %}
|
|
Copyright (C) 2009-2010 Nokia Corporation and/or its subsidiary(-ies).
|
|
All rights reserved. Contact: Pasi Eronen <pasi.eronen@nokia.com>
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions
|
|
are met:
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above
|
|
copyright notice, this list of conditions and the following
|
|
disclaimer in the documentation and/or other materials provided
|
|
with the distribution.
|
|
|
|
* Neither the name of the Nokia Corporation and/or its
|
|
subsidiary(-ies) nor the names of its contributors may be used
|
|
to endorse or promote products derived from this software
|
|
without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
{% endcomment %}
|
|
|
|
{% load ietf_filters %}
|
|
<table class="ietf-table">
|
|
<tr><th class="comment_date">Date</th><th>Version</th><th>By</th><th>Text</th></tr>
|
|
|
|
{% for c in history %}
|
|
<tr class="{% cycle oddrow,evenrow %}"{% if c.is_com %} id="history-{{c.comment.id }}"{% endif %}>
|
|
<td class="comment_date">{{ c.date|date:"Y-m-d" }}</td>
|
|
|
|
{% if c.is_rev %}
|
|
<td>{{ c.revision }}</td>
|
|
<td>(System)</td>
|
|
<td>New version available: <a href="http://tools.ietf.org/id/{{c.draft_name}}-{{c.revision}}.txt">{{c.draft_name}}-{{c.revision}}</a> {% ifnotequal c.revision "00" %}(<a href="http:{{rfcdiff_prefix}}?url2={{c.draft_name}}-{{c.revision}}">diff from -{{c.revision|add:"-1"|stringformat:"02d"}}</a>){% endifnotequal %}</td>
|
|
{% endif %}
|
|
|
|
{% if c.is_text %}
|
|
<td> </td>
|
|
<td>(System)</td>
|
|
<td>{{ c.text|safe }}</td>
|
|
{% endif %}
|
|
|
|
{% if c.is_com %}
|
|
<td>{{ c.comment.version }}</td>
|
|
<td>{{ c.info.by|escape }}</td>
|
|
<td>{% if c.comment.ballot %}
|
|
[Ballot {{ c.comment.get_ballot_display }}]<br />
|
|
{% endif %}
|
|
{% if c.info.snipped %}
|
|
<div id="commentS{{c.comment.id}}">{{ c.info.textSnippet|safe }}</div>
|
|
<span class="comment_toggle" onclick="toggleComment({{c.comment.id}})" id="commentT{{c.comment.id}}">[show all]</span>
|
|
<div id="commentF{{c.comment.id}}" style="display:none;">
|
|
{{ c.info.text|safe|urlize|linebreaksbr|keep_spacing|sanitize_html|safe }}
|
|
</div>
|
|
{% else %}
|
|
{% if c.info.dontmolest %}
|
|
{{ c.info.text|safe }}
|
|
{% else %}
|
|
{{ c.info.text|safe|urlize|linebreaksbr|keep_spacing|sanitize_html|safe }}
|
|
{% endif %}
|
|
{% endif %}
|
|
</td>
|
|
{% endif %}
|
|
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
</table>
|