diff options
author | Paul Martin <paul@paulsputer.com> | 2015-12-25 22:35:11 +0000 |
---|---|---|
committer | Paul Martin <paul@paulsputer.com> | 2015-12-25 22:35:11 +0000 |
commit | 46f33f87750573713509fbdbd0fc2ae51dc12044 (patch) | |
tree | aa227353d88fa97da0b40c02c46d45862c7013d3 /src/main/java/com/gitblit/wicket/pages/TreePage.html | |
parent | 2539ceea0d47467d54cedd340afa6ede2909b2bd (diff) | |
download | gitblit-46f33f87750573713509fbdbd0fc2ae51dc12044.tar.gz gitblit-46f33f87750573713509fbdbd0fc2ae51dc12044.zip |
Fix for #976 - Filestore links via browser
+ GitLFS client support
+ FilestoreModel now parses meta file
+ Read meta heading from cache if available
+ Authentication based on accept headers for browser view filestore login
+ PathModel & PathChangeModel now understands filestore items
+ Zip & Rar downloads contain include filestore items
+ Filestore servlet returns LFS JSON error only if accepted by client
+ DiffStat now knows repository to allow identification of filestore items
+ Filestore items identified and returned via view, raw & blob links on
blame, commitDiff, commit and Tree pages
Diffstat (limited to 'src/main/java/com/gitblit/wicket/pages/TreePage.html')
-rw-r--r-- | src/main/java/com/gitblit/wicket/pages/TreePage.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/com/gitblit/wicket/pages/TreePage.html b/src/main/java/com/gitblit/wicket/pages/TreePage.html index 51a996ff..c07f9c50 100644 --- a/src/main/java/com/gitblit/wicket/pages/TreePage.html +++ b/src/main/java/com/gitblit/wicket/pages/TreePage.html @@ -22,7 +22,8 @@ <table style="width:100%" class="pretty">
<tr wicket:id="changedPath">
<td class="hidden-phone icon"><img wicket:id="pathIcon" /></td>
- <td><span wicket:id="pathName"></span></td>
+ <td><span wicket:id="pathName"></span></td>
+ <td class="hidden-phone filestore"><span wicket:id="filestore" class="aui-lozenge aui-lozenge-moved"></span></td>
<td class="hidden-phone size"><span wicket:id="pathSize">[path size]</span></td>
<td class="hidden-phone mode"><span wicket:id="pathPermissions">[path permissions]</span></td>
<td class="treeLinks"><span wicket:id="pathLinks">[path links]</span></td>
|