The branch, build-main has been updated
via f1dc23233c1f0b9df67844a8245744e71c00b472 (commit)
from b4335679fa7400e2e57c3992f9f25c4d1b719f3c (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 | 2 ++
x2go/cache.py | 6 ++++++
2 files changed, 8 insertions(+)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 589f0b9..4e98b34 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,8 @@ python-x2go (0.4.0.4-0~x2go1) UNRELEASED; urgency=low
session profile configuration if unavailable. (Fixes: #192).
- Become aware of fixed paramiko features since paramiko 1.11.0. Stop
monkey patching those methods that got fixed in 1.11.0.
+ - Ignore KeyError exceptions in session cache for suddenly removed cache items.
+ Silence/fix some race conditions on connection failures.
-- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Sun, 21 Apr 2013 23:21:29 +0200
diff --git a/x2go/cache.py b/x2go/cache.py
index 389d71a..757b827 100644
--- a/x2go/cache.py
+++ b/x2go/cache.py
@@ -161,6 +161,8 @@ class X2GoListSessionsCache(object):
raise x2go_exceptions.X2GoControlSessionException
except x2go_exceptions.X2GoTimeOutException:
pass
+ except KeyError:
+ pass
def _update_desktops(self, profile_name, control_session):
"""\
@@ -183,6 +185,8 @@ class X2GoListSessionsCache(object):
raise x2go_exceptions.X2GoControlSessionException
except x2go_exceptions.X2GoTimeOutException:
pass
+ except KeyError:
+ pass
def _update_sessions(self, profile_name, control_session):
"""\
@@ -201,6 +205,8 @@ class X2GoListSessionsCache(object):
del self.x2go_listsessions_cache[profile_name]
self.protected = False
raise x2go_exceptions.X2GoControlSessionException
+ except KeyError:
+ pass
def list_sessions(self, session_uuid):
"""\
hooks/post-receive
--
python-x2go.git (Python X2Go Client API)
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 "python-x2go.git" (Python X2Go Client API).
[View Less]
The branch, master has been updated
via 349717f7568a66089965fdce13c5344e6e3a7975 (commit)
from 512b72cccbd5ffcdd29917ac68f70286f215483b (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 -----------------------------------------------------------------
commit 349717f7568a66089965fdce13c5344e6e3a7975
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Tue Jun 18 20:27:59 2013 +0200
release 0.4.0.4
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 13200f5..2e521ad 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-python-x2go (0.4.0.4-0~x2go1) UNRELEASED; urgency=low
+python-x2go (0.4.0.4-0~x2go1) unstable; urgency=low
* New upstream version (0.4.0.4):
- Save exports in session profile directly after mounting/unmounting a share
@@ -15,7 +15,7 @@ python-x2go (0.4.0.4-0~x2go1) UNRELEASED; urgency=low
- Only do x2golistmounts calls for the session cache on running sessions.
- Fix renaming of profile names.
- -- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Sun, 21 Apr 2013 23:21:29 +0200
+ -- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Tue, 18 Jun 2013 20:27:42 +0200
python-x2go (0.4.0.3-0~x2go1) unstable; urgency=low
hooks/post-receive
--
python-x2go.git (Python X2Go Client API)
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 "python-x2go.git" (Python X2Go Client API).
[View Less]
The branch, master has been updated
via 512b72cccbd5ffcdd29917ac68f70286f215483b (commit)
from 22da6eab7545338335e7cef8b3b5a39d2fb786cc (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 -----------------------------------------------------------------
commit 512b72cccbd5ffcdd29917ac68f70286f215483b
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Tue Jun 18 20:27:12 2013 +0200
Fix renaming of profile names.
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 1 +
x2go/backends/profiles/_file.py | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 9d365eb..13200f5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -13,6 +13,7 @@ python-x2go (0.4.0.4-0~x2go1) UNRELEASED; urgency=low
- Support mounting client-side folders on UNC paths.
- Enable keepalive callbacks on open SSH client connections.
- Only do x2golistmounts calls for the session cache on running sessions.
+ - Fix renaming of profile names.
-- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Sun, 21 Apr 2013 23:21:29 +0200
diff --git a/x2go/backends/profiles/_file.py b/x2go/backends/profiles/_file.py
index 463db0f..8c70820 100644
--- a/x2go/backends/profiles/_file.py
+++ b/x2go/backends/profiles/_file.py
@@ -155,9 +155,9 @@ class X2GoSessionProfilesFILE(inifiles.X2GoIniFile):
try: self._cached_profile_ids.remove(profile_id)
except ValueError: pass
self.add_profile(profile_id=None, **_config)
- self._cached_profile_ids = []
- self._cached_profile_names = []
self._profiles_need_profile_id_renewal = []
+ self._cached_profile_ids = []
+ self._cached_profile_names = []
# at last write the profile config as is...
return inifiles.X2GoIniFile.write(self)
hooks/post-receive
--
python-x2go.git (Python X2Go Client API)
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 "python-x2go.git" (Python X2Go Client API).
[View Less]
The branch, build-main has been updated
via 06fe41242fb4072d2b682aa4b5568ce79dc6bdf2 (commit)
from 35915e7891a2a0c01ddf7ff980298ed4457b476b (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 ++++++
x2goserver-compat/VERSION.x2goserver-compat | 2 +-
.../VERSION.x2goserver-extensions | 2 +-
.../VERSION.x2goserver-fmbindings | 2 +-
x2goserver-printing/VERSION.x2goserver-printing | 2 +-
x2goserver-pyhoca/VERSION.x2goserver-pyhoca | 2 +-
x2goserver-xsession/VERSION.x2goserver-xsession | 2 +-
x2goserver/VERSION.x2goserver | 2 +-
8 files changed, 13 insertions(+), 7 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 8547fc7..0379dfe 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+x2goserver (4.0.1.1-0~x2go1) UNRELEASED; urgency=low
+
+ * Continue development on release/4.0.1.x branch...
+
+ -- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Mon, 10 Jun 2013 21:28:51 +0200
+
x2goserver (4.0.1.0-0~x2go1) unstable; urgency=low
* New upstream version (4.0.1.0):
diff --git a/x2goserver-compat/VERSION.x2goserver-compat b/x2goserver-compat/VERSION.x2goserver-compat
index 7faf480..df80b37 100644
--- a/x2goserver-compat/VERSION.x2goserver-compat
+++ b/x2goserver-compat/VERSION.x2goserver-compat
@@ -1 +1 @@
-4.0.1.0
\ No newline at end of file
+4.0.1.1
\ No newline at end of file
diff --git a/x2goserver-extensions/VERSION.x2goserver-extensions b/x2goserver-extensions/VERSION.x2goserver-extensions
index 7faf480..df80b37 100644
--- a/x2goserver-extensions/VERSION.x2goserver-extensions
+++ b/x2goserver-extensions/VERSION.x2goserver-extensions
@@ -1 +1 @@
-4.0.1.0
\ No newline at end of file
+4.0.1.1
\ No newline at end of file
diff --git a/x2goserver-fmbindings/VERSION.x2goserver-fmbindings b/x2goserver-fmbindings/VERSION.x2goserver-fmbindings
index 7faf480..df80b37 100644
--- a/x2goserver-fmbindings/VERSION.x2goserver-fmbindings
+++ b/x2goserver-fmbindings/VERSION.x2goserver-fmbindings
@@ -1 +1 @@
-4.0.1.0
\ No newline at end of file
+4.0.1.1
\ No newline at end of file
diff --git a/x2goserver-printing/VERSION.x2goserver-printing b/x2goserver-printing/VERSION.x2goserver-printing
index 7faf480..df80b37 100644
--- a/x2goserver-printing/VERSION.x2goserver-printing
+++ b/x2goserver-printing/VERSION.x2goserver-printing
@@ -1 +1 @@
-4.0.1.0
\ No newline at end of file
+4.0.1.1
\ No newline at end of file
diff --git a/x2goserver-pyhoca/VERSION.x2goserver-pyhoca b/x2goserver-pyhoca/VERSION.x2goserver-pyhoca
index 7faf480..df80b37 100644
--- a/x2goserver-pyhoca/VERSION.x2goserver-pyhoca
+++ b/x2goserver-pyhoca/VERSION.x2goserver-pyhoca
@@ -1 +1 @@
-4.0.1.0
\ No newline at end of file
+4.0.1.1
\ No newline at end of file
diff --git a/x2goserver-xsession/VERSION.x2goserver-xsession b/x2goserver-xsession/VERSION.x2goserver-xsession
index 7faf480..df80b37 100644
--- a/x2goserver-xsession/VERSION.x2goserver-xsession
+++ b/x2goserver-xsession/VERSION.x2goserver-xsession
@@ -1 +1 @@
-4.0.1.0
\ No newline at end of file
+4.0.1.1
\ No newline at end of file
diff --git a/x2goserver/VERSION.x2goserver b/x2goserver/VERSION.x2goserver
index 7faf480..df80b37 100644
--- a/x2goserver/VERSION.x2goserver
+++ b/x2goserver/VERSION.x2goserver
@@ -1 +1 @@
-4.0.1.0
\ No newline at end of file
+4.0.1.1
\ No newline at end of file
hooks/post-receive
--
x2goserver.git (X2Go Server)
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 "x2goserver.git" (X2Go Server).
[View Less]
The branch, build-main has been updated
via 35915e7891a2a0c01ddf7ff980298ed4457b476b (commit)
from 026f39b4ff047e1d161e09365011160ab7b4545a (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 | 10 ++++++++++
x2goserver/sbin/x2gocleansessions | 2 +-
2 files changed, 11 insertions(+), 1 deletion(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 076d31a..8547fc7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,16 @@ x2goserver (4.0.1.0-0~x2go1) unstable; urgency=low
-- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Fri, 07 Jun 2013 23:07:40 +0200
+x2goserver (4.0.0.4-0~x2go1) UNRELEASED; urgency=low
+
+ [ Jan Engelhardt ]
+ * New upstream version (4.0.0.4):
+ - Fix Perl include path for X2Go related Perl packages (which do
+ not get installed to some system default path for this version
+ of x2goserver).
+
+ -- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Mon, 10 Jun 2013 21:24:02 +0200
+
x2goserver (4.0.0.3-0~x2go1) unstable; urgency=low
* New upstream version (4.0.0.3):
diff --git a/x2goserver/sbin/x2gocleansessions b/x2goserver/sbin/x2gocleansessions
index 0735711..0315a8f 100755
--- a/x2goserver/sbin/x2gocleansessions
+++ b/x2goserver/sbin/x2gocleansessions
@@ -25,7 +25,7 @@ use Sys::Hostname;
use Sys::Syslog qw( :standard :macros );
my $x2go_lib_path=`x2gopath libexec`;
-use lib `x2gopath libexec`;
+use lib `x2gopath lib`;
use x2gologlevel;
openlog($0,'cons,pid','user');
hooks/post-receive
--
x2goserver.git (X2Go Server)
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 "x2goserver.git" (X2Go Server).
[View Less]
The branch, build-main has been updated
via 1629f60722215d87006fc445fc661e1bf6c11b10 (commit)
from 06fe41242fb4072d2b682aa4b5568ce79dc6bdf2 (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 | 3 ++-
x2goserver/bin/x2goumount-session | 4 ++--
2 files changed, 4 insertions(+), 3 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 0379dfe..ba46968 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
x2goserver (4.0.1.1-0~x2go1) UNRELEASED; urgency=low
- * Continue development on release/4.0.1.x branch...
+ * New upstream version (4.0.1.1):
+ - Syntax fix in x2goumount-session.
-- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Mon, 10 Jun 2013 21:28:51 +0200
diff --git a/x2goserver/bin/x2goumount-session b/x2goserver/bin/x2goumount-session
index 095fa22..35d5642 100755
--- a/x2goserver/bin/x2goumount-session
+++ b/x2goserver/bin/x2goumount-session
@@ -134,11 +134,11 @@ for ($i=0;$i<@outp;$i++)
syslog('debug', "skipping non-requested path @line[1]");
goto cont;
}
- if (@line[1] e $only_path_windrive)
+ if (@line[1] eq $only_path_windrive)
{
$only_path = $only_path_windrive;
}
- if (@line[1] e $only_path_uncpath)
+ if (@line[1] eq $only_path_uncpath)
{
$only_path = $only_path_uncpath;
}
hooks/post-receive
--
x2goserver.git (X2Go Server)
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 "x2goserver.git" (X2Go Server).
[View Less]
The branch, build-main has been updated
via 9c2ab5674c428fb9417841649b6ebd9f1ca0c503 (commit)
from 6333c013ac61ccebe195f8853209c7725ae373b0 (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 | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 1fe31c0..0603dcc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,9 @@
-x2goserver (4.0.1.1-0~x2go1) UNRELEASED; urgency=low
+x2goserver (4.0.1.1-0~x2go1) unstable; urgency=low
* New upstream version (4.0.1.1):
- Syntax fix in x2goumount-session.
- -- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Mon, 10 Jun 2013 21:28:51 +0200
+ -- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Thu, 13 Jun 2013 13:12:54 +0200
x2goserver (4.0.1.0-0~x2go1) unstable; urgency=low
hooks/post-receive
--
x2goserver.git (X2Go Server)
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 "x2goserver.git" (X2Go Server).
[View Less]
The branch, build-main has been updated
via 6333c013ac61ccebe195f8853209c7725ae373b0 (commit)
from 1629f60722215d87006fc445fc661e1bf6c11b10 (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 | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index ba46968..1fe31c0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -18,7 +18,7 @@ x2goserver (4.0.1.0-0~x2go1) unstable; urgency=low
-- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Fri, 07 Jun 2013 23:07:40 +0200
-x2goserver (4.0.0.4-0~x2go1) UNRELEASED; urgency=low
+x2goserver (4.0.0.4-0~x2go1) unstable; urgency=low
[ Jan Engelhardt ]
* New upstream version (4.0.0.4):
@@ -26,7 +26,7 @@ x2goserver (4.0.0.4-0~x2go1) UNRELEASED; urgency=low
not get installed to some system default path for this version
of x2goserver).
- -- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Mon, 10 Jun 2013 21:24:02 +0200
+ -- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Thu, 13 Jun 2013 13:10:28 +0200
x2goserver (4.0.0.3-0~x2go1) unstable; urgency=low
hooks/post-receive
--
x2goserver.git (X2Go Server)
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 "x2goserver.git" (X2Go Server).
[View Less]