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,66 @@
|
|
1
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="data" id="job_table">
|
2
|
+
<tr>
|
3
|
+
<th class="" width="110px">
|
4
|
+
<span class="left-5">
|
5
|
+
Job Id
|
6
|
+
</span>
|
7
|
+
</th>
|
8
|
+
<th class="text-right" width="180px">
|
9
|
+
<span class="right-20">
|
10
|
+
Start Time
|
11
|
+
</span>
|
12
|
+
</th>
|
13
|
+
<th class="text-right" width="180px">
|
14
|
+
<span class="right-20">
|
15
|
+
Finish Time
|
16
|
+
</span>
|
17
|
+
</th>
|
18
|
+
<th colspan="2">
|
19
|
+
<span class="left-5">
|
20
|
+
Data
|
21
|
+
</span>
|
22
|
+
</th>
|
23
|
+
</tr>
|
24
|
+
<% @re_jobs.each do | re_job | %>
|
25
|
+
<tr class="<%= cycle('', 'odd') %>">
|
26
|
+
<td>
|
27
|
+
<%
|
28
|
+
case re_job['job_status'].to_i
|
29
|
+
when ReJob::JOB_STATUS_NONE, ReJob::JOB_STATUS_RUNNING
|
30
|
+
job_class = 'job-running'
|
31
|
+
when ReJob::JOB_STATUS_SUCCESS
|
32
|
+
job_class = 'job-success'
|
33
|
+
else
|
34
|
+
job_class = 'job-error'
|
35
|
+
end
|
36
|
+
%>
|
37
|
+
<div class="<%= job_class %>">
|
38
|
+
<%= re_job['job_id'] %>
|
39
|
+
</div>
|
40
|
+
</td>
|
41
|
+
<td class="text-right">
|
42
|
+
<%= re_job['start_date'].strftime('%d %b %Y - %H:%M:%S') %>
|
43
|
+
</td>
|
44
|
+
<td class="text-right">
|
45
|
+
<%= re_job['end_date'] ? re_job['end_date'].strftime('%d %b %Y - %H:%M:%S') : ' ' %>
|
46
|
+
</td>
|
47
|
+
<td class="no-border-right">
|
48
|
+
<span class="left-5">
|
49
|
+
<%= re_job['end_data'] || re_job['start_data'] %>
|
50
|
+
</span>
|
51
|
+
</td>
|
52
|
+
<td class="no-border-left text-right">
|
53
|
+
<a class="pipeline-job-detail" href='#<%= re_job['job_id'] %>'>
|
54
|
+
</a>
|
55
|
+
</td>
|
56
|
+
</tr>
|
57
|
+
<% end %>
|
58
|
+
|
59
|
+
<tr class="<%= cycle('', 'odd') %>">
|
60
|
+
<td colspan = "5">
|
61
|
+
<a class="job-page-next-<%= @re_jobs.next_page ? 'enabled' : 'disabled' %>" href='#<%= @re_jobs.next_page || '0' %>'></a>
|
62
|
+
<a class="job-page-prev-<%= @re_jobs.previous_page ? 'enabled' : 'disabled' %>" href='#<%= @re_jobs.previous_page || '0' %>'></a>
|
63
|
+
|
64
|
+
</td>
|
65
|
+
</tr>
|
66
|
+
</table>
|
@@ -0,0 +1,43 @@
|
|
1
|
+
<div class="job-show">
|
2
|
+
|
3
|
+
<div class="float-left">
|
4
|
+
<h3>
|
5
|
+
<span class="blue">Job Id :</span> <%= @re_job.id %>
|
6
|
+
</h3>
|
7
|
+
</div>
|
8
|
+
<div class="float-right">
|
9
|
+
<h4>
|
10
|
+
<span class="blue">Created :</span> <%= @re_job.created_at.strftime('%d %b %Y - %H:%M:%S') %>
|
11
|
+
</h4>
|
12
|
+
</div>
|
13
|
+
<div class="clear"></div>
|
14
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="data" id="job_audit_table">
|
15
|
+
<% @re_job_audits.each do | re_job_audit | %>
|
16
|
+
<tr class="<%= cycle('', 'odd') %>">
|
17
|
+
<td width="150px">
|
18
|
+
<%
|
19
|
+
if re_job_audit.audit_success
|
20
|
+
job_class = 'job-success'
|
21
|
+
else
|
22
|
+
job_class = 'job-error'
|
23
|
+
end
|
24
|
+
%>
|
25
|
+
<div class="<%= job_class %>">
|
26
|
+
<%= re_job_audit.audit_date.strftime('%H:%M:%S') %>
|
27
|
+
</div>
|
28
|
+
</td>
|
29
|
+
<td>
|
30
|
+
<%= re_job_audit.audit_data%>
|
31
|
+
</td>
|
32
|
+
<td class = "text-right">
|
33
|
+
<div class = "right-5">
|
34
|
+
<% if re_job_audit.audit_code == ReJobAudit::AUDIT_PIPELINE_START %>
|
35
|
+
<%= link_to(re_job_audit.re_pipeline.code, re_pipeline_path(re_job_audit.re_pipeline_id), :class => "job-goto") %>
|
36
|
+
<% end %>
|
37
|
+
</div>
|
38
|
+
</td>
|
39
|
+
</tr>
|
40
|
+
<% end %>
|
41
|
+
|
42
|
+
</table>
|
43
|
+
</div>
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<% set_javascript_include 're_jobs' %>
|
2
|
+
<div class="jobs-index">
|
3
|
+
<h1>All Jobs</h1>
|
4
|
+
<div class="prepend-1 span-22 append-1">
|
5
|
+
<div class="jobs-index-box">
|
6
|
+
|
7
|
+
<%= render '/re_jobs/empty', :hide => !@re_jobs.empty? %>
|
8
|
+
|
9
|
+
<div id="job_list_pending" style="display:none">
|
10
|
+
<h3 class="left-20">Updating Job List</h3>
|
11
|
+
</div>
|
12
|
+
<div id="job_list">
|
13
|
+
<%= render '/re_jobs/index' %>
|
14
|
+
</div>
|
15
|
+
|
16
|
+
|
17
|
+
<div class="clear"></div>
|
18
|
+
</div>
|
19
|
+
</div>
|
20
|
+
<div class="clear"></div>
|
21
|
+
</div>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<%# set_javascript_include 're_pipeline_jobs' %>
|
2
|
+
<% set_subnav "Show Job",
|
3
|
+
link_to("All Jobs", re_jobs_path, :class => "job-list") %>
|
4
|
+
|
5
|
+
<div class="prepend-1 span-22 append-1">
|
6
|
+
<div class="infobox">
|
7
|
+
|
8
|
+
<%= render '/re_jobs/show' %>
|
9
|
+
<div class="clear"></div>
|
10
|
+
</div>
|
11
|
+
</div>
|
12
|
+
<div class="clear"></div>
|
@@ -0,0 +1 @@
|
|
1
|
+
$('#tb_temp_container').html('<%=escape_javascript(render(:partial => '/re_jobs/show'))%>');
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<% local_hide = local_assigns[:hide] && hide %>
|
2
|
+
|
3
|
+
<div id="job_list_empty" style="<%= local_hide ? 'display:none' : '' %>">
|
4
|
+
<div class="redbox-header"><h4 class="white">No Pipeline Jobs Created</h4></div>
|
5
|
+
<div class="redbox no-top">
|
6
|
+
<h4 class="left-5">Jobs are added when run.</h4>
|
7
|
+
</div>
|
8
|
+
<div class="clear"></div>
|
9
|
+
</div>
|
10
|
+
<div class="clear"></div>
|
11
|
+
|
@@ -0,0 +1,41 @@
|
|
1
|
+
<h3>Job List</h3>
|
2
|
+
|
3
|
+
<div class="right-10">
|
4
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="data" id="job_table">
|
5
|
+
<% @re_jobs.each do | re_job | %>
|
6
|
+
<tr class="<%= cycle('', 'odd') %>">
|
7
|
+
<td class="no-border-right text-right">
|
8
|
+
<%
|
9
|
+
job_date = re_job['start_date']
|
10
|
+
case re_job['job_status'].to_i
|
11
|
+
when ReJob::JOB_STATUS_NONE, ReJob::JOB_STATUS_RUNNING
|
12
|
+
job_class = 'job-running'
|
13
|
+
when ReJob::JOB_STATUS_SUCCESS
|
14
|
+
job_class = 'job-success'
|
15
|
+
else
|
16
|
+
job_class = 'job-error'
|
17
|
+
end
|
18
|
+
%>
|
19
|
+
<div class="<%= job_class %>">
|
20
|
+
<%= re_job['job_id'] %>
|
21
|
+
</div>
|
22
|
+
</td>
|
23
|
+
<td class="no-border-left no-border-right text-right">
|
24
|
+
<%= job_date.strftime('%d %b %Y - %H:%M:%S') %>
|
25
|
+
</td>
|
26
|
+
<td class="no-border-left text-right">
|
27
|
+
<a class="pipeline-job-detail" href='#<%= re_job['job_id'] %>'></a>
|
28
|
+
</td>
|
29
|
+
</tr>
|
30
|
+
<% end %>
|
31
|
+
|
32
|
+
<tr class="<%= cycle('', 'odd') %>">
|
33
|
+
<td colspan = "3">
|
34
|
+
<a class="job-page-next-<%= @re_jobs.next_page ? 'enabled' : 'disabled' %>" href='#<%= @re_jobs.next_page || '0' %>'></a>
|
35
|
+
<a class="job-page-prev-<%= @re_jobs.previous_page ? 'enabled' : 'disabled' %>" href='#<%= @re_jobs.previous_page || '0' %>'></a>
|
36
|
+
|
37
|
+
</td>
|
38
|
+
</tr>
|
39
|
+
</table>
|
40
|
+
|
41
|
+
</div>
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<% set_javascript_include 're_pipeline_jobs' %>
|
2
|
+
<% set_subnav @re_pipeline.title,
|
3
|
+
link_to("All Pipelines", re_pipelines_path, :class => "pipeline-list"),
|
4
|
+
link_to("Show Pipeline", re_pipeline_path(@re_pipeline), :class => "pipeline-show") %>
|
5
|
+
|
6
|
+
<div class="prepend-1 span-22 append-1">
|
7
|
+
<div class="infobox">
|
8
|
+
|
9
|
+
<%= render '/re_pipeline_jobs/empty', :hide => true %>
|
10
|
+
|
11
|
+
<div id="job_list_pending" class="infobox">
|
12
|
+
<h3 class="left-20">Updating Job List</h3>
|
13
|
+
<a id="job_list_pipeline" href="#<%= @re_pipeline.id %>"/>
|
14
|
+
</div>
|
15
|
+
|
16
|
+
<div id="job_list">
|
17
|
+
</div>
|
18
|
+
<div class="clear"></div>
|
19
|
+
</div>
|
20
|
+
</div>
|
21
|
+
<div class="clear"></div>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
<%= javascript_alert_messages %>
|
2
|
+
|
3
|
+
$('#job_list_pending').slideUp(150, function() {
|
4
|
+
<% if @re_jobs.empty? %>
|
5
|
+
$('#job_list_empty').slideDown(150);
|
6
|
+
<% end %>
|
7
|
+
});
|
8
|
+
|
9
|
+
$('#job_list').html('<%=escape_javascript(render(:partial => '/re_pipeline_jobs/index'))%>');
|
10
|
+
$('#job_list').show();
|
@@ -0,0 +1,46 @@
|
|
1
|
+
<% re_pipeline_status = re_pipeline_status(@re_pipeline) %>
|
2
|
+
<% re_pipeline_verify = @re_pipeline.verify %>
|
3
|
+
|
4
|
+
<div class="span-16">
|
5
|
+
<div class="infobox">
|
6
|
+
<div class="span-10" id="pipeline_code">
|
7
|
+
<h3 class="pipeline-status-<%= @re_pipeline_verify.blank? ? re_pipeline_status : 'verify' %>"><%=h @re_pipeline.code%></h3>
|
8
|
+
</div>
|
9
|
+
<div class="span-5 last">
|
10
|
+
<% if re_pipeline_verify.blank? %>
|
11
|
+
<em class="float-right pipeline-status-<%= re_pipeline_status %>" id="pipeline_status"><%= re_pipeline_status.titleize %></em>
|
12
|
+
<% else %>
|
13
|
+
<em class="float-right pipeline-status-verify"><%= re_pipeline_verify %></em>
|
14
|
+
<% end %>
|
15
|
+
</div>
|
16
|
+
|
17
|
+
<div class="clear"></div>
|
18
|
+
|
19
|
+
<div class="span-14 prepend-1 last">
|
20
|
+
<h5 id="pipeline_title"> <%=h @re_pipeline.title%></h5>
|
21
|
+
</div>
|
22
|
+
<div class="clear"></div>
|
23
|
+
|
24
|
+
<div class="span-12 prepend-2 append-1 last" id="pipeline_description">
|
25
|
+
<%=h @re_pipeline.description%>
|
26
|
+
</div>
|
27
|
+
<div class="clear"></div>
|
28
|
+
|
29
|
+
</div>
|
30
|
+
<div class="clear top-5"></div>
|
31
|
+
</div>
|
32
|
+
<div class="clear"></div>
|
33
|
+
|
34
|
+
<div style="display:none">
|
35
|
+
<% dougo_form_for(@re_pipeline, :url => activate_re_pipeline_path(@re_pipeline), :html => {:method => :put, :id => "pipeline_activate_form"}) do |f| %>
|
36
|
+
<% end %>
|
37
|
+
|
38
|
+
<% dougo_form_for(@re_pipeline, :url => deactivate_re_pipeline_path(@re_pipeline), :html => {:method => :put, :id => "pipeline_deactivate_form"}) do |f| %>
|
39
|
+
<% end %>
|
40
|
+
|
41
|
+
<% dougo_form_for(@re_pipeline, :url => revert_re_pipeline_path(@re_pipeline), :html => {:method => :put, :id => "pipeline_revert_form"}) do |f| %>
|
42
|
+
<% end %>
|
43
|
+
|
44
|
+
<% dougo_form_for(@re_pipeline, :url => re_pipeline_path(@re_pipeline), :html => {:method => :delete, :id => "pipeline_delete_form"}) do |f| %>
|
45
|
+
<% end %>
|
46
|
+
</div>
|
@@ -0,0 +1,34 @@
|
|
1
|
+
<% changed_status = @re_pipeline.changed_status %>
|
2
|
+
|
3
|
+
<h3 class="pipeline-edit float-left clear">
|
4
|
+
<%= link_to("Edit Pipeline Details", "##{@re_pipeline.id}", :class => "pipeline-action-edit") %>
|
5
|
+
</h3>
|
6
|
+
|
7
|
+
<% if changed_status == RePipelineBase::CHANGED_STATUS_DRAFT %>
|
8
|
+
<h3 class="pipeline-activate float-left clear">
|
9
|
+
<%= link_to("Activate Pipeline", "##{@re_pipeline.id}", :class => "pipeline-action-activate") %>
|
10
|
+
</h3>
|
11
|
+
<% end %>
|
12
|
+
<% if changed_status == RePipelineBase::CHANGED_STATUS_CHANGED %>
|
13
|
+
<h3 class="pipeline-activate float-left clear">
|
14
|
+
<%= link_to("Activate Pipeline Changes", "##{@re_pipeline.id}", :class => "pipeline-action-activate") %>
|
15
|
+
</h3>
|
16
|
+
<% end %>
|
17
|
+
|
18
|
+
<% if changed_status != RePipelineBase::CHANGED_STATUS_DRAFT && changed_status != RePipelineBase::CHANGED_STATUS_CHANGED %>
|
19
|
+
<h3 class="pipeline-deactivate float-left clear">
|
20
|
+
<%= link_to("Deactivate Pipeline", "##{@re_pipeline.id}", :class => "pipeline-action-deactivate") %>
|
21
|
+
</h3>
|
22
|
+
<% end %>
|
23
|
+
|
24
|
+
<% if changed_status == RePipelineBase::CHANGED_STATUS_CHANGED %>
|
25
|
+
<h3 class="pipeline-revert float-left clear">
|
26
|
+
<%= link_to("Discard Pipeline Changes", "##{@re_pipeline.id}", :class => "pipeline-action-revert") %>
|
27
|
+
</h3>
|
28
|
+
<% end %>
|
29
|
+
|
30
|
+
<% if changed_status == RePipelineBase::CHANGED_STATUS_DRAFT %>
|
31
|
+
<h3 class="pipeline-delete float-left clear">
|
32
|
+
<%= link_to("Delete Pipeline", "##{@re_pipeline.id}", :class => "pipeline-action-delete") %>
|
33
|
+
</h3>
|
34
|
+
<% end %>
|
@@ -0,0 +1,40 @@
|
|
1
|
+
<div style="display:none">
|
2
|
+
|
3
|
+
<div id="pipeline_action_confirm" style="display:none;">
|
4
|
+
<div class="span-14 prepend-1 last">
|
5
|
+
<% whitebox do %>
|
6
|
+
<h2 class="pipeline-alert red" id="pipeline_action_title"></h2>
|
7
|
+
<div class="clear top-5"></div>
|
8
|
+
<hr/>
|
9
|
+
<div class="clear top-5"></div>
|
10
|
+
|
11
|
+
<div class="span-13 last" id="pipeline_action_content_code">
|
12
|
+
</div>
|
13
|
+
<div class="clear"></div>
|
14
|
+
|
15
|
+
<div class="span-12 prepend-1 last">
|
16
|
+
<h5 id="pipeline_action_content_title"></h5>
|
17
|
+
</div>
|
18
|
+
<div class="clear"></div>
|
19
|
+
<%= button_link_green('Action', "#", :id => "pipeline_action_ok") %>
|
20
|
+
<%= button_link_orange('Cancel', "#", :id => "pipeline_action_cancel") %>
|
21
|
+
<% end %>
|
22
|
+
</div>
|
23
|
+
</div>
|
24
|
+
|
25
|
+
<div id="rule_delete_confirm" style="display:none">
|
26
|
+
<div class="span-11 prepend-1 last">
|
27
|
+
<% whitebox do %>
|
28
|
+
<h2 class="pipeline-delete red">Confirm Delete</h2>
|
29
|
+
<div class="clear top-5"></div>
|
30
|
+
<hr/>
|
31
|
+
<h5 class="float-left"><strong>This cannot be undone !!!</strong></h5>
|
32
|
+
<%= button_link_green('Delete', "#", :id => "rule_delete_ok") %>
|
33
|
+
<%= button_link_orange('Cancel', "#", :id => "rule_delete_cancel") %>
|
34
|
+
<div class="clear"></div>
|
35
|
+
|
36
|
+
<% end %>
|
37
|
+
</div>
|
38
|
+
</div>
|
39
|
+
|
40
|
+
</div>
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<div class="clear prepend-1 span-18">
|
2
|
+
<h2 class="pipeline-edit">Edit Pipeline Details</h2>
|
3
|
+
<div class="clear top-10"></div>
|
4
|
+
|
5
|
+
<% dougo_form_for(@re_pipeline, :url => re_pipeline_path(@re_pipeline), :method => :post, :span => "3x13", :html => {:id => "pipeline_edit_form"}) do |f| %>
|
6
|
+
<%= f.error_messages :message => "Unable To Update Pipeline" %>
|
7
|
+
<% whitebox do %>
|
8
|
+
<%= f.text_field(:title, :required => true) %>
|
9
|
+
|
10
|
+
<%= form_text_ext("Code", @re_pipeline.code, :span => "3x13", :hint => "<strong>NOTE :</strong> the pipeline code cannot be changed") %>
|
11
|
+
<div class="clear top-5"></div>
|
12
|
+
|
13
|
+
<%= f.text_area(:description) %>
|
14
|
+
|
15
|
+
<div class="clear"></div>
|
16
|
+
<%= button_submit_green('Update', :id => "pipeline_edit_update") %>
|
17
|
+
<%= button_link_orange('Cancel', change_re_pipeline_path(@re_pipeline), :id => "pipeline_edit_cancel") %>
|
18
|
+
<% end %>
|
19
|
+
<% end %>
|
20
|
+
</div>
|
21
|
+
<div class="clear"></div>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<% local_hide = local_assigns[:hide] && hide %>
|
2
|
+
|
3
|
+
<div class="span-22" id="pipelines_empty" style="<%= local_hide ? 'display:none' : '' %>">
|
4
|
+
<div class="redbox-header"><h3 class="white">No Pipelines Defined</h3></div>
|
5
|
+
<div class="redbox no-top">
|
6
|
+
<div class="clear top-5 prepend-1 append-1">
|
7
|
+
<h4>Create a new pipeline and define the rules.</h4>
|
8
|
+
<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>
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
<div class="clear top-5"></div>
|
12
|
+
</div>
|
13
|
+
<div class="clear"></div>
|
@@ -0,0 +1,58 @@
|
|
1
|
+
<% local_hide = local_assigns[:hide] && hide %>
|
2
|
+
<% re_pipeline_status = re_pipeline_status(re_pipeline) %>
|
3
|
+
<% re_pipeline_verify = re_pipeline.verify %>
|
4
|
+
|
5
|
+
<div class="span-22" id="pipeline_index_<%= re_pipeline.id %>" style="<%= local_hide ? 'display:none' : '' %>">
|
6
|
+
<div class="infobox">
|
7
|
+
<div class="span-16">
|
8
|
+
<h3 class="pipeline-status-<%= re_pipeline_verify.blank? ? re_pipeline_status : 'verify' %>"><%=h re_pipeline.code %></h3>
|
9
|
+
</div>
|
10
|
+
<div class="span-5 last">
|
11
|
+
<div>
|
12
|
+
<h3 class="pipeline-change float-right"><%= link_to("Edit", change_re_pipeline_path(re_pipeline)) %></h3>
|
13
|
+
<h3 class="pipeline-show float-right"><%= link_to("View", re_pipeline_path(re_pipeline)) %></h3>
|
14
|
+
</div>
|
15
|
+
</div>
|
16
|
+
<div class="clear"></div>
|
17
|
+
|
18
|
+
<div class="span-1">
|
19
|
+
<div class="clear top-5"></div>
|
20
|
+
<a href="#<%= re_pipeline.id %>" class="pipeline-rule-list-toggle">
|
21
|
+
<% if re_pipeline.re_rules.empty? %>
|
22
|
+
<div class="left-5 pipeline-rule-list-right"><span class="red">Rules</span></div>
|
23
|
+
<% else %>
|
24
|
+
<div class="left-5 pipeline-rule-list-right"> Rules </div>
|
25
|
+
<% end %>
|
26
|
+
</a>
|
27
|
+
</div>
|
28
|
+
<div class="span-15">
|
29
|
+
<h5 class="left-20"> <%=h re_pipeline.title%></h5>
|
30
|
+
</div>
|
31
|
+
<div class="span-5 last">
|
32
|
+
<% if re_pipeline_verify.blank? %>
|
33
|
+
<em class="float-right right-10 pipeline-status-<%= re_pipeline_status %>"><%= re_pipeline_status.titleize %></em>
|
34
|
+
<% else %>
|
35
|
+
<em class="float-right right-10 red"><%= re_pipeline_verify %></em>
|
36
|
+
<% end %>
|
37
|
+
</div>
|
38
|
+
<div class="clear"></div>
|
39
|
+
|
40
|
+
<div class="span-18 prepend-2 append-1 last">
|
41
|
+
<%=h re_pipeline.description%>
|
42
|
+
</div>
|
43
|
+
<div class="clear"></div>
|
44
|
+
|
45
|
+
</div>
|
46
|
+
<div class="infobox no-top hide" id="pipeline_rule_list_<%= re_pipeline.id %>">
|
47
|
+
<%= render '/re_rules/empty', :re_pipeline => re_pipeline %>
|
48
|
+
|
49
|
+
<% re_pipeline.re_rules.each_with_index do |re_rule, index | %>
|
50
|
+
<%= render '/re_rules/index', :re_rule => re_rule, :new_row => (index != 0 && (index % 3) == 0), :first_rule => re_rule == re_pipeline.re_rules[0], :last_rule => re_rule == re_pipeline.re_rules[-1] %>
|
51
|
+
<% end %>
|
52
|
+
|
53
|
+
<div class="clear"></div>
|
54
|
+
</div>
|
55
|
+
|
56
|
+
<div class="clear top-5"></div>
|
57
|
+
</div>
|
58
|
+
<div class="clear"></div>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<div class="clear prepend-1 span-18">
|
2
|
+
<h2 class="pipeline-new"> New Pipeline</h2>
|
3
|
+
<div class="clear top-10"></div>
|
4
|
+
|
5
|
+
<% dougo_form_for(@re_pipeline, :url => re_pipelines_path, :method => :post, :span => "3x13", :html => {:id => "pipeline_new_form"}) do |f| %>
|
6
|
+
<%= f.error_messages :message => "Unable To Create Pipeline" %>
|
7
|
+
<% whitebox do %>
|
8
|
+
<%= f.text_field(:title, :required => true) %>
|
9
|
+
<%= f.text_field(:code, :required => true, :hint => "must be unique") %>
|
10
|
+
<%= f.text_area(:description) %>
|
11
|
+
|
12
|
+
<div class="clear"></div>
|
13
|
+
<%= button_submit_green('Insert', :id => "pipeline_new_insert") %>
|
14
|
+
<%= button_link_orange('Cancel', re_pipelines_path, :id => "pipeline_new_cancel") %>
|
15
|
+
<% end %>
|
16
|
+
<% end %>
|
17
|
+
</div>
|
18
|
+
<div class="clear"></div>
|
@@ -0,0 +1,32 @@
|
|
1
|
+
<% re_pipeline_status = re_pipeline_status(@re_pipeline) %>
|
2
|
+
<% re_pipeline_verify = @re_pipeline.verify %>
|
3
|
+
|
4
|
+
<div class="span-16">
|
5
|
+
<div class="infobox">
|
6
|
+
<div class="span-10">
|
7
|
+
<h3 class="pipeline-status-<%= @re_pipeline_verify.blank? ? re_pipeline_status : 'verify' %>"><%=h @re_pipeline.code%></h3>
|
8
|
+
</div>
|
9
|
+
<div class="span-5 last">
|
10
|
+
<% if re_pipeline_verify.blank? %>
|
11
|
+
<em class="float-right pipeline-status-<%= re_pipeline_status %>"><%= re_pipeline_status.titleize %></em>
|
12
|
+
<% else %>
|
13
|
+
<em class="float-right pipeline-status-verify"><%= re_pipeline_verify %></em>
|
14
|
+
<% end %>
|
15
|
+
</div>
|
16
|
+
|
17
|
+
<div class="clear"></div>
|
18
|
+
|
19
|
+
<div class="span-14 prepend-1 last">
|
20
|
+
<h5> <%=h @re_pipeline.title%></h5>
|
21
|
+
</div>
|
22
|
+
<div class="clear"></div>
|
23
|
+
|
24
|
+
<div class="span-12 prepend-2 append-1 last">
|
25
|
+
<%=h @re_pipeline.description%>
|
26
|
+
</div>
|
27
|
+
<div class="clear"></div>
|
28
|
+
|
29
|
+
</div>
|
30
|
+
<div class="clear top-5"></div>
|
31
|
+
</div>
|
32
|
+
<div class="clear"></div>
|
@@ -0,0 +1,37 @@
|
|
1
|
+
<% set_javascript_include 're_pipeline_change' %>
|
2
|
+
<% set_subnav 'Edit Pipeline',
|
3
|
+
link_to("All Pipelines", re_pipelines_path, :class => "pipeline-list"),
|
4
|
+
link_to("View Pipeline", re_pipeline_path(@re_pipeline), :class => "pipeline-show") %>
|
5
|
+
|
6
|
+
<div class="prepend-1 span-16 border" id="change_pipeline">
|
7
|
+
<%= render :partial => 'change' %>
|
8
|
+
</div>
|
9
|
+
<div class="span-7 last" id="change_pipeline_actions">
|
10
|
+
<%= render :partial => 'change_actions' %>
|
11
|
+
</div>
|
12
|
+
<div class="clear"></div>
|
13
|
+
|
14
|
+
<hr/>
|
15
|
+
|
16
|
+
<div class="prepend-1 span-16 border">
|
17
|
+
<div class="infobox">
|
18
|
+
|
19
|
+
<div class="clear top-5"></div>
|
20
|
+
<div id="change_rules">
|
21
|
+
<% @re_pipeline.re_rules.each do |re_rule | %>
|
22
|
+
<%= 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] %>
|
23
|
+
<div class="clear"></div>
|
24
|
+
<% end %>
|
25
|
+
</div>
|
26
|
+
|
27
|
+
<div class="clear top-5"></div>
|
28
|
+
<%= render '/re_rules/empty', :re_pipeline => @re_pipeline %>
|
29
|
+
</div>
|
30
|
+
</div>
|
31
|
+
<div class="span-7 last">
|
32
|
+
<%= render :partial => '/re_rules/menu' %>
|
33
|
+
</div>
|
34
|
+
<div class="clear"></div>
|
35
|
+
|
36
|
+
<%= render :partial => 'confirm' %>
|
37
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<%= javascript_alert_messages %>
|
2
|
+
|
3
|
+
self.parent.tb_remove();
|
4
|
+
|
5
|
+
$('#pipeline_index').after('<%=escape_javascript(render('/re_pipelines/index', :re_pipeline => @re_pipeline, :hide => true))%>');
|
6
|
+
|
7
|
+
$('#pipelines_empty').hide();
|
8
|
+
$('#pipeline_index_<%=@re_pipeline.id%>').slideDown();
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<% set_subnav 'Edit Pipeline Details',
|
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 top-5"></div>
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
<div class="clear"></div>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<% set_javascript_include ['re_pipeline_index', 're_pipeline_new'] %>
|
2
|
+
<% set_subnav 'All Pipelines', link_to("New Pipeline", new_re_pipeline_path, :class => "pipeline-new") %>
|
3
|
+
|
4
|
+
<div class="prepend-1 span-22 append-1" id="index_pipelines_empty">
|
5
|
+
<div class="clear" id="pipeline_index"></div>
|
6
|
+
|
7
|
+
<%= render 'empty', :hide => !@re_pipelines.empty? %>
|
8
|
+
|
9
|
+
<% @re_pipelines.each do | re_pipeline | %>
|
10
|
+
<%= render 'index', :re_pipeline => re_pipeline %>
|
11
|
+
<% end %>
|
12
|
+
|
13
|
+
</div>
|
14
|
+
<div class="clear"></div>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<% set_subnav 'New Pipeline', link_to("All Pipelines", re_pipelines_path, :class => "pipeline-list") %>
|
2
|
+
|
3
|
+
<div class="prepend-1 span-22 append-1">
|
4
|
+
<div class="infobox">
|
5
|
+
<%= render :partial => 'new' %>
|
6
|
+
<div class="clear top-5"></div>
|
7
|
+
</div>
|
8
|
+
</div>
|
9
|
+
<div class="clear"></div>
|