diff options
author | jblum | 2008-09-28 03:35:21 +0000 |
---|---|---|
committer | jblum | 2008-09-28 03:35:21 +0000 |
commit | 0174f42a56c3e95008ffc6a9771f2bb2d155f0f5 (patch) | |
tree | 12dc3767a96b89d4e428e44691f01b4ef9e24d99 /grc/src/platforms/base/Constants.py.in | |
parent | ff9c2110d832a0d3b097eab9ca31562f91566404 (diff) | |
download | gnuradio-0174f42a56c3e95008ffc6a9771f2bb2d155f0f5.tar.gz gnuradio-0174f42a56c3e95008ffc6a9771f2bb2d155f0f5.tar.bz2 gnuradio-0174f42a56c3e95008ffc6a9771f2bb2d155f0f5.zip |
freedesktop
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9668 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'grc/src/platforms/base/Constants.py.in')
-rw-r--r-- | grc/src/platforms/base/Constants.py.in | 24 |
1 files changed, 3 insertions, 21 deletions
diff --git a/grc/src/platforms/base/Constants.py.in b/grc/src/platforms/base/Constants.py.in index 4ee4278f1..6d60f2493 100644 --- a/grc/src/platforms/base/Constants.py.in +++ b/grc/src/platforms/base/Constants.py.in @@ -19,29 +19,11 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA import os -##The package name. +#package and version constants PACKAGE = '@PACKAGE@' - -##The current version. VERSION = '@VERSION@' -##Location of external data files. +#setup paths DATA_DIR = '@datadir@' - -##DTD validator for saved flow graphs. FLOW_GRAPH_DTD = os.path.join(DATA_DIR, 'flow_graph.dtd') - -##The default file extension for flow graphs. -FLOW_GRAPH_FILE_EXTENSION = '.grc' - -##The default file extension for saving flow graph snap shots. -IMAGE_FILE_EXTENSION = '.png' - -##The default path for the open/save dialogs. -DEFAULT_FILE_PATH = os.getcwd() - -##The default icon for the gtk windows. -PY_GTK_ICON = os.path.join(DATA_DIR, 'grc-icon-256.png') - -##The users home directory. -HOME_DIR = os.path.expanduser('~') +BLOCK_TREE_DTD = os.path.join(DATA_DIR, 'block_tree.dtd') |