marty 0.5.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +84 -0
- data/Rakefile +29 -0
- data/app/assets/javascripts/marty/application.js +15 -0
- data/app/assets/stylesheets/marty/application.css +13 -0
- data/app/components/marty/api_auth_view.rb +32 -0
- data/app/components/marty/auth_app.rb +55 -0
- data/app/components/marty/auth_app.rb~ +51 -0
- data/app/components/marty/auth_app/javascripts/auth_app.js +91 -0
- data/app/components/marty/auth_app/javascripts/auth_app.js~ +91 -0
- data/app/components/marty/cm_form_panel.rb~ +5 -0
- data/app/components/marty/cm_grid_panel.rb~ +35 -0
- data/app/components/marty/data_import_view.rb~ +142 -0
- data/app/components/marty/extras/layout.rb +46 -0
- data/app/components/marty/extras/layout.rb~ +46 -0
- data/app/components/marty/extras/misc.rb +18 -0
- data/app/components/marty/form.rb +6 -0
- data/app/components/marty/grid.rb +45 -0
- data/app/components/marty/grid_append_only.rb +12 -0
- data/app/components/marty/import_type_view.rb +53 -0
- data/app/components/marty/live_search_grid_panel.rb +46 -0
- data/app/components/marty/live_search_grid_panel.rb~ +49 -0
- data/app/components/marty/main_auth_app.rb +269 -0
- data/app/components/marty/main_auth_app.rb~ +238 -0
- data/app/components/marty/mcfly_grid_panel.rb +62 -0
- data/app/components/marty/mcfly_grid_panel.rb~ +80 -0
- data/app/components/marty/new_posting_form.rb +46 -0
- data/app/components/marty/new_posting_form.rb~ +46 -0
- data/app/components/marty/new_posting_window.rb +21 -0
- data/app/components/marty/new_posting_window.rb~ +21 -0
- data/app/components/marty/panel.rb +12 -0
- data/app/components/marty/pivot_grid.rb +52 -0
- data/app/components/marty/pivot_grid/endpoints.rb +45 -0
- data/app/components/marty/pivot_grid/javascripts/extensions.js +150 -0
- data/app/components/marty/pivot_grid/javascripts/pivot_grid.js +86 -0
- data/app/components/marty/pivot_grid/services.rb +44 -0
- data/app/components/marty/posting_grid.rb +139 -0
- data/app/components/marty/posting_grid.rb~ +140 -0
- data/app/components/marty/posting_window.rb +27 -0
- data/app/components/marty/promise_view.rb +177 -0
- data/app/components/marty/promise_view.rb~ +157 -0
- data/app/components/marty/promise_view/stylesheets/promise_view.css +26 -0
- data/app/components/marty/promise_view/stylesheets/promise_view.css~ +15 -0
- data/app/components/marty/report_form.rb +225 -0
- data/app/components/marty/report_form.rb~ +217 -0
- data/app/components/marty/report_select.rb +145 -0
- data/app/components/marty/report_select.rb~ +133 -0
- data/app/components/marty/reporting.rb +39 -0
- data/app/components/marty/reporting.rb~ +39 -0
- data/app/components/marty/script_detail.rb~ +430 -0
- data/app/components/marty/script_form.rb +233 -0
- data/app/components/marty/script_form.rb~ +233 -0
- data/app/components/marty/script_form/javascripts/Ext.ux.form.field.CodeMirror.js +698 -0
- data/app/components/marty/script_form/javascripts/Ext.ux.form.field.CodeMirror.js~ +909 -0
- data/app/components/marty/script_form/javascripts/codemirror.js +3130 -0
- data/app/components/marty/script_form/javascripts/mode/clike/clike.js +284 -0
- data/app/components/marty/script_form/javascripts/mode/clike/index.html +102 -0
- data/app/components/marty/script_form/javascripts/mode/clike/scala.html +766 -0
- data/app/components/marty/script_form/javascripts/mode/clojure/clojure.js +206 -0
- data/app/components/marty/script_form/javascripts/mode/clojure/index.html +67 -0
- data/app/components/marty/script_form/javascripts/mode/coffeescript/LICENSE +22 -0
- data/app/components/marty/script_form/javascripts/mode/coffeescript/coffeescript.js +346 -0
- data/app/components/marty/script_form/javascripts/mode/coffeescript/index.html +728 -0
- data/app/components/marty/script_form/javascripts/mode/commonlisp/commonlisp.js +101 -0
- data/app/components/marty/script_form/javascripts/mode/commonlisp/index.html +165 -0
- data/app/components/marty/script_form/javascripts/mode/css/css.js +448 -0
- data/app/components/marty/script_form/javascripts/mode/css/index.html +58 -0
- data/app/components/marty/script_form/javascripts/mode/css/test.js +501 -0
- data/app/components/marty/script_form/javascripts/mode/delorean/delorean.js +189 -0
- data/app/components/marty/script_form/javascripts/mode/diff/diff.js +32 -0
- data/app/components/marty/script_form/javascripts/mode/diff/index.html +105 -0
- data/app/components/marty/script_form/javascripts/mode/ecl/ecl.js +203 -0
- data/app/components/marty/script_form/javascripts/mode/ecl/index.html +42 -0
- data/app/components/marty/script_form/javascripts/mode/erlang/erlang.js +463 -0
- data/app/components/marty/script_form/javascripts/mode/erlang/index.html +63 -0
- data/app/components/marty/script_form/javascripts/mode/gfm/gfm.js +150 -0
- data/app/components/marty/script_form/javascripts/mode/gfm/index.html +48 -0
- data/app/components/marty/script_form/javascripts/mode/go/go.js +170 -0
- data/app/components/marty/script_form/javascripts/mode/go/index.html +73 -0
- data/app/components/marty/script_form/javascripts/mode/groovy/groovy.js +210 -0
- data/app/components/marty/script_form/javascripts/mode/groovy/index.html +72 -0
- data/app/components/marty/script_form/javascripts/mode/haskell/haskell.js +242 -0
- data/app/components/marty/script_form/javascripts/mode/haskell/index.html +61 -0
- data/app/components/marty/script_form/javascripts/mode/haxe/haxe.js +429 -0
- data/app/components/marty/script_form/javascripts/mode/haxe/index.html +91 -0
- data/app/components/marty/script_form/javascripts/mode/htmlembedded/htmlembedded.js +72 -0
- data/app/components/marty/script_form/javascripts/mode/htmlembedded/index.html +50 -0
- data/app/components/marty/script_form/javascripts/mode/htmlmixed/htmlmixed.js +84 -0
- data/app/components/marty/script_form/javascripts/mode/htmlmixed/index.html +52 -0
- data/app/components/marty/script_form/javascripts/mode/javascript/index.html +78 -0
- data/app/components/marty/script_form/javascripts/mode/javascript/javascript.js +361 -0
- data/app/components/marty/script_form/javascripts/mode/jinja2/index.html +38 -0
- data/app/components/marty/script_form/javascripts/mode/jinja2/jinja2.js +42 -0
- data/app/components/marty/script_form/javascripts/mode/less/index.html +740 -0
- data/app/components/marty/script_form/javascripts/mode/less/less.js +266 -0
- data/app/components/marty/script_form/javascripts/mode/lua/index.html +73 -0
- data/app/components/marty/script_form/javascripts/mode/lua/lua.js +140 -0
- data/app/components/marty/script_form/javascripts/mode/markdown/index.html +343 -0
- data/app/components/marty/script_form/javascripts/mode/markdown/markdown.js +382 -0
- data/app/components/marty/script_form/javascripts/mode/markdown/test.js +1084 -0
- data/app/components/marty/script_form/javascripts/mode/mysql/index.html +42 -0
- data/app/components/marty/script_form/javascripts/mode/mysql/mysql.js +186 -0
- data/app/components/marty/script_form/javascripts/mode/ntriples/index.html +33 -0
- data/app/components/marty/script_form/javascripts/mode/ntriples/ntriples.js +172 -0
- data/app/components/marty/script_form/javascripts/mode/ocaml/index.html +130 -0
- data/app/components/marty/script_form/javascripts/mode/ocaml/ocaml.js +114 -0
- data/app/components/marty/script_form/javascripts/mode/pascal/LICENSE +7 -0
- data/app/components/marty/script_form/javascripts/mode/pascal/index.html +49 -0
- data/app/components/marty/script_form/javascripts/mode/pascal/pascal.js +94 -0
- data/app/components/marty/script_form/javascripts/mode/perl/LICENSE +19 -0
- data/app/components/marty/script_form/javascripts/mode/perl/index.html +63 -0
- data/app/components/marty/script_form/javascripts/mode/perl/perl.js +816 -0
- data/app/components/marty/script_form/javascripts/mode/php/index.html +49 -0
- data/app/components/marty/script_form/javascripts/mode/php/php.js +148 -0
- data/app/components/marty/script_form/javascripts/mode/pig/index.html +43 -0
- data/app/components/marty/script_form/javascripts/mode/pig/pig.js +172 -0
- data/app/components/marty/script_form/javascripts/mode/plsql/index.html +63 -0
- data/app/components/marty/script_form/javascripts/mode/plsql/plsql.js +217 -0
- data/app/components/marty/script_form/javascripts/mode/properties/index.html +41 -0
- data/app/components/marty/script_form/javascripts/mode/properties/properties.js +63 -0
- data/app/components/marty/script_form/javascripts/mode/python/LICENSE.txt +21 -0
- data/app/components/marty/script_form/javascripts/mode/python/index.html +123 -0
- data/app/components/marty/script_form/javascripts/mode/python/python.js +338 -0
- data/app/components/marty/script_form/javascripts/mode/r/LICENSE +24 -0
- data/app/components/marty/script_form/javascripts/mode/r/index.html +74 -0
- data/app/components/marty/script_form/javascripts/mode/r/r.js +141 -0
- data/app/components/marty/script_form/javascripts/mode/rpm/changes/changes.js +19 -0
- data/app/components/marty/script_form/javascripts/mode/rpm/changes/index.html +54 -0
- data/app/components/marty/script_form/javascripts/mode/rpm/spec/index.html +100 -0
- data/app/components/marty/script_form/javascripts/mode/rpm/spec/spec.css +5 -0
- data/app/components/marty/script_form/javascripts/mode/rpm/spec/spec.js +66 -0
- data/app/components/marty/script_form/javascripts/mode/rst/index.html +526 -0
- data/app/components/marty/script_form/javascripts/mode/rst/rst.js +326 -0
- data/app/components/marty/script_form/javascripts/mode/ruby/LICENSE +24 -0
- data/app/components/marty/script_form/javascripts/mode/ruby/index.html +172 -0
- data/app/components/marty/script_form/javascripts/mode/ruby/ruby.js +195 -0
- data/app/components/marty/script_form/javascripts/mode/rust/index.html +49 -0
- data/app/components/marty/script_form/javascripts/mode/rust/rust.js +432 -0
- data/app/components/marty/script_form/javascripts/mode/scheme/index.html +65 -0
- data/app/components/marty/script_form/javascripts/mode/scheme/scheme.js +230 -0
- data/app/components/marty/script_form/javascripts/mode/shell/index.html +50 -0
- data/app/components/marty/script_form/javascripts/mode/shell/shell.js +118 -0
- data/app/components/marty/script_form/javascripts/mode/sieve/LICENSE +23 -0
- data/app/components/marty/script_form/javascripts/mode/sieve/index.html +81 -0
- data/app/components/marty/script_form/javascripts/mode/sieve/sieve.js +156 -0
- data/app/components/marty/script_form/javascripts/mode/smalltalk/index.html +56 -0
- data/app/components/marty/script_form/javascripts/mode/smalltalk/smalltalk.js +139 -0
- data/app/components/marty/script_form/javascripts/mode/smarty/index.html +83 -0
- data/app/components/marty/script_form/javascripts/mode/smarty/smarty.js +148 -0
- data/app/components/marty/script_form/javascripts/mode/sparql/index.html +41 -0
- data/app/components/marty/script_form/javascripts/mode/sparql/sparql.js +143 -0
- data/app/components/marty/script_form/javascripts/mode/stex/index.html +98 -0
- data/app/components/marty/script_form/javascripts/mode/stex/stex.js +182 -0
- data/app/components/marty/script_form/javascripts/mode/stex/test.js +343 -0
- data/app/components/marty/script_form/javascripts/mode/tiddlywiki/index.html +141 -0
- data/app/components/marty/script_form/javascripts/mode/tiddlywiki/tiddlywiki.css +14 -0
- data/app/components/marty/script_form/javascripts/mode/tiddlywiki/tiddlywiki.js +384 -0
- data/app/components/marty/script_form/javascripts/mode/tiki/index.html +83 -0
- data/app/components/marty/script_form/javascripts/mode/tiki/tiki.css +26 -0
- data/app/components/marty/script_form/javascripts/mode/tiki/tiki.js +309 -0
- data/app/components/marty/script_form/javascripts/mode/vb/LICENSE.txt +21 -0
- data/app/components/marty/script_form/javascripts/mode/vb/index.html +89 -0
- data/app/components/marty/script_form/javascripts/mode/vb/vb.js +260 -0
- data/app/components/marty/script_form/javascripts/mode/vbscript/index.html +43 -0
- data/app/components/marty/script_form/javascripts/mode/vbscript/vbscript.js +26 -0
- data/app/components/marty/script_form/javascripts/mode/velocity/index.html +104 -0
- data/app/components/marty/script_form/javascripts/mode/velocity/velocity.js +146 -0
- data/app/components/marty/script_form/javascripts/mode/verilog/index.html +211 -0
- data/app/components/marty/script_form/javascripts/mode/verilog/verilog.js +194 -0
- data/app/components/marty/script_form/javascripts/mode/xml/index.html +45 -0
- data/app/components/marty/script_form/javascripts/mode/xml/xml.js +318 -0
- data/app/components/marty/script_form/javascripts/mode/xquery/LICENSE +20 -0
- data/app/components/marty/script_form/javascripts/mode/xquery/index.html +223 -0
- data/app/components/marty/script_form/javascripts/mode/xquery/test/index.html +27 -0
- data/app/components/marty/script_form/javascripts/mode/xquery/test/testBase.js +42 -0
- data/app/components/marty/script_form/javascripts/mode/xquery/test/testEmptySequenceKeyword.js +16 -0
- data/app/components/marty/script_form/javascripts/mode/xquery/test/testMultiAttr.js +16 -0
- data/app/components/marty/script_form/javascripts/mode/xquery/test/testNamespaces.js +91 -0
- data/app/components/marty/script_form/javascripts/mode/xquery/test/testProcessingInstructions.js +16 -0
- data/app/components/marty/script_form/javascripts/mode/xquery/test/testQuotes.js +19 -0
- data/app/components/marty/script_form/javascripts/mode/xquery/xquery.js +451 -0
- data/app/components/marty/script_form/javascripts/mode/yaml/index.html +68 -0
- data/app/components/marty/script_form/javascripts/mode/yaml/yaml.js +95 -0
- data/app/components/marty/script_form/javascripts/util/closetag.js +164 -0
- data/app/components/marty/script_form/javascripts/util/dialog.css +27 -0
- data/app/components/marty/script_form/javascripts/util/dialog.js +70 -0
- data/app/components/marty/script_form/javascripts/util/foldcode.js +196 -0
- data/app/components/marty/script_form/javascripts/util/formatting.js +193 -0
- data/app/components/marty/script_form/javascripts/util/javascript-hint.js +134 -0
- data/app/components/marty/script_form/javascripts/util/loadmode.js +51 -0
- data/app/components/marty/script_form/javascripts/util/match-highlighter.js +44 -0
- data/app/components/marty/script_form/javascripts/util/multiplex.js +77 -0
- data/app/components/marty/script_form/javascripts/util/overlay.js +54 -0
- data/app/components/marty/script_form/javascripts/util/pig-hint.js +123 -0
- data/app/components/marty/script_form/javascripts/util/runmode-standalone.js +90 -0
- data/app/components/marty/script_form/javascripts/util/runmode.js +53 -0
- data/app/components/marty/script_form/javascripts/util/search.js +118 -0
- data/app/components/marty/script_form/javascripts/util/searchcursor.js +119 -0
- data/app/components/marty/script_form/javascripts/util/simple-hint.css +16 -0
- data/app/components/marty/script_form/javascripts/util/simple-hint.js +97 -0
- data/app/components/marty/script_form/javascripts/util/xml-hint.js +137 -0
- data/app/components/marty/script_form/stylesheets/codemirror.css +172 -0
- data/app/components/marty/script_form/stylesheets/delorean.css +10 -0
- data/app/components/marty/script_form/stylesheets/theme/ambiance.css +81 -0
- data/app/components/marty/script_form/stylesheets/theme/blackboard.css +25 -0
- data/app/components/marty/script_form/stylesheets/theme/cobalt.css +18 -0
- data/app/components/marty/script_form/stylesheets/theme/eclipse.css +25 -0
- data/app/components/marty/script_form/stylesheets/theme/elegant.css +10 -0
- data/app/components/marty/script_form/stylesheets/theme/erlang-dark.css +21 -0
- data/app/components/marty/script_form/stylesheets/theme/lesser-dark.css +44 -0
- data/app/components/marty/script_form/stylesheets/theme/monokai.css +28 -0
- data/app/components/marty/script_form/stylesheets/theme/neat.css +9 -0
- data/app/components/marty/script_form/stylesheets/theme/night.css +21 -0
- data/app/components/marty/script_form/stylesheets/theme/rubyblue.css +21 -0
- data/app/components/marty/script_form/stylesheets/theme/vibrant-ink.css +27 -0
- data/app/components/marty/script_form/stylesheets/theme/xq-dark.css +46 -0
- data/app/components/marty/script_grid.rb +104 -0
- data/app/components/marty/script_grid.rb~ +99 -0
- data/app/components/marty/script_tester.rb +114 -0
- data/app/components/marty/script_tester.rb~ +213 -0
- data/app/components/marty/scripting.rb +132 -0
- data/app/components/marty/scripting.rb~ +124 -0
- data/app/components/marty/select_report.rb~ +143 -0
- data/app/components/marty/simple_app.rb +97 -0
- data/app/components/marty/simple_app.rb~ +101 -0
- data/app/components/marty/simple_app/javascripts/simple_app.js +50 -0
- data/app/components/marty/simple_app/javascripts/statusbar_ext.js +8 -0
- data/app/components/marty/tag_grid.rb +83 -0
- data/app/components/marty/tag_grid.rb~ +89 -0
- data/app/components/marty/tree_panel.rb~ +256 -0
- data/app/components/marty/tree_panel/javascripts/tree_panel.js~ +317 -0
- data/app/components/marty/user_pivot.rb +128 -0
- data/app/components/marty/user_view.rb +181 -0
- data/app/components/marty/user_view.rb~ +188 -0
- data/app/controllers/marty/application_controller.rb +124 -0
- data/app/controllers/marty/application_controller.rb~ +133 -0
- data/app/controllers/marty/components_controller.rb +41 -0
- data/app/controllers/marty/components_controller.rb~ +37 -0
- data/app/controllers/marty/job_controller.rb +28 -0
- data/app/controllers/marty/job_controller.rb~ +28 -0
- data/app/controllers/marty/rpc_controller.rb +64 -0
- data/app/controllers/marty/rpc_controller.rb~ +61 -0
- data/app/helpers/marty/application_helper.rb +4 -0
- data/app/helpers/marty/script_set.rb +57 -0
- data/app/helpers/marty/script_set.rb~ +59 -0
- data/app/models/marty/api_auth.rb +44 -0
- data/app/models/marty/api_auth.rb~ +48 -0
- data/app/models/marty/base.rb +4 -0
- data/app/models/marty/data_change.rb +179 -0
- data/app/models/marty/data_change.rb~ +141 -0
- data/app/models/marty/enum.rb +22 -0
- data/app/models/marty/enum.rb~ +16 -0
- data/app/models/marty/import_type.rb +44 -0
- data/app/models/marty/import_type.rb~ +48 -0
- data/app/models/marty/poop.rb~ +169 -0
- data/app/models/marty/posting.rb +101 -0
- data/app/models/marty/posting.rb~ +86 -0
- data/app/models/marty/posting_type.rb +12 -0
- data/app/models/marty/posting_type.rb~ +21 -0
- data/app/models/marty/promise.rb +252 -0
- data/app/models/marty/promise.rb~ +196 -0
- data/app/models/marty/role.rb +6 -0
- data/app/models/marty/role.rb~ +10 -0
- data/app/models/marty/script.rb +144 -0
- data/app/models/marty/script.rb~ +62 -0
- data/app/models/marty/tag.rb +96 -0
- data/app/models/marty/tag.rb~ +91 -0
- data/app/models/marty/token.rb +30 -0
- data/app/models/marty/user.rb +146 -0
- data/app/models/marty/user.rb~ +148 -0
- data/app/models/marty/user_role.rb +7 -0
- data/app/models/marty/user_role.rb~ +13 -0
- data/app/views/layouts/marty/application.html.erb +12 -0
- data/app/views/layouts/marty/application.html.erb~ +11 -0
- data/config/locales/en.yml +134 -0
- data/config/routes.rb +6 -0
- data/config/routes.rb~ +10 -0
- data/db/migrate/001_create_marty_scripts.rb +14 -0
- data/db/migrate/003_create_marty_users.rb +12 -0
- data/db/migrate/004_create_marty_roles.rb +7 -0
- data/db/migrate/005_create_marty_user_roles.rb +14 -0
- data/db/migrate/006_create_marty_tokens.rb +14 -0
- data/db/migrate/008_create_marty_posting_types.rb +7 -0
- data/db/migrate/019_create_marty_postings.rb +18 -0
- data/db/migrate/019_create_marty_postings.rb~ +19 -0
- data/db/migrate/068_create_marty_import_types.rb +12 -0
- data/db/migrate/069_create_marty_import_synonyms.rb +15 -0
- data/db/migrate/070_create_versions.rb +18 -0
- data/db/migrate/071_add_object_changes_column_to_versions.rb +9 -0
- data/db/migrate/072_add_validation_function_to_import_types.rb +6 -0
- data/db/migrate/073_add_preprocess_function_to_import_types.rb +5 -0
- data/db/migrate/090_create_delayed_jobs.rb +22 -0
- data/db/migrate/091_create_marty_promises.rb +36 -0
- data/db/migrate/095_create_marty_tags.rb +14 -0
- data/db/migrate/095_create_marty_tags.rb~ +19 -0
- data/db/migrate/096_add_user_roles_to_import_types.rb +11 -0
- data/db/migrate/097_drop_versions.rb +9 -0
- data/db/migrate/098_create_marty_api_auths.rb +20 -0
- data/db/seeds.rb +48 -0
- data/lib/marty.rb +18 -0
- data/lib/marty.rb~ +13 -0
- data/lib/marty/content_handler.rb +97 -0
- data/lib/marty/content_handler.rb~ +93 -0
- data/lib/marty/data_conversion.rb +298 -0
- data/lib/marty/data_exporter.rb +150 -0
- data/lib/marty/data_exporter.rb~ +137 -0
- data/lib/marty/data_importer.rb +122 -0
- data/lib/marty/data_importer.rb~ +114 -0
- data/lib/marty/data_row_processor.rb~ +206 -0
- data/lib/marty/drop_folder_hook.rb~ +17 -0
- data/lib/marty/engine.rb +10 -0
- data/lib/marty/folder_hook.rb~ +9 -0
- data/lib/marty/lazy_column_loader.rb +57 -0
- data/lib/marty/lazy_column_loader.rb~ +47 -0
- data/lib/marty/mcfly_query.rb +189 -0
- data/lib/marty/mcfly_query.rb~ +188 -0
- data/lib/marty/migrations.rb +108 -0
- data/lib/marty/migrations.rb~ +65 -0
- data/lib/marty/monkey.rb +163 -0
- data/lib/marty/monkey.rb~ +160 -0
- data/lib/marty/permissions.rb +64 -0
- data/lib/marty/permissions.rb~ +69 -0
- data/lib/marty/promise.rb~ +41 -0
- data/lib/marty/promise_job.rb +123 -0
- data/lib/marty/promise_job.rb~ +121 -0
- data/lib/marty/promise_proxy.rb +94 -0
- data/lib/marty/promise_proxy.rb~ +69 -0
- data/lib/marty/railtie.rb +5 -0
- data/lib/marty/relation.rb +39 -0
- data/lib/marty/util.rb +110 -0
- data/lib/marty/util.rb~ +80 -0
- data/lib/marty/version.rb +3 -0
- data/lib/marty/version.rb~ +3 -0
- data/lib/marty/xl.rb +527 -0
- data/lib/marty/xl.rb~ +526 -0
- data/lib/pyxll/README.txt +19 -0
- data/lib/pyxll/README.txt~ +16 -0
- data/lib/pyxll/gemini.py +155 -0
- data/lib/pyxll/gemini.py~ +110 -0
- data/lib/pyxll/pyxll.cfg +12 -0
- data/lib/pyxll/pyxll.cfg~ +12 -0
- data/lib/pyxll/sample.xlsx +0 -0
- data/lib/tasks/marty_tasks.rake +37 -0
- metadata +517 -0
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
require 'delorean_lang'
|
|
2
|
+
|
|
3
|
+
class Marty::DataChange
|
|
4
|
+
include Delorean::Model
|
|
5
|
+
|
|
6
|
+
# Some arbitrary limit so we don't allow enormous queries
|
|
7
|
+
MAX_COUNT = 64000
|
|
8
|
+
|
|
9
|
+
delorean_fn :changes, sig: 3 do
|
|
10
|
+
|t0, t1, class_name|
|
|
11
|
+
|
|
12
|
+
klass = class_name.constantize
|
|
13
|
+
|
|
14
|
+
t0 = Mcfly.normalize_infinity t0
|
|
15
|
+
t1 = Mcfly.normalize_infinity t1
|
|
16
|
+
|
|
17
|
+
cols = Marty::DataConversion.columns(klass)
|
|
18
|
+
changes = get_changed_data(t0, t1, klass)
|
|
19
|
+
|
|
20
|
+
changes.each_with_object({}) do |(group_id, ol), h|
|
|
21
|
+
h[group_id] = ol.each_with_index.map do |o, i|
|
|
22
|
+
profile = {"obj" => o}
|
|
23
|
+
|
|
24
|
+
# Create a profile hash for each object in the group.
|
|
25
|
+
# "status" tells us if the object is old/new/mod. If
|
|
26
|
+
# status=="mod" then "changes" will provide the list of
|
|
27
|
+
# columns which changed. If the object was deleted during
|
|
28
|
+
# t0-t1 then we set the deleted flag in the profile.
|
|
29
|
+
profile["deleted"] = (group_id == o.id &&
|
|
30
|
+
o.obsoleted_dt != Float::INFINITY &&
|
|
31
|
+
(t1 == 'infinity' || o.obsoleted_dt < t1)
|
|
32
|
+
)
|
|
33
|
+
if i == 0
|
|
34
|
+
profile["status"] = o.created_dt < t0 ? "old" : "new"
|
|
35
|
+
prev = nil
|
|
36
|
+
else
|
|
37
|
+
profile["status"], prev = "mod", prev = ol[i-1]
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
exp_attrs = Marty::DataExporter.export_attrs(klass, o).flatten(1)
|
|
41
|
+
|
|
42
|
+
# assumes cols order is same as that returned by export_attrs
|
|
43
|
+
profile["attrs"] = cols.each_with_index.map do
|
|
44
|
+
|c, i|
|
|
45
|
+
|
|
46
|
+
{
|
|
47
|
+
# FIXME: this will not work if the attr is an association
|
|
48
|
+
# which will requires multiple keys to identify
|
|
49
|
+
# (e.g. Rule: name & version)
|
|
50
|
+
"value" => exp_attrs[i],
|
|
51
|
+
"changed" => prev && (o.send(c.to_sym) != prev.send(c.to_sym)),
|
|
52
|
+
}
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
profile
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
delorean_fn :change_summary, sig: 3 do
|
|
61
|
+
|t0, t1, class_name|
|
|
62
|
+
|
|
63
|
+
klass = class_name.constantize
|
|
64
|
+
|
|
65
|
+
t0 = Mcfly.normalize_infinity t0
|
|
66
|
+
t1 = Mcfly.normalize_infinity t1
|
|
67
|
+
|
|
68
|
+
changes = get_changed_data(t0, t1, klass)
|
|
69
|
+
|
|
70
|
+
created = updated = deleted = 0
|
|
71
|
+
|
|
72
|
+
changes.each { |group_id, ol|
|
|
73
|
+
ol.each_with_index.map { |o, i|
|
|
74
|
+
deleted +=1 if (group_id == o.id &&
|
|
75
|
+
o.obsoleted_dt != Float::INFINITY &&
|
|
76
|
+
(t1 == 'infinity' || o.obsoleted_dt < t1)
|
|
77
|
+
)
|
|
78
|
+
if i == 0
|
|
79
|
+
created +=1 unless o.created_dt < t0
|
|
80
|
+
else
|
|
81
|
+
updated += 1
|
|
82
|
+
end
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
{'created' => created, 'updated' => updated, 'deleted' => deleted}
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
delorean_fn :class_list, sig: 0 do
|
|
90
|
+
Rails.configuration.marty.class_list.sort.uniq || []
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
delorean_fn :class_headers, sig: 1 do
|
|
94
|
+
|class_name|
|
|
95
|
+
|
|
96
|
+
klass = class_name.constantize
|
|
97
|
+
assoc = Marty::DataConversion.associations klass
|
|
98
|
+
Marty::DataConversion.columns(klass).map { |c|
|
|
99
|
+
# strip _id if it's an assoc
|
|
100
|
+
c = c[0..-4] if assoc[c]
|
|
101
|
+
I18n.t(c, scope: 'attributes', default: c)
|
|
102
|
+
}
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
delorean_fn :user_name, sig: 1 do
|
|
106
|
+
|user_id|
|
|
107
|
+
|
|
108
|
+
Marty::User.find_by_id(user_id).try(:name)
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
delorean_fn :sanitize_classes, sig: 1 do
|
|
112
|
+
|classes|
|
|
113
|
+
classes = classes.split(/,\s*/) if classes.is_a? String
|
|
114
|
+
|
|
115
|
+
classes.to_set & class_list.to_set
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
delorean_fn :do_export, sig: [2, 3] do
|
|
119
|
+
|pt, klass, sort_field=nil|
|
|
120
|
+
|
|
121
|
+
# allow classes on class_list or any Enum to be exported
|
|
122
|
+
raise "'#{klass}' not on class_list" unless
|
|
123
|
+
class_list.member?(klass) || klass.constantize.is_a?(Marty::Enum)
|
|
124
|
+
|
|
125
|
+
Marty::DataExporter.do_export(pt, klass.constantize, sort_field)
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
delorean_fn :export_changes, sig: 3 do
|
|
129
|
+
|t0, t1, class_name|
|
|
130
|
+
|
|
131
|
+
klass = class_name.constantize
|
|
132
|
+
|
|
133
|
+
t0 = Mcfly.normalize_infinity t0
|
|
134
|
+
t1 = Mcfly.normalize_infinity t1
|
|
135
|
+
|
|
136
|
+
change_q = '(obsoleted_dt >= ? AND obsoleted_dt < ?)' +
|
|
137
|
+
' OR (created_dt >= ? AND created_dt < ?)'
|
|
138
|
+
|
|
139
|
+
# find all changes from t0 to t1 -- orders by id to get the lower
|
|
140
|
+
# ones since those are the original version in Mcfly. Using
|
|
141
|
+
# unscoped to get around lazy loaded column scopes.
|
|
142
|
+
changes = klass.unscoped.select("DISTINCT ON (group_id) *").
|
|
143
|
+
where(change_q, t0, t1, t0, t1).
|
|
144
|
+
order("group_id, id").
|
|
145
|
+
to_a
|
|
146
|
+
|
|
147
|
+
# update/adds, deletes
|
|
148
|
+
chg, del = [], []
|
|
149
|
+
|
|
150
|
+
changes.each do |o|
|
|
151
|
+
if Mcfly.is_infinity(o.obsoleted_dt)
|
|
152
|
+
chg << o
|
|
153
|
+
else
|
|
154
|
+
# if a version of row existed before t0 => add it to del list
|
|
155
|
+
del << o if klass.
|
|
156
|
+
where("group_id = ? AND created_dt < ?", o.group_id, t0).exists?
|
|
157
|
+
end
|
|
158
|
+
end
|
|
159
|
+
|
|
160
|
+
[chg, del].map {|l|
|
|
161
|
+
l.empty? ? nil : Marty::DataExporter.do_export_query_result(klass, l)
|
|
162
|
+
}
|
|
163
|
+
end
|
|
164
|
+
|
|
165
|
+
def self.get_changed_data(t0, t1, klass)
|
|
166
|
+
# The following test fails when t0/t1 are infinity. ActiveSupport
|
|
167
|
+
# doesn't know about infinity.
|
|
168
|
+
# return unless t0 < t1
|
|
169
|
+
|
|
170
|
+
change_q = '(obsoleted_dt >= ? AND obsoleted_dt < ?)' +
|
|
171
|
+
' OR (created_dt >= ? AND created_dt < ?)'
|
|
172
|
+
|
|
173
|
+
raise "Change count exceeds limit #{MAX_COUNT}" if
|
|
174
|
+
klass.unscoped.where(change_q, t0, t1, t0, t1).count > MAX_COUNT
|
|
175
|
+
|
|
176
|
+
klass.where(change_q, t0, t1, t0, t1).
|
|
177
|
+
order("group_id, created_dt").group_by(&:group_id)
|
|
178
|
+
end
|
|
179
|
+
end
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
require 'delorean_lang'
|
|
2
|
+
|
|
3
|
+
class Marty::DataChange
|
|
4
|
+
include Delorean::Model
|
|
5
|
+
|
|
6
|
+
# Some arbitrary limit so we don't allow enormous queries
|
|
7
|
+
MAX_COUNT = 64000
|
|
8
|
+
|
|
9
|
+
delorean_fn :changes, sig: 3 do
|
|
10
|
+
|t0, t1, class_name|
|
|
11
|
+
|
|
12
|
+
klass = class_name.constantize
|
|
13
|
+
|
|
14
|
+
t0 = 'infinity' if t0 == Float::INFINITY
|
|
15
|
+
t1 = 'infinity' if t1 == Float::INFINITY
|
|
16
|
+
|
|
17
|
+
info = Marty::DataExporter.class_info(klass)
|
|
18
|
+
changes = get_changed_data(t0, t1, klass)
|
|
19
|
+
|
|
20
|
+
changes.inject({}) { |h, (group_id, ol)|
|
|
21
|
+
h[group_id] = ol.each_with_index.map { |o, i|
|
|
22
|
+
profile = {
|
|
23
|
+
"obj" => o,
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
# Create a profile hash for each object in the group.
|
|
27
|
+
# "status" tells us if the object is old/new/mod. If
|
|
28
|
+
# status=="mod" then "changes" will provide the list of
|
|
29
|
+
# columns which changed. If the object was deleted during
|
|
30
|
+
# t0-t1 then we set the deleted flag in the profile.
|
|
31
|
+
profile["deleted"] = (group_id == o.id &&
|
|
32
|
+
o.obsoleted_dt != Float::INFINITY &&
|
|
33
|
+
(t1 == 'infinity' || o.obsoleted_dt < t1)
|
|
34
|
+
)
|
|
35
|
+
if i == 0
|
|
36
|
+
profile["status"] = o.created_dt < t0 ? "old" : "new"
|
|
37
|
+
prev = nil
|
|
38
|
+
else
|
|
39
|
+
profile["status"], prev = "mod", prev = ol[i-1]
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
profile["attrs"] = info[:cols].map { |c|
|
|
43
|
+
{
|
|
44
|
+
# FIXME: using .first on export_attr -- this will not work
|
|
45
|
+
# if the attr is an association which will requires
|
|
46
|
+
# multiple keys to identify (e.g. Rule: name & version)
|
|
47
|
+
"value" => Marty::DataExporter.export_attr(o, c, info).first,
|
|
48
|
+
"changed" => prev && (o.send(c.to_sym) != prev.send(c.to_sym)),
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
profile
|
|
53
|
+
}
|
|
54
|
+
h
|
|
55
|
+
}
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
delorean_fn :change_summary, sig: 3 do
|
|
59
|
+
|t0, t1, class_name|
|
|
60
|
+
|
|
61
|
+
klass = class_name.constantize
|
|
62
|
+
|
|
63
|
+
t0 = 'infinity' if t0 == Float::INFINITY
|
|
64
|
+
t1 = 'infinity' if t1 == Float::INFINITY
|
|
65
|
+
|
|
66
|
+
info = Marty::DataExporter.class_info(klass)
|
|
67
|
+
changes = get_changed_data(t0, t1, klass)
|
|
68
|
+
|
|
69
|
+
created = updated = deleted = 0
|
|
70
|
+
|
|
71
|
+
changes.each { |group_id, ol|
|
|
72
|
+
ol.each_with_index.map { |o, i|
|
|
73
|
+
deleted +=1 if (group_id == o.id &&
|
|
74
|
+
o.obsoleted_dt != Float::INFINITY &&
|
|
75
|
+
(t1 == 'infinity' || o.obsoleted_dt < t1)
|
|
76
|
+
)
|
|
77
|
+
if i == 0
|
|
78
|
+
created +=1 unless o.created_dt < t0
|
|
79
|
+
else
|
|
80
|
+
updated += 1
|
|
81
|
+
end
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
{'created' => created, 'updated' => updated, 'deleted' => deleted}
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
delorean_fn :class_list, sig: 0 do
|
|
89
|
+
Rails.configuration.marty.class_list.sort.uniq || []
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
delorean_fn :class_headers, sig: 1 do
|
|
93
|
+
|class_name|
|
|
94
|
+
|
|
95
|
+
klass = class_name.constantize
|
|
96
|
+
info = Marty::DataExporter.class_info(klass)
|
|
97
|
+
info[:cols].map { |c|
|
|
98
|
+
# strip _id if it's an assoc
|
|
99
|
+
c = c[0..-4] if info[:assoc][c]
|
|
100
|
+
I18n.t(c, scope: 'attributes')
|
|
101
|
+
}
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
delorean_fn :user_name, sig: 1 do
|
|
105
|
+
|user_id|
|
|
106
|
+
|
|
107
|
+
Marty::User.find_by_id(user_id).try(:name)
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
delorean_fn :sanitize_classes, sig: 1 do
|
|
111
|
+
|classes|
|
|
112
|
+
classes = classes.split(/,\s*/) if classes.is_a? String
|
|
113
|
+
|
|
114
|
+
classes.to_set & class_list.to_set
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
delorean_fn :do_export, sig: [2, 3] do
|
|
118
|
+
|pt, klass, sort_field=nil|
|
|
119
|
+
|
|
120
|
+
# allow classes on class_list or any Enum to be exported
|
|
121
|
+
raise "'#{klass}' not on class_list" unless
|
|
122
|
+
class_list.member?(klass) || klass.constantize.is_a?(Marty::Enum)
|
|
123
|
+
|
|
124
|
+
Marty::DataExporter.do_export(pt, klass.constantize, sort_field)
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
def self.get_changed_data(t0, t1, klass)
|
|
128
|
+
# The following test fails when t0/t1 are infinity. ActiveSupport
|
|
129
|
+
# doesn't know about infinity.
|
|
130
|
+
# return unless t0 < t1
|
|
131
|
+
|
|
132
|
+
change_q = '(obsoleted_dt >= ? AND obsoleted_dt < ?)' +
|
|
133
|
+
' OR (created_dt >= ? AND created_dt < ?)'
|
|
134
|
+
|
|
135
|
+
raise "Change count exceeds limit #{MAX_COUNT}" if
|
|
136
|
+
klass.where(change_q, t0, t1, t0, t1).count > MAX_COUNT
|
|
137
|
+
|
|
138
|
+
klass.where(change_q, t0, t1, t0, t1).
|
|
139
|
+
order("group_id, created_dt").group_by(&:group_id)
|
|
140
|
+
end
|
|
141
|
+
end
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
module Marty::Enum
|
|
2
|
+
def [](index)
|
|
3
|
+
@LOOKUP_CACHE ||= {}
|
|
4
|
+
|
|
5
|
+
index = index.to_s
|
|
6
|
+
|
|
7
|
+
res = @LOOKUP_CACHE[index] ||= find_by_name(index)
|
|
8
|
+
|
|
9
|
+
return res if res
|
|
10
|
+
|
|
11
|
+
raise "no such #{self.name}: '#{index}'"
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def to_s
|
|
15
|
+
# FIXME: hacky since not all enums have name
|
|
16
|
+
self.name
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def clear_lookup_cache!
|
|
20
|
+
@LOOKUP_CACHE.clear if @LOOKUP_CACHE
|
|
21
|
+
end
|
|
22
|
+
end
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
module Marty::Enum
|
|
2
|
+
def method_missing(meth, *args, &block)
|
|
3
|
+
if meth.to_s =~ /^[A-Z_]+$/ && args.empty?
|
|
4
|
+
items = self.all
|
|
5
|
+
items.each { |item|
|
|
6
|
+
name = item.name.upcase.gsub(/[\/\s-]/, '_')
|
|
7
|
+
self.define_singleton_method(name) do
|
|
8
|
+
item
|
|
9
|
+
end unless self.methods.member?(name.to_sym)
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
return self.send(meth) if self.methods.member?(meth)
|
|
13
|
+
end
|
|
14
|
+
super
|
|
15
|
+
end
|
|
16
|
+
end
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
class Marty::ImportType < Marty::Base
|
|
2
|
+
class ImportTypeValidator < ActiveModel::Validator
|
|
3
|
+
def validate(entry)
|
|
4
|
+
klass = entry.get_model_class
|
|
5
|
+
|
|
6
|
+
unless klass.is_a?(Class) && klass < ActiveRecord::Base
|
|
7
|
+
entry.errors[:base] = "bad model name"
|
|
8
|
+
return
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
[
|
|
12
|
+
entry.cleaner_function,
|
|
13
|
+
entry.validation_function,
|
|
14
|
+
entry.preprocess_function,
|
|
15
|
+
].each { |func|
|
|
16
|
+
entry.errors[:base] = "unknown class method #{func}" if
|
|
17
|
+
func && !klass.respond_to?(func.to_sym)
|
|
18
|
+
}
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
belongs_to :role
|
|
23
|
+
|
|
24
|
+
validates_presence_of :name, :db_model_name, :role_id
|
|
25
|
+
validates_uniqueness_of :name
|
|
26
|
+
validates_with ImportTypeValidator
|
|
27
|
+
|
|
28
|
+
def get_model_class
|
|
29
|
+
db_model_name.constantize
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
def allow_import?
|
|
33
|
+
Mcfly.whodunnit && Mcfly.whodunnit.roles.pluck(:id).include?(role_id)
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
delorean_fn :lookup, sig: 1 do
|
|
37
|
+
|name|
|
|
38
|
+
self.find_by_name(name)
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
delorean_fn :get_all, sig: 0 do
|
|
42
|
+
self.all
|
|
43
|
+
end
|
|
44
|
+
end
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
class Marty::ImportType < Marty::Base
|
|
2
|
+
class ImportTypeValidator < ActiveModel::Validator
|
|
3
|
+
def validate(entry)
|
|
4
|
+
klass = entry.get_model_class
|
|
5
|
+
|
|
6
|
+
unless klass.is_a?(Class) && klass < ActiveRecord::Base
|
|
7
|
+
entry.errors[:base] = "bad model name"
|
|
8
|
+
return
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
[entry.cleaner_function, entry.validation_function].each { |func|
|
|
12
|
+
entry.errors[:base] = "unknown class method #{func}" if
|
|
13
|
+
func && !klass.respond_to?(func.to_sym)
|
|
14
|
+
}
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
<<<<<<< HEAD
|
|
19
|
+
# attr_accessible :name,
|
|
20
|
+
# :model_name,
|
|
21
|
+
# :cleaner_function,
|
|
22
|
+
# :validation_function
|
|
23
|
+
=======
|
|
24
|
+
belongs_to :role
|
|
25
|
+
>>>>>>> master
|
|
26
|
+
|
|
27
|
+
validates_presence_of :name, :model_name, :role_id
|
|
28
|
+
validates_uniqueness_of :name
|
|
29
|
+
validates_with ImportTypeValidator
|
|
30
|
+
|
|
31
|
+
def get_model_class
|
|
32
|
+
model_name.constantize
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
def allow_import?()
|
|
36
|
+
Mcfly.whodunnit.roles.pluck(:id).
|
|
37
|
+
include?(role_id) if Mcfly.whodunnit
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
delorean_fn :lookup, sig: 1 do
|
|
41
|
+
|name|
|
|
42
|
+
self.find_by_name(name)
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
delorean_fn :get_all, sig: 0 do
|
|
46
|
+
self.all
|
|
47
|
+
end
|
|
48
|
+
end
|