diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-20 13:48:31 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-20 13:48:31 +0100 |
commit | 26942ea013e79d615eeca8ae0a38a39e5f945558 (patch) | |
tree | 3163be167e3d77e936459fe465e693cc5b6925d6 /portato | |
parent | 75e0cdc615d2ec6f3253b89ba80bb6995845697e (diff) | |
parent | d68f3b26ad1e21b42677a0536af7390edbd5c476 (diff) | |
download | portato-26942ea013e79d615eeca8ae0a38a39e5f945558.tar.gz portato-26942ea013e79d615eeca8ae0a38a39e5f945558.tar.bz2 portato-26942ea013e79d615eeca8ae0a38a39e5f945558.zip |
New repostuff as done in 0.12
Diffstat (limited to 'portato')
-rw-r--r-- | portato/constants.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/portato/constants.py b/portato/constants.py index 3ab5a80..937dea5 100644 --- a/portato/constants.py +++ b/portato/constants.py @@ -43,6 +43,9 @@ These should be set during the installation. @type SETTINGS_DIR: string @var TEMPLATE_DIR: Directory containing the UI template files. @type TEMPLATE_DIR: string + +@var REPOURI: the URI of the bzr repository -- only used in live versions +@type REPOURI: string """ import os from os.path import join as pjoin @@ -68,3 +71,6 @@ LOCALE_DIR = "i18n/" PLUGIN_DIR = pjoin(DATA_DIR, "plugins/") SETTINGS_DIR = pjoin(HOME, "."+APP) TEMPLATE_DIR = "portato/gui/templates/" + +# live versions only +REPOURI = "lp:portato" |