Examples of HistoryPanel


Examples of com.gitblit.wicket.panels.HistoryPanel

    String path = WicketUtils.getPath(params);
    int pageNumber = WicketUtils.getPage(params);
    int prevPage = Math.max(0, pageNumber - 1);
    int nextPage = pageNumber + 1;

    HistoryPanel history = new HistoryPanel("historyPanel", repositoryName, objectId, path,
        getRepository(), -1, pageNumber - 1, getRepositoryModel().showRemoteBranches);
    boolean hasMore = history.hasMore();
    add(history);

    add(new BookmarkablePageLink<Void>("firstPageTop", HistoryPage.class,
        WicketUtils.newPathParameter(repositoryName, objectId, path))
        .setEnabled(pageNumber > 1));
View Full Code Here

Examples of com.gitblit.wicket.panels.HistoryPanel

    String path = WicketUtils.getPath(params);
    int pageNumber = WicketUtils.getPage(params);
    int prevPage = Math.max(0, pageNumber - 1);
    int nextPage = pageNumber + 1;

    HistoryPanel history = new HistoryPanel("historyPanel", repositoryName, objectId, path,
        getRepository(), -1, pageNumber - 1, getRepositoryModel().showRemoteBranches);
    boolean hasMore = history.hasMore();
    add(history);

    add(new BookmarkablePageLink<Void>("firstPageTop", HistoryPage.class,
        WicketUtils.newPathParameter(repositoryName, objectId, path))
        .setEnabled(pageNumber > 1));
View Full Code Here

Examples of nu.fw.jeti.plugins.drawing.ui.HistoryPanel

    currentPicture = new PicturesContent();
    pictures.add(currentPicture);
    receivers = Collections.synchronizedList(new ArrayList<JID>());

    backend = b;
    HistoryPanel historyPanel = new HistoryPanel(this);
    history = new PictureHistory(backend, historyPanel);

    receivers.add(userName);
    thread = t;
    window = new PictureChatFrame(this, currentPicture, historyPanel);
View Full Code Here

Examples of org.cyclop.web.panels.history.HistoryPanel

  private void initHistoryTab(TabHelper tabSupport) {
    if (!AppConfig.get().history.enabled) {
      add(new Label("historyPanel", "History is disabled in application-configuration"));
      return;
    }
    HistoryPanel historyPanel = new HistoryPanel("historyPanel");
    add(historyPanel);
    tabSupport.registerReloadableTab(historyPanel, ".cq-tabHistory");
  }
View Full Code Here

Examples of org.ggp.base.apps.server.history.HistoryPanel

                hosts.add(player.getHost());
                ports.add(player.getPort());
                playerNames.add(player.getName());
      }

      HistoryPanel historyPanel = new HistoryPanel();
      ErrorPanel errorPanel = new ErrorPanel();
      VisualizationPanel visualizationPanel = new VisualizationPanel(spec.theGame);
      StatesPanel statesPanel = new StatesPanel();

      if (spec.shouldDetail) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.