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

This commit is contained in:
Sebastian Pipping 2012-10-26 22:54:14 +02:00 committed by Sebastian Lohff
parent 6a38212242
commit 2886d1fb07
1 changed files with 4 additions and 0 deletions

View File

@ -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: