Package com.gitblit.wicket.panels

Examples of com.gitblit.wicket.panels.RepositoryNamePanel


    //
    //
    // GENERAL
    //
    namePanel = new RepositoryNamePanel("namePanel", repositoryModel);
    namePanel.setEditable(allowEditName);
    form.add(namePanel);

    // XXX AccessPolicyPanel is defined later.
View Full Code Here


    };

    // do not let the browser pre-populate these fields
    form.add(new SimpleAttributeModifier("autocomplete", "off"));

    namePanel = new RepositoryNamePanel("namePanel", repositoryModel);
    form.add(namePanel);

    // prepare the default access controls
    AccessRestrictionType defaultRestriction = AccessRestrictionType.fromName(
        app().settings().getString(Keys.git.defaultAccessRestriction, AccessRestrictionType.PUSH.name()));
View Full Code Here

TOP

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

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.