aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Use git-1.5.2•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-202-5/+3
* Remove unused extern declarations from cgit.h•••Some unused declarations from the early days of cgit are removed. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-181-4/+0
* Add knobs to enable/disable files/lines changed in log view•••These columns can cause lots of IO on the server, so add settings to explicitly enable them. Also, add per repo settings to optionally disable the columns if sitewide enabled. While at it, do not allow repo.snapshot to enable snapshots if the global setting is disabled. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-184-13/+48
* Restrict length of repo description on repolist page•••If any repo has a very long description, all repos suffer since the repo-links in the right-most column gets pushed out of sight. Fix it by introducing max-repodesc-length parameter in cgitrc, and default to 60 chars. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-164-1/+9
* Don't die when diffing trees with subprojects•••The subprojects needs special handling, since they refer to objects which normally won't exist in the refering repository. Fix some extended header bugs and missing features while at it. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-161-19/+43
* Do not wrap filemode column in diffstat table•••The diffstat looks rather ugly when the filemode is wrapped to one char per line, so lets force it to not wrap. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-161-0/+4
* Add C D L and T links to index page•••These are of course Commit, Diff, Log and Tree pages, all accessed w.o. specifying refname or sha1. Sadly, the layout is neither pretty nor accessible. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-161-1/+15
* Make git_pageurl handle NULL querystrings•••This is suddenly useful after the repo.defbranch-related changes. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-161-2/+6
* Add support for tree listing via h parameter•••This makes the tree page benefit from repo.defbranch. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-161-0/+10
* Add link to commitdiff below diffstat•••This link is a lot easier to locate than the links to the right of the parent entries. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-162-2/+10
* Add support for commitdiff via h parameter•••The commitdiff will be generated against the first parent, and the diff page also gets the benefit of repo.defbranch. Cleaned up some bad whitespace in cgit.h while at it. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-163-7/+21
* Change commit-view to expect h parameter, not id•••The change makes the commit-page benefit from repo.defbranch. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-164-10/+13
* Enable default value for head parameter•••Pages which expect head to be specified in the querystring can now be given a default value, configurable per repository (via repo.defbranch, which defaults to "master"). Currently, only the log page actually works without parameters, but the defbranch is bound to be exploited. This also removes some dead code from shared.c Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-163-14/+7
* Restrict deep nesting of configfiles•••There is no point in restricting the number of included config- files, but there is a point in restricting the nestinglevel of configfiles: to avoid recursive inclusions. This is easily achieved by decrementing the static nesting-variable upon exit from cgit_read_config(). Also fix some whitespace breakage. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-151-4/+6
* Include cgit.conf in Makefile•••This allows persistent overrides of Makefile settings without touching the Makefile. Suggested in a patch by Kristian Høgsberg <krh@bitplanet.net> Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-151-0/+5
* ui-diff: show /dev/null as filename for add/delete•••The diff headers showed an invalid filename when a patch created or deleted a file. Fix it. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-151-1/+4
* Use tables and css to create the diffstat graph, fix scaling•••There was no need to use image-files for the graphs, so lets drop them. At the same time, fix scaling of the graphs so that the full width is used only if atleast 100 LOC are changed in one of the files. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-155-15/+27
* Do not alter incoming sha1 when handling the download refs.•••The code used to overwrite the const sha1 parameter just to avoid declaring an extra variable. Fix it. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-151-2/+5
* Don't hardcode urls when SCRIPT_NAME is available•••Also, let the makefile define the name of the installed cgi and use that definition as a default value for cgit_script_name variable. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-155-4/+9
* ui-shared.c: fix whitespace breakage•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-151-6/+5
* Show tag heading even if first tag is of the lightweight kind•••The tag printing code waited for valid tags before printing the table heading, but forgot to count unannotated tags. This fixes it. Noticed by Kristian Høgsberg <krh@bitplanet.net> Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-151-13/+19
* Specify static storage class for file-local declarations•••Also fix some whitespace issues while at it. Noticed by Kristian Høgsberg <krh@bitplanet.net> Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-152-11/+11
* Add include-parameter to config files•••This parameter can be used to include another config-file, like a standalone repository listing. Suggested in a patch by Kristian Høgsberg <krh@bitplanet.net> Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-143-8/+15
* Let makefile override the configfile location•••Pass CGIT_CONFIG from makefile during build, to enable stuff like make CGIT_CONFIG=/var/cgit/cgit.conf Noticed by Kristian Høgsberg <krh@bitplanet.net> Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-142-5/+8
* cgit.c: fix whitespace breakageLars Hjemli2007-05-141-7/+7
* cgit.css: try to make diffs look a little bit nicer•••This makes the diffview look more like 'git-diff' in a terminal. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-142-13/+32
* cgit.css: try do make diffstat a little bit nicer•••I'm still no webdesigner, but this seems to be a more pleasant "visual experience". Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-141-4/+3
* Add log filtering by path and link to it from tree view•••This enables path-filtering in log-view, and adds a link per entry in tree-view to show the log for each file/directory. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-146-13/+37
* cgit v0.4•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-131-1/+1
* Add commitdiff between commit and each of it's parent•••A link is added next to each parent of a commit, leading to the new diff-functionality in ui-diff.c. Also added support for a path-parameter to filelevel diffs accessed via the diffstat. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-135-10/+63
* Add graphical diffstat to commit view•••The diffstat is calculated against the leftmost parent of the commit. This gives nice information for "normal" merges while octopus merges are less than optimal, so the diffstat isn't calculated for those merges. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-135-33/+130
* Add max-commit-count parameter to cgitrc•••This enabled customizing number of commits shown per page in log view. It also changes the default from 100 to 50, mainly due to the more cpu intensive log pages (number of files/lines changed) but also since 100 log messages requires excessive scrolling. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-134-2/+10
* Show number of changed lines in log view•••Use the new file-diff interface to calculate number of changed lines per commit. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-131-1/+11
* Simplify ui-diff.c using the new file-level diff interface•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-131-86/+2
* Add standard interface for file diff functions•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-132-0/+86
* Show number of changed files in log view•••This uses the new tree-diff functions to calculate number of files changed per commit. Also fix some whitespace issues. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-131-2/+15
* Use standard tree-diff function when showing diffstat for single commit•••Remove unneeded code from ui-commit.c and replace with call to standard diff-functions. Also fix some whitespace issues. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-131-51/+15
* Add shared diff-handling functions•••This adds a standard interface for tree diffing. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-132-2/+50
* css: fix bad rendering in Internet Explorer•••The layout-tables used border-collapse:separate, which maked all pages look really bad in IE. Fix it. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-121-2/+7
* Add links to enable downloading of tagged blobs•••All tags below refs/archives are shown on the repo summary page as download links. The links referes to the tagged objects, using the tag name as filename for download. This can be used to add shortcuts for release tarballs, documentation and other blobs stored in the object database, especially blobs that are not reachable during cloning. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-112-9/+85
* Makefile: add support for building w.o. preinstalled git•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-111-1/+13
* Tag release v0.3•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-111-1/+1
* Update README with submodule build info•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-111-13/+39
* Add submodule links in tree listing•••When a submodule occurs in a tree, generate a link to show the module/commit. The link is specified as a sprintf string in /etc/cgitrc, using parameters 'module-link' and 'repo.module-link'. This should probably be extended with repo.module-link.$path. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-116-12/+27
* Add submodules.sh and use it during builds•••This adds a shell script which can be be used to initialize, list and update submodules in a git repository. It reads the file .gitmodules to find a mapping between submodule path and repository url for the initial clone of all submodules. The script is used during cgit builds to enable automatic download and checkout of the git git repository. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-113-13/+222
* Added git as a submodule•••This commit adds the subdirectory 'git' as a submodule containing the git git repository, but doesn't add support for automatically cloning the submodule. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-112-1/+1
* Add support for downloading single blobs•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-095-3/+47
* ui-view: show pathname if specified in querystring•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-083-5/+10
* Update to libgit 1.5.2-rc2•••Signed-off-by: Lars Hjemli <hjemli@gmail.com> Lars Hjemli2007-05-089-837/+50
* Layout updateLars Hjemli2007-02-219-32/+127