The branch, twofactorauth has been updated
via fc0ef55857b75d70d12faa3d65e48f40d4735e6e (commit)
from b02efa5de765be1bf6338e55fd26915552a651d0 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
pyhoca/…
[View More]wxgui/logon.py | 3 ---
1 file changed, 3 deletions(-)
The diff of changes is:
diff --git a/pyhoca/wxgui/logon.py b/pyhoca/wxgui/logon.py
index f5c4529..5504567 100644
--- a/pyhoca/wxgui/logon.py
+++ b/pyhoca/wxgui/logon.py
@@ -100,9 +100,6 @@ class PyHocaGUI_DialogBoxPassword(wx.Dialog):
headerWidth = max(self.userLbl.GetSize().GetWidth(), self.passwordLbl.GetSize().GetWidth()) + 150
sshProxyHeaderWidth = max(self.sshProxyUserLbl.GetSize().GetWidth(), self.sshProxyPasswordLbl.GetSize().GetWidth()) + 150
- print headerWidth
- print sshProxyHeaderWidth
-
self.headerLbl = wx.StaticText(self, wx.ID_ANY, _(u'Session login')+':', size=(headerWidth, -1))
self.sshProxyHeaderLbl = wx.StaticText(self, wx.ID_ANY, _(u'SSH proxy server login')+':', size=(sshProxyHeaderWidth, -1))
self.headerLbl.SetFont(wx.Font(-1, wx.DEFAULT, wx.NORMAL, wx.FONTWEIGHT_BOLD, 0, ""))
hooks/post-receive
--
pyhoca-gui.git (Python X2Go Client (wxPython GUI))
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "pyhoca-gui.git" (Python X2Go Client (wxPython GUI)).
[View Less]
The branch, twofactorauth has been updated
via cc21b02553f196a6ec456f172cfab7219d4e4424 (commit)
from 3d303c19df65cfd73ec6e21169456b0bbaddf661 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
pyhoca-…
[View More]gui | 6 +++---
pyhoca/wxgui/profilemanager.py | 16 ++++++----------
2 files changed, 9 insertions(+), 13 deletions(-)
The diff of changes is:
diff --git a/pyhoca-gui b/pyhoca-gui
index 6fd9030..1b76567 100755
--- a/pyhoca-gui
+++ b/pyhoca-gui
@@ -80,7 +80,7 @@ if _X2GOCLIENT_OS == 'Windows':
from pyhoca.wxgui import basepath
os.environ.update({'NXPROXY_BINARY': basepath.nxproxy_binary, })
-__author__ = "Dick J. Kniep, Mike Gabriel"
+__author__ = "Mike Gabriel, Dick Kniep"
__version__ = _version
# version information
@@ -88,8 +88,8 @@ VERSION=_version
VERSION_TEXT="""
%s[%s] - an X2go GUI client written in Python
----------------------------------------------------------------------
-developed by Dick Kniep <dick.kniep(a)lindix.nl>
- and Mike Gabriel <m.gabriel(a)das-netzwerkteam.de>
+developed by Mike Gabriel <m.gabriel(a)das-netzwerkteam.de>
+sponsored by Dick Kniep <dick.kniep(a)lindix.nl> (2010-2011)
VERSION: %s
diff --git a/pyhoca/wxgui/profilemanager.py b/pyhoca/wxgui/profilemanager.py
index 2909acc..e9d9cf9 100644
--- a/pyhoca/wxgui/profilemanager.py
+++ b/pyhoca/wxgui/profilemanager.py
@@ -725,15 +725,11 @@ class PyHocaGUI_ProfileManager(wx.Dialog):
self.XDMCPServer.SetValue(self.profile_config['xdmcpserver'])
- try:
- _link_speed = self.linkChoices[self.profile_config['link']]
- except KeyError:
- _link_speed = self.profileManagerDefaults['link']
-
- for e in self.linkChoices.items():
- if e[1] == _link_speed:
- self.LinkSpeed.SetValue(e[0])
- break
+ if 0 < self.profile_config['speed'] <= 5:
+ _link_speed = self.profile_config['speed']
+ else:
+ _link_speed = self.profileManagerDefaults['speed']
+ self.LinkSpeed.SetValue(_link_speed)
self.Compression.SetValue(self.profile_config['pack'])
self.ImageQuality.SetValue(self.profile_config['quality'])
@@ -901,7 +897,7 @@ class PyHocaGUI_ProfileManager(wx.Dialog):
self.profile_config['xdmcpserver'] = self.XDMCPServer.GetValue()
_link_idx = self.LinkSpeed.GetValue()
- self.profile_config['link'] = self.linkChoices[_link_idx]
+ self.profile_config['speed'] = _link_idx
self.profile_config['pack'] = self.Compression.GetValue()
self.profile_config['quality'] = self.ImageQuality.GetValue()
hooks/post-receive
--
pyhoca-gui.git (Python X2Go Client (wxPython GUI))
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "pyhoca-gui.git" (Python X2Go Client (wxPython GUI)).
[View Less]