Changeset dcf2ba in indico
- Timestamp:
- 08/21/09 17:32:59 (4 years ago)
- Branches:
- master, burotel, hello-world-walkthrough, ipv6, new-webex, prov-dual-interface, v0.97-series, v0.98-series, v0.98.2, v0.98.3, v0.98b1, v0.98b2, v0.99, b8c30da8ebdbdcbd675a873997cc3e95f567de49, 10eafd9ae230cbad5d99d5aaf22c24724fb6c98f
- Children:
- a33efc
- Parents:
- 9f94a3f
- Location:
- indico
- Files:
-
- 2 edited
-
MaKaC/schedule.py (modified) (1 diff)
-
htdocs/js/indico/Timetable/Management.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
indico/MaKaC/schedule.py
rbe2ebd rdcf2ba 1117 1117 @Retrieves (['MaKaC.schedule.BreakTimeSchEntry'], 'location', lambda x: Conversion.locationName(x.getLocation())) 1118 1118 @Retrieves (['MaKaC.schedule.BreakTimeSchEntry'], 'address', lambda x: Conversion.locationAddress(x.getLocation())) 1119 @Retrieves (['MaKaC.schedule.BreakTimeSchEntry'], 'inheritLoc', lambda x: x.getOwnLocation() is None) 1120 @Retrieves (['MaKaC.schedule.BreakTimeSchEntry'], 'inheritRoom', lambda x: x.getOwnRoom() is None) 1119 1121 1120 1122 def __init__(self): -
indico/htdocs/js/indico/Timetable/Management.js
r9f94a3f rdcf2ba 221 221 var href = Indico.Urls.Reschedule; 222 222 var rescheduleLink = Html.a({style: {margin: '0 15px'}}, Html.span({style: {cursor: 'default', color: '#888'}}, 'Reschedule')); 223 224 var underConstr = function(event) { 225 IndicoUI.Widgets.Generic.tooltip(this, event,"This option will be available soon"); 226 }; 227 rescheduleLink.dom.onmouseover = underConstr; 223 228 224 229 this.menu = Html.div({style: {cssFloat: 'right', color: '#777'}}, addMenu, ' | ', rescheduleLink); … … 371 376 372 377 args.set('startDate', IndicoUtil.formatDateTime(IndicoUtil.parseJsonDate(eventData.startDate))); 373 args.set('roomInfo',$O({"location": eventData.location, 374 "room": eventData.room })); 378 args.set('roomInfo',$O({"location": eventData.inheritLoc?null:eventData.location, 379 "room": eventData.inheritRoom?null:eventData.room, 380 "address": eventData.inheritLoc?'':eventData.address})); 375 381 376 382 var editDialog = new AddBreakDialog(this, args, $O(params.roomInfo), true);
Note: See TracChangeset
for help on using the changeset viewer.
