rules_engine 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +20 -0
- data/README.rdoc +17 -0
- data/VERSION +1 -0
- data/init.rb +1 -0
- data/lib/rules_engine/cache.rb +26 -0
- data/lib/rules_engine/discovery.rb +51 -0
- data/lib/rules_engine/job_runner.rb +115 -0
- data/lib/rules_engine/rule.rb +60 -0
- data/lib/rules_engine/rule_outcome.rb +13 -0
- data/lib/rules_engine.rb +6 -0
- data/rails_generators/USAGE +68 -0
- data/rails_generators/blacklist_word.yml +6 -0
- data/rails_generators/blacklist_word_manifest.rb +26 -0
- data/rails_generators/generator.yml +58 -0
- data/rails_generators/generator_manifest.rb +282 -0
- data/rails_generators/rules_engine_generator.rb +35 -0
- data/rails_generators/simple.yml +6 -0
- data/rails_generators/simple_manifest.rb +21 -0
- data/rails_generators/template_manifest.rb +13 -0
- data/rails_generators/templates/app/controllers/re_jobs_controller.rb +18 -0
- data/rails_generators/templates/app/controllers/re_pipeline_jobs_controller.rb +17 -0
- data/rails_generators/templates/app/controllers/re_pipelines_controller.rb +143 -0
- data/rails_generators/templates/app/controllers/re_rules_controller.rb +140 -0
- data/rails_generators/templates/app/helpers/re_pipeline_helper.rb +29 -0
- data/rails_generators/templates/app/models/re_job.rb +123 -0
- data/rails_generators/templates/app/models/re_job_audit.rb +21 -0
- data/rails_generators/templates/app/models/re_pipeline.rb +69 -0
- data/rails_generators/templates/app/models/re_pipeline_activated.rb +26 -0
- data/rails_generators/templates/app/models/re_pipeline_activated_observer.rb +11 -0
- data/rails_generators/templates/app/models/re_pipeline_base.rb +68 -0
- data/rails_generators/templates/app/models/re_rule.rb +78 -0
- data/rails_generators/templates/app/models/re_rule_outcome.rb +40 -0
- data/rails_generators/templates/app/rules/blacklist_word.rb +89 -0
- data/rails_generators/templates/app/rules/simple.rb +44 -0
- data/rails_generators/templates/app/rules/template.rb +51 -0
- data/rails_generators/templates/app/views/layouts/_blockUI.html.erb +3 -0
- data/rails_generators/templates/app/views/re_jobs/_empty.html.erb +11 -0
- data/rails_generators/templates/app/views/re_jobs/_index.html.erb +66 -0
- data/rails_generators/templates/app/views/re_jobs/_show.html.erb +43 -0
- data/rails_generators/templates/app/views/re_jobs/index.html.erb +21 -0
- data/rails_generators/templates/app/views/re_jobs/index.js.erb +9 -0
- data/rails_generators/templates/app/views/re_jobs/show.html.erb +12 -0
- data/rails_generators/templates/app/views/re_jobs/show.js.erb +1 -0
- data/rails_generators/templates/app/views/re_pipeline_jobs/_empty.html.erb +11 -0
- data/rails_generators/templates/app/views/re_pipeline_jobs/_index.html.erb +41 -0
- data/rails_generators/templates/app/views/re_pipeline_jobs/index.html.erb +21 -0
- data/rails_generators/templates/app/views/re_pipeline_jobs/index.js.erb +10 -0
- data/rails_generators/templates/app/views/re_pipelines/_change.html.erb +46 -0
- data/rails_generators/templates/app/views/re_pipelines/_change_actions.html.erb +34 -0
- data/rails_generators/templates/app/views/re_pipelines/_confirm.html.erb +40 -0
- data/rails_generators/templates/app/views/re_pipelines/_edit.html.erb +21 -0
- data/rails_generators/templates/app/views/re_pipelines/_empty.html.erb +13 -0
- data/rails_generators/templates/app/views/re_pipelines/_index.html.erb +58 -0
- data/rails_generators/templates/app/views/re_pipelines/_new.html.erb +18 -0
- data/rails_generators/templates/app/views/re_pipelines/_show.html.erb +32 -0
- data/rails_generators/templates/app/views/re_pipelines/_show_actions.html.erb +3 -0
- data/rails_generators/templates/app/views/re_pipelines/change.html.erb +37 -0
- data/rails_generators/templates/app/views/re_pipelines/create.js.erb +8 -0
- data/rails_generators/templates/app/views/re_pipelines/edit.html.erb +11 -0
- data/rails_generators/templates/app/views/re_pipelines/edit.js.erb +5 -0
- data/rails_generators/templates/app/views/re_pipelines/index.html.erb +14 -0
- data/rails_generators/templates/app/views/re_pipelines/new.html.erb +9 -0
- data/rails_generators/templates/app/views/re_pipelines/new.js.erb +5 -0
- data/rails_generators/templates/app/views/re_pipelines/show.html.erb +41 -0
- data/rails_generators/templates/app/views/re_pipelines/update.js.erb +13 -0
- data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_edit.html.erb +7 -0
- data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_help.html.erb +2 -0
- data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_new.html.erb +7 -0
- data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_pipeline.html.erb +18 -0
- data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_script.html.erb +26 -0
- data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_title.html.erb +6 -0
- data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_word.html.erb +12 -0
- data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_words.html.erb +16 -0
- data/rails_generators/templates/app/views/re_rule_definitions/simple/_edit.html.erb +6 -0
- data/rails_generators/templates/app/views/re_rule_definitions/simple/_help.html.erb +2 -0
- data/rails_generators/templates/app/views/re_rule_definitions/simple/_new.html.erb +6 -0
- data/rails_generators/templates/app/views/re_rule_definitions/template/_edit.html.erb +6 -0
- data/rails_generators/templates/app/views/re_rule_definitions/template/_help.html.erb +2 -0
- data/rails_generators/templates/app/views/re_rule_definitions/template/_new.html.erb +6 -0
- data/rails_generators/templates/app/views/re_rules/_change.html.erb +57 -0
- data/rails_generators/templates/app/views/re_rules/_edit.html.erb +25 -0
- data/rails_generators/templates/app/views/re_rules/_empty.html.erb +12 -0
- data/rails_generators/templates/app/views/re_rules/_empty.js.erb +7 -0
- data/rails_generators/templates/app/views/re_rules/_error.html.erb +3 -0
- data/rails_generators/templates/app/views/re_rules/_help.html.erb +13 -0
- data/rails_generators/templates/app/views/re_rules/_index.html.erb +38 -0
- data/rails_generators/templates/app/views/re_rules/_menu.html.erb +41 -0
- data/rails_generators/templates/app/views/re_rules/_new.html.erb +26 -0
- data/rails_generators/templates/app/views/re_rules/_show.html.erb +43 -0
- data/rails_generators/templates/app/views/re_rules/destroy.js.erb +13 -0
- data/rails_generators/templates/app/views/re_rules/edit.html.erb +11 -0
- data/rails_generators/templates/app/views/re_rules/edit.js.erb +5 -0
- data/rails_generators/templates/app/views/re_rules/error.html.erb +11 -0
- data/rails_generators/templates/app/views/re_rules/error.js.erb +3 -0
- data/rails_generators/templates/app/views/re_rules/help.html.erb +11 -0
- data/rails_generators/templates/app/views/re_rules/help.js.erb +2 -0
- data/rails_generators/templates/app/views/re_rules/new.html.erb +11 -0
- data/rails_generators/templates/app/views/re_rules/new.js.erb +5 -0
- data/rails_generators/templates/app/views/re_rules/update.js.erb +20 -0
- data/rails_generators/templates/db/migrate/20100308225008_create_re_pipelines.rb +74 -0
- data/rails_generators/templates/lib/tasks/re_runner.rake +12 -0
- data/rails_generators/templates/public/images/re_job/error-14.png +0 -0
- data/rails_generators/templates/public/images/re_job/error-18.png +0 -0
- data/rails_generators/templates/public/images/re_job/error-25.png +0 -0
- data/rails_generators/templates/public/images/re_job/error-48.png +0 -0
- data/rails_generators/templates/public/images/re_job/goto-16.png +0 -0
- data/rails_generators/templates/public/images/re_job/info-14.png +0 -0
- data/rails_generators/templates/public/images/re_job/info-18.png +0 -0
- data/rails_generators/templates/public/images/re_job/info-25.png +0 -0
- data/rails_generators/templates/public/images/re_job/info-48.png +0 -0
- data/rails_generators/templates/public/images/re_job/list-14.png +0 -0
- data/rails_generators/templates/public/images/re_job/list-18.png +0 -0
- data/rails_generators/templates/public/images/re_job/list-25.png +0 -0
- data/rails_generators/templates/public/images/re_job/list-48.png +0 -0
- data/rails_generators/templates/public/images/re_job/loadingAnimation.gif +0 -0
- data/rails_generators/templates/public/images/re_job/next-disabled-14.png +0 -0
- data/rails_generators/templates/public/images/re_job/next-disabled-18.png +0 -0
- data/rails_generators/templates/public/images/re_job/next-disabled-25.png +0 -0
- data/rails_generators/templates/public/images/re_job/next-disabled-48.png +0 -0
- data/rails_generators/templates/public/images/re_job/next-enabled-14.png +0 -0
- data/rails_generators/templates/public/images/re_job/next-enabled-18.png +0 -0
- data/rails_generators/templates/public/images/re_job/next-enabled-25.png +0 -0
- data/rails_generators/templates/public/images/re_job/next-enabled-48.png +0 -0
- data/rails_generators/templates/public/images/re_job/prev-disabled-14.png +0 -0
- data/rails_generators/templates/public/images/re_job/prev-disabled-18.png +0 -0
- data/rails_generators/templates/public/images/re_job/prev-disabled-25.png +0 -0
- data/rails_generators/templates/public/images/re_job/prev-disabled-48.png +0 -0
- data/rails_generators/templates/public/images/re_job/prev-enabled-14.png +0 -0
- data/rails_generators/templates/public/images/re_job/prev-enabled-18.png +0 -0
- data/rails_generators/templates/public/images/re_job/prev-enabled-25.png +0 -0
- data/rails_generators/templates/public/images/re_job/prev-enabled-48.png +0 -0
- data/rails_generators/templates/public/images/re_job/success-14.png +0 -0
- data/rails_generators/templates/public/images/re_job/success-18.png +0 -0
- data/rails_generators/templates/public/images/re_job/success-25.png +0 -0
- data/rails_generators/templates/public/images/re_job/success-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/__destroy-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/__destroy-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/__destroy-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/__destroy-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/activate-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/activate-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/activate-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/activate-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/alert-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/alert-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/alert-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/alert-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/change-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/change-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/change-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/change-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/changed-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/changed-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/changed-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/changed-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/current-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/current-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/current-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/current-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/deactivate-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/deactivate-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/deactivate-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/deactivate-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/destroy-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/destroy-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/destroy-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/destroy-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/draft-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/draft-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/draft-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/draft-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/edit-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/edit-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/edit-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/edit-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/list-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/list-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/list-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/list-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/list-down.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/list-right.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/new-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/new-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/new-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/new-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/revert-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/revert-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/revert-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/revert-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/show-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/show-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/show-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/show-48.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/verify-14.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/verify-18.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/verify-25.png +0 -0
- data/rails_generators/templates/public/images/re_pipeline/verify-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/__destroy-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/__destroy-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/__destroy-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/__destroy-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/destroy-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/destroy-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/destroy-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/destroy-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/edit-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/edit-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/edit-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/edit-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/goto-pipeline-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/goto-pipeline-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-down-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-down-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-down-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-down-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-down-off-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-down-off-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-down-off-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-down-off-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-up-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-up-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-up-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-up-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-up-off-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-up-off-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-up-off-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/move-up-off-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/next-change-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/next-change-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/next-change-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/next-change-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/next-show-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/next-show-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/next-show-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/next-show-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/stop-failure-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/stop-failure-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/stop-failure-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/stop-failure-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/stop-success-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/stop-success-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/stop-success-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/stop-success-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/valid-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/valid-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/valid-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/valid-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule/verify-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule/verify-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule/verify-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule/verify-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/add-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/add-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/add-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/add-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/help-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/help-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/help-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/help-48.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/list-down.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/list-right.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/new-14.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/new-18.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/new-25.png +0 -0
- data/rails_generators/templates/public/images/re_rule_class/new-48.png +0 -0
- data/rails_generators/templates/public/javascripts/re_jobs.js +59 -0
- data/rails_generators/templates/public/javascripts/re_pipeline.js +54 -0
- data/rails_generators/templates/public/javascripts/re_pipeline_change.js +205 -0
- data/rails_generators/templates/public/javascripts/re_pipeline_index.js +24 -0
- data/rails_generators/templates/public/javascripts/re_pipeline_jobs.js +61 -0
- data/rails_generators/templates/public/javascripts/re_pipeline_new.js +34 -0
- data/rails_generators/templates/public/stylesheets/re_pipeline/accept.png +0 -0
- data/rails_generators/templates/public/stylesheets/re_pipeline/exclamation.png +0 -0
- data/rails_generators/templates/public/stylesheets/re_pipeline.css +509 -0
- data/rails_generators/templates/spec/controllers/re_pipelines_controller_spec.rb +111 -0
- data/rails_generators/templates/spec/models/re_job_audit_spec.rb +24 -0
- data/rails_generators/templates/spec/models/re_job_spec.rb +18 -0
- data/rails_generators/templates/spec/models/re_pipeline_activated_spec.rb +6 -0
- data/rails_generators/templates/spec/models/re_pipeline_base_spec.rb +157 -0
- data/rails_generators/templates/spec/models/re_pipeline_spec.rb +166 -0
- data/rails_generators/templates/spec/models/re_rule_outcome_spec.rb +97 -0
- data/rails_generators/templates/spec/models/re_rule_spec.rb +171 -0
- data/rails_generators/templates/spec/support/blueprint_re_pipelines.rb +11 -0
- data/spec/rules_engine_spec.rb +7 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +9 -0
- data/tasks/rspec.rake +18 -0
- metadata +363 -0
@@ -0,0 +1,54 @@
|
|
1
|
+
jQuery.growl_message = function(style, header, message, timeout){
|
2
|
+
var $m = $('<div class="' + style + '"></div>');
|
3
|
+
$m.append('<strong>' + header + '</strong>');
|
4
|
+
if (message) $m.append(' : ' + message);
|
5
|
+
if (timeout == undefined) timeout = 2300;
|
6
|
+
$.blockUI({
|
7
|
+
message: $m,
|
8
|
+
fadeIn: 700,
|
9
|
+
fadeOut: 2000,
|
10
|
+
centerY: false,
|
11
|
+
timeout: timeout,
|
12
|
+
showOverlay: false,
|
13
|
+
css: {
|
14
|
+
width: '450px',
|
15
|
+
top: '10px',
|
16
|
+
left: '',
|
17
|
+
right: '10px',
|
18
|
+
border: 'none',
|
19
|
+
padding: '5px',
|
20
|
+
opacity: 0.95,
|
21
|
+
cursor: null,
|
22
|
+
color: '#000',
|
23
|
+
backgroundColor: '#fff6bf',
|
24
|
+
'-webkit-border-radius': '10px',
|
25
|
+
'-moz-border-radius': '10px'
|
26
|
+
}
|
27
|
+
});
|
28
|
+
}
|
29
|
+
|
30
|
+
jQuery.error_message = function(message, timeout){
|
31
|
+
jQuery.growl_message('growl-error', 'Error', message, timeout);
|
32
|
+
}
|
33
|
+
jQuery.success_message = function(message, timeout){
|
34
|
+
jQuery.growl_message('growl-success', 'Success', message, timeout);
|
35
|
+
}
|
36
|
+
jQuery.notice_message = function(message, timeout){
|
37
|
+
jQuery.growl_message('growl-notice', 'Notice', message, timeout);
|
38
|
+
}
|
39
|
+
|
40
|
+
$(document).ready(function() {
|
41
|
+
// make success, notice and failure message growl at the user
|
42
|
+
if ($('.error').length) {
|
43
|
+
$.error_message($('.error').text());
|
44
|
+
$('.error').hide();
|
45
|
+
}
|
46
|
+
if ($('.success').length) {
|
47
|
+
$.success_message($('.success').text());
|
48
|
+
$('.success').hide();
|
49
|
+
}
|
50
|
+
if ($('.notice').length) {
|
51
|
+
$.notice_message($('.notice').text());
|
52
|
+
$('.notice').hide();
|
53
|
+
}
|
54
|
+
});
|
@@ -0,0 +1,205 @@
|
|
1
|
+
block_fetching_thickbox = function() {
|
2
|
+
$('#TB_ajaxContent').block({'message' : 'loading'});
|
3
|
+
}
|
4
|
+
|
5
|
+
unblock_fetching_thickbox = function() {
|
6
|
+
$('#TB_ajaxContent').unblock();
|
7
|
+
}
|
8
|
+
|
9
|
+
pipeline_action_confirm = function(id, title, action) {
|
10
|
+
$('#pipeline_action_title').attr('class', 'pipeline-' + id + ' red');
|
11
|
+
$('#pipeline_action_title').html(title);
|
12
|
+
$('#pipeline_action_content_code').html($('#pipeline_code').html());
|
13
|
+
$('#pipeline_action_content_title').html($('#pipeline_title').html());
|
14
|
+
|
15
|
+
$('#pipeline_action_ok').attr('href', '#pipeline_' + id + '_form');
|
16
|
+
$('#pipeline_action_ok').html("<span>" + action + "</span>")
|
17
|
+
|
18
|
+
tb_show("", '#?TB_inline=true&inlineId=pipeline_action_confirm&height=160&width=600', false);
|
19
|
+
}
|
20
|
+
|
21
|
+
|
22
|
+
$(document).ready(function() {
|
23
|
+
|
24
|
+
$('a.pipeline-action-edit').live('click', function() {
|
25
|
+
var pipeline = $(this).attr('href').replace('#', '');
|
26
|
+
|
27
|
+
tb_show("", '#?TB_inline=true&inlineId=tb_temp_frame&height=300&width=800', false);
|
28
|
+
block_fetching_thickbox();
|
29
|
+
$.get('/re_pipelines/' + pipeline + '/edit', null, unblock_fetching_thickbox, 'script');
|
30
|
+
return false;
|
31
|
+
});
|
32
|
+
|
33
|
+
$("#pipeline_edit_cancel").live('click', function() {
|
34
|
+
self.parent.tb_remove();
|
35
|
+
return false;
|
36
|
+
});
|
37
|
+
|
38
|
+
$('#pipeline_edit_update').live('click', function() {
|
39
|
+
block_fetching_thickbox();
|
40
|
+
$.post($('#pipeline_edit_form').attr('action'), $('#pipeline_edit_form').serialize(), unblock_fetching_thickbox, 'script');
|
41
|
+
return false;
|
42
|
+
});
|
43
|
+
|
44
|
+
$('a.pipeline-action-activate').live('click', function() {
|
45
|
+
pipeline_action_confirm('activate', "Confirm Activate Pipeline", "Activate")
|
46
|
+
return false;
|
47
|
+
});
|
48
|
+
|
49
|
+
$('a.pipeline-action-deactivate').live('click', function() {
|
50
|
+
pipeline_action_confirm('deactivate', "Confirm Deactivate Pipeline", "Deactivate")
|
51
|
+
return false;
|
52
|
+
});
|
53
|
+
|
54
|
+
$('a.pipeline-action-revert').live('click', function() {
|
55
|
+
pipeline_action_confirm('revert', "Confirm Discard Pipeline Changed", "Discard Changes")
|
56
|
+
return false;
|
57
|
+
});
|
58
|
+
|
59
|
+
$('a.pipeline-action-delete').live('click', function() {
|
60
|
+
pipeline_action_confirm('delete', "Confirm Delete <strong>This cannot be undone !!!</strong>", "Delete Pipeline")
|
61
|
+
return false;
|
62
|
+
});
|
63
|
+
|
64
|
+
$("#pipeline_action_cancel").live('click', function() {
|
65
|
+
self.parent.tb_remove();
|
66
|
+
return false;
|
67
|
+
});
|
68
|
+
|
69
|
+
$('#pipeline_action_ok').live('click', function() {
|
70
|
+
var form_id = $(this).attr('href');
|
71
|
+
$.post($(form_id).attr('action'), $(form_id).serialize(), unblock_fetching_thickbox, 'script');
|
72
|
+
return false;
|
73
|
+
});
|
74
|
+
|
75
|
+
// NEW RULE
|
76
|
+
$('a.rule-class-new').live('click', function() {
|
77
|
+
var values = $(this).attr('href').replace('#', '').split('|');
|
78
|
+
if (values.length != 2)
|
79
|
+
return false;
|
80
|
+
|
81
|
+
tb_show("", '#?TB_inline=true&inlineId=tb_temp_frame&height=300&width=780', false);
|
82
|
+
block_fetching_thickbox();
|
83
|
+
$.get('/re_pipelines/' + values[0] + '/re_rules/new?rule_class=' + values[1], null, unblock_fetching_thickbox, 'script');
|
84
|
+
return false;
|
85
|
+
});
|
86
|
+
|
87
|
+
$("#rule_new_cancel").live('click', function() {
|
88
|
+
self.parent.tb_remove();
|
89
|
+
return false;
|
90
|
+
});
|
91
|
+
|
92
|
+
$('#rule_new_insert').live('click', function() {
|
93
|
+
block_fetching_thickbox();
|
94
|
+
$.post($('#rule_new_form').attr('action'), $('#rule_new_form').serialize(), unblock_fetching_thickbox, 'script');
|
95
|
+
return false;
|
96
|
+
});
|
97
|
+
|
98
|
+
// RULE EDIT
|
99
|
+
$('a.rule-edit').live('click', function() {
|
100
|
+
var values = $(this).attr('href').replace('#', '').split('|');
|
101
|
+
if (values.length != 2)
|
102
|
+
return false;
|
103
|
+
|
104
|
+
tb_show("", '#?TB_inline=true&inlineId=tb_temp_frame&height=300&width=780', false);
|
105
|
+
block_fetching_thickbox();
|
106
|
+
$.get('/re_pipelines/' + values[0] + '/re_rules/' + values[1] + '/edit', null, unblock_fetching_thickbox, 'script');
|
107
|
+
return false;
|
108
|
+
});
|
109
|
+
|
110
|
+
$("#rule_edit_cancel").live('click', function() {
|
111
|
+
self.parent.tb_remove();
|
112
|
+
return false;
|
113
|
+
});
|
114
|
+
|
115
|
+
$('#rule_edit_update').live('click', function() {
|
116
|
+
block_fetching_thickbox();
|
117
|
+
$.post($('#rule_edit_form').attr('action'), $('#rule_edit_form').serialize(), unblock_fetching_thickbox, 'script');
|
118
|
+
return false;
|
119
|
+
});
|
120
|
+
|
121
|
+
// RULE DELETE
|
122
|
+
$('a.rule-delete').live('click', function() {
|
123
|
+
var values = $(this).attr('href').replace('#', '').split('|');
|
124
|
+
if (values.length != 2)
|
125
|
+
return false;
|
126
|
+
|
127
|
+
$('#rule_delete_ok').attr('href', '#rule_delete_form_' + values[1])
|
128
|
+
tb_show("", '#?TB_inline=true&inlineId=rule_delete_confirm&height=160&width=500', false);
|
129
|
+
return false;
|
130
|
+
});
|
131
|
+
|
132
|
+
$("#rule_delete_cancel").live('click', function() {
|
133
|
+
self.parent.tb_remove();
|
134
|
+
return false;
|
135
|
+
});
|
136
|
+
|
137
|
+
$('#rule_delete_ok').live('click', function() {
|
138
|
+
var form_id = $(this).attr('href');
|
139
|
+
$.post($(form_id).attr('action'), $(form_id).serialize(), unblock_fetching_thickbox, 'script');
|
140
|
+
return false;
|
141
|
+
});
|
142
|
+
|
143
|
+
// RULE MOVE
|
144
|
+
$('a.rule-move-up').live('click', function() {
|
145
|
+
var values = $(this).attr('href').replace('#', '').split('|');
|
146
|
+
if (values.length != 2)
|
147
|
+
return false;
|
148
|
+
|
149
|
+
$(this).removeClass('rule-move-up');
|
150
|
+
$(this).addClass('rule-move-up-off');
|
151
|
+
|
152
|
+
$.post($('#rule_move_up_form_' + values[1]).attr('action'), $('#rule_move_up_form_' + values[1]).serialize(), null, 'script');
|
153
|
+
return false;
|
154
|
+
});
|
155
|
+
|
156
|
+
$('a.rule-move-down').live('click', function() {
|
157
|
+
var values = $(this).attr('href').replace('#', '').split('|');
|
158
|
+
if (values.length != 2)
|
159
|
+
return false;
|
160
|
+
|
161
|
+
$(this).removeClass('rule-move-down');
|
162
|
+
$(this).addClass('rule-move-down-off');
|
163
|
+
|
164
|
+
$.post($('#rule_move_down_form_' + values[1]).attr('action'), $('#rule_move_down_form_' + values[1]).serialize(), null, 'script');
|
165
|
+
return false;
|
166
|
+
});
|
167
|
+
|
168
|
+
// RULE HELP
|
169
|
+
$('a.rule-class-help').live('click', function() {
|
170
|
+
var values = $(this).attr('href').replace('#', '').split('|');
|
171
|
+
if (values.length != 2)
|
172
|
+
return false;
|
173
|
+
|
174
|
+
tb_show("", '#?TB_inline=true&inlineId=tb_temp_frame&height=300&width=800', false);
|
175
|
+
block_fetching_thickbox();
|
176
|
+
$.get('/re_pipelines/' + values[0] + '/re_rules/help?rule_class=' + values[1], null, unblock_fetching_thickbox, 'script');
|
177
|
+
return false;
|
178
|
+
});
|
179
|
+
|
180
|
+
$("#rule_help_cancel").live('click', function() {
|
181
|
+
self.parent.tb_remove();
|
182
|
+
return false;
|
183
|
+
});
|
184
|
+
|
185
|
+
|
186
|
+
// RULE LIST
|
187
|
+
$('a.rule-class-list-toggle').live('click', function() {
|
188
|
+
var $h5 = $(this).find('h5')
|
189
|
+
var $list = $(this).next('.rule-class-list')
|
190
|
+
if ($h5.hasClass('rule-class-list-down')) {
|
191
|
+
$list.slideUp(150, function() {
|
192
|
+
$h5.removeClass('rule-class-list-down');
|
193
|
+
$h5.addClass('rule-class-list-right');
|
194
|
+
});
|
195
|
+
} else {
|
196
|
+
$list.slideDown(150, function() {
|
197
|
+
$h5.removeClass('rule-class-list-right');
|
198
|
+
$h5.addClass('rule-class-list-down');
|
199
|
+
});
|
200
|
+
}
|
201
|
+
});
|
202
|
+
|
203
|
+
});
|
204
|
+
|
205
|
+
|
@@ -0,0 +1,24 @@
|
|
1
|
+
$(document).ready(function() {
|
2
|
+
|
3
|
+
// RULE LIST
|
4
|
+
$('a.pipeline-rule-list-toggle').live('click', function() {
|
5
|
+
var id = $(this).attr('href').replace('#', '');
|
6
|
+
|
7
|
+
var $div = $(this).find('div:first')
|
8
|
+
var $list = $('#pipeline_rule_list_' + id)
|
9
|
+
if ($div.hasClass('pipeline-rule-list-down')) {
|
10
|
+
$list.slideUp(150, function() {
|
11
|
+
$div.removeClass('pipeline-rule-list-down');
|
12
|
+
$div.addClass('pipeline-rule-list-right');
|
13
|
+
});
|
14
|
+
} else {
|
15
|
+
$list.slideDown(150, function() {
|
16
|
+
$div.removeClass('pipeline-rule-list-right');
|
17
|
+
$div.addClass('pipeline-rule-list-down');
|
18
|
+
});
|
19
|
+
}
|
20
|
+
});
|
21
|
+
|
22
|
+
});
|
23
|
+
|
24
|
+
|
@@ -0,0 +1,61 @@
|
|
1
|
+
block_fetching_thickbox = function() {
|
2
|
+
$('#TB_ajaxContent').block({'message' : 'loading'});
|
3
|
+
}
|
4
|
+
|
5
|
+
unblock_fetching_thickbox = function() {
|
6
|
+
$('#TB_ajaxContent').unblock();
|
7
|
+
}
|
8
|
+
|
9
|
+
get_pipeline_job_list = function(page) {
|
10
|
+
var pipeline = $('#job_list_pipeline').attr('href').replace('#', '');
|
11
|
+
$.get('/re_pipelines/' + pipeline + '/re_jobs?page=' + page, null, null, 'script');
|
12
|
+
}
|
13
|
+
|
14
|
+
|
15
|
+
$(document).ready(function() {
|
16
|
+
get_pipeline_job_list(1);
|
17
|
+
|
18
|
+
$('a.pipeline-job-detail').live('click', function() {
|
19
|
+
var job = $(this).attr('href').replace('#', '');
|
20
|
+
|
21
|
+
tb_show("", '#?TB_inline=true&inlineId=tb_temp_frame&height=450&width=800', false);
|
22
|
+
block_fetching_thickbox();
|
23
|
+
$.get('/re_jobs/' + job, null, unblock_fetching_thickbox, 'script');
|
24
|
+
|
25
|
+
return false;
|
26
|
+
});
|
27
|
+
|
28
|
+
|
29
|
+
$('a.job-page-prev-enabled').live('click', function() {
|
30
|
+
var page = $(this).attr('href').replace('#', '');
|
31
|
+
|
32
|
+
$('#job_list').hide();
|
33
|
+
$('#job_list_pending').show();
|
34
|
+
get_pipeline_job_list(page);
|
35
|
+
|
36
|
+
return false;
|
37
|
+
});
|
38
|
+
|
39
|
+
$('a.job-page-prev-disabled').live('click', function() {
|
40
|
+
return false;
|
41
|
+
});
|
42
|
+
|
43
|
+
|
44
|
+
$('a.job-page-next-enabled').live('click', function() {
|
45
|
+
var page = $(this).attr('href').replace('#', '');
|
46
|
+
|
47
|
+
$('#job_list').hide();
|
48
|
+
$('#job_list_pending').show();
|
49
|
+
get_pipeline_job_list(page);
|
50
|
+
|
51
|
+
return false;
|
52
|
+
});
|
53
|
+
|
54
|
+
$('a.job-page-next-disabled').live('click', function() {
|
55
|
+
return false;
|
56
|
+
});
|
57
|
+
|
58
|
+
|
59
|
+
});
|
60
|
+
|
61
|
+
|
@@ -0,0 +1,34 @@
|
|
1
|
+
|
2
|
+
block_fetching_thickbox = function() {
|
3
|
+
$('#TB_ajaxContent').block({'message' : 'loading'});
|
4
|
+
}
|
5
|
+
|
6
|
+
unblock_fetching_thickbox = function() {
|
7
|
+
$('#TB_ajaxContent').unblock();
|
8
|
+
}
|
9
|
+
|
10
|
+
$(document).ready(function() {
|
11
|
+
|
12
|
+
$('a.pipeline-new').live('click', function() {
|
13
|
+
tb_show("", '#?TB_inline=true&inlineId=tb_temp_frame&height=300&width=800', false);
|
14
|
+
block_fetching_thickbox();
|
15
|
+
$.get('/re_pipelines/new', null, unblock_fetching_thickbox, 'script');
|
16
|
+
return false;
|
17
|
+
});
|
18
|
+
|
19
|
+
|
20
|
+
$("#pipeline_new_cancel").live('click', function() {
|
21
|
+
self.parent.tb_remove();
|
22
|
+
return false;
|
23
|
+
});
|
24
|
+
|
25
|
+
$('#pipeline_new_insert').live('click', function() {
|
26
|
+
block_fetching_thickbox();
|
27
|
+
|
28
|
+
$.post($('#pipeline_new_form').attr('action'), $('#pipeline_new_form').serialize(), unblock_fetching_thickbox, 'script');
|
29
|
+
|
30
|
+
return false;
|
31
|
+
});
|
32
|
+
});
|
33
|
+
|
34
|
+
|