def cycles()

in scripts/committee_info.py [0:0]


def cycles():

    committees = cidata['committees']

    cycles={}
    for ctte in committees:
        c = committees[ctte]
        if not c['pmc']:
            continue
        cycles[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
            cycles['webservices'] = cycles[ctte]
        if ctte == 'httpd': # Special processing
            cycles['http server'] = cycles[ctte]
    return cycles