44
49
template_path = 'loggerhead.templates.directory'
46
51
def __init__(self, static_url_base, path, name):
53
63
self._static_url_base = static_url_base
54
64
self.log = logging.getLogger('')
56
def get_values(self, h, args, kwargs, response):
66
def get_values(self, path, kwargs, response):
57
67
listing = [d for d in os.listdir(self._path)
59
69
and os.path.isdir(os.path.join(self._path, d))]
60
70
listing.sort(key=lambda x: x.lower())
66
74
p = os.path.join(self._path, d)