소스 검색

Fix environ var parsing.

pull/24/head
Ben Kurtovic 11 년 전
부모
커밋
c346161eed
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +1
    -1
      copyvios/misc.py
  2. +1
    -1
      pages/debug.mako

+ 1
- 1
copyvios/misc.py 파일 보기

@@ -15,7 +15,7 @@ class Query(object):
if method == "GET":
parsed = parse_qs(environ["QUERY_STRING"])
elif method == "POST":
size = environ.get("CONTENT_LENGTH", 0)
size = int(environ.get("CONTENT_LENGTH", 0))
parsed = parse_qs(environ["wsgi.input"].read(size))
else:
parsed = {}


+ 1
- 1
pages/debug.mako 파일 보기

@@ -4,7 +4,7 @@
% if key not in ["wsgi.input", "wsgi.errors", "PATH"]:
<li><b>${key}</b>: ${value | h}</li>
% elif key == "wsgi.input":
<li><b>${key}</b>: ${value.read(environ.get("CONTENT_LENGTH", 0)) | h}</li>
<li><b>${key}</b>: ${value.read(int(environ.get("CONTENT_LENGTH", 0))) | h}</li>
% endif
% endfor
</ul>


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