bastion 6.1.10 → 6.1.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/app/assets/javascripts/bastion/bastion-bootstrap.js +1 -1
- data/app/assets/javascripts/bastion/components/nutupane.factory.js +1 -1
- data/app/assets/javascripts/bastion/utils/form-utils.service.js +1 -1
- data/lib/bastion/version.rb +1 -1
- data/test/utils/form-utils.service.test.js +1 -1
- metadata +35 -34
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 9889fdb808921927c5fc4ed0f61ffac56e915a71fe47b5680ea0f7b12c0bb60d
|
4
|
+
data.tar.gz: 4060e70a4d9e676d43b48c53358d5325ae165c7ba89750d2a868265cf712c3bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '097e6a1a94545947ddccc03ed51a0cb54989b66b1fe0125a32e1c05b4db89aa682e8813842dd6bb96e51811f936e3d51da347c74273b49e41331f14c991ee364'
|
7
|
+
data.tar.gz: '0380613c1913046a1009364b848c599815fa0e0f0a3822bb6a51c386be3784cb902dd4ea9b63a3ab1d8eabdf14a1a3465b8567d90bb485d96ea5f545daa66eb8'
|
@@ -81,7 +81,7 @@ angular.module('Bastion.components').factory('Nutupane',
|
|
81
81
|
};
|
82
82
|
|
83
83
|
self.loadParamsFromExistingTable = function (existingTable) {
|
84
|
-
_.extend(params,
|
84
|
+
_.extend(existingTable.params, params);
|
85
85
|
self.table.params = existingTable.params;
|
86
86
|
if (!self.table.searchTerm) {
|
87
87
|
self.table.searchTerm = existingTable.searchTerm;
|
@@ -8,7 +8,7 @@
|
|
8
8
|
* A set of utilities that are useful when using forms.
|
9
9
|
*/
|
10
10
|
angular.module('Bastion.utils').service('FormUtils', ['uuid4', function (uuid4) {
|
11
|
-
var regex = new RegExp("[^a-z0-9\\-_]", 'gi'),
|
11
|
+
var regex = new RegExp("[^a-z0-9\\-_]+", 'gi'),
|
12
12
|
replacement = "_",
|
13
13
|
isASCII;
|
14
14
|
|
data/lib/bastion/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bastion
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.1.
|
4
|
+
version: 6.1.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eric D Helms
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-
|
12
|
+
date: 2018-05-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: angular-rails-templates
|
@@ -1741,8 +1741,9 @@ files:
|
|
1741
1741
|
- vendor/assets/javascripts/bastion/json3/json3.js
|
1742
1742
|
- vendor/assets/javascripts/bastion/lodash/lodash.js
|
1743
1743
|
- vendor/assets/javascripts/bastion/ngUpload/ng-upload.js
|
1744
|
-
homepage:
|
1745
|
-
licenses:
|
1744
|
+
homepage: https://github.com/Katello/bastion
|
1745
|
+
licenses:
|
1746
|
+
- GPL-2.0-or-later
|
1746
1747
|
metadata: {}
|
1747
1748
|
post_install_message:
|
1748
1749
|
rdoc_options: []
|
@@ -1760,47 +1761,47 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1760
1761
|
version: '0'
|
1761
1762
|
requirements: []
|
1762
1763
|
rubyforge_project:
|
1763
|
-
rubygems_version: 2.
|
1764
|
+
rubygems_version: 2.7.6
|
1764
1765
|
signing_key:
|
1765
1766
|
specification_version: 4
|
1766
1767
|
summary: UI library of AngularJS based components for Foreman
|
1767
1768
|
test_files:
|
1768
|
-
- test/
|
1769
|
-
- test/
|
1770
|
-
- test/bastion/test-constants.js
|
1771
|
-
- test/features/bst-feature-flag.directive.test.js
|
1772
|
-
- test/features/feature-flag.service.test.js
|
1773
|
-
- test/utils/disable-link.directive.test.js
|
1774
|
-
- test/utils/round-up.filter.test.js
|
1775
|
-
- test/utils/form-utils.service.test.js
|
1776
|
-
- test/utils/stop-event.directive.test.js
|
1777
|
-
- test/utils/urlencode.filter.test.js
|
1778
|
-
- test/utils/bastion-resource.factory.test.js
|
1779
|
-
- test/components/bst-form-buttons.directive.test.js
|
1780
|
-
- test/components/bst-table.directive.test.js
|
1781
|
-
- test/components/bst-menu.directive.test.js
|
1782
|
-
- test/components/bst-resource-switcher.directive.test.js
|
1783
|
-
- test/components/bst-dropdown.directive.test.js
|
1784
|
-
- test/components/bst-edit.directive.test.js
|
1785
|
-
- test/components/path-selector.directive.test.js
|
1786
|
-
- test/components/bst-bookmark.directive.test.js
|
1787
|
-
- test/components/formatters/key-value-to-string.filter.test.js
|
1769
|
+
- test/bastion-config.test.js
|
1770
|
+
- test/components/formatters/unlimited-filter.filter.test.js
|
1788
1771
|
- test/components/formatters/capitalize.filter.test.js
|
1789
1772
|
- test/components/formatters/array-to-string.filter.test.js
|
1790
|
-
- test/components/formatters/
|
1773
|
+
- test/components/formatters/key-value-to-string.filter.test.js
|
1791
1774
|
- test/components/formatters/boolean-to-yes-no.filter.test.js
|
1792
|
-
- test/components/
|
1775
|
+
- test/components/path-selector.directive.test.js
|
1776
|
+
- test/components/bst-form-buttons.directive.test.js
|
1777
|
+
- test/components/notification.service.test.js
|
1778
|
+
- test/components/bst-edit.directive.test.js
|
1779
|
+
- test/components/bst-dropdown.directive.test.js
|
1793
1780
|
- test/components/typeahead-empty.directive.test.js
|
1794
|
-
- test/components/bst-
|
1781
|
+
- test/components/bst-menu.directive.test.js
|
1782
|
+
- test/components/bst-bookmark.directive.test.js
|
1783
|
+
- test/components/bst-flyout.directive.test.js
|
1784
|
+
- test/components/bst-table.directive.test.js
|
1795
1785
|
- test/components/bst-modal.directive.test.js
|
1796
|
-
- test/components/
|
1786
|
+
- test/components/page-title.directive.test.js
|
1797
1787
|
- test/components/bst-bookmark.factory.test.js
|
1798
|
-
- test/components/
|
1788
|
+
- test/components/bst-resource-switcher.directive.test.js
|
1789
|
+
- test/components/bst-alert.directive.test.js
|
1799
1790
|
- test/components/page-title.service.test.js
|
1800
|
-
- test/components/
|
1791
|
+
- test/components/bst-form-group.directive.test.js
|
1801
1792
|
- test/components/nutupane.factory.test.js
|
1802
|
-
- test/components/
|
1803
|
-
- test/routing.module.test.js
|
1793
|
+
- test/components/table-cache.service.test.js
|
1804
1794
|
- test/menu/menu-expander.service.test.js
|
1805
|
-
- test/
|
1795
|
+
- test/features/bst-feature-flag.directive.test.js
|
1796
|
+
- test/features/feature-flag.service.test.js
|
1797
|
+
- test/test-mocks.module.js
|
1806
1798
|
- test/i18n/translate.service.test.js
|
1799
|
+
- test/routing.module.test.js
|
1800
|
+
- test/auth/authorization.service.test.js
|
1801
|
+
- test/utils/stop-event.directive.test.js
|
1802
|
+
- test/utils/round-up.filter.test.js
|
1803
|
+
- test/utils/bastion-resource.factory.test.js
|
1804
|
+
- test/utils/urlencode.filter.test.js
|
1805
|
+
- test/utils/disable-link.directive.test.js
|
1806
|
+
- test/utils/form-utils.service.test.js
|
1807
|
+
- test/bastion/test-constants.js
|