12345678910111213141516171819202122232425262728293031323334353637 |
- #!/usr/bin/python
- # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
- ### BEGIN LICENSE
- # This file is in the public domain
- ### END LICENSE
- ### DO NOT EDIT THIS FILE ###
- import sys
- import os
- import locale
- locale.textdomain('organiccode')
- # Add project root directory (enable symlink and trunk execution)
- PROJECT_ROOT_DIRECTORY = os.path.abspath(
- os.path.dirname(os.path.dirname(os.path.realpath(sys.argv[0]))))
- python_path = []
- if os.path.abspath(__file__).startswith('/opt'):
- locale.bindtextdomain('organiccode', '/opt/extras.ubuntu.com/organiccode/share/locale')
- syspath = sys.path[:] # copy to avoid infinite loop in pending objects
- for path in syspath:
- opt_path = path.replace('/usr', '/opt/extras.ubuntu.com/organiccode')
- python_path.insert(0, opt_path)
- sys.path.insert(0, opt_path)
- os.putenv("XDG_DATA_DIRS", "%s:%s" % ("/opt/extras.ubuntu.com/organiccode/share/", os.getenv("XDG_DATA_DIRS", "/usr/local/share/:/usr/share/")))
- if (os.path.exists(os.path.join(PROJECT_ROOT_DIRECTORY, 'organiccode'))
- and PROJECT_ROOT_DIRECTORY not in sys.path):
- python_path.insert(0, PROJECT_ROOT_DIRECTORY)
- sys.path.insert(0, PROJECT_ROOT_DIRECTORY)
- if python_path:
- os.putenv('PYTHONPATH', "%s:%s" % (os.getenv('PYTHONPATH', ''), ':'.join(python_path))) # for subprocesses
- import organiccode
- organiccode.main()
|