[X2Go-Commits] pyhoca-gui.git - build-59a18b6e3b5d3f1dd8f07f26433d37fe5984a57d (branch) updated: fc06569a08a14edd588667ed855945773fd57a22
X2Go dev team
git-admin at x2go.org
Tue Aug 27 13:21:05 CEST 2013
The branch, build-59a18b6e3b5d3f1dd8f07f26433d37fe5984a57d has been updated
via fc06569a08a14edd588667ed855945773fd57a22 (commit)
from e6a6b4910c26ddb60479f32e4ed0789312e970e5 (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:
debian/changelog | 8 ++++++++
debian/control | 2 +-
pyhoca/wxgui/__init__.py | 2 +-
pyhoca/wxgui/frontend.py | 5 +++--
4 files changed, 13 insertions(+), 4 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 58a55a8..6c3cb3c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+pyhoca-gui (0.0.27-0~nwt1) lucid maverick testing unstable; urgency=low
+
+ * diverting stdout and stderr to %APPDATA%/temp/pyhoca-gui_*.log (on
+ Windows)
+ * improved setup.py (including greenlet for py2exe)
+
+ -- Mike Gabriel <mike.gabriel at das-netzwerkteam.de> Thu, 20 Jan 2011 23:00:00 +0100
+
pyhoca-gui (0.0.26-0~nwt2) lucid maverick testing unstable; urgency=low
* depending on python-x2go (>= 0.0.35)
diff --git a/debian/control b/debian/control
index 7235203..70af0fb 100644
--- a/debian/control
+++ b/debian/control
@@ -9,7 +9,7 @@ XS-Python-Version: >= 2.6
Package: pyhoca-gui
Architecture: all
-Depends: ${misc:Depends}, python, python-x2go (>=0.0.35-0~nwt1),
+Depends: ${misc:Depends}, python, python-x2go (>=0.0.36-0~nwt1),
python-argparse, python-notify, python-setproctitle (>=1.0.1-1),
wx-common(>=2.8.10.0), python-wxtools (>=2.8.10.0)
Description: An graphical X2go client written in (wx)Python
diff --git a/pyhoca/wxgui/__init__.py b/pyhoca/wxgui/__init__.py
index bb35c78..14e27f4 100644
--- a/pyhoca/wxgui/__init__.py
+++ b/pyhoca/wxgui/__init__.py
@@ -18,6 +18,6 @@
# Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
-__VERSION__ = '0.0.26'
+__VERSION__ = '0.0.27'
from frontend import *
diff --git a/pyhoca/wxgui/frontend.py b/pyhoca/wxgui/frontend.py
index 86460ef..92aef88 100644
--- a/pyhoca/wxgui/frontend.py
+++ b/pyhoca/wxgui/frontend.py
@@ -528,8 +528,9 @@ class PyHocaGUI(wx.App, x2go.X2goClient):
def HOOK_no_such_command(self, cmd, profile_name='UNKNOWN', session_name='UNKNOWN'):
self.notifier.send(_(u'%s - session failure') % profile_name, _('the command ,,%s'' is not available for X2go server (profile: %s, session: %s)') % (cmd, profile_name, session_name), icon='session_error', timeout=10000)
def HOOK_rforward_request_denied(self, profile_name='UNKNOWN', session_name='UNKNOWN', server_port=0):
- self.notifier.send(_(u'Reverse TCP port forwarding request for session %s to server port %s has been denied by the X2go server. This is a common issue with SSH, it might help to restart the X2go server\'s SSH daemon.') % (session_name, server_port), icon='session_warning', timeout=10000)
-
+ self.notifier.send(_(u'%s - session warning') % profile_name, _(u'Reverse TCP port forwarding request for session %s to server port %s has been denied by the X2go server. This is a common issue with SSH, it might help to restart the X2go server\'s SSH daemon.') % (session_name, server_port), icon='session_warning', timeout=10000)
+ def HOOK_forwarding_tunnel_setup_failed(self, profile_name='UNKNOWN', session_name='UNKNOWN', chain_host='UNKNOWN', chain_port=0):
+ self.notifier.send(_(u'%s - session failure') % profile_name, _(u'Forwarding tunnel request to [%s]:%s for session %s was denied by remote X2go/SSH server. Session startup failed.') % (chain_host, chain_port, session_name), icon='session_error', timeout=10000)
def HOOK_pulseaudio_server_startup_failed(self):
self.notifier.send(_(u'%s - audio error') % self.appname, _(u'The X2go PulseAudio system could not be started.'), icon='audio_error', timeout=10000)
def HOOK_pulseaudio_server_died(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)).
More information about the x2go-commits
mailing list