about summary refs log tree commit diff
Commit message (Expand)AuthorAge
* cgitrc: explain new local-time optionStefan Naewe2008-08-05
* Added `local-time` option to cgitrcStefan Naewe2008-08-01
* Makefile: another take on git dependency rulesLars Hjemli2008-08-01
* Modify default value for a few cgitrc optionsLars Hjemli2008-07-27
* Be prepared for empty repositoriesLars Hjemli2008-07-27
* ui-shared: show repo owner along with descriptionLars Hjemli2008-07-27
* ui-summary: show clone urlsLars Hjemli2008-07-27
* Makefile: remove the `distclean` and `emptycache` targetsLars Hjemli2008-07-22
* Makefile: do not touch the git objects with `make clean`Lars Hjemli2008-07-22
* Makefile: fix git dependency rulesLars Hjemli2008-07-22
* tests/Makefile: not everyone has `.` in $PATHLars Hjemli2008-07-22
* Adjust to new calling convention for read_tree_recursive()Lars Hjemli2008-07-21
* Use GIT-1.6.0-rc0Lars Hjemli2008-07-21
* Add a favicon option to cgitrcLars Hjemli2008-07-19
* Add support for including a footer on all pagesLars Hjemli2008-06-26
* Merge branch 'master' of git://git.klever.net/patchwork/cgitLars Hjemli2008-06-26
|\
| * allow specification of directly linked blobs mimetypesMichael Krelin2008-06-24
| * allow blob extract blobs by head/path combinationMichael Krelin2008-06-24
* | Use GIT-1.5.6Lars Hjemli2008-06-25
|/
* Added root-desc to default configuration.Harley Laue2008-05-21
* ui-tree.c: avoid peeking at GITLINK objectsLars Hjemli2008-05-20
* cache.c: fix error checking in print_slot()Lars Hjemli2008-05-20
* cache.c: do not ignore errors from print_slot()Lars Hjemli2008-05-18
* cache.c: use xread()/xwrite() from libgitLars Hjemli2008-05-18
* cache.c: make all io-related functions return errno on errorLars Hjemli2008-05-18
* cache.c: read(2) returns -1 on error, not 0Lars Hjemli2008-05-18
* Use GIT-1.5.5.1Lars Hjemli2008-05-18
* Include commit-id in link from diff-statLars Hjemli2008-05-18
* ui-commit: handle root commitsLars Hjemli2008-05-18
* Add link to index page from repo header, remove page nameLars Hjemli2008-05-04
* Add footer with page creation time and cgit version on all pagesLars Hjemli2008-05-03
* Add a pager on the repolistLars Hjemli2008-05-03
* Add cgit_index_link() function with support for offsetLars Hjemli2008-05-03
* Merge branch 'lh/cache'Lars Hjemli2008-05-03
|\
| * Add page 'ls_cache'Lars Hjemli2008-04-28
| * Redesign the caching layerLars Hjemli2008-04-28
* | Print an error if filename is not found in html_include.Harley Laue2008-04-29
* | Merge branch 'lh/about'Lars Hjemli2008-04-29
|\ \
| * | Add 'about site' and 'about repo' pagesLars Hjemli2008-04-29
| * | Prepare for 'about site' page / add 'root-readme' option to cgitrcLars Hjemli2008-04-29
| * | Make it possible for a single cmd to work both with and without a repoLars Hjemli2008-04-29
| * | Re-enable 'index-info' and add support for 'root-desc' in cgitrcLars Hjemli2008-04-29
| * | Move included header-file out of repolist tableLars Hjemli2008-04-29
| * | Prepare for 'about repo' pageLars Hjemli2008-04-28
|/ /
* | ui-diff: remove test on object typeLars Hjemli2008-04-24
* | Integrate diffstat with diffLars Hjemli2008-04-24
|/
* Fix commitdiff annoyanceLars Hjemli2008-04-17
* Cleanup page headerLars Hjemli2008-04-15
* Fix search in repo index even if caching is enabledLars Hjemli2008-04-14
* Make a few more columns in repolist and log view clickableLars Hjemli2008-04-14
class='logmsg'> Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-02-21Layout updateLars Hjemli 2007-02-08Make snapshot feature configurableLars Hjemli Snapshots can now be enabled/disabled by default for all repositories in cgitrc with param "snapshots". Additionally, any repo can override the default setting with param "repo.snapshots". By default, no snapshotting is enabled. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-02-08Add support for snapshotsLars Hjemli Make a link from the commit viewer to a snapshot of the corresponding tree. Currently only zip-format is supported. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-02-05cgit v0.2Lars Hjemli Main changes since v0.1: -list tags in repo summary -allow search in log-view -read repository paths from cgitrc Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-02-05Add support for prefix and gitsrc arguments to 'make'Lars Hjemli This should improve the installation a little, especially since the new options are 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 Hjemli Make the descriptions more helpfull. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-02-04Add support for lightweight tagsLars Hjemli 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 Hjemli 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 Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2007-02-03Fix search for non-virtual urlsLars Hjemli 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 Hjemli