## Script (Python) "getSessionId" ##bind container=container ##bind context=context ##bind namespace= ##bind script=script ##bind subpath=traverse_subpath ##parameters= ##title= ## # $Id: getSessionId.py 1764 2007-05-10 04:41:04Z henrik $ """ return the Session Id """ # must be changed in 2007/2008; should return only the last two digits import DateTime now = DateTime.DateTime() if now.month() > 7: s = "%s" % now.year() else: s = "%s" % (now.year() - 1) return s