|
|
@@ -158,7 +158,7 @@ ${ commonheader(_("Workflow Editor"), "Oozie", user, "40px") | n,unicode }
|
|
|
|
|
|
<a title="${ _('Workspace') }" target="_blank" rel="tooltip" data-placement="right"
|
|
|
data-original-title="${ _('Go upload additional files and libraries to the deployment directory on HDFS') }"
|
|
|
- data-bind="css: {'btn': true}, attr: {href: '/filebrowser/view' + $root.workflow.properties.deployment_dir() }">
|
|
|
+ data-bind="css: {'btn': true}, attr: { href: '/filebrowser/view' + $root.workflow.properties.deployment_dir() }">
|
|
|
<i class="fa fa-fw fa-folder-open"></i>
|
|
|
</a>
|
|
|
|
|
|
@@ -519,8 +519,10 @@ ${ commonheader(_("Workflow Editor"), "Oozie", user, "40px") | n,unicode }
|
|
|
${ _('Delete') } <i class="fa fa-plus"></i>
|
|
|
</a>
|
|
|
|
|
|
- <h6>${ _('Job XML') }</h6>
|
|
|
- <input type="text" class="input-xlarge filechooser-input" data-bind="filechooser: properties.job_xml, filechooserOptions: globalFilechooserOptions, attr: { placeholder: $root.workflow_properties.job_xml.help_text }"/>
|
|
|
+ <!-- ko if: properties.job_xml -->
|
|
|
+ <h6>${ _('Job XML') }</h6>
|
|
|
+ <input type="text" class="input-xlarge filechooser-input" data-bind="filechooser: properties.job_xml, filechooserOptions: globalFilechooserOptions, attr: { placeholder: $root.workflow_properties.job_xml.help_text }"/>
|
|
|
+ <!-- /ko -->
|
|
|
|
|
|
<h6>
|
|
|
<a class="pointer" data-bind="click: function(){ properties.job_properties.push({'name': '', 'value': ''}); $(document).trigger('drawArrows') }">
|
|
|
@@ -695,9 +697,14 @@ ${ commonheader(_("Workflow Editor"), "Oozie", user, "40px") | n,unicode }
|
|
|
|
|
|
<div data-bind="visible: $root.isEditing">
|
|
|
<div data-bind="visible: ! $parent.ooziePropertiesExpanded()" class="nowrap">
|
|
|
- <input type="text" class="filechooser-input" data-bind="filechooser: properties.script_path, filechooserOptions: globalFilechooserOptions, attr: { placeholder: $root.workflow_properties.script_path.help_text }"/>
|
|
|
+ <input type="text" style="width:25%" class="filechooser-input" data-bind="filechooser: properties.script_path, filechooserOptions: globalFilechooserOptions, attr: { placeholder: $root.workflow_properties.script_path.help_text }"/>
|
|
|
<span data-bind='template: { name: "common-fs-link", data: {path: properties.script_path(), with_label: false}}'></span>
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+ <span data-bind="text: $root.workflow_properties.hive_xml.label"></span>
|
|
|
+ <input type="text" style="width:25%" class="input-large filechooser-input" data-bind="filechooser: properties.hive_xml, filechooserOptions: globalFilechooserOptions, attr: { placeholder: $root.workflow_properties.hive_xml.help_text }"/>
|
|
|
+
|
|
|
<div class="row-fluid">
|
|
|
<div class="span6" data-bind="template: { name: 'common-properties-parameters' }"></div>
|
|
|
</div>
|
|
|
@@ -1646,7 +1653,7 @@ ${ commonheader(_("Workflow Editor"), "Oozie", user, "40px") | n,unicode }
|
|
|
<td data-bind="text: label" style="width: 1%; padding-right: 10px" class="no-wrap"></td>
|
|
|
<td>
|
|
|
<!-- ko if: type() == '' -->
|
|
|
- <input type="text" class="filechooser-input" data-bind="value: value, valueUpdate:'afterkeydown', filechooser: value, filechooserOptions: globalFilechooserOptions, attr: { placeholder: help_text }">
|
|
|
+ <input type="text" class="filechooser-input" style="width:80%" data-bind="value: value, valueUpdate:'afterkeydown', filechooser: value, filechooserOptions: globalFilechooserOptions, attr: { placeholder: help_text }">
|
|
|
<!-- /ko -->
|
|
|
<!-- ko if: type() == 'text' -->
|
|
|
<input type="text" data-bind="value: value, valueUpdate:'afterkeydown', attr: { placeholder: help_text }" class="input-xlarge"/>
|