summaryrefslogtreecommitdiffstats
path: root/src/com/gitblit/wicket/panels/HistoryPanel.java
diff options
context:
space:
mode:
authorJames Moger <james.moger@gitblit.com>2011-04-17 12:06:29 -0400
committerJames Moger <james.moger@gitblit.com>2011-04-17 12:06:29 -0400
commit9802a766a28bfcb0ae01494ebfa1cbeb11e71809 (patch)
tree208ee6239872f47206e2070546f5fa2b3d76f779 /src/com/gitblit/wicket/panels/HistoryPanel.java
parent01bd346efe98af0f05f23f897c0819d2df8d856c (diff)
downloadgitblit-9802a766a28bfcb0ae01494ebfa1cbeb11e71809.tar.gz
gitblit-9802a766a28bfcb0ae01494ebfa1cbeb11e71809.zip
Rename ticgit integration to tickets.
The current ticgit implementation is based on ticgit.net, a BSD implementation for C#. Jeff Welling advises using commit bf57b032e030bd16a7b2 (2009-01-27) from ticgit as the last MIT licensed commit. A more complete implementation will be based on this version of the original Ruby sources. It remains unclear if I will support using the "ticgit" branch name or not. I purposefully haven't looked at any of the GPL improvements by Jeff, but I can see from the readme at GitHub that he has renamed the branch to "ticgit-ng" which I have no plans on supporting as I do not want to taint GitBlit with GPL code.
Diffstat (limited to 'src/com/gitblit/wicket/panels/HistoryPanel.java')
-rw-r--r--src/com/gitblit/wicket/panels/HistoryPanel.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/com/gitblit/wicket/panels/HistoryPanel.java b/src/com/gitblit/wicket/panels/HistoryPanel.java
index 236e077b..e7878838 100644
--- a/src/com/gitblit/wicket/panels/HistoryPanel.java
+++ b/src/com/gitblit/wicket/panels/HistoryPanel.java
@@ -93,6 +93,7 @@ public class HistoryPanel extends BasePanel {
item.add(new RefsPanel("commitRefs", repositoryName, entry, allRefs));
+ // TODO links for folder
item.add(new BookmarkablePageLink<Void>("view", CommitPage.class, WicketUtils.newObjectParameter(repositoryName, entry.getName())));
item.add(new BookmarkablePageLink<Void>("commitdiff", CommitDiffPage.class, WicketUtils.newObjectParameter(repositoryName, entry.getName())));
item.add(new BookmarkablePageLink<Void>("difftocurrent", BlobDiffPage.class, WicketUtils.newPathParameter(repositoryName, entry.getName(), path)).setEnabled(counter > 0));