commit
87d647ac4d
@ -58,7 +58,6 @@ angular.module('OpenSlidesApp.core', [
|
||||
},
|
||||
reconnect: function () {
|
||||
socket.close();
|
||||
DS.clear();
|
||||
Autoupdate.connect();
|
||||
}
|
||||
};
|
||||
|
@ -9,7 +9,8 @@ angular.module('OpenSlidesApp.users', [])
|
||||
'Group',
|
||||
'loadGlobalData',
|
||||
'autoupdate',
|
||||
function (User, Group, loadGlobalData, autoupdate) {
|
||||
'DS',
|
||||
function (User, Group, loadGlobalData, autoupdate, DS) {
|
||||
var operatorChangeCallbacks = [autoupdate.reconnect];
|
||||
var operator = {
|
||||
user: null,
|
||||
@ -35,6 +36,7 @@ angular.module('OpenSlidesApp.users', [])
|
||||
} else {
|
||||
operator.user = null;
|
||||
operator.perms = [];
|
||||
DS.clear();
|
||||
_.forEach(operatorChangeCallbacks, function (callback) {
|
||||
callback();
|
||||
});
|
||||
|
@ -321,7 +321,9 @@ angular.module('OpenSlidesApp.users.site', ['OpenSlidesApp.users'])
|
||||
label: gettextCatalog.getString('Groups'),
|
||||
optionsAttr: 'bs-options',
|
||||
options: Group.getAll(),
|
||||
ngOptions: 'option[to.valueProp] as option in to.options | filter: $select.search',
|
||||
ngOptions: 'option[to.valueProp] as option in to.options | ' +
|
||||
'filter: {id: "!1"} | filter: {id: "!2"} | ' +
|
||||
'filter: $select.search',
|
||||
valueProp: 'id',
|
||||
labelProp: 'name',
|
||||
placeholder: gettextCatalog.getString('Select or search a group ...')
|
||||
|
@ -35,7 +35,7 @@
|
||||
{{ (groups | filter: {id: group})[0].name }}
|
||||
</div>
|
||||
<label translate>About me</label>
|
||||
<div class="white-space-pre-line">{{ user.about_me }}</div>
|
||||
<div class="white-space-pre-line" ng-bind-html="user.about_me"></div>
|
||||
</fieldset>
|
||||
|
||||
<fieldset os-perms="users.can_manage">
|
||||
|
@ -21,6 +21,9 @@ from tornado.wsgi import WSGIContainer
|
||||
|
||||
from .rest_api import get_collection_and_id_from_url
|
||||
|
||||
RUNNING_HOST = None
|
||||
RUNNING_PORT = None
|
||||
|
||||
|
||||
class DjangoStaticFileHandler(StaticFileHandler):
|
||||
"""
|
||||
@ -94,8 +97,9 @@ class OpenSlidesSockJSConnection(SockJSConnection):
|
||||
object_url.
|
||||
"""
|
||||
# Join network location with object URL.
|
||||
# TODO: Use host and port as given in the start script
|
||||
wsgi_network_location = settings.OPENSLIDES_WSGI_NETWORK_LOCATION or 'http://localhost:8000'
|
||||
wsgi_network_location = (
|
||||
settings.OPENSLIDES_WSGI_NETWORK_LOCATION or
|
||||
'http://{}:{}'.format(RUNNING_HOST, RUNNING_PORT))
|
||||
url = ''.join((wsgi_network_location, object_url))
|
||||
|
||||
# Send out internal HTTP request to get data from the REST api.
|
||||
@ -127,6 +131,11 @@ def run_tornado(addr, port, *args, **kwargs):
|
||||
|
||||
It runs in one thread.
|
||||
"""
|
||||
# Save the port and the addr in a global var
|
||||
global RUNNING_HOST, RUNNING_PORT
|
||||
RUNNING_HOST = addr
|
||||
RUNNING_PORT = port
|
||||
|
||||
# Don't try to read the command line args from openslides
|
||||
parse_command_line(args=[])
|
||||
|
||||
@ -147,6 +156,10 @@ def run_tornado(addr, port, *args, **kwargs):
|
||||
server.listen(port=port, address=addr)
|
||||
IOLoop.instance().start()
|
||||
|
||||
# Reset the global vars
|
||||
RUNNING_HOST = None
|
||||
RUNNING_PORT = None
|
||||
|
||||
|
||||
def inform_changed_data(*args):
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user