Provided by: libdancer2-perl_0.11+dfsg-1_all
NAME
Dancer2::Core::HTTP - helper for rendering HTTP status codes for Dancer2
VERSION
version 0.11
FUNCTIONS
status(status_code) Dancer2::Core::HTTP->status(200); # returns 200 Dancer2::Core::HTTP->status('Not Found'); # returns 404 Dancer2::Core::HTTP->status('bad_request'); # 400 Returns a HTTP status code. If given an integer, it will return the value it received, else it will try to find the appropriate alias and return the correct status. status_message(status_code) Dancer2::Core::HTTP->status_message(200); # returns 'OK' Dancer2::Core::HTTP->status_message('error'); # returns 'Internal Server Error' Returns the HTTP status message for the given status code.
AUTHOR
Dancer Core Developers
COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Alexis Sukrieh. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.