aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
| * | | changed objects are outputted, allowing for selections of code onlyOnne Gorter2009-01-103-28/+34
* | | | Merge branch 'lh/stats'•••Conflicts: cgit.c cgit.css cgit.h ui-tree.c Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2009-01-2712-4/+569
|\ \ \ \ | |_|/ / |/| | |
| * | | ui-stats.c: reuse cgit_add_hidden_formfields()•••This makes sure that the currect branch and path is preserved when changing the stats period or author count. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2008-12-071-3/+2
| * | | ui-shared: externalize add_hidden_formfields()•••This function will be reused by ui-stats.c in the next commit. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2008-12-072-4/+5
| * | | ui-tree: add link to stats page per path•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2008-12-071-0/+3
| * | | ui-shared: add and use cgit_stats_link()•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2008-12-072-2/+10
| * | | ui-stats: replace 'enable-stats' setting with 'max-stats'•••The new 'max-stats' and 'repo.max-stats' settings makes it possible to define the maximum statistics period, both globally and per repo. Hence, it is now feasible to allow statistics on repositories with a high commit frequency, like linux-2.6, by setting repo.max-stats to e.g. 'month'. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2008-12-078-58/+104
| * | | ui-stats: enable path-filtered stats•••When a path is specified on the querystring the commit statistics will now be filtered by this path. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2008-12-071-3/+15
| * | | Add a 'stats' page to each repo•••This new page, which is disabled by default, can be used to print some statistics about the number of commits per period in the repository, where period can be either weeks, months, quarters or years. The function can be activated globally by setting 'enable-stats=1' in cgitrc and disabled for individual repos by setting 'repo.enable-stats=0'. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2008-12-0610-0/+497
* | | | Merge branch 'stable'Lars Hjemli2009-01-122-8/+11
|\ \ \ \ | | |_|/ | |/| |
| * | | Makefile: install cgit.{css,png} in CGIT_DATA_PATH•••CGIT_DATA_PATH defaults to CGIT_SCRIPT_PATH, but allows users to install the cgi and the data files in different locations. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Todd Zullinger2009-01-121-4/+6
| * | | Makefile: add INSTALL var to set install command•••This also explicitly sets the modes for installed files (755 for the .cgi, 644 for the .css and .png). Signed-off-by: Lars Hjemli <hjemli@gmail.com> Todd Zullinger2009-01-121-4/+5
| * | | Fix tar.bz2 snapshot example•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Todd Zullinger2009-01-121-2/+2
* | | | Merge branch 'stable'Lars Hjemli2009-01-112-2/+6
|\| | |
| * | | Avoid SEGFAULT on invalid requests•••When an unknown page is requested, either on the querystring or via PATH_INFO, we end up with a null-referencing cgit_cmd. This null- pointer is then used as argument to the hc() function (which decides what tab to render as 'active'), but this function failed to check if a valid cmd was specified and a SEGFAULT would occur. This patch fixes the issue by introducing a 'fallback-cmd' which specifies what tab to render as 'active' when no valid cmd is requested. While at it, we now also keep track of the active repository even if an invalid cmd was requested since we want to show the error message about the invalid request in the correct context. Noticed-by: Robin Redeker <elmex@ta-sa.org> Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2009-01-112-2/+6
* | | | Make all tags viewable•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Robin Redeker2009-01-112-2/+11
* | | | Merge branch 'stable'Lars Hjemli2009-01-111-2/+3
|\| | |
| * | | ui-tag: escape tagnames properly•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2009-01-111-2/+3
* | | | Change toggle to more meaningful term•••In the log interface, there is a toggle link at the top, but it isn't clear what's being toggled. I've changed it to "Expand" and "Collapse" to make it clear that you are getting more and less information, respectively. Signed-off-by: Justin Waters <justin.waters@timesys.com> Justin Waters2009-01-111-1/+2
* | | | Merge branch 'snapshot-fixes'Lars Hjemli2009-01-112-13/+15
|\ \ \ \
| * | | | tests/t0107-snapshot.sh: make testscript match updated snapshot behavior•••Since cgit now returns a 404 error when the snapshot filename cannot be resolved to a commit object, the testscript needs to request a valid snapshot name. Also, the script assumed that the toplevel directory in the snapshot would get the name of the repository but it's now named similar to the requested snapshot. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2008-12-281-10/+10
| * | | | return 404 if snapshot is not found•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Natanael Copa2008-12-281-3/+5
* | | | | Merge branch 'lh/mimetypes'Lars Hjemli2009-01-112-3/+3
|\ \ \ \ \
| * | | | | ui-snapshot.c: change mime-type for tar.gz and tar.bz2•••The updated mime-types seems to work better than the old ones with both safari and firefox. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2008-12-262-3/+3
| |/ / / /
* | | | | Merge branch 'lh/virtual-root'Lars Hjemli2009-01-111-20/+21
|\ \ \ \ \
| * | | | | Untie logic for SCRIPT_NAME and PATH_INFO•••SCRIPT_NAME is used as fallback for virtual-root when virtual-root is unspecified in cgitrc and PATH_INFO is used as fallback for the query- string parameter 'url' when the latter is unspecified. But until now, the use of PATH_INFO depended on virtual-root also being unspecified, i.e. it was impossible to use PATH_INFO when virtual-root was specified. This commit makes the fallback on SCRIPT_NAME and PATH_INFO independent code paths, i.e. it is now possible to specify virtual-root in cgitrc while still using PATH_INFO (instead of rewrite rules) to get 'pretty urls'. Noticed-by: Jack Moffitt <jack@chesspark.com> Noticed-by: LiKai Liu <liulk@cs.bu.edu> Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2008-12-261-20/+21
* | | | | | Merge branch 'stable'Lars Hjemli2009-01-111-2/+2
|\ \ \ \ \ \ | | |_|/ / / | |/| | | |
| * | | | | Makefile: avoid libcurl when building git•••We don't need support for fetching/pushing in libgit.a, hence we don't need to link with libcurl. Noticed-by: Robin Redeker <elmex@ta-sa.org> Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2009-01-101-2/+2
* | | | | | ui-log: show name-decorations in log output•••Commits are now decorated with a clickable 'label' for each ref pointing at it, similar to how gitweb and gitk displays commit decorations. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2009-01-112-0/+59
* | | | | | ui-refs: avoid SEGFAULT on lightweight tags•••Signed-off-by: Robin Redeker <elmex@ta-sa.org> Signed-off-by: Lars Hjemli <hjemli@gmail.com> Robin Redeker2009-01-101-1/+1
| |_|_|_|/ |/| | | |
* | | | | Merge branch 'stable'Lars Hjemli2009-01-062-3/+5
|\| | | |
| * | | | ui-tree.c: do not add blank line when displaying blobs•••Also, fix a related bug in the test-suite. Noticed-by: Jim Meyering <jim@meyering.net> Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2009-01-062-3/+5
* | | | | Merge branch 'stable'Lars Hjemli2008-12-301-2/+2
|\| | | | | |_|/ / |/| | |
| * | | ui-patch: whitespace changes in the patch generation code•••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> Tomas Carnecky2008-12-301-2/+2
* | | | Use GIT-1.6.1•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2008-12-262-1/+1
* | | | shared.c: future-proof usage of git diff-structures•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2008-12-261-1/+3
| |/ / |/| |
* | | Merge branch 'stable'Lars Hjemli2008-12-062-2/+9
|\| |
| * | tests/setup.sh: allow testsuite to fail properly with POSIX standard shells•••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> Lars Hjemli2008-12-061-1/+1
| * | tests/t0010-validate-html.sh: skip tests if 'tidy' is not available•••Noticed-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk> Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2008-12-061-1/+8
* | | Merge branch 'full-log'•••Conflicts: cgit.c cgit.h Lars Hjemli2008-12-069-13/+61
|\ \ \
| * | | ui-log: use css to make full-log prettier•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2008-11-302-8/+21
| * | | ui-log: (ab)use extra columns for commit message when showmsg=1•••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> Lars Hjemli2008-11-291-6/+7
| * | | ui-log: add support for showing the full commit message•••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> Lars Hjemli2008-11-298-11/+45
* | | | Merge branch 'lh/sort-repolist'Lars Hjemli2008-12-064-14/+126
|\ \ \ \
| * | | | ui-repolist: implement lazy caching of repo->mtime•••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> Lars Hjemli2008-11-293-4/+14
| * | | | ui-repolist: sort null values last•••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> Lars Hjemli2008-11-291-2/+2
| * | | | ui-repolist: add support for sorting any column•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2008-11-291-9/+83
| * | | | ui-repolist: extract get_repo_modtime() from print_modtime()•••The new function is then used by both print_modtime() and cgit_reposort_modtime(). Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2008-11-291-27/+19
| * | | | Add support for sorting by Age in the repolist•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Benjamin Close2008-11-293-3/+39
| |/ / /
* | | | Merge branch 'snapshot-fixes'Lars Hjemli2008-12-065-60/+94
|\ \ \ \