James Moger
2013-05-15 bca8c5c52554b6aac65b8e2300675ae8f6af1d6d
src/main/java/com/gitblit/wicket/pages/RepositoryPage.java
@@ -246,14 +246,6 @@
         }
      }
      
      // show sparkleshare folder icon
      if (model.isSparkleshared()) {
         add(WicketUtils.newImage("repositoryIcon", "folder_star_32x32.png",
               getString("gb.isSparkleshared")));
      } else {
         add(WicketUtils.newClearPixel("repositoryIcon").setVisible(false));
      }
      if (getRepositoryModel().isBare) {
         add(new Label("workingCopyIndicator").setVisible(false));
      } else {
@@ -439,9 +431,9 @@
   }
   protected void addFullText(String wicketId, String text, boolean substituteRegex) {
      String html = StringUtils.escapeForHtml(text, true);
      String html = StringUtils.escapeForHtml(text, false);
      if (substituteRegex) {
         html = GitBlit.self().processCommitMessage(repositoryName, text);
         html = GitBlit.self().processCommitMessage(repositoryName, html);
      } else {
         html = StringUtils.breakLinesForHtml(html);
      }