mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-15 09:46:16 +01:00
25 lines
530 B
JavaScript
25 lines
530 B
JavaScript
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
registerConfigPanel({
|
|
xtype : 'configForm',
|
|
title : 'Mercurial Settings',
|
|
items : [{
|
|
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
|
|
}]
|
|
});
|