2015-02-26 18:17:40 +00:00
|
|
|
"""
|
2015-02-27 14:24:27 +00:00
|
|
|
This inline script modifies a streamed response.
|
|
|
|
If you do not need streaming, see the modify_response_body example.
|
|
|
|
Be aware that content replacement isn't trivial:
|
|
|
|
- If the transfer encoding isn't chunked, you cannot simply change the content length.
|
|
|
|
- If you want to replace all occurences of "foobar", make sure to catch the cases
|
|
|
|
where one chunk ends with [...]foo" and the next starts with "bar[...].
|
2015-02-26 18:17:40 +00:00
|
|
|
"""
|
|
|
|
|
2015-02-27 14:24:27 +00:00
|
|
|
|
2015-02-26 17:44:47 +00:00
|
|
|
def modify(chunks):
|
|
|
|
"""
|
|
|
|
chunks is a generator that can be used to iterate over all chunks.
|
|
|
|
"""
|
2015-09-03 22:46:42 +00:00
|
|
|
for chunk in chunks:
|
|
|
|
yield chunk.replace("foo", "bar")
|
2015-02-27 14:24:27 +00:00
|
|
|
|
2015-02-26 17:44:47 +00:00
|
|
|
|
2015-02-27 14:24:27 +00:00
|
|
|
def responseheaders(context, flow):
|
2015-05-30 00:03:28 +00:00
|
|
|
flow.response.stream = modify
|