|
| 1 | +{% comment %} |
| 2 | +Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies). |
| 3 | +All rights reserved. Contact: Pasi Eronen <pasi.eronen@nokia.com> |
| 4 | + |
| 5 | +Redistribution and use in source and binary forms, with or without |
| 6 | +modification, are permitted provided that the following conditions |
| 7 | +are met: |
| 8 | + |
| 9 | + * Redistributions of source code must retain the above copyright |
| 10 | + notice, this list of conditions and the following disclaimer. |
| 11 | + |
| 12 | + * Redistributions in binary form must reproduce the above |
| 13 | + copyright notice, this list of conditions and the following |
| 14 | + disclaimer in the documentation and/or other materials provided |
| 15 | + with the distribution. |
| 16 | + |
| 17 | + * Neither the name of the Nokia Corporation and/or its |
| 18 | + subsidiary(-ies) nor the names of its contributors may be used |
| 19 | + to endorse or promote products derived from this software |
| 20 | + without specific prior written permission. |
| 21 | + |
| 22 | +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 23 | +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 24 | +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 25 | +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 26 | +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 27 | +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 28 | +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 29 | +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 30 | +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 31 | +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 32 | +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 33 | +{% endcomment %} |
| 34 | +{% comment %} |
| 35 | +Some parts Copyright (c) 2009 The IETF Trust, all rights reserved. |
| 36 | +{% endcomment %} |
| 37 | +{% load ietf_filters %}{% load ballot_icon_redesign %} |
| 38 | + |
| 39 | +{% if title2_first %}{% if title1_first %}<h2>{{ title1 }}</h2> |
| 40 | +{% endif %} |
| 41 | +<h3>{{ title2 }}</h3> |
| 42 | +{% if title2|startswith:"3.3" %} |
| 43 | + <blockquote> |
| 44 | + The IESG will use RFC 5742 responses: 1) The IESG has concluded |
| 45 | + that there is no conflict between this document and IETF work; 2) |
| 46 | + The IESG has concluded that this work is related to IETF work done |
| 47 | + in WG <X>, but this relationship does not prevent |
| 48 | + publishing; 3) The IESG has concluded that publication could |
| 49 | + potentially disrupt the IETF work done in WG <X> and |
| 50 | + recommends not publishing the document at this time; 4) The IESG |
| 51 | + has concluded that this document violates IETF procedures for |
| 52 | + <Y> and should therefore not be published without IETF |
| 53 | + review and IESG approval; or 5) The IESG has concluded that this |
| 54 | + document extends an IETF protocol in a way that requires IETF |
| 55 | + review and should therefore not be published without IETF review |
| 56 | + and IESG approval.<br/> |
| 57 | + <br /> |
| 58 | + The document shepherd must propose one of these responses in the |
| 59 | + conflict-review document, and the document shepherd may supply text |
| 60 | + for an IESG Note in that document. The Area Director ballot positions |
| 61 | + indicate consensus with the response proposed by the document shepherd |
| 62 | + and agreement that the IESG should request inclusion of the IESG Note.<br/> |
| 63 | + <br /> |
| 64 | + Other matters may be recorded in comments, and the comments will |
| 65 | + be passed on to the RFC Editor as community review of the document. |
| 66 | + </blockquote> |
| 67 | +{% endif %} |
| 68 | +{% endif %}<h4>{{ title3 }}</h4> |
| 69 | + |
| 70 | +{% for doc in section_docs %} |
| 71 | +{% if forloop.first %} |
| 72 | +{% endif %} |
| 73 | + |
| 74 | +<table class="agenda-doc"> |
| 75 | +<tbody> |
| 76 | +<tr><td> |
| 77 | +<a href="{% url doc_view name=doc.obj.name %}">{{doc.obj.name}}-{{doc.obj.rev}}</a> |
| 78 | +<a href="http://www.ietf.org/id/{{doc.obj.name}}-{{doc.obj.rev}}.txt">[txt]</a> |
| 79 | + |
| 80 | +<br/>{{ doc.obj.title|escape }} |
| 81 | +<div style="padding-left:30px;"> |
| 82 | +<a href="{% url doc_view name=doc.obj.conflictdoc.name %}">{{doc.obj.conflictdoc.name}}-{{doc.obj.conflictdoc.rev}}</a> |
| 83 | +<a href="http://www.ietf.org/id/{{doc.obj.conflictdoc.name}}-{{doc.obj.conflictdoc.rev}}.txt">[txt]</a> |
| 84 | +<br/>{{ doc.obj.conflictdoc.title|escape }} ({{doc.obj.conflictdoc.stream}}: {{ doc.obj.conflictdoc.intended_std_level }}) |
| 85 | +{% if doc.obj.conflictdoc.note %} |
| 86 | +<br/>Note: {{ doc.obj.conflictdoc.note|unescape }} |
| 87 | +{% endif %} |
| 88 | + |
| 89 | +{% if doc.obj.conflictdoc.ipr %} |
| 90 | +<br /> |
| 91 | +<h5>IPR:</h5> |
| 92 | + <ul> |
| 93 | + {% for ipr in doc.obj.conflictdoc.ipr %} |
| 94 | + {% ifequal ipr.ipr.status 1 %} |
| 95 | + <li><a href="/ipr/{{ ipr.ipr.ipr_id }}/">{{ ipr.ipr.title|escape }}</a></li> |
| 96 | + {% endifequal %} |
| 97 | + {% endfor %} |
| 98 | + </ul> |
| 99 | + |
| 100 | +{% endif %} |
| 101 | +</div> |
| 102 | + |
| 103 | +Token: {{ doc.obj.ad }} |
| 104 | +{% with doc.obj.active_defer_event as defer %} |
| 105 | +{% if defer %} |
| 106 | +<br/>Was deferred by {{defer.by}} on {{defer.time|date:"Y-m-d"}} |
| 107 | +{% endif %} |
| 108 | +{% endwith %} |
| 109 | +</td><td style="padding-left:20px; width: 50px;"> |
| 110 | +{% ballot_icon doc.obj %} |
| 111 | +</td></tr></tbody></table> |
| 112 | +{% if forloop.last %} |
| 113 | +{% endif %} |
| 114 | +{% empty %} |
| 115 | +<p>NONE</p> |
| 116 | +{% endfor %} |
0 commit comments