Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-08-11 11:05:33 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-08-11 11:05:33 (GMT)
commit628271959c97c49b64ed16203a5d8a2d0202ede7 (patch)
tree33e1e34f6d619d6fa7cf1c47da67d587e13194e4 /shell
parentcb47f17b31dde57823d46d974e983aa7fe7cad98 (diff)
Refactor the console stuff
Diffstat (limited to 'shell')
-rwxr-xr-xshell/Shell.py9
-rw-r--r--shell/session/Emulator.py13
-rwxr-xr-xshell/sugar3
-rwxr-xr-xshell/sugar-activity-factory3
4 files changed, 13 insertions, 15 deletions
diff --git a/shell/Shell.py b/shell/Shell.py
index 0baea0e..b142963 100755
--- a/shell/Shell.py
+++ b/shell/Shell.py
@@ -18,6 +18,7 @@ from ActivityHost import ActivityHost
from ChatController import ChatController
from sugar.activity import ActivityFactory
from sugar.activity import Activity
+import sugar.logger
class ShellDbusService(dbus.service.Object):
def __init__(self, shell, bus_name):
@@ -59,13 +60,12 @@ class Shell(gobject.GObject):
self._console_windows = {}
def start(self):
- #log_writer = LogWriter("Shell", False)
- #log_writer.start()
-
session_bus = dbus.SessionBus()
bus_name = dbus.service.BusName('com.redhat.Sugar.Shell', bus=session_bus)
ShellDbusService(self, bus_name)
+ sugar.logger.start('Shell', self)
+
self._owner = ShellOwner()
self._owner.announce()
@@ -132,6 +132,9 @@ class Shell(gobject.GObject):
module = self._registry.get_activity(activity.get_default_type())
console = self.get_console(module.get_id())
activity.show_dialog(console)
+ else:
+ console = self.get_console('Shell')
+ console.show()
def join_activity(self, service):
info = self._registry.get_activity(service.get_type())
diff --git a/shell/session/Emulator.py b/shell/session/Emulator.py
index d70059d..4928ec4 100644
--- a/shell/session/Emulator.py
+++ b/shell/session/Emulator.py
@@ -1,4 +1,3 @@
-import logging
import os
import socket
import sys
@@ -9,8 +8,8 @@ def get_display_number():
"""Find a free display number trying to connect to 6000+ ports"""
retries = 20
display_number = 1
- display_is_free = False
-
+ display_is_free = False
+
while not display_is_free and retries > 0:
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
@@ -57,10 +56,6 @@ class XnestProcess(Process):
class Emulator:
"""The OLPC emulator"""
-
- def __init__(self):
- pass
-
def start(self):
try:
process = XephyrProcess()
@@ -70,6 +65,6 @@ class Emulator:
process = XnestProcess()
process.start()
except:
- logging.error('Cannot run the emulator. You need to install \
- Xephyr or Xnest.')
+ print('Cannot run the emulator. You need to install\
+ Xephyr or Xnest.')
sys.exit(0)
diff --git a/shell/sugar b/shell/sugar
index 47c1225..42de27e 100755
--- a/shell/sugar
+++ b/shell/sugar
@@ -74,7 +74,6 @@ from ActivityRegistry import ActivityRegistry
registry = ActivityRegistry()
registry.scan_directory(activities_dest)
-#registry.scan_directory(os.path.join(env.get_user_dir(), 'activities'))
from session.Emulator import Emulator
@@ -82,8 +81,6 @@ from session.Emulator import Emulator
emulator = Emulator()
emulator.start()
-print 'Redirecting output to the console, press F3 to open it.'
-
from session.Session import Session
session = Session(registry)
diff --git a/shell/sugar-activity-factory b/shell/sugar-activity-factory
index 9e028f1..7be73d1 100755
--- a/shell/sugar-activity-factory
+++ b/shell/sugar-activity-factory
@@ -12,6 +12,9 @@ gtk.gdk.threads_init()
dbus.glib.threads_init()
from sugar.activity import ActivityFactory
+import sugar.logger
+
+sugar.logger.start(sys.argv[1])
logging.info('Starting activity factory %s' % sys.argv[1])