bastion 0.1.8 → 0.1.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (92) hide show
  1. checksums.yaml +5 -13
  2. data/README.md +5 -6
  3. data/Rakefile +1 -1
  4. data/app/assets/javascripts/bastion/bastion-bootstrap.js +0 -4
  5. data/app/assets/javascripts/bastion/bastion.js +3 -9
  6. data/app/assets/javascripts/bastion/bastion.module.js +1 -1
  7. data/app/assets/javascripts/bastion/{incubator/alch-alert.directive.js → components/bst-alert.directive.js} +4 -4
  8. data/app/assets/javascripts/bastion/{incubator/alch-container-scroll.directive.js → components/bst-container-scroll.directive.js} +3 -3
  9. data/app/assets/javascripts/bastion/{incubator/alch-dropdown.directive.js → components/bst-dropdown.directive.js} +4 -4
  10. data/app/assets/javascripts/bastion/{incubator/alch-edit.directive.js → components/bst-edit.directive.js} +34 -34
  11. data/app/assets/javascripts/bastion/{incubator/alch-flyout.directive.js → components/bst-flyout.directive.js} +4 -4
  12. data/app/assets/javascripts/bastion/{incubator/alch-form-buttons.directive.js → components/bst-form-buttons.directive.js} +4 -4
  13. data/app/assets/javascripts/bastion/{incubator/alch-form-group.directive.js → components/bst-form-group.directive.js} +4 -4
  14. data/app/assets/javascripts/bastion/{incubator/alch-infinite-scroll.directive.js → components/bst-infinite-scroll.directive.js} +5 -5
  15. data/app/assets/javascripts/bastion/{incubator/alch-menu.directive.js → components/bst-menu.directive.js} +4 -4
  16. data/app/assets/javascripts/bastion/{incubator/alch-modal.directive.js → components/bst-modal.directive.js} +5 -5
  17. data/app/assets/javascripts/bastion/components/bst-on-enter.directive.js +41 -0
  18. data/app/assets/javascripts/bastion/{incubator/alch-save-control.directive.js → components/bst-save-control.directive.js} +4 -4
  19. data/app/assets/javascripts/bastion/{incubator/alch-table.directive.js → components/bst-table.directive.js} +31 -31
  20. data/app/assets/javascripts/bastion/components/components.module.js +27 -0
  21. data/app/assets/javascripts/bastion/{widgets → components}/current-tasks.directive.js +3 -3
  22. data/app/assets/javascripts/bastion/{incubator/format → components/formatters}/array-to-string.filter.js +2 -2
  23. data/app/assets/javascripts/bastion/{incubator/format → components/formatters}/boolean-to-yes-no.filter.js +2 -2
  24. data/app/assets/javascripts/bastion/{incubator/format → components/formatters}/capitalize.filter.js +2 -2
  25. data/app/assets/javascripts/bastion/{incubator/format/alch-format.module.js → components/formatters/components-formatters.module.js} +2 -2
  26. data/app/assets/javascripts/bastion/{incubator/format → components/formatters}/key-value-to-string.filter.js +2 -2
  27. data/app/assets/javascripts/bastion/{incubator/format → components/formatters}/unlimitedFilter.filter.js +3 -3
  28. data/app/assets/javascripts/bastion/{widgets → components}/nutupane-table.directive.js +1 -1
  29. data/app/assets/javascripts/bastion/{widgets → components}/nutupane.factory.js +2 -2
  30. data/app/assets/javascripts/bastion/{widgets → components}/page-title.directive.js +2 -2
  31. data/app/assets/javascripts/bastion/{widgets → components}/page-title.service.js +2 -2
  32. data/app/assets/javascripts/bastion/{widgets → components}/path-selector.directive.js +3 -3
  33. data/app/assets/javascripts/bastion/{incubator/views/alch-alert.html → components/views/bst-alert.html} +0 -0
  34. data/app/assets/javascripts/bastion/{incubator/views/alch-dropdown.html → components/views/bst-dropdown.html} +1 -1
  35. data/app/assets/javascripts/bastion/{incubator/views/alch-edit-add-item.html → components/views/bst-edit-add-item.html} +0 -0
  36. data/app/assets/javascripts/bastion/{incubator/views/alch-edit-add-remove-cancel.html → components/views/bst-edit-add-remove-cancel.html} +0 -0
  37. data/app/assets/javascripts/bastion/{incubator/views/alch-edit-checkbox.html → components/views/bst-edit-checkbox.html} +1 -1
  38. data/app/assets/javascripts/bastion/{incubator/views/alch-edit-custom.html → components/views/bst-edit-custom.html} +2 -2
  39. data/app/assets/javascripts/bastion/{incubator/views/alch-edit-multiselect.html → components/views/bst-edit-multiselect.html} +2 -2
  40. data/app/assets/javascripts/bastion/{incubator/views/alch-edit-save-cancel.html → components/views/bst-edit-save-cancel.html} +1 -1
  41. data/app/assets/javascripts/bastion/{incubator/views/alch-edit-select.html → components/views/bst-edit-select.html} +1 -1
  42. data/app/assets/javascripts/bastion/{incubator/views/alch-edit-text.html → components/views/bst-edit-text.html} +1 -1
  43. data/app/assets/javascripts/bastion/{incubator/views/alch-edit-textarea.html → components/views/bst-edit-textarea.html} +1 -1
  44. data/app/assets/javascripts/bastion/{incubator/views/alch-edit.html → components/views/bst-edit.html} +3 -3
  45. data/app/assets/javascripts/bastion/{incubator/views/alch-flyout.html → components/views/bst-flyout.html} +0 -0
  46. data/app/assets/javascripts/bastion/{incubator/views/alch-form-buttons.html → components/views/bst-form-buttons.html} +1 -1
  47. data/app/assets/javascripts/bastion/{incubator/views/alch-form-group.html → components/views/bst-form-group.html} +0 -0
  48. data/app/assets/javascripts/bastion/{incubator/views/alch-menu.html → components/views/bst-menu.html} +1 -1
  49. data/app/assets/javascripts/bastion/{incubator/views/alch-modal-remove.html → components/views/bst-modal.html} +0 -0
  50. data/app/assets/javascripts/bastion/{incubator/views/alch-save-control.html → components/views/bst-save-control.html} +0 -0
  51. data/app/assets/javascripts/bastion/{widgets → components}/views/current-tasks.html +0 -0
  52. data/app/assets/javascripts/bastion/{widgets → components}/views/path-selector.html +0 -0
  53. data/app/assets/javascripts/bastion/i18n/katello.pot +18 -18
  54. data/app/assets/javascripts/bastion/layouts/details-nutupane.html +4 -4
  55. data/app/assets/javascripts/bastion/layouts/nutupane.html +4 -4
  56. data/app/assets/javascripts/bastion/menu/menu.module.js +1 -3
  57. data/app/views/bastion/layouts/application.html.erb +5 -1
  58. data/bower.json +0 -5
  59. data/grunt/karma.js +4 -5
  60. data/lib/bastion/version.rb +1 -1
  61. data/test/{incubator/alch-alert.directive.test.js → components/bst-alert.directive.test.js} +3 -3
  62. data/test/{incubator/alch-container-scroll.directive.test.js → components/bst-container-scroll.directive.test.js} +3 -3
  63. data/test/{incubator/alch-dropdown.directive.test.js → components/bst-dropdown.directive.test.js} +5 -5
  64. data/test/{incubator/alch-edit.directive.test.js → components/bst-edit.directive.test.js} +29 -29
  65. data/test/{incubator/alch-flyout.directive.test.js → components/bst-flyout.directive.test.js} +3 -3
  66. data/test/{incubator/alch-form-buttons.directive.test.js → components/bst-form-buttons.directive.test.js} +5 -5
  67. data/test/{incubator/alch-form-group.directive.test.js → components/bst-form-group.directive.test.js} +4 -4
  68. data/test/{incubator/alch-infinite-scroll.directive.test.js → components/bst-infinite-scroll.directive.test.js} +3 -3
  69. data/test/{incubator/alch-menu.directive.test.js → components/bst-menu.directive.test.js} +6 -6
  70. data/test/{incubator/alch-modal.directive.test.js → components/bst-modal.directive.test.js} +3 -3
  71. data/test/{incubator/nutupane-table.directive.test.js → components/bst-nutupane-table.directive.test.js} +1 -1
  72. data/test/{incubator/alch-table.directive.test.js → components/bst-table.directive.test.js} +21 -21
  73. data/test/{incubator/format → components/formatters}/array-to-string.filter.test.js +1 -1
  74. data/test/{incubator/format → components/formatters}/boolean-to-yes-no.filter.test.js +1 -1
  75. data/test/{incubator/format → components/formatters}/capitalize.filter.test.js +1 -1
  76. data/test/{incubator/format → components/formatters}/key-value-to-string.filter.test.js +1 -1
  77. data/test/{incubator/format → components/formatters}/unlimited-filter.filter.test.js +1 -1
  78. data/test/{incubator → components}/nutupane.factory.test.js +1 -1
  79. data/test/{widgets → components}/page-title.directive.test.js +1 -1
  80. data/test/{widgets → components}/page-title.service.test.js +1 -1
  81. data/test/{widgets → components}/path-selector.directive.test.js +2 -2
  82. metadata +105 -113
  83. data/app/assets/javascripts/bastion/incubator/stylesheets/alch-edit.scss +0 -34
  84. data/app/assets/javascripts/bastion/incubator/stylesheets/header.scss +0 -207
  85. data/app/assets/javascripts/bastion/widgets/widgets.module.js +0 -24
  86. data/vendor/assets/javascripts/bastion/alchemy/alchemy.js +0 -20
  87. data/vendor/assets/stylesheets/bastion/alchemy/_colors.scss +0 -99
  88. data/vendor/assets/stylesheets/bastion/alchemy/_media_object.scss +0 -22
  89. data/vendor/assets/stylesheets/bastion/alchemy/_mixins.scss +0 -24
  90. data/vendor/assets/stylesheets/bastion/alchemy/_normalize.scss +0 -396
  91. data/vendor/assets/stylesheets/bastion/alchemy/_vars.scss +0 -31
  92. data/vendor/assets/stylesheets/bastion/alchemy/alchemy.scss +0 -8
@@ -13,7 +13,7 @@
13
13
 
14
14
  /**
15
15
  * @ngdoc filter
16
- * @name alchemy.filter:capitalize
16
+ * @name Bastion.components.formatters.filter:capitalize
17
17
  *
18
18
  * @description
19
19
  * A filter to capitalize the initial letter of a string.
@@ -21,7 +21,7 @@
21
21
  * @example
22
22
  * {{ 'blah' | capitalize }} will produce the string "Blah".
23
23
  */
24
- angular.module('alchemy.format').filter('capitalize', function () {
24
+ angular.module('Bastion.components.formatters').filter('capitalize', function () {
25
25
  return function (input) {
26
26
  var capitalized = input;
27
27
  if (angular.isString(input)) {
@@ -13,9 +13,9 @@
13
13
 
14
14
  /**
15
15
  * @ngdoc module
16
- * @name alchemy.format
16
+ * @name Bastion.components.formatters.format
17
17
  *
18
18
  * @description
19
19
  * Module for formatting related functionality, primarily filters.
20
20
  */
21
- angular.module('alchemy.format', ['ngSanitize']);
21
+ angular.module('Bastion.components.formatters', ['ngSanitize']);
@@ -13,7 +13,7 @@
13
13
 
14
14
  /**
15
15
  * @ngdoc filter
16
- * @name alchemy.filter:keyValueToString
16
+ * @name Bastion.components.formatters.filter:keyValueToString
17
17
  *
18
18
  * @description
19
19
  *
@@ -21,7 +21,7 @@
21
21
  * @example
22
22
  *
23
23
  */
24
- angular.module('alchemy.format').filter('keyValueToString', [function () {
24
+ angular.module('Bastion.components.formatters').filter('keyValueToString', [function () {
25
25
  return function (toFormat, options) {
26
26
  var keyName, valueName, separator;
27
27
  options = options || {};
@@ -13,7 +13,7 @@
13
13
 
14
14
  /**
15
15
  * @ngdoc filter
16
- * @name alchemy.filter:unlimitedFilter
16
+ * @name Bastion.components.formatters.filter:unlimitedFilter
17
17
  *
18
18
  * @description
19
19
  * Used to format a display value as either a number or the translate text "Unlimited"
@@ -22,14 +22,14 @@
22
22
  * @example
23
23
  * {{ hostCollection.max_content_hosts | unlimitedFilter:hostCollection.unlimited_content_hosts }}
24
24
  */
25
- angular.module('alchemy.format').filter('unlimitedFilter', ['translate', function (translate) {
25
+ angular.module('Bastion.components.formatters').filter('unlimitedFilter', ['translate', function (translate) {
26
26
  return function (displayValue, unlimited) {
27
27
  if (unlimited || displayValue === -1) {
28
28
  displayValue = translate("Unlimited");
29
29
  } else if (displayValue) {
30
30
  displayValue = displayValue.toString();
31
31
  }
32
-
32
+
33
33
  return displayValue;
34
34
  };
35
35
  }]);
@@ -9,7 +9,7 @@
9
9
  *
10
10
  * @example
11
11
  */
12
- angular.module('alchemy').directive('nutupaneTable', ['$compile', function ($compile) {
12
+ angular.module('Bastion.components').directive('nutupaneTable', ['$compile', function ($compile) {
13
13
  return {
14
14
  restrict: 'A',
15
15
  link: function (scope, element) {
@@ -13,7 +13,7 @@
13
13
 
14
14
  /**
15
15
  * @ngdoc service
16
- * @name Bastion.widgets.service:Nutupane
16
+ * @name Bastion.components.service:Nutupane
17
17
  *
18
18
  * @requires $location
19
19
  * @requires $q
@@ -40,7 +40,7 @@
40
40
  );
41
41
  </pre>
42
42
  */
43
- angular.module('Bastion.widgets').factory('Nutupane',
43
+ angular.module('Bastion.components').factory('Nutupane',
44
44
  ['$location', '$q', '$timeout', function ($location, $q, $timeout) {
45
45
  var Nutupane = function (resource, params, action) {
46
46
  var self = this;
@@ -13,14 +13,14 @@
13
13
 
14
14
  /**
15
15
  * @ngdoc directive
16
- * @name Bastion.widgets.directive:title
16
+ * @name Bastion.components.directive:title
17
17
  *
18
18
  * @requires PageTitle
19
19
  *
20
20
  * @description
21
21
  * Provides a way to set the title of the page.
22
22
  */
23
- angular.module('Bastion.widgets').directive('pageTitle', ['PageTitle', function (PageTitle) {
23
+ angular.module('Bastion.components').directive('pageTitle', ['PageTitle', function (PageTitle) {
24
24
  return {
25
25
  templateUrl: '',
26
26
  replace: true,
@@ -13,7 +13,7 @@
13
13
 
14
14
  /**
15
15
  * @ngdoc service
16
- * @name Bastion.widgets.service:PageTitle
16
+ * @name Bastion.components.service:PageTitle
17
17
  *
18
18
  * @requires $window
19
19
  * @requires $interpolate
@@ -21,7 +21,7 @@
21
21
  * @description
22
22
  * Service to set the title of the page and maintain a
23
23
  */
24
- angular.module('Bastion.widgets').service('PageTitle', ['$window', '$interpolate',
24
+ angular.module('Bastion.components').service('PageTitle', ['$window', '$interpolate',
25
25
  function ($window, $interpolate) {
26
26
  this.titles = [];
27
27
 
@@ -13,7 +13,7 @@
13
13
 
14
14
  /**
15
15
  * @ngdoc directive
16
- * @name Bastion.widgets.directive:pathSelector
16
+ * @name Bastion.components.directive:pathSelector
17
17
  *
18
18
  * @description
19
19
  * Provides a widget that renders a set of paths visually and allows
@@ -21,7 +21,7 @@
21
21
  *
22
22
  * @example
23
23
  */
24
- angular.module('Bastion.widgets').directive('pathSelector',
24
+ angular.module('Bastion.components').directive('pathSelector',
25
25
  function () {
26
26
  return {
27
27
  restrict: 'AE',
@@ -33,7 +33,7 @@ angular.module('Bastion.widgets').directive('pathSelector',
33
33
  disableTrigger: '=',
34
34
  pathAttribute: '@'
35
35
  },
36
- templateUrl: 'widgets/views/path-selector.html',
36
+ templateUrl: 'components/views/path-selector.html',
37
37
  link: function (scope, element, attrs, ngModel) {
38
38
  var activeItemId, convertPathObjects, selectionRequired;
39
39
  selectionRequired = attrs['selectionRequired'] ? attrs['selectionRequired'] === 'true' : true;
@@ -10,7 +10,7 @@
10
10
  ng-class="{'menu-anchor' : item.type, 'dropdown-item-link-active' : item.active }">
11
11
  <span class="fl">{{ item.display }}</span>
12
12
  <i class="icon-caret-right flyout-indicator" ng-show="item.type=='flyout'"></i> </a>
13
- <ul alch-flyout="item.items"
13
+ <ul bst-flyout="item.items"
14
14
  ng-if="item.type == 'flyout'"
15
15
  ng-show="item.active"
16
16
  ng-class="{ 'dropdown-active' : dropdown.show }">
@@ -2,5 +2,5 @@
2
2
  <div class="form-group" ng-show="editMode">
3
3
  <input type="checkbox" ng-model="model"/>
4
4
  </div>
5
- <div alch-edit></div>
5
+ <div bst-edit></div>
6
6
  </form>
@@ -1,8 +1,8 @@
1
1
  <div>
2
2
 
3
- <form name="alchEditForm" role="form" novalidate>
3
+ <form name="bstEditForm" role="form" novalidate>
4
4
  <div class="input" ng-transclude ng-show="editMode"></div>
5
- <div alch-edit></div>
5
+ <div bst-edit></div>
6
6
  </form>
7
7
 
8
8
  </div>
@@ -1,4 +1,4 @@
1
- <div class="alch-dialog alch-multiselect" ng-class="{open: editMode, closed: !editMode}">
1
+ <div class="bst-dialog bst-multiselect" ng-class="{open: editMode, closed: !editMode}">
2
2
  <i class="icon-remove fr" ng-click="editMode = false" ng-show="editMode"></i>
3
3
  <form ng-show="editMode" role="form">
4
4
  <h5 translate>Existing Items</h5>
@@ -13,5 +13,5 @@
13
13
  </li>
14
14
  </ul>
15
15
  </form>
16
- <div alch-edit></div>
16
+ <div bst-edit></div>
17
17
  </div>
@@ -6,7 +6,7 @@
6
6
  <button class="btn btn-primary"
7
7
  translate
8
8
  ng-click="save()"
9
- ng-disabled="disableSave || alchEditForm.$invalid"
9
+ ng-disabled="disableSave || bstEditForm.$invalid"
10
10
  ng-show="editMode && !workingMode">
11
11
  Save
12
12
  </button>
@@ -6,5 +6,5 @@
6
6
  <option ng-show="false" value=""></option>
7
7
  </select>
8
8
  </div>
9
- <div alch-edit></div>
9
+ <div bst-edit></div>
10
10
  </form>
@@ -2,5 +2,5 @@
2
2
  <div class="form-group" ng-show="editMode">
3
3
  <input class="form-control" ng-model="model"/>
4
4
  </div>
5
- <div alch-edit></div>
5
+ <div bst-edit></div>
6
6
  </form>
@@ -2,5 +2,5 @@
2
2
  <div class="form-group" ng-show="editMode">
3
3
  <textarea class="form-control" rows=8 ng-model="model"></textarea>
4
4
  </div>
5
- <div alch-edit></div>
5
+ <div bst-edit></div>
6
6
  </form>
@@ -1,4 +1,4 @@
1
- <div class="alch-edit">
1
+ <div class="bst-edit">
2
2
  <div class="value" ng-class="{ 'editable' : !readonly }" ng-click="edit()" ng-hide="editMode || workingMode">
3
3
  <span class="fr">
4
4
  <i class="icon-edit inline-icon" ng-hide="editMode || readonly"></i>
@@ -9,10 +9,10 @@
9
9
 
10
10
  <span ng-switch on="buttonConfig">
11
11
  <div ng-switch-when="addRemove">
12
- <div ng-include="'incubator/views/alch-edit-add-remove-cancel.html'"></div>
12
+ <div ng-include="'components/views/bst-edit-add-remove-cancel.html'"></div>
13
13
  </div>
14
14
  <div ng-switch-default>
15
- <div ng-include="'incubator/views/alch-edit-save-cancel.html'"></div>
15
+ <div ng-include="'components/views/bst-edit-save-cancel.html'"></div>
16
16
  </div>
17
17
  </span>
18
18
  </div>
@@ -1,6 +1,6 @@
1
1
  <div class="form-group">
2
2
  <div class="col-sm-offset-2 col-sm-4">
3
- <div alch-save-control
3
+ <div bst-save-control
4
4
  on-cancel="handleCancel()"
5
5
  on-save="handleSave()"
6
6
  invalid="isInvalid()"
@@ -12,7 +12,7 @@
12
12
  <span>{{ item.display }}</span>
13
13
  <i class="icon-caret-down" ng-show="item.type == 'dropdown'"></i>
14
14
  </a>
15
- <ul alch-dropdown="item.items"></ul>
15
+ <ul bst-dropdown="item.items"></ul>
16
16
  </li>
17
17
  </ul>
18
18
  </nav>
@@ -1,50 +1,50 @@
1
1
  msgid ""
2
2
  msgstr ""
3
3
 
4
- #: app/assets/bastion/incubator/views/alch-confirm-modal.html
5
- #: app/assets/bastion/incubator/views/alch-confirm.html
4
+ #: app/assets/bastion/components/views/bst-confirm-modal.html
5
+ #: app/assets/bastion/components/views/bst-confirm.html
6
6
  #: app/assets/bastion/systems/views/bulk-actions-list.html
7
7
  msgid "Yes"
8
8
  msgstr ""
9
9
 
10
- #: app/assets/bastion/incubator/views/alch-confirm-modal.html
11
- #: app/assets/bastion/incubator/views/alch-confirm.html
10
+ #: app/assets/bastion/components/views/bst-confirm-modal.html
11
+ #: app/assets/bastion/components/views/bst-confirm.html
12
12
  #: app/assets/bastion/systems/views/bulk-actions-list.html
13
13
  msgid "No"
14
14
  msgstr ""
15
15
 
16
- #: app/assets/bastion/incubator/views/alch-edit-add-item.html
16
+ #: app/assets/bastion/components/views/bst-edit-add-item.html
17
17
  msgid "Add New Item"
18
18
  msgstr ""
19
19
 
20
- #: app/assets/bastion/incubator/views/alch-edit-add-item.html
21
- #: app/assets/bastion/incubator/views/alch-edit-add-remove-cancel.html
22
- #: app/assets/bastion/incubator/views/alch-edit-save-cancel.html
20
+ #: app/assets/bastion/components/views/bst-edit-add-item.html
21
+ #: app/assets/bastion/components/views/bst-edit-add-remove-cancel.html
22
+ #: app/assets/bastion/components/views/bst-edit-save-cancel.html
23
23
  #: app/assets/bastion/systems/views/bulk-actions-list.html
24
24
  msgid "Working"
25
25
  msgstr ""
26
26
 
27
- #: app/assets/bastion/incubator/views/alch-edit-add-item.html
28
- #: app/assets/bastion/incubator/views/alch-edit-add-remove-cancel.html
27
+ #: app/assets/bastion/components/views/bst-edit-add-item.html
28
+ #: app/assets/bastion/components/views/bst-edit-add-remove-cancel.html
29
29
  msgid "Add"
30
30
  msgstr ""
31
31
 
32
- #: app/assets/bastion/incubator/views/alch-edit-add-item.html
32
+ #: app/assets/bastion/components/views/bst-edit-add-item.html
33
33
  msgid "Key"
34
34
  msgstr ""
35
35
 
36
- #: app/assets/bastion/incubator/views/alch-edit-add-item.html
36
+ #: app/assets/bastion/components/views/bst-edit-add-item.html
37
37
  msgid "Value"
38
38
  msgstr ""
39
39
 
40
- #: app/assets/bastion/incubator/views/alch-edit-add-remove-cancel.html
40
+ #: app/assets/bastion/components/views/bst-edit-add-remove-cancel.html
41
41
  #: app/assets/bastion/systems/content/views/system-packages.html
42
42
  #: app/assets/bastion/systems/views/bulk-actions-list.html
43
43
  msgid "Remove"
44
44
  msgstr ""
45
45
 
46
- #: app/assets/bastion/incubator/views/alch-edit-add-remove-cancel.html
47
- #: app/assets/bastion/incubator/views/alch-edit-save-cancel.html
46
+ #: app/assets/bastion/components/views/bst-edit-add-remove-cancel.html
47
+ #: app/assets/bastion/components/views/bst-edit-save-cancel.html
48
48
  #: app/assets/bastion/products/views/discovery.html
49
49
  #: app/assets/bastion/products/views/new-form.html
50
50
  #: app/assets/bastion/providers/views/new.html
@@ -52,11 +52,11 @@ msgstr ""
52
52
  msgid "Cancel"
53
53
  msgstr ""
54
54
 
55
- #: app/assets/bastion/incubator/views/alch-edit-multiselect.html
55
+ #: app/assets/bastion/components/views/bst-edit-multiselect.html
56
56
  msgid "Existing Items"
57
57
  msgstr ""
58
58
 
59
- #: app/assets/bastion/incubator/views/alch-edit-multiselect.html
59
+ #: app/assets/bastion/components/views/bst-edit-multiselect.html
60
60
  #: app/assets/bastion/products/views/discovery.html
61
61
  #: app/assets/bastion/products/views/product-repositories.html
62
62
  #: app/assets/bastion/systems/content/views/system-errata.html
@@ -66,7 +66,7 @@ msgstr ""
66
66
  msgid "Filter"
67
67
  msgstr ""
68
68
 
69
- #: app/assets/bastion/incubator/views/alch-edit-save-cancel.html
69
+ #: app/assets/bastion/components/views/bst-edit-save-cancel.html
70
70
  msgid "Save"
71
71
  msgstr ""
72
72
 
@@ -1,5 +1,5 @@
1
1
  <section>
2
- <div data-block="messages" alch-alert success-messages="successMessages" error-messages="errorMessages"></div>
2
+ <div data-block="messages" bst-alert success-messages="successMessages" error-messages="errorMessages"></div>
3
3
 
4
4
  <h4>
5
5
  <span data-block="header"></span>
@@ -20,7 +20,7 @@
20
20
  class="form-control"
21
21
  placeholder="{{ 'Search...' | translate }}"
22
22
  ng-model="detailsTable.searchTerm"
23
- on-enter="detailsTable.search(detailsTable.searchTerm)"/>
23
+ bst-on-enter="detailsTable.search(detailsTable.searchTerm)"/>
24
24
  <span class="input-group-btn">
25
25
  <button ng-click="detailsTable.search(detailsTable.searchTerm)" class="btn btn-default" type="button"><i class="icon-search"></i></button>
26
26
  </span>
@@ -50,9 +50,9 @@
50
50
  <span translate>Working...</span>
51
51
  </div>
52
52
 
53
- <div class="nutupane" alch-table="detailsTable" nutupane-table>
53
+ <div class="nutupane" bst-table="detailsTable" nutupane-table>
54
54
 
55
- <div alch-container-scroll alch-infinite-scroll="detailsTable.nextPage()"
55
+ <div bst-container-scroll bst-infinite-scroll="detailsTable.nextPage()"
56
56
  data="detailsTable.rows" skip-initial-load="!detailsTable.initialLoad">
57
57
 
58
58
  <div class="nutupane-select-all" ng-show="detailsTable.selectAllResultsEnabled && detailsTable.allSelected() && !detailsTable.allResultsSelected">
@@ -1,6 +1,6 @@
1
1
  <section>
2
2
 
3
- <div data-block="messages" alch-alert error-messages="errorMessages" success-messages="successMessages"></div>
3
+ <div data-block="messages" bst-alert error-messages="errorMessages" success-messages="successMessages"></div>
4
4
 
5
5
  <div class="row nutupane-bar">
6
6
  <h2 class="col-sm-2">
@@ -17,7 +17,7 @@
17
17
  class="form-control"
18
18
  placeholder="{{ 'Search...' | translate }}"
19
19
  ng-model="table.searchTerm"
20
- on-enter="table.search(table.searchTerm)"/>
20
+ bst-on-enter="table.search(table.searchTerm)"/>
21
21
  <span class="input-group-btn">
22
22
  <button ng-click="table.search(table.searchTerm)" class="btn btn-default" type="button"><i class="icon-search"></i></button>
23
23
  </span>
@@ -40,13 +40,13 @@
40
40
 
41
41
  </div>
42
42
 
43
- <div class="row nutupane" alch-table="table" nutupane-table ng-class="{'table-reduced': $root.$state.current.collapsed}">
43
+ <div class="row nutupane" bst-table="table" nutupane-table ng-class="{'table-reduced': $root.$state.current.collapsed}">
44
44
  <div class="loading-mask" ng-show="table.working" ng-class="{ 'loading-mask-collapsed': $root.$state.current.collapsed }">
45
45
  <i class="icon-spinner icon-spin"></i>
46
46
  <span ng-hide="$root.$state.current.collapsed">{{ "Loading..." | translate }}</span>
47
47
  </div>
48
48
 
49
- <div alch-container-scroll control-width="table" alch-infinite-scroll="table.nextPage()" data="table.rows">
49
+ <div bst-container-scroll control-width="table" bst-infinite-scroll="table.nextPage()" data="table.rows">
50
50
  <div ui-view="table"></div>
51
51
  </div>
52
52
  </div>