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:31:19 +02:00
|
|
|
registerConfigPanel({
|
|
|
|
|
xtype : 'configForm',
|
|
|
|
|
title : 'Mercurial Settings',
|
2010-09-17 15:13:53 +02:00
|
|
|
items : [{
|
2010-09-17 15:31:19 +02:00
|
|
|
xtype : 'textfield',
|
|
|
|
|
fieldLabel : 'HG Binary',
|
|
|
|
|
name : 'hgBinary',
|
|
|
|
|
allowBlank : false
|
|
|
|
|
},{
|
|
|
|
|
xtype: 'textfield',
|
|
|
|
|
name: 'repositoryDirectory',
|
|
|
|
|
fieldLabel: 'Repository directory',
|
|
|
|
|
allowBlank : false
|
|
|
|
|
},{
|
|
|
|
|
xtype: 'textfield',
|
|
|
|
|
name: 'baseUrl',
|
|
|
|
|
fieldLabel: 'Base URL',
|
|
|
|
|
allowBlank : false
|
2010-09-17 15:13:53 +02:00
|
|
|
}]
|
|
|
|
|
});
|