Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* API docstring update from pydocwebDavid Farning2008-09-201-0/+10
|
* Trac #8563: sugar palette doesn't handle 'table menus'.C. Scott Ananian2008-09-191-0/+7
| | | | | | | | | | | | | | | | | The gtk Menu class supports 'table menus', where the menu entries can be laid out in a grid. This is useful for horizontal menus, and for dense menus of icons, and for wrapping the menu when it gets too long, etc. The Menu.attach() method is used to add entries to a menu by row and column: http://www.pygtk.org/docs/pygtk/class-gtkmenu.html#method-gtkmenu--attach However, the callback in _Menu, defined in palette.py, only triggers on do_insert(), and so the signal emission (and subsequent palette._update_separators() call, which places the line underneath the menu title text at top) never occurs when you add entries using attach(). _Menu now overrides attach() and emits the proper signal.
* Failure to close descriptor is actually expected. Don't bloat the logs.Marco Pesenti Gritti2008-09-191-1/+2
|
* Another pylint fix.Marco Pesenti Gritti2008-09-181-1/+1
|
* Fix a few pylint warnings.Marco Pesenti Gritti2008-09-182-6/+4
|
* Allow setting empty jabber server (2)Simon Schampijer2008-09-181-1/+1
| | | | fix #8354 completely
* Trac #8532: remove SIGCHLD handler, which interacts poorly with threads.C. Scott Ananian2008-09-181-12/+30
| | | | | | Threads and signals don't get along too well together. Instead, use gobject's spawn_async functionality which already has the necessary zombie- reaping integrated into the gobject event loop.
* #8485 Detach from palette when a widget is destroyedTomeu Vizoso2008-09-184-0/+24
|
* fix weird change in _share_activity_cb causing all activity sharing failsGuillaume Desmottes2008-09-181-1/+1
|
* Removed unused TakeScreenshot from the dbus interface provided byErik Garrison2008-09-171-4/+0
| | | | activityservice.py as suggested by Marco @ trac #8432.
* Cleanup screenshot acquisition behavior in activity.py, so that we acquireErik Garrison2008-09-171-13/+24
| | | | | | | | | | screenshots on user-initiated activity save and close. Check before saving that the window is not fully obscured, as it might be if the user initiates the close from the frame--- this would produce incorrect screenshots. The check for visibility is done by attaching a handler to the Activity class which handles visibility-notify-events from X. In the sugar repository equivalent changes remove automated screenshot acquisition from window manager navigation events (e.g. tabbing).
* Merge branch 'master' of git+ssh://dev.laptop.org/git/sugar-toolkitMarco Pesenti Gritti2008-09-164-258/+1
|\
| * Revert "Move DSObject.resume() from sugar-toolkit to the shell"Tomeu Vizoso2008-09-161-0/+81
| | | | | | | | This reverts commit 13682dd1b4458899e7044e1e917e5bc7a905fee4.
| * Remove the clipboard service wrapperTomeu Vizoso2008-09-164-258/+1
| |
| * Move DSObject.resume() from sugar-toolkit to the shellTomeu Vizoso2008-09-161-81/+0
| |
* | add parameters to docsDavid Farning2008-09-161-9/+60
|/
* s/print/logging.debugTomeu Vizoso2008-09-151-1/+1
|
* No need to test alsa open at object creationg, sinceMarco Pesenti Gritti2008-09-141-10/+0
| | | | we don't have a fallback.
* Fix weird handling of error condition when opening alsa.Marco Pesenti Gritti2008-09-131-3/+1
|
* Alsa based volume control API, stealed from gnome-settings-daemon. #8375Marco Pesenti Gritti2008-09-137-0/+640
|
*