31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-05-29 03:50:46 +00:00
patchtester/administrator/components/com_patchtester/config.xml

117 lines
3.1 KiB
XML
Raw Normal View History

2011-10-11 13:02:57 +00:00
<?xml version="1.0" encoding="utf-8"?>
<config>
2016-05-31 12:14:54 +00:00
<fieldset
2016-05-31 15:18:46 +00:00
name="repositories"
label="COM_PATCHTESTER_FIELDSET_REPOSITORIES_LABEL"
description="COM_PATCHTESTER_FIELDSET_REPOSITORIES_DESC"
2016-05-31 12:14:54 +00:00
>
2016-05-31 14:29:43 +00:00
<field
name="repository"
type="list"
label="COM_PATCHTESTER_FIELD_REPOSITORY_LABEL"
description="COM_PATCHTESTER_FIELD_REPOSITORY_DESC"
default="joomla:joomla-cms"
onchange="if (jQuery(this).val() != 'custom') { var parts = jQuery(this).val().split(':'); } else { var parts = ['', '']; } document.getElementById('jform_org').value = parts[0]; document.getElementById('jform_repo').value = parts[1];"
>
<option value="joomla:joomla-cms">COM_PATCHTESTER_FIELD_REPOSITORY_OPTION_JOOMLA_CMS</option>
<option value="joomla-extensions:patchtester">COM_PATCHTESTER_FIELD_REPOSITORY_OPTION_PATCHTESTER</option>
<option value="joomla-extensions:install-from-web-client">COM_PATCHTESTER_FIELD_REPOSITORY_OPTION_INSTALL_FROM_WEB</option>
2016-07-30 20:09:04 +00:00
<option value="joomla-extensions:weblinks">COM_PATCHTESTER_FIELD_REPOSITORY_OPTION_WEBLINKS</option>
2016-05-31 14:29:43 +00:00
<option value="custom">COM_PATCHTESTER_FIELD_REPOSITORY_CUSTOM</option>
</field>
2016-05-31 12:14:54 +00:00
<field
name="org"
type="text"
2013-07-13 01:06:39 +00:00
label="COM_PATCHTESTER_FIELD_ORG_LABEL"
2016-05-31 12:14:54 +00:00
description="COM_PATCHTESTER_FIELD_ORG_DESC"
default="joomla"
2016-05-31 14:29:43 +00:00
id="org"
showon="repository:custom"
2013-07-13 01:06:39 +00:00
/>
2011-10-11 13:02:57 +00:00
2016-05-31 12:14:54 +00:00
<field
name="repo"
type="text"
2013-07-13 01:06:39 +00:00
label="COM_PATCHTESTER_FIELD_REPO_LABEL"
2016-05-31 12:14:54 +00:00
description="COM_PATCHTESTER_FIELD_REPO_DESC"
default="joomla-cms"
2016-05-31 14:29:43 +00:00
id="repo"
showon="repository:custom"
2013-07-13 01:06:39 +00:00
/>
2011-10-11 13:02:57 +00:00
2016-05-31 14:29:43 +00:00
</fieldset>
<fieldset
2016-05-31 15:18:46 +00:00
name="authentication"
label="COM_PATCHTESTER_FIELDSET_AUTHENTICATION_LABEL"
description="COM_PATCHTESTER_FIELDSET_AUTHENTICATION_DESC"
2016-05-31 14:29:43 +00:00
>
<field
name="gh_auth"
type="list"
label="COM_PATCHTESTER_FIELD_GH_AUTH_LABEL"
description="COM_PATCHTESTER_FIELD_GH_AUTH_DESC"
default=""
2016-06-12 23:04:04 +00:00
onchange="jQuery('#jform_gh_user, #jform_gh_password, #jform_gh_token').val('');"
2016-05-31 14:29:43 +00:00
>
<option value="">JNONE</option>
<option value="credentials">COM_PATCHTESTER_FIELD_GH_AUTH_OPTION_CREDENTIALS</option>
<option value="token">COM_PATCHTESTER_FIELD_GH_AUTH_OPTION_TOKEN</option>
</field>
2016-05-31 16:06:58 +00:00
<!-- Note: Default username is a space to avoid browser autocomplete. -->
2016-05-31 12:14:54 +00:00
<field
name="gh_user"
type="text"
2013-07-13 01:06:39 +00:00
label="COM_PATCHTESTER_FIELD_GH_USER_LABEL"
2016-05-31 12:14:54 +00:00
description="COM_PATCHTESTER_FIELD_GH_USER_DESC"
autocomplete="off"
default=" "
2016-05-31 14:29:43 +00:00
showon="gh_auth:credentials"
2013-07-13 01:06:39 +00:00
/>
2011-10-11 13:02:57 +00:00
2016-05-31 12:14:54 +00:00
<field
name="gh_password"
type="password"
2013-07-13 01:06:39 +00:00
label="COM_PATCHTESTER_FIELD_GH_PASSWORD_LABEL"
2016-05-31 12:14:54 +00:00
description="COM_PATCHTESTER_FIELD_GH_PASSWORD_DESC"
autocomplete="off"
2016-05-31 15:18:46 +00:00
default=""
2016-05-31 14:29:43 +00:00
showon="gh_auth:credentials"
2013-07-13 01:06:39 +00:00
/>
2016-05-31 12:14:54 +00:00
<field
name="gh_token"
type="text"
label="COM_PATCHTESTER_FIELD_GH_TOKEN_LABEL"
2016-05-31 12:14:54 +00:00
description="COM_PATCHTESTER_FIELD_GH_TOKEN_DESC"
2016-05-31 14:29:43 +00:00
showon="gh_auth:token"
/>
2016-05-31 12:14:54 +00:00
2013-07-13 01:06:39 +00:00
</fieldset>
2011-10-11 13:02:57 +00:00
2016-05-31 12:14:54 +00:00
<fieldset
name="permissions"
label="JCONFIG_PERMISSIONS_LABEL"
description="JCONFIG_PERMISSIONS_DESC"
>
<field
name="rules"
type="rules"
label="JCONFIG_PERMISSIONS_LABEL"
2013-07-13 01:06:39 +00:00
component="com_patchtester"
filter="rules"
validate="rules"
section="component"
/>
2016-05-31 12:14:54 +00:00
2013-07-13 01:06:39 +00:00
</fieldset>
2016-05-31 12:14:54 +00:00
2011-10-11 13:02:57 +00:00
</config>