Examples of LogPanel


Examples of com.gitblit.wicket.panels.LogPanel

    int nextPage = pageNumber + 1;
    String refid = objectId;
    if (StringUtils.isEmpty(refid)) {
      refid = getRepositoryModel().HEAD;
    }
    LogPanel logPanel = new LogPanel("logPanel", repositoryName, refid, getRepository(), -1,
        pageNumber - 1, getRepositoryModel().showRemoteBranches);
    boolean hasMore = logPanel.hasMore();
    add(logPanel);

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

Examples of com.gitblit.wicket.panels.LogPanel

    add(new BookmarkablePageLink<Void>("metrics", MetricsPage.class,
        WicketUtils.newRepositoryParameter(repositoryName)));

    add(new RepositoryUrlPanel("repositoryUrlPanel", false, user, model));

    add(new LogPanel("commitsPanel", repositoryName, getRepositoryModel().HEAD, r, numberCommits, 0, getRepositoryModel().showRemoteBranches));
    add(new TagsPanel("tagsPanel", repositoryName, r, numberRefs).hideIfEmpty());
    add(new BranchesPanel("branchesPanel", getRepositoryModel(), r, numberRefs, false).hideIfEmpty());

    if (app().settings().getBoolean(Keys.web.summaryShowReadme, false)) {
      // show a readme on the summary page
View Full Code Here

Examples of com.gitblit.wicket.panels.LogPanel

      // compare page links
//      comparison.add(new BookmarkablePageLink<Void>("patchLink", PatchPage.class,
//          WicketUtils.newRangeParameter(repositoryName, fromCommitId.toString(), toCommitId.getObject())));

      // display list of commits
      comparison.add(new LogPanel("commitList", repositoryName, objectId, r, 0, 0, repository.showRemoteBranches));

      // changed paths list
      comparison.add(new CommitLegendPanel("commitLegend", diff.stat.paths));
      ListDataProvider<PathChangeModel> pathsDp = new ListDataProvider<PathChangeModel>(diff.stat.paths);
      DataView<PathChangeModel> pathsView = new DataView<PathChangeModel>("changedPath", pathsDp) {
View Full Code Here

Examples of com.gitblit.wicket.panels.LogPanel

    add(new BookmarkablePageLink<Void>("metrics", MetricsPage.class,
        WicketUtils.newRepositoryParameter(repositoryName)));

    add(new RepositoryUrlPanel("repositoryUrlPanel", false, user, model));

    add(new LogPanel("commitsPanel", repositoryName, getRepositoryModel().HEAD, r, numberCommits, 0, getRepositoryModel().showRemoteBranches));
    add(new TagsPanel("tagsPanel", repositoryName, r, numberRefs).hideIfEmpty());
    add(new BranchesPanel("branchesPanel", getRepositoryModel(), r, numberRefs, false).hideIfEmpty());

    if (app().settings().getBoolean(Keys.web.summaryShowReadme, false)) {
      // show a readme on the summary page
View Full Code Here

Examples of com.gitblit.wicket.panels.LogPanel

    int nextPage = pageNumber + 1;
    String refid = objectId;
    if (StringUtils.isEmpty(refid)) {
      refid = getRepositoryModel().HEAD;
    }
    LogPanel logPanel = new LogPanel("logPanel", repositoryName, refid, getRepository(), -1,
        pageNumber - 1, getRepositoryModel().showRemoteBranches);
    boolean hasMore = logPanel.hasMore();
    add(logPanel);

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

Examples of com.gitblit.wicket.panels.LogPanel

      // compare page links
//      comparison.add(new BookmarkablePageLink<Void>("patchLink", PatchPage.class,
//          WicketUtils.newRangeParameter(repositoryName, fromCommitId.toString(), toCommitId.getObject())));

      // display list of commits
      comparison.add(new LogPanel("commitList", repositoryName, objectId, r, 0, 0, repository.showRemoteBranches));

      // changed paths list
      comparison.add(new CommitLegendPanel("commitLegend", diff.stat.paths));
      ListDataProvider<PathChangeModel> pathsDp = new ListDataProvider<PathChangeModel>(diff.stat.paths);
      DataView<PathChangeModel> pathsView = new DataView<PathChangeModel>("changedPath", pathsDp) {
View Full Code Here

Examples of csa.jportal.gui.LogPanel

    {
        if (b==mData.mDebugOff) return;
        mData.mDebugOff=b;
        if (b)
        {
            mDebugPanel = new LogPanel();
            mDebugPanel.setDebugLevel(mData.mDebugLevel);
            mDebugPanel.setInterestedFiles(mData.mDebugFiles);
            mDebugPanel.setInterestedClasses(mData.mDebugClasses);
            mDebugPanel.setInterestedMethods(mData.mDebugMethods);
            mDebugPanel.setTrackTime(mData.mDebugTiming);
View Full Code Here

Examples of de.lmu.ifi.dbs.elki.gui.util.LogPanel

  public MultiStepGUI() {
    super();
    this.setLayout(new GridBagLayout());
    {
      // setup text output area
      outputArea = new LogPanel();

      // Create the scroll pane and add the table to it.
      JScrollPane outputPane = new JScrollPane(outputArea);
      outputPane.setPreferredSize(new Dimension(800, 400));
View Full Code Here

Examples of de.lmu.ifi.dbs.elki.gui.util.LogPanel

      add(scrollPane, constraints);
    }

    {
      // setup text output area
      outputArea = new LogPanel();

      // Create the scroll pane and add the table to it.
      JScrollPane outputPane = new JScrollPane(outputArea);
      outputPane.setPreferredSize(new Dimension(800, 400));
View Full Code Here

Examples of de.lmu.ifi.dbs.elki.gui.util.LogPanel

      add(scrollPane, constraints);
    }

    {
      // setup text output area
      outputArea = new LogPanel();

      // Create the scroll pane and add the table to it.
      JScrollPane outputPane = new JScrollPane(outputArea);
      outputPane.setPreferredSize(new Dimension(800, 400));
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.