| | |
| | |
|
| | | private JCheckBox allowForks;
|
| | |
|
| | | private JCheckBox verifyCommitter;
|
| | |
|
| | | private JComboBox federationStrategy;
|
| | |
|
| | | private JComboBox ownerField;
|
| | |
| | | authorizationPanel.add(allowAuthenticated);
|
| | | authorizationPanel.add(allowNamed);
|
| | |
|
| | | allowForks = new JCheckBox(Translation.get("gb.allowForks"), anRepository.allowForks);
|
| | | allowForks = new JCheckBox(Translation.get("gb.allowForksDescription"), anRepository.allowForks);
|
| | | verifyCommitter = new JCheckBox(Translation.get("gb.verifyCommitterDescription"), anRepository.verifyCommitter);
|
| | |
|
| | | // federation strategies - remove ORIGIN choice if this repository has
|
| | | // no origin.
|
| | |
| | | .add(newFieldPanel(Translation.get("gb.isFrozen"), isFrozen));
|
| | | clonePushPanel
|
| | | .add(newFieldPanel(Translation.get("gb.allowForks"), allowForks));
|
| | | clonePushPanel
|
| | | .add(newFieldPanel(Translation.get("gb.verifyCommitter"), verifyCommitter));
|
| | |
|
| | | usersPalette = new JPalette<String>();
|
| | | JPanel northAccessPanel = new JPanel(new BorderLayout(5, 5));
|
| | |
| | |
|
| | | repository.isFrozen = isFrozen.isSelected();
|
| | | repository.allowForks = allowForks.isSelected();
|
| | | repository.verifyCommitter = verifyCommitter.isSelected();
|
| | |
|
| | | String ml = mailingListsField.getText();
|
| | | if (!StringUtils.isEmpty(ml)) {
|