2006-05-12 08:34:20 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import os
|
2006-06-16 21:48:44 +02:00
|
|
|
import pwd
|
|
|
|
import random
|
2006-07-28 01:25:08 +02:00
|
|
|
import tempfile
|
2006-05-12 08:34:20 +02:00
|
|
|
|
2006-07-27 10:35:59 +02:00
|
|
|
import pygtk
|
|
|
|
pygtk.require('2.0')
|
|
|
|
|
2006-07-19 13:38:24 +02:00
|
|
|
def add_to_bin_path(path):
|
|
|
|
if os.environ.has_key('PATH'):
|
|
|
|
old_path = os.environ['PATH']
|
|
|
|
os.environ['PATH'] = path + ':' + old_path
|
|
|
|
else:
|
|
|
|
os.environ['PATH'] = path
|
|
|
|
|
2006-06-21 22:35:57 +02:00
|
|
|
def add_to_python_path(path):
|
|
|
|
sys.path.insert(0, path)
|
|
|
|
if os.environ.has_key('PYTHONPATH'):
|
2006-07-10 16:16:30 +02:00
|
|
|
old_path = os.environ['PYTHONPATH']
|
|
|
|
os.environ['PYTHONPATH'] = path + ':' + old_path
|
2006-06-21 22:35:57 +02:00
|
|
|
else:
|
|
|
|
os.environ['PYTHONPATH'] = path
|
|
|
|
|
2006-06-21 20:23:18 +02:00
|
|
|
curdir = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
basedir = os.path.dirname(curdir)
|
|
|
|
|
|
|
|
if os.path.isfile(os.path.join(basedir, 'sugar/__uninstalled__.py')):
|
|
|
|
print 'Running sugar from ' + basedir + ' ...'
|
2006-07-19 13:38:24 +02:00
|
|
|
add_to_bin_path(os.path.join(basedir, 'shell'))
|
2006-06-21 22:35:57 +02:00
|
|
|
add_to_python_path(basedir)
|
|
|
|
add_to_python_path(os.path.join(basedir, 'shell'))
|
2006-07-28 01:25:08 +02:00
|
|
|
add_to_python_path(os.path.join(basedir, 'activities'))
|
|
|
|
|
|
|
|
from sugar import env
|
|
|
|
from sugar import setup
|
|
|
|
|
|
|
|
activities_dest = os.path.join(tempfile.gettempdir(), 'sugar')
|
|
|
|
|
|
|
|
if not os.path.isdir(activities_dest):
|
|
|
|
os.mkdir(activities_dest)
|
|
|
|
else:
|
|
|
|
# FIXME delete the whole directory
|
|
|
|
pass
|
|
|
|
|
2006-08-07 11:08:10 +02:00
|
|
|
setup.setup_activities(env.get_activities_dir(), activities_dest,
|
|
|
|
os.path.join(basedir, 'shell/sugar-activity-factory'))
|
2006-05-12 08:34:20 +02:00
|
|
|
else:
|
2006-05-17 06:12:01 +02:00
|
|
|
print 'Running the installed sugar...'
|
2006-07-28 01:25:08 +02:00
|
|
|
from sugar import env
|
|
|
|
add_to_python_path(os.path.join(env.get_data_dir(), 'shell'))
|
|
|
|
add_to_python_path(os.path.join(env.get_data_dir(), 'activities'))
|
|
|
|
activities_dest = env.get_activities_dir()
|
|
|
|
|
|
|
|
from ActivityRegistry import ActivityRegistry
|
|
|
|
|
|
|
|
registry = ActivityRegistry()
|
|
|
|
registry.scan_directory(activities_dest)
|
2006-07-12 22:17:57 +02:00
|
|
|
|
2006-08-11 11:37:35 +02:00
|
|
|
from session.Emulator import Emulator
|
2006-07-12 22:17:57 +02:00
|
|
|
|
|
|
|
# FIXE Don't run the emulator on the OLPC
|
|
|
|
emulator = Emulator()
|
|
|
|
emulator.start()
|
2006-05-18 07:17:40 +02:00
|
|
|
|
2006-08-11 11:37:35 +02:00
|
|
|
from session.Session import Session
|
2006-05-16 22:32:08 +02:00
|
|
|
|
2006-07-28 01:25:08 +02:00
|
|
|
session = Session(registry)
|
2006-05-23 22:02:13 +02:00
|
|
|
session.start()
|