Files
SCM-Manager/plugins/scm-hg-plugin/src/main/resources/sonia/scm/hg.config.js

51 lines
1.0 KiB
JavaScript
Raw Normal View History

2010-09-16 21:50:30 +02:00
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
2010-09-17 15:13:53 +02:00
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'
}]
}]
2010-09-16 21:50:30 +02:00
2010-09-17 15:13:53 +02:00
});