merge to tip of tree

This commit is contained in:
Dan Williams 2006-04-27 15:01:42 -04:00
parent 38c5e5847b
commit 81f45f1447
6 changed files with 26 additions and 43 deletions

View File

@ -1,7 +1,5 @@
SUBDIRS = chat browser shell SUBDIRS = chat browser shell
bin_SCRIPTS = sugar
sugardir = $(pythondir)/sugar sugardir = $(pythondir)/sugar
sugar_PYTHON = \ sugar_PYTHON = \
__init__.py \ __init__.py \

26
README
View File

@ -11,28 +11,28 @@ Building
You will need gnome-common. You will need gnome-common.
./autogen.sh ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var
make make
make install make install # make require root privileges
Running Running
======= =======
sugar To run the python sources from your source tree run
$ ./setup-run-from-source.sh
Debug in the top-level directory. Icons and other resources are still loaded
===== from the installed location though.
To run the shell: To run the shell
sugar shell $ cd shell/src
$ ./shell.py
To run the chat activity: You can run activities like this
sugar chat $ cd browser
$ ./browser.py
To run the web activity:
sugar browser
(Just remember to have the shell running)

View File

@ -268,3 +268,6 @@ def main():
gtk.main() gtk.main()
except KeyboardInterrupt: except KeyboardInterrupt:
pass pass
if __name__=="__main__":
main()

7
setup-run-from-source.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/sh
# for activity.py
export PYTHONPATH=`pwd`/shell/src/
# for sugar_globals.py
export PYTHONPATH=$PYTHONPATH:`pwd`/

View File

@ -300,3 +300,6 @@ def main():
gtk.main() gtk.main()
except KeyboardInterrupt: except KeyboardInterrupt:
pass pass
if __name__=="__main__":
main()

28
sugar
View File

@ -1,28 +0,0 @@
#!/usr/bin/python
import sys
import os
if len(sys.argv) == 1:
# FIXME Start a session
# We are lucky and this
# currently behave as we want.
# The chat depends on the
# web browser, so both activities
# are spanned. But obviously we
# need something better.
import sugar.chat
sugar.chat.main()
elif sys.argv[1] == 'shell':
import sugar.shell
sugar.shell.main()
elif sys.argv[1] == 'chat':
import sugar.chat
sugar.chat.main()
elif sys.argv[1] == 'browser':
import sugar.browser
sugar.browser.main()
else:
print "Unkown activity"