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,41 @@
|
|
1
|
+
<% set_javascript_include 're_pipeline_jobs' %>
|
2
|
+
<% set_subnav 'View Pipeline', link_to("All Pipelines", re_pipelines_path, :class => "pipeline-list") %>
|
3
|
+
|
4
|
+
<div class="prepend-1 span-16 border">
|
5
|
+
<%= render :partial => 'show' %>
|
6
|
+
</div>
|
7
|
+
<div class="span-7 last">
|
8
|
+
<%= render :partial => 'show_actions' %>
|
9
|
+
</div>
|
10
|
+
<div class="clear"></div>
|
11
|
+
|
12
|
+
<hr/>
|
13
|
+
|
14
|
+
<div class="prepend-1 span-16 border">
|
15
|
+
<div class="infobox">
|
16
|
+
|
17
|
+
<div class="clear top-5"></div>
|
18
|
+
<% @re_pipeline.re_rules.each do |re_rule | %>
|
19
|
+
<%= render '/re_rules/show', :re_rule => re_rule, :first_rule => re_rule == @re_pipeline.re_rules[0], :last_rule => re_rule == @re_pipeline.re_rules[-1] %>
|
20
|
+
<div class="clear"></div>
|
21
|
+
<% end %>
|
22
|
+
|
23
|
+
<div class="clear top-5"></div>
|
24
|
+
<%= render '/re_rules/empty', :re_pipeline => @re_pipeline %>
|
25
|
+
</div>
|
26
|
+
</div>
|
27
|
+
<div class="span-7 last">
|
28
|
+
<%= render '/re_pipeline_jobs/empty', :hide => true %>
|
29
|
+
|
30
|
+
<div id="job_list_pending" class="infobox">
|
31
|
+
<h3 class="left-20">Updating Job List</h3>
|
32
|
+
<a id="job_list_pipeline" href="#<%= @re_pipeline.id %>"/>
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<div id="job_list">
|
36
|
+
</div>
|
37
|
+
|
38
|
+
<div class="clear"></div>
|
39
|
+
|
40
|
+
</div>
|
41
|
+
<div class="clear"></div>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<%= javascript_alert_messages %>
|
2
|
+
|
3
|
+
self.parent.tb_remove();
|
4
|
+
|
5
|
+
$('#change_pipeline').html('<%=escape_javascript(render('/re_pipelines/change'))%>');
|
6
|
+
$('#change_pipeline_actions').html('<%=escape_javascript(render('/re_pipelines/change_actions'))%>');
|
7
|
+
|
8
|
+
<%= render('/re_rules/empty', :re_pipeline => @re_pipeline) %>
|
9
|
+
|
10
|
+
$('#change_rules').html('')
|
11
|
+
<% @re_pipeline.re_rules.each do |re_rule | %>
|
12
|
+
$('#change_rules').append('<%=escape_javascript(render('/re_rules/change', :re_rule => re_rule, :first_rule => re_rule == @re_pipeline.re_rules[0], :last_rule => re_rule == @re_pipeline.re_rules[-1]))%>');
|
13
|
+
<% end %>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<%= render :partial => '/re_rule_definitions/blacklist_word/script' %>
|
2
|
+
|
3
|
+
<%= render :partial => '/re_rule_definitions/blacklist_word/title' %>
|
4
|
+
|
5
|
+
<%= render :partial => '/re_rule_definitions/blacklist_word/words', :locals => { :f => f } %>
|
6
|
+
|
7
|
+
<%= render :partial => '/re_rule_definitions/blacklist_word/pipeline' %>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<%= render :partial => '/re_rule_definitions/blacklist_word/script' %>
|
2
|
+
|
3
|
+
<%= render :partial => '/re_rule_definitions/blacklist_word/title' %>
|
4
|
+
|
5
|
+
<%= render :partial => '/re_rule_definitions/blacklist_word/words', :locals => { :f => f } %>
|
6
|
+
|
7
|
+
<%= render :partial => '/re_rule_definitions/blacklist_word/pipeline' %>
|
data/rails_generators/templates/app/views/re_rule_definitions/blacklist_word/_pipeline.html.erb
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
<div class="clear top-10"></div>
|
2
|
+
<hr/>
|
3
|
+
|
4
|
+
<div class="span-8">
|
5
|
+
<%= select_ext "Match Outcome", 'blacklist_word_pipeline_action',
|
6
|
+
options_for_select([
|
7
|
+
["Continue Next", 'next'],
|
8
|
+
["Stop Success", 'stop_success'],
|
9
|
+
["Stop Failure", 'stop_failure'],
|
10
|
+
["Add to Pipeline", 'start_pipeline']
|
11
|
+
],
|
12
|
+
@rule.pipeline_action || params['blacklist_word_pipeline_action']),
|
13
|
+
:required => true %>
|
14
|
+
</div>
|
15
|
+
<div class="prepend-1 span-7 last">
|
16
|
+
<%= text_field_ext "Pipeline Name", "blacklist_word_pipeline", @rule.pipeline || params[:blacklist_word_pipeline] || '', :size => 20, :required => true, :span => '3x5' %>
|
17
|
+
</div>
|
18
|
+
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<% javascript_tag do %>
|
2
|
+
var new_blacklist_word = '<%=escape_javascript(render(:partial => "/re_rule_definitions/blacklist_word/word"))%>'
|
3
|
+
|
4
|
+
var updatePipelineAction = function() {
|
5
|
+
if ($('#blacklist_word_pipeline_action').attr('value') == "start_pipeline")
|
6
|
+
{
|
7
|
+
$('#blacklist_word_pipeline').dougo_form_enable();
|
8
|
+
$('#blacklist_word_pipeline').removeAttr("disabled");
|
9
|
+
} else {
|
10
|
+
$('#blacklist_word_pipeline').dougo_form_disable();
|
11
|
+
$('#blacklist_word_pipeline').attr("disabled", true);
|
12
|
+
}
|
13
|
+
}
|
14
|
+
|
15
|
+
$(document).ready(function() {
|
16
|
+
$('#rule_title').focus();
|
17
|
+
$("#blacklist_word_pipeline").autocomplete('/re_pipelines/lookup?t=title', { multiple: false });
|
18
|
+
|
19
|
+
$('#blacklist_word_pipeline_action').change(function() {
|
20
|
+
updatePipelineAction();
|
21
|
+
});
|
22
|
+
|
23
|
+
updatePipelineAction();
|
24
|
+
});
|
25
|
+
|
26
|
+
<% end %>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<% id = local_assigns[:position] ? position : 'NEW_RECORD' %>
|
2
|
+
|
3
|
+
<div id="blacklist_word_<%=id%>">
|
4
|
+
<%= text_field_ext "Words to blacklist", "blacklist_word[#{id}][word]",
|
5
|
+
local_assigns[:word] ? word : '',
|
6
|
+
:size => 40,
|
7
|
+
:required => id == 0,
|
8
|
+
:span => '4x12',
|
9
|
+
:hint => render_remove_link("Remove", "blacklist_word[#{id}]", id) %>
|
10
|
+
|
11
|
+
<%= render_delete_field("blacklist_word[#{id}]", id) %>
|
12
|
+
</div>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<% position = 0 %>
|
2
|
+
<% (@rule.words || []).each do | word | %>
|
3
|
+
<% f.fields_for :rule_data, {:first => false} do |frd| %>
|
4
|
+
<%= render :partial => '/re_rule_definitions/blacklist_word/word', :locals => { :f => frd, :position => position, :word => word} %>
|
5
|
+
<% position += 1 %>
|
6
|
+
<% end %>
|
7
|
+
<% end %>
|
8
|
+
<% if position == 0 %>
|
9
|
+
<% f.fields_for :rule_data, {:first => false} do |frd| %>
|
10
|
+
<%= render :partial => '/re_rule_definitions/blacklist_word/word', :locals => { :f => frd, :position => position} %>
|
11
|
+
<% end %>
|
12
|
+
<% end %>
|
13
|
+
|
14
|
+
<div id="new_position_blacklist_word"></div>
|
15
|
+
<%= form_text_ext "", render_add_link('Add another word to the blacklist', 'blacklist_word') %>
|
16
|
+
|
@@ -0,0 +1,57 @@
|
|
1
|
+
<% re_rule_verify = re_rule.verify %>
|
2
|
+
<% local_first_rule = local_assigns[:first_rule] && first_rule %>
|
3
|
+
<% local_last_rule = local_assigns[:last_rule] && last_rule %>
|
4
|
+
|
5
|
+
<div class="span-15 last rule-change" id="change_rule_<%= re_rule.id %>">
|
6
|
+
<div class="<%= re_rule_verify.blank? ? 'bluebox' : 'redbox' %> rule-status-<%= re_rule_verify.blank? ? 'valid' : 'verify' %>">
|
7
|
+
<h3 class="float-left"><%= re_rule.title %></h3>
|
8
|
+
<div class="float-right">
|
9
|
+
<%= link_to("<span>Edit</span>", "##{@re_pipeline.id}|#{re_rule.id}", :class => "rule-edit") %>
|
10
|
+
<%= link_to("<span>Delete</span>", "##{@re_pipeline.id}|#{re_rule.id}", :class => "rule-delete") %>
|
11
|
+
<%= link_to("<span>Move Down</span>", "##{@re_pipeline.id}|#{re_rule.id}", :class => "#{local_last_rule ? 'rule-move-down-off' : 'rule-move-down'}") %>
|
12
|
+
<%= link_to("<span>Move Up</span>", "##{@re_pipeline.id}|#{re_rule.id}", :class => "#{local_first_rule ? 'rule-move-up-off' : 'rule-move-up'}") %>
|
13
|
+
</div>
|
14
|
+
<div class="clear"></div>
|
15
|
+
</div>
|
16
|
+
<div class="<%= re_rule_verify.blank? ? 'bluebox' : 'redbox' %> no-top">
|
17
|
+
<div class="span-10">
|
18
|
+
<p class="top-5 left-10">
|
19
|
+
<%= re_rule.summary %>
|
20
|
+
</p>
|
21
|
+
</div>
|
22
|
+
|
23
|
+
<div class="prepend-10 top-10">
|
24
|
+
<% if re_rule.re_rule_outcomes.empty? %>
|
25
|
+
<div class="rule-continue">Continue</div>
|
26
|
+
<% end %>
|
27
|
+
<% unless re_rule.re_rule_outcome_next.nil? %>
|
28
|
+
<div class="rule-continue">Continue</div>
|
29
|
+
<% end %>
|
30
|
+
<% re_rule.re_rule_outcomes_start_pipeline.each do |re_rule_outcome| %>
|
31
|
+
<div class="rule-goto-pipeline"><%= re_rule_outcome.pipeline_code %></div>
|
32
|
+
<% end %>
|
33
|
+
<% unless re_rule.re_rule_outcome_failure.nil? %>
|
34
|
+
<div class="rule-stop-failure">Stop Failure</div>
|
35
|
+
<% end %>
|
36
|
+
<% unless re_rule.re_rule_outcome_success.nil? %>
|
37
|
+
<div class="rule-stop-success">Stop Success</div>
|
38
|
+
<% end %>
|
39
|
+
</div>
|
40
|
+
<div class="clear"></div>
|
41
|
+
</div>
|
42
|
+
</div>
|
43
|
+
|
44
|
+
<% unless local_last_rule %>
|
45
|
+
<div class="prepend-7 span-2"><div class="rule-next-change"></div></div>
|
46
|
+
<% end %>
|
47
|
+
|
48
|
+
<div style="display:none">
|
49
|
+
<% dougo_form_for(re_rule, :url => re_pipeline_re_rule_path(@re_pipeline, re_rule), :html => {:method => :delete, :id => "rule_delete_form_#{re_rule.id}"}) do |f| %>
|
50
|
+
<% end %>
|
51
|
+
|
52
|
+
<% dougo_form_for(re_rule, :url => move_up_re_pipeline_re_rule_path(@re_pipeline, re_rule), :html => {:method => :put, :id => "rule_move_up_form_#{re_rule.id}"}) do |f| %>
|
53
|
+
<% end %>
|
54
|
+
|
55
|
+
<% dougo_form_for(re_rule, :url => move_down_re_pipeline_re_rule_path(@re_pipeline, re_rule), :html => {:method => :put, :id => "rule_move_down_form_#{re_rule.id}"}) do |f| %>
|
56
|
+
<% end %>
|
57
|
+
</div>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<div class="clear prepend-1 span-18">
|
2
|
+
<h2 class="rule-edit"> Edit <%= @rule_class.options[:name] %></h2>
|
3
|
+
<div class="clear top-10"></div>
|
4
|
+
|
5
|
+
<% dougo_form_for(@re_rule, :url => re_pipeline_re_rule_path(@re_pipeline, @re_rule), :method => :post, :span => "3x13", :html => {:id => "rule_edit_form"}) do |f| %>
|
6
|
+
<%= f.error_messages :message => "Unable To Update Rule : #{@rule_class.options[:name]}" %>
|
7
|
+
<% unless @rule.errors.empty? %>
|
8
|
+
<div id="errorExplanation" class="errorExplanation">
|
9
|
+
<% @rule.errors.each do |error| %>
|
10
|
+
<p><%= error %></p>
|
11
|
+
<% end %>
|
12
|
+
</div>
|
13
|
+
<% end %>
|
14
|
+
|
15
|
+
<% whitebox do %>
|
16
|
+
|
17
|
+
<%= render(@rule_class.options[:edit_template], :f => f) %>
|
18
|
+
|
19
|
+
<div class="clear"></div>
|
20
|
+
<%= button_submit_green('Update', :id => "rule_edit_update") %>
|
21
|
+
<%= button_link_orange('Cancel', change_re_pipeline_path(@re_pipeline), :id => "rule_edit_cancel") %>
|
22
|
+
<% end %>
|
23
|
+
<% end %>
|
24
|
+
</div>
|
25
|
+
<div class="clear"></div>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<div id="pipeline_rules_empty" style="<%= re_pipeline.re_rules.empty? ? '' : 'display:none' %>">
|
2
|
+
<div class="redbox-header"><h3 class="white">No Pipeline Rules</h3></div>
|
3
|
+
<div class="redbox no-top">
|
4
|
+
<div class="clear top-5 prepend-1 append-1">
|
5
|
+
<h4>Add rules to the pipeline.</h4>
|
6
|
+
<p>TODO: "Why this message" Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
7
|
+
</div>
|
8
|
+
</div>
|
9
|
+
<div class="clear top-5"></div>
|
10
|
+
</div>
|
11
|
+
<div class="clear"></div>
|
12
|
+
|
@@ -0,0 +1,3 @@
|
|
1
|
+
Rule Not Found - <%= params[:rule_class].blank? ? 'param :rule_class missing' : params[:rule_class] %>
|
2
|
+
|
3
|
+
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<div class="clear prepend-1 span-18">
|
2
|
+
<h2 class="rule-class-help"> Help : <%= @rule_class.options[:name] %></h2>
|
3
|
+
<div class="clear top-10"></div>
|
4
|
+
|
5
|
+
<% whitebox do %>
|
6
|
+
|
7
|
+
<%= render(@rule_class.options[:help_template]) %>
|
8
|
+
|
9
|
+
<div class="clear"></div>
|
10
|
+
<%= button_link_red('Close', edit_re_pipeline_path(@re_pipeline), :id => "rule_help_cancel") %>
|
11
|
+
<% end %>
|
12
|
+
</div>
|
13
|
+
<div class="clear"></div>
|
@@ -0,0 +1,38 @@
|
|
1
|
+
<% re_rule_verify = re_rule.verify %>
|
2
|
+
<% local_new_row = local_assigns[:new_row] && new_row %>
|
3
|
+
<% local_last_rule = local_assigns[:last_rule] && last_rule %>
|
4
|
+
|
5
|
+
<% if local_new_row %>
|
6
|
+
<div class="clear top-5"><hr/></div>
|
7
|
+
<div class="clear top-5"></div>
|
8
|
+
<% end %>
|
9
|
+
|
10
|
+
<div class="span-6 <%= local_new_row ? 'left-20' : '' %> rule-show">
|
11
|
+
<div class="<%= re_rule_verify.blank? ? 'bluebox' : 'redbox' %> rule-status-<%= re_rule_verify.blank? ? 'valid' : 'verify' %>"><%= re_rule.title %></div>
|
12
|
+
<div class="<%= re_rule_verify.blank? ? 'bluebox' : 'redbox' %> no-top">
|
13
|
+
<p class="top-5"><%= re_rule.summary %></p>
|
14
|
+
|
15
|
+
<div class="top-10 float-right">
|
16
|
+
<% if re_rule.re_rule_outcomes.empty? %>
|
17
|
+
<div class="rule-continue">Continue</div>
|
18
|
+
<% end %>
|
19
|
+
<% unless re_rule.re_rule_outcome_next.nil? %>
|
20
|
+
<div class="rule-continue">Continue</div>
|
21
|
+
<% end %>
|
22
|
+
<% re_rule.re_rule_outcomes_start_pipeline.each do |re_rule_outcome| %>
|
23
|
+
<div class="rule-goto-pipeline"><%= re_rule_outcome.pipeline_code %></div>
|
24
|
+
<% end %>
|
25
|
+
<% unless re_rule.re_rule_outcome_failure.nil? %>
|
26
|
+
<div class="rule-stop-failure">Stop Failure</div>
|
27
|
+
<% end %>
|
28
|
+
<% unless re_rule.re_rule_outcome_success.nil? %>
|
29
|
+
<div class="rule-stop-success">Stop Success</div>
|
30
|
+
<% end %>
|
31
|
+
</div>
|
32
|
+
<div class="clear"></div>
|
33
|
+
</div>
|
34
|
+
</div>
|
35
|
+
|
36
|
+
<% unless local_last_rule %>
|
37
|
+
<div class="span-1 last"> <div class="rule-next-show"></div> </div>
|
38
|
+
<% end %>
|
@@ -0,0 +1,41 @@
|
|
1
|
+
<div class="rules-menu">
|
2
|
+
<% RulesEngine::Discovery.rule_groups.each do |name, rule_classes| %>
|
3
|
+
<% shadowbox do %>
|
4
|
+
<a href="#" class="rule-class-list-toggle">
|
5
|
+
<h5 class="rule-class-list-right"><%=h name %></h5>
|
6
|
+
</a>
|
7
|
+
<div class="rule-class-list hide">
|
8
|
+
<% rule_classes.each do |rule_class| %>
|
9
|
+
<div class="yellowbox">
|
10
|
+
<h5>
|
11
|
+
<%= rule_class.options[:name] %>
|
12
|
+
</h5>
|
13
|
+
<a href="#<%=@re_pipeline.id%>|<%= rule_class %>" class="rule-class-new"> <span>Add</span> </a>
|
14
|
+
<a href="#<%=@re_pipeline.id%>|<%= rule_class %>" class="rule-class-help"> <span>Help</span> </a>
|
15
|
+
<div class="clear"></div>
|
16
|
+
</div>
|
17
|
+
<div class="clear top-5"></div>
|
18
|
+
<% end %>
|
19
|
+
</div>
|
20
|
+
<% end %>
|
21
|
+
<% end %>
|
22
|
+
|
23
|
+
<% shadowbox do %>
|
24
|
+
<a href="#" class="rule-class-list-toggle">
|
25
|
+
<h5 class="rule-class-list-down">All Rules</h5>
|
26
|
+
</a>
|
27
|
+
<div class="rule-class-list">
|
28
|
+
<% RulesEngine::Discovery.rule_classes.each do |rule_class| %>
|
29
|
+
<div class="yellowbox">
|
30
|
+
<h5>
|
31
|
+
<%= rule_class.options[:name] %>
|
32
|
+
</h5>
|
33
|
+
<a href="#<%=@re_pipeline.id%>|<%= rule_class %>" class="rule-class-new"> <span>Add</span> </a>
|
34
|
+
<a href="#<%=@re_pipeline.id%>|<%= rule_class %>" class="rule-class-help"> <span>Help</span> </a>
|
35
|
+
<div class="clear"></div>
|
36
|
+
</div>
|
37
|
+
<div class="clear top-5"></div>
|
38
|
+
<% end %>
|
39
|
+
</div>
|
40
|
+
<% end %>
|
41
|
+
</div>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<div class="clear prepend-1 span-18">
|
2
|
+
<h2 class="rule-class-new"> New : <%= @rule_class.options[:name] %></h2>
|
3
|
+
<div class="clear top-10"></div>
|
4
|
+
|
5
|
+
<% dougo_form_for(@re_rule, :url => re_pipeline_re_rules_path(@re_pipeline), :method => :post, :span => "3x13", :html => {:id => "rule_new_form"}) do |f| %>
|
6
|
+
<%= hidden_field_tag('rule_class', @rule_class) %>
|
7
|
+
<%= f.error_messages :message => "Unable To Create Rule : #{@rule_class.options[:name]}" %>
|
8
|
+
<% unless @rule.errors.empty? %>
|
9
|
+
<div id="errorExplanation" class="errorExplanation">
|
10
|
+
<% @rule.errors.each do |error| %>
|
11
|
+
<p><%= error %></p>
|
12
|
+
<% end %>
|
13
|
+
</div>
|
14
|
+
<% end %>
|
15
|
+
|
16
|
+
<% whitebox do %>
|
17
|
+
|
18
|
+
<%= render(@rule_class.options[:new_template], :f => f) %>
|
19
|
+
|
20
|
+
<div class="clear"></div>
|
21
|
+
<%= button_submit_green('Create', :id => "rule_new_insert") %>
|
22
|
+
<%= button_link_orange('Cancel', change_re_pipeline_path(@re_pipeline), :id => "rule_new_cancel") %>
|
23
|
+
<% end %>
|
24
|
+
<% end %>
|
25
|
+
</div>
|
26
|
+
<div class="clear"></div>
|
@@ -0,0 +1,43 @@
|
|
1
|
+
<% re_rule_verify = re_rule.verify %>
|
2
|
+
<% local_first_rule = local_assigns[:first_rule] && first_rule %>
|
3
|
+
<% local_last_rule = local_assigns[:last_rule] && last_rule %>
|
4
|
+
|
5
|
+
<div class="span-15 last rule-change" id="change_rule_<%= re_rule.id %>">
|
6
|
+
<div class="<%= re_rule_verify.blank? ? 'bluebox' : 'redbox' %> rule-status-<%= re_rule_verify.blank? ? 'valid' : 'verify' %>">
|
7
|
+
<h3 class="float-left"><%= re_rule.title %></h3>
|
8
|
+
<div class="float-right">
|
9
|
+
<!-- NO ACTIONS ON THE RULE -->
|
10
|
+
</div>
|
11
|
+
<div class="clear"></div>
|
12
|
+
</div>
|
13
|
+
<div class="<%= re_rule_verify.blank? ? 'bluebox' : 'redbox' %> no-top">
|
14
|
+
<div class="span-10">
|
15
|
+
<p class="top-5 left-10">
|
16
|
+
<%= re_rule.summary %>
|
17
|
+
</p>
|
18
|
+
</div>
|
19
|
+
|
20
|
+
<div class="prepend-10 top-10">
|
21
|
+
<% if re_rule.re_rule_outcomes.empty? %>
|
22
|
+
<div class="rule-continue">Continue</div>
|
23
|
+
<% end %>
|
24
|
+
<% unless re_rule.re_rule_outcome_next.nil? %>
|
25
|
+
<div class="rule-continue">Continue</div>
|
26
|
+
<% end %>
|
27
|
+
<% re_rule.re_rule_outcomes_start_pipeline.each do |re_rule_outcome| %>
|
28
|
+
<div class="rule-goto-pipeline"><%= re_rule_outcome.pipeline_code %></div>
|
29
|
+
<% end %>
|
30
|
+
<% unless re_rule.re_rule_outcome_failure.nil? %>
|
31
|
+
<div class="rule-stop-failure">Stop Failure</div>
|
32
|
+
<% end %>
|
33
|
+
<% unless re_rule.re_rule_outcome_success.nil? %>
|
34
|
+
<div class="rule-stop-success">Stop Success</div>
|
35
|
+
<% end %>
|
36
|
+
</div>
|
37
|
+
<div class="clear"></div>
|
38
|
+
</div>
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<% unless local_last_rule %>
|
42
|
+
<div class="prepend-7 span-2"><div class="rule-next-change"></div></div>
|
43
|
+
<% end %>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<%= javascript_alert_messages %>
|
2
|
+
|
3
|
+
self.parent.tb_remove();
|
4
|
+
|
5
|
+
$('#change_pipeline').html('<%=escape_javascript(render('/re_pipelines/change'))%>');
|
6
|
+
$('#change_pipeline_actions').html('<%=escape_javascript(render('/re_pipelines/change_actions'))%>');
|
7
|
+
|
8
|
+
$('#change_rules').html('')
|
9
|
+
<% @re_pipeline.re_rules.each do |re_rule | %>
|
10
|
+
$('#change_rules').append('<%=escape_javascript(render('/re_rules/change', :re_rule => re_rule, :first_rule => re_rule == @re_pipeline.re_rules[0], :last_rule => re_rule == @re_pipeline.re_rules[-1]))%>');
|
11
|
+
<% end %>
|
12
|
+
|
13
|
+
<%= render('/re_rules/empty', :re_pipeline => @re_pipeline) %>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<% set_subnav @re_pipeline.title,
|
2
|
+
link_to("All Pipelines", re_pipelines_path, :class => "pipeline-list"),
|
3
|
+
link_to("Edit Pipeline", change_re_pipeline_path(@re_pipeline), :class => "pipeline-change") %>
|
4
|
+
|
5
|
+
<div class="prepend-1 span-22 append-1">
|
6
|
+
<div class="infobox">
|
7
|
+
<%= render :partial => 'edit' %>
|
8
|
+
<div class="clear"></div>
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
<div class="clear"></div>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<% set_subnav "Rule Error",
|
2
|
+
link_to("All Pipelines", re_pipelines_path, :class => "pipeline-list"),
|
3
|
+
link_to("Edit Pipeline", change_re_pipeline_path(@re_pipeline), :class => "pipeline-change") %>
|
4
|
+
|
5
|
+
<div class="prepend-1 span-22 append-1">
|
6
|
+
<div class="infobox">
|
7
|
+
<%= render :partial => 'error' %>
|
8
|
+
<div class="clear"></div>
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
<div class="clear"></div>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<% set_subnav "Help #{@rule_class.options[:name]}",
|
2
|
+
link_to("All Pipelines", re_pipelines_path, :class => "pipeline-list"),
|
3
|
+
link_to("Edit Pipeline", change_re_pipeline_path(@re_pipeline), :class => "pipeline-change") %>
|
4
|
+
|
5
|
+
<div class="prepend-1 span-22 append-1">
|
6
|
+
<div class="infobox">
|
7
|
+
<%= render :partial => 'help' %>
|
8
|
+
<div class="clear"></div>
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
<div class="clear"></div>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<% set_subnav @re_pipeline.title,
|
2
|
+
link_to("All Pipelines", re_pipelines_path, :class => "pipeline-list"),
|
3
|
+
link_to("Edit Pipeline", change_re_pipeline_path(@re_pipeline), :class => "pipeline-change") %>
|
4
|
+
|
5
|
+
<div class="prepend-1 span-22 append-1">
|
6
|
+
<div class="infobox">
|
7
|
+
<%= render :partial => 'new' %>
|
8
|
+
<div class="clear"></div>
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
<div class="clear"></div>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<%= javascript_alert_messages %>
|
2
|
+
|
3
|
+
self.parent.tb_remove();
|
4
|
+
|
5
|
+
$('#change_pipeline').html('<%=escape_javascript(render('/re_pipelines/change'))%>');
|
6
|
+
$('#change_pipeline_actions').html('<%=escape_javascript(render('/re_pipelines/change_actions'))%>');
|
7
|
+
|
8
|
+
<%= render('/re_rules/empty', :re_pipeline => @re_pipeline) %>
|
9
|
+
|
10
|
+
$('#change_rules').html('')
|
11
|
+
<% @re_pipeline.re_rules.each do |re_rule | %>
|
12
|
+
$('#change_rules').append('<%=escape_javascript(render('/re_rules/change', :re_rule => re_rule, :first_rule => re_rule == @re_pipeline.re_rules[0], :last_rule => re_rule == @re_pipeline.re_rules[-1]))%>');
|
13
|
+
<% end %>
|
14
|
+
|
15
|
+
$('#change_rule_<%=@re_rule.id%>').attr('style', 'background-color: #fff6bf;');
|
16
|
+
$('#change_rule_<%=@re_rule.id%>').fadeTo(750, 0.44, function() {
|
17
|
+
$('#change_rule_<%=@re_rule.id%>').attr('style', '');
|
18
|
+
$('#change_rule_<%=@re_rule.id%>').fadeTo(1000, 1.00, function() {
|
19
|
+
});
|
20
|
+
});
|