rename static to ui

Directory rename
This commit is contained in:
Adam Young
2011-01-19 12:26:14 -05:00
committed by Endi Sukma Dewata
parent 835436df15
commit b9ad279ad2
245 changed files with 24 additions and 20 deletions

View File

@@ -69,7 +69,7 @@ class WebUIApp(object):
path_info = environ['PATH_INFO'].lstrip('/')
if path_info == '':
path_info = self.INDEX_FILE
requested_file = path.join(getcwd(), 'install/static/', path_info)
requested_file = path.join(getcwd(), 'install/ui/', path_info)
extension = requested_file.rsplit('.', 1)[-1]
if extension not in self.EXTENSION_TO_MIME_MAP: