This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository pyhoca-gui. from f160cf6 Gray-out Apply button in session profile GUI on profile creation. new ee42ca6 Create Windows log file folder before attempting clean up (old log file removal). new 41475c6 changelog: wrap too-long lines The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog | 19 ++++++++++++------- pyhoca/wxgui/mswin_logging.py | 5 ++++- 2 files changed, 16 insertions(+), 8 deletions(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pyhoca-gui. commit ee42ca605e4c6d9332f9327dad6df61cd2c43b90 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Wed Apr 16 11:17:03 2014 +0200 Create Windows log file folder before attempting clean up (old log file removal). --- debian/changelog | 2 ++ pyhoca/wxgui/mswin_logging.py | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 9747794..1284b78 100644 --- a/debian/changelog +++ b/debian/changelog @@ -43,6 +43,8 @@ pyhoca-gui (0.5.0.0-0x2go1) UNRELEASED; urgency=low - Make check_running() test terminal server / multi-session safe. (Fixes: #19). - Windows PyHoca-GUI.log file: create with PID in file name. On log file creation try removing all old log files that are not still open. + - Create Windows log file folder before attempting clean up (old log file + removal). - Make sure new session profiles are mutable in the session profile manager GUI. - Gray-out Apply button in session profile GUI on profile creation. - Update English / German translation. diff --git a/pyhoca/wxgui/mswin_logging.py b/pyhoca/wxgui/mswin_logging.py index 2961244..baadb7a 100644 --- a/pyhoca/wxgui/mswin_logging.py +++ b/pyhoca/wxgui/mswin_logging.py @@ -30,6 +30,10 @@ def setup_mswinlog(PROG_NAME): _file = None def __init__(self, filemode='a'): + try: + os.mkdir(os.path.dirname(self._fname)) + except: + pass self._filemode = filemode if self._filemode == "w+": for _file in os.listdir(os.path.dirname(self._fname)): @@ -59,4 +63,3 @@ def setup_mswinlog(PROG_NAME): sys.stdout = MSWin_Logging(filemode='w+') sys.stderr = MSWin_Logging(filemode='a') del MSWin_Logging - -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pyhoca-gui. commit 41475c6ee0d8c5824efaff54ca4325d9455fa567 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Wed Apr 16 11:19:15 2014 +0200 changelog: wrap too-long lines --- debian/changelog | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/debian/changelog b/debian/changelog index 1284b78..0476314 100644 --- a/debian/changelog +++ b/debian/changelog @@ -34,18 +34,21 @@ pyhoca-gui (0.5.0.0-0x2go1) UNRELEASED; urgency=low with SSL certificates that have been self-signed against a non-public root-CA certificate file. - Handle "Connection refused" errors during broker login attempts. - - Gracefully handle "Connection refused" errors after a broker login has already - been successful. - - Properly set focus in broker logon window (default: password, if no username + - Gracefully handle "Connection refused" errors after a broker login has + already been successful. + - Properly set focus in broker logon window (default: password, if no + username provided: username, if no URL provided: broker-URL field). - Fix check_running() method in PyHocaGUI_Launcher on MS Windows. - Make broker support available for the MS Windows build of PyHoca-GUI. - - Make check_running() test terminal server / multi-session safe. (Fixes: #19). - - Windows PyHoca-GUI.log file: create with PID in file name. On log file creation - try removing all old log files that are not still open. + - Make check_running() test terminal server / multi-session safe. + (Fixes: #19). + - Windows PyHoca-GUI.log file: create with PID in file name. On log file + creation try removing all old log files that are not still open. - Create Windows log file folder before attempting clean up (old log file removal). - - Make sure new session profiles are mutable in the session profile manager GUI. + - Make sure new session profiles are mutable in the session profile manager + GUI. - Gray-out Apply button in session profile GUI on profile creation. - Update English / German translation. -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git