(self, env, start_response)
| 76 | return [pformat(env).encode("utf8")] |
| 77 | |
| 78 | def no_cache(self, env, start_response): |
| 79 | headers = [("Cache-Control", "no-cache")] |
| 80 | start_response("200 OK", headers) |
| 81 | return [pformat(env).encode("utf8")] |
| 82 | |
| 83 | def permanent_redirect(self, env, start_response): |
| 84 | headers = [("Location", "/permalink")] |