Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* style cleanup: use """ everywhereSascha Silbe2010-11-232-9/+9
| | | | | | | | Most of the code uses """, so adjust the few deviations. Reviewed-by: James Cameron <quozl@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org> CC: Aleksey Lim <alsroot@member.fsf.org>
* PEP8 cleanup: fix deprecated raise syntaxSascha Silbe2010-11-231-1/+1
| | | | | | Reviewed-by: James Cameron <quozl@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org> CC: Aleksey Lim <alsroot@member.fsf.org>
* PEP8 cleanup: fix whitespace before ':'Sascha Silbe2010-11-231-1/+1
| | | | | | Reviewed-by: James Cameron <quozl@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org> CC: Aleksey Lim <alsroot@member.fsf.org>
* PEP8 cleanup: fix spaces around keyword parametersSascha Silbe2010-11-235-7/+7
| | | | | | Reviewed-by: James Cameron <quozl@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org> CC: Aleksey Lim <alsroot@member.fsf.org>
* PEP8 cleanup: fix inline comment spacingSascha Silbe2010-11-232-6/+12
| | | | | | | | pep8 wants inline comments to be prefixed by at least two spaces. Let's just move them to a separate line as that's easier to read anyway. Acked-by: Simon Schampijer <simon@laptop.org> CC: Aleksey Lim <alsroot@member.fsf.org>
* PEP8 cleanup: fix whitespace around operatorSascha Silbe2010-11-236-12/+13
| | | | | | Reviewed-by: James Cameron <quozl@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org> CC: Aleksey Lim <alsroot@member.fsf.org>
* PEP8 cleanup: don't use has_key()Sascha Silbe2010-11-236-25/+14
| | | | | | | has_key() has been deprecated for quite some time now. Acked-by: Simon Schampijer <simon@laptop.org> CC: Aleksey Lim <alsroot@member.fsf.org>
* PEP8 cleanup: ensure lines are shorter than 80 charactersSascha Silbe2010-11-235-10/+14
| | | | | | | | | | Caught by PEP8. This is important for Sugar because the XO has a small screen where long lines would make the code hard to understand (because you need to constantly scroll horizontally). Reviewed-by: James Cameron <quozl@laptop.org> Acked-by: Simon Schampijer<simon@schampijer.de> CC: Aleksey Lim <alsroot@member.fsf.org>
* PEP8 cleanup: fix number of blank linesSascha Silbe2010-11-238-2/+15
| | | | | | | | Caught by pep8. Reviewed-by: James Cameron <quozl@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org> CC: Aleksey Lim <alsroot@member.fsf.org>
* fix EOL spacesSascha Silbe2010-11-232-2/+2
| | | | | | Reviewed-by: James Cameron <quozl@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org> CC: Aleksey Lim <alsroot@member.fsf.org>
* Add new numbering scheme #2425Simon Schampijer2010-11-094-7/+167
| | | | | | | - add class NormalizedVersion to parse and compare the new activity versions - change the bundlebuilder and activitybundle to use the new scheme, instead of an int version we expect a string that matches the format defined in NormalizedVersion
* Add 'cache-palette' property to Invoker #1742Tomeu Vizoso2010-10-142-3/+21
| | | | Meaning that the palette will be cached after it's created.
* Fix running multiple instances of Browse by adapting to API changes #2404Tomeu Vizoso2010-10-052-4/+9
| | | | | | | | * sugar/presence/presenceservice.py: Specify the D-Bus interface when calling ActivityProperties.GetActivity * sugar/activity/main.py: Set a default for the --invite option and make the create() D-Bus method accept a{sv} so we can pass the boolean value.
* Cast floats to ints before calling cairo.ImageSurface() #2291Tomeu Vizoso2010-10-041-4/+6
| | | | Otherwise Python 2.7 will raise an exception.
* Do not break if the string contains no conversion specifier #2354Simon Schampijer2010-09-291-4/+11
|
* Don't try to share the activity if we couldn't find a suitable connection #2217Tomeu Vizoso2010-09-101-0/+6
|
* sugar.presence: Remove dead code and make clear which methonds are deprecatedTomeu Vizoso2010-08-302-150/+21
|
* Read the public and private keys lazilyTomeu Vizoso2010-08-261-2/+13
|
* Use Account.ConnectionStatus instead of Account.Connection.StatusTomeu Vizoso2010-08-261-1/+2
|
* Merge branch 'master' of gitorious@git.sugarlabs.org:sugar-toolkit/mainlineMartin Abente2010-08-231-14/+0
|\
| * Remove sugar/__init__.py, it should come from sugar-base #1868Tomeu Vizoso2010-08-231-14/+0
| |
* | Delete activities profile data when uninstall #2074Martin Abente2010-08-231-1/+8
|/ | | | | | | | When activities are uninstalled, profile data persists. Profile data can consume a lot of storage space. Therefore it is necessary to delete it when required. Signed-off-by: Martin Abente <mabente@paraguayeduca.org>
* Address comments from Simon's reviewTomeu Vizoso2010-08-203-179/+8
|
* Address several nitpicks from MarcoTomeu Vizoso2010-08-205-27/+35
|
* Rename ActivityHandle.handle_invite to ActivityHandle.invitedTomeu Vizoso2010-08-204-10/+10
|
* Remove unused constantTomeu Vizoso2010-08-201-1/+0
|
* Add copyright statement due to the collaboration refactoringTomeu Vizoso2010-08-202-0/+2
|
* Misc. pylint fixesTomeu Vizoso2010-08-205-119/+12
|
* Wrap lines with more than 80 charsTomeu Vizoso2010-08-203-22/+43
|
* Remove some unused importsTomeu Vizoso2010-08-206-12/+3
|
* For several reasons, a shared activity won't survive to its connectionTomeu Vizoso2010-08-201-1/+0
| | | | disconnecting and coming back.
*