James Moger
2014-05-07 0ee8041f980dab7fee723a326fa2a2f5d1fea054
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));
   }
}