James Moger
2014-05-07 b016de996e77b3d7b6e68d8442c47a50e2a3d2eb
src/main/java/com/gitblit/wicket/panels/LinkPanel.java
@@ -107,10 +107,15 @@
      link.add(new Label("label", labelModel));
      add(link);
   }
   public void setNoFollow() {
      Component c = get("link");
      c.add(new SimpleAttributeModifier("rel", "nofollow"));
   }
   public void setTooltip(String tooltip) {
      Component c = get("link");
      c.add(new SimpleAttributeModifier("title", tooltip));
   }
}