aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
...
* | | | | | ui-refs: avoid SEGFAULT on lightweight tagsGravatar Robin Redeker2009-01-10-1/+1
| |_|_|_|/ |/| | | | | | | | | | | | | | | | | | | Signed-off-by: Robin Redeker <elmex@ta-sa.org> Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* | | | | Merge branch 'stable'Gravatar Lars Hjemli2009-01-07-3/+5
|\ \ \ \ \ | |/ / / /
| * | | | ui-tree.c: do not add blank line when displaying blobsGravatar Lars Hjemli2009-01-07-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also, fix a related bug in the test-suite. Noticed-by: Jim Meyering <jim@meyering.net> Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* | | | | Merge branch 'stable'Gravatar Lars Hjemli2008-12-30-2/+2
|\ \ \ \ \ | |/ / / / | | | / / | |_|/ / |/| | |
| * | | ui-patch: whitespace changes in the patch generation codeGravatar Tomas Carnecky2008-12-30-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a space between the committer name and email, and remove superfluous spaces in the date header. This makes cgit-generated patches match the output from git-format-patch almost exactly, at least as far as the email headers go. Signed-off-by: Tomas Carnecky <tom@dbservice.com> Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* | | | Use GIT-1.6.1Gravatar Lars Hjemli2008-12-26-1/+1
| | | | | | | | | | | | | | | | Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* | | | shared.c: future-proof usage of git diff-structuresGravatar Lars Hjemli2008-12-26-1/+3
| |/ / |/| | | | | | | | Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* | | Merge branch 'stable'Gravatar Lars Hjemli2008-12-06-2/+9
|\ \ \ | |/ /
| * | tests/setup.sh: allow testsuite to fail properly with POSIX standard shellsGravatar Lars Hjemli2008-12-06-1/+1
| | | | | | | | | | | | | | | | | | | | | The "((expr))" construct is not implemented by e.g. dash, so this commit replaces the construct with a more portable one. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | tests/t0010-validate-html.sh: skip tests if 'tidy' is not availableGravatar Lars Hjemli2008-12-06-1/+8
| | | | | | | | | | | | | | | Noticed-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk> Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* | | Merge branch 'full-log'Gravatar Lars Hjemli2008-12-06-13/+61
|\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: cgit.c cgit.h
| * | | ui-log: use css to make full-log prettierGravatar Lars Hjemli2008-11-30-8/+21
| | | | | | | | | | | | | | | | Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | | ui-log: (ab)use extra columns for commit message when showmsg=1Gravatar Lars Hjemli2008-11-30-6/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the commit message has extra long lines it's better to use the author/ files/lines columns to show those lines than to push the columns of screen and force the users to hscroll. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | | ui-log: add support for showing the full commit messageGravatar Lars Hjemli2008-11-30-11/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some users prefer to see the full message, so to make these users happy the new querystring parameter "showmsg" can be used to print the full commit message per log entry. A link is provided in the log heading to make this function accessible, and all links and forms tries to preserve the users preference. Note: the new link is not displayed on the summary page since the point of the summary page is to be a summary, but it is still obeyed if specified manually. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* | | | Merge branch 'lh/sort-repolist'Gravatar Lars Hjemli2008-12-06-14/+126
|\ \ \ \
| * | | | ui-repolist: implement lazy caching of repo->mtimeGravatar Lars Hjemli2008-11-30-4/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When sorting the list of repositories by their last modification time, cgit would (in the worst case) invoke fstat(3) four times and open(3) twice for each callback from qsort(3). This obviously scales very badly. Now, the calculated modtime for each repo is saved in repo->mtime, thus keeping the number of stat/open invocations identical for sorted and unsorted repo-listings. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | | | ui-repolist: sort null values lastGravatar Lars Hjemli2008-11-29-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When sorting on e.g. owner, it's not interesting to get all repos without owner at the top of the list. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | | | ui-repolist: add support for sorting any columnGravatar Lars Hjemli2008-11-29-9/+83
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | | | ui-repolist: extract get_repo_modtime() from print_modtime()Gravatar Lars Hjemli2008-11-29-27/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The new function is then used by both print_modtime() and cgit_reposort_modtime(). Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | | | Add support for sorting by Age in the repolistGravatar Benjamin Close2008-11-29-3/+39
| |/ / / | | | | | | | | | | | | Signed-off-by: Lars Hjemli <hjemli@gmail.com>
* | | | Merge branch 'snapshot-fixes'Gravatar Lars Hjemli2008-12-06-60/+94
|\ \ \ \
| * | | | ui-shared: shorten the sha1 printed by cgit_object_linkGravatar Lars Hjemli2008-12-02-6/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Such links was printed as the object type followed by the objects complete sha1. We still use the complete sha1 in the link but we no longer show it in all its glory; only the first 10 hex chars are printed. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | | | ui-refs.c: show download links for all tags referring to commit objectsGravatar Lars Hjemli2008-12-02-3/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The snapshot function has only been linked to from the commit page while users often would want to download a certain release. With this patch, direct download links will now be printed for each tagged release on the repo summary page. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| * | | | ui-shared: exploit snapshot dwimmery in cgit_print_snapshot_linksGravatar Lars Hjemli2008-12-02-2/+1
| | | | | |