Breaking changes: Accessing request data should only be done using basic_request<>::operator[] now; member functions like basic_request<>::GET() are gone now. Examples have been updated.
Also:
Internally, data maps are accessed using eg. common::get_vars(impl.var_) where impl.var_ is the Boost.Fusion map of all the request types.
Added "_data"-less alternatives to get_data, post_data, etc, so you can do eg.
assert( request[get]Hello == request[get_data]hello); note: case insensitive
Other minor cleanups/refactoring.
(No files)
Note:
See TracChangeset
for help on using the changeset viewer.