mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-27 13:19:24 +01:00
Allow non-basenames in dirize.
This commit is contained in:
parent
a30dd2d8de
commit
ae4b8f7861
10
src/conf.py
10
src/conf.py
@ -539,11 +539,11 @@ class Directory(registry.String):
|
||||
return v
|
||||
|
||||
def dirize(self, filename):
|
||||
dir = self()
|
||||
dirname = os.path.basename(filename)
|
||||
if not dirname.endswith(dir): # ??? Should this be an "in" test instead?
|
||||
return os.path.join(dir, os.path.basename(filename))
|
||||
return filename
|
||||
if os.path.isabs(filename):
|
||||
selfAbs = os.path.abspath(self())
|
||||
commonPrefix = os.path.commonprefix([selfAbs, filename])
|
||||
filename = filename[len(commonPrefix)+1:] # +1 for extra /.
|
||||
return os.path.join(self(), filename)
|
||||
|
||||
class DataFilename(registry.String):
|
||||
def __call__(self):
|
||||
|
Loading…
Reference in New Issue
Block a user