|  | Commit message (Collapse) | Author | Age | Files | Lines | 
|---|
| | 
| 
| 
| 
| 
| | proxies.py, service.py: Cleanup of code after running it through the
  pyflakes code checker mostly dealing with undefined names.
  (Bug #3828, Patch from Anthony Baxter <anthony@interlink.com.au>) | 
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| | 2005-07-17  John (J5) Palmieri  <johnp@redhat.com>
        * NEWS: Update to 0.35.2
2005-07-17  John (J5) Palmieri  <johnp@redhat.com>
        * python/_dbus.py: Remove import of the dbus.services
        module as it no longer exists (patch from Dimitur Kirov)
        * python/service.py (Object::__init__): Fixed typo
        s/name/bus_name (patch from Dimitur Kirov)
        * python/examples/example-signal-emitter.py: import dbus.glib
        to get the main loop and use glib mainloop instead of gtk so
        X doesn't have to be running.
        * python/examples/example-signal-recipient.py: import dbus.glib
        to get the main loop and use glib mainloop instead of gtk so
        X doesn't have to be running. Import the decorators module
        directly.
        * test/glib/Makefile.am:  Added DIST_EXTRA files that distcheck
        didn't pick up on but are needed to build
        * configure.in: upped version to 0.35.2
        * bus/driver.c, bus/selinux.c, bus/selinux.h, dbus/dbus-protocol.h:
        added Colin Walters' SELinux API rename patch from head
        s/unix sercurity context/selinux security context/
2005-07-16  John (J5) Palmieri  <johnp@redhat.com>
        * python/Makefile.am: dbus_binding.pxd.in should be included
        in EXTRA_DIST not dbus_binding.pxd
        fix up $(srcdir) hopefully for the last time
        * NEWS: Update to 0.35.1 | 
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| | for sending messages to oneself (TODO item).
* python/service.py (class Object): Swap ordering of bus_name
  and object_path parameters to better support inheritance.
* doc/dbus-tutorial.xml: change Python docs to reflect change
  in parameter ordering and fix the inheritance section.
* doc/TODO: remove sending message to oneself TODO item | 
| | 
| 
| 
| 
| 
| 
| 
| 
| | * python/service.py (class Name): renamed BusName to make it clearer
  what the object is for (a name on the bus)
* python/examples/example-service.py,
  python/examples/example-signal-emitter.py: change the Name object to
  BusName | 
|  | * python/dbus_bindings.pyx: Added.
	- Fixed some memleaks (patch from
	  Sean Meiners <sean.meiners@linspireinc.com>)
	- Broke out the #include "dbus_h_wrapper.h" and put it in its
	  own pxd file (Pyrex definition)
	- Broke out glib dependancies into its own pyx module
* python/dbus_bindings.pdx: Added.
	- Defines C class Connection for exporting to other modules
* python/dbus_glib_bindings.pyx: Added.
	- New module to handle lowlevel dbus-glib mainloop integration
* python/glib.py: Added.
	- Registers the glib mainloop when you import this module
* python/services.py: Removed (renamed to service.py)
* python/service.py: Added.
	- (class Server): renamed Name
* python/__init__.py: Bump ro version (0,41,0)
	- don't import the decorators or service module
   	  by default.  These now reside in the dbus.service namespace
* python/_dbus.py (Bus::__init__): Add code run the main loop
  setup function on creation
* python/examples/example-service.py,
  python/examples/example-signal-emitter.py: update examples
* python/examples/gconf-proxy-service.py,
  python/examples/gconf-proxy-service2.py: TODO fix these up
* doc/TODO: Addition
	- Added a Python Bindings 1.0 section
	- added "Add match on args or match on details to match rules" |