Commit Graph

1411 Commits

Author SHA1 Message Date
dspverden
00ed2005bc IDE DEBUG symbol 2021-06-02 16:11:36 +02:00
Farook Al-Sammarraie
44748e63ea
Merge pull request #137 from thinking-tower/feature/visual-studio-installation
Feature/visual studio installation
2021-05-24 20:04:56 +03:00
Darius Tan
d7f1985e4c Edit example_vs.cpp to use CROW_ROUTE instead of app.route_dynamic.
VS2019 error:
'<function-style-cast>': cannot convert from 'void' to 'crow::response'
2021-05-23 20:59:21 +12:00
Darius Tan
44abb2d327 Add vcpkg.json to download Boost, openssl and zlib. Edit docs/getting-started/setup.md to show a simple setup with example_with_all.cpp. 2021-05-23 20:58:23 +12:00
Darius Tan
3bd1956e90 Change HTTPMethod::HEAD to HTTPMethod::Head, HTTPMethod::GET to
HTTPMethod::Get and HTTPMethod::OPTIONS to HTTPMethod::Options.

VS2019 error:
enum "crow::HTTPMethod" has no member "HEAD"
enum "crow::HTTPMethod" has no member "GET"
enum "crow::HTTPMethod" has no member "OPTIONS"

See https://github.com/ipkn/crow/pull/307 for a similar issue.
2021-05-23 19:58:01 +12:00
Farook Al-Sammarraie
d4b4c089bf
Merge pull request #135 from belugum/json_constness
Fix constness on json dump method #133
2021-05-18 21:04:07 +03:00
Maxime BELUGUET
7d6f82ce7e
Merge branch 'master' into json_constness 2021-05-18 18:59:13 +02:00
Farook Al-Sammarraie
7e72f2801a
Merge pull request #134 from wentasah/doc-fix
Fix CROW_MAIN documentation
2021-05-18 19:34:14 +03:00
Michal Sojka
57175a5e57 Fix CROW_MAIN documentation 2021-05-18 18:29:52 +02:00
Maxime BELUGUET
811ef62c6f Fix constness on json dump method #133 2021-05-18 18:10:39 +02:00
Farook Al-Sammarraie
361023bf08
Merge pull request #132 from CrowCpp/quality_of_life
Quality of life improvements
2021-05-13 13:45:29 +03:00
The-EDev
0e9b615c2b fixed typos 2021-05-13 13:30:48 +03:00
The-EDev
f39b9ddce7 Quality of life improvements
Added pop() method to query_string, same as get(), but removes the item from the querystring
Added std::string() operator to json::rvalue (allows std::string(json["abc"]), which returns any value that isn't a container to string)
Added lo() method to json::rvalue, returns a vector of json::rvalue containing whatever a json object or list has (difference being a list has no keys)
Added keys() method to json::rvalue, returns a vector of std::string containing the keys of a json object
Made json::wvalue use either std::map or std::unordered_map instead of just std::unordered_map
Added copy constructor to json::wvalue
Added size() method to json::wvalue, returns 1 or the size of the json list.
Added constructor to create json::wvalue from std::vector
Added keys() method to query_string
Documented query_string and improved json doc
Made tests and examples for all the additions
2021-05-12 15:45:55 +03:00
The-EDev
ef0ed8ce31 added development package for openssl 2021-04-17 12:28:43 +03:00
The-EDev
3aa13bcd64 fixed small issues 2021-04-17 12:21:55 +03:00
The-EDev
798f190fc8 added initial ssl testing 2021-04-17 02:33:35 +03:00
Farook Al-Sammarraie
301e535ca2
Merge pull request #129 from CrowCpp/mustache_coveralls
coverage fix for mustache + coveralls job id specification from drone
2021-04-14 19:10:41 +03:00
The-EDev
7df4b998b6 coverage fix for mustache + coveralls job id specification from drone 2021-04-14 14:03:27 +03:00
Farook Al-Sammarraie
027db780bd
Merge pull request #126 from CrowCpp/catch_all
Added Catchall route to Crow
2021-04-14 10:07:45 +03:00
The-EDev
5b7b066c68 fixed typo and incorrect type in assert error 2021-04-14 04:55:27 +03:00
Farook Al-Sammarraie
5f91587479
Merge branch 'master' into catch_all 2021-04-12 23:45:07 +03:00
Farook Al-Sammarraie
1087c2fb12
Merge pull request #128 from CrowCpp/double_logging
fixed issue where response is logged twice
2021-04-12 23:44:49 +03:00
The-EDev
738abdbd96 fixed issue where response is logged twice 2021-04-12 20:11:03 +03:00
Farook Al-Sammarraie
4aae614297
Merge branch 'master' into catch_all 2021-04-12 10:49:29 +03:00
The-EDev
16ae11a4e3 updated catchall to use references instead of pointers 2021-04-12 10:41:55 +03:00
The-EDev
f779a0f8a4 changed catchall to fit with the rest of crow
the macro is similar to CROW_ROUTE, added example to cmake, added unit test, and documentation
2021-04-12 08:25:09 +03:00
Farook Al-Sammarraie
4a663c97d9
Merge pull request #120 from CrowCpp/coveralls_fix
fix for coveralls not appearing in github status
2021-04-07 09:40:37 +03:00
Farook Al-Sammarraie
9213118fab
Merge branch 'master' into coveralls_fix 2021-04-07 03:36:31 +03:00
The-EDev
570ed2e04e changed CI_BRANCH to TRAVIS_BRANCH
I do not know why this works, but it worked on my test repository
2021-04-07 03:36:11 +03:00
Farook Al-Sammarraie
c3fcda1a77
Merge pull request #124 from ugermann/master
Fix error in examples/CMakeLists.txt
2021-04-06 14:59:30 +03:00
Ulrich Germann
e592e6b4f2 Fix error in examples/CMakeLists.txt
cmake 3.19 complained about Line 49:

> CMake Error at examples/CMakeLists.txt:49 (target_link_libraries):
>   The keyword signature for target_link_libraries has already been used with
>     the target "basic_example".  All uses of target_link_libraries with a
>       target must be either all-keyword or all-plain.
>
>   The uses of the keyword signature are here:
>
>    * examples/CMakeLists.txt:46 (target_link_libraries)

The reason is the missing keyword PRIVATE/INTERFACE/PUBLIC in the offending line.
This edit fixes this.
2021-04-06 11:17:51 +00:00
The-EDev
d569d121c0 fixed incorrect branch variable being used 2021-04-06 10:39:35 +03:00
Farook Al-Sammarraie
03e0f06551
Merge pull request #118 from CrowCpp/crow_main_polish
CROW_MAIN docs and script
2021-04-05 22:18:16 +03:00
Farook Al-Sammarraie
68db38ed98
Merge branch 'master' into crow_main_polish 2021-04-05 22:17:11 +03:00
Farook Al-Sammarraie
6cdecf5ca8
Merge pull request #119 from CrowCpp/actual_port
use actual ASIO port instead of the local port variable
2021-04-05 22:15:49 +03:00
Farook Al-Sammarraie
0d7c8ed617
Merge pull request #122 from Tibbel/master
Add a catch-all handler 2nd version
2021-04-05 14:16:56 +03:00
Tibbel
7ad1b79b7a
Delete example_catchall.cpp 2021-04-05 10:21:58 +02:00
Tibbel
76203052e7
Add files via upload 2021-04-05 10:21:14 +02:00
Tibbel
97ef2945ed
CROW_CATCHALL #endif if moved
CROW_CATCHALL #endif if moved
2021-04-05 10:14:38 +02:00
Tibbel
8f6655b032
Merge pull request #1 from Tibbel/Tibbel-catchall-handler
Add a catch-all handler 2nd version
2021-04-05 09:46:23 +02:00
Tibbel
5b880cef49
Add a catch-all handler 2nd version
Here is the modified catchall-function
example added
the code moved to routing.h
only the setter remained in app.h
the integer return is removed
i personally don't need the default parameters:
without crow::response the catchall can take no effect
and without crow::request you know nothing about the request
i only imagine one case, this is to set custom error pages.
so i don't thing default parameters have any big benefit here.
"#ifdef CROW_CATCHALL" was only for me, to find my own modifications feel free to replace it
2021-04-05 09:44:35 +02:00
The-EDev
553fae93bb fixed issue where "drone ignored failing make or ctest commands unless nothing else ran afterwards" 2021-04-05 07:18:45 +03:00
The-EDev
598f60b83e potential fix for coveralls not appearing in github status 2021-04-04 22:01:34 +03:00
The-EDev
111bef9deb use actual ASIO port instead of the local port variable
this is useful when using port 0 to have the OS provide a free port
2021-04-04 08:09:59 +03:00
The-EDev
1eeda1a22b mentioned crow_main in docs and edited mime_types generating script to include it. 2021-04-04 07:47:14 +03:00
Farook Al-Sammarraie
3e43a73db9
Merge pull request #117 from CrowCpp/HEAD_and_OPTIONS
`HEAD` and `OPTIONS` handling
2021-04-03 17:21:10 +03:00
The-EDev
b837877715 updated head and no_length variable names 2021-04-03 13:48:36 +03:00
The-EDev
5f68479ee5 fixed small merge issue 2021-04-03 06:40:14 +03:00
Farook Al-Sammarraie
1654acbfd0
Merge branch 'master' into HEAD_and_OPTIONS 2021-04-03 06:31:45 +03:00
The-EDev
33e8631676 Added Content-Length header back to HEAD response.
The reason for removing it was an issue with Curl rather than how HEAD should be handled.
2021-04-03 06:21:18 +03:00