Changeset 57b8a9 in indico
- Timestamp:
- 04/30/10 17:16:05 (3 years ago)
- Branches:
- master, burotel, hello-world-walkthrough, ipv6, new-webex, v0.97-series, v0.98-series, v0.98.2, v0.98.3, v0.98b1, v0.98b2, v0.99, 051b2622c51afb171a1dedb46a0df4fbb0cbd02e, 0da0c1403bae8e51d8229f460181c71b9e6dda72
- Children:
- d3cb3f
- Parents:
- b70ffb
- Location:
- indico/MaKaC/plugins/Collaboration
- Files:
-
- 3 edited
-
CERNMCU/pages.py (modified) (2 diffs)
-
RecordingRequest/tpls/Indexing.js (modified) (1 diff)
-
WebcastRequest/tpls/Indexing.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
indico/MaKaC/plugins/Collaboration/CERNMCU/pages.py
r299cb7 r57b8a9 166 166 vars = WJSBase.getVars( self ) 167 167 168 vars["ConferenceId"] = self._conf.getId()169 170 168 roomsWithH323IP = [] 171 169 172 170 if self._conf: 171 172 vars["ConferenceId"] = self._conf.getId() 173 173 174 174 # Code to get a list of H.323 Videoconference-able rooms … … 212 212 except Exception, e: 213 213 Logger.get("CERNMCU").warning("Location: " + locationName + "Exception when retrieving the list of all rooms with a H323 IP: " + str(e)) 214 else: 215 vars["ConferenceId"] = "" 214 216 215 217 roomsWithH323IP.sort(key = lambda room: room.getLocation()+':'+room.getName()) -
indico/MaKaC/plugins/Collaboration/RecordingRequest/tpls/Indexing.js
r9033fd r57b8a9 1 1 { 2 2 "customText": function(booking, viewBy) { 3 if (booking.statusMessage == "Request rejected by responsible" && trim(booking.rejectionReason)) {3 if (booking.statusMessage == "Request rejected by responsible" && booking.rejectionReason && trim(booking.rejectionReason)) { 4 4 return "Rejection reason: " + trim(booking.rejectionReason); 5 5 } -
indico/MaKaC/plugins/Collaboration/WebcastRequest/tpls/Indexing.js
rf19d81 r57b8a9 1 1 { 2 2 "customText": function(booking, viewBy) { 3 if (booking.statusMessage == "Request rejected by responsible" && trim(booking.rejectionReason)) {3 if (booking.statusMessage == "Request rejected by responsible" && booking.rejectionReason && trim(booking.rejectionReason)) { 4 4 return "Rejection reason: " + trim(booking.rejectionReason); 5 5 }
Note: See TracChangeset
for help on using the changeset viewer.
