mirror of
https://github.com/servo/servo.git
synced 2025-06-24 09:04:33 +01:00
15 lines
636 B
Python
15 lines
636 B
Python
def main(request, response):
|
|
content = []
|
|
|
|
for key, values in sorted(item for item in request.POST.items() if not hasattr(item[1][0], "filename")):
|
|
content.append("%s=%s," % (key, values[0]))
|
|
content.append("\n")
|
|
|
|
for key, values in sorted(item for item in request.POST.items() if hasattr(item[1][0], "filename")):
|
|
value = values[0]
|
|
content.append("%s=%s:%s:%s," % (key,
|
|
value.filename,
|
|
value.headers["Content-Type"],
|
|
len(value.file.read())))
|
|
|
|
return "".join(content)
|