Commit Briefs

d95864cd5d Thomas Adam

make gotd/gitwrapper start up even if a repository is missing on disk

This should result in more useful behaviour when gitwrapper runs and repositories listed in gotd.conf do not yet exist or do no longer exist.


f9542c24c5 Thomas Adam

fix spurious empty packfile error from gotd when rewinding a branch

ok op@


e9e7947043 Thomas Adam

consistently close the struct repository on every cmd_*()

Spotted while looking for leaks using Otto' malloc() new leaks detection. Harmless in practice since we just forgot to call got_repo_close() when terminating in some cmd_*() functions, but still a leak. ok stsp@


991857c7d6 Thomas Adam

free fileindex entry upon add_entry() failure

Very unlikely (an occurrence of it would mean that got produced an invalid fileindex) and harmless anyway since we would just terminate, but a leak is still a leak. ok stsp@


3f0853b845 Thomas Adam

grammar fix for parse.y error message


57b6056a5b Thomas Adam

reject overlapping protected branch vs. tag namespaces

ok op@


ffc797f3cc Thomas Adam

gotd.conf: free STRINGS in all code paths

ok stsp@


f041f55f27 Thomas Adam

update TODO list


a4435ef028 Thomas Adam

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

ok stsp@


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.