def cycles()

in scripts/committee_info.py [0:0]


def cycles():

    cttees = cidata['committees']

    reportcycles={}
    for ctte in cttees:
        c = cttees[ctte]
        if not c['pmc']:
            continue
        reportcycles[ctte] = c['report']
        # Duplicate some entries for now so the code can find them (the existing json has the duplicates)
        if ctte == 'ws': # Special processing
            reportcycles['webservices'] = reportcycles[ctte]
        if ctte == 'httpd': # Special processing
            reportcycles['http server'] = reportcycles[ctte]
    return reportcycles