bastion 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (278) hide show
  1. checksums.yaml +15 -0
  2. data/.jshintrc +35 -0
  3. data/Gruntfile.js +24 -0
  4. data/LICENSE +339 -0
  5. data/README.md +8 -0
  6. data/Rakefile +53 -0
  7. data/app/assets/javascripts/bastion/auth/auth.module.js +87 -0
  8. data/app/assets/javascripts/bastion/auth/authorization.service.js +48 -0
  9. data/app/assets/javascripts/bastion/bastion-bootstrap.js +32 -0
  10. data/app/assets/javascripts/bastion/bastion-resource.factory.js +39 -0
  11. data/app/assets/javascripts/bastion/bastion.js +52 -0
  12. data/app/assets/javascripts/bastion/bastion.module.js +213 -0
  13. data/app/assets/javascripts/bastion/i18n/README +9 -0
  14. data/app/assets/javascripts/bastion/i18n/i18n.module.js +24 -0
  15. data/app/assets/javascripts/bastion/i18n/katello.pot +968 -0
  16. data/app/assets/javascripts/bastion/i18n/locale/README +1 -0
  17. data/app/assets/javascripts/bastion/i18n/translate.service.js +14 -0
  18. data/app/assets/javascripts/bastion/i18n/translations.js +3 -0
  19. data/app/assets/javascripts/bastion/i18n/zanata.xml +28 -0
  20. data/app/assets/javascripts/bastion/incubator/alch-alert.directive.js +67 -0
  21. data/app/assets/javascripts/bastion/incubator/alch-container-scroll.directive.js +44 -0
  22. data/app/assets/javascripts/bastion/incubator/alch-dropdown.directive.js +28 -0
  23. data/app/assets/javascripts/bastion/incubator/alch-edit.directive.js +361 -0
  24. data/app/assets/javascripts/bastion/incubator/alch-flyout.directive.js +19 -0
  25. data/app/assets/javascripts/bastion/incubator/alch-form-buttons.directive.js +60 -0
  26. data/app/assets/javascripts/bastion/incubator/alch-form-group.directive.js +87 -0
  27. data/app/assets/javascripts/bastion/incubator/alch-infinite-scroll.directive.js +84 -0
  28. data/app/assets/javascripts/bastion/incubator/alch-menu.directive.js +56 -0
  29. data/app/assets/javascripts/bastion/incubator/alch-modal.directive.js +80 -0
  30. data/app/assets/javascripts/bastion/incubator/alch-save-control.directive.js +42 -0
  31. data/app/assets/javascripts/bastion/incubator/alch-table.directive.js +295 -0
  32. data/app/assets/javascripts/bastion/incubator/format/alch-format.module.js +21 -0
  33. data/app/assets/javascripts/bastion/incubator/format/array-to-string.filter.js +30 -0
  34. data/app/assets/javascripts/bastion/incubator/format/boolean-to-yes-no.filter.js +34 -0
  35. data/app/assets/javascripts/bastion/incubator/format/capitalize.filter.js +32 -0
  36. data/app/assets/javascripts/bastion/incubator/format/key-value-to-string.filter.js +40 -0
  37. data/app/assets/javascripts/bastion/incubator/format/unlimitedFilter.filter.js +35 -0
  38. data/app/assets/javascripts/bastion/incubator/stylesheets/alch-edit.scss +34 -0
  39. data/app/assets/javascripts/bastion/incubator/stylesheets/header.scss +207 -0
  40. data/app/assets/javascripts/bastion/incubator/views/alch-alert.html +6 -0
  41. data/app/assets/javascripts/bastion/incubator/views/alch-dropdown.html +19 -0
  42. data/app/assets/javascripts/bastion/incubator/views/alch-edit-add-item.html +21 -0
  43. data/app/assets/javascripts/bastion/incubator/views/alch-edit-add-remove-cancel.html +28 -0
  44. data/app/assets/javascripts/bastion/incubator/views/alch-edit-checkbox.html +6 -0
  45. data/app/assets/javascripts/bastion/incubator/views/alch-edit-custom.html +8 -0
  46. data/app/assets/javascripts/bastion/incubator/views/alch-edit-multiselect.html +17 -0
  47. data/app/assets/javascripts/bastion/incubator/views/alch-edit-save-cancel.html +20 -0
  48. data/app/assets/javascripts/bastion/incubator/views/alch-edit-select.html +10 -0
  49. data/app/assets/javascripts/bastion/incubator/views/alch-edit-text.html +6 -0
  50. data/app/assets/javascripts/bastion/incubator/views/alch-edit-textarea.html +6 -0
  51. data/app/assets/javascripts/bastion/incubator/views/alch-edit.html +18 -0
  52. data/app/assets/javascripts/bastion/incubator/views/alch-flyout.html +10 -0
  53. data/app/assets/javascripts/bastion/incubator/views/alch-form-buttons.html +10 -0
  54. data/app/assets/javascripts/bastion/incubator/views/alch-form-group.html +9 -0
  55. data/app/assets/javascripts/bastion/incubator/views/alch-menu.html +18 -0
  56. data/app/assets/javascripts/bastion/incubator/views/alch-modal-remove.html +13 -0
  57. data/app/assets/javascripts/bastion/incubator/views/alch-save-control.html +18 -0
  58. data/app/assets/javascripts/bastion/layouts/details-nutupane.html +73 -0
  59. data/app/assets/javascripts/bastion/layouts/nutupane.html +63 -0
  60. data/app/assets/javascripts/bastion/layouts/select-all-results.html +9 -0
  61. data/app/assets/javascripts/bastion/menu/menu-expander.service.js +51 -0
  62. data/app/assets/javascripts/bastion/menu/menu.module.js +26 -0
  63. data/app/assets/javascripts/bastion/utils/as.filter.js +33 -0
  64. data/app/assets/javascripts/bastion/utils/form-utils.service.js +53 -0
  65. data/app/assets/javascripts/bastion/utils/utils.module.js +21 -0
  66. data/app/assets/javascripts/bastion/widgets/current-tasks.directive.js +67 -0
  67. data/app/assets/javascripts/bastion/widgets/nutupane-table.directive.js +59 -0
  68. data/app/assets/javascripts/bastion/widgets/nutupane.factory.js +316 -0
  69. data/app/assets/javascripts/bastion/widgets/page-title.directive.js +61 -0
  70. data/app/assets/javascripts/bastion/widgets/page-title.service.js +42 -0
  71. data/app/assets/javascripts/bastion/widgets/path-selector.directive.js +109 -0
  72. data/app/assets/javascripts/bastion/widgets/views/current-tasks.html +23 -0
  73. data/app/assets/javascripts/bastion/widgets/views/path-selector.html +11 -0
  74. data/app/assets/javascripts/bastion/widgets/widgets.module.js +24 -0
  75. data/app/assets/stylesheets/bastion/animations.less +15 -0
  76. data/app/assets/stylesheets/bastion/bastion.less +160 -0
  77. data/app/assets/stylesheets/bastion/forms.less +41 -0
  78. data/app/assets/stylesheets/bastion/gpg-keys.less +36 -0
  79. data/app/assets/stylesheets/bastion/helpers.less +6 -0
  80. data/app/assets/stylesheets/bastion/mixins.less +15 -0
  81. data/app/assets/stylesheets/bastion/nutupane.less +382 -0
  82. data/app/assets/stylesheets/bastion/overrides.less +54 -0
  83. data/app/assets/stylesheets/bastion/path-selector.less +123 -0
  84. data/app/assets/stylesheets/bastion/systems.less +35 -0
  85. data/app/assets/stylesheets/bastion/tasks.less +23 -0
  86. data/app/assets/stylesheets/bastion/typography.less +31 -0
  87. data/app/assets/stylesheets/bastion/variables.less +3 -0
  88. data/app/controllers/bastion/bastion_controller.rb +24 -0
  89. data/app/views/bastion/layouts/application.html.erb +32 -0
  90. data/app/views/bastion/layouts/application_ie.html.erb +5 -0
  91. data/bastion.js +26 -0
  92. data/bower.json +94 -0
  93. data/config/routes.rb +25 -0
  94. data/config/routes/mount_engine.rb +3 -0
  95. data/grunt/bower.js +20 -0
  96. data/grunt/htmlhint.js +15 -0
  97. data/grunt/jshint.js +9 -0
  98. data/grunt/karma.js +83 -0
  99. data/lib/bastion.rb +17 -0
  100. data/lib/bastion/engine.rb +37 -0
  101. data/lib/bastion/version.rb +3 -0
  102. data/package.json +29 -0
  103. data/test/auth/authorization.service.test.js +63 -0
  104. data/test/bastion/bastion-resource.factory.test.js +31 -0
  105. data/test/bastion/test-constants.js +30 -0
  106. data/test/i18n/translate.service.test.js +31 -0
  107. data/test/incubator/alch-alert.directive.test.js +84 -0
  108. data/test/incubator/alch-container-scroll.directive.test.js +68 -0
  109. data/test/incubator/alch-dropdown.directive.test.js +113 -0
  110. data/test/incubator/alch-edit.directive.test.js +320 -0
  111. data/test/incubator/alch-flyout.directive.test.js +73 -0
  112. data/test/incubator/alch-form-buttons.directive.test.js +55 -0
  113. data/test/incubator/alch-form-group.directive.test.js +76 -0
  114. data/test/incubator/alch-infinite-scroll.directive.test.js +123 -0
  115. data/test/incubator/alch-menu.directive.test.js +94 -0
  116. data/test/incubator/alch-modal.directive.test.js +81 -0
  117. data/test/incubator/alch-table.directive.test.js +270 -0
  118. data/test/incubator/format/array-to-string.filter.test.js +38 -0
  119. data/test/incubator/format/boolean-to-yes-no.filter.test.js +41 -0
  120. data/test/incubator/format/capitalize.filter.test.js +35 -0
  121. data/test/incubator/format/key-value-to-string.filter.test.js +60 -0
  122. data/test/incubator/format/unlimited-filter.filter.test.js +31 -0
  123. data/test/incubator/nutupane-table.directive.test.js +69 -0
  124. data/test/incubator/nutupane.factory.test.js +307 -0
  125. data/test/menu/menu-expander.service.test.js +74 -0
  126. data/test/test-mocks.module.js +268 -0
  127. data/test/utils/as.filter.test.js +33 -0
  128. data/test/utils/form-utils.service.test.js +52 -0
  129. data/test/widgets/page-title.directive.test.js +54 -0
  130. data/test/widgets/page-title.service.test.js +51 -0
  131. data/test/widgets/path-selector.directive.test.js +136 -0
  132. data/vendor/assets/fonts/bastion/bootstrap/glyphicons-halflings-regular.eot +0 -0
  133. data/vendor/assets/fonts/bastion/bootstrap/glyphicons-halflings-regular.svg +229 -0
  134. data/vendor/assets/fonts/bastion/bootstrap/glyphicons-halflings-regular.ttf +0 -0
  135. data/vendor/assets/fonts/bastion/bootstrap/glyphicons-halflings-regular.woff +0 -0
  136. data/vendor/assets/fonts/bastion/font-awesome/FontAwesome.otf +0 -0
  137. data/vendor/assets/fonts/bastion/font-awesome/fontawesome-webfont.eot +0 -0
  138. data/vendor/assets/fonts/bastion/font-awesome/fontawesome-webfont.svg +399 -0
  139. data/vendor/assets/fonts/bastion/font-awesome/fontawesome-webfont.ttf +0 -0
  140. data/vendor/assets/fonts/bastion/font-awesome/fontawesome-webfont.woff +0 -0
  141. data/vendor/assets/fonts/bastion/rcue/OpenSans-Bold-webfont.eot +0 -0
  142. data/vendor/assets/fonts/bastion/rcue/OpenSans-Bold-webfont.svg +146 -0
  143. data/vendor/assets/fonts/bastion/rcue/OpenSans-Bold-webfont.ttf +0 -0
  144. data/vendor/assets/fonts/bastion/rcue/OpenSans-Bold-webfont.woff +0 -0
  145. data/vendor/assets/fonts/bastion/rcue/OpenSans-BoldItalic-webfont.eot +0 -0
  146. data/vendor/assets/fonts/bastion/rcue/OpenSans-BoldItalic-webfont.svg +146 -0
  147. data/vendor/assets/fonts/bastion/rcue/OpenSans-BoldItalic-webfont.ttf +0 -0
  148. data/vendor/assets/fonts/bastion/rcue/OpenSans-BoldItalic-webfont.woff +0 -0
  149. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBold-webfont.eot +0 -0
  150. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBold-webfont.svg +146 -0
  151. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBold-webfont.ttf +0 -0
  152. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBold-webfont.woff +0 -0
  153. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBoldItalic-webfont.eot +0 -0
  154. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBoldItalic-webfont.svg +146 -0
  155. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBoldItalic-webfont.ttf +0 -0
  156. data/vendor/assets/fonts/bastion/rcue/OpenSans-ExtraBoldItalic-webfont.woff +0 -0
  157. data/vendor/assets/fonts/bastion/rcue/OpenSans-Italic-webfont.eot +0 -0
  158. data/vendor/assets/fonts/bastion/rcue/OpenSans-Italic-webfont.svg +146 -0
  159. data/vendor/assets/fonts/bastion/rcue/OpenSans-Italic-webfont.ttf +0 -0
  160. data/vendor/assets/fonts/bastion/rcue/OpenSans-Italic-webfont.woff +0 -0
  161. data/vendor/assets/fonts/bastion/rcue/OpenSans-Light-webfont.eot +0 -0
  162. data/vendor/assets/fonts/bastion/rcue/OpenSans-Light-webfont.svg +146 -0
  163. data/vendor/assets/fonts/bastion/rcue/OpenSans-Light-webfont.ttf +0 -0
  164. data/vendor/assets/fonts/bastion/rcue/OpenSans-Light-webfont.woff +0 -0
  165. data/vendor/assets/fonts/bastion/rcue/OpenSans-LightItalic-webfont.eot +0 -0
  166. data/vendor/assets/fonts/bastion/rcue/OpenSans-LightItalic-webfont.svg +146 -0
  167. data/vendor/assets/fonts/bastion/rcue/OpenSans-LightItalic-webfont.ttf +0 -0
  168. data/vendor/assets/fonts/bastion/rcue/OpenSans-LightItalic-webfont.woff +0 -0
  169. data/vendor/assets/fonts/bastion/rcue/OpenSans-Regular-webfont.eot +0 -0
  170. data/vendor/assets/fonts/bastion/rcue/OpenSans-Regular-webfont.svg +146 -0
  171. data/vendor/assets/fonts/bastion/rcue/OpenSans-Regular-webfont.ttf +0 -0
  172. data/vendor/assets/fonts/bastion/rcue/OpenSans-Regular-webfont.woff +0 -0
  173. data/vendor/assets/fonts/bastion/rcue/OpenSans-Semibold-webfont.eot +0 -0
  174. data/vendor/assets/fonts/bastion/rcue/OpenSans-Semibold-webfont.svg +146 -0
  175. data/vendor/assets/fonts/bastion/rcue/OpenSans-Semibold-webfont.ttf +0 -0
  176. data/vendor/assets/fonts/bastion/rcue/OpenSans-Semibold-webfont.woff +0 -0
  177. data/vendor/assets/fonts/bastion/rcue/OpenSans-SemiboldItalic-webfont.eot +0 -0
  178. data/vendor/assets/fonts/bastion/rcue/OpenSans-SemiboldItalic-webfont.svg +146 -0
  179. data/vendor/assets/fonts/bastion/rcue/OpenSans-SemiboldItalic-webfont.ttf +0 -0
  180. data/vendor/assets/fonts/bastion/rcue/OpenSans-SemiboldItalic-webfont.woff +0 -0
  181. data/vendor/assets/fonts/bastion/rcue/Overpass-Bold-webfont.eot +0 -0
  182. data/vendor/assets/fonts/bastion/rcue/Overpass-Bold-webfont.svg +454 -0
  183. data/vendor/assets/fonts/bastion/rcue/Overpass-Bold-webfont.ttf +0 -0
  184. data/vendor/assets/fonts/bastion/rcue/Overpass-Bold-webfont.woff +0 -0
  185. data/vendor/assets/fonts/bastion/rcue/Overpass-Regular-webfont.eot +0 -0
  186. data/vendor/assets/fonts/bastion/rcue/Overpass-Regular-webfont.svg +454 -0
  187. data/vendor/assets/fonts/bastion/rcue/Overpass-Regular-webfont.ttf +0 -0
  188. data/vendor/assets/fonts/bastion/rcue/Overpass-Regular-webfont.woff +0 -0
  189. data/vendor/assets/javascripts/bastion/alchemy/alchemy.js +20 -0
  190. data/vendor/assets/javascripts/bastion/angular-animate/angular-animate.js +1226 -0
  191. data/vendor/assets/javascripts/bastion/angular-blocks/angular-blocks.js +79 -0
  192. data/vendor/assets/javascripts/bastion/angular-bootstrap/ui-bootstrap-tpls.js +3677 -0
  193. data/vendor/assets/javascripts/bastion/angular-bootstrap/ui-bootstrap.js +3427 -0
  194. data/vendor/assets/javascripts/bastion/angular-gettext/angular-gettext.js +345 -0
  195. data/vendor/assets/javascripts/bastion/angular-resource/angular-resource.js +594 -0
  196. data/vendor/assets/javascripts/bastion/angular-route/angular-route.js +920 -0
  197. data/vendor/assets/javascripts/bastion/angular-sanitize/angular-sanitize.js +622 -0
  198. data/vendor/assets/javascripts/bastion/angular-ui-bootstrap/datepicker.js +447 -0
  199. data/vendor/assets/javascripts/bastion/angular-ui-bootstrap/timepicker.js +232 -0
  200. data/vendor/assets/javascripts/bastion/angular-ui-router/angular-ui-router.js +3223 -0
  201. data/vendor/assets/javascripts/bastion/angular-uuid4/angular-uuid4.js +21 -0
  202. data/vendor/assets/javascripts/bastion/angular/angular.js +20560 -0
  203. data/vendor/assets/javascripts/bastion/es5-shim/es5-shim.js +1216 -0
  204. data/vendor/assets/javascripts/bastion/json3/json3.js +861 -0
  205. data/vendor/assets/javascripts/bastion/ngUpload/ng-upload.js +205 -0
  206. data/vendor/assets/javascripts/bastion/underscore/underscore.js +1276 -0
  207. data/vendor/assets/stylesheets/bastion/alchemy/_colors.scss +99 -0
  208. data/vendor/assets/stylesheets/bastion/alchemy/_media_object.scss +22 -0
  209. data/vendor/assets/stylesheets/bastion/alchemy/_mixins.scss +24 -0
  210. data/vendor/assets/stylesheets/bastion/alchemy/_normalize.scss +396 -0
  211. data/vendor/assets/stylesheets/bastion/alchemy/_vars.scss +31 -0
  212. data/vendor/assets/stylesheets/bastion/alchemy/alchemy.scss +8 -0
  213. data/vendor/assets/stylesheets/bastion/bootstrap/alerts.less +67 -0
  214. data/vendor/assets/stylesheets/bastion/bootstrap/badges.less +51 -0
  215. data/vendor/assets/stylesheets/bastion/bootstrap/bootstrap.less +49 -0
  216. data/vendor/assets/stylesheets/bastion/bootstrap/breadcrumbs.less +23 -0
  217. data/vendor/assets/stylesheets/bastion/bootstrap/button-groups.less +227 -0
  218. data/vendor/assets/stylesheets/bastion/bootstrap/buttons.less +155 -0
  219. data/vendor/assets/stylesheets/bastion/bootstrap/carousel.less +232 -0
  220. data/vendor/assets/stylesheets/bastion/bootstrap/close.less +33 -0
  221. data/vendor/assets/stylesheets/bastion/bootstrap/code.less +53 -0
  222. data/vendor/assets/stylesheets/bastion/bootstrap/component-animations.less +29 -0
  223. data/vendor/assets/stylesheets/bastion/bootstrap/dropdowns.less +187 -0
  224. data/vendor/assets/stylesheets/bastion/bootstrap/forms.less +375 -0
  225. data/vendor/assets/stylesheets/bastion/bootstrap/glyphicons.less +237 -0
  226. data/vendor/assets/stylesheets/bastion/bootstrap/grid.less +79 -0
  227. data/vendor/assets/stylesheets/bastion/bootstrap/input-groups.less +136 -0
  228. data/vendor/assets/stylesheets/bastion/bootstrap/jumbotron.less +46 -0
  229. data/vendor/assets/stylesheets/bastion/bootstrap/labels.less +64 -0
  230. data/vendor/assets/stylesheets/bastion/bootstrap/list-group.less +88 -0
  231. data/vendor/assets/stylesheets/bastion/bootstrap/media.less +56 -0
  232. data/vendor/assets/stylesheets/bastion/bootstrap/mixins.less +845 -0
  233. data/vendor/assets/stylesheets/bastion/bootstrap/modals.less +129 -0
  234. data/vendor/assets/stylesheets/bastion/bootstrap/navbar.less +612 -0
  235. data/vendor/assets/stylesheets/bastion/bootstrap/navs.less +242 -0
  236. data/vendor/assets/stylesheets/bastion/bootstrap/normalize.less +406 -0
  237. data/vendor/assets/stylesheets/bastion/bootstrap/pager.less +55 -0
  238. data/vendor/assets/stylesheets/bastion/bootstrap/pagination.less +85 -0
  239. data/vendor/assets/stylesheets/bastion/bootstrap/panels.less +182 -0
  240. data/vendor/assets/stylesheets/bastion/bootstrap/popovers.less +133 -0
  241. data/vendor/assets/stylesheets/bastion/bootstrap/print.less +105 -0
  242. data/vendor/assets/stylesheets/bastion/bootstrap/progress-bars.less +80 -0
  243. data/vendor/assets/stylesheets/bastion/bootstrap/responsive-utilities.less +209 -0
  244. data/vendor/assets/stylesheets/bastion/bootstrap/scaffolding.less +119 -0
  245. data/vendor/assets/stylesheets/bastion/bootstrap/tables.less +231 -0
  246. data/vendor/assets/stylesheets/bastion/bootstrap/theme.less +247 -0
  247. data/vendor/assets/stylesheets/bastion/bootstrap/thumbnails.less +36 -0
  248. data/vendor/assets/stylesheets/bastion/bootstrap/tooltip.less +95 -0
  249. data/vendor/assets/stylesheets/bastion/bootstrap/type.less +281 -0
  250. data/vendor/assets/stylesheets/bastion/bootstrap/utilities.less +56 -0
  251. data/vendor/assets/stylesheets/bastion/bootstrap/variables.less +642 -0
  252. data/vendor/assets/stylesheets/bastion/bootstrap/wells.less +29 -0
  253. data/vendor/assets/stylesheets/bastion/font-awesome/less/bootstrap.less +84 -0
  254. data/vendor/assets/stylesheets/bastion/font-awesome/less/core.less +129 -0
  255. data/vendor/assets/stylesheets/bastion/font-awesome/less/extras.less +93 -0
  256. data/vendor/assets/stylesheets/bastion/font-awesome/less/font-awesome-ie7.less +1953 -0
  257. data/vendor/assets/stylesheets/bastion/font-awesome/less/font-awesome.less +33 -0
  258. data/vendor/assets/stylesheets/bastion/font-awesome/less/icons.less +381 -0
  259. data/vendor/assets/stylesheets/bastion/font-awesome/less/mixins.less +48 -0
  260. data/vendor/assets/stylesheets/bastion/font-awesome/less/path.less +14 -0
  261. data/vendor/assets/stylesheets/bastion/font-awesome/less/variables.less +735 -0
  262. data/vendor/assets/stylesheets/bastion/font-awesome/scss/_bootstrap.scss +84 -0
  263. data/vendor/assets/stylesheets/bastion/font-awesome/scss/_core.scss +129 -0
  264. data/vendor/assets/stylesheets/bastion/font-awesome/scss/_extras.scss +93 -0
  265. data/vendor/assets/stylesheets/bastion/font-awesome/scss/_icons.scss +381 -0
  266. data/vendor/assets/stylesheets/bastion/font-awesome/scss/_mixins.scss +48 -0
  267. data/vendor/assets/stylesheets/bastion/font-awesome/scss/_path.scss +14 -0
  268. data/vendor/assets/stylesheets/bastion/font-awesome/scss/_variables.scss +734 -0
  269. data/vendor/assets/stylesheets/bastion/font-awesome/scss/font-awesome-ie7.scss +1953 -0
  270. data/vendor/assets/stylesheets/bastion/font-awesome/scss/font-awesome.scss +33 -0
  271. data/vendor/assets/stylesheets/bastion/rcue/buttons.less +44 -0
  272. data/vendor/assets/stylesheets/bastion/rcue/fonts.less +52 -0
  273. data/vendor/assets/stylesheets/bastion/rcue/forms.less +19 -0
  274. data/vendor/assets/stylesheets/bastion/rcue/mixins.less +50 -0
  275. data/vendor/assets/stylesheets/bastion/rcue/navbar.less +481 -0
  276. data/vendor/assets/stylesheets/bastion/rcue/rcue.less +15 -0
  277. data/vendor/assets/stylesheets/bastion/rcue/variables.less +47 -0
  278. metadata +376 -0
@@ -0,0 +1,68 @@
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
+ describe('Directive: alchContainerScroll', function() {
16
+ var scope,
17
+ compile,
18
+ window,
19
+ tableElement;
20
+
21
+ beforeEach(module('alchemy'));
22
+
23
+ beforeEach(inject(function(_$compile_, _$rootScope_, _$window_) {
24
+ compile = _$compile_;
25
+ scope = _$rootScope_;
26
+ window = _$window_;
27
+ }));
28
+
29
+ beforeEach(function() {
30
+ tableElement = angular.element(
31
+ '<div alch-container-scroll control-width="table">' +
32
+ '<table>' +
33
+ '<thead>' +
34
+ '<tr><th>Column 1</th></tr>' +
35
+ '</thead>' +
36
+ '<tbody>' +
37
+ '<tr>' +
38
+ '<td>Row 1</td>' +
39
+ '</tr>' +
40
+ '</tbody>' +
41
+ '</table>' +
42
+ '</div>');
43
+
44
+ compile(tableElement)(scope);
45
+ scope.$digest();
46
+ });
47
+
48
+ it("should adjust the table width on window resize", function() {
49
+ var table = tableElement.find('table'),
50
+ tableWidth = table.width(),
51
+ windowElement = angular.element(window);
52
+
53
+ windowElement.width('300px');
54
+ windowElement.trigger('resize');
55
+
56
+ expect(table.width()).toEqual(windowElement.width());
57
+ });
58
+
59
+ it("should adjust the table height on window resize", function() {
60
+ var table = tableElement.find('table'),
61
+ windowElement = angular.element(window);
62
+
63
+ windowElement.height('100px');
64
+ windowElement.trigger('resize');
65
+
66
+ expect(tableElement.height()).toEqual(windowElement.height() - tableElement.offset().top);
67
+ });
68
+ });
@@ -0,0 +1,113 @@
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
+ describe('Directive: alchDropdown', function() {
15
+ var scope,
16
+ compile,
17
+ testItems,
18
+ element,
19
+ elementScope;
20
+
21
+ beforeEach(module(
22
+ 'alchemy',
23
+ 'incubator/views/alch-dropdown.html',
24
+ 'incubator/views/alch-flyout.html'
25
+ ));
26
+
27
+ beforeEach(inject(function(_$compile_, _$rootScope_) {
28
+ compile = _$compile_;
29
+ scope = _$rootScope_;
30
+ }));
31
+
32
+ beforeEach(function() {
33
+ testItems = [
34
+ {url: 'http://redhat.com', display: 'Red Hat'},
35
+ {url: 'http://google.com', display: 'Google'},
36
+ {display: 'Projects', type: 'flyout', items: [
37
+ {url: 'http://katello.org', display: 'Katello'},
38
+ {url: 'http://theforeman.org', display: 'Foreman'}
39
+ ]}
40
+ ];
41
+ scope.items = testItems;
42
+
43
+ element = angular.element('<ul alch-dropdown="items"></ul>');
44
+ compile(element)(scope);
45
+ scope.$digest();
46
+
47
+ elementScope = element.isolateScope();
48
+ });
49
+
50
+ it("should display a .dropdown <ul>", function() {
51
+ expect(element.is('ul')).toBe(true);
52
+ expect(element.hasClass('dropdown')).toBe(true);
53
+ });
54
+
55
+ it("should display a .dropdown-item <li> for each top level menu item", function() {
56
+ expect(element.find('.dropdown-item').length).toBe(3);
57
+ });
58
+
59
+ it("should display an <li> element for each item (including flyout children).", function() {
60
+ expect(element.find('li').length).toBe(5);
61
+ });
62
+
63
+ describe("should respond to mouse events", function() {
64
+ var target;
65
+
66
+ beforeEach(function() {
67
+ target = angular.element(element.find('li')[1]);
68
+ spyOn(elementScope, 'setHover').andCallThrough();
69
+ });
70
+
71
+ it("by setting the item to active on mouse in", function() {
72
+ target.mouseenter();
73
+
74
+ expect(elementScope.setHover).toHaveBeenCalledWith(testItems[1], true);
75
+ expect(testItems[1].active).toBe(true);
76
+ });
77
+
78
+ it("by setting the item to inactive on mouse out", function() {
79
+ target.mouseleave();
80
+
81
+ expect(elementScope.setHover).toHaveBeenCalledWith(testItems[1], false);
82
+ expect(testItems[1].active).toBe(false);
83
+ });
84
+ });
85
+
86
+ describe("should handle mouse events for child flyouts", function() {
87
+ var target;
88
+
89
+ beforeEach(function() {
90
+ target = angular.element(element.find('li')[2]);
91
+ spyOn(elementScope, 'setHover').andCallThrough();
92
+ });
93
+
94
+ it("by setting the item to active on mouse in", function() {
95
+ target.mouseenter();
96
+
97
+ expect(elementScope.setHover).toHaveBeenCalledWith(testItems[2], true);
98
+ expect(testItems[2].active).toBe(true);
99
+ });
100
+
101
+ it("by setting the item to inactive on mouse out", function() {
102
+ target.mouseenter();
103
+ target.mouseleave();
104
+
105
+ expect(elementScope.setHover).toHaveBeenCalledWith(testItems[2], false);
106
+ });
107
+ });
108
+
109
+ it("provides a way to tell if the direction is right", function() {
110
+ expect(elementScope.isRight('right')).toBe(true);
111
+ expect(elementScope.isRight('left')).toBe(false);
112
+ });
113
+ });
@@ -0,0 +1,320 @@
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
+ describe('Directive: alchEdit', function() {
16
+ var scope,
17
+ compile,
18
+ testItem;
19
+
20
+ beforeEach(module('alchemy',
21
+ 'alchemy.format',
22
+ 'incubator/views/alch-edit.html',
23
+ 'incubator/views/alch-edit-text.html',
24
+ 'incubator/views/alch-edit-textarea.html',
25
+ 'incubator/views/alch-edit-select.html',
26
+ 'incubator/views/alch-edit-add-item.html',
27
+ 'incubator/views/alch-edit-checkbox.html',
28
+ 'incubator/views/alch-edit-add-remove-cancel.html',
29
+ 'incubator/views/alch-edit-multiselect.html',
30
+ 'incubator/views/alch-edit-save-cancel.html'));
31
+
32
+ beforeEach(module(function($provide) {
33
+ testItem = {
34
+ name: 'Test Name',
35
+ taco: 'carnitas',
36
+ add: function () {},
37
+ save: function() {},
38
+ revert: function() {},
39
+ delete: function() {}
40
+ };
41
+
42
+ translate = function() {
43
+ this.$get = function() {
44
+ return function() {};
45
+ };
46
+
47
+ return this;
48
+ };
49
+
50
+ $provide.provider('translate', translate);
51
+ $provide.provider('translateFilter', translate);
52
+ }));
53
+
54
+ beforeEach(inject(function(_$compile_, _$rootScope_) {
55
+ compile = _$compile_;
56
+ scope = _$rootScope_;
57
+ }));
58
+
59
+ describe('alchEdit controller', function() {
60
+ var element,
61
+ editController;
62
+
63
+ beforeEach(inject(function($controller) {
64
+ editController = $controller('AlchEditController', {$scope: scope});
65
+ }));
66
+
67
+ });
68
+
69
+ describe('alchEdit directive', function() {
70
+ var editableElement;
71
+
72
+ beforeEach(function() {
73
+ editableElement = angular.element(
74
+ '<span alch-edit-text="item.name" on-save="item.save()" on-delete="item.delete()" ' +
75
+ 'on-cancel="item.revert()"></span>');
76
+
77
+ scope.item = testItem;
78
+
79
+ compile(editableElement)(scope);
80
+ scope.$digest();
81
+ });
82
+
83
+ it("should show the attribute passed in to the directive", function() {
84
+ var element = editableElement.find('.editable-value');
85
+
86
+ expect(element.text()).toBe(testItem.name);
87
+ });
88
+
89
+ it("should hide the editable value display on click", function() {
90
+ var element = editableElement.find('.editable');
91
+
92
+ expect(element.hasClass('ng-hide')).toBe(false);
93
+ element.trigger('click');
94
+
95
+ expect(element.hasClass('ng-hide')).toBe(true);
96
+ });
97
+
98
+ it("should call the method set to on-save when clicking save button", function() {
99
+ var element = editableElement.find('[ng-click="save()"]');
100
+ spyOn(testItem, 'save');
101
+
102
+ element.trigger('click');
103
+
104
+ expect(testItem.save).toHaveBeenCalled();
105
+ });
106
+
107
+ it("should call the method set to on-delete when clicking delete button", function() {
108
+ var element = editableElement.find('.icon-remove');
109
+ spyOn(testItem, 'delete');
110
+
111
+ element.trigger('click');
112
+
113
+ expect(testItem.delete).toHaveBeenCalled();
114
+ });
115
+
116
+ it("should call the method set to on-cancel when clicking cancel button", function() {
117
+ var element = editableElement.find('[ng-click="cancel()"]');
118
+ spyOn(testItem, 'revert');
119
+
120
+ element.trigger('click');
121
+
122
+ expect(testItem.revert).toHaveBeenCalled();
123
+ });
124
+
125
+ describe("formats displayed values", function() {
126
+ var $filter, elementScope;
127
+ beforeEach(inject(function(_$filter_) {
128
+ $filter = _$filter_;
129
+ elementScope = editableElement.isolateScope();
130
+ }));
131
+
132
+ it("by executing the provided filter on the model", function() {
133
+ elementScope.formatter = 'uppercase';
134
+
135
+ elementScope.model = 'new name';
136
+ elementScope.$digest();
137
+ expect(elementScope.displayValue).toBe('NEW NAME');
138
+ });
139
+
140
+ it("by defaulting to model value if no filter is provided", function() {
141
+ expect(elementScope.displayValue).toBe(elementScope.model);
142
+ });
143
+ });
144
+ });
145
+
146
+ describe('alchEditText directive', function() {
147
+ var editableElement;
148
+
149
+ beforeEach(function() {
150
+ editableElement = angular.element(
151
+ '<span alch-edit-text="item.name"></span>');
152
+
153
+ scope.item = testItem;
154
+
155
+ compile(editableElement)(scope);
156
+ scope.$digest();
157
+ });
158
+
159
+ it("should display an input box on editable click", function() {
160
+ var element = editableElement.find('.editable'),
161
+ input = editableElement.find('input');
162
+ element.trigger('click');
163
+
164
+ expect(input.css('display')).not.toBe('none');
165
+ });
166
+
167
+ });
168
+
169
+ describe('alchEditCheckbox directive', function() {
170
+ var editableElement;
171
+
172
+ beforeEach(function() {
173
+ editableElement = angular.element(
174
+ '<span alch-edit-checkbox="item.name"></span>');
175
+
176
+ scope.item = testItem;
177
+
178
+ compile(editableElement)(scope);
179
+ scope.$digest();
180
+ });
181
+
182
+ it("should display an checkbox on editable click", function() {
183
+ var element = editableElement.find('.editable'),
184
+ input = editableElement.find('input[type=checkbox]');
185
+ element.trigger('click');
186
+
187
+ expect(input.css('display')).not.toBe('none');
188
+ });
189
+
190
+ });
191
+
192
+ describe('alchEditTextarea directive', function() {
193
+ var editableElement;
194
+
195
+ beforeEach(function() {
196
+ editableElement = angular.element(
197
+ '<span alch-edit-textarea="item.name"></span>');
198
+
199
+ scope.item = testItem;
200
+ scope.tacoOptions = ['baja shrimp', 'barbacoa', 'carnitas', 'spicy tinga chicken'];
201
+
202
+ compile(editableElement)(scope);
203
+ scope.$digest();
204
+ });
205
+
206
+ it("should display a textarea on editable click", function() {
207
+ var element = editableElement.find('.editable'),
208
+ input = editableElement.find('textarea');
209
+ element.trigger('click');
210
+
211
+ expect(input.css('display')).not.toBe('none');
212
+ });
213
+
214
+ });
215
+
216
+ describe('alchEditSelect directive', function() {
217
+ var editableElement;
218
+
219
+ beforeEach(function() {
220
+ scope.tacoOptions = [{id: 1, name: 'Carnitas'}, {id: 2, name: 'Tilapia'}];
221
+
222
+ editableElement = angular.element(
223
+ '<span alch-edit-select="item.taco" options="tacoOptions" ></span>'
224
+ );
225
+
226
+ scope.item = testItem;
227
+
228
+ compile(editableElement)(scope);
229
+ scope.$digest();
230
+ });
231
+
232
+ it("should display a select on editable click", function() {
233
+ var element = editableElement.find('.editable'),
234
+ input = editableElement.find('select');
235
+ element.trigger('click');
236
+
237
+ expect(input.css('display')).not.toBe('none');
238
+ });
239
+
240
+ it("should create options", function() {
241
+ var element = editableElement.find('.editable'),
242
+ input = editableElement.find('select');
243
+ expect(input.find('option').length).not.toBe(2);
244
+ });
245
+
246
+ });
247
+
248
+ describe('alchEditMultiselect directive', function() {
249
+ var editableElement,
250
+ directiveScope,
251
+ multiSelectController;
252
+
253
+ beforeEach(function() {
254
+ editableElement = angular.element(
255
+ '<span alch-edit-multiselect="tacos" options="tacoOptions"></span>');
256
+
257
+ scope.tacos = [{id: 2, name: 'barbacoa'}, {id: 3, name: 'carnitas'}];
258
+ scope.tacoOptions = [{id: 1, name: 'baja shrimp'}, {id: 2, name: 'barbacoa'},
259
+ {id: 3, name: 'carnitas'}, {id: 4, name: 'spicy tinga chicken'}];
260
+
261
+ compile(editableElement)(scope);
262
+ scope.$digest();
263
+ directiveScope = editableElement.isolateScope();
264
+ });
265
+
266
+ beforeEach(inject(function($controller) {
267
+ multiSelectController = $controller('AlchEditMultiselectController', {$scope: directiveScope});
268
+ }));
269
+
270
+ it("should display a multi select on editable click", function() {
271
+ var element = editableElement.find('.editable'),
272
+ input = editableElement.find('div');
273
+ element.trigger('click');
274
+ expect(input.css('display')).not.toBe('none');
275
+ });
276
+
277
+ it("automatically selects the previously selected items.", function() {
278
+ directiveScope.edit();
279
+ directiveScope.$digest();
280
+
281
+ expect(directiveScope.options[0].selected).toBe(false);
282
+ expect(directiveScope.options[1].selected).toBe(true);
283
+ expect(directiveScope.options[2].selected).toBe(true);
284
+ expect(directiveScope.options[3].selected).toBe(false);
285
+ });
286
+
287
+ it("allows a way to toggle options", function() {
288
+ directiveScope.toggleOption(scope.tacoOptions[0]);
289
+ expect(scope.tacoOptions[0].selected).toBe(true);
290
+
291
+ directiveScope.toggleOption(scope.tacoOptions[0]);
292
+ expect(scope.tacoOptions[0].selected).toBe(false);
293
+ });
294
+
295
+ });
296
+
297
+ describe('alchEditAddItem directive', function() {
298
+ var editableElement;
299
+
300
+ beforeEach(function() {
301
+ editableElement = angular.element(
302
+ '<span alch-edit-add-item="item.name" on-add="item.add()"></span>');
303
+
304
+ scope.item = testItem;
305
+
306
+ compile(editableElement)(scope);
307
+ scope.$digest();
308
+ });
309
+
310
+ it("should call the method set to on-save when clicking save button", function() {
311
+ var element = editableElement.find('button');
312
+ spyOn(testItem, 'add');
313
+
314
+ element.trigger('click');
315
+
316
+ expect(testItem.add).toHaveBeenCalled();
317
+ });
318
+ });
319
+
320
+ });