aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-06-15 17:35:05 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-06-15 17:35:05 +0000
commit568ac075b7a3a6ded4cd080ef5a2881b003b33fe (patch)
treeb2e597ea9a6a8307f3d52cae9a966954b398178e /lib/python
parent10c60652633e62cf120102f36b9354c7d330147c (diff)
downloadenigma2-568ac075b7a3a6ded4cd080ef5a2881b003b33fe.tar.gz
enigma2-568ac075b7a3a6ded4cd080ef5a2881b003b33fe.zip
support path_prefix
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Tools/Directories.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/python/Tools/Directories.py b/lib/python/Tools/Directories.py
index 32049072..7c50bd9f 100644
--- a/lib/python/Tools/Directories.py
+++ b/lib/python/Tools/Directories.py
@@ -42,10 +42,14 @@ fallbackPaths = {
SCOPE_HDD: [("/hdd/movies", PATH_MOVE)]
}
-def resolveFilename(scope, base = ""):
+def resolveFilename(scope, base = "", path_prefix = None):
+ if base[0:2] == "~/":
+ # you can only use the ~/ if we have a prefix directory
+ assert path_prefix is not None
+ base = path_prefix + base[2:]
# don't resolve absolute paths
- if len(base) and base[0] == '/':
+ if base[0:1] == '/':
return base
path = defaultPaths[scope]