The branch, build-59a18b6e3b5d3f1dd8f07f26433d37fe5984a57d has been updated
via 7f861593a292d2eda0806eb75a6c6e92cb9365de (commit)
from 408703a76374e30603280e0b6f1bda6aa6806c27 (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 -----------------------------------------------------------------
-----------------------------------------------------------------------…
[View More]
Summary of changes:
pyhoca/wxgui/notify.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
The diff of changes is:
diff --git a/pyhoca/wxgui/notify.py b/pyhoca/wxgui/notify.py
index be92b3c..49d041c 100644
--- a/pyhoca/wxgui/notify.py
+++ b/pyhoca/wxgui/notify.py
@@ -102,7 +102,7 @@ class win32gui_NotifierPopup(object):
except KeyError:
pass
- self.taskbar.ShowBalloon(title, text, msec=timeout)
+ #self.taskbar.ShowBalloon(title, text, msec=timeout)
self._pyhoca_logger(text, loglevel=log.loglevel_NOTICE)
def Close(self):
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, build-59a18b6e3b5d3f1dd8f07f26433d37fe5984a57d has been updated
via c091b5435ef4646248a29e10041ad74bd74545b8 (commit)
from 7f861593a292d2eda0806eb75a6c6e92cb9365de (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 -----------------------------------------------------------------
-----------------------------------------------------------------------…
[View More]
Summary of changes:
pyhoca/wxgui/menus_taskbar.py | 7 ++++---
pyhoca/wxgui/notify.py | 2 +-
2 files changed, 5 insertions(+), 4 deletions(-)
The diff of changes is:
diff --git a/pyhoca/wxgui/menus_taskbar.py b/pyhoca/wxgui/menus_taskbar.py
index 93a7ce1..b0892aa 100644
--- a/pyhoca/wxgui/menus_taskbar.py
+++ b/pyhoca/wxgui/menus_taskbar.py
@@ -177,9 +177,10 @@ class PyHocaGUI_Menu_TaskbarSessionProfile(wx.Menu):
self.Append(id=ID_DISCONNECT, text="&Disconnect from Server")
self._PyHocaGUI.current_profile_name = profile_name
- self.Bind(wx.EVT_MENU, self._PyHocaGUI.OnSessionStart, id=ID_SESSIONSTART)
- self.Bind(wx.EVT_MENU, self._PyHocaGUI.OnCleanSessions, id=ID_CLEANSESSIONS)
- self.Bind(wx.EVT_MENU, self._PyHocaGUI.OnSessionDisconnect, id=ID_DISCONNECT)
+ #self.Bind(wx.EVT_MENU, self._PyHocaGUI.OnSessionStart, id=ID_SESSIONSTART)
+ self.Bind(wx.wxEVT_COMMAND_MENU_SELECTED, self._PyHocaGUI.OnSessionStart, id=ID_SESSIONSTART)
+ self.Bind(wx.wxEVT_COMMAND_MENU_SELECTED, self._PyHocaGUI.OnCleanSessions, id=ID_CLEANSESSIONS)
+ self.Bind(wx.wxEVT_COMMAND_MENU_SELECTED, self._PyHocaGUI.OnSessionDisconnect, id=ID_DISCONNECT)
class PyHocaGUI_Menu_TaskbarProfileNames(wx.Menu):
diff --git a/pyhoca/wxgui/notify.py b/pyhoca/wxgui/notify.py
index 49d041c..be92b3c 100644
--- a/pyhoca/wxgui/notify.py
+++ b/pyhoca/wxgui/notify.py
@@ -102,7 +102,7 @@ class win32gui_NotifierPopup(object):
except KeyError:
pass
- #self.taskbar.ShowBalloon(title, text, msec=timeout)
+ self.taskbar.ShowBalloon(title, text, msec=timeout)
self._pyhoca_logger(text, loglevel=log.loglevel_NOTICE)
def Close(self):
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, build-59a18b6e3b5d3f1dd8f07f26433d37fe5984a57d has been updated
via 6d971d91b8fa94badc67586966bdf22fa5895294 (commit)
from 25876c55a9bfe58734164aca8eb3527eda3bebd6 (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 -----------------------------------------------------------------
-----------------------------------------------------------------------…
[View More]
Summary of changes:
pyhoca/wxgui/logon.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
The diff of changes is:
diff --git a/pyhoca/wxgui/logon.py b/pyhoca/wxgui/logon.py
index 17007eb..340b633 100644
--- a/pyhoca/wxgui/logon.py
+++ b/pyhoca/wxgui/logon.py
@@ -96,7 +96,6 @@ class PyHocaGUI_DialogBoxPassword(wx.Dialog):
"""
def __init__(self, _PyHocaGUI, profile_name, caller=None):
- wx.Dialog.__init__(self, None, -1, 'Login', size=(210,150))
self._PyHocaGUI = _PyHocaGUI
self._pyhoca_logger = self._PyHocaGUI._pyhoca_logger
@@ -105,6 +104,7 @@ class PyHocaGUI_DialogBoxPassword(wx.Dialog):
self.current_profile_name = profile_name
self.current_profile_config = self._PyHocaGUI.session_profiles.get_profile_config(profile_name)
+ wx.Dialog.__init__(self, None, -1, profile_name, size=(210,150))
# widgets
userLbl = wx.StaticText(self, wx.ID_ANY, 'Username:', size=(80, -1))
self.userTxt = wx.TextCtrl(self, wx.ID_ANY, '')
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, build-59a18b6e3b5d3f1dd8f07f26433d37fe5984a57d has been updated
via fe5057f7428bdf512dd9cf658a72b2152507658a (commit)
from 41b610b73df72568b87801dd54f6f0093f85ad67 (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 -----------------------------------------------------------------
-----------------------------------------------------------------------…
[View More]
Summary of changes:
pyhoca/wxgui/frontend.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
The diff of changes is:
diff --git a/pyhoca/wxgui/frontend.py b/pyhoca/wxgui/frontend.py
index f5efcbe..e2838d8 100644
--- a/pyhoca/wxgui/frontend.py
+++ b/pyhoca/wxgui/frontend.py
@@ -64,7 +64,7 @@ except ImportError: # if it's not there locally, try the wxPython lib.
except ImportError:
knobctrlavailable = False
-import wx.lib.sized_controls as sc
+wx.SetDefaultPyEncoding("utf-8")
class PyHocaGUI(wx.App, x2go.X2goClient):
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, build-59a18b6e3b5d3f1dd8f07f26433d37fe5984a57d has been updated
via 41b610b73df72568b87801dd54f6f0093f85ad67 (commit)
from 6d971d91b8fa94badc67586966bdf22fa5895294 (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 -----------------------------------------------------------------
-----------------------------------------------------------------------…
[View More]
Summary of changes:
pyhoca-gui | 1 -
1 file changed, 1 deletion(-)
The diff of changes is:
diff --git a/pyhoca-gui b/pyhoca-gui
index 039a5b9..2b1508f 100755
--- a/pyhoca-gui
+++ b/pyhoca-gui
@@ -106,7 +106,6 @@ def parseargs():
logger = x2go.X2goLogger(tag='PyHoca-GUI')
liblogger = x2go.X2goLogger()
- print logger.loglevel
if a.debug:
logger.set_loglevel_debug()
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, build-59a18b6e3b5d3f1dd8f07f26433d37fe5984a57d has been updated
via 502800b9d1f45fcc0af5b8f7ae82fe869f325f98 (commit)
from 8281af675b4c5fbbb90898630c8d8e3a7b34735a (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 -----------------------------------------------------------------
-----------------------------------------------------------------------…
[View More]
Summary of changes:
pyhoca/wxgui/logon.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
The diff of changes is:
diff --git a/pyhoca/wxgui/logon.py b/pyhoca/wxgui/logon.py
index 8ba4df0..c01149c 100644
--- a/pyhoca/wxgui/logon.py
+++ b/pyhoca/wxgui/logon.py
@@ -126,7 +126,7 @@ class PyHocaGUI_DialogBoxPassword(sc.SizedFrame):
if x2go.X2GOCLIENT_OS == 'Linux':
self.Move((maxX-225,35))
elif x2go.X2GOCLIENT_OS == 'Windows':
- self.Move((maxX-225,maxY-35))
+ self.Move((maxX-225,maxY-135))
self.Show()
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, build-59a18b6e3b5d3f1dd8f07f26433d37fe5984a57d has been updated
via 8281af675b4c5fbbb90898630c8d8e3a7b34735a (commit)
from 02e727e80432084cda021b8099ec5db13d29051f (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 -----------------------------------------------------------------
-----------------------------------------------------------------------…
[View More]
Summary of changes:
pyhoca/wxgui/{ => _for_later_use_}/chooser.py | 0
.../wxgui/{ => _for_later_use_}/menus_chooser.py | 0
pyhoca/wxgui/{ => _for_later_use_}/messages.py | 0
pyhoca/wxgui/frontend.py | 6 +++---
4 files changed, 3 insertions(+), 3 deletions(-)
rename pyhoca/wxgui/{ => _for_later_use_}/chooser.py (100%)
rename pyhoca/wxgui/{ => _for_later_use_}/menus_chooser.py (100%)
rename pyhoca/wxgui/{ => _for_later_use_}/messages.py (100%)
The diff of changes is:
diff --git a/pyhoca/wxgui/chooser.py b/pyhoca/wxgui/_for_later_use_/chooser.py
similarity index 100%
rename from pyhoca/wxgui/chooser.py
rename to pyhoca/wxgui/_for_later_use_/chooser.py
diff --git a/pyhoca/wxgui/menus_chooser.py b/pyhoca/wxgui/_for_later_use_/menus_chooser.py
similarity index 100%
rename from pyhoca/wxgui/menus_chooser.py
rename to pyhoca/wxgui/_for_later_use_/menus_chooser.py
diff --git a/pyhoca/wxgui/messages.py b/pyhoca/wxgui/_for_later_use_/messages.py
similarity index 100%
rename from pyhoca/wxgui/messages.py
rename to pyhoca/wxgui/_for_later_use_/messages.py
diff --git a/pyhoca/wxgui/frontend.py b/pyhoca/wxgui/frontend.py
index b8bcd67..5951606 100644
--- a/pyhoca/wxgui/frontend.py
+++ b/pyhoca/wxgui/frontend.py
@@ -46,13 +46,13 @@ import threading
# PyHoca-GUI modules
import logon
import taskbar
-import chooser
-import menus_chooser
+#import chooser
+#import menus_chooser
import menus_taskbar
import profilemanager
import images
import notify
-import messages
+#import messages
try:
from agw import knobctrl as KC
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, build-59a18b6e3b5d3f1dd8f07f26433d37fe5984a57d has been updated
via 02e727e80432084cda021b8099ec5db13d29051f (commit)
from 7ecb6c5befc25ed1a1d22046ea63f37e89f5032f (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 -----------------------------------------------------------------
-----------------------------------------------------------------------…
[View More]
Summary of changes:
pyhoca/wxgui/notify.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
The diff of changes is:
diff --git a/pyhoca/wxgui/notify.py b/pyhoca/wxgui/notify.py
index eb60a3d..d1a1d0e 100644
--- a/pyhoca/wxgui/notify.py
+++ b/pyhoca/wxgui/notify.py
@@ -77,7 +77,7 @@ class win32gui_NotifierPopup(object):
def __init__(self, _PyHocaGUI):
self._PyHocaGUI = _PyHocaGUI
- self.taskbar = self._PyhocaGUI.taskbar
+ self.taskbar = self._PyHocaGUI.taskbar
def prepare(self, context, title=None, text=None):
if title is not None:
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]