port = config.get('port', config.get('@port', ''))
device_uri = config.get('device_uri', config.get('videodevice', remote.make_camera_uri(config.get('@remote_camera_id'))))
- return proto + '://' + host + (str(port) + ':' if port else '') + device_uri
+ return proto + '://' + host + (':' + str(port) if port else '') + device_uri
var keys = Object.keys(groups);
keys.sort();
+ keys.reverse();
/* add a temporary div to compute 3em in px */
var tempDiv = $('<div style="width: 3em; height: 3em;"></div>');