소스 검색

Debug stuff

pull/24/head
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):


불러오는 중...
취소
저장