Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Fix memory of units in test case | Dan Goodliffe | 2020-12-18 |
| | |||
* | Fix header in testAccept | Dan Goodliffe | 2020-12-17 |
| | | | | Prevents memory through Boost UTF | ||
* | xwwwFormUrlEncoded improvements | Dan Goodliffe | 2020-06-17 |
| | | | | | Match chars stated in rfc, constexpr lookups for read and write, standardized iterator output. | ||
* | Clang format and tidy | Dan Goodliffe | 2020-06-07 |
| | |||
* | Set samesite=strict on cookies | Dan Goodliffe | 2020-01-18 |
| | |||
* | Helper for testing for HTTPS | Dan Goodliffe | 2020-01-18 |
| | |||
* | Performance fixesicespider-0.6.2 | Dan Goodliffe | 2019-11-12 |
| | |||
* | Add clang-tidy rules and fix all the things | Dan Goodliffe | 2019-03-27 |
| | | | | Note: something in here appears to break linking in release build | ||
* | Enable some clang-tidy checks and fix up accordingly | Dan Goodliffe | 2019-03-27 |
| | |||
* | Extract the real function parameter type | Dan Goodliffe | 2019-02-08 |
| | | | | | Includes demonstrable use of string_view in an interface and makes use of the the end-to-end string_view support | ||
* | Remove boost::filesystem in favour of std::filesystem | Dan Goodliffe | 2019-02-03 |
| | |||
* | HTTP headers are case insensitiveicespider-0.5.1 | Dan Goodliffe | 2019-01-22 |
| | |||
* | Add test case for response status line | Dan Goodliffe | 2019-01-14 |
| | |||
* | Cut 4 string_view everything else | Dan Goodliffe | 2019-01-14 |
| | | | | | | Use std::optional and std::string_view throughout the CGI parser and core. Removes some of the hacks and tidies up some of the error handling. | ||
* | Cut 3 string_view (accept parser) | Dan Goodliffe | 2019-01-14 |
| | | | | | | | Complete rewrite of the accept header parser to be string_view compatible and far more standards compliant, including checking for invalid requests. Bolsters tests over accept header parser considerably. | ||
* | Move Accept header parsing into a testable place and test it | Dan Goodliffe | 2019-01-14 |
| | |||
* | Cut 2 string_view | Dan Goodliffe | 2019-01-14 |
| | |||
* | Route Optionsicespider-0.4.1 | Dan Goodliffe | 2018-04-16 |
| | | | | | | Provide an irouteOptions constructor that takes new class RouteOptions for finer grained control over the setup process. This currently provides the option to not add the default serializers. | ||
* | C++17 and Ice 3.7icespider-0.4 | Dan Goodliffe | 2018-04-15 |
| | | | | | Update all code to be C++17 with Ice 3.7 and minor interface changes in keeping with C++CG and dependencies. | ||
* | Default 500 error handler | Dan Goodliffe | 2018-03-03 |
| | | | | | | Include the exception class name in the error report into the default error page. Write the same output to the error log after the request dump. | ||
* | Add some nice cxxflagsicespider-0.2.3 | Dan Goodliffe | 2018-02-11 |
| | |||
* | Default 500 error handler | Dan Goodliffe | 2018-02-11 |
| | | | | | | Don't write .what() into the HTTP status header... it might contain things that aren't valid there. Instead, write the class name there and write .what() in the response body. | ||
* | Remove non-sense test route with conflicting path/method | Dan Goodliffe | 2018-02-10 |
| | |||
* | Upgrade to libxml++3 | Dan Goodliffe | 2017-04-28 |
| | |||
* | Support for plugable error handlers | Dan Goodliffe | 2017-01-30 |
| | |||
* | Fix case where operation returns void but has declared exception list ↵ | Dan Goodliffe | 2017-01-30 |
| | | | | (returnsdata == true, but returntype == null) | ||
* | Refactor to make available some classes for testing | Dan Goodliffe | 2016-12-27 |
| | |||
* | Be explicit about -z,lazy as default linking is -z,now when hardened profile ↵ | Dan Goodliffe | 2016-12-27 |
| | | | | is picked up | ||
* | Make mutator into a collection (mutators) | Dan Goodliffe | 2016-12-11 |
| | |||
* | Split implementation details (in CGI) of headers away from core functionality | Dan Goodliffe | 2016-11-11 |
| | |||
* | Pass the request into the mutator function | Dan Goodliffe | 2016-10-28 |
| | |||
* | Support setting a mutator function to operate on response model before ↵ | Dan Goodliffe | 2016-10-27 |
| | | | | returning it | ||
* | Add basic support for base classes for routes | Dan Goodliffe | 2016-10-25 |
| | |||
* | Start writing some bits to a .h file | Dan Goodliffe | 2016-10-24 |
| | |||
* | Move XwwwFormUrlEncoded code into core from fcgi. | Dan Goodliffe | 2016-10-12 |
| | | | | | Add functions for encoding strings as well as just decoding them. Add wrapper functions for setting cookies. | ||
* | Add support for cookie parameters | Dan Goodliffe | 2016-10-09 |
| | |||
* | Adds a session manager interface and basic file based implementation as a plugin | Dan Goodliffe | 2016-10-08 |
| | |||
* | Add ability to load plugins (such as a session manager service) into the ↵ | Dan Goodliffe | 2016-10-08 |
| | | | | core's communicator | ||
* | Imrpove ability to load/parse properties | Dan Goodliffe | 2016-10-08 |
| | |||
* | Clean test app class | Dan Goodliffe | 2016-10-08 |
| | |||
* | Use a single implementation for parsing www form url encoded data in post ↵ | Dan Goodliffe | 2016-10-08 |
| | | | | and query string | ||
* | Increased flexibility for reading post body content and support for ↵ | Dan Goodliffe | 2016-10-07 |
| | | | | deserializing x-www-form-urlencoded payloads | ||
* | Build slicer bits for http into common | Dan Goodliffe | 2016-10-05 |
| | |||
* | Fix where to find uploaded content type | Dan Goodliffe | 2016-10-04 |
| | |||
* | Replace :: with . when looking up proxy endpoint details | Dan Goodliffe | 2016-09-27 |
| | |||
* | Routes and output serializers as compact json object maps | Dan Goodliffe | 2016-09-25 |
| | |||
* | Parameters should be a map, not a list | Dan Goodliffe | 2016-09-17 |
| | |||
* | Fix up lots of test coverage | Dan Goodliffe | 2016-09-17 |
| | |||
* | Bad request on missing or invalid parameters | Dan Goodliffe | 2016-09-17 |
| | |||
* | Move exceptions to their own files | Dan Goodliffe | 2016-09-17 |
| |