James Moger
2012-06-15 d9afa9a3e34762bd21b05ada7ea0c1f212ef9dd8
src/com/gitblit/wicket/pages/GravatarProfilePage.java
@@ -18,15 +18,13 @@
import java.io.IOException;
import java.text.MessageFormat;
import org.apache.wicket.AttributeModifier;
import org.apache.wicket.PageParameters;
import org.apache.wicket.markup.html.basic.Label;
import org.apache.wicket.markup.html.image.Image;
import org.apache.wicket.markup.html.link.ExternalLink;
import org.apache.wicket.model.Model;
import com.gitblit.models.GravatarProfile;
import com.gitblit.utils.ActivityUtils;
import com.gitblit.wicket.ExternalImage;
import com.gitblit.wicket.WicketUtils;
/**
@@ -59,8 +57,7 @@
      add(new Label("username", profile.preferredUsername));
      add(new Label("location", profile.currentLocation));
      add(new Label("aboutMe", profile.aboutMe));
      Image image = new Image("profileImage");
      image.add(new AttributeModifier("src", true, new Model<String>(profile.thumbnailUrl + "?s=256&d=identicon")));
      ExternalImage image = new ExternalImage("profileImage", profile.thumbnailUrl + "?s=256&d=identicon");
      add(image);
      add(new ExternalLink("profileLink", profile.profileUrl));
   }