X-Git-Url: https://git.ucc.asn.au/?p=frenchie%2Ficalparse.git;a=blobdiff_plain;f=icalparse.py;h=cc41353903e8f4af09f9eb654509162d738dad31;hp=1ed6076da0d36257c62abf5a12294b0cec95fbc6;hb=85843643c1e11a84cf8583ab58b07af8eba4057e;hpb=48d87039714129b0798a4efba2938d15190af7d8 diff --git a/icalparse.py b/icalparse.py index 1ed6076..cc41353 100755 --- a/icalparse.py +++ b/icalparse.py @@ -162,6 +162,38 @@ def generateRules(): return rules +def applyRules(ical, rules=[], verbose=False): + 'Runs a series of rules on the lines in ical and mangles its output' + + for rule in rules: + output = [] + if rule.__doc__ and verbose: + print(rule.__doc__) + for line in ical: + try: + out = rule(line[0],line[1]) + except TypeError, e: + output.append(line) + print(e) + continue + + # Drop lines that are boolean False + if not out and not out == None: continue + + # If the rule did something and is a tuple or a list we'll accept it + # otherwise, pay no attention to the man behind the curtain + try: + if tuple(out) == out or list(out) == out and len(out) == 2: + output.append(tuple(out)) + else: + output.append(line) + except TypeError, e: + output.append(line) + + ical = output + + return ical + if __name__ == '__main__': from optparse import OptionParser # If the user passed us a 'stdin' argument, we'll go with that, @@ -185,6 +217,5 @@ if __name__ == '__main__': content = getContent(url, options.stdin) cal = lineJoiner(content) - ical = splitFields(cal) - rules = generateRules() - print rules + ical = applyRules(splitFields(cal), generateRules()) + print ical