]> source.dussan.org Git - gitblit.git/commitdiff
Added git-notes to docs. Fixed parent path mode.
authorJames Moger <james.moger@gitblit.com>
Sun, 5 Jun 2011 19:21:12 +0000 (15:21 -0400)
committerJames Moger <james.moger@gitblit.com>
Sun, 5 Jun 2011 19:21:12 +0000 (15:21 -0400)
docs/00_index.mkd
src/com/gitblit/wicket/pages/TreePage.java

index 0211be6e7a8e26159cc3e17b0c2ae18299ab0f1d..0902733942c3511e4c64a634c88de4ad07fb050c 100644 (file)
@@ -30,6 +30,7 @@ sources @ [Github][gitbltsrc]
 - Administrators may create, edit, rename, or delete users through the web UI\r
 - Repository Owners may edit repositories through the web UI\r
 - Automatically generates a self-signed certificate for https communications\r
+- Git-notes support\r
 - Dates can optionally be displayed using the browser's reported timezone\r
 - Author and Committer email address display can be controlled\r
 - Dynamic zip downloads feature\r
@@ -52,13 +53,10 @@ sources @ [Github][gitbltsrc]
 - Gitblit is an integrated, full-stack solution.  There is no WAR build at this time.\r
 \r
 ### Todo List\r
-- Review spots where Gitblit can cache data instead of abusing the disk\r
-    - stats\r
-    - users.properties access\r
-    - available repositories\r
-    - etc\r
 - Code documentation\r
 - Unit testing\r
+- Branch selector on Metrics\r
+- Blame\r
 \r
 ### Idea List\r
 - Ticgit activity/timeline\r
@@ -67,7 +65,6 @@ sources @ [Github][gitbltsrc]
 - View images on Blob page\r
 - View other binary files on Blob page\r
 - Markdown editing feature\r
-- Blame (waiting for the [JGit][jgit] team to do the hard part)\r
 \r
 ### License\r
 Licensed under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0)\r
index ac84e73a764c7f7df4a3c02484431732651f2131..f796266400e2ffa5ff9bafd8d594409a55c20391 100644 (file)
@@ -26,6 +26,7 @@ import org.apache.wicket.markup.repeater.Item;
 import org.apache.wicket.markup.repeater.data.DataView;\r
 import org.apache.wicket.markup.repeater.data.ListDataProvider;\r
 import org.eclipse.jgit.lib.Constants;\r
+import org.eclipse.jgit.lib.FileMode;\r
 import org.eclipse.jgit.lib.Repository;\r
 import org.eclipse.jgit.revwalk.RevCommit;\r
 \r
@@ -70,7 +71,7 @@ public class TreePage extends RepositoryPage {
                        if (path.lastIndexOf('/') > -1) {\r
                                parentPath = path.substring(0, path.lastIndexOf('/'));\r
                        }\r
-                       PathModel model = new PathModel("..", parentPath, 0, 40000, objectId);\r
+                       PathModel model = new PathModel("..", parentPath, 0, FileMode.TREE.getBits(), objectId);\r
                        model.isParentPath = true;\r
                        paths.add(0, model);\r
                }\r