Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/sugar/activity/activityservice.py
diff options
context:
space:
mode:
authorSascha Silbe <sascha@silbe.org>2009-08-25 17:55:48 (GMT)
committer Sascha Silbe <sascha@silbe.org>2009-08-25 17:55:48 (GMT)
commitecdaf6b795550158273ba3a0d582f7ff2bec3187 (patch)
tree11e289d68827c2db1851482efaa7f64da5af93cb /src/sugar/activity/activityservice.py
parent6c3fd0346c1876ad501c3c91d50cdf42f7e0a9dc (diff)
trim EOL (end-of-line) spaces on source files
Diffstat (limited to 'src/sugar/activity/activityservice.py')
-rw-r--r--src/sugar/activity/activityservice.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/sugar/activity/activityservice.py b/src/sugar/activity/activityservice.py
index 20cf7fe..1e5d2ea 100644
--- a/src/sugar/activity/activityservice.py
+++ b/src/sugar/activity/activityservice.py
@@ -30,20 +30,20 @@ _ACTIVITY_INTERFACE = "org.laptop.Activity"
class ActivityService(dbus.service.Object):
"""Base dbus service object that each Activity uses to export dbus methods.
-
+
The dbus service is separate from the actual Activity object so that we can
tightly control what stuff passes through the dbus python bindings."""
def __init__(self, activity):
"""Initialise the service for the given activity
-
+
activity -- sugar.activity.activity.Activity instance
-
+
Creates dbus services that use the instance's activity_id
- as discriminants among all active services
- of this type. That is, the services are all available
+ as discriminants among all active services
+ of this type. That is, the services are all available
as names/paths derived from the instance's activity_id.
-
+
The various methods exposed on dbus are just forwarded
to the client Activity object's equally-named methods.
"""