aboutsummaryrefslogtreecommitdiffstats
path: root/routing.h
Commit message (Collapse)AuthorAgeFilesLines
* source resturcturing + CMakeipknHama2014-08-071-656/+0
|
* long polling implementation completeipknHama2014-08-061-41/+54
| | | | | | 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-061-13/+53
| | | | | | | | | | void handler(const crow::request&, crow::response& res) { res.send(data) res.end() } https://news.ycombinator.com/item?id=8004017
* use 'template' keyword to treat 'operator ()' as a dependent template name ↵Alex Butum2014-07-081-1/+1
| | | | in TaggedRule class
* Fixed compilation error - CROW_LOG_DEBUG not declared in this scopeAlex Butum2014-07-081-0/+1
|
* Added log level supportAntony Woods2014-05-201-10/+10
|
* Added primitive loggingAntony Woods2014-05-201-3/+3
|
* caching datetime string for Date headeripkn2014-05-021-3/+3
|
* rename flask to crowipknHama2014-04-271-30/+29
|
* increasing unittest coverage; fix crash bug while parsing headersipknHama2014-04-221-2/+1
|
* increase test coverage of json.hipknHama2014-04-221-72/+12
|
* add support for handlers with request argument, add http methodipknHama2014-04-201-39/+88
|
* fix routing bugs, some optimization on trieipknHama2014-04-161-10/+110
|
* add more parameter typesipknHama2014-04-151-7/+106
|
* add test for parameter tagging, responseipknHama2014-04-151-0/+1
|
* preparing unittest, assert on handler with void return typeipknHama2014-04-151-1/+5
|
* parameter passing done for intipknHama2014-04-151-63/+134
|
* compiler error on invalid handler type; still no routing for dynamic urlipknHama2014-04-131-27/+178
|
* Trie based routingipknHama2014-04-111-15/+106
|
* removing black magic; merging router with appipknHama2014-04-101-88/+55
|
* routing class working versionipknHama2014-04-031-9/+101
|
* preparing compile time url parsingipknHama2014-04-031-0/+39