[X2Go-Commits] [x2goclient] 28/94: * prepared for intermediate release * updated documentation (not readable, full of errors, but epydoc builds doc again) * renamed icons' path * disabling options and profilemanager menu for release builds * next commit will add new files...
git-admin at x2go.org
git-admin at x2go.org
Fri Dec 15 21:04:37 CET 2023
This is an automated email from the git hooks/post-receive script.
x2go pushed a commit to annotated tag 0.1.4.0
in repository x2goclient.
commit 57cf611b68eb59339c15cc18bd5afe8d3d15be59
Author: mike <mike at cdb5e8f1-f799-4276-8919-bce57fd91830>
Date: Fri Dec 10 07:46:59 2010 +0000
* prepared for intermediate release
* updated documentation (not readable, full of errors, but epydoc builds doc again)
* renamed icons' path
* disabling options and profilemanager menu for release builds
* next commit will add new files...
git-svn-id: https://svn.das-netzwerkteam.de/x2go/pyhoca-cli/trunk@165 cdb5e8f1-f799-4276-8919-bce57fd91830
---
debian/changelog | 6 ++++++
debian/control | 2 +-
pyhoca-cli | 2 +-
pyhoca/cli/__init__.py | 2 +-
pyhoca/cli/frontend.py | 6 +++---
5 files changed, 12 insertions(+), 6 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index 0ff76868..40c199fa 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+pyhoca-cli (0.1.1-0~nwt1) lucid maverick testing unstable; urgency=low
+
+ * adapted to run with Python X2go v0.0.21
+
+ -- Mike Gabriel <m.gabriel at das-netzwerkteam.de> Thu, 09 Dec 2010 23:30:00 +0200
+
pyhoca-cli (0.1.0-0~nwt1) lucid maverick testing unstable; urgency=low
* class'ified and egg'ified: PyHocaCLI is now a class
diff --git a/debian/control b/debian/control
index 559181ae..0888b34c 100644
--- a/debian/control
+++ b/debian/control
@@ -9,6 +9,6 @@ XS-Python-Version: all
Package: pyhoca-cli
Architecture: all
-Depends: ${misc:Depends}, python, python-x2go (>=0.0.14-0~nwt1), python-argparse
+Depends: ${misc:Depends}, python, python-x2go (>=0.0.21-0~nwt1), python-argparse
Description: An command line X2go client written in Python
A command line X2go client implementation written in Python.
diff --git a/pyhoca-cli b/pyhoca-cli
index 9a8dab28..1e1ce6f5 100755
--- a/pyhoca-cli
+++ b/pyhoca-cli
@@ -54,7 +54,7 @@ from pyhoca.cli import current_home, PyHocaCLI, runtime_error
# version information
PROG_NAME = os.path.basename(sys.argv[0])
PROG_PID = os.getpid()
-VERSION="0.1.0"
+VERSION="0.1.1"
VERSION_TEXT="""
%s[%s] - an X2go command line client written in Python
----------------------------------------------------------------------
diff --git a/pyhoca/cli/__init__.py b/pyhoca/cli/__init__.py
index aaeed7ba..e26185a2 100644
--- a/pyhoca/cli/__init__.py
+++ b/pyhoca/cli/__init__.py
@@ -20,6 +20,6 @@
"""\
STILL UNDOCUMENTED
"""
-__VERSION__ = "0.1.0"
+__VERSION__ = "0.1.1"
from frontend import *
\ No newline at end of file
diff --git a/pyhoca/cli/frontend.py b/pyhoca/cli/frontend.py
index ddc986dc..838bfb3a 100644
--- a/pyhoca/cli/frontend.py
+++ b/pyhoca/cli/frontend.py
@@ -251,7 +251,7 @@ class PyHocaCLI(x2go.X2goClient):
while not connected:
try:
- self._X2goClient__connect_session(self.x2go_session_hash, password=self.args.password, force_password_auth=force_password_auth)
+ self._X2goClient__connect_session(self.x2go_session_hash, force_password_auth=force_password_auth)
connected = True
except x2go.AuthenticationException:
force_password_auth = True
@@ -346,5 +346,5 @@ class PyHocaCLI(x2go.X2goClient):
self._pyhoca_logger("X2go session %s has been suspended" % session_name, x2go.loglevel_NOTICE, )
except x2go.X2goSessionException, e:
- self._pyhoca_logger("X2goSessionException occured:", x2go.loglevel_ERROR, )
- self._pyhoca_logger("-> %s" % str(e), x2go.loglevel_ERROR, )
+ self._pyhoca_logger("X2goSessionException occured:", loglevel=x2go.loglevel_ERROR)
+ self._pyhoca_logger("-> %s" % str(e), loglevel=x2go.loglevel_ERROR)
--
Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
More information about the x2go-commits
mailing list