diff --git a/awx/ui/client/src/forms/Credentials.js b/awx/ui/client/src/forms/Credentials.js index 92642bf239..f81a999fab 100644 --- a/awx/ui/client/src/forms/Credentials.js +++ b/awx/ui/client/src/forms/Credentials.js @@ -67,14 +67,18 @@ export default '
If blank, all groups above are created except Instance ID.
", dataContainer: 'body' }, @@ -161,11 +162,14 @@ export default parseTypeName: 'envParseType', dataTitle: "Environment Variables", dataPlacement: 'right', - awPopOver: "Provide key/value pairs using either YAML or JSON.
" + + awPopOver: "Provide environment variables to pass to the custom inventory script.
" + + "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two.
" + "JSON:{\n" + "YAML:
\"somevar\": \"somevalue\",
\"password\": \"magic\"
}
---\n", + "
somevar: somevalue
password: magic
---\n" + + '
somevar: somevalue
password: magic
View JSON examples at www.json.org
' + + 'View YAML examples at docs.ansible.com
', dataContainer: 'body' }, ec2_variables: { diff --git a/awx/ui/client/src/forms/JobTemplates.js b/awx/ui/client/src/forms/JobTemplates.js index 2751a50f13..78547e2328 100644 --- a/awx/ui/client/src/forms/JobTemplates.js +++ b/awx/ui/client/src/forms/JobTemplates.js @@ -46,8 +46,9 @@ export default editRequired: true, column: 1, awPopOver: "When this template is submitted as a job, setting the type to run will execute the playbook, running tasks " + - " on the selected hosts.
Setting the type to check will not execute the playbook. Instead, ansible will check playbook " + - " syntax, test environment setup and report problems.
", + " on the selected hosts.Setting the type to check will not execute the playbook. Instead, ansible will check playbook " +
+ " syntax, test environment setup and report problems.
Setting the type to scan will execute the playbook and store any " + + " scanned facts for use with Tower's System Tracking feature.
", dataTitle: 'Job Type', dataPlacement: 'right', dataContainer: "body", @@ -230,7 +231,7 @@ export default addRequired: false, editRequird: false, column: 2, - awPopOver: "If enabled, run this playbook as an administrator. This is the equivalent of passing the --become option to the ansible-playbook command.
If enabled, run this playbook as an administrator. This is the equivalent of passing the --become option to the ansible-playbook command.
Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs in the Tower display.
", dataContainer: 'body' }, variables: { @@ -297,8 +298,8 @@ export default editRequired: false, "default": "---", column: 2, - awPopOver: "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter " + - "for ansible-playbook. Provide key/value pairs using either YAML or JSON.
" + + awPopOver: "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter " +
+ "for ansible-playbook. Provide key/value pairs using either YAML or JSON.
{\n" + "YAML:
\"somevar\": \"somevalue\",
\"password\": \"magic\"
}
The Project ID is the " + @@ -114,7 +111,6 @@ angular.module('CredentialsHelper', ['Utilities']) scope.subscription_required = true; scope.key_required = true; scope.key_description = "Paste the contents of the PEM file that corresponds to the certificate you uploaded in the Microsoft Azure console."; - scope.key_hint= "drag and drop a management certificate file on the field below"; break; case 'azure_rm': scope.usernameLabel = "Username"; diff --git a/awx/ui/client/src/notifications/notificationTemplates.form.js b/awx/ui/client/src/notifications/notificationTemplates.form.js index 0a4b2d5499..a49c7a126b 100644 --- a/awx/ui/client/src/notifications/notificationTemplates.form.js +++ b/awx/ui/client/src/notifications/notificationTemplates.form.js @@ -185,6 +185,8 @@ export default function() { from_number: { label: 'Source Phone Number', type: 'text', + awPopOver: '
Number associated with the "Messaging Service" in Twilio.
'+ + 'This must be of the form +18005550199.
Type an option on each line.
'+ - 'For example:
alias1@email.com
\n alias2@email.com
\n',
- dataTitle: 'Destination Channels',
+ '
For example:+12125552368
\n+19105556162
\n',
+ dataTitle: 'Destination SMS Number',
dataPlacement: 'right',
dataContainer: "body",
awRequiredWhen: {
@@ -272,6 +274,8 @@ export default function() {
color: {
label: 'Notification Color',
type: 'text',
+ awPopOver: '
Color can be one of yellow, green, red, ' +
+ 'purple, gray, or random.\n',
awRequiredWhen: {
reqExpression: "hipchat_required",
init: "false"