Skip to content

Commit 505e715

Browse files
committed
Merged in a patch from housley@vigilsec.com to handle different documents better in the agenda JSON output.
- Legacy-Id: 5132
1 parent 97a7ab3 commit 505e715

1 file changed

Lines changed: 1 addition & 9 deletions

File tree

ietf/iesg/views.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3333
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3434

35-
# Modified by Russ Housley on 6 July 2012 to add agenda_json and _agenda_json.
36-
3735
import codecs, re, os, glob
3836
import datetime
3937
import tarfile
@@ -261,7 +259,7 @@ def _agenda_json(request, date=None):
261259
data['sections']['1.1'] = {'title':"Roll Call"}
262260
data['sections']['1.2'] = {'title':"Bash the Agenda"}
263261
data['sections']['1.3'] = {'title':"Approval of the Minutes of Past Telechats"}
264-
data['sections']['1.4'] = {'title':"head List of Remaining Action Items from Last Telechat"}
262+
data['sections']['1.4'] = {'title':"List of Remaining Action Items from Last Telechat"}
265263
data['sections']['2'] = {'title':"Protocol Actions"}
266264
data['sections']['2.1'] = {'title':"WG Submissions"}
267265
data['sections']['2.1.1'] = {'title':"New Items", 'docs':[]}
@@ -307,14 +305,8 @@ def _agenda_json(request, date=None):
307305
for obj in docs[section]:
308306
d = obj['obj']
309307
docinfo = {'docname':d.canonical_name(),
310-
'rev':d.rev,
311308
'title':d.title,
312-
'intended-std-level':str(d.intended_std_level),
313309
'ad':d.ad.name}
314-
if d.rfc_number():
315-
docinfo['rfc-number'] = d.rfc_number()
316-
else:
317-
docinfo['rev'] = d.rev
318310
if d.note:
319311
docinfo['note'] = d.note
320312
defer = d.active_defer_event()

0 commit comments

Comments
 (0)