The branch, build-baikal has been updated via 2b60b2b122762b65f408de9cbf0f1e16f2a4ff35 (commit) from d3c36fac32d3c156d04febde76984928d9b5f1bb (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: x2go/defaults.py | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) The diff of changes is: diff --git a/x2go/defaults.py b/x2go/defaults.py index 93b14e1..3ad6fa8 100644 --- a/x2go/defaults.py +++ b/x2go/defaults.py @@ -19,7 +19,8 @@ # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. """\ -STILL UNDOCUMENTED +Default variables and values for Python X2go. + """ __NAME__ = 'x2godefaults-pylib' @@ -117,18 +118,21 @@ BACKENDS_SESSIONPROFILES = { 'HTTPSBROKER': 'X2goSessionProfilesHTTPSBROKER', 'WINREG': 'X2goSessionProfilesWINREG', } +"""Python X2go backends for storing session profiles.""" BACKENDS_CLIENTSETTINGS = { 'FILE': 'X2goClientSettingsFILE', 'GCONF': 'X2goClientSettingsGCONF', 'HTTPSBROKER': 'X2goClientSettingsHTTPSBROKER', 'WINREG': 'X2goClientSettingsWINREG', } +"""Python X2go backends for storing client settings.""" BACKENDS_CLIENTPRINTING = { 'FILE': 'X2goClientPrintingFILE', 'GCONF': 'X2goClientPrintingGCONF', 'HTTPSBROKER': 'X2goClientPrintingHTTPSBROKER', 'WINREG': 'X2goClientPrintingWINREG', } +"""Python X2go backends for storing print settings.""" BACKEND_SESSIONPROFILES_DEFAULT = 'X2goSessionProfilesFILE' BACKEND_CLIENTSETTINGS_DEFAULT = 'X2goClientSettingsFILE' @@ -257,6 +261,7 @@ else: X2GO_CLIENTXCONFIG_DEFAULTS = {} X2GO_GENERIC_APPLICATIONS = [ 'WWWBROWSER', 'MAILCLIENT', 'OFFICE', 'TERMINAL', ] +"""X2go's generic applications.""" X2GO_SESSIONPROFILE_DEFAULTS = { 'speed': 2, 'pack': '16m-jpeg', 'quality': 9, @@ -352,6 +357,12 @@ X2GO_DESKTOPSESSIONS={ RSAKEY_STRENGTH = 1024 RSAHostKey = paramiko.RSAKey.generate(RSAKEY_STRENGTH) +"""\ +An RSA host key for this client session. Python X2go does not use the +system's host key but generates its own host key for each running +application instance. + +""" X2GO_PRINT_ACTIONS = { 'PDFVIEW': 'X2goPrintActionPDFVIEW', @@ -380,4 +391,5 @@ X2GO_MIMEBOX_EXTENSIONS_BLACKLIST = [ 'LOCK', 'SYS', 'SWP', 'EXE', 'COM', 'CMD', 'PS1', 'PS2', 'BAT', 'JS', 'PY', 'PL', 'SH', -] \ No newline at end of file +] +"""Black-listed MIME box file extenstions.""" 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).