equal
deleted
inserted
replaced
163 try: |
163 try: |
164 tmpl = self.templater(req) |
164 tmpl = self.templater(req) |
165 ctype = tmpl('mimetype', encoding=self.encoding) |
165 ctype = tmpl('mimetype', encoding=self.encoding) |
166 ctype = templater.stringify(ctype) |
166 ctype = templater.stringify(ctype) |
167 |
167 |
168 # check allow_read / deny_read config options |
168 # check read permissions non-static content |
169 self.check_perm(req, None) |
169 if cmd != 'static': |
|
170 self.check_perm(req, None) |
170 |
171 |
171 if cmd == '': |
172 if cmd == '': |
172 req.form['cmd'] = [tmpl.cache['default']] |
173 req.form['cmd'] = [tmpl.cache['default']] |
173 cmd = req.form['cmd'][0] |
174 cmd = req.form['cmd'][0] |
174 |
175 |