bastion 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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,21 @@
|
|
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 alchemy.format
|
17
|
+
*
|
18
|
+
* @description
|
19
|
+
* Module for formatting related functionality, primarily filters.
|
20
|
+
*/
|
21
|
+
angular.module('alchemy.format', ['ngSanitize']);
|
@@ -0,0 +1,30 @@
|
|
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 filter
|
16
|
+
* @name alchemy.filter:arrayToString
|
17
|
+
*
|
18
|
+
* @description
|
19
|
+
*
|
20
|
+
*
|
21
|
+
* @example
|
22
|
+
*
|
23
|
+
*/
|
24
|
+
angular.module('alchemy.format').filter('arrayToString', [function () {
|
25
|
+
return function (toFormat, stringToPluck, separator) {
|
26
|
+
stringToPluck = stringToPluck || 'name';
|
27
|
+
separator = separator || ', ';
|
28
|
+
return _.pluck(toFormat, stringToPluck).join(separator);
|
29
|
+
};
|
30
|
+
}]);
|
@@ -0,0 +1,34 @@
|
|
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 filter
|
16
|
+
* @name alchemy.filter:booleanToYesNo
|
17
|
+
*
|
18
|
+
* @requires translate
|
19
|
+
*
|
20
|
+
* @description
|
21
|
+
* Provides a filter to convert a boolean to Yes/No
|
22
|
+
*/
|
23
|
+
angular.module('alchemy.format').filter('booleanToYesNo', ['translate', function (translate) {
|
24
|
+
return function (boolValue, yesValue, noValue) {
|
25
|
+
yesValue = yesValue || translate("Yes");
|
26
|
+
noValue = noValue || translate("No");
|
27
|
+
|
28
|
+
if (boolValue !== '' && boolValue !== null && boolValue !== undefined) {
|
29
|
+
return (boolValue === true) ? yesValue : noValue;
|
30
|
+
} else {
|
31
|
+
return "";
|
32
|
+
}
|
33
|
+
};
|
34
|
+
}]);
|
@@ -0,0 +1,32 @@
|
|
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 filter
|
16
|
+
* @name alchemy.filter:capitalize
|
17
|
+
*
|
18
|
+
* @description
|
19
|
+
* A filter to capitalize the initial letter of a string.
|
20
|
+
*
|
21
|
+
* @example
|
22
|
+
* {{ 'blah' | capitalize }} will produce the string "Blah".
|
23
|
+
*/
|
24
|
+
angular.module('alchemy.format').filter('capitalize', function () {
|
25
|
+
return function (input) {
|
26
|
+
var capitalized = input;
|
27
|
+
if (angular.isString(input)) {
|
28
|
+
capitalized = input.substring(0, 1).toUpperCase() + input.substring(1);
|
29
|
+
}
|
30
|
+
return capitalized;
|
31
|
+
};
|
32
|
+
});
|
@@ -0,0 +1,40 @@
|
|
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 filter
|
16
|
+
* @name alchemy.filter:keyValueToString
|
17
|
+
*
|
18
|
+
* @description
|
19
|
+
*
|
20
|
+
*
|
21
|
+
* @example
|
22
|
+
*
|
23
|
+
*/
|
24
|
+
angular.module('alchemy.format').filter('keyValueToString', [function () {
|
25
|
+
return function (toFormat, options) {
|
26
|
+
var keyName, valueName, separator;
|
27
|
+
options = options || {};
|
28
|
+
keyName = options.keyName || 'keyname';
|
29
|
+
valueName = options.valueName || 'value';
|
30
|
+
separator = options.separator || ': ';
|
31
|
+
|
32
|
+
if (!(toFormat instanceof Array)) {
|
33
|
+
toFormat = [toFormat];
|
34
|
+
}
|
35
|
+
|
36
|
+
return _.map(toFormat, function (entry) {
|
37
|
+
return [entry[keyName], entry[valueName]].join(separator);
|
38
|
+
}).join(', ');
|
39
|
+
};
|
40
|
+
}]);
|
@@ -0,0 +1,35 @@
|
|
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 filter
|
16
|
+
* @name alchemy.filter:unlimitedFilter
|
17
|
+
*
|
18
|
+
* @description
|
19
|
+
* Used to format a display value as either a number or the translate text "Unlimited"
|
20
|
+
* based on a secondary boolean value.
|
21
|
+
*
|
22
|
+
* @example
|
23
|
+
* {{ hostCollection.max_content_hosts | unlimitedFilter:hostCollection.unlimited_content_hosts }}
|
24
|
+
*/
|
25
|
+
angular.module('alchemy.format').filter('unlimitedFilter', ['translate', function (translate) {
|
26
|
+
return function (displayValue, unlimited) {
|
27
|
+
if (unlimited || displayValue === -1) {
|
28
|
+
displayValue = translate("Unlimited");
|
29
|
+
} else if (displayValue) {
|
30
|
+
displayValue = displayValue.toString();
|
31
|
+
}
|
32
|
+
|
33
|
+
return displayValue;
|
34
|
+
};
|
35
|
+
}]);
|
@@ -0,0 +1,34 @@
|
|
1
|
+
.alch-dialog {
|
2
|
+
background: white;
|
3
|
+
border: 1px solid #e6e6e6;
|
4
|
+
border-radius: 5px;
|
5
|
+
box-shadow: #999 0 2px 2px;
|
6
|
+
z-index: 2;
|
7
|
+
}
|
8
|
+
|
9
|
+
.alch-dialog.closed {
|
10
|
+
border: none;
|
11
|
+
box-shadow: none;
|
12
|
+
}
|
13
|
+
|
14
|
+
.alch-dialog.open {
|
15
|
+
position: absolute;
|
16
|
+
padding: 10px;
|
17
|
+
|
18
|
+
.form input[type="text"] {
|
19
|
+
width: 150px;
|
20
|
+
}
|
21
|
+
}
|
22
|
+
|
23
|
+
.alch-multiselect {
|
24
|
+
ul {
|
25
|
+
list-style: none;
|
26
|
+
max-height: 100px;
|
27
|
+
overflow-y: auto;
|
28
|
+
padding: 15px
|
29
|
+
}
|
30
|
+
}
|
31
|
+
|
32
|
+
.alch-button-container {
|
33
|
+
padding: 10px 0 0;
|
34
|
+
}
|
@@ -0,0 +1,207 @@
|
|
1
|
+
@import "compass";
|
2
|
+
|
3
|
+
$nav-header_background: #FFA500 !default;
|
4
|
+
$logo-header_background: darken($nav-header_background, 10%) !default;
|
5
|
+
$menu-item_hover: darken($nav-header_background, 10%) !default;
|
6
|
+
$link_color: #000 !default;
|
7
|
+
$link-hover_color: lighten($link_color, 100%) !default;
|
8
|
+
$link-border_color: lighten($nav-header_background, 30%) !default;
|
9
|
+
$dropdown-link-hover_background: #000 !default;
|
10
|
+
$nav-header_top_border: lighten($nav-header_background, 10%) !default;
|
11
|
+
$menu-item_hover_background: darken($logo-header_background, 10%) !default;
|
12
|
+
$menu-item_active_background: darken($logo-header_background, 10%) !default;
|
13
|
+
|
14
|
+
.left { float: left; }
|
15
|
+
.right {
|
16
|
+
float: right;
|
17
|
+
|
18
|
+
.menu-item .dropdown {
|
19
|
+
right: -1px;
|
20
|
+
}
|
21
|
+
}
|
22
|
+
|
23
|
+
.menu-container {
|
24
|
+
position: relative;
|
25
|
+
display: block;
|
26
|
+
float: left;
|
27
|
+
margin: 0;
|
28
|
+
list-style: none;
|
29
|
+
|
30
|
+
.menu-item {
|
31
|
+
line-height: 40px;
|
32
|
+
position: relative;
|
33
|
+
margin: 0;
|
34
|
+
float: left;
|
35
|
+
font-family: Overpass;
|
36
|
+
vertical-align: baseline;
|
37
|
+
font-size: 14px;
|
38
|
+
}
|
39
|
+
|
40
|
+
.menu-item-link {
|
41
|
+
@include transition( all .15s ease-in);
|
42
|
+
float: none;
|
43
|
+
padding: 0 15px;
|
44
|
+
margin: 0 auto;
|
45
|
+
display: block;
|
46
|
+
cursor: pointer;
|
47
|
+
white-space: nowrap;
|
48
|
+
text-overflow: ellipsis;
|
49
|
+
text-align: center;
|
50
|
+
font-family: overpass, sans-serif, sans;
|
51
|
+
text-decoration: none;
|
52
|
+
color: $link_color;
|
53
|
+
|
54
|
+
&:hover {
|
55
|
+
@include transition( all 0.15s ease-in-out);
|
56
|
+
color: $link-hover_color;
|
57
|
+
background: $menu-item_hover_background;
|
58
|
+
box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
|
59
|
+
}
|
60
|
+
|
61
|
+
&.active-item {
|
62
|
+
box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
|
63
|
+
color: $link-hover_color;
|
64
|
+
background: $menu-item_hover_background;
|
65
|
+
}
|
66
|
+
}
|
67
|
+
|
68
|
+
.menu-anchor {
|
69
|
+
cursor: default;
|
70
|
+
}
|
71
|
+
}
|
72
|
+
|
73
|
+
.dropdown {
|
74
|
+
position: fixed;
|
75
|
+
display: none;
|
76
|
+
list-style: none;
|
77
|
+
border-radius: 0 0 5px 5px;
|
78
|
+
padding: 0;
|
79
|
+
z-index: 3;
|
80
|
+
border: 1px solid #C8C8C8;
|
81
|
+
border-top: none;
|
82
|
+
box-shadow: 0px 1px 5px #C8C8C8;
|
83
|
+
background: white;
|
84
|
+
opacity: 1;
|
85
|
+
min-width: 160px;
|
86
|
+
|
87
|
+
.dropdown-item {
|
88
|
+
text-align: left;
|
89
|
+
line-height: 35px;
|
90
|
+
position: relative;
|
91
|
+
display: block;
|
92
|
+
float: none;
|
93
|
+
}
|
94
|
+
|
95
|
+
.dropdown-item-link {
|
96
|
+
text-decoration: none;
|
97
|
+
color: #000;
|
98
|
+
text-decoration: none;
|
99
|
+
display: block;
|
100
|
+
padding: 5px 5px 5px 20px;
|
101
|
+
overflow: auto;
|
102
|
+
|
103
|
+
span { float: left; }
|
104
|
+
}
|
105
|
+
|
106
|
+
.dropdown-item-link-active {
|
107
|
+
background: $dropdown-link-hover_background;
|
108
|
+
color: $link-hover_color;
|
109
|
+
}
|
110
|
+
}
|
111
|
+
|
112
|
+
.dropdown-active {
|
113
|
+
@include transition(all 0.4s ease-in);
|
114
|
+
display: block;
|
115
|
+
}
|
116
|
+
|
117
|
+
.dropdown-left {
|
118
|
+
left: 0;
|
119
|
+
}
|
120
|
+
|
121
|
+
.dropdown-right {
|
122
|
+
right: 0;
|
123
|
+
left: auto;
|
124
|
+
}
|
125
|
+
|
126
|
+
.flyout-indicator {
|
127
|
+
margin-top: 8px;
|
128
|
+
margin-right: 5px;
|
129
|
+
margin-left: 10px;
|
130
|
+
font-size: 18px;
|
131
|
+
float: right;
|
132
|
+
}
|
133
|
+
|
134
|
+
.flyout {
|
135
|
+
padding: 0;
|
136
|
+
list-style: none;
|
137
|
+
position: absolute;
|
138
|
+
top: -1px;
|
139
|
+
left: 100%;
|
140
|
+
min-width: 160px;
|
141
|
+
border: 1px solid #C8C8C8;
|
142
|
+
border-radius: 0 3px 3px 3px;
|
143
|
+
box-shadow: 1px 0px 5px #C8C8C8;
|
144
|
+
z-index: 2;
|
145
|
+
background: white;
|
146
|
+
|
147
|
+
.flyout-item {
|
148
|
+
text-align: left;
|
149
|
+
line-height: 35px;
|
150
|
+
position: relative;
|
151
|
+
display: block;
|
152
|
+
clear: both;
|
153
|
+
}
|
154
|
+
|
155
|
+
.flyout-item-link {
|
156
|
+
color: #000;
|
157
|
+
text-decoration: none;
|
158
|
+
display: block;
|
159
|
+
padding: 5px 20px 5px 20px;
|
160
|
+
|
161
|
+
&:hover {
|
162
|
+
background: $dropdown-link-hover_background;
|
163
|
+
color: $link-hover_color;
|
164
|
+
}
|
165
|
+
}
|
166
|
+
}
|
167
|
+
|
168
|
+
.logo-header {
|
169
|
+
$logo-header_line_height: 25px;
|
170
|
+
|
171
|
+
height: $logo-header_line_height;
|
172
|
+
background-color: $logo-header_background;
|
173
|
+
z-index: 3;
|
174
|
+
|
175
|
+
.logo {
|
176
|
+
margin-left: 30px;
|
177
|
+
}
|
178
|
+
|
179
|
+
.menu-container {
|
180
|
+
line-height: $logo-header_line_height;
|
181
|
+
|
182
|
+
.menu-item {
|
183
|
+
line-height: $logo-header_line_height;
|
184
|
+
}
|
185
|
+
}
|
186
|
+
|
187
|
+
.dropdown-active {
|
188
|
+
box-shadow: none;
|
189
|
+
}
|
190
|
+
}
|
191
|
+
|
192
|
+
.nav-header {
|
193
|
+
background: $nav-header_background;
|
194
|
+
border-top: 1px solid $nav-header_top_border;
|
195
|
+
width: 100%;
|
196
|
+
overflow: auto;
|
197
|
+
}
|
198
|
+
|
199
|
+
.compact {
|
200
|
+
position:fixed;
|
201
|
+
vertical-align:middle;
|
202
|
+
top: 0;
|
203
|
+
padding:0;
|
204
|
+
margin: 0;
|
205
|
+
width: 100%;
|
206
|
+
z-index: 2;
|
207
|
+
}
|