This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gobroker. from abbbc86 x2gobroker.spec: add %debug_package macro when debugging is to be enabled, hoping that it will actually generate proper debuginfo (and -source) sub packages owning files. new 854d84e patches/: Drop pre-history patch for python2.6 in squeeze. new c9696c3 Getting started documentation: Rework document, convert to markdown, install into x2gobroker bin:pkg (on DEB based systems). new 0b04b63 Makefile.docupload: Add apidoc target (running sphinx-apidoc). new 24873e7 docs/source: Initialize Sphinx API documentation's .rst files. new 74e5452 docs/source: Add Sphinx Build configuration. new 9fa4d00 docs/source/: Exlcude unit tests from API documentation. new a24f167 x2gobroker: Convert __doc__ strings from Epydoc syntax to sphinxy syntax. new ded0c51 debian/: New bin:pkg python-x2gobroker-doc. Build API documentation with Sphinx and include it in a separate -doc package. new e49e8e5 Bump versions in Python code to 0.0.4.0. We are getting closer to the release. new 4558970 Copyright: Happy (new) year 2018 (belated). The 10 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: Makefile | 2 +- Makefile.docupload | 5 +- bin/x2gobroker | 2 +- bin/x2gobroker-testauth | 2 +- debian/changelog | 4 + debian/control | 28 ++ debian/copyright | 8 +- debian/python-x2gobroker-doc.doc-base | 10 + debian/python-x2gobroker-doc.docs | 1 + debian/python-x2gobroker-doc.links | 3 + debian/python3-x2gobroker.docs | 1 - debian/rules | 8 +- debian/x2gobroker.docs | 1 + docs/Makefile | 225 +++++++++++ .../README.x2goclient+broker.getting-started.md | 39 +- .../source/_static/.placeholder | 0 .../source/_templates/.placeholder | 0 docs/source/conf.py | 441 +++++++++++++++++++++ docs/source/index.rst | 22 + docs/source/modules.rst | 7 + docs/source/x2gobroker.agent.rst | 7 + docs/source/x2gobroker.authmechs.base_authmech.rst | 7 + .../x2gobroker.authmechs.https_get_authmech.rst | 7 + docs/source/x2gobroker.authmechs.none_authmech.rst | 7 + docs/source/x2gobroker.authmechs.pam_authmech.rst | 7 + docs/source/x2gobroker.authmechs.rst | 21 + .../x2gobroker.authmechs.testsuite_authmech.rst | 7 + docs/source/x2gobroker.authservice.rst | 7 + docs/source/x2gobroker.basicauth.rst | 7 + docs/source/x2gobroker.brokers.base_broker.rst | 7 + docs/source/x2gobroker.brokers.inifile_broker.rst | 7 + docs/source/x2gobroker.brokers.rst | 19 + docs/source/x2gobroker.brokers.zeroconf_broker.rst | 7 + docs/source/x2gobroker.client.plain.rst | 7 + docs/source/x2gobroker.client.rst | 17 + docs/source/x2gobroker.config.rst | 7 + docs/source/x2gobroker.defaults.rst | 7 + docs/source/x2gobroker.loadchecker.rst | 7 + docs/source/x2gobroker.loggers.rst | 7 + .../x2gobroker.nameservices.base_nameservice.rst | 7 + .../x2gobroker.nameservices.libnss_nameservice.rst | 7 + docs/source/x2gobroker.nameservices.rst | 19 + ...gobroker.nameservices.testsuite_nameservice.rst | 7 + .../x2gobroker.optional_scripts.base_script.rst | 7 + docs/source/x2gobroker.optional_scripts.rst | 17 + docs/source/x2gobroker.rst | 38 ++ docs/source/x2gobroker.uccsjson.rst | 7 + docs/source/x2gobroker.utils.rst | 7 + docs/source/x2gobroker.web.extras.rst | 7 + docs/source/x2gobroker.web.json.rst | 7 + docs/source/x2gobroker.web.plain.rst | 7 + docs/source/x2gobroker.web.rst | 20 + docs/source/x2gobroker.web.uccs.rst | 7 + docs/source/x2gobroker.x2gobroker_exceptions.rst | 7 + etc/broker/x2gobroker-authservice-logger.conf | 2 +- etc/broker/x2gobroker-loadchecker-logger.conf | 2 +- etc/broker/x2gobroker-loggers.conf | 2 +- etc/x2gobroker.conf | 2 +- init/x2gobroker-authservice.init | 2 +- init/x2gobroker-daemon.init | 2 +- init/x2gobroker-loadchecker.init | 2 +- lib/x2gobroker-agent.pl | 2 +- .../python26_debian-squeeze_asyncore.patch | 41 -- sbin/x2gobroker-authservice | 2 +- sbin/x2gobroker-daemon-debug | 2 +- sbin/x2gobroker-keygen | 2 +- sbin/x2gobroker-loadchecker | 2 +- sbin/x2gobroker-pubkeyauthorizer | 4 +- sbin/x2gobroker-testagent | 2 +- setup.py | 2 +- src/x2gobroker-agent.c | 2 +- src/x2gobroker-ssh.c | 2 +- test.py | 2 +- x2gobroker/__init__.py | 4 +- x2gobroker/_paramiko.py | 34 +- x2gobroker/agent.py | 272 ++++++------- x2gobroker/authmechs/__init__.py | 2 +- x2gobroker/authmechs/base_authmech.py | 2 +- x2gobroker/authmechs/https_get_authmech.py | 4 +- x2gobroker/authmechs/none_authmech.py | 2 +- x2gobroker/authmechs/pam_authmech.py | 2 +- x2gobroker/authmechs/testsuite_authmech.py | 4 +- x2gobroker/authservice.py | 2 +- x2gobroker/basicauth.py | 2 +- x2gobroker/brokers/__init__.py | 2 +- x2gobroker/brokers/base_broker.py | 362 ++++++++--------- x2gobroker/brokers/inifile_broker.py | 12 +- x2gobroker/brokers/zeroconf_broker.py | 4 +- x2gobroker/client/__init__.py | 2 +- x2gobroker/client/plain.py | 2 +- x2gobroker/config.py | 94 ++--- x2gobroker/defaults.py | 2 +- x2gobroker/loadchecker.py | 30 +- x2gobroker/loggers.py | 12 +- x2gobroker/nameservices/__init__.py | 2 +- x2gobroker/nameservices/base_nameservice.py | 2 +- x2gobroker/nameservices/libnss_nameservice.py | 2 +- x2gobroker/nameservices/testsuite_nameservice.py | 2 +- x2gobroker/optional_scripts/__init__.py | 2 +- x2gobroker/optional_scripts/base_script.py | 2 +- x2gobroker/tests/__init__.py | 2 +- x2gobroker/tests/runalltests.py | 2 +- x2gobroker/tests/test_broker_agent.py | 2 +- x2gobroker/tests/test_broker_base.py | 2 +- x2gobroker/tests/test_broker_inifile.py | 2 +- x2gobroker/tests/test_broker_zeroconf.py | 2 +- x2gobroker/tests/test_client_plain_base.py | 2 +- x2gobroker/tests/test_utils.py | 2 +- x2gobroker/tests/test_web_plain_base.py | 2 +- x2gobroker/tests/test_web_plain_inifile.py | 2 +- x2gobroker/tests/test_web_plain_zeroconf.py | 2 +- x2gobroker/tests/test_web_uccs_zeroconf.py | 2 +- x2gobroker/uccsjson.py | 106 ++--- x2gobroker/utils.py | 48 +-- x2gobroker/web/__init__.py | 2 +- x2gobroker/web/extras.py | 2 +- x2gobroker/web/json.py | 2 +- x2gobroker/web/plain.py | 2 +- x2gobroker/web/uccs.py | 2 +- x2gobroker/x2gobroker_exceptions.py | 2 +- 120 files changed, 1669 insertions(+), 613 deletions(-) create mode 100644 debian/python-x2gobroker-doc.doc-base create mode 100644 debian/python-x2gobroker-doc.docs create mode 100644 debian/python-x2gobroker-doc.links create mode 100644 debian/x2gobroker.docs create mode 100644 docs/Makefile rename doc/README.x2goclient+broker.getting-started => docs/README.x2goclient+broker.getting-started.md (70%) copy x2gobroker/tests/test_uccsjson.py => docs/source/_static/.placeholder (100%) copy x2gobroker/tests/test_uccsjson.py => docs/source/_templates/.placeholder (100%) create mode 100644 docs/source/conf.py create mode 100644 docs/source/index.rst create mode 100644 docs/source/modules.rst create mode 100644 docs/source/x2gobroker.agent.rst create mode 100644 docs/source/x2gobroker.authmechs.base_authmech.rst create mode 100644 docs/source/x2gobroker.authmechs.https_get_authmech.rst create mode 100644 docs/source/x2gobroker.authmechs.none_authmech.rst create mode 100644 docs/source/x2gobroker.authmechs.pam_authmech.rst create mode 100644 docs/source/x2gobroker.authmechs.rst create mode 100644 docs/source/x2gobroker.authmechs.testsuite_authmech.rst create mode 100644 docs/source/x2gobroker.authservice.rst create mode 100644 docs/source/x2gobroker.basicauth.rst create mode 100644 docs/source/x2gobroker.brokers.base_broker.rst create mode 100644 docs/source/x2gobroker.brokers.inifile_broker.rst create mode 100644 docs/source/x2gobroker.brokers.rst create mode 100644 docs/source/x2gobroker.brokers.zeroconf_broker.rst create mode 100644 docs/source/x2gobroker.client.plain.rst create mode 100644 docs/source/x2gobroker.client.rst create mode 100644 docs/source/x2gobroker.config.rst create mode 100644 docs/source/x2gobroker.defaults.rst create mode 100644 docs/source/x2gobroker.loadchecker.rst create mode 100644 docs/source/x2gobroker.loggers.rst create mode 100644 docs/source/x2gobroker.nameservices.base_nameservice.rst create mode 100644 docs/source/x2gobroker.nameservices.libnss_nameservice.rst create mode 100644 docs/source/x2gobroker.nameservices.rst create mode 100644 docs/source/x2gobroker.nameservices.testsuite_nameservice.rst create mode 100644 docs/source/x2gobroker.optional_scripts.base_script.rst create mode 100644 docs/source/x2gobroker.optional_scripts.rst create mode 100644 docs/source/x2gobroker.rst create mode 100644 docs/source/x2gobroker.uccsjson.rst create mode 100644 docs/source/x2gobroker.utils.rst create mode 100644 docs/source/x2gobroker.web.extras.rst create mode 100644 docs/source/x2gobroker.web.json.rst create mode 100644 docs/source/x2gobroker.web.plain.rst create mode 100644 docs/source/x2gobroker.web.rst create mode 100644 docs/source/x2gobroker.web.uccs.rst create mode 100644 docs/source/x2gobroker.x2gobroker_exceptions.rst delete mode 100644 patches/python-x2gobroker/python26_debian-squeeze_asyncore.patch -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gobroker.git