Examples of BulletListPanel


Examples of com.gitblit.wicket.panels.BulletListPanel

    form.add(usersPalette);
    form.add(teamsPalette);
    form.add(federationSetsPalette);
    form.add(preReceivePalette);
    form.add(new BulletListPanel("inheritedPreReceive", getString("gb.inherited"), app().repositories()
        .getPreReceiveScriptsInherited(repositoryModel)));
    form.add(postReceivePalette);
    form.add(new BulletListPanel("inheritedPostReceive", getString("gb.inherited"), app().repositories()
        .getPostReceiveScriptsInherited(repositoryModel)));

    WebMarkupContainer customFieldsSection = new WebMarkupContainer("customFieldsSection");
    customFieldsSection.add(customFieldsListView);
    form.add(customFieldsSection.setVisible(!app().settings().getString(Keys.groovy.customFields, "").isEmpty()));
View Full Code Here

Examples of com.gitblit.wicket.panels.BulletListPanel

    form.add(new TextField<String>("mailingLists", mailingLists));

    form.add(new RegistrantPermissionsPanel("repositories", RegistrantType.REPOSITORY,
        repos, permissions, getAccessPermissions()));
    form.add(preReceivePalette);
    form.add(new BulletListPanel("inheritedPreReceive", "inherited", app().repositories()
        .getPreReceiveScriptsInherited(null)));
    form.add(postReceivePalette);
    form.add(new BulletListPanel("inheritedPostReceive", "inherited", app().repositories()
        .getPostReceiveScriptsInherited(null)));

    form.add(new Button("save"));
    Button cancel = new Button("cancel") {
      private static final long serialVersionUID = 1L;
View Full Code Here

Examples of com.gitblit.wicket.panels.BulletListPanel

        getString("gb.verifyCommitter"),
        getString("gb.verifyCommitterDescription") + "<br/>" + getString("gb.verifyCommitterNote"),
        verifyCommitter).setIsHtmlDescription(true));

    form.add(preReceivePalette);
    form.add(new BulletListPanel("inheritedPreReceive", getString("gb.inherited"), app().repositories()
        .getPreReceiveScriptsInherited(repositoryModel)));
    form.add(postReceivePalette);
    form.add(new BulletListPanel("inheritedPostReceive", getString("gb.inherited"), app().repositories()
        .getPostReceiveScriptsInherited(repositoryModel)));

    WebMarkupContainer customFieldsSection = new WebMarkupContainer("customFieldsSection");
    customFieldsSection.add(customFieldsListView);
    form.add(customFieldsSection.setVisible(!app().settings().getString(Keys.groovy.customFields, "").isEmpty()));
View Full Code Here

Examples of com.gitblit.wicket.panels.BulletListPanel

    form.add(new TextField<String>("mailingLists", mailingLists));

    form.add(new RegistrantPermissionsPanel("repositories", RegistrantType.REPOSITORY,
        repos, permissions, getAccessPermissions()));
    form.add(preReceivePalette);
    form.add(new BulletListPanel("inheritedPreReceive", "inherited", app().repositories()
        .getPreReceiveScriptsInherited(null)));
    form.add(postReceivePalette);
    form.add(new BulletListPanel("inheritedPostReceive", "inherited", app().repositories()
        .getPostReceiveScriptsInherited(null)));

    form.add(new Button("save"));
    Button cancel = new Button("cancel") {
      private static final long serialVersionUID = 1L;
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.