Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/presenceservice.py
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2007-08-31 13:56:39 (GMT)
committer Simon McVittie <simon.mcvittie@collabora.co.uk>2007-08-31 13:56:39 (GMT)
commit20b9c6914333e8043cea4366609e4c8f8728180b (patch)
tree7acc5ce44c167f4f7f0912f803d9bf3fd7e76e39 /src/presenceservice.py
parentd78cc3d9d0ee758f72af1529ea504c806deb760a (diff)
* Notify local processes when we change an activity name, so the mesh
view can update * Fix bug where activities initially had empty title in mesh view * Fix non-ASCII activity names
Diffstat (limited to 'src/presenceservice.py')
-rw-r--r--src/presenceservice.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/presenceservice.py b/src/presenceservice.py
index ef7c20b..e67ab50 100644
--- a/src/presenceservice.py
+++ b/src/presenceservice.py
@@ -725,6 +725,8 @@ class PresenceService(ExportedGObject):
# FIXME: this makes all activities start off public.
# Once mutable properties have landed in sugar.presence, we should
# change the default to private=True.
+ _logger.debug('ShareActivity(actid=%r, atype=%r, name=%r, '
+ 'properties=%r)', actid, atype, name, properties)
self._share_activity(actid, atype, name, properties, False,
async_cb, async_err_cb)
@@ -794,7 +796,7 @@ class PresenceService(ExportedGObject):
activity.props.id)
else:
self.ActivityDisappeared(activity.object_path())
- _logger.debug("Activity disappeared: %s (%s)",
+ _logger.debug("Activity disappeared: %s (%s)",
activity.props.name, activity.props.id)
def _activity_properties_changed(self, tp, act_handle, props):