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,44 @@
|
|
1
|
+
.changes-notification {
|
2
|
+
.btn.dropdown-toggle {
|
3
|
+
padding: 0 10px;
|
4
|
+
margin-bottom: 0;
|
5
|
+
margin-top: 8px;
|
6
|
+
i {
|
7
|
+
font-size: 28px;
|
8
|
+
}
|
9
|
+
.badge {
|
10
|
+
top: -12px !important;
|
11
|
+
}
|
12
|
+
}
|
13
|
+
.title{
|
14
|
+
@extend .popover-title;
|
15
|
+
}
|
16
|
+
|
17
|
+
.dropdown-menu {
|
18
|
+
padding-top: 0px;
|
19
|
+
.arrow {
|
20
|
+
}
|
21
|
+
.update {
|
22
|
+
@extend .list-group-item;
|
23
|
+
span {
|
24
|
+
color: $dropdown-link-color;
|
25
|
+
text-decoration: underline;
|
26
|
+
cursor: pointer;
|
27
|
+
}
|
28
|
+
span:hover{
|
29
|
+
text-decoration: none;
|
30
|
+
color: $dropdown-link-hover-color;
|
31
|
+
}
|
32
|
+
}
|
33
|
+
.scroller {
|
34
|
+
max-height: 200px;
|
35
|
+
overflow-y: auto;
|
36
|
+
}
|
37
|
+
.ago {
|
38
|
+
@extend small;
|
39
|
+
}
|
40
|
+
}
|
41
|
+
.tooltip{
|
42
|
+
position: fixed;
|
43
|
+
}
|
44
|
+
}
|
@@ -0,0 +1,65 @@
|
|
1
|
+
$editor-chome-color: $navbar-inverse-color;
|
2
|
+
|
3
|
+
.grid-row-editor {
|
4
|
+
position: absolute;
|
5
|
+
|
6
|
+
form {
|
7
|
+
background-color: $editor-chome-color;
|
8
|
+
.edit {
|
9
|
+
position: absolute;
|
10
|
+
&:first-child {
|
11
|
+
margin-left: 4px;
|
12
|
+
}
|
13
|
+
}
|
14
|
+
|
15
|
+
}
|
16
|
+
.edit {
|
17
|
+
margin-top: 6px;
|
18
|
+
}
|
19
|
+
|
20
|
+
.controls {
|
21
|
+
text-align: center;
|
22
|
+
position: relative;
|
23
|
+
height: 0px;
|
24
|
+
overflow: visible;
|
25
|
+
.buttons {
|
26
|
+
background-color: $editor-chome-color;
|
27
|
+
display: inline-block;
|
28
|
+
padding: 2px 8px 8px;
|
29
|
+
position: relative;
|
30
|
+
border-bottom-left-radius: 7px;
|
31
|
+
border-bottom-right-radius: 7px;
|
32
|
+
|
33
|
+
// http://css-tricks.com/better-tabs-with-round-out-borders/
|
34
|
+
&:before,
|
35
|
+
&:after {
|
36
|
+
border: 1px solid $editor-chome-color;
|
37
|
+
position: absolute;
|
38
|
+
top: -1px;
|
39
|
+
width: 7px;
|
40
|
+
height: 6px;
|
41
|
+
content: " ";
|
42
|
+
}
|
43
|
+
&:before {
|
44
|
+
left: -7px;
|
45
|
+
border-top-right-radius: 6px;
|
46
|
+
border-width: 1px 1px 0px 0px;
|
47
|
+
box-shadow: 3px 0px 0px $editor-chome-color;
|
48
|
+
}
|
49
|
+
&:after {
|
50
|
+
right: -7px;
|
51
|
+
border-top-left-radius: 6px;
|
52
|
+
border-width: 1px 0px 0px 1px;
|
53
|
+
box-shadow: -3px 0px 0px $editor-chome-color;
|
54
|
+
}
|
55
|
+
|
56
|
+
|
57
|
+
}
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
.grid-popover-editor {
|
62
|
+
.buttons {
|
63
|
+
text-align: center;
|
64
|
+
}
|
65
|
+
}
|
@@ -0,0 +1,301 @@
|
|
1
|
+
.lanes-grid {
|
2
|
+
|
3
|
+
clear: both;
|
4
|
+
margin-top: 6px !important;
|
5
|
+
margin-bottom: 6px !important;
|
6
|
+
max-width: none !important;
|
7
|
+
|
8
|
+
|
9
|
+
.dataTables_processing {
|
10
|
+
position: absolute;
|
11
|
+
|
12
|
+
border: 2px solid $panel-default-border;
|
13
|
+
box-shadow: 3px 3px 5px 6px $table-bg-hover;
|
14
|
+
|
15
|
+
display: block;
|
16
|
+
line-height: 5px;
|
17
|
+
padding: 30px;
|
18
|
+
z-index: 28;
|
19
|
+
|
20
|
+
top: 50%;
|
21
|
+
width: 80%;
|
22
|
+
height: 40px;
|
23
|
+
margin-left: 10%;
|
24
|
+
margin-top: -25px;
|
25
|
+
padding-top: 20px;
|
26
|
+
text-align: center;
|
27
|
+
font-size: 1.2em;
|
28
|
+
background:url(asset_path('ajax-loader.gif')) no-repeat scroll 40% 7px $body-bg;
|
29
|
+
}
|
30
|
+
|
31
|
+
|
32
|
+
div.dataTables_length label {
|
33
|
+
font-weight: normal;
|
34
|
+
float: left;
|
35
|
+
text-align: left;
|
36
|
+
}
|
37
|
+
|
38
|
+
div.dataTables_length select {
|
39
|
+
width: 75px;
|
40
|
+
}
|
41
|
+
|
42
|
+
div.dataTables_filter label {
|
43
|
+
font-weight: normal;
|
44
|
+
float: right;
|
45
|
+
}
|
46
|
+
|
47
|
+
div.dataTables_filter input {
|
48
|
+
width: 16em;
|
49
|
+
}
|
50
|
+
|
51
|
+
div.dataTables_info {
|
52
|
+
padding-top: 8px;
|
53
|
+
}
|
54
|
+
|
55
|
+
div.dataTables_paginate {
|
56
|
+
float: right;
|
57
|
+
margin: 0;
|
58
|
+
}
|
59
|
+
|
60
|
+
div.dataTables_paginate ul.pagination {
|
61
|
+
margin: 2px 0;
|
62
|
+
white-space: nowrap;
|
63
|
+
}
|
64
|
+
|
65
|
+
td, th{
|
66
|
+
&.c {
|
67
|
+
text-align: center;
|
68
|
+
}
|
69
|
+
|
70
|
+
&.r {
|
71
|
+
text-align: right;
|
72
|
+
}
|
73
|
+
|
74
|
+
-webkit-box-sizing: content-box;
|
75
|
+
-moz-box-sizing: content-box;
|
76
|
+
box-sizing: content-box;
|
77
|
+
}
|
78
|
+
|
79
|
+
|
80
|
+
thead .sorting,
|
81
|
+
thead .sorting_asc,
|
82
|
+
thead .sorting_desc,
|
83
|
+
thead .sorting_asc_disabled,
|
84
|
+
thead .sorting_desc_disabled {
|
85
|
+
cursor: pointer;
|
86
|
+
}
|
87
|
+
|
88
|
+
thead .sorting { background: url(image-path('dataTables/sort_both.png')) no-repeat center right; }
|
89
|
+
thead .sorting_asc { background: url(image-path('dataTables/sort_asc.png')) no-repeat center right; }
|
90
|
+
thead .sorting_desc { background: url(image-path('dataTables/sort_desc.png')) no-repeat center right; }
|
91
|
+
|
92
|
+
thead .sorting_asc_disabled { background: url(image-path('dataTables/sort_asc_disabled.png')) no-repeat center right; }
|
93
|
+
thead .sorting_desc_disabled { background: url(image-path('dataTables/sort_desc_disabled.png')) no-repeat center right; }
|
94
|
+
|
95
|
+
thead > tr > th {
|
96
|
+
padding-left: 18px;
|
97
|
+
padding-right: 18px;
|
98
|
+
font-size: 1.1vw;
|
99
|
+
white-space: nowrap;
|
100
|
+
|
101
|
+
|
102
|
+
}
|
103
|
+
|
104
|
+
th:active {
|
105
|
+
outline: none;
|
106
|
+
}
|
107
|
+
|
108
|
+
/* Scrolling */
|
109
|
+
div.dataTables_scrollHead table {
|
110
|
+
margin-bottom: 0 !important;
|
111
|
+
border-bottom-left-radius: 0;
|
112
|
+
border-bottom-right-radius: 0;
|
113
|
+
}
|
114
|
+
|
115
|
+
div.dataTables_scrollHead table thead tr:last-child th:first-child,
|
116
|
+
div.dataTables_scrollHead table thead tr:last-child td:first-child {
|
117
|
+
border-bottom-left-radius: 0 !important;
|
118
|
+
border-bottom-right-radius: 0 !important;
|
119
|
+
}
|
120
|
+
|
121
|
+
div.dataTables_scrollBody table {
|
122
|
+
border-top: none;
|
123
|
+
margin-top: 0 !important;
|
124
|
+
margin-bottom: 0 !important;
|
125
|
+
}
|
126
|
+
|
127
|
+
div.dataTables_scrollBody tbody tr:first-child th,
|
128
|
+
div.dataTables_scrollBody tbody tr:first-child td {
|
129
|
+
border-top: none;
|
130
|
+
}
|
131
|
+
|
132
|
+
div.dataTables_scrollFoot table {
|
133
|
+
margin-top: 0 !important;
|
134
|
+
border-top: none;
|
135
|
+
}
|
136
|
+
|
137
|
+
/* Frustratingly the border-collapse:collapse used by Bootstrap makes the column
|
138
|
+
width calculations when using scrolling impossible to align columns. We have
|
139
|
+
to use separate
|
140
|
+
*/
|
141
|
+
table.table-bordered.dataTable {
|
142
|
+
border-collapse: separate !important;
|
143
|
+
}
|
144
|
+
table.table-bordered thead th,
|
145
|
+
table.table-bordered thead td {
|
146
|
+
border-left-width: 0;
|
147
|
+
border-top-width: 0;
|
148
|
+
}
|
149
|
+
table.table-bordered tbody th,
|
150
|
+
table.table-bordered tbody td {
|
151
|
+
border-left-width: 0;
|
152
|
+
border-bottom-width: 0;
|
153
|
+
}
|
154
|
+
table.table-bordered th:last-child,
|
155
|
+
table.table-bordered td:last-child {
|
156
|
+
border-right-width: 0;
|
157
|
+
}
|
158
|
+
div.dataTables_scrollHead table.table-bordered {
|
159
|
+
border-bottom-width: 0;
|
160
|
+
}
|
161
|
+
|
162
|
+
tbody{
|
163
|
+
td{
|
164
|
+
height: 22px;
|
165
|
+
}
|
166
|
+
}
|
167
|
+
|
168
|
+
/*
|
169
|
+
* TableTools styles
|
170
|
+
*/
|
171
|
+
.table tbody tr.active td,
|
172
|
+
.table tbody tr.active th {
|
173
|
+
background-color: #08C;
|
174
|
+
color: white;
|
175
|
+
}
|
176
|
+
|
177
|
+
.table tbody tr.active:hover td,
|
178
|
+
.table tbody tr.active:hover th {
|
179
|
+
background-color: #0075b0 !important;
|
180
|
+
}
|
181
|
+
|
182
|
+
.table tbody tr.active a {
|
183
|
+
color: white;
|
184
|
+
}
|
185
|
+
|
186
|
+
.table-striped tbody tr.active:nth-child(odd) td,
|
187
|
+
.table-striped tbody tr.active:nth-child(odd) th {
|
188
|
+
background-color: #017ebc;
|
189
|
+
}
|
190
|
+
|
191
|
+
table.DTTT_selectable tbody tr {
|
192
|
+
cursor: pointer;
|
193
|
+
}
|
194
|
+
|
195
|
+
div.DTTT .btn {
|
196
|
+
color: #333 !important;
|
197
|
+
font-size: 12px;
|
198
|
+
}
|
199
|
+
|
200
|
+
div.DTTT .btn:hover {
|
201
|
+
text-decoration: none !important;
|
202
|
+
}
|
203
|
+
|
204
|
+
ul.DTTT_dropdown.dropdown-menu {
|
205
|
+
z-index: 2003;
|
206
|
+
}
|
207
|
+
|
208
|
+
ul.DTTT_dropdown.dropdown-menu a {
|
209
|
+
color: #333 !important; /* needed only when demo_page.css is included */
|
210
|
+
}
|
211
|
+
|
212
|
+
ul.DTTT_dropdown.dropdown-menu li {
|
213
|
+
position: relative;
|
214
|
+
}
|
215
|
+
|
216
|
+
ul.DTTT_dropdown.dropdown-menu li:hover a {
|
217
|
+
background-color: #0088cc;
|
218
|
+
color: white !important;
|
219
|
+
}
|
220
|
+
|
221
|
+
div.DTTT_collection_background {
|
222
|
+
z-index: 2002;
|
223
|
+
}
|
224
|
+
|
225
|
+
/* TableTools information display */
|
226
|
+
div.DTTT_print_info.modal {
|
227
|
+
height: 150px;
|
228
|
+
margin-top: -75px;
|
229
|
+
text-align: center;
|
230
|
+
}
|
231
|
+
|
232
|
+
div.DTTT_print_info h6 {
|
233
|
+
font-weight: normal;
|
234
|
+
font-size: 28px;
|
235
|
+
line-height: 28px;
|
236
|
+
margin: 1em;
|
237
|
+
}
|
238
|
+
|
239
|
+
div.DTTT_print_info p {
|
240
|
+
font-size: 14px;
|
241
|
+
line-height: 20px;
|
242
|
+
}
|
243
|
+
|
244
|
+
|
245
|
+
|
246
|
+
/*
|
247
|
+
* FixedColumns styles
|
248
|
+
*/
|
249
|
+
div.DTFC_LeftHeadWrapper table,
|
250
|
+
div.DTFC_LeftFootWrapper table,
|
251
|
+
div.DTFC_RightHeadWrapper table,
|
252
|
+
div.DTFC_RightFootWrapper table,
|
253
|
+
table.DTFC_Cloned tr.even {
|
254
|
+
background-color: white;
|
255
|
+
margin-bottom: 0;
|
256
|
+
}
|
257
|
+
|
258
|
+
div.DTFC_RightHeadWrapper table ,
|
259
|
+
div.DTFC_LeftHeadWrapper table {
|
260
|
+
margin-bottom: 0 !important;
|
261
|
+
border-top-right-radius: 0 !important;
|
262
|
+
border-bottom-left-radius: 0 !important;
|
263
|
+
border-bottom-right-radius: 0 !important;
|
264
|
+
}
|
265
|
+
|
266
|
+
div.DTFC_RightHeadWrapper table thead tr:last-child th:first-child,
|
267
|
+
div.DTFC_RightHeadWrapper table thead tr:last-child td:first-child,
|
268
|
+
div.DTFC_LeftHeadWrapper table thead tr:last-child th:first-child,
|
269
|
+
div.DTFC_LeftHeadWrapper table thead tr:last-child td:first-child {
|
270
|
+
border-bottom-left-radius: 0 !important;
|
271
|
+
border-bottom-right-radius: 0 !important;
|
272
|
+
}
|
273
|
+
|
274
|
+
div.DTFC_RightBodyWrapper table,
|
275
|
+
div.DTFC_LeftBodyWrapper table {
|
276
|
+
border-top: none;
|
277
|
+
margin: 0 !important;
|
278
|
+
}
|
279
|
+
|
280
|
+
div.DTFC_RightBodyWrapper tbody tr:first-child th,
|
281
|
+
div.DTFC_RightBodyWrapper tbody tr:first-child td,
|
282
|
+
div.DTFC_LeftBodyWrapper tbody tr:first-child th,
|
283
|
+
div.DTFC_LeftBodyWrapper tbody tr:first-child td {
|
284
|
+
border-top: none;
|
285
|
+
}
|
286
|
+
|
287
|
+
div.DTFC_RightFootWrapper table,
|
288
|
+
div.DTFC_LeftFootWrapper table {
|
289
|
+
border-top: none;
|
290
|
+
}
|
291
|
+
|
292
|
+
|
293
|
+
/*
|
294
|
+
* FixedHeader styles
|
295
|
+
*/
|
296
|
+
div.FixedHeader_Cloned table {
|
297
|
+
margin: 0 !important
|
298
|
+
}
|
299
|
+
|
300
|
+
|
301
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
.modal-backdrop{
|
2
|
+
position: absolute;
|
3
|
+
}
|
4
|
+
|
5
|
+
.modal-dialog{
|
6
|
+
position: absolute;
|
7
|
+
top: 30px;
|
8
|
+
z-index: 28;
|
9
|
+
right: 5%;
|
10
|
+
left: 5%;
|
11
|
+
|
12
|
+
&.tiny {
|
13
|
+
height: 100%;
|
14
|
+
left: 0;
|
15
|
+
right: 0;
|
16
|
+
top: 0;
|
17
|
+
}
|
18
|
+
|
19
|
+
&.modal-lg{
|
20
|
+
width: 800px;
|
21
|
+
}
|
22
|
+
|
23
|
+
}
|
@@ -0,0 +1,71 @@
|
|
1
|
+
|
2
|
+
.record-finder-query-string {
|
3
|
+
text-transform: uppercase;
|
4
|
+
}
|
5
|
+
|
6
|
+
.record-finder {
|
7
|
+
.form-control {
|
8
|
+
|
9
|
+
}
|
10
|
+
}
|
11
|
+
|
12
|
+
.query-clauses {
|
13
|
+
.row {
|
14
|
+
margin-bottom: 5px;
|
15
|
+
}
|
16
|
+
.btn.del-clause {
|
17
|
+
border-bottom-right-radius: $border-radius-base !important;
|
18
|
+
border-top-right-radius: $border-radius-base !important;
|
19
|
+
}
|
20
|
+
>.clause {
|
21
|
+
.run-query {
|
22
|
+
display: none;
|
23
|
+
}
|
24
|
+
.add-clause {
|
25
|
+
display: none;
|
26
|
+
}
|
27
|
+
&:last-child {
|
28
|
+
.del-clause { display: none; }
|
29
|
+
.run-query { display: inline-block; }
|
30
|
+
.add-clause { display: inline-block; }
|
31
|
+
}
|
32
|
+
}
|
33
|
+
&.multiple {
|
34
|
+
|
35
|
+
}
|
36
|
+
}
|
37
|
+
|
38
|
+
.query {
|
39
|
+
width: 300px;
|
40
|
+
.fields {
|
41
|
+
label {
|
42
|
+
display: block;
|
43
|
+
}
|
44
|
+
}
|
45
|
+
.operators {
|
46
|
+
label {
|
47
|
+
display: block;
|
48
|
+
max-height: 3rem;
|
49
|
+
overflow: hidden;
|
50
|
+
&.invalid {
|
51
|
+
max-height: 0;
|
52
|
+
margin: 0;
|
53
|
+
opacity: 0;
|
54
|
+
}
|
55
|
+
transition-property: opacity, margin, max-height;
|
56
|
+
transition-duration: 0.2s, 0.4s;
|
57
|
+
}
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
.modal-dialog.tiny {
|
62
|
+
.skr-grid thead > tr > th {
|
63
|
+
font-size: unset;
|
64
|
+
}
|
65
|
+
.action {
|
66
|
+
text-align: center;
|
67
|
+
.btn.run-query span {
|
68
|
+
display: none;
|
69
|
+
}
|
70
|
+
}
|
71
|
+
}
|