forked from cloudera/hue
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KO updates was missing in mapping. Templates for CHMOD and MOVES was missing.
- Loading branch information
1 parent
8a64a06
commit 5efec71
Showing
4 changed files
with
93 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<div class="control-group" data-bind="attr: {'class': {{ ko.error_class }} }"> | ||
<label class="control-label">{{ title }}</label> | ||
<div class="controls"> | ||
<table class="table-condensed designTable" data-bind="visible: {{ ko.condition }}"> | ||
<tbody> | ||
<thead> | ||
<tr> | ||
<th>Path</th> | ||
<th>Permissions</th> | ||
<th>Recursive</th> | ||
<th></th> | ||
</tr> | ||
</thead> | ||
<tbody data-bind="foreach: {{ ko.items }}"> | ||
<tr> | ||
<td><input type="text" class="input span4 required pathFolderChooserKo" data-bind="fileChooser: $data, value: path, uniqueName: false" /></td> | ||
<td><input type="text" class="input span2 required propKey" data-bind="value: permissions, uniqueName: false" /></td> | ||
<td><input class="span1 required" type="checkbox" data-bind="checked: recursive, uniqueName: false"></td> | ||
<td><a class="btn" href="javascript:void(0);" data-bind="click: {{ delete.func }}">{{ delete.name }}</a></td> | ||
</tr> | ||
</tbody> | ||
</tbody> | ||
</table> | ||
<button class="btn" data-bind="click: {{ add.func }}">{{ add.name }}</button> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<div class="control-group" data-bind="attr: {'class': {{ ko.error_class }} }"> | ||
<label class="control-label">{{ title }}</label> | ||
<div class="controls"> | ||
<table class="table-condensed designTable" data-bind="visible: {{ ko.condition }}"> | ||
<tbody> | ||
<thead> | ||
<tr> | ||
<th>Source</th> | ||
<th>Destination</th> | ||
<th></th> | ||
</tr> | ||
</thead> | ||
<tbody data-bind="foreach: {{ ko.items }}"> | ||
<tr> | ||
<td><input type="text" class="input span3 required pathFolderChooserKo" data-bind="fileChooser: $data, value: source, uniqueName: false" /></td> | ||
<td><input type="text" class="input span3 required pathFolderChooserKo" data-bind="fileChooser: $data, value: destination, uniqueName: false" /></td> | ||
<td><a class="btn" href="javascript:void(0);" data-bind="click: {{ delete.func }}">{{ delete.name }}</a></td> | ||
</tr> | ||
</tbody> | ||
</tbody> | ||
</table> | ||
<button class="btn" data-bind="click: {{ add.func }}">{{ add.name }}</button> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters