lanes 0.0.3 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/Gemfile +1 -1
- data/Rakefile +0 -42
- data/client/{javascripts/component → lanes/components}/Base.coffee +10 -10
- data/client/{javascripts/component → lanes/components}/ChoicesInput.coffee +0 -0
- data/client/lanes/components/enabled.js.erb +3 -0
- data/client/{javascripts/lib/create-namespace.js → lanes/components/enabled.scss.erb} +0 -0
- data/client/{javascripts/component → lanes/components}/grid/Editor.coffee +10 -13
- data/client/{javascripts/component → lanes/components/grid}/Grid.coffee +6 -6
- data/client/{javascripts/component → lanes/components}/grid/PopOverEditor.coffee +3 -3
- data/client/{javascripts/component → lanes/components}/grid/RowEditor.coffee +2 -3
- data/client/lanes/components/grid/config.json +3 -0
- data/client/{stylesheets/compoonents/grid-editors.scss → lanes/components/grid/editors.scss} +0 -0
- data/client/{stylesheets/compoonents → lanes/components/grid}/grid.scss +8 -6
- data/client/lanes/components/grid/index.js +8 -0
- data/client/{javascripts/component → lanes/components}/grid/popover-editor.html +0 -0
- data/client/{javascripts/component → lanes/components}/grid/row-editor.html +0 -0
- data/client/{javascripts/component/grid.html → lanes/components/grid/template.html} +0 -0
- data/client/{javascripts/vendor/dataTables → lanes/components/grid/vendor}/dataTables.bootstrap.js +0 -0
- data/client/{javascripts/vendor/dataTables → lanes/components/grid/vendor}/dataTables.scroller.js +0 -0
- data/client/{javascripts/vendor/dataTables → lanes/components/grid/vendor}/datatables.responsive.js +0 -0
- data/client/{javascripts/vendor/dataTables → lanes/components/grid/vendor}/index.js +0 -0
- data/client/{javascripts/vendor/dataTables → lanes/components/grid/vendor}/jquery.dataTables.js +1 -0
- data/client/lanes/components/index.js +2 -0
- data/client/lanes/components/modal/ModalDialog.coffee +47 -0
- data/client/lanes/components/modal/index.js +2 -0
- data/client/lanes/components/modal/modal.scss +20 -0
- data/client/{javascripts/component/modal.html → lanes/components/modal/template.html} +5 -4
- data/client/{javascripts/component → lanes/components/popover}/PopOver.coffee +4 -4
- data/client/lanes/components/popover/index.js +2 -0
- data/client/lanes/components/popover/popover.scss +1 -0
- data/client/{javascripts/component/popover.html → lanes/components/popover/template.html} +0 -0
- data/client/{javascripts/component → lanes/components/radio_group}/RadioGroup.coffee +1 -1
- data/client/{javascripts/component → lanes/components/record_finder}/RecordFinder.coffee +4 -4
- data/client/{javascripts/component/record-finder → lanes/components/record_finder}/clause.skr +0 -0
- data/client/{javascripts/component/record-finder → lanes/components/record_finder}/dialog.skr +0 -0
- data/client/{javascripts/component/record-finder → lanes/components/record_finder}/field.skr +0 -0
- data/client/lanes/components/select_field/SelectField.coffee +87 -0
- data/client/{screens/user-management → lanes/components/select_field}/index.js +0 -1
- data/client/{javascripts/workspace/tab.html → lanes/components/select_field/select_field.scss} +0 -0
- data/client/{javascripts → lanes}/data/Bootstrap.coffee +0 -0
- data/client/{javascripts → lanes}/data/ChangeSet.coffee +0 -0
- data/client/{javascripts → lanes}/data/Collection.coffee +37 -6
- data/client/{javascripts → lanes}/data/Config.coffee +0 -0
- data/client/{javascripts → lanes}/data/Model.coffee +8 -9
- data/client/{javascripts → lanes}/data/PubSub.coffee +0 -0
- data/client/{javascripts → lanes}/data/Query.coffee +0 -0
- data/client/{javascripts → lanes}/data/Screens.coffee +48 -19
- data/client/{javascripts → lanes}/data/Sync.coffee +5 -5
- data/client/lanes/data/User.coffee +46 -0
- data/client/{javascripts → lanes}/data/index.js +1 -2
- data/client/{javascripts → lanes}/data/mixins/HasCodeField.coffee +1 -1
- data/client/{javascripts → lanes}/extension/Base.coffee +1 -1
- data/client/lanes/extension/EarlyExtensions.js.erb +3 -0
- data/client/{javascripts → lanes}/extension/Extensions.coffee +5 -0
- data/client/{javascripts → lanes}/extension/GlAccounts.coffee +0 -0
- data/client/lanes/extension/LateLoaded.js.erb +3 -0
- data/client/lanes/extension/index.js +5 -0
- data/client/lanes/extension/namespace-available.js.erb +3 -0
- data/client/lanes/index.js +11 -0
- data/client/{javascripts → lanes}/lib/MakeBaseClass.coffee +0 -0
- data/client/{javascripts → lanes}/lib/ModuleSupport.coffee +0 -0
- data/client/{javascripts → lanes}/lib/Templates.coffee +2 -5
- data/{spec/client/foo_spec.js → client/lanes/lib/create-namespace.js} +0 -0
- data/client/{javascripts → lanes}/lib/debounce.coffee +0 -0
- data/client/{javascripts → lanes}/lib/defer.coffee +0 -0
- data/client/{javascripts → lanes}/lib/el.js +0 -0
- data/client/{javascripts → lanes}/lib/index.js +0 -4
- data/client/{javascripts → lanes}/lib/loader.coffee +15 -10
- data/client/{javascripts → lanes}/lib/namespace.coffee +3 -0
- data/client/{javascripts → lanes}/lib/noConflict.coffee +1 -0
- data/client/{javascripts → lanes}/lib/promise_helpers.coffee +0 -0
- data/client/{javascripts → lanes}/lib/results.coffee +0 -0
- data/client/{javascripts → lanes}/lib/utilFunctions.coffee +11 -13
- data/client/{javascripts → lanes}/plugins/ResizeSensor.js +0 -0
- data/client/lanes/plugins/index.js +1 -0
- data/client/{javascripts → lanes}/plugins/overlay.coffee +0 -0
- data/client/{javascripts → lanes}/plugins/trigger.coffee +0 -0
- data/client/lanes/screens/Base.coffee +40 -0
- data/client/{javascripts/view/mixins/ScreenChangeListener.coffee → lanes/screens/ChangeListener.coffee} +2 -2
- data/client/lanes/screens/Router.coffee +6 -0
- data/client/lanes/screens/index.js +1 -0
- data/client/{javascripts/view → lanes/screens}/screen-definitions.js.erb +0 -0
- data/client/{javascripts → lanes}/vendor/bootstrap/affix.js +43 -23
- data/client/{javascripts → lanes}/vendor/bootstrap/alert.js +6 -4
- data/client/{javascripts → lanes}/vendor/bootstrap/button.js +16 -10
- data/client/{javascripts → lanes}/vendor/bootstrap/carousel.js +27 -10
- data/client/{javascripts → lanes}/vendor/bootstrap/collapse.js +69 -28
- data/client/{javascripts → lanes}/vendor/bootstrap/dropdown.js +20 -10
- data/client/{javascripts → lanes}/vendor/bootstrap/modal.js +67 -23
- data/client/{javascripts → lanes}/vendor/bootstrap/popover.js +13 -7
- data/client/{javascripts → lanes}/vendor/bootstrap/scrollspy.js +12 -7
- data/client/{javascripts → lanes}/vendor/bootstrap/tab.js +41 -16
- data/client/{javascripts → lanes}/vendor/bootstrap/tooltip.js +60 -39
- data/client/{javascripts → lanes}/vendor/bootstrap/transition.js +1 -1
- data/client/{javascripts → lanes}/vendor/jquery-2.js +0 -0
- data/client/{javascripts → lanes}/vendor/jquery.tap.js +0 -0
- data/client/{javascripts → lanes}/vendor/magicsuggest.js +0 -0
- data/client/{javascripts → lanes}/vendor/message-bus.js +0 -0
- data/client/lanes/vendor/modern-stack.js +27 -0
- data/client/lanes/vendor/packaged.js +13698 -0
- data/client/{javascripts/view → lanes/views}/Assets.coffee +1 -1
- data/client/lanes/views/Base.coffee +426 -0
- data/client/{javascripts/view → lanes/views}/FormBindings.coffee +1 -1
- data/client/{javascripts/view → lanes/views}/Functions.coffee +1 -1
- data/client/{javascripts/view → lanes/views}/Helpers.coffee +6 -6
- data/client/{javascripts/view → lanes/views}/Keys.coffee +3 -3
- data/client/{javascripts/view → lanes/views}/ModelObserver.coffee +1 -1
- data/client/{javascripts/view → lanes/views}/ModelUpdate.coffee +2 -2
- data/client/{javascripts/view → lanes/views}/PubSub.coffee +3 -3
- data/client/{javascripts/view → lanes/views}/RenderContext.coffee +1 -1
- data/client/{javascripts/view → lanes/views}/SaveNotify.coffee +2 -2
- data/client/{javascripts/view → lanes/views}/TimedHighlight.coffee +1 -1
- data/client/{javascripts/view → lanes/views}/TimedMask.coffee +1 -1
- data/client/{javascripts/view/InterfaceState.coffee → lanes/views/Viewport.coffee} +18 -18
- data/client/{javascripts/view → lanes/views}/_button.html +0 -0
- data/client/{javascripts/view → lanes/views}/_toolbar.html +0 -0
- data/client/lanes/views/index.js +2 -0
- data/client/{javascripts/view → lanes/views}/model-update.html +0 -0
- data/client/{javascripts → lanes}/workspace/ActiveScreensSwitcher.coffee +23 -27
- data/client/{javascripts → lanes}/workspace/Instance.es6 +25 -21
- data/client/{javascripts → lanes}/workspace/Layout.coffee +6 -5
- data/client/{javascripts → lanes}/workspace/Navbar.coffee +2 -2
- data/client/{javascripts → lanes}/workspace/Pages.coffee +9 -13
- data/client/{javascripts → lanes}/workspace/ScreensMenu.coffee +11 -11
- data/client/{javascripts → lanes}/workspace/index.js +7 -5
- data/client/{javascripts → lanes}/workspace/layout.html +0 -0
- data/client/{javascripts → lanes}/workspace/menu.html +0 -0
- data/client/{javascripts → lanes}/workspace/menu_toggle.html +0 -0
- data/client/{javascripts → lanes}/workspace/navbar.html +0 -0
- data/client/{javascripts → lanes}/workspace/pages.html +0 -0
- data/client/{javascripts → lanes}/workspace/screens-menu.html +0 -0
- data/client/{javascripts → lanes}/workspace/screens-switcher.html +0 -0
- data/client/lanes/workspace/tab.html +0 -0
- data/client/lanes/workspace.scss.erb +21 -0
- data/client/{javascripts/lanes-complete.js → lanes-complete.js} +0 -0
- data/client/lanes-workspace.scss.erb +21 -0
- data/client/{stylesheets/compoonents → styles/components}/all.scss +0 -0
- data/client/{stylesheets/compoonents → styles/components}/changes-notification.scss +0 -0
- data/client/{stylesheets/compoonents → styles/components}/record-finder.scss +0 -0
- data/client/{stylesheets/compoonents → styles/components}/suggest.scss +0 -0
- data/client/{stylesheets → styles}/fonts/icomoon.eot +0 -0
- data/client/{stylesheets → styles}/fonts/icomoon.svg +0 -0
- data/client/{stylesheets → styles}/fonts/icomoon.ttf +0 -0
- data/client/{stylesheets → styles}/fonts/icomoon.woff +0 -0
- data/client/{stylesheets → styles}/fonts/selection.json +0 -0
- data/client/{stylesheets/fonts/style.css → styles/fonts/style.scss} +0 -0
- data/client/{stylesheets → styles}/fonts.scss +6 -6
- data/client/{stylesheets → styles}/forms.scss +0 -0
- data/client/{stylesheets → styles}/index.css +0 -0
- data/client/{stylesheets → styles}/keybindings.scss +0 -0
- data/client/{stylesheets → styles}/layout.scss +1 -1
- data/client/{stylesheets → styles}/plugins/all.scss +0 -0
- data/client/{stylesheets → styles}/plugins/overlay.scss +1 -1
- data/client/{stylesheets → styles}/plugins/resize-sensor.scss +0 -0
- data/client/{stylesheets → styles}/screens.scss +0 -0
- data/client/{stylesheets → styles}/tabs.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/_alerts.scss +0 -0
- data/client/styles/vendor/bootstrap/_badges.scss +63 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/_breadcrumbs.scss +0 -0
- data/client/styles/vendor/bootstrap/_button-groups.scss +243 -0
- data/client/styles/vendor/bootstrap/_buttons.scss +160 -0
- data/client/styles/vendor/bootstrap/_carousel.scss +267 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/_close.scss +0 -0
- data/client/styles/vendor/bootstrap/_code.scss +69 -0
- data/client/styles/vendor/bootstrap/_component-animations.scss +38 -0
- data/client/styles/vendor/bootstrap/_dropdowns.scss +213 -0
- data/client/styles/vendor/bootstrap/_forms.scss +548 -0
- data/client/styles/vendor/bootstrap/_glyphicons.scss +234 -0
- data/client/styles/vendor/bootstrap/_grid.scss +84 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/_input-groups.scss +0 -0
- data/client/styles/vendor/bootstrap/_jumbotron.scss +49 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/_labels.scss +0 -0
- data/client/styles/vendor/bootstrap/_list-group.scss +124 -0
- data/client/styles/vendor/bootstrap/_media.scss +47 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/_mixins.scss +0 -0
- data/client/styles/vendor/bootstrap/_modals.scss +148 -0
- data/client/styles/vendor/bootstrap/_navbar.scss +662 -0
- data/client/styles/vendor/bootstrap/_navs.scss +244 -0
- data/client/styles/vendor/bootstrap/_normalize.scss +427 -0
- data/client/styles/vendor/bootstrap/_pager.scss +54 -0
- data/client/styles/vendor/bootstrap/_pagination.scss +88 -0
- data/client/styles/vendor/bootstrap/_panels.scss +261 -0
- data/client/styles/vendor/bootstrap/_popovers.scss +135 -0
- data/client/styles/vendor/bootstrap/_print.scss +107 -0
- data/client/styles/vendor/bootstrap/_progress-bars.scss +87 -0
- data/client/styles/vendor/bootstrap/_responsive-embed.scss +35 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/_responsive-utilities.scss +0 -0
- data/client/styles/vendor/bootstrap/_scaffolding.scss +150 -0
- data/client/styles/vendor/bootstrap/_tables.scss +234 -0
- data/client/styles/vendor/bootstrap/_theme.scss +272 -0
- data/client/styles/vendor/bootstrap/_thumbnails.scss +38 -0
- data/client/styles/vendor/bootstrap/_tooltip.scss +103 -0
- data/client/styles/vendor/bootstrap/_type.scss +298 -0
- data/client/styles/vendor/bootstrap/_utilities.scss +56 -0
- data/client/styles/vendor/bootstrap/_variables.scss +864 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/_wells.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_alerts.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_background-variant.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_border-radius.scss +0 -0
- data/client/styles/vendor/bootstrap/mixins/_buttons.scss +52 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_center-block.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_clearfix.scss +0 -0
- data/client/styles/vendor/bootstrap/mixins/_forms.scss +88 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_gradients.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_grid-framework.scss +0 -0
- data/client/styles/vendor/bootstrap/mixins/_grid.scss +122 -0
- data/client/styles/vendor/bootstrap/mixins/_hide-text.scss +21 -0
- data/client/styles/vendor/bootstrap/mixins/_image.scss +33 -0
- data/client/styles/vendor/bootstrap/mixins/_labels.scss +12 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_list-group.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_nav-divider.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_nav-vertical-align.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_opacity.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_pagination.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_panels.scss +0 -0
- data/client/styles/vendor/bootstrap/mixins/_progress-bar.scss +10 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_reset-filter.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_resize.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_responsive-visibility.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_size.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_tab-focus.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_table-row.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_text-emphasis.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap/mixins/_text-overflow.scss +0 -0
- data/client/styles/vendor/bootstrap/mixins/_vendor-prefixes.scss +222 -0
- data/client/styles/vendor/bootstrap/old/_alerts.scss +68 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_badges.scss +0 -0
- data/client/styles/vendor/bootstrap/old/_breadcrumbs.scss +26 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_button-groups.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_buttons.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_carousel.scss +0 -0
- data/client/styles/vendor/bootstrap/old/_close.scss +35 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_code.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_component-animations.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_dropdowns.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_forms.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_glyphicons.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_grid.scss +0 -0
- data/client/styles/vendor/bootstrap/old/_input-groups.scss +166 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_jumbotron.scss +0 -0
- data/client/styles/vendor/bootstrap/old/_labels.scss +66 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_list-group.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_media.scss +0 -0
- data/client/styles/vendor/bootstrap/old/_mixins.scss +39 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_modals.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_navbar.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_navs.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_normalize.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_pager.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_pagination.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_panels.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_popovers.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_print.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_progress-bars.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_responsive-embed.scss +0 -0
- data/client/styles/vendor/bootstrap/old/_responsive-utilities.scss +174 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_scaffolding.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_tables.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_theme.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_thumbnails.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_tooltip.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_type.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_utilities.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/_variables.scss +0 -0
- data/client/styles/vendor/bootstrap/old/_wells.scss +29 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/bootstrap.scss +0 -0
- data/client/styles/vendor/bootstrap/old/mixins/_alerts.scss +14 -0
- data/client/styles/vendor/bootstrap/old/mixins/_background-variant.scss +11 -0
- data/client/styles/vendor/bootstrap/old/mixins/_border-radius.scss +18 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/mixins/_buttons.scss +0 -0
- data/client/styles/vendor/bootstrap/old/mixins/_center-block.scss +7 -0
- data/client/styles/vendor/bootstrap/old/mixins/_clearfix.scss +22 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/mixins/_forms.scss +0 -0
- data/client/styles/vendor/bootstrap/old/mixins/_gradients.scss +58 -0
- data/client/styles/vendor/bootstrap/old/mixins/_grid-framework.scss +81 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/mixins/_grid.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/mixins/_hide-text.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/mixins/_image.scss +0 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/mixins/_labels.scss +0 -0
- data/client/styles/vendor/bootstrap/old/mixins/_list-group.scss +31 -0
- data/client/styles/vendor/bootstrap/old/mixins/_nav-divider.scss +10 -0
- data/client/styles/vendor/bootstrap/old/mixins/_nav-vertical-align.scss +9 -0
- data/client/styles/vendor/bootstrap/old/mixins/_opacity.scss +8 -0
- data/client/styles/vendor/bootstrap/old/mixins/_pagination.scss +23 -0
- data/client/styles/vendor/bootstrap/old/mixins/_panels.scss +24 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/mixins/_progress-bar.scss +0 -0
- data/client/styles/vendor/bootstrap/old/mixins/_reset-filter.scss +8 -0
- data/client/styles/vendor/bootstrap/old/mixins/_resize.scss +6 -0
- data/client/styles/vendor/bootstrap/old/mixins/_responsive-visibility.scss +21 -0
- data/client/styles/vendor/bootstrap/old/mixins/_size.scss +10 -0
- data/client/styles/vendor/bootstrap/old/mixins/_tab-focus.scss +9 -0
- data/client/styles/vendor/bootstrap/old/mixins/_table-row.scss +28 -0
- data/client/styles/vendor/bootstrap/old/mixins/_text-emphasis.scss +11 -0
- data/client/styles/vendor/bootstrap/old/mixins/_text-overflow.scss +8 -0
- data/client/{stylesheets/vendor/bootstrap → styles/vendor/bootstrap/old}/mixins/_vendor-prefixes.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap-custom-grid.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap-custom-modals.scss +0 -0
- data/client/{stylesheets → styles}/vendor/bootstrap.scss +14 -9
- data/client/{stylesheets → styles}/vendor/dataTables.scss +0 -0
- data/lanes.gemspec +5 -1
- data/lib/lanes/api/controller.rb +47 -6
- data/lib/lanes/api/helper_methods.rb +2 -10
- data/lib/lanes/api/javascript_processor.rb +17 -7
- data/lib/lanes/api/null_authentication_provider.rb +33 -0
- data/lib/lanes/api/request_wrapper.rb +49 -28
- data/lib/lanes/api/root.rb +12 -30
- data/lib/lanes/api/routing.rb +37 -0
- data/lib/lanes/api/sprockets_compressor.rb +35 -0
- data/lib/lanes/api/sprockets_extension.rb +69 -0
- data/lib/lanes/api/test_specs.rb +13 -9
- data/lib/lanes/api.rb +2 -18
- data/lib/lanes/cli.rb +22 -2
- data/lib/lanes/command/app.rb +49 -0
- data/lib/lanes/command/client_model_update.rb +65 -0
- data/lib/lanes/command/console.rb +20 -0
- data/lib/lanes/command/db.rb +33 -0
- data/lib/lanes/command/db.usage +1 -0
- data/lib/lanes/command/generate.rb +21 -0
- data/lib/lanes/command/generate_model.rb +105 -0
- data/lib/lanes/command/generate_model.usage +45 -0
- data/lib/lanes/command/generate_screen.rb +31 -0
- data/lib/lanes/command/generate_screen.usage +11 -0
- data/lib/lanes/command/generate_view.rb +22 -0
- data/lib/lanes/command/generate_view.usage +13 -0
- data/lib/lanes/command/model_attribute.rb +188 -0
- data/lib/lanes/command/named_command.rb +27 -0
- data/lib/lanes/command/server.rb +19 -0
- data/lib/lanes/command/server.usage +3 -0
- data/lib/lanes/command/templates/Gemfile +10 -0
- data/lib/lanes/{generators/app → command/templates}/Guardfile +0 -0
- data/lib/lanes/command/templates/Rakefile +2 -0
- data/lib/lanes/command/templates/client/Extension.coffee +5 -0
- data/lib/lanes/command/templates/client/components/.gitkeep +0 -0
- data/lib/lanes/command/templates/client/components/Component.coffee +1 -0
- data/lib/lanes/command/templates/client/data/Model.coffee +24 -0
- data/lib/lanes/command/templates/client/namespace-extension.js +17 -0
- data/lib/lanes/command/templates/client/screens/Screen.coffee +9 -0
- data/lib/lanes/command/templates/client/screens/index.js +5 -0
- data/lib/lanes/command/templates/client/screens/layout.html +3 -0
- data/lib/lanes/command/templates/client/screens/styles.scss +9 -0
- data/lib/lanes/command/templates/client/styles/styles.scss +1 -0
- data/lib/lanes/command/templates/client/views/.gitkeep +0 -0
- data/lib/lanes/command/templates/client/views/View.coffee +9 -0
- data/lib/lanes/command/templates/client/views/template.html +3 -0
- data/lib/lanes/{generators/app → command/templates}/config/database.yml +0 -0
- data/lib/lanes/command/templates/config/lanes.rb +7 -0
- data/lib/lanes/command/templates/config/routes.rb +2 -0
- data/lib/lanes/{generators/app → command/templates}/config.ru +1 -0
- data/lib/lanes/command/templates/db/create_table_migration.rb +19 -0
- data/lib/lanes/command/templates/gitignore +1 -0
- data/lib/lanes/command/templates/lib/namespace/extension.rb +13 -0
- data/lib/lanes/command/templates/lib/namespace/model.rb +7 -0
- data/lib/lanes/command/templates/lib/namespace/screen.rb +17 -0
- data/lib/lanes/command/templates/lib/namespace/version.rb +3 -0
- data/lib/lanes/command/templates/lib/namespace.rb +12 -0
- data/lib/lanes/command/templates/spec/client/data/ModelSpec.coffee +5 -0
- data/lib/lanes/command/templates/spec/client/views/ViewSpec.coffee +5 -0
- data/lib/lanes/command/templates/spec/fixtures/namespace/model.yml +16 -0
- data/lib/lanes/command/templates/spec/namespace/model_spec.rb +10 -0
- data/lib/lanes/command/templates/spec/spec_helper.rb +15 -0
- data/lib/lanes/command/update.rb +13 -0
- data/lib/lanes/command/update_model.rb +125 -0
- data/lib/lanes/command/update_model.usage +2 -0
- data/lib/lanes/command.rb +37 -0
- data/lib/lanes/components.rb +45 -0
- data/lib/lanes/concerns/set_attribute_data.rb +2 -2
- data/lib/lanes/configuration.rb +3 -3
- data/lib/lanes/db.rb +5 -39
- data/lib/lanes/extension.rb +64 -19
- data/lib/lanes/guard_tasks.rb +7 -5
- data/lib/lanes/rake_tasks.rb +47 -0
- data/lib/lanes/screens.rb +1 -48
- data/{spec → lib/lanes}/spec_helper.rb +0 -0
- data/lib/lanes/version.rb +1 -1
- data/lib/lanes.rb +1 -3
- data/npm-build/compile.coffee +1 -1
- data/npm-build/package.json +5 -5
- data/npm-build/template.js +13 -13
- data/spec/api/javascript_processor_spec.rb +1 -1
- data/spec/client/view/BaseSpec.coffee +166 -0
- data/spec/helpers/jasmine-jquery.js +813 -0
- data/spec/helpers/jasmine-matchers.js +1586 -0
- data/tasks/migrations.rake +1 -1
- data/views/index.erb +9 -13
- metadata +419 -268
- data/client/javascripts/component/ModalDialog.coffee +0 -44
- data/client/javascripts/component/SelectField.coffee +0 -43
- data/client/javascripts/component/TaggedField.coffee +0 -27
- data/client/javascripts/component/index.js +0 -5
- data/client/javascripts/data/Roles.coffee +0 -91
- data/client/javascripts/data/User.coffee +0 -70
- data/client/javascripts/extension/index.js +0 -6
- data/client/javascripts/extension/load.js.erb +0 -3
- data/client/javascripts/lanes-workspace.js +0 -1
- data/client/javascripts/lib/underscore.inflection.js +0 -210
- data/client/javascripts/plugins/index.js +0 -4
- data/client/javascripts/vendor/modern-stack.js +0 -14
- data/client/javascripts/vendor/packaged.js +0 -13769
- data/client/javascripts/view/Base.coffee +0 -231
- data/client/javascripts/view/Screen.coffee +0 -30
- data/client/javascripts/view/index.js +0 -10
- data/client/javascripts/workspace/LoginDialog.coffee +0 -33
- data/client/javascripts/workspace/login-dialog.html +0 -16
- data/client/screens/user-management/UserEditScreen.coffee +0 -21
- data/client/screens/user-management/UserManagement.coffee +0 -24
- data/client/screens/user-management/grid-popover-editor.html +0 -33
- data/client/screens/user-management/index.css +0 -4
- data/client/screens/user-management/user-management-styles.scss +0 -7
- data/client/screens/user-management/user-management.html +0 -8
- data/client/stylesheets/compoonents/modal-dialog.scss +0 -23
- data/client/stylesheets/lanes-workspace.scss +0 -17
- data/config/puma.rb +0 -7
- data/db/seed.rb +0 -37
- data/foo/Gemfile +0 -5
- data/foo/Guardfile +0 -13
- data/foo/foo/Gemfile +0 -5
- data/foo/foo/lib/foo.rb +0 -7
- data/foo/lib/foo/version.rb +0 -3
- data/foo/lib/foo.rb +0 -8
- data/lib/lanes/access/locked_fields.rb +0 -43
- data/lib/lanes/access/role.rb +0 -58
- data/lib/lanes/access/role_collection.rb +0 -75
- data/lib/lanes/access/roles/administrator.rb +0 -25
- data/lib/lanes/access/roles/support.rb +0 -13
- data/lib/lanes/access/user_maint_screen.rb +0 -32
- data/lib/lanes/access.rb +0 -50
- data/lib/lanes/api/asset_pipeline.rb +0 -59
- data/lib/lanes/api/authentication_helper.rb +0 -21
- data/lib/lanes/api/authentication_provider.rb +0 -45
- data/lib/lanes/api/default_routes.rb +0 -35
- data/lib/lanes/api/skr_templates.rb +0 -60
- data/lib/lanes/concerns/track_modifications.rb +0 -51
- data/lib/lanes/db/seed.rb +0 -27
- data/lib/lanes/generators/app/Gemfile +0 -5
- data/lib/lanes/generators/app/Rakefile +0 -9
- data/lib/lanes/generators/app/lib/main_class/version.rb +0 -3
- data/lib/lanes/generators/app/lib/main_class.rb +0 -8
- data/lib/lanes/generators/app.rb +0 -36
- data/lib/lanes/user.rb +0 -127
- data/spec/client/component/ChoicesInputSpec.coffee +0 -12
- data/spec/client/component/foo_spec.coffee +0 -4
- data/spec/client/support/jasmine.yml +0 -128
- data/spec/client/support/jasmine_helper.rb +0 -15
- data/spec/helpers/SpecHelper.js +0 -18
@@ -0,0 +1,813 @@
|
|
1
|
+
/*!
|
2
|
+
Jasmine-jQuery: a set of jQuery helpers for Jasmine tests.
|
3
|
+
|
4
|
+
Version 2.0.5
|
5
|
+
|
6
|
+
https://github.com/velesin/jasmine-jquery
|
7
|
+
|
8
|
+
Copyright (c) 2010-2014 Wojciech Zawistowski, Travis Jeffery
|
9
|
+
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
11
|
+
a copy of this software and associated documentation files (the
|
12
|
+
"Software"), to deal in the Software without restriction, including
|
13
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
14
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
15
|
+
permit persons to whom the Software is furnished to do so, subject to
|
16
|
+
the following conditions:
|
17
|
+
|
18
|
+
The above copyright notice and this permission notice shall be
|
19
|
+
included in all copies or substantial portions of the Software.
|
20
|
+
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
22
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
23
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
24
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
25
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
26
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
27
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
28
|
+
*/
|
29
|
+
|
30
|
+
+function (window, jasmine, $) { "use strict";
|
31
|
+
|
32
|
+
jasmine.spiedEventsKey = function (selector, eventName) {
|
33
|
+
return [$(selector).selector, eventName].toString()
|
34
|
+
}
|
35
|
+
|
36
|
+
jasmine.getFixtures = function () {
|
37
|
+
return jasmine.currentFixtures_ = jasmine.currentFixtures_ || new jasmine.Fixtures()
|
38
|
+
}
|
39
|
+
|
40
|
+
jasmine.getStyleFixtures = function () {
|
41
|
+
return jasmine.currentStyleFixtures_ = jasmine.currentStyleFixtures_ || new jasmine.StyleFixtures()
|
42
|
+
}
|
43
|
+
|
44
|
+
jasmine.Fixtures = function () {
|
45
|
+
this.containerId = 'jasmine-fixtures'
|
46
|
+
this.fixturesCache_ = {}
|
47
|
+
this.fixturesPath = 'spec/javascripts/fixtures'
|
48
|
+
}
|
49
|
+
|
50
|
+
jasmine.Fixtures.prototype.set = function (html) {
|
51
|
+
this.cleanUp()
|
52
|
+
return this.createContainer_(html)
|
53
|
+
}
|
54
|
+
|
55
|
+
jasmine.Fixtures.prototype.appendSet= function (html) {
|
56
|
+
this.addToContainer_(html)
|
57
|
+
}
|
58
|
+
|
59
|
+
jasmine.Fixtures.prototype.preload = function () {
|
60
|
+
this.read.apply(this, arguments)
|
61
|
+
}
|
62
|
+
|
63
|
+
jasmine.Fixtures.prototype.load = function () {
|
64
|
+
this.cleanUp()
|
65
|
+
this.createContainer_(this.read.apply(this, arguments))
|
66
|
+
}
|
67
|
+
|
68
|
+
jasmine.Fixtures.prototype.appendLoad = function () {
|
69
|
+
this.addToContainer_(this.read.apply(this, arguments))
|
70
|
+
}
|
71
|
+
|
72
|
+
jasmine.Fixtures.prototype.read = function () {
|
73
|
+
var htmlChunks = []
|
74
|
+
, fixtureUrls = arguments
|
75
|
+
|
76
|
+
for(var urlCount = fixtureUrls.length, urlIndex = 0; urlIndex < urlCount; urlIndex++) {
|
77
|
+
htmlChunks.push(this.getFixtureHtml_(fixtureUrls[urlIndex]))
|
78
|
+
}
|
79
|
+
|
80
|
+
return htmlChunks.join('')
|
81
|
+
}
|
82
|
+
|
83
|
+
jasmine.Fixtures.prototype.clearCache = function () {
|
84
|
+
this.fixturesCache_ = {}
|
85
|
+
}
|
86
|
+
|
87
|
+
jasmine.Fixtures.prototype.cleanUp = function () {
|
88
|
+
$('#' + this.containerId).remove()
|
89
|
+
}
|
90
|
+
|
91
|
+
jasmine.Fixtures.prototype.sandbox = function (attributes) {
|
92
|
+
var attributesToSet = attributes || {}
|
93
|
+
return $('<div id="sandbox" />').attr(attributesToSet)
|
94
|
+
}
|
95
|
+
|
96
|
+
jasmine.Fixtures.prototype.createContainer_ = function (html) {
|
97
|
+
var container = $('<div>')
|
98
|
+
.attr('id', this.containerId)
|
99
|
+
.html(html)
|
100
|
+
|
101
|
+
$(document.body).append(container)
|
102
|
+
return container
|
103
|
+
}
|
104
|
+
|
105
|
+
jasmine.Fixtures.prototype.addToContainer_ = function (html){
|
106
|
+
var container = $(document.body).find('#'+this.containerId).append(html)
|
107
|
+
|
108
|
+
if (!container.length) {
|
109
|
+
this.createContainer_(html)
|
110
|
+
}
|
111
|
+
}
|
112
|
+
|
113
|
+
jasmine.Fixtures.prototype.getFixtureHtml_ = function (url) {
|
114
|
+
if (typeof this.fixturesCache_[url] === 'undefined') {
|
115
|
+
this.loadFixtureIntoCache_(url)
|
116
|
+
}
|
117
|
+
return this.fixturesCache_[url]
|
118
|
+
}
|
119
|
+
|
120
|
+
jasmine.Fixtures.prototype.loadFixtureIntoCache_ = function (relativeUrl) {
|
121
|
+
var self = this
|
122
|
+
, url = this.makeFixtureUrl_(relativeUrl)
|
123
|
+
, htmlText = ''
|
124
|
+
, request = $.ajax({
|
125
|
+
async: false, // must be synchronous to guarantee that no tests are run before fixture is loaded
|
126
|
+
cache: false,
|
127
|
+
url: url,
|
128
|
+
success: function (data, status, $xhr) {
|
129
|
+
htmlText = $xhr.responseText
|
130
|
+
}
|
131
|
+
}).fail(function ($xhr, status, err) {
|
132
|
+
throw new Error('Fixture could not be loaded: ' + url + ' (status: ' + status + ', message: ' + err.message + ')')
|
133
|
+
})
|
134
|
+
|
135
|
+
var scripts = $($.parseHTML(htmlText, true)).find('script[src]') || [];
|
136
|
+
|
137
|
+
scripts.each(function(){
|
138
|
+
$.ajax({
|
139
|
+
async: false, // must be synchronous to guarantee that no tests are run before fixture is loaded
|
140
|
+
cache: false,
|
141
|
+
dataType: 'script',
|
142
|
+
url: $(this).attr('src'),
|
143
|
+
success: function (data, status, $xhr) {
|
144
|
+
htmlText += '<script>' + $xhr.responseText + '</script>'
|
145
|
+
},
|
146
|
+
error: function ($xhr, status, err) {
|
147
|
+
throw new Error('Script could not be loaded: ' + scriptSrc + ' (status: ' + status + ', message: ' + err.message + ')')
|
148
|
+
}
|
149
|
+
});
|
150
|
+
})
|
151
|
+
|
152
|
+
self.fixturesCache_[relativeUrl] = htmlText;
|
153
|
+
}
|
154
|
+
|
155
|
+
jasmine.Fixtures.prototype.makeFixtureUrl_ = function (relativeUrl){
|
156
|
+
return this.fixturesPath.match('/$') ? this.fixturesPath + relativeUrl : this.fixturesPath + '/' + relativeUrl
|
157
|
+
}
|
158
|
+
|
159
|
+
jasmine.Fixtures.prototype.proxyCallTo_ = function (methodName, passedArguments) {
|
160
|
+
return this[methodName].apply(this, passedArguments)
|
161
|
+
}
|
162
|
+
|
163
|
+
|
164
|
+
jasmine.StyleFixtures = function () {
|
165
|
+
this.fixturesCache_ = {}
|
166
|
+
this.fixturesNodes_ = []
|
167
|
+
this.fixturesPath = 'spec/javascripts/fixtures'
|
168
|
+
}
|
169
|
+
|
170
|
+
jasmine.StyleFixtures.prototype.set = function (css) {
|
171
|
+
this.cleanUp()
|
172
|
+
this.createStyle_(css)
|
173
|
+
}
|
174
|
+
|
175
|
+
jasmine.StyleFixtures.prototype.appendSet = function (css) {
|
176
|
+
this.createStyle_(css)
|
177
|
+
}
|
178
|
+
|
179
|
+
jasmine.StyleFixtures.prototype.preload = function () {
|
180
|
+
this.read_.apply(this, arguments)
|
181
|
+
}
|
182
|
+
|
183
|
+
jasmine.StyleFixtures.prototype.load = function () {
|
184
|
+
this.cleanUp()
|
185
|
+
this.createStyle_(this.read_.apply(this, arguments))
|
186
|
+
}
|
187
|
+
|
188
|
+
jasmine.StyleFixtures.prototype.appendLoad = function () {
|
189
|
+
this.createStyle_(this.read_.apply(this, arguments))
|
190
|
+
}
|
191
|
+
|
192
|
+
jasmine.StyleFixtures.prototype.cleanUp = function () {
|
193
|
+
while(this.fixturesNodes_.length) {
|
194
|
+
this.fixturesNodes_.pop().remove()
|
195
|
+
}
|
196
|
+
}
|
197
|
+
|
198
|
+
jasmine.StyleFixtures.prototype.createStyle_ = function (html) {
|
199
|
+
var styleText = $('<div></div>').html(html).text()
|
200
|
+
, style = $('<style>' + styleText + '</style>')
|
201
|
+
|
202
|
+
this.fixturesNodes_.push(style)
|
203
|
+
$('head').append(style)
|
204
|
+
}
|
205
|
+
|
206
|
+
jasmine.StyleFixtures.prototype.clearCache = jasmine.Fixtures.prototype.clearCache
|
207
|
+
jasmine.StyleFixtures.prototype.read_ = jasmine.Fixtures.prototype.read
|
208
|
+
jasmine.StyleFixtures.prototype.getFixtureHtml_ = jasmine.Fixtures.prototype.getFixtureHtml_
|
209
|
+
jasmine.StyleFixtures.prototype.loadFixtureIntoCache_ = jasmine.Fixtures.prototype.loadFixtureIntoCache_
|
210
|
+
jasmine.StyleFixtures.prototype.makeFixtureUrl_ = jasmine.Fixtures.prototype.makeFixtureUrl_
|
211
|
+
jasmine.StyleFixtures.prototype.proxyCallTo_ = jasmine.Fixtures.prototype.proxyCallTo_
|
212
|
+
|
213
|
+
jasmine.getJSONFixtures = function () {
|
214
|
+
return jasmine.currentJSONFixtures_ = jasmine.currentJSONFixtures_ || new jasmine.JSONFixtures()
|
215
|
+
}
|
216
|
+
|
217
|
+
jasmine.JSONFixtures = function () {
|
218
|
+
this.fixturesCache_ = {}
|
219
|
+
this.fixturesPath = 'spec/javascripts/fixtures/json'
|
220
|
+
}
|
221
|
+
|
222
|
+
jasmine.JSONFixtures.prototype.load = function () {
|
223
|
+
this.read.apply(this, arguments)
|
224
|
+
return this.fixturesCache_
|
225
|
+
}
|
226
|
+
|
227
|
+
jasmine.JSONFixtures.prototype.read = function () {
|
228
|
+
var fixtureUrls = arguments
|
229
|
+
|
230
|
+
for(var urlCount = fixtureUrls.length, urlIndex = 0; urlIndex < urlCount; urlIndex++) {
|
231
|
+
this.getFixtureData_(fixtureUrls[urlIndex])
|
232
|
+
}
|
233
|
+
|
234
|
+
return this.fixturesCache_
|
235
|
+
}
|
236
|
+
|
237
|
+
jasmine.JSONFixtures.prototype.clearCache = function () {
|
238
|
+
this.fixturesCache_ = {}
|
239
|
+
}
|
240
|
+
|
241
|
+
jasmine.JSONFixtures.prototype.getFixtureData_ = function (url) {
|
242
|
+
if (!this.fixturesCache_[url]) this.loadFixtureIntoCache_(url)
|
243
|
+
return this.fixturesCache_[url]
|
244
|
+
}
|
245
|
+
|
246
|
+
jasmine.JSONFixtures.prototype.loadFixtureIntoCache_ = function (relativeUrl) {
|
247
|
+
var self = this
|
248
|
+
, url = this.fixturesPath.match('/$') ? this.fixturesPath + relativeUrl : this.fixturesPath + '/' + relativeUrl
|
249
|
+
|
250
|
+
$.ajax({
|
251
|
+
async: false, // must be synchronous to guarantee that no tests are run before fixture is loaded
|
252
|
+
cache: false,
|
253
|
+
dataType: 'json',
|
254
|
+
url: url,
|
255
|
+
success: function (data) {
|
256
|
+
self.fixturesCache_[relativeUrl] = data
|
257
|
+
},
|
258
|
+
error: function ($xhr, status, err) {
|
259
|
+
throw new Error('JSONFixture could not be loaded: ' + url + ' (status: ' + status + ', message: ' + err.message + ')')
|
260
|
+
}
|
261
|
+
})
|
262
|
+
}
|
263
|
+
|
264
|
+
jasmine.JSONFixtures.prototype.proxyCallTo_ = function (methodName, passedArguments) {
|
265
|
+
return this[methodName].apply(this, passedArguments)
|
266
|
+
}
|
267
|
+
|
268
|
+
jasmine.jQuery = function () {}
|
269
|
+
|
270
|
+
jasmine.jQuery.browserTagCaseIndependentHtml = function (html) {
|
271
|
+
return $('<div/>').append(html).html()
|
272
|
+
}
|
273
|
+
|
274
|
+
jasmine.jQuery.elementToString = function (element) {
|
275
|
+
return $(element).map(function () { return this.outerHTML; }).toArray().join(', ')
|
276
|
+
}
|
277
|
+
|
278
|
+
var data = {
|
279
|
+
spiedEvents: {}
|
280
|
+
, handlers: []
|
281
|
+
}
|
282
|
+
|
283
|
+
jasmine.jQuery.events = {
|
284
|
+
spyOn: function (selector, eventName) {
|
285
|
+
var handler = function (e) {
|
286
|
+
data.spiedEvents[jasmine.spiedEventsKey(selector, eventName)] = jasmine.util.argsToArray(arguments)
|
287
|
+
}
|
288
|
+
|
289
|
+
$(selector).on(eventName, handler)
|
290
|
+
data.handlers.push(handler)
|
291
|
+
|
292
|
+
return {
|
293
|
+
selector: selector,
|
294
|
+
eventName: eventName,
|
295
|
+
handler: handler,
|
296
|
+
reset: function (){
|
297
|
+
delete data.spiedEvents[jasmine.spiedEventsKey(selector, eventName)]
|
298
|
+
}
|
299
|
+
}
|
300
|
+
},
|
301
|
+
|
302
|
+
args: function (selector, eventName) {
|
303
|
+
var actualArgs = data.spiedEvents[jasmine.spiedEventsKey(selector, eventName)]
|
304
|
+
|
305
|
+
if (!actualArgs) {
|
306
|
+
throw "There is no spy for " + eventName + " on " + selector.toString() + ". Make sure to create a spy using spyOnEvent."
|
307
|
+
}
|
308
|
+
|
309
|
+
return actualArgs
|
310
|
+
},
|
311
|
+
|
312
|
+
wasTriggered: function (selector, eventName) {
|
313
|
+
return !!(data.spiedEvents[jasmine.spiedEventsKey(selector, eventName)])
|
314
|
+
},
|
315
|
+
|
316
|
+
wasTriggeredWith: function (selector, eventName, expectedArgs, util, customEqualityTesters) {
|
317
|
+
var actualArgs = jasmine.jQuery.events.args(selector, eventName).slice(1)
|
318
|
+
|
319
|
+
if (Object.prototype.toString.call(expectedArgs) !== '[object Array]')
|
320
|
+
actualArgs = actualArgs[0]
|
321
|
+
|
322
|
+
return util.equals(expectedArgs, actualArgs, customEqualityTesters)
|
323
|
+
},
|
324
|
+
|
325
|
+
wasPrevented: function (selector, eventName) {
|
326
|
+
var args = data.spiedEvents[jasmine.spiedEventsKey(selector, eventName)]
|
327
|
+
, e = args ? args[0] : undefined
|
328
|
+
|
329
|
+
return e && e.isDefaultPrevented()
|
330
|
+
},
|
331
|
+
|
332
|
+
wasStopped: function (selector, eventName) {
|
333
|
+
var args = data.spiedEvents[jasmine.spiedEventsKey(selector, eventName)]
|
334
|
+
, e = args ? args[0] : undefined
|
335
|
+
return e && e.isPropagationStopped()
|
336
|
+
},
|
337
|
+
|
338
|
+
cleanUp: function () {
|
339
|
+
data.spiedEvents = {}
|
340
|
+
data.handlers = []
|
341
|
+
}
|
342
|
+
}
|
343
|
+
|
344
|
+
var hasProperty = function (actualValue, expectedValue) {
|
345
|
+
if (expectedValue === undefined)
|
346
|
+
return actualValue !== undefined
|
347
|
+
|
348
|
+
return actualValue === expectedValue
|
349
|
+
}
|
350
|
+
|
351
|
+
beforeEach(function () {
|
352
|
+
jasmine.addMatchers({
|
353
|
+
toHaveClass: function () {
|
354
|
+
return {
|
355
|
+
compare: function (actual, className) {
|
356
|
+
return { pass: $(actual).hasClass(className) }
|
357
|
+
}
|
358
|
+
}
|
359
|
+
},
|
360
|
+
|
361
|
+
toHaveCss: function () {
|
362
|
+
return {
|
363
|
+
compare: function (actual, css) {
|
364
|
+
for (var prop in css){
|
365
|
+
var value = css[prop]
|
366
|
+
// see issue #147 on gh
|
367
|
+
;if (value === 'auto' && $(actual).get(0).style[prop] === 'auto') continue
|
368
|
+
if ($(actual).css(prop) !== value) return { pass: false }
|
369
|
+
}
|
370
|
+
return { pass: true }
|
371
|
+
}
|
372
|
+
}
|
373
|
+
},
|
374
|
+
|
375
|
+
toBeVisible: function () {
|
376
|
+
return {
|
377
|
+
compare: function (actual) {
|
378
|
+
return { pass: $(actual).is(':visible') }
|
379
|
+
}
|
380
|
+
}
|
381
|
+
},
|
382
|
+
|
383
|
+
toBeHidden: function () {
|
384
|
+
return {
|
385
|
+
compare: function (actual) {
|
386
|
+
return { pass: $(actual).is(':hidden') }
|
387
|
+
}
|
388
|
+
}
|
389
|
+
},
|
390
|
+
|
391
|
+
toBeSelected: function () {
|
392
|
+
return {
|
393
|
+
compare: function (actual) {
|
394
|
+
return { pass: $(actual).is(':selected') }
|
395
|
+
}
|
396
|
+
}
|
397
|
+
},
|
398
|
+
|
399
|
+
toBeChecked: function () {
|
400
|
+
return {
|
401
|
+
compare: function (actual) {
|
402
|
+
return { pass: $(actual).is(':checked') }
|
403
|
+
}
|
404
|
+
}
|
405
|
+
},
|
406
|
+
|
407
|
+
toBeEmpty: function () {
|
408
|
+
return {
|
409
|
+
compare: function (actual) {
|
410
|
+
return { pass: $(actual).is(':empty') }
|
411
|
+
}
|
412
|
+
}
|
413
|
+
},
|
414
|
+
|
415
|
+
toBeInDOM: function () {
|
416
|
+
return {
|
417
|
+
compare: function (actual) {
|
418
|
+
return { pass: $.contains(document.documentElement, $(actual)[0]) }
|
419
|
+
}
|
420
|
+
}
|
421
|
+
},
|
422
|
+
|
423
|
+
toExist: function () {
|
424
|
+
return {
|
425
|
+
compare: function (actual) {
|
426
|
+
return { pass: $(actual).length }
|
427
|
+
}
|
428
|
+
}
|
429
|
+
},
|
430
|
+
|
431
|
+
toHaveLength: function () {
|
432
|
+
return {
|
433
|
+
compare: function (actual, length) {
|
434
|
+
return { pass: $(actual).length === length }
|
435
|
+
}
|
436
|
+
}
|
437
|
+
},
|
438
|
+
|
439
|
+
toHaveAttr: function () {
|
440
|
+
return {
|
441
|
+
compare: function (actual, attributeName, expectedAttributeValue) {
|
442
|
+
return { pass: hasProperty($(actual).attr(attributeName), expectedAttributeValue) }
|
443
|
+
}
|
444
|
+
}
|
445
|
+
},
|
446
|
+
|
447
|
+
toHaveProp: function () {
|
448
|
+
return {
|
449
|
+
compare: function (actual, propertyName, expectedPropertyValue) {
|
450
|
+
return { pass: hasProperty($(actual).prop(propertyName), expectedPropertyValue) }
|
451
|
+
}
|
452
|
+
}
|
453
|
+
},
|
454
|
+
|
455
|
+
toHaveId: function () {
|
456
|
+
return {
|
457
|
+
compare: function (actual, id) {
|
458
|
+
return { pass: $(actual).attr('id') == id }
|
459
|
+
}
|
460
|
+
}
|
461
|
+
},
|
462
|
+
|
463
|
+
toHaveHtml: function () {
|
464
|
+
return {
|
465
|
+
compare: function (actual, html) {
|
466
|
+
return { pass: $(actual).html() == jasmine.jQuery.browserTagCaseIndependentHtml(html) }
|
467
|
+
}
|
468
|
+
}
|
469
|
+
},
|
470
|
+
|
471
|
+
toContainHtml: function () {
|
472
|
+
return {
|
473
|
+
compare: function (actual, html) {
|
474
|
+
var actualHtml = $(actual).html()
|
475
|
+
, expectedHtml = jasmine.jQuery.browserTagCaseIndependentHtml(html)
|
476
|
+
|
477
|
+
return { pass: (actualHtml.indexOf(expectedHtml) >= 0) }
|
478
|
+
}
|
479
|
+
}
|
480
|
+
},
|
481
|
+
|
482
|
+
toHaveText: function () {
|
483
|
+
return {
|
484
|
+
compare: function (actual, text) {
|
485
|
+
var actualText = $(actual).text()
|
486
|
+
var trimmedText = $.trim(actualText)
|
487
|
+
|
488
|
+
if (text && $.isFunction(text.test)) {
|
489
|
+
return { pass: text.test(actualText) || text.test(trimmedText) }
|
490
|
+
} else {
|
491
|
+
return { pass: (actualText == text || trimmedText == text) }
|
492
|
+
}
|
493
|
+
}
|
494
|
+
}
|
495
|
+
},
|
496
|
+
|
497
|
+
toContainText: function () {
|
498
|
+
return {
|
499
|
+
compare: function (actual, text) {
|
500
|
+
var trimmedText = $.trim($(actual).text())
|
501
|
+
|
502
|
+
if (text && $.isFunction(text.test)) {
|
503
|
+
return { pass: text.test(trimmedText) }
|
504
|
+
} else {
|
505
|
+
return { pass: trimmedText.indexOf(text) != -1 }
|
506
|
+
}
|
507
|
+
}
|
508
|
+
}
|
509
|
+
},
|
510
|
+
|
511
|
+
toHaveValue: function () {
|
512
|
+
return {
|
513
|
+
compare: function (actual, value) {
|
514
|
+
return { pass: $(actual).val() === value }
|
515
|
+
}
|
516
|
+
}
|
517
|
+
},
|
518
|
+
|
519
|
+
toHaveData: function () {
|
520
|
+
return {
|
521
|
+
compare: function (actual, key, expectedValue) {
|
522
|
+
return { pass: hasProperty($(actual).data(key), expectedValue) }
|
523
|
+
}
|
524
|
+
}
|
525
|
+
},
|
526
|
+
|
527
|
+
toContainElement: function () {
|
528
|
+
return {
|
529
|
+
compare: function (actual, selector) {
|
530
|
+
if (window.debug) debugger
|
531
|
+
return { pass: $(actual).find(selector).length }
|
532
|
+
}
|
533
|
+
}
|
534
|
+
},
|
535
|
+
|
536
|
+
toBeMatchedBy: function () {
|
537
|
+
return {
|
538
|
+
compare: function (actual, selector) {
|
539
|
+
return { pass: $(actual).filter(selector).length }
|
540
|
+
}
|
541
|
+
}
|
542
|
+
},
|
543
|
+
|
544
|
+
toBeDisabled: function () {
|
545
|
+
return {
|
546
|
+
compare: function (actual, selector) {
|
547
|
+
return { pass: $(actual).is(':disabled') }
|
548
|
+
}
|
549
|
+
}
|
550
|
+
},
|
551
|
+
|
552
|
+
toBeFocused: function (selector) {
|
553
|
+
return {
|
554
|
+
compare: function (actual, selector) {
|
555
|
+
return { pass: $(actual)[0] === $(actual)[0].ownerDocument.activeElement }
|
556
|
+
}
|
557
|
+
}
|
558
|
+
},
|
559
|
+
|
560
|
+
toHandle: function () {
|
561
|
+
return {
|
562
|
+
compare: function (actual, event) {
|
563
|
+
var events = $._data($(actual).get(0), "events")
|
564
|
+
|
565
|
+
if (!events || !event || typeof event !== "string") {
|
566
|
+
return { pass: false }
|
567
|
+
}
|
568
|
+
|
569
|
+
var namespaces = event.split(".")
|
570
|
+
, eventType = namespaces.shift()
|
571
|
+
, sortedNamespaces = namespaces.slice(0).sort()
|
572
|
+
, namespaceRegExp = new RegExp("(^|\\.)" + sortedNamespaces.join("\\.(?:.*\\.)?") + "(\\.|$)")
|
573
|
+
|
574
|
+
if (events[eventType] && namespaces.length) {
|
575
|
+
for (var i = 0; i < events[eventType].length; i++) {
|
576
|
+
var namespace = events[eventType][i].namespace
|
577
|
+
|
578
|
+
if (namespaceRegExp.test(namespace))
|
579
|
+
return { pass: true }
|
580
|
+
}
|
581
|
+
} else {
|
582
|
+
return { pass: (events[eventType] && events[eventType].length > 0) }
|
583
|
+
}
|
584
|
+
|
585
|
+
return { pass: false }
|
586
|
+
}
|
587
|
+
}
|
588
|
+
},
|
589
|
+
|
590
|
+
toHandleWith: function () {
|
591
|
+
return {
|
592
|
+
compare: function (actual, eventName, eventHandler) {
|
593
|
+
var normalizedEventName = eventName.split('.')[0]
|
594
|
+
, stack = $._data($(actual).get(0), "events")[normalizedEventName]
|
595
|
+
|
596
|
+
for (var i = 0; i < stack.length; i++) {
|
597
|
+
if (stack[i].handler == eventHandler) return { pass: true }
|
598
|
+
}
|
599
|
+
|
600
|
+
return { pass: false }
|
601
|
+
}
|
602
|
+
}
|
603
|
+
},
|
604
|
+
|
605
|
+
toHaveBeenTriggeredOn: function () {
|
606
|
+
return {
|
607
|
+
compare: function (actual, selector) {
|
608
|
+
var result = { pass: jasmine.jQuery.events.wasTriggered(selector, actual) }
|
609
|
+
|
610
|
+
result.message = result.pass ?
|
611
|
+
"Expected event " + $(actual) + " not to have been triggered on " + selector :
|
612
|
+
"Expected event " + $(actual) + " to have been triggered on " + selector
|
613
|
+
|
614
|
+
return result;
|
615
|
+
}
|
616
|
+
}
|
617
|
+
},
|
618
|
+
|
619
|
+
toHaveBeenTriggered: function (){
|
620
|
+
return {
|
621
|
+
compare: function (actual) {
|
622
|
+
var eventName = actual.eventName
|
623
|
+
, selector = actual.selector
|
624
|
+
, result = { pass: jasmine.jQuery.events.wasTriggered(selector, eventName) }
|
625
|
+
|
626
|
+
result.message = result.pass ?
|
627
|
+
"Expected event " + eventName + " not to have been triggered on " + selector :
|
628
|
+
"Expected event " + eventName + " to have been triggered on " + selector
|
629
|
+
|
630
|
+
return result
|
631
|
+
}
|
632
|
+
}
|
633
|
+
},
|
634
|
+
|
635
|
+
toHaveBeenTriggeredOnAndWith: function (j$, customEqualityTesters) {
|
636
|
+
return {
|
637
|
+
compare: function (actual, selector, expectedArgs) {
|
638
|
+
var wasTriggered = jasmine.jQuery.events.wasTriggered(selector, actual)
|
639
|
+
, result = { pass: wasTriggered && jasmine.jQuery.events.wasTriggeredWith(selector, actual, expectedArgs, j$, customEqualityTesters) }
|
640
|
+
|
641
|
+
if (wasTriggered) {
|
642
|
+
var actualArgs = jasmine.jQuery.events.args(selector, actual, expectedArgs)[1]
|
643
|
+
result.message = result.pass ?
|
644
|
+
"Expected event " + actual + " not to have been triggered with " + jasmine.pp(expectedArgs) + " but it was triggered with " + jasmine.pp(actualArgs) :
|
645
|
+
"Expected event " + actual + " to have been triggered with " + jasmine.pp(expectedArgs) + " but it was triggered with " + jasmine.pp(actualArgs)
|
646
|
+
|
647
|
+
} else {
|
648
|
+
// todo check on this
|
649
|
+
result.message = result.pass ?
|
650
|
+
"Expected event " + actual + " not to have been triggered on " + selector :
|
651
|
+
"Expected event " + actual + " to have been triggered on " + selector
|
652
|
+
}
|
653
|
+
|
654
|
+
return result
|
655
|
+
}
|
656
|
+
}
|
657
|
+
},
|
658
|
+
|
659
|
+
toHaveBeenPreventedOn: function () {
|
660
|
+
return {
|
661
|
+
compare: function (actual, selector) {
|
662
|
+
var result = { pass: jasmine.jQuery.events.wasPrevented(selector, actual) }
|
663
|
+
|
664
|
+
result.message = result.pass ?
|
665
|
+
"Expected event " + actual + " not to have been prevented on " + selector :
|
666
|
+
"Expected event " + actual + " to have been prevented on " + selector
|
667
|
+
|
668
|
+
return result
|
669
|
+
}
|
670
|
+
}
|
671
|
+
},
|
672
|
+
|
673
|
+
toHaveBeenPrevented: function () {
|
674
|
+
return {
|
675
|
+
compare: function (actual) {
|
676
|
+
var eventName = actual.eventName
|
677
|
+
, selector = actual.selector
|
678
|
+
, result = { pass: jasmine.jQuery.events.wasPrevented(selector, eventName) }
|
679
|
+
|
680
|
+
result.message = result.pass ?
|
681
|
+
"Expected event " + eventName + " not to have been prevented on " + selector :
|
682
|
+
"Expected event " + eventName + " to have been prevented on " + selector
|
683
|
+
|
684
|
+
return result
|
685
|
+
}
|
686
|
+
}
|
687
|
+
},
|
688
|
+
|
689
|
+
toHaveBeenStoppedOn: function () {
|
690
|
+
return {
|
691
|
+
compare: function (actual, selector) {
|
692
|
+
var result = { pass: jasmine.jQuery.events.wasStopped(selector, actual) }
|
693
|
+
|
694
|
+
result.message = result.pass ?
|
695
|
+
"Expected event " + actual + " not to have been stopped on " + selector :
|
696
|
+
"Expected event " + actual + " to have been stopped on " + selector
|
697
|
+
|
698
|
+
return result;
|
699
|
+
}
|
700
|
+
}
|
701
|
+
},
|
702
|
+
|
703
|
+
toHaveBeenStopped: function () {
|
704
|
+
return {
|
705
|
+
compare: function (actual) {
|
706
|
+
var eventName = actual.eventName
|
707
|
+
, selector = actual.selector
|
708
|
+
, result = { pass: jasmine.jQuery.events.wasStopped(selector, eventName) }
|
709
|
+
|
710
|
+
result.message = result.pass ?
|
711
|
+
"Expected event " + eventName + " not to have been stopped on " + selector :
|
712
|
+
"Expected event " + eventName + " to have been stopped on " + selector
|
713
|
+
|
714
|
+
return result
|
715
|
+
}
|
716
|
+
}
|
717
|
+
}
|
718
|
+
})
|
719
|
+
|
720
|
+
jasmine.getEnv().addCustomEqualityTester(function(a, b) {
|
721
|
+
if (a && b) {
|
722
|
+
if (a instanceof $ || jasmine.isDomNode(a)) {
|
723
|
+
var $a = $(a)
|
724
|
+
|
725
|
+
if (b instanceof $)
|
726
|
+
return $a.length == b.length && a.is(b)
|
727
|
+
|
728
|
+
return $a.is(b);
|
729
|
+
}
|
730
|
+
|
731
|
+
if (b instanceof $ || jasmine.isDomNode(b)) {
|
732
|
+
var $b = $(b)
|
733
|
+
|
734
|
+
if (a instanceof $)
|
735
|
+
return a.length == $b.length && $b.is(a)
|
736
|
+
|
737
|
+
return $(b).is(a);
|
738
|
+
}
|
739
|
+
}
|
740
|
+
})
|
741
|
+
|
742
|
+
jasmine.getEnv().addCustomEqualityTester(function (a, b) {
|
743
|
+
if (a instanceof $ && b instanceof $ && a.size() == b.size())
|
744
|
+
return a.is(b)
|
745
|
+
})
|
746
|
+
})
|
747
|
+
|
748
|
+
afterEach(function () {
|
749
|
+
jasmine.getFixtures().cleanUp()
|
750
|
+
jasmine.getStyleFixtures().cleanUp()
|
751
|
+
jasmine.jQuery.events.cleanUp()
|
752
|
+
})
|
753
|
+
|
754
|
+
window.readFixtures = function () {
|
755
|
+
return jasmine.getFixtures().proxyCallTo_('read', arguments)
|
756
|
+
}
|
757
|
+
|
758
|
+
window.preloadFixtures = function () {
|
759
|
+
jasmine.getFixtures().proxyCallTo_('preload', arguments)
|
760
|
+
}
|
761
|
+
|
762
|
+
window.loadFixtures = function () {
|
763
|
+
jasmine.getFixtures().proxyCallTo_('load', arguments)
|
764
|
+
}
|
765
|
+
|
766
|
+
window.appendLoadFixtures = function () {
|
767
|
+
jasmine.getFixtures().proxyCallTo_('appendLoad', arguments)
|
768
|
+
}
|
769
|
+
|
770
|
+
window.setFixtures = function (html) {
|
771
|
+
return jasmine.getFixtures().proxyCallTo_('set', arguments)
|
772
|
+
}
|
773
|
+
|
774
|
+
window.appendSetFixtures = function () {
|
775
|
+
jasmine.getFixtures().proxyCallTo_('appendSet', arguments)
|
776
|
+
}
|
777
|
+
|
778
|
+
window.sandbox = function (attributes) {
|
779
|
+
return jasmine.getFixtures().sandbox(attributes)
|
780
|
+
}
|
781
|
+
|
782
|
+
window.spyOnEvent = function (selector, eventName) {
|
783
|
+
return jasmine.jQuery.events.spyOn(selector, eventName)
|
784
|
+
}
|
785
|
+
|
786
|
+
window.preloadStyleFixtures = function () {
|
787
|
+
jasmine.getStyleFixtures().proxyCallTo_('preload', arguments)
|
788
|
+
}
|
789
|
+
|
790
|
+
window.loadStyleFixtures = function () {
|
791
|
+
jasmine.getStyleFixtures().proxyCallTo_('load', arguments)
|
792
|
+
}
|
793
|
+
|
794
|
+
window.appendLoadStyleFixtures = function () {
|
795
|
+
jasmine.getStyleFixtures().proxyCallTo_('appendLoad', arguments)
|
796
|
+
}
|
797
|
+
|
798
|
+
window.setStyleFixtures = function (html) {
|
799
|
+
jasmine.getStyleFixtures().proxyCallTo_('set', arguments)
|
800
|
+
}
|
801
|
+
|
802
|
+
window.appendSetStyleFixtures = function (html) {
|
803
|
+
jasmine.getStyleFixtures().proxyCallTo_('appendSet', arguments)
|
804
|
+
}
|
805
|
+
|
806
|
+
window.loadJSONFixtures = function () {
|
807
|
+
return jasmine.getJSONFixtures().proxyCallTo_('load', arguments)
|
808
|
+
}
|
809
|
+
|
810
|
+
window.getJSONFixture = function (url) {
|
811
|
+
return jasmine.getJSONFixtures().proxyCallTo_('read', arguments)[url]
|
812
|
+
}
|
813
|
+
}(window, window.jasmine, window.jQuery);
|