source: WAeUP_SRP/branches/joachim-event-branch/skins/waeup_default/getSessionString.py @ 1545

Last change on this file since 1545 was 1490, checked in by joachim, 18 years ago

fix

  • Property svn:keywords set to Id
File size: 375 bytes
Line 
1## Script (Python) "getSessionId"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=
8##title=
9##
10# $Id: getSessionString.py 1490 2007-02-25 00:32:45Z joachim $
11"""
12return the Session string
13"""
14import DateTime
15now = DateTime.DateTime()
16if now.month() > 7:
17    return "%s/%s" % (now.year(),now.year()+1)
18return "%s/%s" % (now.year()-1,now.year())
Note: See TracBrowser for help on using the repository browser.