Tom
2014-11-14 feefe7a2febab2e9fecc44b170ae900215816f7c
src/main/java/com/gitblit/wicket/pages/ImageDiffHandler.java
@@ -40,6 +40,8 @@
   private final String baseUrl;
   private final List<String> imageExtensions;
   private int imgDiffCount = 0;
   public ImageDiffHandler(final String baseUrl, final String repositoryName, final String oldCommitId,
         final String newCommitId, final List<String> imageExtensions) {
      this.baseUrl = baseUrl;
@@ -62,9 +64,12 @@
         String oldUrl = getImageUrl(diffEntry, Side.OLD);
         String newUrl = getImageUrl(diffEntry, Side.NEW);
         if (oldUrl != null && newUrl != null) {
            imgDiffCount++;
            String id = "imgdiff" + imgDiffCount;
            HtmlBuilder builder = new HtmlBuilder("div");
            Element container = builder.root().appendElement("div").attr("class", "imgdiff");
            Element resizeable = container.appendElement("div").attr("class", "imgdiff-left");
            Element wrapper = builder.root().attr("class", "imgdiff-container").attr("id", "imgdiff-" + id);
            Element container = wrapper.appendElement("div").attr("class", "imgdiff-ovr-slider").appendElement("div").attr("class", "imgdiff");
            Element old = container.appendElement("div").attr("class", "imgdiff-left");
            // style='max-width:640px;' is necessary for ensuring that the browser limits large images
            // to some reasonable width, and to override the "img { max-width: 100%; }" from bootstrap.css,
            // which would scale the left image to the width of its resizeable container, which isn't what
@@ -73,8 +78,10 @@
            // is too wide.
            // XXX: Maybe add a max-height, too, to limit portrait-oriented images to some reasonable height?
            // (Like a 300x10000px image...)
            resizeable.appendElement("img").attr("class", "imgdiff imgdiff-left").attr("style", "max-width:640px;").attr("src", oldUrl);
            old.appendElement("img").attr("class", "imgdiff-old").attr("id", id).attr("style", "max-width:640px;").attr("src", oldUrl);
            container.appendElement("img").attr("class", "imgdiff").attr("style", "max-width:640px;").attr("src", newUrl);
            wrapper.appendElement("br");
            wrapper.appendElement("div").attr("class", "imgdiff-opa-container").appendElement("div").attr("class", "imgdiff-opa-slider");
            return builder.toString();
         }
         break;
@@ -90,6 +97,11 @@
      return null;
   }
   /** Returns the number of image diffs generated so far by this {@link ImageDiffHandler}. */
   public int getImgDiffCount() {
      return imgDiffCount;
   }
   /**
    * Constructs a URL that will fetch the designated resource in the git repository. The returned string will
    * contain the URL fully URL-escaped, but note that it may still contain unescaped ampersands, so the result