bastion 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.jshintrc +35 -0
- data/Gruntfile.js +24 -0
- data/LICENSE +339 -0
- data/README.md +8 -0
- data/Rakefile +53 -0
- data/app/assets/javascripts/bastion/auth/auth.module.js +87 -0
- data/app/assets/javascripts/bastion/auth/authorization.service.js +48 -0
- data/app/assets/javascripts/bastion/bastion-bootstrap.js +32 -0
- data/app/assets/javascripts/bastion/bastion-resource.factory.js +39 -0
- data/app/assets/javascripts/bastion/bastion.js +52 -0
- data/app/assets/javascripts/bastion/bastion.module.js +213 -0
- data/app/assets/javascripts/bastion/i18n/README +9 -0
- data/app/assets/javascripts/bastion/i18n/i18n.module.js +24 -0
- data/app/assets/javascripts/bastion/i18n/katello.pot +968 -0
- data/app/assets/javascripts/bastion/i18n/locale/README +1 -0
- data/app/assets/javascripts/bastion/i18n/translate.service.js +14 -0
- data/app/assets/javascripts/bastion/i18n/translations.js +3 -0
- data/app/assets/javascripts/bastion/i18n/zanata.xml +28 -0
- data/app/assets/javascripts/bastion/incubator/alch-alert.directive.js +67 -0
- data/app/assets/javascripts/bastion/incubator/alch-container-scroll.directive.js +44 -0
- data/app/assets/javascripts/bastion/incubator/alch-dropdown.directive.js +28 -0
- data/app/assets/javascripts/bastion/incubator/alch-edit.directive.js +361 -0
- data/app/assets/javascripts/bastion/incubator/alch-flyout.directive.js +19 -0
- data/app/assets/javascripts/bastion/incubator/alch-form-buttons.directive.js +60 -0
- data/app/assets/javascripts/bastion/incubator/alch-form-group.directive.js +87 -0
- data/app/assets/javascripts/bastion/incubator/alch-infinite-scroll.directive.js +84 -0
- data/app/assets/javascripts/bastion/incubator/alch-menu.directive.js +56 -0
- data/app/assets/javascripts/bastion/incubator/alch-modal.directive.js +80 -0
- data/app/assets/javascripts/bastion/incubator/alch-save-control.directive.js +42 -0
- data/app/assets/javascripts/bastion/incubator/alch-table.directive.js +295 -0
- data/app/assets/javascripts/bastion/incubator/format/alch-format.module.js +21 -0
- data/app/assets/javascripts/bastion/incubator/format/array-to-string.filter.js +30 -0
- data/app/assets/javascripts/bastion/incubator/format/boolean-to-yes-no.filter.js +34 -0
- data/app/assets/javascripts/bastion/incubator/format/capitalize.filter.js +32 -0
- data/app/assets/javascripts/bastion/incubator/format/key-value-to-string.filter.js +40 -0
- data/app/assets/javascripts/bastion/incubator/format/unlimitedFilter.filter.js +35 -0
- data/app/assets/javascripts/bastion/incubator/stylesheets/alch-edit.scss +34 -0
- data/app/assets/javascripts/bastion/incubator/stylesheets/header.scss +207 -0
- data/app/assets/javascripts/bastion/incubator/views/alch-alert.html +6 -0
- data/app/assets/javascripts/bastion/incubator/views/alch-dropdown.html +19 -0
- data/app/assets/javascripts/bastion/incubator/views/alch-edit-add-item.html +21 -0
- data/app/assets/javascripts/bastion/incubator/views/alch-edit-add-remove-cancel.html +28 -0
- data/app/assets/javascripts/bastion/incubator/views/alch-edit-checkbox.html +6 -0
- data/app/assets/javascripts/bastion/incubator/views/alch-edit-custom.html +8 -0
- data/app/assets/javascripts/bastion/incubator/views/alch-edit-multiselect.html +17 -0
- data/app/assets/javascripts/bastion/incubator/views/alch-edit-save-cancel.html +20 -0
- data/app/assets/javascripts/bastion/incubator/views/alch-edit-select.html +10 -0
- data/app/assets/javascripts/bastion/incubator/views/alch-edit-text.html +6 -0
- data/app/assets/javascripts/bastion/incubator/views/alch-edit-textarea.html +6 -0
- data/app/assets/javascripts/bastion/incubator/views/alch-edit.html +18 -0
- data/app/assets/javascripts/bastion/incubator/views/alch-flyout.html +10 -0
- data/app/assets/javascripts/bastion/incubator/views/alch-form-buttons.html +10 -0
- data/app/assets/javascripts/bastion/incubator/views/alch-form-group.html +9 -0
- data/app/assets/javascripts/bastion/incubator/views/alch-menu.html +18 -0
- data/app/assets/javascripts/bastion/incubator/views/alch-modal-remove.html +13 -0
- data/app/assets/javascripts/bastion/incubator/views/alch-save-control.html +18 -0
- data/app/assets/javascripts/bastion/layouts/details-nutupane.html +73 -0
- data/app/assets/javascripts/bastion/layouts/nutupane.html +63 -0
- data/app/assets/javascripts/bastion/layouts/select-all-results.html +9 -0
- data/app/assets/javascripts/bastion/menu/menu-expander.service.js +51 -0
- data/app/assets/javascripts/bastion/menu/menu.module.js +26 -0
- data/app/assets/javascripts/bastion/utils/as.filter.js +33 -0
- data/app/assets/javascripts/bastion/utils/form-utils.service.js +53 -0
- data/app/assets/javascripts/bastion/utils/utils.module.js +21 -0
- data/app/assets/javascripts/bastion/widgets/current-tasks.directive.js +67 -0
- data/app/assets/javascripts/bastion/widgets/nutupane-table.directive.js +59 -0
- data/app/assets/javascripts/bastion/widgets/nutupane.factory.js +316 -0
- data/app/assets/javascripts/bastion/widgets/page-title.directive.js +61 -0
- data/app/assets/javascripts/bastion/widgets/page-title.service.js +42 -0
- data/app/assets/javascripts/bastion/widgets/path-selector.directive.js +109 -0
- data/app/assets/javascripts/bastion/widgets/views/current-tasks.html +23 -0
- data/app/assets/javascripts/bastion/widgets/views/path-selector.html +11 -0
- data/app/assets/javascripts/bastion/widgets/widgets.module.js +24 -0
- data/app/assets/stylesheets/bastion/animations.less +15 -0
- data/app/assets/stylesheets/bastion/bastion.less +160 -0
- data/app/assets/stylesheets/bastion/forms.less +41 -0
- data/app/assets/stylesheets/bastion/gpg-keys.less +36 -0
- data/app/assets/stylesheets/bastion/helpers.less +6 -0
- data/app/assets/stylesheets/bastion/mixins.less +15 -0
- data/app/assets/stylesheets/bastion/nutupane.less +382 -0
- data/app/assets/stylesheets/bastion/overrides.less +54 -0
- data/app/assets/stylesheets/bastion/path-selector.less +123 -0
- data/app/assets/stylesheets/bastion/systems.less +35 -0
- data/app/assets/stylesheets/bastion/tasks.less +23 -0
- data/app/assets/stylesheets/bastion/typography.less +31 -0
- data/app/assets/stylesheets/bastion/variables.less +3 -0
- data/app/controllers/bastion/bastion_controller.rb +24 -0
- data/app/views/bastion/layouts/application.html.erb +32 -0
- data/app/views/bastion/layouts/application_ie.html.erb +5 -0
- data/bastion.js +26 -0
- data/bower.json +94 -0
- data/config/routes.rb +25 -0
- data/config/routes/mount_engine.rb +3 -0
- data/grunt/bower.js +20 -0
- data/grunt/htmlhint.js +15 -0
- data/grunt/jshint.js +9 -0
- data/grunt/karma.js +83 -0
- data/lib/bastion.rb +17 -0
- data/lib/bastion/engine.rb +37 -0
- data/lib/bastion/version.rb +3 -0
- data/package.json +29 -0
- data/test/auth/authorization.service.test.js +63 -0
- data/test/bastion/bastion-resource.factory.test.js +31 -0
- data/test/bastion/test-constants.js +30 -0
- data/test/i18n/translate.service.test.js +31 -0
- data/test/incubator/alch-alert.directive.test.js +84 -0
- data/test/incubator/alch-container-scroll.directive.test.js +68 -0
- data/test/incubator/alch-dropdown.directive.test.js +113 -0
- data/test/incubator/alch-edit.directive.test.js +320 -0
- data/test/incubator/alch-flyout.directive.test.js +73 -0
- data/test/incubator/alch-form-buttons.directive.test.js +55 -0
- data/test/incubator/alch-form-group.directive.test.js +76 -0
- data/test/incubator/alch-infinite-scroll.directive.test.js +123 -0
- data/test/incubator/alch-menu.directive.test.js +94 -0
- data/test/incubator/alch-modal.directive.test.js +81 -0
- data/test/incubator/alch-table.directive.test.js +270 -0
- data/test/incubator/format/array-to-string.filter.test.js +38 -0
- data/test/incubator/format/boolean-to-yes-no.filter.test.js +41 -0
- data/test/incubator/format/capitalize.filter.test.js +35 -0
- data/test/incubator/format/key-value-to-string.filter.test.js +60 -0
- data/test/incubator/format/unlimited-filter.filter.test.js +31 -0
- data/test/incubator/nutupane-table.directive.test.js +69 -0
- data/test/incubator/nutupane.factory.test.js +307 -0
- data/test/menu/menu-expander.service.test.js +74 -0
- data/test/test-mocks.module.js +268 -0
- data/test/utils/as.filter.test.js +33 -0
- data/test/utils/form-utils.service.test.js +52 -0
- data/test/widgets/page-title.directive.test.js +54 -0
- data/test/widgets/page-title.service.test.js +51 -0
- data/test/widgets/path-selector.directive.test.js +136 -0
- data/vendor/assets/fonts/bastion/bootstrap/glyphicons-halflings-regular.eot +0 -0
- data/vendor/assets/fonts/bastion/bootstrap/glyphicons-halflings-regular.svg +229 -0
- data/vendor/assets/fonts/bastion/bootstrap/glyphicons-halflings-regular.ttf +0 -0
- data/vendor/assets/fonts/bastion/bootstrap/glyphicons-halflings-regular.woff +0 -0
- data/vendor/assets/fonts/bastion/font-awesome/FontAwesome.otf +0 -0
- data/vendor/assets/fonts/bastion/font-awesome/fontawesome-webfont.eot +0 -0
- data/vendor/assets/fonts/bastion/font-awesome/fontawesome-webfont.svg +399 -0
- data/vendor/assets/fonts/bastion/font-awesome/fontawesome-webfont.ttf +0 -0
- data/vendor/assets/fonts/bastion/font-awesome/fontawesome-webfont.woff +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-Bold-webfont.eot +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-Bold-webfont.svg +146 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-Bold-webfont.ttf +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-Bold-webfont.woff +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-BoldItalic-webfont.eot +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-BoldItalic-webfont.svg +146 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-BoldItalic-webfont.ttf +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-BoldItalic-webfont.woff +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBold-webfont.eot +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBold-webfont.svg +146 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBold-webfont.ttf +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBold-webfont.woff +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBoldItalic-webfont.eot +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBoldItalic-webfont.svg +146 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBoldItalic-webfont.ttf +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBoldItalic-webfont.woff +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-Italic-webfont.eot +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-Italic-webfont.svg +146 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-Italic-webfont.ttf +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-Italic-webfont.woff +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-Light-webfont.eot +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-Light-webfont.svg +146 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-Light-webfont.ttf +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-Light-webfont.woff +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-LightItalic-webfont.eot +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-LightItalic-webfont.svg +146 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-LightItalic-webfont.ttf +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-LightItalic-webfont.woff +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-Regular-webfont.eot +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-Regular-webfont.svg +146 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-Regular-webfont.ttf +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-Regular-webfont.woff +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-Semibold-webfont.eot +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-Semibold-webfont.svg +146 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-Semibold-webfont.ttf +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-Semibold-webfont.woff +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-SemiboldItalic-webfont.eot +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-SemiboldItalic-webfont.svg +146 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-SemiboldItalic-webfont.ttf +0 -0
- data/vendor/assets/fonts/bastion/rcue/OpenSans-SemiboldItalic-webfont.woff +0 -0
- data/vendor/assets/fonts/bastion/rcue/Overpass-Bold-webfont.eot +0 -0
- data/vendor/assets/fonts/bastion/rcue/Overpass-Bold-webfont.svg +454 -0
- data/vendor/assets/fonts/bastion/rcue/Overpass-Bold-webfont.ttf +0 -0
- data/vendor/assets/fonts/bastion/rcue/Overpass-Bold-webfont.woff +0 -0
- data/vendor/assets/fonts/bastion/rcue/Overpass-Regular-webfont.eot +0 -0
- data/vendor/assets/fonts/bastion/rcue/Overpass-Regular-webfont.svg +454 -0
- data/vendor/assets/fonts/bastion/rcue/Overpass-Regular-webfont.ttf +0 -0
- data/vendor/assets/fonts/bastion/rcue/Overpass-Regular-webfont.woff +0 -0
- data/vendor/assets/javascripts/bastion/alchemy/alchemy.js +20 -0
- data/vendor/assets/javascripts/bastion/angular-animate/angular-animate.js +1226 -0
- data/vendor/assets/javascripts/bastion/angular-blocks/angular-blocks.js +79 -0
- data/vendor/assets/javascripts/bastion/angular-bootstrap/ui-bootstrap-tpls.js +3677 -0
- data/vendor/assets/javascripts/bastion/angular-bootstrap/ui-bootstrap.js +3427 -0
- data/vendor/assets/javascripts/bastion/angular-gettext/angular-gettext.js +345 -0
- data/vendor/assets/javascripts/bastion/angular-resource/angular-resource.js +594 -0
- data/vendor/assets/javascripts/bastion/angular-route/angular-route.js +920 -0
- data/vendor/assets/javascripts/bastion/angular-sanitize/angular-sanitize.js +622 -0
- data/vendor/assets/javascripts/bastion/angular-ui-bootstrap/datepicker.js +447 -0
- data/vendor/assets/javascripts/bastion/angular-ui-bootstrap/timepicker.js +232 -0
- data/vendor/assets/javascripts/bastion/angular-ui-router/angular-ui-router.js +3223 -0
- data/vendor/assets/javascripts/bastion/angular-uuid4/angular-uuid4.js +21 -0
- data/vendor/assets/javascripts/bastion/angular/angular.js +20560 -0
- data/vendor/assets/javascripts/bastion/es5-shim/es5-shim.js +1216 -0
- data/vendor/assets/javascripts/bastion/json3/json3.js +861 -0
- data/vendor/assets/javascripts/bastion/ngUpload/ng-upload.js +205 -0
- data/vendor/assets/javascripts/bastion/underscore/underscore.js +1276 -0
- data/vendor/assets/stylesheets/bastion/alchemy/_colors.scss +99 -0
- data/vendor/assets/stylesheets/bastion/alchemy/_media_object.scss +22 -0
- data/vendor/assets/stylesheets/bastion/alchemy/_mixins.scss +24 -0
- data/vendor/assets/stylesheets/bastion/alchemy/_normalize.scss +396 -0
- data/vendor/assets/stylesheets/bastion/alchemy/_vars.scss +31 -0
- data/vendor/assets/stylesheets/bastion/alchemy/alchemy.scss +8 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/alerts.less +67 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/badges.less +51 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/bootstrap.less +49 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/breadcrumbs.less +23 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/button-groups.less +227 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/buttons.less +155 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/carousel.less +232 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/close.less +33 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/code.less +53 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/component-animations.less +29 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/dropdowns.less +187 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/forms.less +375 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/glyphicons.less +237 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/grid.less +79 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/input-groups.less +136 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/jumbotron.less +46 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/labels.less +64 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/list-group.less +88 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/media.less +56 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/mixins.less +845 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/modals.less +129 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/navbar.less +612 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/navs.less +242 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/normalize.less +406 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/pager.less +55 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/pagination.less +85 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/panels.less +182 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/popovers.less +133 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/print.less +105 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/progress-bars.less +80 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/responsive-utilities.less +209 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/scaffolding.less +119 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/tables.less +231 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/theme.less +247 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/thumbnails.less +36 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/tooltip.less +95 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/type.less +281 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/utilities.less +56 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/variables.less +642 -0
- data/vendor/assets/stylesheets/bastion/bootstrap/wells.less +29 -0
- data/vendor/assets/stylesheets/bastion/font-awesome/less/bootstrap.less +84 -0
- data/vendor/assets/stylesheets/bastion/font-awesome/less/core.less +129 -0
- data/vendor/assets/stylesheets/bastion/font-awesome/less/extras.less +93 -0
- data/vendor/assets/stylesheets/bastion/font-awesome/less/font-awesome-ie7.less +1953 -0
- data/vendor/assets/stylesheets/bastion/font-awesome/less/font-awesome.less +33 -0
- data/vendor/assets/stylesheets/bastion/font-awesome/less/icons.less +381 -0
- data/vendor/assets/stylesheets/bastion/font-awesome/less/mixins.less +48 -0
- data/vendor/assets/stylesheets/bastion/font-awesome/less/path.less +14 -0
- data/vendor/assets/stylesheets/bastion/font-awesome/less/variables.less +735 -0
- data/vendor/assets/stylesheets/bastion/font-awesome/scss/_bootstrap.scss +84 -0
- data/vendor/assets/stylesheets/bastion/font-awesome/scss/_core.scss +129 -0
- data/vendor/assets/stylesheets/bastion/font-awesome/scss/_extras.scss +93 -0
- data/vendor/assets/stylesheets/bastion/font-awesome/scss/_icons.scss +381 -0
- data/vendor/assets/stylesheets/bastion/font-awesome/scss/_mixins.scss +48 -0
- data/vendor/assets/stylesheets/bastion/font-awesome/scss/_path.scss +14 -0
- data/vendor/assets/stylesheets/bastion/font-awesome/scss/_variables.scss +734 -0
- data/vendor/assets/stylesheets/bastion/font-awesome/scss/font-awesome-ie7.scss +1953 -0
- data/vendor/assets/stylesheets/bastion/font-awesome/scss/font-awesome.scss +33 -0
- data/vendor/assets/stylesheets/bastion/rcue/buttons.less +44 -0
- data/vendor/assets/stylesheets/bastion/rcue/fonts.less +52 -0
- data/vendor/assets/stylesheets/bastion/rcue/forms.less +19 -0
- data/vendor/assets/stylesheets/bastion/rcue/mixins.less +50 -0
- data/vendor/assets/stylesheets/bastion/rcue/navbar.less +481 -0
- data/vendor/assets/stylesheets/bastion/rcue/rcue.less +15 -0
- data/vendor/assets/stylesheets/bastion/rcue/variables.less +47 -0
- metadata +376 -0
@@ -0,0 +1,61 @@
|
|
1
|
+
/**
|
2
|
+
* Copyright 2014 Red Hat, Inc.
|
3
|
+
*
|
4
|
+
* This software is licensed to you under the GNU General Public
|
5
|
+
* License as published by the Free Software Foundation; either version
|
6
|
+
* 2 of the License (GPLv2) or (at your option) any later version.
|
7
|
+
* There is NO WARRANTY for this software, express or implied,
|
8
|
+
* including the implied warranties of MERCHANTABILITY,
|
9
|
+
* NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should
|
10
|
+
* have received a copy of GPLv2 along with this software; if not, see
|
11
|
+
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
12
|
+
*/
|
13
|
+
|
14
|
+
/**
|
15
|
+
* @ngdoc directive
|
16
|
+
* @name Bastion.widgets.directive:title
|
17
|
+
*
|
18
|
+
* @requires PageTitle
|
19
|
+
*
|
20
|
+
* @description
|
21
|
+
* Provides a way to set the title of the page.
|
22
|
+
*/
|
23
|
+
angular.module('Bastion.widgets').directive('pageTitle', ['PageTitle', function (PageTitle) {
|
24
|
+
return {
|
25
|
+
templateUrl: '',
|
26
|
+
replace: true,
|
27
|
+
transclude: true,
|
28
|
+
require: '?ngModel',
|
29
|
+
scope: {
|
30
|
+
modelName: '@ngModel'
|
31
|
+
},
|
32
|
+
compile: function (element, attrs, transclude) {
|
33
|
+
var title;
|
34
|
+
|
35
|
+
return function (scope, iElem, iAttrs, ngModel) {
|
36
|
+
transclude(scope, function (clone) {
|
37
|
+
title = clone.text();
|
38
|
+
});
|
39
|
+
|
40
|
+
if (ngModel) {
|
41
|
+
var unbind = scope.$watch(function () {
|
42
|
+
return ngModel.$viewValue;
|
43
|
+
}, function (model) {
|
44
|
+
unbind();
|
45
|
+
if (model.hasOwnProperty('$promise')) {
|
46
|
+
model.$promise.then(function (model) {
|
47
|
+
scope[scope.modelName] = model;
|
48
|
+
PageTitle.setTitle(title, scope);
|
49
|
+
});
|
50
|
+
} else {
|
51
|
+
scope[scope.modelName] = model;
|
52
|
+
PageTitle.setTitle(title, scope);
|
53
|
+
}
|
54
|
+
});
|
55
|
+
} else {
|
56
|
+
PageTitle.setTitle(title, scope);
|
57
|
+
}
|
58
|
+
};
|
59
|
+
}
|
60
|
+
};
|
61
|
+
}]);
|
@@ -0,0 +1,42 @@
|
|
1
|
+
/**
|
2
|
+
* Copyright 2014 Red Hat, Inc.
|
3
|
+
*
|
4
|
+
* This software is licensed to you under the GNU General Public
|
5
|
+
* License as published by the Free Software Foundation; either version
|
6
|
+
* 2 of the License (GPLv2) or (at your option) any later version.
|
7
|
+
* There is NO WARRANTY for this software, express or implied,
|
8
|
+
* including the implied warranties of MERCHANTABILITY,
|
9
|
+
* NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should
|
10
|
+
* have received a copy of GPLv2 along with this software; if not, see
|
11
|
+
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
12
|
+
*/
|
13
|
+
|
14
|
+
/**
|
15
|
+
* @ngdoc service
|
16
|
+
* @name Bastion.widgets.service:PageTitle
|
17
|
+
*
|
18
|
+
* @requires $window
|
19
|
+
* @requires $interpolate
|
20
|
+
*
|
21
|
+
* @description
|
22
|
+
* Service to set the title of the page and maintain a
|
23
|
+
*/
|
24
|
+
angular.module('Bastion.widgets').service('PageTitle', ['$window', '$interpolate',
|
25
|
+
function ($window, $interpolate) {
|
26
|
+
this.titles = [];
|
27
|
+
|
28
|
+
this.setTitle = function (title, locals) {
|
29
|
+
if (title) {
|
30
|
+
var interpolated = $interpolate(title);
|
31
|
+
|
32
|
+
$window.document.title = interpolated(locals);
|
33
|
+
this.titles.push($window.document.title);
|
34
|
+
}
|
35
|
+
};
|
36
|
+
|
37
|
+
this.resetToFirst = function () {
|
38
|
+
this.titles = this.titles.slice(0, 1);
|
39
|
+
$window.document.title = this.titles[0];
|
40
|
+
};
|
41
|
+
}]
|
42
|
+
);
|
@@ -0,0 +1,109 @@
|
|
1
|
+
/**
|
2
|
+
* Copyright 2014 Red Hat, Inc.
|
3
|
+
*
|
4
|
+
* This software is licensed to you under the GNU General Public
|
5
|
+
* License as published by the Free Software Foundation; either version
|
6
|
+
* 2 of the License (GPLv2) or (at your option) any later version.
|
7
|
+
* There is NO WARRANTY for this software, express or implied,
|
8
|
+
* including the implied warranties of MERCHANTABILITY,
|
9
|
+
* NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should
|
10
|
+
* have received a copy of GPLv2 along with this software; if not, see
|
11
|
+
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
12
|
+
*/
|
13
|
+
|
14
|
+
/**
|
15
|
+
* @ngdoc directive
|
16
|
+
* @name Bastion.widgets.directive:pathSelector
|
17
|
+
*
|
18
|
+
* @description
|
19
|
+
* Provides a widget that renders a set of paths visually and allows
|
20
|
+
* users to select one or more paths depending on the configuration set.
|
21
|
+
*
|
22
|
+
* @example
|
23
|
+
*/
|
24
|
+
angular.module('Bastion.widgets').directive('pathSelector',
|
25
|
+
function () {
|
26
|
+
return {
|
27
|
+
restrict: 'AE',
|
28
|
+
require: '?ngModel',
|
29
|
+
scope: {
|
30
|
+
paths: '=pathSelector',
|
31
|
+
mode: '@',
|
32
|
+
disabled: '=',
|
33
|
+
disableTrigger: '=',
|
34
|
+
pathAttribute: '@'
|
35
|
+
},
|
36
|
+
templateUrl: 'widgets/views/path-selector.html',
|
37
|
+
link: function (scope, element, attrs, ngModel) {
|
38
|
+
var activeItemId, convertPathObjects, selectionRequired;
|
39
|
+
selectionRequired = attrs['selectionRequired'] ? attrs['selectionRequired'] === 'true' : true;
|
40
|
+
|
41
|
+
scope.itemChanged = function (item) {
|
42
|
+
if (item && scope.mode === 'singleSelect') {
|
43
|
+
if (item.selected || selectionRequired) {
|
44
|
+
unselectActive();
|
45
|
+
selectById(item.id);
|
46
|
+
activeItemId = item.id;
|
47
|
+
} else {
|
48
|
+
ngModel.$setViewValue(undefined);
|
49
|
+
}
|
50
|
+
}
|
51
|
+
};
|
52
|
+
|
53
|
+
convertPathObjects = function (paths) {
|
54
|
+
if (scope.pathAttribute) {
|
55
|
+
paths = _.pluck(paths, scope.pathAttribute);
|
56
|
+
}
|
57
|
+
return paths;
|
58
|
+
};
|
59
|
+
|
60
|
+
if (scope.paths.$promise) {
|
61
|
+
scope.paths.$promise.then(function (paths) {
|
62
|
+
scope.paths = convertPathObjects(paths);
|
63
|
+
scope.itemChanged(ngModel.$modelValue);
|
64
|
+
});
|
65
|
+
} else {
|
66
|
+
scope.paths = convertPathObjects(scope.paths);
|
67
|
+
scope.itemChanged(ngModel.$modelValue);
|
68
|
+
}
|
69
|
+
|
70
|
+
ngModel.$render = function () {
|
71
|
+
if (ngModel.$modelValue) {
|
72
|
+
ngModel.$modelValue.selected = true;
|
73
|
+
scope.itemChanged(ngModel.$modelValue);
|
74
|
+
}
|
75
|
+
};
|
76
|
+
|
77
|
+
scope.$watch('disableTrigger', function (disable) {
|
78
|
+
forEachItem(function (item) {
|
79
|
+
item.disabled = disable;
|
80
|
+
});
|
81
|
+
});
|
82
|
+
|
83
|
+
function selectById(id) {
|
84
|
+
forEachItem(function (item) {
|
85
|
+
if (item.id === id) {
|
86
|
+
ngModel.$setViewValue(item);
|
87
|
+
item.selected = true;
|
88
|
+
}
|
89
|
+
});
|
90
|
+
}
|
91
|
+
|
92
|
+
function unselectActive() {
|
93
|
+
forEachItem(function (item) {
|
94
|
+
if (item.id === activeItemId) {
|
95
|
+
item.selected = false;
|
96
|
+
}
|
97
|
+
});
|
98
|
+
}
|
99
|
+
|
100
|
+
function forEachItem(callback) {
|
101
|
+
angular.forEach(scope.paths, function (path) {
|
102
|
+
angular.forEach(path, function (item) {
|
103
|
+
callback(item);
|
104
|
+
});
|
105
|
+
});
|
106
|
+
}
|
107
|
+
}
|
108
|
+
};
|
109
|
+
});
|
@@ -0,0 +1,23 @@
|
|
1
|
+
<nav class="nav right current-tasks-nav" ng-class="{'active-item': visible}">
|
2
|
+
<ul class="menu-container" id="currentTasks">
|
3
|
+
|
4
|
+
<li class="menu-item">
|
5
|
+
<a class="menu-item-link currentTasksCount"
|
6
|
+
ng-click="toggleVisibility()"
|
7
|
+
ng-class="{'active-item': visible}">
|
8
|
+
{{ count }}
|
9
|
+
<i class="icon-caret-down"></i>
|
10
|
+
</a>
|
11
|
+
|
12
|
+
<span class="dropdown current-tasks"
|
13
|
+
ng-class="{'dropdown-active': visible}"
|
14
|
+
ng-show="visible">
|
15
|
+
<ul class="active-tasks">
|
16
|
+
<div tasks-table template-url="tasks/views/user-tasks-table.html"
|
17
|
+
details-state="tasks.details"
|
18
|
+
user-id="{{ currentUser.id }}" ></div>
|
19
|
+
</ul>
|
20
|
+
</span>
|
21
|
+
</li>
|
22
|
+
</ul>
|
23
|
+
</nav>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
|
2
|
+
<div class="path-selector" ng-repeat="path in paths">
|
3
|
+
<ul class="path-list">
|
4
|
+
<li class="path-list-item" ng-repeat="item in path" ng-class="{ 'disabled-item': item.disabled }">
|
5
|
+
<label class="path-list-item-label" ng-disabled="item.disabled" ng-class="{ active: item.selected }" ng-mouseenter="hover" ng-mouseleave="hover = false">
|
6
|
+
<input type="checkbox" ng-model="item.selected" ng-change="itemChanged(item)" ng-disabled="item.disabled"/>
|
7
|
+
{{ item.name }}
|
8
|
+
</label>
|
9
|
+
</li>
|
10
|
+
</ul>
|
11
|
+
</div>
|
@@ -0,0 +1,24 @@
|
|
1
|
+
/**
|
2
|
+
Copyright 2014 Red Hat, Inc.
|
3
|
+
|
4
|
+
This software is licensed to you under the GNU General Public
|
5
|
+
License as published by the Free Software Foundation; either version
|
6
|
+
2 of the License (GPLv2) or (at your option) any later version.
|
7
|
+
There is NO WARRANTY for this software, express or implied,
|
8
|
+
including the implied warranties of MERCHANTABILITY,
|
9
|
+
NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should
|
10
|
+
have received a copy of GPLv2 along with this software; if not, see
|
11
|
+
http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
12
|
+
**/
|
13
|
+
|
14
|
+
/**
|
15
|
+
* @ngdoc module
|
16
|
+
* @name Bastion.widgets
|
17
|
+
*
|
18
|
+
* @description
|
19
|
+
* Module for common Bastion widgets.
|
20
|
+
*/
|
21
|
+
angular.module('Bastion.widgets', [
|
22
|
+
'Bastion',
|
23
|
+
'Bastion.utils',
|
24
|
+
]);
|
@@ -0,0 +1,15 @@
|
|
1
|
+
.animate-show {
|
2
|
+
-webkit-transition: all linear 0.075s;
|
3
|
+
transition: all linear 0.075s;
|
4
|
+
opacity: 1;
|
5
|
+
}
|
6
|
+
|
7
|
+
.animate-show.ng-hide-add,
|
8
|
+
.animate-show.ng-hide-remove {
|
9
|
+
display:block !important;
|
10
|
+
}
|
11
|
+
|
12
|
+
.animate-show.ng-hide {
|
13
|
+
opacity:0;
|
14
|
+
padding:0 10px;
|
15
|
+
}
|
@@ -0,0 +1,160 @@
|
|
1
|
+
// Third-party Libraries
|
2
|
+
//
|
3
|
+
// Temporary namespace to prevent Boostrap3/RCUE from
|
4
|
+
// Colliding with Boostrap2 from Foreman core
|
5
|
+
.rcue-styles {
|
6
|
+
@import "rcue/rcue";
|
7
|
+
|
8
|
+
// Bastion Components
|
9
|
+
@import "mixins";
|
10
|
+
@import "variables";
|
11
|
+
@import "nutupane";
|
12
|
+
@import "systems";
|
13
|
+
@import "tasks";
|
14
|
+
@import "overrides";
|
15
|
+
@import "helpers";
|
16
|
+
@import "./forms";
|
17
|
+
@import "gpg-keys";
|
18
|
+
@import "animations";
|
19
|
+
@import "path-selector";
|
20
|
+
@import "typography";
|
21
|
+
|
22
|
+
body {
|
23
|
+
width: 100%;
|
24
|
+
height: 100%;
|
25
|
+
overflow: hidden;
|
26
|
+
}
|
27
|
+
|
28
|
+
.container-fluid {
|
29
|
+
margin-right: auto;
|
30
|
+
margin-left: auto;
|
31
|
+
padding-left: 15px;
|
32
|
+
padding-right: 15px;
|
33
|
+
}
|
34
|
+
|
35
|
+
a {
|
36
|
+
cursor: pointer;
|
37
|
+
}
|
38
|
+
|
39
|
+
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
|
40
|
+
display: none;
|
41
|
+
}
|
42
|
+
|
43
|
+
[class*="icon-"] {
|
44
|
+
&.green {
|
45
|
+
color: #57a81c;
|
46
|
+
}
|
47
|
+
&.yellow {
|
48
|
+
color: #fc3;
|
49
|
+
}
|
50
|
+
&.red {
|
51
|
+
color: #9e292b;
|
52
|
+
}
|
53
|
+
&.light-blue {
|
54
|
+
color: @brand-info;
|
55
|
+
}
|
56
|
+
&.gray {
|
57
|
+
color: @gray-light;
|
58
|
+
}
|
59
|
+
&.orange {
|
60
|
+
color: @brand-warning;
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
.leading-icon {
|
65
|
+
padding-right: 4px;
|
66
|
+
}
|
67
|
+
|
68
|
+
.trailing-icon {
|
69
|
+
padding-left: 4px;
|
70
|
+
}
|
71
|
+
|
72
|
+
//used for small panes such 'copy' actions
|
73
|
+
.action-pane {
|
74
|
+
border: 1px solid @border_color;
|
75
|
+
background-color: white;
|
76
|
+
color: black;
|
77
|
+
padding: 10px;
|
78
|
+
width: 300px;
|
79
|
+
min-height: 100px;
|
80
|
+
z-index: 1;
|
81
|
+
position: absolute;
|
82
|
+
right: 20px;
|
83
|
+
top: 50px;
|
84
|
+
input {
|
85
|
+
margin-bottom: 10px;
|
86
|
+
}
|
87
|
+
}
|
88
|
+
|
89
|
+
.well {
|
90
|
+
border: 1px solid rgb(225, 225, 225);
|
91
|
+
background: rgb(250, 250, 250);
|
92
|
+
margin-top: 20px;
|
93
|
+
padding: 8px;
|
94
|
+
}
|
95
|
+
|
96
|
+
.loading-mask {
|
97
|
+
width: 100%;
|
98
|
+
height: 100%;
|
99
|
+
position: fixed;
|
100
|
+
z-index: 1;
|
101
|
+
background: white;
|
102
|
+
font-size: 3em;
|
103
|
+
|
104
|
+
.icon-spinner {
|
105
|
+
margin: 20% 0 0 40%;
|
106
|
+
}
|
107
|
+
|
108
|
+
&.loading-mask-panel {
|
109
|
+
left: 20.1%;
|
110
|
+
|
111
|
+
.icon-spinner {
|
112
|
+
margin: 20% 0 0 33%;
|
113
|
+
}
|
114
|
+
}
|
115
|
+
|
116
|
+
&.loading-mask-collapsed {
|
117
|
+
width: 20%;
|
118
|
+
}
|
119
|
+
}
|
120
|
+
|
121
|
+
.form {
|
122
|
+
input[type="number"] {
|
123
|
+
width: 75px;
|
124
|
+
}
|
125
|
+
|
126
|
+
input[type="text"],
|
127
|
+
input[type="url"] {
|
128
|
+
|
129
|
+
&.input-xlarge {
|
130
|
+
width: 420px;
|
131
|
+
}
|
132
|
+
&.input-xxlarge {
|
133
|
+
width: 560px;
|
134
|
+
}
|
135
|
+
}
|
136
|
+
margin-bottom: 10px;
|
137
|
+
}
|
138
|
+
|
139
|
+
input[type="checkbox"] {
|
140
|
+
vertical-align: text-bottom;
|
141
|
+
}
|
142
|
+
|
143
|
+
.inline-confirmation {
|
144
|
+
.border-radius(5px);
|
145
|
+
.box-shadow(rgba(0,0,0,0.4), 2px, 2px, 2px);
|
146
|
+
background-color: white;
|
147
|
+
border: 1px solid @border_color;
|
148
|
+
padding: 15px;
|
149
|
+
margin: 4px auto;
|
150
|
+
width: 85%;
|
151
|
+
|
152
|
+
.actions {
|
153
|
+
float: right;
|
154
|
+
}
|
155
|
+
}
|
156
|
+
}
|
157
|
+
|
158
|
+
.modal.fade.in {
|
159
|
+
display: block;
|
160
|
+
}
|