Commit Briefs

9292340069 Stefan Sperling

update TODO list


f042619049 Omar Polo

gotd.conf: fix memleak in `protect' error path and disallow dups too

ok stsp@


9afa3de221 Stefan Sperling

add support for protecting references against 'got send -f' to gotd

ok op@


20a2922ac9 Omar Polo

unfold line


97267ffd9f Omar Polo

template: fix processing of "{" at end of line

add a regress for this case.


2734319d6b Omar Polo

fix crash in got log due to NULL-deref in got_object_blob_close

Reported by Mikhail (thanks!), ok jamsek


8c28a2abbc Mark Jamsek

tog: resume blame and diff search from the first line

In diff and blame views, if the user scrolls up during a search, resume search from the first displayed line--not the current match. This makes sense in these views as the "cursor" or current line is the first line. Patch by Mikhail. ok op@


f9b5f5fbdf Omar Polo

gotwebd: don't special case BLOB, BLOBRAW and RSS

shuffle some code to handle all the page types in the switch. ok tracey@


e9e0377f45 Stefan Sperling

avoid gitwrapper printing a warning when /etc/gotd.conf does not exist

gotd still requires the config file, of course, but gitwrapper must treat is as optional and remain silent if the file cannot be found.


c5d17ec881 Omar Polo

gitwrapper: execl() directly without fork()ing

Since we're going to unconditionally execute gotsh or git-*-pack, don't bother fork()ing and having the main process to wait(2), just execle()! ok stsp@


33121ca5fb Omar Polo

fmt


c27166a81a Stefan Sperling

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


6c5befc77a Stefan Sperling

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

ok op@


afc4e03077 Omar Polo

some formatting fixes for gitwrapper.1

- new sentence, new line - use Pa where needed - move ENVIRONMENT before FILES


b09c127974 Stefan Sperling

add gitwrapper(1)

ok op@, tracey@ earlier version


fd39115905 Stefan Sperling

fix an off-by-one in got_serve_parse_command() canonpath allocation

ok op@, tracey@


fdd6701019 Omar Polo

grammar and fix typo: rigchtif → right if


5fdcbbb62b Christian Weisgerber

extent regress test to check content after histedit fold operation


264c43dd28 Stefan Sperling

bump version number


fd27565d37 Stefan Sperling

CHANGES for 0.86 (tags/0.86)


8f37175d25 Omar Polo

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

ok tracey@


df2d3cd254 Omar Polo

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@



07fa936579 Stefan Sperling

handle files changing into directories during 'got update'

problem found by naddy@


5add7f42e1 Omar Polo

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@