Package com.gitblit.wicket.panels

Examples of com.gitblit.wicket.panels.TicketListPanel



    // paging links
    buildPager(queryParam, milestoneParam, statiiParam, assignedToParam, sortBy, desc, page, pageSize, results.size(), totalResults);

    add(new TicketListPanel("ticketList", results, false, false));

    // new milestone link
    RepositoryModel repositoryModel = getRepositoryModel();
    final boolean acceptingUpdates = app().tickets().isAcceptingTicketUpdates(repositoryModel)
         && user != null && user.canAdmin(getRepositoryModel());
View Full Code Here


    int totalResults = results.size() == 0 ? 0 : results.get(0).totalResults;
    buildPager(queryParam, milestoneParam, statiiParam, assignedToParam, sortBy, desc, page, pageSize, results.size(), totalResults);

    final boolean showSwatch = app().settings().getBoolean(Keys.web.repositoryListSwatches, true);
    add(new TicketListPanel("ticketList", results, showSwatch, true));
  }
View Full Code Here

TOP

Related Classes of com.gitblit.wicket.panels.TicketListPanel

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.