Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/sugar/activity
diff options
context:
space:
mode:
Diffstat (limited to 'src/sugar/activity')
-rw-r--r--src/sugar/activity/activity.py20
-rw-r--r--src/sugar/activity/activityfactory.py14
-rw-r--r--src/sugar/activity/activityservice.py6
-rw-r--r--src/sugar/activity/bundlebuilder.py14
-rw-r--r--src/sugar/activity/i18n.py2
-rw-r--r--src/sugar/activity/main.py18
6 files changed, 37 insertions, 37 deletions
diff --git a/src/sugar/activity/activity.py b/src/sugar/activity/activity.py
index 38d01ba..f222f8c 100644
--- a/src/sugar/activity/activity.py
+++ b/src/sugar/activity/activity.py
@@ -88,9 +88,9 @@ from sugar.activity.widgets import ActivityToolbox
_ = lambda msg: gettext.dgettext('sugar-toolkit', msg)
-SCOPE_PRIVATE = "private"
-SCOPE_INVITE_ONLY = "invite" # shouldn't be shown in UI, it's implicit
-SCOPE_NEIGHBORHOOD = "public"
+SCOPE_PRIVATE = 'private'
+SCOPE_INVITE_ONLY = 'invite' # shouldn't be shown in UI, it's implicit
+SCOPE_NEIGHBORHOOD = 'public'
J_DBUS_SERVICE = 'org.laptop.Journal'
J_DBUS_PATH = '/org/laptop/Journal'
@@ -269,7 +269,7 @@ class Activity(Window, gtk.Container):
# but they get truncated anyway so if more characters
# are supported in the future we will get a better view
# of the processes
- proc_title = "%s <%s>" % (get_bundle_name(), handle.activity_id)
+ proc_title = '%s <%s>' % (get_bundle_name(), handle.activity_id)
util.set_proc_title(proc_title)
self.connect('realize', self.__realize_cb)
@@ -362,16 +362,16 @@ class Activity(Window, gtk.Container):
def _set_up_sharing(self, mesh_instance, share_scope):
# handle activity share/join
- logging.debug("*** Act %s, mesh instance %r, scope %s",
+ logging.debug('*** Act %s, mesh instance %r, scope %s',
self._activity_id, mesh_instance, share_scope)
if mesh_instance is not None:
# There's already an instance on the mesh, join it
- logging.debug("*** Act %s joining existing mesh instance %r",
+ logging.debug('*** Act %s joining existing mesh instance %r',
self._activity_id, mesh_instance)
self.shared_activity = mesh_instance
self.shared_activity.connect('notify::private',
self.__privacy_changed_cb)
- self._join_id = self.shared_activity.connect("joined",
+ self._join_id = self.shared_activity.connect('joined',
self.__joined_cb)
if not self.shared_activity.props.joined:
self.shared_activity.join()
@@ -778,7 +778,7 @@ class Activity(Window, gtk.Container):
its 'private' property.
"""
if self.shared_activity and self.shared_activity.props.joined:
- raise RuntimeError("Activity %s already shared." %
+ raise RuntimeError('Activity %s already shared.' %
self._activity_id)
verb = private and 'private' or 'public'
logging.debug('Requesting %s share of activity %s.', verb,
@@ -880,7 +880,7 @@ class Activity(Window, gtk.Container):
"""Returns the jobject metadata or None if there is no jobject.
Activities can set metadata in write_file() using:
- self.metadata['MyKey'] = "Something"
+ self.metadata['MyKey'] = 'Something'
and retrieve metadata in read_file() using:
self.metadata.get('MyKey', 'aDefaultValue')
@@ -976,7 +976,7 @@ def get_activity_root():
if os.environ.get('SUGAR_ACTIVITY_ROOT'):
return os.environ['SUGAR_ACTIVITY_ROOT']
else:
- raise RuntimeError("No SUGAR_ACTIVITY_ROOT set.")
+ raise RuntimeError('No SUGAR_ACTIVITY_ROOT set.')
def show_object_in_journal(object_id):
diff --git a/src/sugar/activity/activityfactory.py b/src/sugar/activity/activityfactory.py
index 46dc346..6bd661f 100644
--- a/src/sugar/activity/activityfactory.py
+++ b/src/sugar/activity/activityfactory.py
@@ -40,16 +40,16 @@ import tempfile
import subprocess
import pwd
-_SHELL_SERVICE = "org.laptop.Shell"
-_SHELL_PATH = "/org/laptop/Shell"
-_SHELL_IFACE = "org.laptop.Shell"
+_SHELL_SERVICE = 'org.laptop.Shell'
+_SHELL_PATH = '/org/laptop/Shell'
+_SHELL_IFACE = 'org.laptop.Shell'
-_ACTIVITY_FACTORY_INTERFACE = "org.laptop.ActivityFactory"
+_ACTIVITY_FACTORY_INTERFACE = 'org.laptop.ActivityFactory'
# helper method to close all filedescriptors
# borrowed from subprocess.py
try:
- MAXFD = os.sysconf("SC_OPEN_MAX")
+ MAXFD = os.sysconf('SC_OPEN_MAX')
except ValueError:
MAXFD = 256
@@ -284,7 +284,7 @@ class ActivityCreationHandler(gobject.GObject):
self._handle.activity_id, self._service_name)
def _create_error_handler(self, err):
- logging.error("Couldn't create activity %s (%s): %s",
+ logging.error('Couldn't create activity %s (%s): %s',
self._handle.activity_id, self._service_name, err)
self._shell.NotifyLaunchFailure(
self._handle.activity_id, reply_handler=self._no_reply_handler,
@@ -293,7 +293,7 @@ class ActivityCreationHandler(gobject.GObject):
def _find_object_reply_handler(self, jobjects, count):
if count > 0:
if count > 1:
- logging.debug("Multiple objects has the same activity_id.")
+ logging.debug('Multiple objects has the same activity_id.')
self._handle.object_id = jobjects[0]['uid']
self._launch_activity()
diff --git a/src/sugar/activity/activityservice.py b/src/sugar/activity/activityservice.py
index ff15471..3fafe8a 100644
--- a/src/sugar/activity/activityservice.py
+++ b/src/sugar/activity/activityservice.py
@@ -25,9 +25,9 @@ import dbus
import dbus.service
-_ACTIVITY_SERVICE_NAME = "org.laptop.Activity"
-_ACTIVITY_SERVICE_PATH = "/org/laptop/Activity"
-_ACTIVITY_INTERFACE = "org.laptop.Activity"
+_ACTIVITY_SERVICE_NAME = 'org.laptop.Activity'
+_ACTIVITY_SERVICE_PATH = '/org/laptop/Activity'
+_ACTIVITY_INTERFACE = 'org.laptop.Activity'
class ActivityService(dbus.service.Object):
diff --git a/src/sugar/activity/bundlebuilder.py b/src/sugar/activity/bundlebuilder.py
index b4ffff9..084b569 100644
--- a/src/sugar/activity/bundlebuilder.py
+++ b/src/sugar/activity/bundlebuilder.py
@@ -108,7 +108,7 @@ class Builder(object):
po_dir = os.path.join(self.config.source_dir, 'po')
if not self.config.bundle.is_dir(po_dir):
- logging.warn("Missing po/ dir, cannot build_locale")
+ logging.warn('Missing po/ dir, cannot build_locale')
return
locale_dir = os.path.join(self.config.source_dir, 'locale')
@@ -128,8 +128,8 @@ class Builder(object):
if not os.path.isdir(mo_path):
os.makedirs(mo_path)
- mo_file = os.path.join(mo_path, "%s.mo" % self.config.bundle_id)
- args = ["msgfmt", "--output-file=%s" % mo_file, file_name]
+ mo_file = os.path.join(mo_path, '%s.mo' % self.config.bundle_id)
+ args = ['msgfmt', '--output-file=%s' % mo_file, file_name]
retcode = subprocess.call(args)
if retcode:
print 'ERROR - msgfmt failed with return code %i.' % retcode
@@ -170,9 +170,9 @@ class Builder(object):
for path in self.check_manifest():
manifest.append(path)
- f = open(os.path.join(self.config.source_dir, "MANIFEST"), "wb")
+ f = open(os.path.join(self.config.source_dir, 'MANIFEST'), 'wb')
for line in manifest:
- f.write(line + "\n")
+ f.write(line + '\n')
class Packager(object):
@@ -399,7 +399,7 @@ def print_commands():
for name, func in globals().items():
if name.startswith('cmd_'):
- print "%-20s %s" % (name.replace('cmd_', ''), func.__doc__)
+ print '%-20s %s' % (name.replace('cmd_', ''), func.__doc__)
print '\n(Type "./setup.py <command> --help" for help about a ' \
'particular command\'s options.'
@@ -407,7 +407,7 @@ def print_commands():
def start(bundle_name=None):
if bundle_name:
- logging.warn("bundle_name deprecated, now comes from activity.info")
+ logging.warn('bundle_name deprecated, now comes from activity.info')
parser = OptionParser(usage='[action] [options]')
parser.disable_interspersed_args()
diff --git a/src/sugar/activity/i18n.py b/src/sugar/activity/i18n.py
index 1c3c893..7b09fc2 100644
--- a/src/sugar/activity/i18n.py
+++ b/src/sugar/activity/i18n.py
@@ -118,7 +118,7 @@ def get_locale_path(bundle_id):
candidate_dirs[os.environ['SUGAR_LOCALEDIR']] = 2
gconf_client = gconf.client_get_default()
- package_dir = gconf_client.get_string("/desktop/sugar/i18n/langpackdir")
+ package_dir = gconf_client.get_string('/desktop/sugar/i18n/langpackdir')
if package_dir is not None and package_dir is not '':
candidate_dirs[package_dir] = 1
diff --git a/src/sugar/activity/main.py b/src/sugar/activity/main.py
index c04257a..d2a9302 100644
--- a/src/sugar/activity/main.py
+++ b/src/sugar/activity/main.py
@@ -56,7 +56,7 @@ class SingleProcess(dbus.service.Object):
object_path = get_single_process_path(name_service)
dbus.service.Object.__init__(self, bus_name, object_path)
- @dbus.service.method("org.laptop.SingleProcess", in_signature="a{sv}")
+ @dbus.service.method('org.laptop.SingleProcess', in_signature='a{sv}')
def create(self, handle_dict):
handle = activityhandle.create_from_dict(handle_dict)
create_activity_instance(self.constructor, handle)
@@ -64,14 +64,14 @@ class SingleProcess(dbus.service.Object):
def main():
parser = OptionParser()
- parser.add_option("-b", "--bundle-id", dest="bundle_id",
- help="identifier of the activity bundle")
- parser.add_option("-a", "--activity-id", dest="activity_id",
- help="identifier of the activity instance")
- parser.add_option("-o", "--object-id", dest="object_id",
- help="identifier of the associated datastore object")
- parser.add_option("-u", "--uri", dest="uri",
- help="URI to load")
+ parser.add_option('-b', '--bundle-id', dest='bundle_id',
+ help='identifier of the activity bundle')
+ parser.add_option('-a', '--activity-id', dest='activity_id',
+ help='identifier of the activity instance')
+ parser.add_option('-o', '--object-id', dest='object_id',
+ help='identifier of the associated datastore object')
+ parser.add_option('-u', '--uri', dest='uri',
+ help='URI to load')
parser.add_option('-s', '--single-process', dest='single_process',
action='store_true',
help='start all the instances in the same process')