The branch, twofactorauth has been updated
via 92383822d606f12751cc9a748144578481244ebc (commit)
from ddb7265f91230b032f9fec64ddb6a8b8854cd14c (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/frontend.py | 1 -
pyhoca/wxgui/profilemanager.py | 2 +-
2 files changed, 1 insertion(+), 2 deletions(-)
The diff of changes is:
diff --git a/pyhoca/wxgui/frontend.py b/pyhoca/wxgui/frontend.py
index 8819bb5..db712d9 100644
--- a/pyhoca/wxgui/frontend.py
+++ b/pyhoca/wxgui/frontend.py
@@ -487,7 +487,6 @@ class PyHocaGUI(wx.App, x2go.X2goClient):
# This returns a Python list of files that were selected.
self._X2goClient__share_local_folder_with_session(profile_name=self.current_profile_name, folder_name=str(dlg.GetPath()))
-
def OnListSessions(self, evt):
"""\
STILL UNDOCUMENTED
diff --git a/pyhoca/wxgui/profilemanager.py b/pyhoca/wxgui/profilemanager.py
index 1e65e8e..aed9bf2 100644
--- a/pyhoca/wxgui/profilemanager.py
+++ b/pyhoca/wxgui/profilemanager.py
@@ -951,7 +951,7 @@ class PyHocaGUI_ProfileManager(wx.Dialog):
_item = self.SharedFoldersList.GetItem(_item_id)
_shared_folders.append(_item.GetText())
_item_id = self.SharedFoldersList.GetNextItem(_item_id)
- self.profile_config['export'] = ','.join(_shared_folders)
+ self.profile_config['export'] = ','.join([ f for f in _shared_folders if f ])
self.profile_config['useiconv'] = self.UseEncodingConverter.GetValue()
self.profile_config['iconvfrom'] = self.ClientEncoding.GetValue()
self.profile_config['iconvto'] = self.ServerEncoding.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]
The branch, twofactorauth has been updated
via f6b9bd6381fa0eb8dc8bee164ce1b2b75c4a07b3 (commit)
from 54c58fcbcd4fd11b83baee3a2ab3a054a96bc613 (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/frontend.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
The diff of changes is:
diff --git a/pyhoca/wxgui/frontend.py b/pyhoca/wxgui/frontend.py
index db712d9..b5a5e3f 100644
--- a/pyhoca/wxgui/frontend.py
+++ b/pyhoca/wxgui/frontend.py
@@ -334,9 +334,9 @@ class PyHocaGUI(wx.App, x2go.X2goClient):
except EOFError, e:
self.notifier.send(_(u'%s - connect error') % profile_name, _(u'Authentication protocol communication incomplete! Try again...'), icon='auth_error', timeout=4000)
self._temp_disabled_profile_names.remove(profile_name)
- #except:
- # self.notifier.send('%s - connect error' % profile_name, 'An unknown error occurred during authentication!', icon='auth_error', timeout=4000)
- # self._temp_disabled_profile_names.remove(profile_name)
+ except:
+ self.notifier.send('%s - connect error' % profile_name, 'An unknown error occurred during authentication!', icon='auth_error', timeout=4000)
+ self._temp_disabled_profile_names.remove(profile_name)
self.taskbar.SetIconIdle()
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 5af17bdbc3dacf043c828a1a81b98d5fc906e16a (commit)
from 2e694ee23e906e22b276abe01d52fb543e9d1d71 (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:
setup.py |…
[View More] 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
The diff of changes is:
diff --git a/setup.py b/setup.py
index f1f5bdb..85bebe3 100755
--- a/setup.py
+++ b/setup.py
@@ -36,9 +36,11 @@ import os
import pyhoca.wxgui
#
-# to build .exe file, run on Windows
-# with: ,,python setup.py py2exe -p greenlet''
+# to build .exe file, run on Windows:
+# ,,python setup.py py2exe''
#
+# to update i18n .mo files (and merge .pot file into .po files) run on Linux:
+# ,,python setup.py build_i18n -m''
cmd_class = {}
data_files = []
@@ -114,6 +116,9 @@ setup(
options={
'py2exe': {
'dll_excludes': ['MSVCP90.DLL'],
+ 'includes': ['greenlet'],
+ 'compressed': 1,
+ 'optimize': 2,
}
}
)
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 957fae569c2f0e23720904ac46e7bdf856001e21 (commit)
from b72a7c1dd502a10568dc12e6e56e283b283d0861 (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/…
[View More]changelog | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index d4261d2..14d0500 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,11 @@
pyhoca-gui (0.0.26-0~nwt1) lucid maverick testing unstable; urgency=low
- * added PulseAudio support for Windows
+ * added PulseAudio support for Windows (still unstable)
+ * mainly work on the Windows version
+ * work on audio setup in profile manager
+ * now new config files will be created on first application start
- -- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Tue, 18 Jan 2011 11:41:00 +0100
+ -- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Wed, 19 Jan 2011 18:00:00 +0100
pyhoca-gui (0.0.25-0~nwt2) lucid maverick testing unstable; urgency=low
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 501747368416a35f0d49e4c2ab994fa682db4b58 (commit)
from 6e920b395f10cb493365760613df0ece70779e0a (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/profilemanager.py | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
The diff of changes is:
diff --git a/pyhoca/wxgui/profilemanager.py b/pyhoca/wxgui/profilemanager.py
index be674ee..017a4e0 100644
--- a/pyhoca/wxgui/profilemanager.py
+++ b/pyhoca/wxgui/profilemanager.py
@@ -963,7 +963,10 @@ class PyHocaGUI_ProfileManager(wx.Dialog):
if _ext:
_normalized_exts.append(_ext)
self.profile_config['dropboxextensions'] = ','.join(_normalized_exts)
- _dropbox_action = [ a for a in self.dropboxactionChoices.keys() if self.dropboxactionChoices[a] == self.FileDropboxAction.GetValue() ][0]
+ try:
+ _dropbox_action = [ a for a in self.dropboxactionChoices.keys() if self.dropboxactionChoices[a] == self.FileDropboxAction.GetValue() ][0]
+ except IndexError:
+ _dropbox_action = 'OPEN'
self.profile_config['dropboxaction'] = _dropbox_action
def OnIconChange(self, event):
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 01e64856797d07eeca2cb2fe2e3995a28aac9be5 (commit)
from 501747368416a35f0d49e4c2ab994fa682db4b58 (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:
setup.py |…
[View More] 1 +
1 file changed, 1 insertion(+)
The diff of changes is:
diff --git a/setup.py b/setup.py
index 6426396..f1f5bdb 100755
--- a/setup.py
+++ b/setup.py
@@ -62,6 +62,7 @@ if platform.system() == 'Windows':
("icons\\PyHoca\\32x32", glob(r'icons\\PyHoca\\32x32\\x2go*.*')),
("icons\\PyHoca\\48x48", glob(r'icons\\PyHoca\\48x48\\*.*')),
("icons\\PyHoca\\64x64", glob(r'icons\\PyHoca\\64x64\\*.*')),
+ ("icons\\PyHoca\\128x128", glob(r'icons\\PyHoca\\128x128\\*.*')),
("PyHoca_GUI.egg-infocons\\PyHoca\\128x128", glob(r'icons\\PyHoca\\128x128\\*.*')),
("icons", glob(r'pixmaps\\*.ico')),
]
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 6e920b395f10cb493365760613df0ece70779e0a (commit)
from 1264677bb288cc33493d2e8ae3da14996881a801 (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/…
[View More]changelog | 6 ++++++
pyhoca/wxgui/__init__.py | 2 +-
2 files changed, 7 insertions(+), 1 deletion(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 978c172..d4261d2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+pyhoca-gui (0.0.26-0~nwt1) lucid maverick testing unstable; urgency=low
+
+ * added PulseAudio support for Windows
+
+ -- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Tue, 18 Jan 2011 11:41:00 +0100
+
pyhoca-gui (0.0.25-0~nwt2) lucid maverick testing unstable; urgency=low
* changed maintainer email address
diff --git a/pyhoca/wxgui/__init__.py b/pyhoca/wxgui/__init__.py
index 43bf89e..bb35c78 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.25'
+__VERSION__ = '0.0.26'
from frontend import *
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]