Hide ../ in listing of the (virtual) root directory

tests
Sebastian Pipping 12 years ago committed by Sebastian Lohff
parent 6a38212242
commit 2886d1fb07

@ -418,6 +418,10 @@ class DirListingHandler(FileBaseHandler):
# create path to item
itemPath = os.path.join(path, item)
# Hide "../" in listing of the (virtual) root directory
if item == '..' and path == DirListingHandler.targetDir.rstrip('/') + '/':
continue
# try to stat file for size, last modified... continue on error
stat = None
try:

Loading…
Cancel
Save