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,157 @@
|
|
1
|
+
class ScreenView extends Lanes.Data.BasicModel
|
2
|
+
|
3
|
+
session:
|
4
|
+
screen: 'object'
|
5
|
+
|
6
|
+
session:
|
7
|
+
active: ['boolean', true, false]
|
8
|
+
ui: 'state'
|
9
|
+
|
10
|
+
derived:
|
11
|
+
view:
|
12
|
+
deps: ['screen'], fn: ->
|
13
|
+
new @screen.viewModel( screen: this.screen, ui: @ui )
|
14
|
+
|
15
|
+
initialize: (options)->
|
16
|
+
super
|
17
|
+
@screen=options.screen
|
18
|
+
Lanes.Data.Screens.displaying.add( this )
|
19
|
+
this.active=true
|
20
|
+
|
21
|
+
renderScreen: ->
|
22
|
+
this.view.render()
|
23
|
+
|
24
|
+
remove: ->
|
25
|
+
Lanes.Data.Screens.displaying.remove( this )
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
class Screen extends Lanes.Data.BasicModel
|
30
|
+
|
31
|
+
session:
|
32
|
+
id: 'string'
|
33
|
+
title: 'string'
|
34
|
+
description: 'string'
|
35
|
+
view: 'string'
|
36
|
+
icon: 'string'
|
37
|
+
group_id: 'string'
|
38
|
+
files: 'array'
|
39
|
+
loading: 'boolean'
|
40
|
+
model: 'string'
|
41
|
+
|
42
|
+
derived:
|
43
|
+
model_type:
|
44
|
+
deps: ['model'], fn: ->
|
45
|
+
Lanes.Data[this.model]
|
46
|
+
|
47
|
+
initialize: ->
|
48
|
+
@views = []
|
49
|
+
|
50
|
+
_setDisplaying: (ui)->
|
51
|
+
@views.push( new ScreenView( screen: this, ui: ui ) )
|
52
|
+
|
53
|
+
display: (ui)->
|
54
|
+
@viewModel ||= Lanes.Screens[this.view]
|
55
|
+
if @viewModel?
|
56
|
+
this._setDisplaying(ui)
|
57
|
+
else
|
58
|
+
this.loading=true
|
59
|
+
Lanes.lib.Loader(this.files)
|
60
|
+
.then =>
|
61
|
+
@viewModel = Lanes.Screens[this.view]
|
62
|
+
@_setDisplaying(ui)
|
63
|
+
@loading=false
|
64
|
+
.catch (failures)=>
|
65
|
+
@loading=false
|
66
|
+
Lanes.warn(failures)
|
67
|
+
|
68
|
+
|
69
|
+
class ScreenViewSet extends Lanes.Data.BasicCollection
|
70
|
+
|
71
|
+
model: ScreenView
|
72
|
+
|
73
|
+
active: ->
|
74
|
+
@findWhere( active: true )
|
75
|
+
|
76
|
+
initialize: (models, options={})->
|
77
|
+
this.on( 'change:active', this.onActiveChange )
|
78
|
+
|
79
|
+
remove: (model)->
|
80
|
+
index = this.indexOf(model)
|
81
|
+
super
|
82
|
+
if model.active && this.length
|
83
|
+
this.at(_.min([index,this.length-1])).active = true
|
84
|
+
model.active = false
|
85
|
+
this
|
86
|
+
|
87
|
+
onActiveChange: (changed,active)->
|
88
|
+
return unless active
|
89
|
+
this.each (screen)->
|
90
|
+
screen.set( active: false ) unless screen == changed
|
91
|
+
|
92
|
+
activateNext: -> this._moveActive(+1)
|
93
|
+
activatePrev: -> this._moveActive(-1)
|
94
|
+
|
95
|
+
_moveActive: (inc)->
|
96
|
+
return if this.length == 1
|
97
|
+
current = this.findIndexWhere( active: true )
|
98
|
+
return if current == -1
|
99
|
+
if inc>0 && current == this.length-1
|
100
|
+
current = -1
|
101
|
+
if inc<0 && current == 0
|
102
|
+
current = this.length
|
103
|
+
this.at(current+inc).active = true
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
class ScreenSet extends Lanes.Data.BasicCollection
|
108
|
+
|
109
|
+
model: Screen
|
110
|
+
|
111
|
+
register: (spec)->
|
112
|
+
|
113
|
+
addScreen: (screen)->
|
114
|
+
screen = this.add( screen )
|
115
|
+
screen.set(active:true)
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
class MenuGroup extends Lanes.Data.BasicModel
|
120
|
+
|
121
|
+
session:
|
122
|
+
id: 'string'
|
123
|
+
title: 'string'
|
124
|
+
description: 'string'
|
125
|
+
icon: 'string'
|
126
|
+
active: ['boolean', true, false]
|
127
|
+
|
128
|
+
screens: ->
|
129
|
+
@avail ||= new Lanes.Data.SubCollection( Lanes.Data.Screens.all, {
|
130
|
+
filter: (screen)=>
|
131
|
+
screen.group_id == @id && Lanes.current_user.canRead(screen.model_type)
|
132
|
+
watched: ['group_id']
|
133
|
+
})
|
134
|
+
|
135
|
+
class MenuGroupSet extends Lanes.Data.BasicCollection
|
136
|
+
constructor: -> super
|
137
|
+
model: MenuGroup
|
138
|
+
|
139
|
+
available: ->
|
140
|
+
@avail ||= new Lanes.Data.SubCollection(this, {
|
141
|
+
filter: (mgs)=>
|
142
|
+
mgs.screens().filter()
|
143
|
+
mgs.screens().length > 0
|
144
|
+
})
|
145
|
+
|
146
|
+
|
147
|
+
|
148
|
+
Lanes.Data.Screens = {
|
149
|
+
all: new ScreenSet
|
150
|
+
displaying: new ScreenViewSet([],{ single_active_only: true })
|
151
|
+
groups: new MenuGroupSet
|
152
|
+
available_groups: ->
|
153
|
+
MenuGroupSet.where({ id: available.groupBy (screen)-> screen.group_id.keys })
|
154
|
+
|
155
|
+
register: (spec)->
|
156
|
+
this.all.add( spec )
|
157
|
+
}
|
@@ -0,0 +1,62 @@
|
|
1
|
+
|
2
|
+
# a simple reimplentation
|
3
|
+
# to use traffic cop
|
4
|
+
methodMap = {
|
5
|
+
'create': 'POST',
|
6
|
+
'update': 'PUT',
|
7
|
+
'patch': 'PATCH',
|
8
|
+
'delete': 'DELETE',
|
9
|
+
'read': 'GET'
|
10
|
+
}
|
11
|
+
|
12
|
+
getValue = (object, prop)->
|
13
|
+
if !(object && object[prop])
|
14
|
+
return null;
|
15
|
+
return if _.isFunction(object[prop]) then object[prop]() else object[prop];
|
16
|
+
|
17
|
+
|
18
|
+
urlError = ->
|
19
|
+
throw new Error('A "url" property or function must be specified')
|
20
|
+
|
21
|
+
|
22
|
+
paramsMap = {
|
23
|
+
fields : 'f'
|
24
|
+
with : 'w'
|
25
|
+
query : 'q'
|
26
|
+
include : 'i'
|
27
|
+
order : 'o'
|
28
|
+
limit : 'l'
|
29
|
+
start : 's'
|
30
|
+
}
|
31
|
+
|
32
|
+
Lanes.Data.Sync = (method, model, options)->
|
33
|
+
|
34
|
+
query = {}
|
35
|
+
for key, value of options
|
36
|
+
query[ paramsMap[key] ] = value if paramsMap[key]
|
37
|
+
|
38
|
+
# Default JSON-request options.
|
39
|
+
params = {
|
40
|
+
type: methodMap[method]
|
41
|
+
dataType: "json"
|
42
|
+
data: query
|
43
|
+
}
|
44
|
+
|
45
|
+
# Ensure that we have a URL.
|
46
|
+
params.url = _.result(model, "url") or urlError() unless options.url
|
47
|
+
params.url += '.json'
|
48
|
+
params.headers = {
|
49
|
+
X_CSRF_TOKEN: Lanes.Data.Config.csrf_token
|
50
|
+
}
|
51
|
+
# Ensure that we have the appropriate request data.
|
52
|
+
if !options.data? && model && _.contains([ "create", "update", "patch" ], method )
|
53
|
+
params.contentType = "application/json"
|
54
|
+
params.data = JSON.stringify( model.dataForSave(options) )
|
55
|
+
|
56
|
+
# Don't process data on a non-GET request.
|
57
|
+
#params.processData = false if params.type isnt "GET"
|
58
|
+
|
59
|
+
# Make the request, allowing the user to override any Ajax options.
|
60
|
+
xhr = options.xhr = Lanes.$.ajax(_.extend(params, options))
|
61
|
+
model.trigger "request", model, xhr, options
|
62
|
+
xhr
|
@@ -0,0 +1,70 @@
|
|
1
|
+
class Lanes.Data.User extends Lanes.Data.Model
|
2
|
+
|
3
|
+
constructor: (attributes,access)->
|
4
|
+
super
|
5
|
+
this.access_data = access
|
6
|
+
|
7
|
+
api_path: 'users'
|
8
|
+
derived:
|
9
|
+
roles:
|
10
|
+
deps: ['role_names', 'access_data']
|
11
|
+
fn: -> new Lanes.Data.UserRoleSet( @access_data )
|
12
|
+
isLoggedIn:
|
13
|
+
deps:['id'], fn: -> !!this.id
|
14
|
+
allRoles:
|
15
|
+
deps: ['role_names', 'access_data']
|
16
|
+
fn: ->
|
17
|
+
role_data = Lanes.Data.Roles.all?.toJSON() || []
|
18
|
+
roles = new Lanes.Data.Roles( role_data )
|
19
|
+
_.each( this.role_names, (name)->
|
20
|
+
console.log name, roles
|
21
|
+
roles.get(name)?.member = true
|
22
|
+
)
|
23
|
+
roles
|
24
|
+
|
25
|
+
session:
|
26
|
+
access_data: 'object'
|
27
|
+
|
28
|
+
props:
|
29
|
+
id: { type: "integer", required:true }
|
30
|
+
login: 'string'
|
31
|
+
name: 'string'
|
32
|
+
email: 'string'
|
33
|
+
role_names: 'array'
|
34
|
+
options: 'object'
|
35
|
+
password: 'string'
|
36
|
+
|
37
|
+
canRead: (model,field) -> this.roles.canRead(model,field)
|
38
|
+
canWrite: (model,field) -> this.roles.canWrite(model,field)
|
39
|
+
canDelete: (model) -> this.roles.canDelete(model)
|
40
|
+
|
41
|
+
logout: ->
|
42
|
+
_.each(this.attributes, (value,key)=> @set(key, null) )
|
43
|
+
|
44
|
+
setLoginData: (attrs, access)->
|
45
|
+
this.access_data = access
|
46
|
+
this.set(attrs)
|
47
|
+
|
48
|
+
@attemptLogin: (login,password, options)->
|
49
|
+
session = new Session( login: login, password: password )
|
50
|
+
success = options.success
|
51
|
+
session.save(_.extend(options,{
|
52
|
+
success: (session)->
|
53
|
+
Lanes.current_user.setLoginData(session.user, session.access)
|
54
|
+
success.apply(options.scope, arguments)
|
55
|
+
}))
|
56
|
+
|
57
|
+
Lanes.current_user = new Lanes.Data.User
|
58
|
+
|
59
|
+
class Lanes.Data.User.Collection extends Lanes.Data.Collection
|
60
|
+
model: Lanes.Data.User
|
61
|
+
|
62
|
+
|
63
|
+
class Session extends Lanes.Data.Model
|
64
|
+
api_path: 'user-session'
|
65
|
+
props:
|
66
|
+
id: 'integer'
|
67
|
+
login: 'string'
|
68
|
+
password: 'string'
|
69
|
+
access: 'object'
|
70
|
+
user: 'object'
|
@@ -0,0 +1,13 @@
|
|
1
|
+
Lanes.Data.mixins.HasCodeField = {
|
2
|
+
|
3
|
+
INVALID: /[^A-Z0-9a-z]/
|
4
|
+
|
5
|
+
included: ->
|
6
|
+
this.prototype.INVALID_CODE_CLanes.RS ||= Lanes.Data.mixins.Lanes.sCodeField.INVALID
|
7
|
+
|
8
|
+
initialize: ->
|
9
|
+
this.on('change:code', this.upcaseCode )
|
10
|
+
|
11
|
+
upcaseCode: ->
|
12
|
+
this.set('code', this.get('code').toUpperCase())
|
13
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
Lanes.Extensions = {
|
2
|
+
|
3
|
+
instances: {}
|
4
|
+
|
5
|
+
register: (klass)->
|
6
|
+
instance = new klass
|
7
|
+
this.instances[klass.prototype.identifier] = instance
|
8
|
+
instance.onRegistered?()
|
9
|
+
|
10
|
+
fireOnAvailable: (application)->
|
11
|
+
instance.onAvailable?(application) for identifier, instance of @instances
|
12
|
+
|
13
|
+
setBootstrapData: (bootstrap_data)->
|
14
|
+
for identifier,data of bootstrap_data
|
15
|
+
instance.setBootstrapData(data) if instance = this.instances[identifier]
|
16
|
+
|
17
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
//=require ./workspace
|
@@ -0,0 +1,55 @@
|
|
1
|
+
FUNC_NAME_REGEX = /function\s+([^\s\(]+)/
|
2
|
+
|
3
|
+
addMissingFunctionName = (klass)->
|
4
|
+
return if klass.name
|
5
|
+
Object.defineProperty( klass, 'name', {
|
6
|
+
get: ->
|
7
|
+
this._name_cache_ ||= (
|
8
|
+
results = FUNC_NAME_REGEX.exec((this).toString())
|
9
|
+
if (results && results.length) then results[1] else ""
|
10
|
+
)
|
11
|
+
set: (value)->
|
12
|
+
return {}
|
13
|
+
})
|
14
|
+
|
15
|
+
mixinModules = (klass)->
|
16
|
+
Lanes.lib.ModuleSupport.includeInto(klass)
|
17
|
+
if klass::mixins
|
18
|
+
klass.include(Lanes.getPath(mixin)) for mixin in klass::mixins
|
19
|
+
|
20
|
+
extendClass = (ampersand_base, parent, child)->
|
21
|
+
child.__super__ = parent.prototype
|
22
|
+
child.Derived = []
|
23
|
+
parent.Derived.push(child)
|
24
|
+
for prop in parent::extended_properties || []
|
25
|
+
if parent::[prop] && child::[prop]
|
26
|
+
_.extend( child::[prop], parent::[prop] )
|
27
|
+
|
28
|
+
mixinModules(child)
|
29
|
+
|
30
|
+
parent.extended(child) if _.isFunction(parent.extended)
|
31
|
+
|
32
|
+
child = ampersand_base.extend.call(parent, child.prototype )
|
33
|
+
|
34
|
+
child.extend = (klass)->
|
35
|
+
extendClass( ampersand_base, child, klass )
|
36
|
+
|
37
|
+
parent.after_extended(child) if _.isFunction(parent.after_extended)
|
38
|
+
addMissingFunctionName(child)
|
39
|
+
child
|
40
|
+
|
41
|
+
|
42
|
+
createExtendsChain = ( ampersand_base, base )->
|
43
|
+
return (klass)->
|
44
|
+
extendClass( ampersand_base, this, klass )
|
45
|
+
base.__super__ = ampersand_base.prototype
|
46
|
+
base
|
47
|
+
|
48
|
+
|
49
|
+
|
50
|
+
Lanes.lib.MakeBaseClass = ( ampersand_base, base )->
|
51
|
+
base = ampersand_base.extend( base.prototype )
|
52
|
+
mixinModules(base)
|
53
|
+
base.extend = createExtendsChain( ampersand_base, base )
|
54
|
+
base.Derived = []
|
55
|
+
base
|
@@ -0,0 +1,22 @@
|
|
1
|
+
moduleKeywords = ['extended', 'included', 'initialize']
|
2
|
+
|
3
|
+
class Lanes.lib.ModuleSupport
|
4
|
+
@includeInto: (klass)->
|
5
|
+
_.extend(klass,this)
|
6
|
+
|
7
|
+
@include: (obj) ->
|
8
|
+
special = this::extended_properties || []
|
9
|
+
if obj.initialize
|
10
|
+
fn = @::initialize
|
11
|
+
@::initialize = ->
|
12
|
+
obj.initialize.apply(this, arguments)
|
13
|
+
fn?.apply(this,arguments)
|
14
|
+
|
15
|
+
for key, value of obj when key not in moduleKeywords
|
16
|
+
# Assign properties to the prototype
|
17
|
+
if key in special && @::[key]
|
18
|
+
_.extend(@::[key], value)
|
19
|
+
else
|
20
|
+
@::[key] = value
|
21
|
+
obj.included?.apply(@)
|
22
|
+
this
|
@@ -0,0 +1,47 @@
|
|
1
|
+
Lanes.namespace "Templates"
|
2
|
+
|
3
|
+
|
4
|
+
ns2path = (ns)->
|
5
|
+
ns.replace(".","/").toLowerCase()
|
6
|
+
|
7
|
+
Lanes.Templates.find = (name, namespace) ->
|
8
|
+
return Lanes.Templates[name] if Lanes.Templates[name]
|
9
|
+
if namespace?
|
10
|
+
Lanes.Templates[ ns2path(namespace) + "/" + name]
|
11
|
+
else
|
12
|
+
null
|
13
|
+
|
14
|
+
# scribbed from eco's compiler.coffee
|
15
|
+
# we include the functions here rather than on every single template
|
16
|
+
Lanes.TemplateWrapper = {
|
17
|
+
|
18
|
+
sanitize: (value) ->
|
19
|
+
if value and value.HTMLSafe
|
20
|
+
value
|
21
|
+
else if typeof value isnt "undefined" and value?
|
22
|
+
Lanes.TemplateWrapper.escape value
|
23
|
+
else
|
24
|
+
""
|
25
|
+
|
26
|
+
capture: (__out) ->
|
27
|
+
(callback) ->
|
28
|
+
out = __out
|
29
|
+
result = undefined
|
30
|
+
__out = []
|
31
|
+
callback.call this
|
32
|
+
result = __out.join("")
|
33
|
+
__out = out
|
34
|
+
__safe result
|
35
|
+
|
36
|
+
escape: _.escape
|
37
|
+
|
38
|
+
safe: (value) ->
|
39
|
+
if value and value.HTMLSafe
|
40
|
+
value
|
41
|
+
else
|
42
|
+
value = "" unless typeof value isnt "undefined" and value?
|
43
|
+
result = new String(value)
|
44
|
+
result.HTMLSafe = true
|
45
|
+
result
|
46
|
+
|
47
|
+
}
|
File without changes
|
@@ -0,0 +1,15 @@
|
|
1
|
+
|
2
|
+
Lanes.lib.debounce = {
|
3
|
+
debounce: (fn, options={})->
|
4
|
+
options.scope ||= this
|
5
|
+
options.delay ||= 250
|
6
|
+
_.debounce( ->
|
7
|
+
fn.apply(options.scope, (options.arguments||[]).concat(arguments...))
|
8
|
+
, options.delay )
|
9
|
+
|
10
|
+
debounceMethod: (method,options)->
|
11
|
+
original = this[method]
|
12
|
+
this[method] = @debounce( ->
|
13
|
+
original.apply(this, arguments)
|
14
|
+
,options)
|
15
|
+
}
|
@@ -0,0 +1,115 @@
|
|
1
|
+
/**
|
2
|
+
* el.js v0.3 - A JavaScript Node Creation Tool
|
3
|
+
*
|
4
|
+
* https://github.com/markgandolfo/el.js
|
5
|
+
*
|
6
|
+
* Copyright 2013 Mark Gandolfo and other contributors
|
7
|
+
* Released under the MIT license.
|
8
|
+
* http://en.wikipedia.org/wiki/MIT_License
|
9
|
+
*/
|
10
|
+
_.el = (function () {
|
11
|
+
var el = function(tagName, attrs, child) {
|
12
|
+
// Pattern to match id & class names
|
13
|
+
var pattern = /([a-z]+|#[\w-\d]+|\.[\w\d-]+)/g;
|
14
|
+
|
15
|
+
if(arguments.length === 2) {
|
16
|
+
if(attrs instanceof Array || typeof attrs === 'function' || typeof attrs === 'string' || attrs.constructor !== Object) {
|
17
|
+
child = attrs;
|
18
|
+
attrs = undefined;
|
19
|
+
}
|
20
|
+
}
|
21
|
+
|
22
|
+
// does the user pass attributes in, if not set an empty object up
|
23
|
+
attrs = typeof attrs !== 'undefined' ? attrs : {};
|
24
|
+
child = typeof child !== 'undefined' ? child : [];
|
25
|
+
child = child instanceof Array ? child : [child];
|
26
|
+
|
27
|
+
// run the pattern over the tagname in an attempt to pull out class & id attributes
|
28
|
+
// shift the first record out as it's the element name
|
29
|
+
matched = tagName.match(pattern);
|
30
|
+
tagName = matched[0];
|
31
|
+
matched.shift();
|
32
|
+
|
33
|
+
// Iterate over the matches and concat the attrs to either class or id keys in attrs json object
|
34
|
+
for (var m in matched) {
|
35
|
+
if(matched[m][0] == '.') {
|
36
|
+
if(attrs['class'] === undefined) {
|
37
|
+
attrs['class'] = matched[m].substring(1, matched[m].length);
|
38
|
+
} else {
|
39
|
+
attrs['class'] = attrs['class'] + ' ' + matched[m].substring(1, matched[m].length);
|
40
|
+
}
|
41
|
+
} else if(matched[m][0] == '#') {
|
42
|
+
if(attrs['id'] === undefined) {
|
43
|
+
attrs['id'] = matched[m].substring(1, matched[m].length);
|
44
|
+
} else {
|
45
|
+
// Feels dirty having multiple id's, but it's allowed: http://www.w3.org/TR/selectors/#id-selectors
|
46
|
+
attrs['id'] = attrs['id'] + ' ' + matched[m].substring(1, matched[m].length);
|
47
|
+
}
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
// create the element
|
52
|
+
var el = document.createElement(tagName);
|
53
|
+
for(var i = 0; i < child.length; i += 1) {
|
54
|
+
(function(child){
|
55
|
+
switch(typeof child) {
|
56
|
+
case 'object':
|
57
|
+
el.appendChild(child);
|
58
|
+
break;
|
59
|
+
case 'function':
|
60
|
+
var discardDoneCallbackResult = false;
|
61
|
+
var doneCallback = function doneCallback(content) {
|
62
|
+
if (!discardDoneCallbackResult) {
|
63
|
+
el.appendChild(content);
|
64
|
+
}
|
65
|
+
};
|
66
|
+
var result = child.apply(null, [doneCallback]);
|
67
|
+
if(typeof result != 'undefined') {
|
68
|
+
discardDoneCallbackResult = true;
|
69
|
+
el.appendChild(result);
|
70
|
+
}
|
71
|
+
break;
|
72
|
+
case 'string':
|
73
|
+
el.appendChild(document.createTextNode(child));
|
74
|
+
break;
|
75
|
+
default:
|
76
|
+
//???
|
77
|
+
}
|
78
|
+
}(child[i]));
|
79
|
+
}
|
80
|
+
|
81
|
+
for (var key in attrs) {
|
82
|
+
if (attrs.hasOwnProperty(key)) {
|
83
|
+
el.setAttribute(key, attrs[key]);
|
84
|
+
}
|
85
|
+
}
|
86
|
+
|
87
|
+
return el;
|
88
|
+
};
|
89
|
+
|
90
|
+
// alias
|
91
|
+
el.create = el.c = el;
|
92
|
+
|
93
|
+
// vanity methods
|
94
|
+
el.img = function(attrs) {
|
95
|
+
return this.create('img', attrs);
|
96
|
+
};
|
97
|
+
|
98
|
+
el.a = function(attrs, child) {
|
99
|
+
return this.create('a', attrs, child);
|
100
|
+
};
|
101
|
+
|
102
|
+
el.div = function(attrs, child) {
|
103
|
+
return this.create('div', attrs, child);
|
104
|
+
};
|
105
|
+
|
106
|
+
el.p = function(attrs, child) {
|
107
|
+
return this.create('p', attrs, child);
|
108
|
+
};
|
109
|
+
|
110
|
+
el.input = function(attrs, child) {
|
111
|
+
return this.create('input', attrs);
|
112
|
+
};
|
113
|
+
|
114
|
+
return el;
|
115
|
+
}());
|