diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-09-27 18:38:35 +0200 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-09-27 18:38:35 +0200 |
| commit | d8c4d84dc75300c6d4d8b0adceafa33741960b92 (patch) | |
| tree | 00e2dfcc5c836d62fccff76c862e6ec3b0a74db8 /libs/cpp-httplib/test/www3/dir | |
| parent | fa088bb60692ba02d30d39affa9a31d9e2b688e2 (diff) | |
added http lib, working on AI invoice importing
Diffstat (limited to 'libs/cpp-httplib/test/www3/dir')
| -rw-r--r-- | libs/cpp-httplib/test/www3/dir/index.html | 8 | ||||
| -rw-r--r-- | libs/cpp-httplib/test/www3/dir/meson.build | 6 | ||||
| -rw-r--r-- | libs/cpp-httplib/test/www3/dir/test.html | 1 |
3 files changed, 15 insertions, 0 deletions
diff --git a/libs/cpp-httplib/test/www3/dir/index.html b/libs/cpp-httplib/test/www3/dir/index.html new file mode 100644 index 0000000..be3c05f --- /dev/null +++ b/libs/cpp-httplib/test/www3/dir/index.html @@ -0,0 +1,8 @@ +<html> +<head> +</head> +<body> + <a href="/dir/test.html">Test</a> + <a href="/hi">hi</a> +</body> +</html> diff --git a/libs/cpp-httplib/test/www3/dir/meson.build b/libs/cpp-httplib/test/www3/dir/meson.build new file mode 100644 index 0000000..74fe783 --- /dev/null +++ b/libs/cpp-httplib/test/www3/dir/meson.build @@ -0,0 +1,6 @@ +# SPDX-FileCopyrightText: 2021 Andrea Pappacoda +# +# SPDX-License-Identifier: MIT + +configure_file(input: 'index.html', output: 'index.html', copy: true) +configure_file(input: 'test.html', output: 'test.html', copy: true) diff --git a/libs/cpp-httplib/test/www3/dir/test.html b/libs/cpp-httplib/test/www3/dir/test.html new file mode 100644 index 0000000..6d70cd0 --- /dev/null +++ b/libs/cpp-httplib/test/www3/dir/test.html @@ -0,0 +1 @@ +test.html
\ No newline at end of file |
