lanes 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +19 -0
- data/.jshintrc +3 -0
- data/Gemfile +9 -0
- data/Guardfile +15 -0
- data/LICENSE-MIT.txt +21 -0
- data/README.md +15 -0
- data/Rakefile +74 -0
- data/bin/lanes +5 -0
- data/client/images/ajax-loader.gif +0 -0
- data/client/images/dataTables/Sorting icons.psd +0 -0
- data/client/images/dataTables/back_disabled.png +0 -0
- data/client/images/dataTables/back_enabled.png +0 -0
- data/client/images/dataTables/back_enabled_hover.png +0 -0
- data/client/images/dataTables/favicon.ico +0 -0
- data/client/images/dataTables/forward_disabled.png +0 -0
- data/client/images/dataTables/forward_enabled.png +0 -0
- data/client/images/dataTables/forward_enabled_hover.png +0 -0
- data/client/images/dataTables/loading-background.png +0 -0
- data/client/images/dataTables/sort_asc.png +0 -0
- data/client/images/dataTables/sort_asc_disabled.png +0 -0
- data/client/images/dataTables/sort_both.png +0 -0
- data/client/images/dataTables/sort_desc.png +0 -0
- data/client/images/dataTables/sort_desc_disabled.png +0 -0
- data/client/images/logo-sm.png +0 -0
- data/client/javascripts/component/Base.coffee +39 -0
- data/client/javascripts/component/ChoicesInput.coffee +47 -0
- data/client/javascripts/component/Grid.coffee +199 -0
- data/client/javascripts/component/ModalDialog.coffee +44 -0
- data/client/javascripts/component/PopOver.coffee +52 -0
- data/client/javascripts/component/RadioGroup.coffee +59 -0
- data/client/javascripts/component/RecordFinder.coffee +143 -0
- data/client/javascripts/component/SelectField.coffee +43 -0
- data/client/javascripts/component/TaggedField.coffee +27 -0
- data/client/javascripts/component/grid/Editor.coffee +65 -0
- data/client/javascripts/component/grid/PopOverEditor.coffee +29 -0
- data/client/javascripts/component/grid/RowEditor.coffee +31 -0
- data/client/javascripts/component/grid/popover-editor.html +18 -0
- data/client/javascripts/component/grid/row-editor.html +16 -0
- data/client/javascripts/component/grid.html +4 -0
- data/client/javascripts/component/index.js +5 -0
- data/client/javascripts/component/modal.html +17 -0
- data/client/javascripts/component/popover.html +5 -0
- data/client/javascripts/component/record-finder/clause.skr +35 -0
- data/client/javascripts/component/record-finder/dialog.skr +4 -0
- data/client/javascripts/component/record-finder/field.skr +8 -0
- data/client/javascripts/data/Bootstrap.coffee +8 -0
- data/client/javascripts/data/ChangeSet.coffee +50 -0
- data/client/javascripts/data/Collection.coffee +111 -0
- data/client/javascripts/data/Config.coffee +15 -0
- data/client/javascripts/data/Model.coffee +269 -0
- data/client/javascripts/data/PubSub.coffee +68 -0
- data/client/javascripts/data/Query.coffee +184 -0
- data/client/javascripts/data/Roles.coffee +91 -0
- data/client/javascripts/data/Screens.coffee +157 -0
- data/client/javascripts/data/Sync.coffee +62 -0
- data/client/javascripts/data/User.coffee +70 -0
- data/client/javascripts/data/index.js +7 -0
- data/client/javascripts/data/mixins/HasCodeField.coffee +13 -0
- data/client/javascripts/extension/Base.coffee +9 -0
- data/client/javascripts/extension/Extensions.coffee +17 -0
- data/client/javascripts/extension/GlAccounts.coffee +9 -0
- data/client/javascripts/extension/index.js +6 -0
- data/client/javascripts/extension/load.js.erb +3 -0
- data/client/javascripts/lanes-complete.js +3 -0
- data/client/javascripts/lanes-workspace.js +1 -0
- data/client/javascripts/lib/MakeBaseClass.coffee +55 -0
- data/client/javascripts/lib/ModuleSupport.coffee +22 -0
- data/client/javascripts/lib/Templates.coffee +47 -0
- data/client/javascripts/lib/create-namespace.js +0 -0
- data/client/javascripts/lib/debounce.coffee +15 -0
- data/client/javascripts/lib/defer.coffee +7 -0
- data/client/javascripts/lib/el.js +115 -0
- data/client/javascripts/lib/index.js +9 -0
- data/client/javascripts/lib/loader.coffee +95 -0
- data/client/javascripts/lib/namespace.coffee +9 -0
- data/client/javascripts/lib/noConflict.coffee +14 -0
- data/client/javascripts/lib/promise_helpers.coffee +4 -0
- data/client/javascripts/lib/results.coffee +15 -0
- data/client/javascripts/lib/underscore.inflection.js +210 -0
- data/client/javascripts/lib/utilFunctions.coffee +51 -0
- data/client/javascripts/plugins/ResizeSensor.js +144 -0
- data/client/javascripts/plugins/index.js +4 -0
- data/client/javascripts/plugins/overlay.coffee +41 -0
- data/client/javascripts/plugins/trigger.coffee +15 -0
- data/client/javascripts/vendor/bootstrap/affix.js +142 -0
- data/client/javascripts/vendor/bootstrap/alert.js +92 -0
- data/client/javascripts/vendor/bootstrap/button.js +110 -0
- data/client/javascripts/vendor/bootstrap/carousel.js +223 -0
- data/client/javascripts/vendor/bootstrap/collapse.js +170 -0
- data/client/javascripts/vendor/bootstrap/dropdown.js +151 -0
- data/client/javascripts/vendor/bootstrap/modal.js +280 -0
- data/client/javascripts/vendor/bootstrap/popover.js +113 -0
- data/client/javascripts/vendor/bootstrap/scrollspy.js +170 -0
- data/client/javascripts/vendor/bootstrap/tab.js +128 -0
- data/client/javascripts/vendor/bootstrap/tooltip.js +457 -0
- data/client/javascripts/vendor/bootstrap/transition.js +59 -0
- data/client/javascripts/vendor/dataTables/dataTables.bootstrap.js +156 -0
- data/client/javascripts/vendor/dataTables/dataTables.scroller.js +1185 -0
- data/client/javascripts/vendor/dataTables/datatables.responsive.js +666 -0
- data/client/javascripts/vendor/dataTables/index.js +2 -0
- data/client/javascripts/vendor/dataTables/jquery.dataTables.js +14380 -0
- data/client/javascripts/vendor/jquery-2.js +9190 -0
- data/client/javascripts/vendor/jquery.tap.js +401 -0
- data/client/javascripts/vendor/magicsuggest.js +1565 -0
- data/client/javascripts/vendor/message-bus.js +285 -0
- data/client/javascripts/vendor/modern-stack.js +14 -0
- data/client/javascripts/vendor/packaged.js +13769 -0
- data/client/javascripts/view/Assets.coffee +9 -0
- data/client/javascripts/view/Base.coffee +231 -0
- data/client/javascripts/view/FormBindings.coffee +98 -0
- data/client/javascripts/view/Functions.coffee +13 -0
- data/client/javascripts/view/Helpers.coffee +77 -0
- data/client/javascripts/view/InterfaceState.coffee +88 -0
- data/client/javascripts/view/Keys.coffee +59 -0
- data/client/javascripts/view/ModelObserver.coffee +31 -0
- data/client/javascripts/view/ModelUpdate.coffee +8 -0
- data/client/javascripts/view/PubSub.coffee +29 -0
- data/client/javascripts/view/RenderContext.coffee +32 -0
- data/client/javascripts/view/SaveNotify.coffee +30 -0
- data/client/javascripts/view/Screen.coffee +30 -0
- data/client/javascripts/view/TimedHighlight.coffee +38 -0
- data/client/javascripts/view/TimedMask.coffee +65 -0
- data/client/javascripts/view/_button.html +3 -0
- data/client/javascripts/view/_toolbar.html +27 -0
- data/client/javascripts/view/index.js +10 -0
- data/client/javascripts/view/mixins/ScreenChangeListener.coffee +43 -0
- data/client/javascripts/view/model-update.html +13 -0
- data/client/javascripts/view/screen-definitions.js.erb +7 -0
- data/client/javascripts/workspace/ActiveScreensSwitcher.coffee +117 -0
- data/client/javascripts/workspace/Instance.es6 +60 -0
- data/client/javascripts/workspace/Layout.coffee +18 -0
- data/client/javascripts/workspace/LoginDialog.coffee +33 -0
- data/client/javascripts/workspace/Navbar.coffee +44 -0
- data/client/javascripts/workspace/Pages.coffee +46 -0
- data/client/javascripts/workspace/ScreensMenu.coffee +126 -0
- data/client/javascripts/workspace/index.js +12 -0
- data/client/javascripts/workspace/layout.html +4 -0
- data/client/javascripts/workspace/login-dialog.html +16 -0
- data/client/javascripts/workspace/menu.html +356 -0
- data/client/javascripts/workspace/menu_toggle.html +9 -0
- data/client/javascripts/workspace/navbar.html +19 -0
- data/client/javascripts/workspace/pages.html +6 -0
- data/client/javascripts/workspace/screens-menu.html +11 -0
- data/client/javascripts/workspace/screens-switcher.html +7 -0
- data/client/javascripts/workspace/tab.html +0 -0
- data/client/screens/user-management/UserEditScreen.coffee +21 -0
- data/client/screens/user-management/UserManagement.coffee +24 -0
- data/client/screens/user-management/grid-popover-editor.html +33 -0
- data/client/screens/user-management/index.css +4 -0
- data/client/screens/user-management/index.js +2 -0
- data/client/screens/user-management/user-management-styles.scss +7 -0
- data/client/screens/user-management/user-management.html +8 -0
- data/client/stylesheets/compoonents/all.scss +6 -0
- data/client/stylesheets/compoonents/changes-notification.scss +44 -0
- data/client/stylesheets/compoonents/grid-editors.scss +65 -0
- data/client/stylesheets/compoonents/grid.scss +301 -0
- data/client/stylesheets/compoonents/modal-dialog.scss +23 -0
- data/client/stylesheets/compoonents/record-finder.scss +71 -0
- data/client/stylesheets/compoonents/suggest.scss +266 -0
- data/client/stylesheets/fonts/icomoon.eot +0 -0
- data/client/stylesheets/fonts/icomoon.svg +160 -0
- data/client/stylesheets/fonts/icomoon.ttf +0 -0
- data/client/stylesheets/fonts/icomoon.woff +0 -0
- data/client/stylesheets/fonts/selection.json +3565 -0
- data/client/stylesheets/fonts/style.css +451 -0
- data/client/stylesheets/fonts.scss +38 -0
- data/client/stylesheets/forms.scss +75 -0
- data/client/stylesheets/index.css +4 -0
- data/client/stylesheets/keybindings.scss +6 -0
- data/client/stylesheets/lanes-workspace.scss +17 -0
- data/client/stylesheets/layout.scss +272 -0
- data/client/stylesheets/plugins/all.scss +2 -0
- data/client/stylesheets/plugins/overlay.scss +63 -0
- data/client/stylesheets/plugins/resize-sensor.scss +24 -0
- data/client/stylesheets/screens.scss +66 -0
- data/client/stylesheets/tabs.scss +148 -0
- data/client/stylesheets/vendor/bootstrap/_alerts.scss +68 -0
- data/client/stylesheets/vendor/bootstrap/_badges.scss +57 -0
- data/client/stylesheets/vendor/bootstrap/_breadcrumbs.scss +26 -0
- data/client/stylesheets/vendor/bootstrap/_button-groups.scss +240 -0
- data/client/stylesheets/vendor/bootstrap/_buttons.scss +157 -0
- data/client/stylesheets/vendor/bootstrap/_carousel.scss +243 -0
- data/client/stylesheets/vendor/bootstrap/_close.scss +35 -0
- data/client/stylesheets/vendor/bootstrap/_code.scss +68 -0
- data/client/stylesheets/vendor/bootstrap/_component-animations.scss +35 -0
- data/client/stylesheets/vendor/bootstrap/_dropdowns.scss +215 -0
- data/client/stylesheets/vendor/bootstrap/_forms.scss +538 -0
- data/client/stylesheets/vendor/bootstrap/_glyphicons.scss +237 -0
- data/client/stylesheets/vendor/bootstrap/_grid.scss +84 -0
- data/client/stylesheets/vendor/bootstrap/_input-groups.scss +166 -0
- data/client/stylesheets/vendor/bootstrap/_jumbotron.scss +48 -0
- data/client/stylesheets/vendor/bootstrap/_labels.scss +66 -0
- data/client/stylesheets/vendor/bootstrap/_list-group.scss +132 -0
- data/client/stylesheets/vendor/bootstrap/_media.scss +56 -0
- data/client/stylesheets/vendor/bootstrap/_mixins.scss +39 -0
- data/client/stylesheets/vendor/bootstrap/_modals.scss +150 -0
- data/client/stylesheets/vendor/bootstrap/_navbar.scss +659 -0
- data/client/stylesheets/vendor/bootstrap/_navs.scss +242 -0
- data/client/stylesheets/vendor/bootstrap/_normalize.scss +425 -0
- data/client/stylesheets/vendor/bootstrap/_pager.scss +55 -0
- data/client/stylesheets/vendor/bootstrap/_pagination.scss +88 -0
- data/client/stylesheets/vendor/bootstrap/_panels.scss +243 -0
- data/client/stylesheets/vendor/bootstrap/_popovers.scss +133 -0
- data/client/stylesheets/vendor/bootstrap/_print.scss +101 -0
- data/client/stylesheets/vendor/bootstrap/_progress-bars.scss +105 -0
- data/client/stylesheets/vendor/bootstrap/_responsive-embed.scss +34 -0
- data/client/stylesheets/vendor/bootstrap/_responsive-utilities.scss +174 -0
- data/client/stylesheets/vendor/bootstrap/_scaffolding.scss +150 -0
- data/client/stylesheets/vendor/bootstrap/_tables.scss +233 -0
- data/client/stylesheets/vendor/bootstrap/_theme.scss +258 -0
- data/client/stylesheets/vendor/bootstrap/_thumbnails.scss +38 -0
- data/client/stylesheets/vendor/bootstrap/_tooltip.scss +95 -0
- data/client/stylesheets/vendor/bootstrap/_type.scss +304 -0
- data/client/stylesheets/vendor/bootstrap/_utilities.scss +57 -0
- data/client/stylesheets/vendor/bootstrap/_variables.scss +850 -0
- data/client/stylesheets/vendor/bootstrap/_wells.scss +29 -0
- data/client/stylesheets/vendor/bootstrap/bootstrap.scss +50 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_alerts.scss +14 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_background-variant.scss +11 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_border-radius.scss +18 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_buttons.scss +50 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_center-block.scss +7 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_clearfix.scss +22 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_forms.scss +84 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_gradients.scss +58 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_grid-framework.scss +81 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_grid.scss +122 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_hide-text.scss +21 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_image.scss +34 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_labels.scss +12 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_list-group.scss +31 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_nav-divider.scss +10 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_opacity.scss +8 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_pagination.scss +23 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_panels.scss +24 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_progress-bar.scss +10 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_reset-filter.scss +8 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_resize.scss +6 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_size.scss +10 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_tab-focus.scss +9 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_table-row.scss +28 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_text-emphasis.scss +11 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_text-overflow.scss +8 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_vendor-prefixes.scss +219 -0
- data/client/stylesheets/vendor/bootstrap-custom-grid.scss +85 -0
- data/client/stylesheets/vendor/bootstrap-custom-modals.scss +150 -0
- data/client/stylesheets/vendor/bootstrap.scss +69 -0
- data/client/stylesheets/vendor/dataTables.scss +4 -0
- data/config/database.yml +9 -0
- data/config/puma.rb +7 -0
- data/config.ru +4 -0
- data/db/migrate/20140615031600_create_hip_users.rb +17 -0
- data/db/seed.rb +37 -0
- data/foo/Gemfile +5 -0
- data/foo/Guardfile +13 -0
- data/foo/foo/Gemfile +5 -0
- data/foo/foo/lib/foo.rb +7 -0
- data/foo/lib/foo/version.rb +3 -0
- data/foo/lib/foo.rb +8 -0
- data/lanes.gemspec +54 -0
- data/lib/generators/lanes/migrations/install_generator.rb +42 -0
- data/lib/lanes/access/locked_fields.rb +43 -0
- data/lib/lanes/access/role.rb +58 -0
- data/lib/lanes/access/role_collection.rb +75 -0
- data/lib/lanes/access/roles/administrator.rb +25 -0
- data/lib/lanes/access/roles/support.rb +13 -0
- data/lib/lanes/access/user_maint_screen.rb +32 -0
- data/lib/lanes/access.rb +50 -0
- data/lib/lanes/api/asset_pipeline.rb +59 -0
- data/lib/lanes/api/authentication_helper.rb +21 -0
- data/lib/lanes/api/authentication_provider.rb +45 -0
- data/lib/lanes/api/controller.rb +290 -0
- data/lib/lanes/api/default_routes.rb +35 -0
- data/lib/lanes/api/eco.js +516 -0
- data/lib/lanes/api/error_formatter.rb +37 -0
- data/lib/lanes/api/helper_methods.rb +32 -0
- data/lib/lanes/api/javascript_processor.rb +116 -0
- data/lib/lanes/api/pub_sub.rb +33 -0
- data/lib/lanes/api/request_wrapper.rb +42 -0
- data/lib/lanes/api/root.rb +103 -0
- data/lib/lanes/api/skr_templates.rb +60 -0
- data/lib/lanes/api/test_specs.rb +59 -0
- data/lib/lanes/api/updates.rb +38 -0
- data/lib/lanes/api.rb +27 -0
- data/lib/lanes/cli.rb +13 -0
- data/lib/lanes/concerns/all.rb +16 -0
- data/lib/lanes/concerns/api_path.rb +21 -0
- data/lib/lanes/concerns/association_extensions.rb +85 -0
- data/lib/lanes/concerns/attr_accessor_with_default.rb +62 -0
- data/lib/lanes/concerns/code_identifier.rb +43 -0
- data/lib/lanes/concerns/export_associations.rb +52 -0
- data/lib/lanes/concerns/export_join_tables.rb +39 -0
- data/lib/lanes/concerns/export_methods.rb +104 -0
- data/lib/lanes/concerns/export_scope.rb +66 -0
- data/lib/lanes/concerns/exported_limit_evaluator.rb +17 -0
- data/lib/lanes/concerns/immutable_model.rb +32 -0
- data/lib/lanes/concerns/locked_fields.rb +84 -0
- data/lib/lanes/concerns/pub_sub.rb +105 -0
- data/lib/lanes/concerns/queries.rb +20 -0
- data/lib/lanes/concerns/random_hash_code.rb +40 -0
- data/lib/lanes/concerns/sanitize_api_data.rb +15 -0
- data/lib/lanes/concerns/set_attribute_data.rb +154 -0
- data/lib/lanes/concerns/track_modifications.rb +51 -0
- data/lib/lanes/concerns/visible_id_identifier.rb +53 -0
- data/lib/lanes/configuration.rb +85 -0
- data/lib/lanes/db/migration_helpers.rb +178 -0
- data/lib/lanes/db/migrations.rb +13 -0
- data/lib/lanes/db/seed.rb +27 -0
- data/lib/lanes/db.rb +86 -0
- data/lib/lanes/environment.rb +19 -0
- data/lib/lanes/extension.rb +72 -0
- data/lib/lanes/generators/app/Gemfile +5 -0
- data/lib/lanes/generators/app/Guardfile +13 -0
- data/lib/lanes/generators/app/Rakefile +9 -0
- data/lib/lanes/generators/app/config/database.yml +9 -0
- data/lib/lanes/generators/app/config.ru +4 -0
- data/lib/lanes/generators/app/lib/main_class/version.rb +3 -0
- data/lib/lanes/generators/app/lib/main_class.rb +8 -0
- data/lib/lanes/generators/app.rb +36 -0
- data/lib/lanes/guard_tasks.rb +44 -0
- data/lib/lanes/logger.rb +37 -0
- data/lib/lanes/model.rb +26 -0
- data/lib/lanes/numbers.rb +72 -0
- data/lib/lanes/rails_engine.rb +5 -0
- data/lib/lanes/screens.rb +126 -0
- data/lib/lanes/spec_asset_expander.rb +43 -0
- data/lib/lanes/strings.rb +56 -0
- data/lib/lanes/user.rb +127 -0
- data/lib/lanes/validators/all.rb +2 -0
- data/lib/lanes/validators/email.rb +17 -0
- data/lib/lanes/validators/set.rb +18 -0
- data/lib/lanes/version.rb +5 -0
- data/lib/lanes.rb +22 -0
- data/npm-build/README +1 -0
- data/npm-build/compile.coffee +15 -0
- data/npm-build/package.json +59 -0
- data/npm-build/shims/underscore.js +1416 -0
- data/npm-build/template.js +33 -0
- data/public/javascripts/jasmine_examples/Player.js +22 -0
- data/public/javascripts/jasmine_examples/Song.js +7 -0
- data/spec/api/javascript_processor_spec.rb +107 -0
- data/spec/api/user_spec.rb +52 -0
- data/spec/client/component/ChoicesInputSpec.coffee +12 -0
- data/spec/client/component/foo_spec.coffee +4 -0
- data/spec/client/foo_spec.js +0 -0
- data/spec/client/jasmine_examples/PlayerSpec.js +0 -0
- data/spec/client/support/jasmine.yml +128 -0
- data/spec/client/support/jasmine_helper.rb +15 -0
- data/spec/concerns/api_path_spec.rb +14 -0
- data/spec/concerns/association_extensions_spec.rb +30 -0
- data/spec/concerns/attr_accessor_with_default_spec.rb +57 -0
- data/spec/concerns/code_identifier_spec.rb +45 -0
- data/spec/concerns/export_associations_spec.rb +7 -0
- data/spec/concerns/export_methods_spec.rb +43 -0
- data/spec/concerns/export_scope_spec.rb +15 -0
- data/spec/concerns/exported_limits_spec.rb +47 -0
- data/spec/concerns/pub_sub_spec.rb +83 -0
- data/spec/concerns/set_attribute_data_spec.rb +66 -0
- data/spec/configuration_spec.rb +26 -0
- data/spec/fixtures/lanes/users.yml +13 -0
- data/spec/helpers/.gitkeep +0 -0
- data/spec/helpers/SpecHelper.js +18 -0
- data/spec/locked_fields_spec.rb +27 -0
- data/spec/numbers_spec.rb +26 -0
- data/spec/role_collection_spec.rb +19 -0
- data/spec/spec_helper.rb +163 -0
- data/spec/strings_spec.rb +41 -0
- data/spec/testing_models.rb +54 -0
- data/spec/user_role_spec.rb +7 -0
- data/spec/user_spec.rb +53 -0
- data/tasks/migrations.rake +22 -0
- data/tasks/publish.rake +8 -0
- data/views/index.erb +29 -0
- data/views/specs.erb +25 -0
- data/yard_ext/all.rb +9 -0
- data/yard_ext/code_identifier_handler.rb +33 -0
- data/yard_ext/concern_meta_methods.rb +60 -0
- data/yard_ext/config_options.rb +27 -0
- data/yard_ext/exported_scope.rb +4 -0
- data/yard_ext/immutable_handler.rb +17 -0
- data/yard_ext/json_attr_accessor.rb +22 -0
- data/yard_ext/locked_fields_handler.rb +21 -0
- data/yard_ext/templates/default/layout/html/layout.erb +20 -0
- data/yard_ext/templates/default/method_details/html/github_link.erb +1 -0
- data/yard_ext/templates/default/method_details/setup.rb +3 -0
- data/yard_ext/validators.rb +1 -0
- data/yard_ext/visible_id_handler.rb +38 -0
- metadata +772 -0
@@ -0,0 +1,95 @@
|
|
1
|
+
class Loader
|
2
|
+
|
3
|
+
constructor: (urls,cb)->
|
4
|
+
finished=0
|
5
|
+
completed = {}
|
6
|
+
onComplete = (url,success,error=false)->
|
7
|
+
finished += 1
|
8
|
+
completed[url] = { success: success == true, error: error }
|
9
|
+
cb(completed) if finished == urls.length
|
10
|
+
|
11
|
+
this.head = document.querySelector('head')
|
12
|
+
this.body = document.body
|
13
|
+
|
14
|
+
_.each(urls, (url)->
|
15
|
+
if /.css$/.test(url)
|
16
|
+
this.loadCSS(url, onComplete)
|
17
|
+
else
|
18
|
+
this.loadJS(url, onComplete)
|
19
|
+
,this)
|
20
|
+
|
21
|
+
|
22
|
+
loadCSS: (url, fn) ->
|
23
|
+
getStylesheet = ->
|
24
|
+
Array::filter.call(document.styleSheets, (stylesheet) ->
|
25
|
+
stylesheet.ownerNode is node
|
26
|
+
).shift()
|
27
|
+
poll = ->
|
28
|
+
return if called
|
29
|
+
stylesheet = getStylesheet()
|
30
|
+
return setTimeout(poll, 250) if not stylesheet or not stylesheet.cssRules
|
31
|
+
return setTimeout(poll, 250) if not stylesheet or not stylesheet.rules or not stylesheet.rules.length
|
32
|
+
called = true
|
33
|
+
fn(url, true)
|
34
|
+
exists = Array::some.call(document.styleSheets, (stylesheet) ->
|
35
|
+
stylesheet.href is url
|
36
|
+
)
|
37
|
+
return fn(url, true) if exists
|
38
|
+
called = false
|
39
|
+
node = _.el("link",
|
40
|
+
type: "text/css"
|
41
|
+
href: url
|
42
|
+
rel: "stylesheet"
|
43
|
+
)
|
44
|
+
|
45
|
+
onloaded=(success,err)->
|
46
|
+
return if called
|
47
|
+
called = true
|
48
|
+
fn(url, success, err)
|
49
|
+
node.onload = ()-> onloaded(true,false)
|
50
|
+
node.onerror = (err)-> onloaded(false,err)
|
51
|
+
|
52
|
+
|
53
|
+
node.onreadystatechange = ->
|
54
|
+
return if not (/loaded|complete/.test(node.readyState)) or called
|
55
|
+
called=true
|
56
|
+
fn(url, true)
|
57
|
+
|
58
|
+
@head.appendChild node
|
59
|
+
poll()
|
60
|
+
|
61
|
+
|
62
|
+
loadJS: (url, fn) ->
|
63
|
+
called = false
|
64
|
+
node = _.el("script",
|
65
|
+
type: "text/javascript"
|
66
|
+
src: url
|
67
|
+
charset: "utf-8"
|
68
|
+
async: false
|
69
|
+
)
|
70
|
+
onloaded=(success,err)->
|
71
|
+
return if called
|
72
|
+
called = true
|
73
|
+
fn(url, success, err)
|
74
|
+
node.onload = ()-> onloaded(true,false)
|
75
|
+
node.onerror = (err)-> onloaded(false,err)
|
76
|
+
|
77
|
+
node.onreadystatechange = ->
|
78
|
+
return if not (/loaded|complete/.test(node.readyState)) or called
|
79
|
+
called = true
|
80
|
+
fn(url,true)
|
81
|
+
this.body.appendChild(node)
|
82
|
+
|
83
|
+
|
84
|
+
Lanes.lib.Loader = (urls...)->
|
85
|
+
urls = urls[0] if urls.length == 1 && _.isArray(urls[0])
|
86
|
+
new Lanes.Promise( (resolve,reject)->
|
87
|
+
new Loader(urls, (completed)->
|
88
|
+
failures = _.pick(completed, (status,url)-> !status.success )
|
89
|
+
if _.isEmpty(failures)
|
90
|
+
resolve(completed)
|
91
|
+
else
|
92
|
+
Lanes.warn( _.keys(failures).join(',') + " failed to load" )
|
93
|
+
reject( failures )
|
94
|
+
)
|
95
|
+
)
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# idea & basic implemntation from https://github.com/jashkenas/coffee-script/wiki/FAQ
|
2
|
+
|
3
|
+
Lanes.lib ||= {}
|
4
|
+
|
5
|
+
Lanes.namespace = (target, name, block) ->
|
6
|
+
[target, name, block] = [(if typeof exports isnt 'undefined' then exports else Lanes), arguments...] if arguments.length < 3
|
7
|
+
top = target
|
8
|
+
target = target[item] or= {} for item in name.split '.'
|
9
|
+
block( target, top ) if typeof block == 'function'
|
@@ -0,0 +1,15 @@
|
|
1
|
+
Lanes.lib.results = {
|
2
|
+
# Like underscore's results but allows passing
|
3
|
+
# arguments to the function if it's called
|
4
|
+
resultsFor:( method, args... )->
|
5
|
+
if _.isString(method)
|
6
|
+
if _.isFunction(this[method])
|
7
|
+
this[method].apply(this,args)
|
8
|
+
else
|
9
|
+
this[method]
|
10
|
+
else if _.isFunction(method)
|
11
|
+
method.apply(this,args)
|
12
|
+
else
|
13
|
+
method
|
14
|
+
|
15
|
+
}
|
@@ -0,0 +1,210 @@
|
|
1
|
+
// Underscore.inflection.js
|
2
|
+
// (c) 2011 Jeremy Ruppel
|
3
|
+
// Underscore.inflection is freely distributable under the MIT license.
|
4
|
+
// Portions of Underscore.inflection are inspired or borrowed from ActiveSupport
|
5
|
+
// Version 1.0.0
|
6
|
+
|
7
|
+
( function( _, undefined )
|
8
|
+
{
|
9
|
+
var
|
10
|
+
plurals = [ ],
|
11
|
+
|
12
|
+
singulars = [ ],
|
13
|
+
|
14
|
+
uncountables = [ ];
|
15
|
+
|
16
|
+
/**
|
17
|
+
* Inflector
|
18
|
+
*/
|
19
|
+
var inflector = {
|
20
|
+
|
21
|
+
gsub : function( word, rule, replacement )
|
22
|
+
{
|
23
|
+
var pattern = new RegExp( rule.source || rule, 'gi' );
|
24
|
+
return pattern.test( word ) ? word.replace( pattern, replacement ) : word;
|
25
|
+
},
|
26
|
+
|
27
|
+
plural : function( rule, replacement )
|
28
|
+
{
|
29
|
+
plurals.unshift( [ rule, replacement ] );
|
30
|
+
},
|
31
|
+
|
32
|
+
pluralize : function( word, count, includeNumber )
|
33
|
+
{
|
34
|
+
var result;
|
35
|
+
|
36
|
+
if( count !== undefined )
|
37
|
+
{
|
38
|
+
count = Math.round(count);
|
39
|
+
result = ( count === 1 ) ? this.singularize( word ) : this.pluralize( word );
|
40
|
+
result = ( includeNumber ) ? [ count, result ].join( ' ' ) : result;
|
41
|
+
}
|
42
|
+
else
|
43
|
+
{
|
44
|
+
if( _( uncountables ).include( word ) )
|
45
|
+
{
|
46
|
+
return word;
|
47
|
+
}
|
48
|
+
|
49
|
+
result = word;
|
50
|
+
|
51
|
+
_( plurals ).detect( function( rule )
|
52
|
+
{
|
53
|
+
var gsub = this.gsub( word, rule[ 0 ], rule[ 1 ] );
|
54
|
+
|
55
|
+
return gsub ? ( result = gsub ) : false;
|
56
|
+
},
|
57
|
+
this );
|
58
|
+
}
|
59
|
+
|
60
|
+
return result;
|
61
|
+
},
|
62
|
+
|
63
|
+
singular : function( rule, replacement )
|
64
|
+
{
|
65
|
+
singulars.unshift( [ rule, replacement ] );
|
66
|
+
},
|
67
|
+
|
68
|
+
singularize : function( word )
|
69
|
+
{
|
70
|
+
if( _( uncountables ).include( word ) )
|
71
|
+
{
|
72
|
+
return word;
|
73
|
+
}
|
74
|
+
|
75
|
+
var result = word;
|
76
|
+
|
77
|
+
_( singulars ).detect( function( rule )
|
78
|
+
{
|
79
|
+
var gsub = this.gsub( word, rule[ 0 ], rule[ 1 ] );
|
80
|
+
|
81
|
+
return gsub ? ( result = gsub ) : false;
|
82
|
+
},
|
83
|
+
this );
|
84
|
+
|
85
|
+
return result;
|
86
|
+
},
|
87
|
+
|
88
|
+
irregular : function( singular, plural )
|
89
|
+
{
|
90
|
+
this.plural( '\\b' + singular + '\\b', plural );
|
91
|
+
this.singular( '\\b' + plural + '\\b', singular );
|
92
|
+
},
|
93
|
+
|
94
|
+
uncountable : function( word )
|
95
|
+
{
|
96
|
+
uncountables.unshift( word );
|
97
|
+
},
|
98
|
+
|
99
|
+
ordinalize : function( number )
|
100
|
+
{
|
101
|
+
if ( isNaN( number ) )
|
102
|
+
return number;
|
103
|
+
|
104
|
+
number = number.toString();
|
105
|
+
var lastDigit = number.slice(-1);
|
106
|
+
var lastTwoDigits = number.slice(-2);
|
107
|
+
|
108
|
+
if ( lastTwoDigits === "11" || lastTwoDigits === "12" || lastTwoDigits === "13" )
|
109
|
+
return number + "th";
|
110
|
+
|
111
|
+
switch ( lastDigit ) {
|
112
|
+
case "1":
|
113
|
+
return number + "st";
|
114
|
+
case "2":
|
115
|
+
return number + "nd";
|
116
|
+
case "3":
|
117
|
+
return number + "rd";
|
118
|
+
default:
|
119
|
+
return number + "th";
|
120
|
+
}
|
121
|
+
},
|
122
|
+
|
123
|
+
titleize : function( words )
|
124
|
+
{
|
125
|
+
if ( typeof words !== "string")
|
126
|
+
return words;
|
127
|
+
|
128
|
+
return words.replace(/_|-/g,' ').replace( /\S+/g, function( word ) {
|
129
|
+
return word.charAt(0).toUpperCase() + word.slice(1);
|
130
|
+
} );
|
131
|
+
},
|
132
|
+
|
133
|
+
resetInflections : function( )
|
134
|
+
{
|
135
|
+
plurals = [ ];
|
136
|
+
singulars = [ ];
|
137
|
+
uncountables = [ ];
|
138
|
+
|
139
|
+
this.plural( /$/, 's' );
|
140
|
+
this.plural( /s$/, 's' );
|
141
|
+
this.plural( /(ax|test)is$/, '$1es' );
|
142
|
+
this.plural( /(octop|vir)us$/, '$1i' );
|
143
|
+
this.plural( /(octop|vir)i$/, '$1i' );
|
144
|
+
this.plural( /(alias|status)$/, '$1es' );
|
145
|
+
this.plural( /(bu)s$/, '$1ses' );
|
146
|
+
this.plural( /(buffal|tomat)o$/, '$1oes' );
|
147
|
+
this.plural( /([ti])um$/, '$1a' );
|
148
|
+
this.plural( /([ti])a$/, '$1a' );
|
149
|
+
this.plural( /sis$/, 'ses' );
|
150
|
+
this.plural( /(?:([^f])fe|([lr])f)$/, '$1$2ves' );
|
151
|
+
this.plural( /(hive)$/, '$1s' );
|
152
|
+
this.plural( /([^aeiouy]|qu)y$/, '$1ies' );
|
153
|
+
this.plural( /(x|ch|ss|sh)$/, '$1es' );
|
154
|
+
this.plural( /(matr|vert|ind)(?:ix|ex)$/, '$1ices' );
|
155
|
+
this.plural( /([m|l])ouse$/, '$1ice' );
|
156
|
+
this.plural( /([m|l])ice$/, '$1ice' );
|
157
|
+
this.plural( /^(ox)$/, '$1en' );
|
158
|
+
this.plural( /^(oxen)$/, '$1' );
|
159
|
+
this.plural( /(quiz)$/, '$1zes' );
|
160
|
+
|
161
|
+
this.singular( /s$/, '' );
|
162
|
+
this.singular( /(n)ews$/, '$1ews' );
|
163
|
+
this.singular( /([ti])a$/, '$1um' );
|
164
|
+
this.singular( /((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$/, '$1$2sis' );
|
165
|
+
this.singular( /(^analy)ses$/, '$1sis' );
|
166
|
+
this.singular( /([^f])ves$/, '$1fe' );
|
167
|
+
this.singular( /(hive)s$/, '$1' );
|
168
|
+
this.singular( /(tive)s$/, '$1' );
|
169
|
+
this.singular( /([lr])ves$/, '$1f' );
|
170
|
+
this.singular( /([^aeiouy]|qu)ies$/, '$1y' );
|
171
|
+
this.singular( /(s)eries$/, '$1eries' );
|
172
|
+
this.singular( /(m)ovies$/, '$1ovie' );
|
173
|
+
this.singular( /(x|ch|ss|sh)es$/, '$1' );
|
174
|
+
this.singular( /([m|l])ice$/, '$1ouse' );
|
175
|
+
this.singular( /(bus)es$/, '$1' );
|
176
|
+
this.singular( /(o)es$/, '$1' );
|
177
|
+
this.singular( /(shoe)s$/, '$1' );
|
178
|
+
this.singular( /(cris|ax|test)es$/, '$1is' );
|
179
|
+
this.singular( /(octop|vir)i$/, '$1us' );
|
180
|
+
this.singular( /(alias|status)es$/, '$1' );
|
181
|
+
this.singular( /^(ox)en/, '$1' );
|
182
|
+
this.singular( /(vert|ind)ices$/, '$1ex' );
|
183
|
+
this.singular( /(matr)ices$/, '$1ix' );
|
184
|
+
this.singular( /(quiz)zes$/, '$1' );
|
185
|
+
this.singular( /(database)s$/, '$1' );
|
186
|
+
|
187
|
+
this.irregular( 'person', 'people' );
|
188
|
+
this.irregular( 'man', 'men' );
|
189
|
+
this.irregular( 'child', 'children' );
|
190
|
+
this.irregular( 'sex', 'sexes' );
|
191
|
+
this.irregular( 'move', 'moves' );
|
192
|
+
this.irregular( 'cow', 'kine' );
|
193
|
+
|
194
|
+
_( 'equipment information rice money species series fish sheep jeans'.split( /\s+/ ) ).each( function( word )
|
195
|
+
{
|
196
|
+
this.uncountable( word );
|
197
|
+
},
|
198
|
+
this );
|
199
|
+
|
200
|
+
return this;
|
201
|
+
}
|
202
|
+
|
203
|
+
};
|
204
|
+
|
205
|
+
/**
|
206
|
+
* Underscore integration
|
207
|
+
*/
|
208
|
+
_.mixin( inflector.resetInflections( ) );
|
209
|
+
|
210
|
+
} )( _ );
|
@@ -0,0 +1,51 @@
|
|
1
|
+
Lanes.emptyFn = ->
|
2
|
+
|
3
|
+
Lanes.fatal = (args...)->
|
4
|
+
Lanes.warn(args...)
|
5
|
+
throw new Error(args...)
|
6
|
+
|
7
|
+
Lanes.warn = (msg...)->
|
8
|
+
console.warn(msg...) if console
|
9
|
+
null
|
10
|
+
|
11
|
+
Lanes.log = (msg...)->
|
12
|
+
console.log(msg...) if console
|
13
|
+
null
|
14
|
+
|
15
|
+
distillTypes = (type, ns)->
|
16
|
+
_.reduce( type.split( '.' ), ( ( memo, val )-> return if memo then memo[ val ] else null ), ns )
|
17
|
+
|
18
|
+
# Can be called one of two ways:
|
19
|
+
# With ns being a string, which will attempt to deref it then deref name inside it
|
20
|
+
# or with ns being an object, which will dref name inside it
|
21
|
+
Lanes.getPath = ( name, ns='Lanes' ) ->
|
22
|
+
return name unless _.isString(name)
|
23
|
+
if _.isObject(ns)
|
24
|
+
distillTypes(name,ns)
|
25
|
+
else
|
26
|
+
distillTypes(name,window) || distillTypes(name, distillTypes(ns, window))
|
27
|
+
|
28
|
+
Lanes.getModelPath = (scope,name)->
|
29
|
+
[model..., field] = name.split('.')
|
30
|
+
[ Lanes.getPath( model.join('.'), scope), field ]
|
31
|
+
|
32
|
+
_.mixin({
|
33
|
+
|
34
|
+
toSentence: (words=[], comma=', ', nd=' and ')->
|
35
|
+
last = words.pop()
|
36
|
+
if last
|
37
|
+
if words.length
|
38
|
+
[words.join(comma),last].join(nd)
|
39
|
+
else
|
40
|
+
last
|
41
|
+
else
|
42
|
+
''
|
43
|
+
|
44
|
+
sprintfArray: (array, format)->
|
45
|
+
_.map( array, (field)->
|
46
|
+
_.sprintf( format, field )
|
47
|
+
)
|
48
|
+
|
49
|
+
evaluateFunction: (fn,args)->
|
50
|
+
if this.isFunction(fn) then fn(args) else fn
|
51
|
+
})
|
@@ -0,0 +1,144 @@
|
|
1
|
+
/**
|
2
|
+
* Copyright Marc J. Schmidt. See the LICENSE file at the top-level
|
3
|
+
* directory of this distribution and at
|
4
|
+
* https://github.com/marcj/css-element-queries/blob/master/LICENSE.
|
5
|
+
*/
|
6
|
+
;
|
7
|
+
(function() {
|
8
|
+
|
9
|
+
/**
|
10
|
+
* Class for dimension change detection.
|
11
|
+
*
|
12
|
+
* @param {Element|Element[]|Elements|jQuery} element
|
13
|
+
* @param {Function} callback
|
14
|
+
*
|
15
|
+
* @constructor
|
16
|
+
*/
|
17
|
+
this.ResizeSensor = function(element, callback) {
|
18
|
+
/**
|
19
|
+
*
|
20
|
+
* @constructor
|
21
|
+
*/
|
22
|
+
function EventQueue() {
|
23
|
+
this.q = [];
|
24
|
+
this.add = function(ev) {
|
25
|
+
this.q.push(ev);
|
26
|
+
};
|
27
|
+
|
28
|
+
var i, j;
|
29
|
+
this.call = function() {
|
30
|
+
for (i = 0, j = this.q.length; i < j; i++) {
|
31
|
+
this.q[i].call();
|
32
|
+
}
|
33
|
+
};
|
34
|
+
}
|
35
|
+
|
36
|
+
/**
|
37
|
+
* @param {HTMLElement} element
|
38
|
+
* @param {String} prop
|
39
|
+
* @returns {String|Number}
|
40
|
+
*/
|
41
|
+
function getComputedStyle(element, prop) {
|
42
|
+
if (element.currentStyle) {
|
43
|
+
return element.currentStyle[prop];
|
44
|
+
} else if (window.getComputedStyle) {
|
45
|
+
return window.getComputedStyle(element, null).getPropertyValue(prop);
|
46
|
+
} else {
|
47
|
+
return element.style[prop];
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
/**
|
52
|
+
*
|
53
|
+
* @param {HTMLElement} element
|
54
|
+
* @param {Function} resized
|
55
|
+
*/
|
56
|
+
function attachResizeEvent(element, resized) {
|
57
|
+
if (!element.resizedAttached) {
|
58
|
+
element.resizedAttached = new EventQueue();
|
59
|
+
element.resizedAttached.add(resized);
|
60
|
+
} else if (element.resizedAttached) {
|
61
|
+
element.resizedAttached.add(resized);
|
62
|
+
return;
|
63
|
+
}
|
64
|
+
|
65
|
+
element.resizeSensor = document.createElement('div');
|
66
|
+
element.resizeSensor.className = 'resize-sensor';
|
67
|
+
var style = 'position: absolute; left: 0; top: 0; right: 0; bottom: 0; overflow: scroll; z-index: -1; visibility: hidden;';
|
68
|
+
var styleChild = 'position: absolute; left: 0; top: 0;';
|
69
|
+
|
70
|
+
element.resizeSensor.style.cssText = style;
|
71
|
+
element.resizeSensor.innerHTML =
|
72
|
+
'<div class="resize-sensor-expand" style="' + style + '">' +
|
73
|
+
'<div style="' + styleChild + '"></div>' +
|
74
|
+
'</div>' +
|
75
|
+
'<div class="resize-sensor-shrink" style="' + style + '">' +
|
76
|
+
'<div style="' + styleChild + ' width: 200%; height: 200%"></div>' +
|
77
|
+
'</div>';
|
78
|
+
element.appendChild(element.resizeSensor);
|
79
|
+
|
80
|
+
if (!{fixed: 1, absolute: 1}[getComputedStyle(element, 'position')]) {
|
81
|
+
element.style.position = 'relative';
|
82
|
+
}
|
83
|
+
|
84
|
+
var expand = element.resizeSensor.childNodes[0];
|
85
|
+
var expandChild = expand.childNodes[0];
|
86
|
+
var shrink = element.resizeSensor.childNodes[1];
|
87
|
+
var shrinkChild = shrink.childNodes[0];
|
88
|
+
|
89
|
+
var lastWidth, lastHeight;
|
90
|
+
|
91
|
+
var reset = function() {
|
92
|
+
expandChild.style.width = expand.offsetWidth + 10 + 'px';
|
93
|
+
expandChild.style.height = expand.offsetHeight + 10 + 'px';
|
94
|
+
expand.scrollLeft = expand.scrollWidth;
|
95
|
+
expand.scrollTop = expand.scrollHeight;
|
96
|
+
shrink.scrollLeft = shrink.scrollWidth;
|
97
|
+
shrink.scrollTop = shrink.scrollHeight;
|
98
|
+
lastWidth = element.offsetWidth;
|
99
|
+
lastHeight = element.offsetHeight;
|
100
|
+
};
|
101
|
+
|
102
|
+
reset();
|
103
|
+
|
104
|
+
var changed = function() {
|
105
|
+
element.resizedAttached.call();
|
106
|
+
};
|
107
|
+
|
108
|
+
var addEvent = function(el, name, cb) {
|
109
|
+
if (el.attachEvent) {
|
110
|
+
el.attachEvent('on' + name, cb);
|
111
|
+
} else {
|
112
|
+
el.addEventListener(name, cb);
|
113
|
+
}
|
114
|
+
};
|
115
|
+
|
116
|
+
addEvent(expand, 'scroll', function() {
|
117
|
+
if (element.offsetWidth > lastWidth || element.offsetHeight > lastHeight) {
|
118
|
+
changed();
|
119
|
+
}
|
120
|
+
reset();
|
121
|
+
});
|
122
|
+
|
123
|
+
addEvent(shrink, 'scroll',function() {
|
124
|
+
if (element.offsetWidth < lastWidth || element.offsetHeight < lastHeight) {
|
125
|
+
changed();
|
126
|
+
}
|
127
|
+
reset();
|
128
|
+
});
|
129
|
+
}
|
130
|
+
|
131
|
+
if ("[object Array]" === Object.prototype.toString.call(element)
|
132
|
+
|| ('undefined' !== typeof jQuery && element instanceof jQuery) //jquery
|
133
|
+
|| ('undefined' !== typeof Elements && element instanceof Elements) //mootools
|
134
|
+
) {
|
135
|
+
var i = 0, j = element.length;
|
136
|
+
for (; i < j; i++) {
|
137
|
+
attachResizeEvent(element[i], callback);
|
138
|
+
}
|
139
|
+
} else {
|
140
|
+
attachResizeEvent(element, callback);
|
141
|
+
}
|
142
|
+
}
|
143
|
+
|
144
|
+
}).call(Lanes.lib);
|
@@ -0,0 +1,41 @@
|
|
1
|
+
|
2
|
+
Lanes.$.fn.overlay = (options={})->
|
3
|
+
|
4
|
+
return this.each ->
|
5
|
+
$this = Lanes.$(this)
|
6
|
+
data = $this.data();
|
7
|
+
|
8
|
+
if 'showing' == options
|
9
|
+
return !!data.spinner
|
10
|
+
|
11
|
+
if false == options
|
12
|
+
data.overlay.remove()
|
13
|
+
delete data.overlay
|
14
|
+
return
|
15
|
+
|
16
|
+
options={ msg: options } if _.isString(options)
|
17
|
+
root = $this.closest(".lanes.root")
|
18
|
+
unless data.overlay
|
19
|
+
el = Lanes.$("""
|
20
|
+
<div class='overlay'>
|
21
|
+
<div class='mask'></div>
|
22
|
+
<div class='message'><i></i><p></p></div>
|
23
|
+
</div>
|
24
|
+
""")
|
25
|
+
root.append(el)
|
26
|
+
position = $this.offset()
|
27
|
+
root_position = root.offset()
|
28
|
+
position.left -= root_position.left
|
29
|
+
position.top -= root_position.top
|
30
|
+
data.overlay = el.css({
|
31
|
+
height: $this.height(), width: $this.width(),
|
32
|
+
left: position.left, top: position.top
|
33
|
+
})
|
34
|
+
message = data.overlay.find('.message')
|
35
|
+
icon = message.find('i')
|
36
|
+
icon.css('color', options.color) if options.color
|
37
|
+
icon.attr('class', options.icon) if options.icon
|
38
|
+
if options.msg
|
39
|
+
message.find('p').text(options.msg)
|
40
|
+
message.toggleClass('short', options.msg.length < 25 )
|
41
|
+
$this
|
@@ -0,0 +1,15 @@
|
|
1
|
+
|
2
|
+
jqTrigger = Lanes.$.fn.trigger
|
3
|
+
|
4
|
+
Lanes.$.fn.trigger = ( event, data, elem, onlyHandlers ) ->
|
5
|
+
evt = window.document.createEvent('CustomEvent')
|
6
|
+
event_name = if _.isObject(event)
|
7
|
+
data ||= event
|
8
|
+
event.type
|
9
|
+
else
|
10
|
+
event
|
11
|
+
evt.initCustomEvent(event_name, true, true, data )
|
12
|
+
this.each( (index,el)->
|
13
|
+
el.dispatchEvent(evt) unless _.isFunction(el[event_name])
|
14
|
+
)
|
15
|
+
jqTrigger.apply(this, arguments);
|