Ben Kurtovic 12 роки тому
джерело
коміт
4ef8900b29
2 змінених файлів з 3 додано та 1 видалено
  1. +2
    -0
      pages/debug.mako
  2. +1
    -1
      toolserver/cookies.py

+ 2
- 0
pages/debug.mako Переглянути файл

@@ -3,6 +3,8 @@
% for key, value in environ.items():
% if key not in ["wsgi.input", "wsgi.errors", "PATH"]:
<li><b>${key}</b>: ${value}</li>
% elif key == "wsgi.input":
<li><b>${key}</b>: ${value.read(environ.get("CONTENT_LENGTH", 0))}</li>
% endif
% endfor
</ul>


+ 1
- 1
toolserver/cookies.py Переглянути файл

@@ -26,7 +26,7 @@ class _CookieManager(SimpleCookie):
def value_encode(self, value):
encoded = base64.b64encode(value.encode("utf8"))
quoted = super(_CookieManager, self).value_encode(encoded)[1]
return value, encoded
return value, quoted

@property
def path(self):


Завантаження…
Відмінити
Зберегти