home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- # Oxygen Startup script
- # (c) 2003 Syncro Soft Ltd.
- case "$0" in
- /*)
- p=$0
- ;;
- *) p=`/bin/pwd`/$0
- ;;
- esac
- p=`dirname '$p'`
- CP=$p/lib/oxygen.jar:$p/classes:$p
-
- #
- # To make the tree editor readonly, change the
- # "com.oxygenxml.tree.readonly" property to true
- #
- java -Xdock:name=Oxygen\
- -Dcom.oxygenxml.app.descriptor=ro.sync.ui.tree.TreeMainEditorDescriptor \
- -Dcom.oxygenxml.tree.readonly=false\
- -Xmx256m\
- -cp $CP\
- ro.sync.exml.Oxygen $1
-
-