about summary refs log tree commit diff
path: root/ui-commit.c (follow)
Commit message (Expand)AuthorAge
* Merge branch 'lh/plugins'Lars Hjemli2009-08-09
|\
| * Add support for repo.commit-filter and repo.source-filterLars Hjemli2009-08-09
| * ui-commit: add support for 'commit-filter' optionLars Hjemli2009-07-31
* | Introduce noplainemail option to hide email adresses from spambotsMartin Szulecki2009-08-08
|/
* Add decorations to commit pagesJustin Waters2009-01-27
* Added `local-time` option to cgitrcStefan Naewe2008-08-01
* ui-commit: handle root commitsLars Hjemli2008-05-18
* Integrate diffstat with diffLars Hjemli2008-04-24
* Fix commitdiff annoyanceLars Hjemli2008-04-17
* Remove 'patch' link from tab, add to commit viewLars Hjemli2008-04-13
* Include diff in commit viewLars Hjemli2008-04-12
* Add ui-shared.hLars Hjemli2008-03-24
* Introduce html.hLars Hjemli2008-03-18
* Move cgit_repo into cgit_contextLars Hjemli2008-02-16
* Introduce struct cgit_contextLars Hjemli2008-02-16
* Fix html error detected by test-suiteLars Hjemli2007-11-11
* ui-commit.c: link to diff instead of tree from diffstatLars Hjemli2007-10-01
* cgit_print_snapshot_links: use url to specify snapshot nameLars Hjemli2007-07-23
* allow selective enabling of snapshotsMichael Krelin2007-07-21
* add support for snapshot tarballsMichael Krelin2007-07-18
* Add cgit_diff_link()Lars Hjemli2007-06-17
* ui-commit: use cgit_commit_link() for parent linksLars Hjemli2007-06-17
* Add cgit_commit_link() + support for id=sha1 to commit viewLars Hjemli2007-06-17
* Add and use cgit_tree_link()Lars Hjemli2007-06-17
* ui-tree: unify with ui-view, use path to select tree/blobLars Hjemli2007-06-16
* Use & instead of & in URLs.Ondrej Jirman2007-05-31
* Fixed unexpected tags in html output.Ondrej Jirman2007-05-31
* Add cgit_print_age() functionLars Hjemli2007-05-22
* Add link to commitdiff below diffstatLars Hjemli2007-05-16
* Change commit-view to expect h parameter, not idLars Hjemli2007-05-16
* Use tables and css to create the diffstat graph, fix scalingLars Hjemli2007-05-15
* Specify static storage class for file-local declarationsLars Hjemli2007-05-15
* Add log filtering by path and link to it from tree viewLars Hjemli2007-05-14
* Add commitdiff between commit and each of it's parentLars Hjemli2007-05-13
* Add graphical diffstat to commit viewLars Hjemli2007-05-13
* Use standard tree-diff function when showing diffstat for single commitLars Hjemli2007-05-13
* Make snapshot feature configurableLars Hjemli2007-02-08
* Add support for snapshotsLars Hjemli2007-02-08
* Add missing diff-link in ui-commit.cLars Hjemli2006-12-22
* Don't show new and old filemode for added/removed filesLars Hjemli2006-12-17
* Show list of modified files in ui-commit.cLars Hjemli2006-12-17
* Reformat code to avoid excessive line lengthsLars Hjemli2006-12-16
* Add cgit_free_commitinfo() and use where neededLars Hjemli2006-12-16
* Simplify ui-commit.cLars Hjemli2006-12-16
* Show emails and timestamps in ui-commit.cLars Hjemli2006-12-16
* Add head comment to ui-commit.cLars Hjemli2006-12-16
* Move cgit_print_date into ui-shared, reuse in ui-summaryLars Hjemli2006-12-16
* Add ui-commit.c + misc ui cleanupsLars Hjemli2006-12-16
ow 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