From d1231c63669f4bc3643985b9032de7f998612e08 Mon Sep 17 00:00:00 2001
From: Jason Pyeron <jpyeron@pdinc.us>
Date: Sun, 19 Aug 2012 21:35:52 -0400
Subject: [PATCH] fixed build to allow builds where a proxy is needed for access to outside resources see: http://ant.apache.org/manual/proxy.html

---
 src/com/gitblit/wicket/pages/BlobPage.html |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/com/gitblit/wicket/pages/BlobPage.html b/src/com/gitblit/wicket/pages/BlobPage.html
index 82ba320..80f061f 100644
--- a/src/com/gitblit/wicket/pages/BlobPage.html
+++ b/src/com/gitblit/wicket/pages/BlobPage.html
@@ -16,22 +16,22 @@
 <!-- need to specify body.onload -->
 <body onload="prettyPrint()">
 
-		<!-- page nav links -->	
-		<div wicket:id="pageLinks">[page links]</div>
-	
 		<!-- blob nav links -->	
 		<div class="page_nav2">
-			<span wicket:id="historyLink">[history link]</span> | <span wicket:id="rawLink">[raw link]</span> | <span wicket:id="headLink">[head link]</span>
+			<a wicket:id="blameLink"><wicket:message key="gb.blame"></wicket:message></a> | <a wicket:id="historyLink"><wicket:message key="gb.history"></wicket:message></a> | <a wicket:id="rawLink"><wicket:message key="gb.raw"></wicket:message></a> | <a wicket:id="headLink"><wicket:message key="gb.head"></wicket:message></a>
 		</div>	
 	
-		<!-- shortlog header -->
-		<div class="header" wicket:id="shortlog">[shortlog header]</div>
+		<!-- commit header -->
+		<div wicket:id="commitHeader">[commit header]</div>
 
 		<!-- breadcrumbs -->
 		<div wicket:id="breadcrumbs">[breadcrumbs]</div>
 		
 		<!--  blob content -->
 		<pre style="border:0px;" wicket:id="blobText">[blob content]</pre>
+
+		<!--  blob image -->
+		<img wicket:id="blobImage" style="padding-top:5px;"></img>
 	
 </body>
 </wicket:extend>

--
Gitblit v1.9.1