Changeset 79b0b7 in indico
- Timestamp:
- 09/29/11 17:27:45 (20 months ago)
- Branches:
- master, hello-world-walkthrough, ipv6, v0.98-series, v0.98.2, v0.98.3, v0.98b2, v0.99, 051b2622c51afb171a1dedb46a0df4fbb0cbd02e, 0da0c1403bae8e51d8229f460181c71b9e6dda72
- Children:
- 663efb
- Parents:
- ecda80
- Location:
- indico
- Files:
-
- 2 edited
-
MaKaC/plugins/Collaboration/EVO/collaboration.py (modified) (1 diff)
-
htdocs/js/indico/Collaboration/Collaboration.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
indico/MaKaC/plugins/Collaboration/EVO/collaboration.py
recda80 r79b0b7 271 271 self._permissionToStart = True 272 272 273 def _canBeDeleted(self):273 def canBeDeleted(self): 274 274 return not (self.isHappeningNow() or self.hasHappened()) 275 275 -
indico/htdocs/js/indico/Collaboration/Collaboration.js
r800c21 r79b0b7 178 178 179 179 var formatDateStringCS = function(dateString) { 180 return (dateString.substring(0,10) + ' at ' + dateString.substring(11, 16)); 180 var dt = dateString.split(' ') 181 return (dt[0] + ' at ' + dt[1]); 181 182 }; 182 183
Note: See TracChangeset
for help on using the changeset viewer.
