aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Culling url paramsAntony Woods2014-09-151-25/+28
|
* fix example_chat crash bug when using (req, res) handleripknHama2014-09-142-4/+33
|
* add pragma once to settings.h, set log level to DEBUG for unittestipknHama2014-09-142-0/+4
|
* update amalgamateipknHama2014-09-141-5/+14
|
* added test case for handling repeated request wrongipknHama2014-09-141-0/+38
|
* Merge pull request #23 from acron0/response-completed-bugipkn2014-09-141-1/+2
|\ | | | | Fixed a bug in which response objects believed they were completed when they weren't.
| * Moved the 'completed = true' line to before the completion callbacksAntony Woods2014-09-131-1/+2
| |
* | Merge pull request #22 from acron0/travis-logo-in-readmeipkn2014-09-141-0/+2
|\ \ | |/ |/| Added travis build status logo to README
| * Added travis logoAntony2014-09-131-0/+2
|/
* remove clang from travisipknHama2014-09-121-2/+2
|
* travis update boost-latest, CMakeLists.txt boost version updateipknHama2014-09-122-2/+3
|
* travis add-repositoryipknHama2014-09-121-0/+3
|
* travis configuration update: g++-4.8, cmake checkipknHama2014-09-121-0/+4
|
* change libboost-dev to libboost-all-devipknHama2014-09-121-1/+1
|
* travis add boost installipknHama2014-09-121-0/+1
|
* travis CI build configuration fileipknHama2014-09-121-0/+12
|
* change default log level to INFOipknHama2014-09-121-1/+3
|
* fix compile erroripknHama2014-09-124-93/+108
| | | | | | - add consturctor to request - remove unused type using - include "logging.h" from dumb_timer_queue.h (who uses CROW_LOG_DEBUG)
* Update README.mdipkn2014-09-111-2/+2
|
* Implement example CookieParser middleware and testipknHama2014-09-118-578/+1169
|
* complete middleware implementationipknHama2014-09-086-92/+673
|
* basic middleware test: before_handleripknHama2014-09-078-25/+174
|
* add Middlewares template to Crow main class, context implementationipknHama2014-09-078-10/+184
|
* improve performance by 2xipkn2014-08-174-27/+58
| | | | change to io_service per CPU model
* fixed multithread crashipkn2014-08-162-25/+42
|
* fix compile bug (feeding std::endl to logger)ipknHama2014-08-161-1/+1
|
* Change to custom timer implementation to increase performanceipknHama2014-08-164-20/+110
|
* remove shared_ptr for performanceipknHama2014-08-153-29/+48
|
* Don't create logger object if corresponding log level is ignored.ipknHama2014-08-151-7/+15
|
* remove -pg compile flag (commited by mistake)ipknHama2014-08-151-2/+2
|
* tcmalloc linking addedipkn2014-08-143-0/+48
|
* Fixes #14, long polling leak removed.ipknHama2014-08-112-78/+79
|
* Update README.mdipkn2014-08-081-13/+28
|
* Merge branch 'directory-restructuring'ipknHama2014-08-0849-220/+9647
|\ | | | | | | | | | | Directory structure changed. Crow becomes a complete header-only library with http_parser_merged.h. Provides amalgamated crow_all.h (all feature in one header file).
| * amalgamation addedipknHama2014-08-088-114/+6774
| |
| * now crow becomes completely header onlyipknHama2014-08-079-27/+2658
| |
| * decide to be header onlyipknHama2014-08-073-385/+340
| |
| * improve mustache.hipknHama2014-08-072-15/+23
| |
| * spliting header implementation into cpp files, routing.cpp createdipknHama2014-08-075-357/+399
| |
| * cmake update, added template testipknHama2014-08-079-32/+68
| |
| * source resturcturing + CMakeipknHama2014-08-0743-56/+151
|/
* long polling implementation completeipknHama2014-08-0610-81/+304
| | | | | | change `res handle(req)' into `void handle(req, res)' connnection::handle is divide into two part: before and after user handler
* add supporing handlers with res parameteripknHama2014-08-065-13/+88
| | | | | | | | | | void handler(const crow::request&, crow::response& res) { res.send(data) res.end() } https://news.ycombinator.com/item?id=8004017
* Update README.mdipkn2014-08-041-7/+19
|
* mustache partial implementationipknHama2014-08-025-13/+107
|
* implementing mustache specs except partial and lambdasipknHama2014-08-024-154/+429
|
* replace lexical_cast to std::to_stringipknHama2014-08-021-3/+1
|
* begin implementation: mustache based template engineipknHama2014-08-0222-3/+1618
|
* Mac gcov error fix (remove -r option)Jaeseung Ha2014-07-291-1/+2
|
* Merge pull request #11 from c0untd0wn/masteripkn2014-07-292-7/+23
|\ | | | | support for Mac OS X