Commits
Commit:
bf2850b938691a94e8926aa8952d043b620fdefb
Date:
Thu Apr 7 17:51:26 2022
UTC
install gmid.conf.5 too
Commit:
2a7f69f4eeb32a561a5a731e05145136030b4a71
Date:
Tue Mar 29 12:21:08 2022
UTC
fix `make static': compile `gg' too!
Commit:
57d2fca4b460c3c6aceb3f3aa6cc97ece9316022
Date:
Sat Mar 26 11:57:27 2022
UTC
add target `test' alias for `regress'
Commit:
e20755180f19eae16b5781e562978faf05f9579b
Date:
Thu Feb 3 10:13:44 2022
UTC
add gg to `make regress` dependencies
Commit:
135307cfb08ed0e3b3ecadc2fde0e13643c5265a
Date:
Sun Jan 30 13:35:45 2022
UTC
install gg too
Commit:
7ac42a178b4529832ca1b5a34d82b0a5ac999560
Date:
Sun Jan 30 13:05:13 2022
UTC
typo
Commit:
7c956fefc2035666770958e2cfaf278e20e6472a
Date:
Mon Jan 3 18:05:54 2022
UTC
track file dependency using -MMD if available
While here, move the SRCS variable to the configure and add the
-includes in Makefile.local; it de-clutters the Makefile a bit.
Commit:
613c827165ea6fbd5ff7d7b6160f52a33978ed6f
Date:
Mon Jan 3 17:12:07 2022
UTC
add `gg' to the list of things to clean
Commit:
8dfacf0242f7738efdac61cb77e435aeebdbe38c
Date:
Mon Jan 3 17:11:45 2022
UTC
remove TAGS and compile_flags.txt from the list of default actions
Commit:
8e7e7cacf22fe8845326623eb8e44e70e07c0455
Date:
Sun Jan 2 13:54:54 2022
UTC
fix regress when TESTS is more than one word
Commit:
ec5c5ced4a067647c94c6e1cbc7fe333e3a37c4b
Date:
Sun Jan 2 11:49:48 2022
UTC
make clean: don't clean regress, add cleanall for that
Commit:
72b033ef18ae3f82922f6f11ce0f5194e95f667d
Date:
Wed Dec 29 20:36:54 2021
UTC
add ability to proxy requests
Add to gmid the ability to forwad a request to another gemini server and
thus acting like a reverse proxy. The current syntax for the config
file is
server "example.com" {
...
proxy relay-to host:port
}
Further options (like the use of custom certificates) are planned.
cf. github issue #7
Commit:
5c7abf01515677804eeb2cf083e33e4ddd742caf
Date:
Wed Dec 29 18:01:08 2021
UTC
reimplement gg
This is a better version of gg. Initially it grew with flags directly
needed to the specific test cases I wanted to write, so it's ugly to use
but handy for tests.
This is a new and re-thought implementation that it is (hopefully)
easier to use both and "curl-like for gemini" but also for scripts and
tests cases.
One completely new feature is the proxying support with -P to send the
request to the given host.
Commit:
3096da4ef4418dc57f3e0b1fb1f89dceb2ca426a
Date:
Thu Oct 7 08:55:44 2021
UTC
allow to run only a subset of the runtime tests
with
make TESTS='test_1 test_2 ...' regress
now it's possible to run only that specified subset of tests. It's
really useful during debugging :)
Commit:
8518014cb921d7e652a05d55e23ab06e04539f0f
Date:
Sun Jul 11 07:23:53 2021
UTC
fix "warning: jobserver unavailable: using -j1"
https://www.gnu.org/software/make/manual/html_node/Error-Messages.html
Omar Polo