X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/adb284945d36cdb469532ac84ec4c69fffe377e4..c8c839608b98cc3b37e90d049b66e646f8e46cd9:/lib/python/Tools/Directories.py diff --git a/lib/python/Tools/Directories.py b/lib/python/Tools/Directories.py index 258940b4..3736b7b5 100644 --- a/lib/python/Tools/Directories.py +++ b/lib/python/Tools/Directories.py @@ -9,6 +9,7 @@ SCOPE_USERETC = 5 SCOPE_CONFIG = 6 SCOPE_LANGUAGE = 7 SCOPE_HDD = 8 +SCOPE_PLUGINS = 9 PATH_CREATE = 0 PATH_DONTCREATE = 1 @@ -18,6 +19,7 @@ defaultPaths = { SCOPE_SYSETC: ("/etc/", PATH_DONTCREATE), SCOPE_FONTS: ("/usr/share/fonts/", PATH_DONTCREATE), SCOPE_CONFIG: ("/etc/enigma2/", PATH_CREATE), + SCOPE_PLUGINS: ("/usr/lib/enigma2/python/Plugins/", PATH_CREATE), SCOPE_LANGUAGE: ("/usr/share/enigma2/po/", PATH_CREATE), @@ -39,9 +41,7 @@ fallbackPaths = { } def resolveFilename(scope, base = ""): - print "getting scope", scope, "with base", base path = defaultPaths[scope] - print "path:", path if path[1] == PATH_CREATE: if (not pathExists(defaultPaths[scope][0])): @@ -89,11 +89,12 @@ def fileExists(f): return exists def getRecordingFilename(basename): - # filter out non-allowed characters non_allowed_characters = "/.\\" - filename = "" + + basename = basename.replace('\xc2\x86', '').replace('\xc2\x87', '') + for c in basename: if c in non_allowed_characters: c = "_"