Changeset 3668

Show
Ignore:
Timestamp:
18/11/08 18:37:38 (7 weeks ago)
Author:
dmeyer
Message:

Add template for kaa.notifier doc

Location:
trunk/base
Files:
4 added
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/base/doc/conf.py

    r3635 r3668  
    1717# is relative to the documentation root, use os.path.abspath to make it 
    1818# absolute, like shown here. 
    19 sys.path.append(os.path.abspath('../build/lib.linux-i686-2.5')) 
     19for _lib in os.listdir('../build'): 
     20    if _lib.startswith('lib.'): 
     21        sys.path.insert(0, os.path.abspath('../build/' + _lib)) 
    2022from kaa.version import VERSION 
    2123 
  • trunk/base/doc/notifier/index.rst

    r3634 r3668  
    1313   async 
    1414   mainloop 
     15   signals 
     16   timer 
     17   threads 
     18   io 
     19 
     20The 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  
    8282        mainloop with the threaded decorator. 
    8383 
    84         @param mainloop: the mainloop object to use a mainloop based on gobject 
     84        :param mainloop: the mainloop object to use a mainloop based on gobject 
    8585          like the gstreamer or clutter mainloop. The object provided here must 
    8686          have a start and a stop function.