Package com.gitblit.servlet.DownloadZipServlet

Examples of com.gitblit.servlet.DownloadZipServlet.Format


      }

      @Override
      public void populateItem(final Item<String> item) {
        String compressionType = item.getModelObject();
        Format format = Format.fromName(compressionType);

        String href = DownloadZipServlet.asLink(baseUrl, repositoryName,
            objectId, path, format);
        LinkPanel c = new LinkPanel("compressedLink", null, format.name(), href);
        c.setNoFollow();
        item.add(c);
        Label lb = new Label("linkSep", "|");
        lb.setVisible(counter > 0);
        lb.setRenderBodyOnly(true);
View Full Code Here

TOP

Related Classes of com.gitblit.servlet.DownloadZipServlet.Format

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.