Last change
on this file since 17948 was
1596,
checked in by joachim, 18 years ago
|
merged changes from trunk to joachim-event-branch
|
File size:
694 bytes
|
Rev | Line | |
---|
[1566] | 1 | ## Script (Python) "getFormattedBed" |
---|
| 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
| 7 | ##parameters=bed=None,mode=None,datastructure=None |
---|
| 8 | ##title= |
---|
| 9 | # $Id: getFormattedBed.py 1453 2007-02-20 22:24:30Z henrik $ |
---|
| 10 | """ |
---|
| 11 | format the bed for readability |
---|
| 12 | """ |
---|
| 13 | |
---|
| 14 | if datastructure is not None: |
---|
| 15 | bed = datastructure.get('bed') |
---|
| 16 | if not bed: |
---|
| 17 | return '' |
---|
| 18 | if len(bed.split('_')) != 4: |
---|
| 19 | return bed |
---|
| 20 | hall,block,room,letter = bed.split('_') |
---|
| 21 | info = context.waeup_tool.getAccommodationInfo(bed) |
---|
| 22 | if info: |
---|
| 23 | hall_title = info['hall_title'] |
---|
| 24 | else: |
---|
| 25 | hall_title = "" |
---|
| 26 | return " %s / Block %s / Room %s / Bed %s" % (hall_title,block,room,letter) |
---|
| 27 | |
---|
Note: See
TracBrowser for help on using the repository browser.