about summary refs log tree commit diff
Commit message (Expand)AuthorAge
* ui-shared: add rel-vcs microformat links to HTML headerJohn Keeping2014-12-23
* ui-summary: add "rel='vcs-git'" to clone URL linksJohn Keeping2014-12-23
* Extract clone URL printing to ui-shared.cJohn Keeping2014-12-23
* Remove trailing slash after remove-suffixLukas Fleischer2014-12-23
* git: update to v2.2.1Christian Hesse2014-12-23
* filter: fix libravatar email-filter https issueChristian Hesse2014-12-13
* ui-diff: add "stat only" diff typeJohn Keeping2014-12-13
* Change "ss" diff flag to an enumJohn Keeping2014-12-13
* ui-shared: remove toggle_ssdiff arg to cgit_diff_link()John Keeping2014-12-13
* ui-shared: remove toggle_ssdiff arg to cgit_commit_link()John Keeping2014-12-13
* git: update to v2.0.4John Keeping2014-08-07
* Always check if README exists in choose_readme()Lukas Fleischer2014-08-07
* cgitrc.5: we mean a cgi response, not requestJason A. Donenfeld2014-08-01
* ui-stats.c: set parent pointer to NULL after freeing itJohn Keeping2014-07-28
* git: update to v2.0.3John Keeping2014-07-28
* parsing.c: make commit buffer constJohn Keeping2014-07-28
* Bump version.Jason A. Donenfeld2014-06-30
* remove debug fprinf() calls that sneaked in with commit 79c985Christian Hesse2014-06-29
* git: update to 2.0.1Christian Hesse2014-06-28
* ui-patch: Flush stdout after outputting dataJohn Keeping2014-06-28
* ui-log: ignore unhandled argumentsJohn Keeping2014-06-28
* git: update for git 2.0Christian Hesse2014-06-28
* remove trailing whitespaces from source filesChristian Hesse2014-04-17
* git: update to 1.9.2Christian Hesse2014-04-12
* Fix cgit_parse_url when a repo url is contained in another repo urlJulian Maurice2014-04-05
* Makefile: use more reliable git tarball mirrorJason A. Donenfeld2014-03-20
* git: update to 1.9.1Christian Hesse2014-03-20
* filter: add libravatar email-filter lua scriptChristian Hesse2014-03-13
* Bump version.Jason A. Donenfeld2014-02-28
* ui-refs: simplify cmp_age logicJason A. Donenfeld2014-02-26
* Remove unused parameter from cgit_print_snapshot()Lukas Fleischer2014-02-21
* print download link for reference string length == 1Christian Hesse2014-02-21
* Clean up cache documentation.Jason A. Donenfeld2014-02-21
* Skip cache slot when time-to-live is zeroLukas Fleischer2014-02-21
* git: Update to 1.9.0Lukas Fleischer2014-02-21
* Makefile: suppress pkg-config errorJason A. Donenfeld2014-02-20
* Add a cache-snapshot-ttl configuration variableLukas Fleischer2014-02-20
* diffstat: do not rely on uninitialized dataJason A. Donenfeld2014-02-20
* gen-version.sh: check if git is available before trying to call itFabien C2014-02-05
* simple-authentication: styleJason A. Donenfeld2014-01-23
* makefile: use LUA_PKGCONFIG to set Lua implementationNatanael Copa2014-01-22
* tests: only do lua tests if lua is compiled-inJason A. Donenfeld2014-01-20
* cgit: add --version argument for printing infoJason A. Donenfeld2014-01-20
* cache: use sendfile() instead of a pair of read() + write()Sebastian Andrzej Siewior2014-01-19
* README: document pkg-config for luajitJason A. Donenfeld2014-01-19
* makefile: bump versionJason A. Donenfeld2014-01-17
* mailmap: source before lighttpdJason A. Donenfeld2014-01-17
* ui-shared: do not allow negative minutesJason A. Donenfeld2014-01-17
* auth: document tweakables in lua scriptJason A. Donenfeld2014-01-17
* repolist: make owner clickable to searchJason A. Donenfeld2014-01-17
itle='2013-04-10 14:49:31 +0200'>2013-04-10ui-snapshot.c: Prepend "V" when guessing ref namesLukas Fleischer In cgit_print_snapshot_links() we strip leading "v" and "V", while we currently only prepend a lower case "v" when parsing a snapshot file name. This results in broken snapshot links for tags that start with an upper case "V". Avoid this by prepending a "V" as a fallback. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10t0107: Skip ZIP tests if unzip(1) isn't availableLukas Fleischer Note that we cannot use skip_all here since some tests have already been executed when ZIP tests are reached. Use test prerequisites to skip everything using unzip(1) if the binary is not available instead. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10tests/: Do not use `sed -i`Lukas Fleischer "-i" isn't part of the POSIX standard and doesn't work on several platforms such as OpenBSD. Use a temporary file instead. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10Add branch-sort and repo.branch-sort options.Jason A. Donenfeld When set to "name", branches are sorted by name, which is the current default. When set to "age", branches are sorted by the age of the repository. This feature was requested by Konstantin Ryabitsev for use on kernel.org. Proposed-by: Konstantin Ryabitsev <mricon@kernel.org> 2013-04-10t0109: chain operations with &&John Keeping Without '&&' between operations, we will not detect if strace or cgit exit with an error status, which would cause a false positive test status in this case. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-10cgit.c: Do not restore unset environment variablesLukas Fleischer getenv() returns a NULL pointer if the specified variable name cannot be found in the environment. However, some setenv() implementations crash if a NULL pointer is passed as second argument. Only restore variables that are not NULL. See commit d96d2c98ebc4c2d3765f5b35c4142e0e828a421b for a related patch. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-09t0107: Use `tar -z` for gzip'ed archivesLukas Fleischer