mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-14 01:15:44 +01:00
51 lines
1.0 KiB
JavaScript
51 lines
1.0 KiB
JavaScript
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
repositoryConfigPanels.push({
|
|
style: 'margin: 10px',
|
|
trackResetOnLoad : true,
|
|
autoScroll : true,
|
|
border : false,
|
|
frame : false,
|
|
collapsible : false,
|
|
collapsed : false,
|
|
layoutConfig : {
|
|
labelSeparator : ''
|
|
},
|
|
items : [{
|
|
xtype : 'fieldset',
|
|
checkboxToggle : false,
|
|
title : 'Mercurial Settings',
|
|
collapsible : true,
|
|
autoHeight : true,
|
|
labelWidth : 140,
|
|
buttonAlign: 'left',
|
|
layoutConfig : {
|
|
labelSeparator : ''
|
|
},
|
|
items : [{
|
|
xtype : 'textfield',
|
|
fieldLabel : 'HG Binary',
|
|
name : 'hgBinary',
|
|
allowBlank : false
|
|
},{
|
|
xtype: 'textfield',
|
|
name: 'hgRepoDirectroy',
|
|
fieldLabel: 'Repository directory',
|
|
allowBlank : false
|
|
},{
|
|
xtype: 'textfield',
|
|
name: 'hgBaseUrl',
|
|
fieldLabel: 'Base URL',
|
|
allowBlank : false
|
|
}],
|
|
buttons: [{
|
|
text: 'Save'
|
|
},{
|
|
text: 'Cancel'
|
|
}]
|
|
}]
|
|
|
|
});
|