2004-06-15 06:13:42 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
# -*- mode: python; python-indent: 4; -*-
|
|
|
|
|
|
|
|
## $Id$
|
|
|
|
|
|
|
|
'''
|
|
|
|
A program to pass config file settings to calling programs via stdout
|
|
|
|
|
|
|
|
'''
|
|
|
|
|
2006-09-06 17:18:51 +00:00
|
|
|
import configxml
|
2004-06-15 06:13:42 +00:00
|
|
|
import sys, os
|
|
|
|
|
|
|
|
program_path = os.path.realpath(os.path.dirname(sys.argv[0]))
|
|
|
|
config_filename = os.path.realpath(os.path.join(program_path, '../config.xml'))
|
|
|
|
config = configxml.ConfigFile(config_filename).read()
|
|
|
|
print config.config.__dict__.get(sys.argv[1])
|