James Moger
2012-06-18 67d4f89b0cddb3de05c20e08c20f1bea714c2a9e
src/com/gitblit/wicket/PageRegistration.java
@@ -49,6 +49,24 @@
   }
   /**
    * Represents a page link to a non-Wicket page. Might be external.
    *
    * @author James Moger
    *
    */
   public static class OtherPageLink extends PageRegistration {
      private static final long serialVersionUID = 1L;
      public final String url;
      public OtherPageLink(String translationKey, String url) {
         super(translationKey, null);
         this.url = url;
      }
   }
   /**
    * Represents a DropDownMenu for the topbar
    * 
    * @author James Moger