The current functionality is that all do_* functions will automatically redirect the response back to the page to avoid double form submissions (A.K.A. the post-reload-get pattern).
However, I think this introduces a bit of uncertainty. Especially for newbies. Think about the hello-you example project: do we really need to be explaining why we need to suppress the automatic reload in order to see the name in the response?
The current functionality is that all
do_*
functions will automatically redirect the response back to the page to avoid double form submissions (A.K.A. the post-reload-get pattern).However, I think this introduces a bit of uncertainty. Especially for newbies. Think about the hello-you example project: do we really need to be explaining why we need to suppress the automatic reload in order to see the name in the response?