2006-05-18 06:24:32 +02:00
|
|
|
import os
|
2006-06-21 22:05:52 +02:00
|
|
|
import sys
|
2006-05-18 06:24:32 +02:00
|
|
|
|
2006-05-12 08:46:59 +02:00
|
|
|
try:
|
2006-05-18 06:24:32 +02:00
|
|
|
from sugar.__uninstalled__ import *
|
2006-05-12 08:46:59 +02:00
|
|
|
except ImportError:
|
2006-05-18 06:24:32 +02:00
|
|
|
from sugar.__installed__ import *
|
2006-05-22 03:31:57 +02:00
|
|
|
|
2006-06-21 22:05:52 +02:00
|
|
|
def add_to_python_path(path):
|
|
|
|
sys.path.insert(0, path)
|
|
|
|
if os.environ.has_key('PYTHONPATH'):
|
|
|
|
os.environ['PYTHONPATH'] += ':' + path
|
|
|
|
else:
|
|
|
|
os.environ['PYTHONPATH'] = path
|
|
|
|
|
2006-05-22 03:31:57 +02:00
|
|
|
def get_user_dir():
|
2006-05-23 04:14:22 +02:00
|
|
|
if os.environ.has_key('SUGAR_USER_DIR'):
|
|
|
|
return os.environ['SUGAR_USER_DIR']
|
|
|
|
else:
|
|
|
|
return os.path.expanduser('~/.sugar/')
|
|
|
|
|
2006-06-18 01:54:12 +02:00
|
|
|
def get_logging_level():
|
|
|
|
if os.environ.has_key('SUGAR_LOGGING_LEVEL'):
|
|
|
|
return os.environ['SUGAR_LOGGING_LEVEL']
|
|
|
|
else:
|
|
|
|
return 'warning'
|
|
|
|
|
2006-05-23 04:14:22 +02:00
|
|
|
def get_nick_name():
|
|
|
|
if os.environ.has_key('SUGAR_NICK_NAME'):
|
|
|
|
return os.environ['SUGAR_NICK_NAME']
|
|
|
|
else:
|
|
|
|
return None
|
2006-05-18 06:24:32 +02:00
|
|
|
|
2006-06-21 22:05:52 +02:00
|
|
|
def get_data_dir():
|
|
|
|
return sugar_data_dir
|
2006-07-24 15:11:14 +02:00
|
|
|
|
|
|
|
def get_data_file(filename):
|
|
|
|
return os.path.join(get_data_dir(), filename)
|
2006-06-21 22:05:52 +02:00
|
|
|
|
2006-05-18 06:24:32 +02:00
|
|
|
def get_activities_dir():
|
2006-06-21 22:05:52 +02:00
|
|
|
return sugar_activities_dir
|