aboutsummaryrefslogtreecommitdiffstats
path: root/unittest.cpp
Commit message (Collapse)AuthorAgeFilesLines
* source resturcturing + CMakeipknHama2014-08-071-484/+0
|
* long polling implementation completeipknHama2014-08-061-6/+22
| | | | | | 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-0/+8
| | | | | | | | | | void handler(const crow::request&, crow::response& res) { res.send(data) res.end() } https://news.ycombinator.com/item?id=8004017
* mustache partial implementationipknHama2014-08-021-0/+12
|
* implementing mustache specs except partial and lambdasipknHama2014-08-021-5/+28
|
* begin implementation: mustache based template engineipknHama2014-08-021-0/+11
|
* Add HTTP/1.1 persistent connection timeoutipknHama2014-07-291-0/+2
| | | | manage Connection object life cycle using shared_ptr
* add support for "Expect: 100-continue"ipknHama2014-07-091-1/+1
|
* fix old naming, check for host headeripknHama2014-07-091-1/+0
|
* rename flask to crowipknHama2014-04-271-17/+17
|
* increasing unittest coverage; fix crash bug while parsing headersipknHama2014-04-221-4/+37
|
* increase test coverage of json.hipknHama2014-04-221-9/+42
|
* add support for handlers with request argument, add http methodipknHama2014-04-201-1/+1
|
* update json interfaceipknHama2014-04-201-3/+3
|
* add json reading feature; optimizationipknHama2014-04-191-5/+70
|
* preparing JSON library for flask++; complete writing featureipknHama2014-04-171-0/+14
|
* fix routing bugs, some optimization on trieipknHama2014-04-161-0/+95
|
* multi server testipknHama2014-04-151-1/+52
|
* update makefile, add more testipknHama2014-04-151-2/+18
|
* add test for parameter tagging, responseipknHama2014-04-151-5/+47
|
* preparing unittest, assert on handler with void return typeipknHama2014-04-151-4/+58
|
* parameter passing done for intipknHama2014-04-151-2/+6
|
* removing black magic; merging router with appipknHama2014-04-101-34/+0
|
* routing class working versionipknHama2014-04-031-5/+18
|
* preparing compile time url parsingipknHama2014-04-031-0/+27