Fix get_published_values to actually return the dict.

Get rid of the activity title property, we are not using it anyway.
master
Marco Pesenti Gritti 18 years ago
parent 395472edea
commit 1df5b0020d

@ -118,9 +118,9 @@ class Activity(gtk.Window):
service = services[0]
addr = service.get_address()
port = service.get_port()
properties = { 'title' : service.get_published_value('title') }
self._service = self._pservice.share_activity(self,
self._default_type, properties, addr, port)
properties = service.get_published_values()
self._service = self._pservice.share_activity(
self, self._default_type, properties, addr, port)
else:
logging.error('Cannot join the activity')
@ -128,9 +128,7 @@ class Activity(gtk.Window):
"""Share the activity on the network."""
logging.debug('Share activity %s on the network.' % self.get_id())
properties = { 'title' : self.get_title() }
self._service = self._pservice.share_activity(self,
self._default_type, properties)
self._service = self._pservice.share_activity(self, self._default_type)
self._shared = True
def execute(self, command, args):

@ -53,6 +53,7 @@ class Service(gobject.GObject):
def get_published_values(self):
self._pubvals = self._service.getPublishedValues()
return self._pubvals
def set_published_value(self, key, value):
if self._pubvals.has_key(key):

Loading…
Cancel
Save