Changeset 3668
- Timestamp:
- 18/11/08 18:37:38 (7 weeks ago)
- Location:
- trunk/base
- Files:
-
- 4 added
- 3 modified
-
doc/conf.py (modified) (1 diff)
-
doc/notifier/index.rst (modified) (1 diff)
-
doc/notifier/io.rst (added)
-
doc/notifier/signals.rst (added)
-
doc/notifier/threads.rst (added)
-
doc/notifier/timer.rst (added)
-
src/notifier/gobject.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/base/doc/conf.py
r3635 r3668 17 17 # is relative to the documentation root, use os.path.abspath to make it 18 18 # absolute, like shown here. 19 sys.path.append(os.path.abspath('../build/lib.linux-i686-2.5')) 19 for _lib in os.listdir('../build'): 20 if _lib.startswith('lib.'): 21 sys.path.insert(0, os.path.abspath('../build/' + _lib)) 20 22 from kaa.version import VERSION 21 23 -
trunk/base/doc/notifier/index.rst
r3634 r3668 13 13 async 14 14 mainloop 15 signals 16 timer 17 threads 18 io 19 20 The following features are missing in the documentation: 21 22 * Default kaa.signals 23 24 * kaa.Event and kaa.Eventhandler -
trunk/base/src/notifier/gobject.py
r3422 r3668 82 82 mainloop with the threaded decorator. 83 83 84 @param mainloop: the mainloop object to use a mainloop based on gobject84 :param mainloop: the mainloop object to use a mainloop based on gobject 85 85 like the gstreamer or clutter mainloop. The object provided here must 86 86 have a start and a stop function.
