Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2022-07-28 | Apply suggestions from code review | zhoupeiheng | 2 | -30/+23 | |
2022-07-28 | test: check_static_file_route_pattern | zhoupeiheng | 1 | -0/+28 | |
2022-07-20 | Fix test | cyqsimon | 1 | -1/+1 | |
2022-07-18 | Bump deps | Sven-Hendrik Haase | 1 | -3/+3 | |
2022-06-26 | Create directory (#781) | Sheepy | 1 | -0/+163 | |
* Add ability to make directory Frontend for making directories Fix potential security vulnerability (CWE-23) Add tests Update README.md Disallow using parent directories altogether Fix formatting Fix clippy warnings Address review comments Update README.md Change `making` to `creation` Co-authored-by: Sven-Hendrik Haase <svenstaro@gmail.com> Have make directory flag require file upload flag Address review comments * Disallow uploading files and making directories through symlinks when disabled * Add test * Clippy formatting changes * Add test doc comment | |||||
2022-05-23 | Get rid of dead code warning for common test utility function | Sven-Hendrik Haase | 1 | -0/+2 | |
2022-05-18 | Fix security issue with --no-symlinks | Sven-Hendrik Haase | 1 | -21/+27 | |
Even with --no-symlinks specified, if a direct path to a symlink had been entered, it would be resolved. This fixes that behavior and improves tests to ensure this behavior. | |||||
2022-03-13 | Add test cases for the media-type parameters | Johannes May | 1 | -0/+20 | |
2022-02-06 | Fix route_prefix for css and favicon | Ali MJ Al-Nasrawy | 2 | -4/+5 | |
2022-02-05 | update to actix-web v4.0-rc.2 | Ali MJ Al-Nasrawy | 4 | -7/+61 | |
2022-01-04 | Bump deps | Sven-Hendrik Haase | 1 | -1/+1 | |
2021-12-29 | Implement --route-prefix to set specific route prefix | jikstra | 1 | -0/+15 | |
2021-12-09 | Bump deps | Sven-Hendrik Haase | 1 | -1/+1 | |
2021-10-26 | Add test for --spa | Sven-Hendrik Haase | 1 | -5/+22 | |
2021-10-18 | Update clap | Sven-Hendrik Haase | 1 | -2/+2 | |
2021-09-23 | Golf tests a bit | Sven-Hendrik Haase | 1 | -38/+30 | |
2021-09-11 | cargo fmt | jikstra | 1 | -1/+3 | |
2021-09-10 | Fix tests | jikstra | 2 | -2/+14 | |
2021-09-10 | Remove unused imports and files | jikstra | 2 | -16/+0 | |
2021-09-10 | Fix tests | jikstra | 1 | -2/+2 | |
2021-09-10 | Apply requested changes | jikstra | 1 | -2/+0 | |
2021-09-04 | Better name and docs for symlink test | Ali MJ Al-Nasrawy | 1 | -1/+7 | |
2021-09-04 | Adress review comments | Ali MJ Al-Nasrawy | 1 | -4/+8 | |
2021-09-02 | cargo fmt & cargo clippy | jikstra | 1 | -5/+3 | |
2021-09-02 | Fix tests | jikstra | 1 | -16/+19 | |
2021-09-01 | Implement a raw rendering mode for recursive folder download | jikstra | 1 | -0/+103 | |
- Raw mode only displays file/folders and is more focused on computer processing - Display a banner in footer to recursively download the current folder with wget | |||||
2021-09-01 | file_upload.rs: sanitize path input | Ali MJ Al-Nasrawy | 1 | -1/+80 | |
Signed-off-by: Ali MJ Al-Nasrawy <alimjalnasrawy@gmail.com> | |||||
2021-08-30 | Implement show symlink destination | Dean Li | 1 | -4/+15 | |
Add option `show_symlink_info` to represent show symlink info or not. (Default to no) Show symlink destination after symlink symbol in directory listing Resemble `ls -l` and also the short argument select for this feature is also `-l`. Basic testing is included. Related to #499 | |||||
2021-08-30 | order interface vertically | Ali MJ Al-Nasrawy | 1 | -9/+6 | |
2021-08-30 | tests for binding behavior | Ali MJ Al-Nasrawy | 1 | -0/+91 | |
2021-08-30 | Switch from structopt to clap v3 | Sven-Hendrik Haase | 1 | -1/+2 | |
2021-08-29 | Fix stderr output in test index_fallback_to_listing | Sven-Hendrik Haase | 1 | -3/+4 | |
2021-08-29 | list directory if index not found | Ali MJ Al-Nasrawy | 1 | -0/+11 | |
2021-08-28 | Execute backslash test only on non windows systems | jikstra | 1 | -0/+1 | |
2021-08-28 | Add file with backslash to the test FILES fixture | jikstra | 1 | -0/+1 | |
2021-08-27 | Add TLS support via rustls (fixes #18) | Sven-Hendrik Haase | 5 | -8/+156 | |
2021-08-26 | Golf tests a bit more | Sven-Hendrik Haase | 1 | -9/+3 | |
2021-08-26 | new partial-injection syntax | Ali MJ Al-Nasrawy | 4 | -8/+8 | |
2021-08-26 | address comments | Ali MJ Al-Nasrawy | 4 | -23/+41 | |
2021-08-26 | tests: Refactor! | Ali MJ Al-Nasrawy | 8 | -442/+192 | |
Remove duplicate code responsible for the initial setup and teardown of the test binary. This introduces `TestServer` as a resource manager for a running miniserve binary, which can be created with the fixtures `server()` and `server_no_stderr()` It also provides convenience function for handling server url. | |||||
2021-04-11 | Test for --no-symlink option | Ali MJ Al-Nasrawy | 1 | -8/+18 | |
2021-04-11 | Separate tar archive and tar flags | Dean Li | 1 | -0/+41 | |
It used to have one flag (-r) to enable both tar archive and tar. Now it has two flags [ -r: for tar, -g: for tar archive]. Related to #451 | |||||
2021-04-06 | Test URL encoding for special characters | Ali MJ Al-Nasrawy | 2 | -0/+9 | |
2021-03-31 | Test for symlink directories and files | Ali MJ Al-Nasrawy | 1 | -0/+64 | |
Replace some of the testing files and directories with symbolic links. They should behave exactly the same. | |||||
2021-03-28 | Fix tests | Sven-Hendrik Haase | 1 | -2/+3 | |
2021-03-28 | Generate completions with `miniserve --print-completions <shell>` | Andy Freeland | 1 | -1/+27 | |
This patch adds a `--print-completions` option to generate shell completion files at runtime. This ensures the completions are always up to date. Fixes #377. | |||||
2021-03-20 | Add negative test for hidden directories | Sven-Hendrik Haase | 1 | -0/+31 | |
2021-03-20 | Hide some annoying test output | Sven-Hendrik Haase | 1 | -0/+1 | |
2021-03-20 | Finish up --hidden feature | Sven-Hendrik Haase | 2 | -8/+3 | |
2021-03-07 | Add option to show hidden files | Sven-Hendrik Haase | 2 | -4/+69 | |