|
32 | 32 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
33 | 33 | # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
34 | 34 |
|
35 | | -# Modified by Russ Housley on 6 July 2012 to add agenda_json and _agenda_json. |
36 | | - |
37 | 35 | import codecs, re, os, glob |
38 | 36 | import datetime |
39 | 37 | import tarfile |
@@ -261,7 +259,7 @@ def _agenda_json(request, date=None): |
261 | 259 | data['sections']['1.1'] = {'title':"Roll Call"} |
262 | 260 | data['sections']['1.2'] = {'title':"Bash the Agenda"} |
263 | 261 | 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"} |
265 | 263 | data['sections']['2'] = {'title':"Protocol Actions"} |
266 | 264 | data['sections']['2.1'] = {'title':"WG Submissions"} |
267 | 265 | data['sections']['2.1.1'] = {'title':"New Items", 'docs':[]} |
@@ -307,14 +305,8 @@ def _agenda_json(request, date=None): |
307 | 305 | for obj in docs[section]: |
308 | 306 | d = obj['obj'] |
309 | 307 | docinfo = {'docname':d.canonical_name(), |
310 | | - 'rev':d.rev, |
311 | 308 | 'title':d.title, |
312 | | - 'intended-std-level':str(d.intended_std_level), |
313 | 309 | 'ad':d.ad.name} |
314 | | - if d.rfc_number(): |
315 | | - docinfo['rfc-number'] = d.rfc_number() |
316 | | - else: |
317 | | - docinfo['rev'] = d.rev |
318 | 310 | if d.note: |
319 | 311 | docinfo['note'] = d.note |
320 | 312 | defer = d.active_defer_event() |
|
0 commit comments