Commits


fmt


gitwrapper has no config file; copy-pasta spotted by op@


require gotsh to exist if the repository is listed in gotd.conf ok op@


some formatting fixes for gitwrapper.1 - new sentence, new line - use Pa where needed - move ENVIRONMENT before FILES


add gitwrapper(1) ok op@, tracey@ earlier version


fix an off-by-one in got_serve_parse_command() canonpath allocation ok op@, tracey@


grammar and fix typo: rigchtif → right if


extent regress test to check content after histedit fold operation


bump version number


CHANGES for 0.86


gotwebd: reply with non-200 HTTP status code on error ok tracey@


gotwebd: provide gotweb_render_page() entrypoint for all pages simplify gotweb_process_request more, handling all the pages inside the big switch. There's only one entrypoint for rendering the templates gotweb_render_page() that takes the page' content as argument. The only real difference is that gotweb_render_index() now skips directory entries which fails to handle. ok tracey@


add test case for 'got update' changing a directory into a file


handle files changing into directories during 'got update' problem found by naddy@


gotwebd: handle short reads and timeouts If a short read happens, or if all the fastcgi record to read don't fit in the buffer, gotwebd fails to continue reading and hits the timeout. If this happens before gotweb_process_request is called, it will crash in gotweb_free_transport since c->t will be NULL. This register the event with EV_PERSIST so fcgi_request is called again when there's more to read and guards gotweb_free_transport. It also makes spaces for the records as soon as they're successfully parsed. With lots of help from stsp ok stsp@