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