aboutsummaryrefslogtreecommitdiffstats
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
* fix tab to spaceipknHama2015-02-201-1/+1
|
* refactor DynamicRule and TaggedRule to support common patternipknHama2015-02-201-26/+46
| | | | * name, methods
* working on VS2013 supportipknHama2015-02-202-19/+27
| | | | | * wrap constexpr * add run-time version of get_parameter_tag
* add CROW_MSVC_WORKAROUND and CROW_CAN_USE_CPP14 macroipknHama2015-02-201-0/+14
|
* change `gmtime` to the safer versionipknHama2015-02-201-3/+12
|
* change 0b literals to 0x for VS2013 supportipknHama2015-02-201-6/+6
|
* change SFINAE mechanics to support VS2013ipknHama2015-02-201-12/+84
|
* add run-time check for handler type for `route_dynamic`ipknHama2015-02-192-1/+97
|
* added route_dynamicipknHama2015-02-193-121/+340
|
* fix #27 : handling routes with trailing slashJaeseung Ha2015-01-191-1/+36
|
* add member initialization:Jaeseung Ha2015-01-191-1/+1
| | | | need_to_call_after_handlers_
* add const to request::get_header_value methodJaeseung Ha2015-01-191-1/+1
|
* fix issue #39, bug at assigning vector to json wvalueipknHama2015-01-081-1/+1
|
* Merge branch 'try-catch-handle' of https://github.com/acron0/crow into ↵ipknHama2014-12-121-1/+19
|\ | | | | | | | | | | | | acron0-try-catch-handle Conflicts: amalgamate/crow_all.h
| * Added a general purpose try-catch around handle() for instances where an ↵Antony Woods2014-12-101-1/+19
| | | | | | | | exception would cause the server to never return a response. At some later date we would possibly still wish to provide a custom hook for dealing with 500s. Also note, after an exception is caught, the generated 500 response is still sent to middleware handlers
* | change pointer to reference; fix up spacesipknHama2014-12-126-149/+143
| |
* | Merged upstreamAntony Woods2014-12-103-9/+70
|\|
| * Merge pull request #38 from acron0/json-boolipkn2014-11-121-0/+9
| |\ | | | | | | Added boolean types to json rvalue (.b()) including test
| | * Merged changes from masterAntony Woods2014-11-061-1/+4
| | |\
| | * | Added boolean types to json rvalue (.b()) including testsAntony Woods2014-11-061-0/+9
| | | |
| * | | Fixes a bug that crow::json failed to parse double value starting with 0ipknHama2014-11-091-2/+2
| | | |
| * | | Fixes #32 by chaing types for operator overloading from int32_t to int, longJaeseung Ha2014-11-091-6/+22
| | | |
| * | | fix query_string bug that crashed testJaeseung Ha2014-11-091-0/+33
| | |/ | |/|
| * | Responses constructed from json::wvalue now automatically set the ↵Antony Woods2014-11-041-1/+4
| |/ | | | | | | appropriate Content-Type header
* | Post-pull commitAntony Woods2014-10-2411-21/+350
|\|
| * added missing header for amalgateipknHama2014-10-244-0/+6
| |
| * added missing header for amalgateipknHama2014-10-245-0/+5
| |
| * improve code qualityipknHama2014-10-241-49/+54
| | | | | | | | | | | | | | | | | | | | add missing includes (for amalgation) remove register keyword (remove clang warning) change define names to avoid name collision remove url size limit from query_string.h change MAX_KV_PAIRS define to const variable add & to arguments readability improve (although it requires additional allocation)
| * Fixed compiler errors and inlines some of the qs_parse functionsAntony Woods2014-10-222-10/+10
| |
| * Removed instance of 'using namespace std'Antony Woods2014-10-222-13/+9
| |
| * Fixed merge odditiesAntony Woods2014-10-142-4/+20
| |\
| * | Wrapped qs_parse as query_string and added testsAntony Woods2014-10-145-72/+323
| | |
| * | Fixed sign comparisson warningAntony Woods2014-09-231-1/+1
| | |
| * | Merge branch 'master' of github.com:acron0/crow into url-params-in-reqAntony Woods2014-09-231-23/+33
| |\ \
| * | | URL params are now present as a ci_map variable of requestAntony Woods2014-09-222-3/+69
| | | |
* | | | Re-implemented 'get_middleware()' as suggested, without changing the Server ↵Antony Woods2014-10-234-11/+59
| |_|/ |/| | | | | | | | constructor and now no longer encountering hangs
* | | HTTP GET/POST method distinguishipknHama2014-10-072-4/+20
| |/ |/|
* | fix bug in keep-alive header handlingipkn2014-09-191-28/+33
| |
* | support HTTP/1.0 keep alive (add corresponding header to response)ipknHama2014-09-201-0/+5
|/
* Culling url paramsAntony Woods2014-09-151-25/+28
|
* fix example_chat crash bug when using (req, res) handleripknHama2014-09-141-2/+16
|
* add pragma once to settings.h, set log level to DEBUG for unittestipknHama2014-09-141-0/+1
|
* Moved the 'completed = true' line to before the completion callbacksAntony Woods2014-09-131-1/+2
|
* change default log level to INFOipknHama2014-09-121-1/+3
|
* fix compile erroripknHama2014-09-123-4/+14
| | | | | | - add consturctor to request - remove unused type using - include "logging.h" from dumb_timer_queue.h (who uses CROW_LOG_DEBUG)
* Implement example CookieParser middleware and testipknHama2014-09-116-20/+201
|
* complete middleware implementationipknHama2014-09-084-12/+115
|
* basic middleware test: before_handleripknHama2014-09-076-23/+98
|
* add Middlewares template to Crow main class, context implementationipknHama2014-09-075-1/+175
|
* improve performance by 2xipkn2014-08-173-25/+55
| | | | change to io_service per CPU model