diff --git a/doc/sources/conf.py b/doc/sources/conf.py index d4608cae1..30aa2243f 100644 --- a/doc/sources/conf.py +++ b/doc/sources/conf.py @@ -63,7 +63,8 @@ release = kivy.__version__ today_fmt = '%B %d, %Y' # suppress exclusion warnings -exclude_patterns = ['gettingstarted/*', 'guide/layouts.rst'] +exclude_patterns = ['gettingstarted/*', 'guide/layouts.rst', 'api-index.rst', + 'api-kivy.lib.osc*'] # The reST default role (used for this markup: `text`) to use for all documents. #default_role = None diff --git a/doc/sources/index.rst b/doc/sources/index.rst index 9c0c8bd6e..737e38e3d 100644 --- a/doc/sources/index.rst +++ b/doc/sources/index.rst @@ -20,29 +20,6 @@ concern isn't addressed in the documentation, feel free to :ref:`contact`. .. include:: contents.rst.inc -.. Suppress warnings about documents not being included in toc, but don't - actually show them. -.. toctree:: - :hidden: - - api-index - api-kivy.lib.osc.OSC - api-kivy.lib.osc.oscAPI -.. gettingstarted/diving - gettingstarted/drawing - gettingstarted/events - gettingstarted/examples - gettingstarted/first_app - gettingstarted/framework - gettingstarted/installation - gettingstarted/intro - gettingstarted/layouts - gettingstarted/packaging - gettingstarted/properties - gettingstarted/rules - guide/layouts - - Appendix ======== diff --git a/kivy/lib/osc/__init__.py b/kivy/lib/osc/__init__.py index 9276a36d1..1e94fdf34 100644 --- a/kivy/lib/osc/__init__.py +++ b/kivy/lib/osc/__init__.py @@ -1,4 +1,10 @@ +''' +OSC +=== +This is an heavy modified version of PyOSC, that Kivy use internally for TUIO +provider. +''' __version__ = "0" __author__ = "www.ixi-software.net"