summaryrefslogtreecommitdiff
path: root/ui-shared.c (unfollow)
Commit message (Expand)AuthorFilesLines
2008-07-27Modify default value for a few cgitrc optionsLars Hjemli1-2/+5
2008-07-27Be prepared for empty repositoriesLars Hjemli2-4/+9
2008-07-27ui-shared: show repo owner along with descriptionLars Hjemli1-3/+3
2008-07-27ui-summary: show clone urlsLars Hjemli1-0/+41
2008-07-22Makefile: remove the `distclean` and `emptycache` targetsLars Hjemli1-7/+0
2008-07-22Makefile: do not touch the git objects with `make clean`Lars Hjemli1-1/+0
2008-07-22Makefile: fix git dependency rulesLars Hjemli1-5/+3
2008-07-22tests/Makefile: not everyone has `.` in $PATHLars Hjemli1-1/+1
2008-07-21Adjust to new calling convention for read_tree_recursive()Lars Hjemli2-7/+10
2008-07-21Use GIT-1.6.0-rc0Lars Hjemli1-0/+0
2008-07-19Add a favicon option to cgitrcLars Hjemli4-0/+10
2008-06-26Add support for including a footer on all pagesLars Hjemli3-4/+13
2008-06-25Use GIT-1.5.6Lars Hjemli2-1/+1
2008-06-24allow specification of directly linked blobs mimetypesMichael Krelin3-1/+4
2008-06-24allow blob extract blobs by head/path combinationMichael Krelin3-6/+35
2008-05-21Added root-desc to default configuration.Harley Laue1-0/+4
2008-05-20ui-tree.c: avoid peeking at GITLINK objectsLars Hjemli1-6/+8
2008-05-20cache.c: fix error checking in print_slot()Lars Hjemli1-4/+7
2008-05-18cache.c: do not ignore errors from print_slot()Lars Hjemli2-5/+15
2008-05-18cache.c: use xread()/xwrite() from libgitLars Hjemli1-6/+6
2008-05-18cache.c: make all io-related functions return errno on errorLars Hjemli1-9/+24
2008-05-18cache.c: read(2) returns -1 on error, not 0Lars Hjemli1-1/+1
2008-05-18Use GIT-1.5.5.1Lars Hjemli2-1/+1
2008-05-18Include commit-id in link from diff-statLars Hjemli2-1/+2
2008-05-18ui-commit: handle root commitsLars Hjemli2-3/+22
2008-05-04Add link to index page from repo header, remove page nameLars Hjemli2-2/+5
2008-05-03Add footer with page creation time and cgit version on all pagesLars Hjemli2-0/+9
2008-05-03Add a pager on the repolistLars Hjemli4-1/+32
2008-05-03Add cgit_index_link() function with support for offsetLars Hjemli2-5/+19
2008-04-29Print an error if filename is not found in html_include.Harley Laue1-1/+5
2008-04-29Add 'about site' and 'about repo' pagesLars Hjemli2-3/+59
2008-04-29Prepare for 'about site' page / add 'root-readme' option to cgitrcLars Hjemli4-0/+10
2008-04-29Make it possible for a single cmd to work both with and without a repoLars Hjemli1-1/+10
2008-04-29Re-enable 'index-info' and add support for 'root-desc' in cgitrcLars Hjemli3-1/+8
2008-04-29Move included header-file out of repolist tableLars Hjemli1-6/+3
2008-04-28Prepare for 'about repo' pageLars Hjemli2-5/+10
2008-04-28Add page 'ls_cache'Lars Hjemli3-5/+87
2008-04-28Redesign the caching layerLars Hjemli6-210/+418
2008-04-24ui-diff: remove test on object typeLars Hjemli1-6/+0
2008-04-24Integrate diffstat with diffLars Hjemli3-142/+152
2008-04-17Fix commitdiff annoyanceLars Hjemli1-1/+1
2008-04-15Cleanup page headerLars Hjemli1-17/+4
2008-04-14Fix search in repo index even if caching is enabledLars Hjemli1-1/+3
2008-04-14Make a few more columns in repolist and log view clickableLars Hjemli2-0/+7
2008-04-14Make branches, tags and log play better together in the summary viewLars Hjemli3-34/+43
2008-04-14Fix more css uglinessLars Hjemli1-10/+4
2008-04-14cgit.css: set form marginsLars Hjemli1-1/+1
2008-04-14Fix css font-familyLars Hjemli1-1/+1
2008-04-13Make repository search case insensitiveLars Hjemli2-4/+11
2008-04-13Remove 'patch' link from tab, add to commit viewLars Hjemli3-2/+8
mentioned in the README. Also, add a make-rule to build the git binaries if necessary + a dependency between cgit and libgit.a. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-02-04Update cgitrc templateLars Hjemli1-21/+32 Make the descriptions more helpfull. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-02-04Add support for lightweight tagsLars Hjemli2-19/+37 There is nothing bad about a tag that has no tag-object, but the old code didn't handle such tags correctly. Fix it. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-02-04Read repo-info from /etc/cgitrcLars Hjemli5-55/+120 This makes cgit read all repo-info from the configfile, instead of scanning for possible git-dirs below a common root path. This is primarily done to get better security (separate physical path from logical repo-name). In /etc/cgitrc each repo is registered with the following keys: repo.url repo.name repo.path repo.desc repo.owner Note: *Required keys are repo.url and repo.path, all others are optional *Each occurrence of repo.url starts a new repository registration *Default value for repo.name is taken from repo.url *The value of repo.url cannot contain characters with special meaning for urls (i.e. one of /?%&), while repo.name can contain anything. Example: repo.url=cgit-pub repo.name=cgit/public repo.path=/pub/git/cgit repo.desc=My public cgit repo repo.owner=Lars Hjemli repo.url=cgit-priv repo.name=cgit/private repo.path=/home/larsh/src/cgit/.git repo.desc=My private cgit repo repo.owner=Lars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-02-04Do not die if tag has no messageLars Hjemli1-2/+2 Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-02-03Fix search for non-virtual urlsLars Hjemli1-0/+6 When cgit don't use virtual urls, the current repo and page url parameters must be included in the search form as hidden input fields. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-01-28Update README with install/config informationLars Hjemli1-24/+28 Signed-off-by: Lars Hjemli <hjemli@gmail.com>