return (content, encoding)
-def generateRules():
+def generateRules(ruleConfig):
'''Attempts to load a series of rules into a list'''
try:
import parserrules
except ImportError:
return []
+ for conf in ruleConfig:
+ parserrules.ruleConfig[conf] = ruleConfig[conf]
+
rules = [getattr(parserrules, rule) for rule in dir(parserrules) if callable(getattr(parserrules, rule))]
return rules
out.close()
if __name__ == '__main__':
+ # Only load options parsing if this script was called directly, skip it
+ # if it's being called as a module.
from optparse import OptionParser
- # If the user passed us a 'stdin' argument, we'll go with that,
- # otherwise we'll try for a url opener
parser = OptionParser('usage: %prog [options] url')
parser.add_option('-s', '--stdin', action='store_true', dest='stdin',
parser.add_option('-m','--encoding', dest='encoding', default='',
help='Specify a different character encoding'
'(ignored if the remote server also specifies one)')
+ parser.add_option('-t','--timezone', dest='timezone', default='Australia/Perth',
+ help='Specify a timezone to use if the remote calendar doesn\'t set it properly')
(options, args) = parser.parse_args()
+ # Ensure the rules process using the desired timezone
+ ruleConfig = {}
+ ruleConfig["defaultTZ"] = options.timezone
+
+ # If the user passed us a 'stdin' argument, we'll go with that,
+ # otherwise we'll try for a url opener
if not args and not options.stdin:
parser.print_usage()
sys.exit(0)
encoding = encoding or options.encoding or 'utf-8'
cal = vobject.readOne(unicode(content, encoding))
- cal = applyRules(cal, generateRules(), options.verbose)
+ cal = applyRules(cal, generateRules(ruleConfig), options.verbose)
writeOutput(cal, options.outfile)