Commit Briefs

Omar Polo

revert aae8f6bf2b

it's just not worth it to inflict this breaking change to the users.


Omar Polo

+log.h


Omar Polo

provide a more usual fatal

fatal usually appends the error string. Add 'fatalx' that doesn't. Fix callers and move the prototypes to log.h



Omar Polo

fold long lines



Omar Polo

add tags target



Omar Polo

drop landlock/seccomp and capsicum support

it reached a point where this stuff is not maintenable. I'd like to move forward with gmid, but the restriction of capsicum and the linux environment at large that make landlock unusable (how can you resolve DNS portably when under landlock?) -and don't get me started on seccomp- makes it impossible for me to do any work. So, I prefer removing the crap, resuming working on gmid by cleaning stuff and consolidating the features, improving various things etc... and then eventually see how to introduce some sandboxing again on other systems. Patches to resume sandboxing are, as always, welcome!



Omar Polo

add a disclaimer


Omar Polo

update the site for 1.8.6



Omar Polo

more is*() unsigned char cast

continuation of 6130e0eeac9db4fa8e6fe5934ec2d0ab202f979e


Omar Polo

add an implicit fastcgi parameter: GEMINI_SEARCH_STRING

it’s the QUERY_STRING decoded if it’s a search-string (i.e. not a key-value pair.) It’s useful for scripts to avoid percent-decoding the querystring in the most common case of a query, because in Gemini querystrings key-value paired are not common. Idea from a discussion with Allen Sobot.