60
60
elif req.method == 'PATCH' or (req.method == 'PUT' and
61
61
'X-IVLE-Patch-Semantics' in req.headers_in and
62
62
req.headers_in['X-IVLE-Patch-Semantics'].lower() == 'yes'):
64
68
elif req.method == 'PUT':
66
74
# POST implies named operation.
67
75
elif req.method == 'POST':
68
76
# TODO: Check Content-Type and implement multipart/form-data.