Commit Briefs

6d7eb4f7d1 Thomas Adam

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

ok op@


1e73031b5b Thomas Adam

unfold line


84efe063d2 Thomas Adam

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

add a regress for this case.


664d70035d Thomas Adam

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

Reported by Mikhail (thanks!), ok jamsek


7303e8c811 Thomas Adam

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@


44f2135aca Thomas Adam

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

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


7554713a02 Thomas Adam

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.


44e35bfc5d Thomas Adam

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@


9e5f5a1ed2 Thomas Adam

fmt



9c9f0ee155 Thomas Adam

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

ok op@


a8d761ba53 Thomas Adam

some formatting fixes for gitwrapper.1

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


5dcb3a437b Thomas Adam

add gitwrapper(1)

ok op@, tracey@ earlier version


bf2e865dbd Thomas Adam

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

ok op@, tracey@


f39a604656 Thomas Adam

grammar and fix typo: rigchtif → right if


0bc2cf1263 Thomas Adam

portable: template: allow for YACC

As with the main got project, allow for template to use the YACC environment variable -- either directly, or indirectly if set via ./configure in the main got project.


8d60d668fa Thomas Adam

portable: fix getopt check

Rather than always asserting our version of getopt(2), only do so if it lacks certain features. Some of the configure.ac changes have come from openssh-portable.



ab73e689b8 Thomas Adam

portable: set next version


283db276ff Thomas Adam

portable: release 0.86 (tags/0.86)


d437ae9086 Thomas Adam

bump version number


9700d08a3c Thomas Adam

CHANGES for 0.86


164b5ddc66 Thomas Adam

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

ok tracey@


161663e7eb Thomas Adam

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@


1c2f8577ce Thomas Adam

portable: autogen: remove AUTO{MAKE,CONF}_VERSION

When running the bootstrapping shell script autogen.sh, no longer set the AUTO{MAKE,CONF}_VERSION env vars. Although these were guarded and only set to default values on OpenBSD if they weren't already set, these should ideally be set by individual users on OpenBSD themselves. Different versions of OpenBSD could well have different versions.