* Added a "preinit" to xscreensaver, to give some more oportunities on

linux to initialize this correctly.
* Fixed typos on dashboard
* Fixed not saving correctly textarea fields of configuration
This commit is contained in:
Adolfo Gómez García 2015-03-20 15:15:35 +01:00
parent 7648e9c655
commit cc4619220a
4 changed files with 6 additions and 3 deletions

View File

@ -292,6 +292,9 @@ if __name__ == '__main__':
logger.error('UDS Service is not running. Tool stopped')
sys.exit(1)
# Sets a default idle duration, but will not be used unless idle is notified from server
operations.initIdleDuration(3600 * 10)
trayIcon.show()
# Catch kill and logout user :)

View File

@ -45,7 +45,7 @@
</div>
{{ else }}
{{# ifequals value.type 1 }}
<textarea class="form-control" data-section="{{ cfg_section }}" data-key="{{ cfg_key }}" rows="3">{{ value.value }}</textarea>
<textarea class="form-control config-ctrl" data-section="{{ cfg_section }}" data-key="{{ cfg_key }}" rows="3">{{ value.value }}</textarea>
{{ else }}
{{# ifequals value.type 3 }}
<input type="checkbox" data-on-text="{% endverbatim %}{% trans 'Yes' %}{% verbatim %}" data-off-text="{% endverbatim %}{% trans 'No' %}{% verbatim %}" class="config-ctrl" {{# ifequals value.value 1 }} checked{{/ ifequals }} data-section="{{ cfg_section }}" data-key="{{ cfg_key }}">

View File

@ -1,7 +1,7 @@
{% load i18n %}
<div class="row">
<div class="col-xs-12">
<h1>{% trans 'Connectivity' %} <small>{% trans 'overview' %}</small></h1>
<h1>{% trans 'Connectivity' %}</h1>
<ol class="breadcrumb">
<li><a class="lnk-dashboard" href="#"><i class="fa fa-dashboard"></i> Dashboard</a></li>
<li>{% trans 'Connectivity' %}</li>

View File

@ -1,7 +1,7 @@
{% load i18n %}
<div class="row">
<div class="col-xs-12">
<h1>Os Managers <small>{% trans 'overview' %}</small></h1>
<h1>Os Managers</h1>
<ol class="breadcrumb">
<li><a class="lnk-dashboard" href="#"><i class="fa fa-dashboard"></i> Dashboard</a></li>
<li>OS Managers</li>