about summary refs log tree commit diff
path: root/ui-commit.c (follow)
Commit message (Expand)AuthorAge
* 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
git-pink/commit/ui-shared.c?id=40e1d9b6177558bf4069c09ca6d8e3a682baa988&follow=1'>ui-shared: squelch compiler warning.Jason A. Donenfeld Since tail is initialized to 0, we will never get a warning on the last if statement, but recent gcc complains anyway. So, we initialize len as well. Future gcc versions should be able to optimize this out anyway. 2013-03-20cgit.mk: Use SHELL_PATH_SQ to run gen-version.shJohn Keeping On some platforms (notably Solaris) /bin/sh doesn't support enough of POSIX for gen-version.sh to run. Git's Makefile provides SHELL_PATH_SQ to address this issue so we just have to use it. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-03-20cgit.mk: don't rebuild everything if CGIT_VERSION changesJohn Keeping If CGIT_VERSION is in CGIT_CFLAGS then a change in version (for example because you have committed your changes) causes all of the CGit objects to be rebuilt. Avoid this by using EXTRA_CPPFLAGS to add the version for only those files that are affected and make them depend on VERSION. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-03-20ui-patch: use cgit_version not CGIT_VERSIONJohn Keeping We already have a global cgit_version which is set from the #define'd CGIT_VERSION in cgit.c. Change ui-patch.c to use this so that we only need to rebuild cgit.o when the version changes. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-03-20Makefile: re-use Git's Makefile where possibleJohn Keeping