aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Made parameter_tag related functions to constexpr/static to avoid linker ↵Siva Chandran2015-04-251-3/+3
| | | | symbol redefinition error when crow header is included in multiple cpp files.
* Merge pull request #58 from gabrielbiga/crow_gabrielipkn2015-04-141-2/+11
|\ | | | | Fix Content-Type not setted passing JSON object by rvalue reference.
| * Revert "Suggestion: Change the server name variable to a constant on settings.h"Gabriel Marinho2015-04-132-5/+1
| | | | | | | | This reverts commit 100f4a7b7366fc6fc6b92426487be25af7b67a57.
| * Suggestion: Change the server name variable to a constant on settings.hGabriel Marinho2015-04-132-1/+5
| | | | | | | | With this constant is very more easy to change the Crow server name.
| * Fix Content-Type not setted passing JSON object by rvalue reference.Gabriel Marinho2015-04-131-2/+11
|/ | | In this specific case, Crow is not setting the JSON Content-Type and this is causing "not well-formed" exception in the Firefox browser.
* Merge pull request #56 from acron0/logoipkn2015-04-101-0/+3
|\ | | | | Added logo to README.md
| * Added logo to README.mdAntony Woods2015-04-071-0/+3
|/
* Merge pull request #53 from JaewooSeo/vs2013ipkn2015-03-181-0/+4
|\ | | | | VS2013 x64 build support
| * VS2013 x64 build supportjaewoo.seo2015-03-151-0/+4
| |
* | Merge pull request #52 from nlogax/fix-typosipkn2015-03-142-16/+16
|\ \ | |/ |/| Fix parameter typos
| * Fix parameter typosJonas Westerlund2015-03-122-16/+16
|/
* Update README.mdipkn2015-02-251-0/+1
|
* Merge pull request #48 from lolobosse/masteripkn2015-02-232-1/+25
|\ | | | | Commented the examples
| * Corrected a typoLaurent Meyer2015-02-221-1/+1
| |
| * Commented the examples to be easier to be understood by someone new to it.Laurent Meyer2015-02-222-1/+13
| |
| * Added the comments for the param function because had problem to understand ↵Laurent Meyer2015-02-221-0/+12
|/ | | | the pattern of lists in URL parameters
* Update README.mdipkn2015-02-221-2/+3
| | | * VS2013 support
* Update amalgateipknHama2015-02-211-181/+251
|
* Add working example for VS2013 and update CMakeList.txtipknHama2015-02-213-2/+150
|
* remove thread_local variablesipknHama2015-02-205-110/+62
| | | | | * move thread_local variables forget_cached_date_str, timer_queue into each threads local stack
* 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-194-4/+216
|
* update amalgateipknHama2015-02-191-885/+1104
|
* added route_dynamicipknHama2015-02-194-121/+399
|
* fix #27 : handling routes with trailing slashJaeseung Ha2015-01-194-768/+897
|
* 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-083-2/+6
|
* Merge pull request #44 from nakosung/masteripkn2015-01-061-4/+4
|\ | | | | fixed typo
| * fixed typoNako Sung2015-01-021-4/+4
|/
* fix add_json to handle POST requestipknHama2014-12-151-0/+1
|
* Merge branch 'acron0-try-catch-handle'ipknHama2014-12-122-2/+38
|\
| * Merge branch 'try-catch-handle' of https://github.com/acron0/crow into ↵ipknHama2014-12-122-2/+38
|/| | | | | | | | | | | | | acron0-try-catch-handle Conflicts: amalgamate/crow_all.h
| * Added a general purpose try-catch around handle() for instances where an ↵Antony Woods2014-12-102-737/+773
| | | | | | | | 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
* | Merge branch 'xenosoz-master'ipknHama2014-12-123-4/+9
|\ \
| * | Add missing dynamic shared object infoXenosoz Hwang2014-12-123-4/+9
|/ / | | | | | | A linker option '-lpthread' was required on my Gentoo system.
* | Merge branch 'acron0-get-middleware2'ipknHama2014-12-1210-303/+418
|\ \ | |/ |/|
| * change pointer to reference; fix up spacesipknHama2014-12-128-162/+198
| |
| * Merged upstreamAntony Woods2014-12-106-900/+1011
| |\ | |/ |/|
* | Merge pull request #38 from acron0/json-boolipkn2014-11-123-0/+26
|\ \ | | | | | | Added boolean types to json rvalue (.b()) including test
| * \ Merged changes from masterAntony Woods2014-11-062-2/+8
| |\ \
| * | | Added boolean types to json rvalue (.b()) including testsAntony Woods2014-11-063-733/+773
| | | |
* | | | amalgamation updateipknHama2014-11-091-737/+737
| | | |
* | | | Fixes a bug that crow::json failed to parse double value starting with 0ipknHama2014-11-092-2/+28
| | | |