about summary refs log tree commit diff
Commit message (Expand)AuthorAge
* tests/.gitignore: update for using Git's test infrastructureJohn Keeping2013-04-08
* tests: use Git's test frameworkJohn Keeping2013-04-08
* Do not load user or system gitconfig and gitattributesJason A. Donenfeld2013-04-08
* use struct strbuf instead of static buffersJohn Keeping2013-04-08
* Remove redundant calls to fmt("%s", ...)John Keeping2013-04-08
* Convert cgit_print_error to a variadic functionJohn Keeping2013-04-08
* shared.c: add strbuf_ensure_endJohn Keeping2013-04-08
* html.c: add various strbuf and varadic helpersJohn Keeping2013-04-08
* Mark char* fields in struct cgit_page as constJohn Keeping2013-04-08
* Fix out-of-bounds memory accesses with virtual_root=""John Keeping2013-04-08
* ui-refs.c: Refactor print_tag()Lukas Fleischer2013-04-08
* ui-refs.c: Remove global header variableLukas Fleischer2013-04-08
* html.c: Replace strdup() with xstrdup()Lukas Fleischer2013-04-08
* Always #include corresponding .h in .c filesJohn Keeping2013-04-08
* cgit.mk: fix dependency handlingJohn Keeping2013-04-08
* Makefile: re-include cgit.conf in cgit.mkJohn Keeping2013-04-08
* Do not unnecessarily strdup() environment variablesLukas Fleischer2013-04-08
* Maŕk cgit_environment members constLukas Fleischer2013-04-08
* Return const char * in cgit_{httpscheme, hosturl, rooturl}()Lukas Fleischer2013-04-08
* Update git to v1.8.2.1John Keeping2013-04-08
* ui-blob: don't segfault when no path is givenJohn Keeping2013-04-07
* Convert pager navigation into a unordered listLukas Fleischer2013-03-20
* Makefile: remove CGIT-CFLAGS files in clean stageJason A. Donenfeld2013-03-20
* ui-summary.c: Move urls variable into print_urls()Lukas Fleischer2013-03-20
* Fix colspan valuesLukas Fleischer2013-03-20
* html: check return value of writeJason A. Donenfeld2013-03-20
* ui-shared: squelch compiler warning.Jason A. Donenfeld2013-03-20
* cgit.mk: Use SHELL_PATH_SQ to run gen-version.shJohn Keeping2013-03-20
* cgit.mk: don't rebuild everything if CGIT_VERSION changesJohn Keeping2013-03-20
* ui-patch: use cgit_version not CGIT_VERSIONJohn Keeping2013-03-20
* Makefile: re-use Git's Makefile where possibleJohn Keeping2013-03-20
* tests: check that Git version are in syncJohn Keeping2013-03-20
* Merge branch 'wip'Jason A. Donenfeld2013-03-20
|\
| * cgit_print_snapshot_links(): Free prefix variableLukas Fleischer2013-03-04
| * cgit_print_commit(): Free tmp variableLukas Fleischer2013-03-04
| * cgit_print_tree(): Free curr_rev after usageLukas Fleischer2013-03-04
| * find_default_branch(): Free refmatch after usageLukas Fleischer2013-03-04
| * print_tag_downloads(): Free ref variableLukas Fleischer2013-03-04
| * Free reflists after usageLukas Fleischer2013-03-04
| * ui-shared.c: Remove unused function print_archive_ref()Lukas Fleischer2013-03-04
| * ui-shared.c: Remove unused function cgit_currurl()Lukas Fleischer2013-03-04
| * Mark several functions/variables staticLukas Fleischer2013-03-04
* | ui-shared: fix return type of cgit_self_linkJohn Keeping2013-03-20
|/
* t0107-snapshot: add tests for ZIP archivesJohn Keeping2013-03-04
* tests: make whitespace consistentJohn Keeping2013-03-04
* tests: "grep -e" is not portable to all platformsJohn Keeping2013-03-04
* Makefile: Disable gettext in the Git submoduleLukas Fleischer2013-03-04
* Makefile: improve dependency generationJamie Couture2013-03-04
* cgit.c: Remove parameter from guess_defbranch()Lukas Fleischer2013-03-04
* ui-tree.c: Use a context structure in walk_tree()Lukas Fleischer2013-03-04
ct renames. This feature is needed only for commits that rename the path we're interested in. For commits before the file has been renamed (i.e. that appear later in the log list) we change the file path in the links from the log to point to the old name; this means that links to commits always limit by the path known to that commit. If we didn't do this we would need to walk down the log diff'ing every commit whenever we want to show a commit. The drawback is that the "Log" link in the top bar of such a page links to the log limited by the old name, so it will only show pre-rename commits. I consider this a reasonable trade-off since the "Back" button still works and the log matches the path displayed in the top bar. Since following renames requires running diff on every commit we consider, I've added a knob to the configuration file to globally enable/disable this feature. Note that we may consider a large number of commits the revision walking machinery no longer performs any path limitation so we have to examine every commit until we find a page full of commits that affect the target path or something related to it. Suggested-by: René Neumann <necoro@necoro.eu> Signed-off-by: John Keeping <john@keeping.me.uk> 2015-08-12shared: make cgit_diff_tree_cb publicJohn Keeping This will allow us to use this nice wrapper function elsewhere, avoiding dealing with the diff queue when we only need to inspect a filepair. Signed-off-by: John Keeping <john@keeping.me.uk> 2015-08-12t0110: Chain together using &&Jason A. Donenfeld 2015-08-12about: always ensure page has a trailing slashJason A. Donenfeld Otherwise we can't easily embed links to other /about/ pages. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2015-08-12filters: apply HTML escapingLazaros Koromilas http://www.w3.org/International/questions/qa-escapes#use 2015-08-12git: update to v2.5.0Christian Hesse Update to git version v2.5.0. * Upstream commit 5455ee0573a22bb793a7083d593ae1ace909cd4c (Merge branch 'bc/object-id') changed API: for_each_ref() callback functions were taught to name the objects not with "unsigned char sha1[20]" but with "struct object_id". * Upstream commit dcf692625ac569fefbe52269061230f4fde10e47 (path.c: make get_pathname() call sites return const char *) Signed-off-by: Christian Hesse <mail@eworm.de> 2015-08-12Fix processing of repo.hide and repo.ignoreDaniel Reichelt