├── .github └── workflows │ └── code-style-review.yaml ├── .gitignore ├── .haml-lint.yml ├── .haml-lint_todo.yml ├── .rubocop.yml ├── .rubocop_todo.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── PLUGINS.md ├── README.markdown ├── Rakefile ├── VERSION ├── acceptance └── tests │ └── dashboard_rake_tasks.rb ├── app ├── assets │ ├── javascripts │ │ ├── ajax_helper.js │ │ ├── application.js │ │ ├── application.radiator.js │ │ ├── autorefresh.js │ │ ├── dashboard.js │ │ ├── jqplot.barRenderer.js │ │ ├── jqplot.canvasAxisTickRenderer.js │ │ ├── jqplot.canvasTextRenderer.js │ │ ├── jqplot.categoryAxisRenderer.js │ │ ├── jqplot.highlighter.js │ │ ├── jqplot.pointLabels.js │ │ ├── jquery.colorbox.js │ │ ├── jquery.cookie.js │ │ ├── jquery.form.js │ │ ├── jquery.jqplot.js │ │ ├── jquery.livequery.js │ │ ├── jquery.placeholders.js │ │ ├── jquery.templating.js │ │ ├── jquery.tipsy.js │ │ ├── jquery.tokeninput.js │ │ ├── jquery.ui.combobox.js │ │ ├── radiator.js │ │ ├── search.js │ │ └── validation_response.js │ └── stylesheets │ │ ├── application.css │ │ ├── application.radiator.css │ │ ├── colorbox.css │ │ ├── dashboard.scss │ │ ├── forms.css │ │ ├── help.scss │ │ ├── images │ │ ├── border.png │ │ ├── controls.png │ │ ├── grid.png │ │ ├── header.png │ │ ├── icons │ │ │ ├── add.png │ │ │ ├── add_grey.png │ │ │ ├── add_light_grey.png │ │ │ ├── computer.png │ │ │ ├── delete.png │ │ │ ├── edit.png │ │ │ ├── failure.png │ │ │ ├── search.png │ │ │ └── success.png │ │ ├── internet_explorer │ │ │ ├── borderBottomCenter.png │ │ │ ├── borderBottomLeft.png │ │ │ ├── borderBottomRight.png │ │ │ ├── borderMiddleLeft.png │ │ │ ├── borderMiddleRight.png │ │ │ ├── borderTopCenter.png │ │ │ ├── borderTopLeft.png │ │ │ └── borderTopRight.png │ │ ├── loading.gif │ │ ├── loading_background.png │ │ ├── overlay.png │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ ├── ui-bg_flat_100_5c80a8_40x100.png │ │ ├── ui-bg_flat_55_ffffff_40x100.png │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_highlight-soft_100_f6f6f6_1x100.png │ │ ├── ui-bg_highlight-soft_25_0073ea_1x100.png │ │ ├── ui-bg_highlight-soft_50_dddddd_1x100.png │ │ ├── ui-icons_0073ea_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_666666_256x240.png │ │ ├── ui-icons_ff0084_256x240.png │ │ ├── ui-icons_ffffff_256x240.png │ │ ├── white-overlay.png │ │ └── white-overlays.png │ │ ├── jquery.jqplot.css │ │ ├── jquery.ui.combobox.css │ │ ├── jquery.ui.custom.css │ │ ├── layout.css │ │ ├── links.css │ │ ├── mixins.scss │ │ ├── popups.css │ │ ├── radiator.scss │ │ ├── reset.css │ │ ├── tables.css │ │ ├── tipsy.css │ │ ├── token-input-facebook.css │ │ └── typography.css ├── controllers │ ├── application_controller.rb │ ├── delayed_job_failures_controller.rb │ ├── files_controller.rb │ ├── help_controller.rb │ ├── node_class_memberships_controller.rb │ ├── node_classes_controller.rb │ ├── node_group_class_memberships_controller.rb │ ├── node_group_memberships_controller.rb │ ├── node_groups_controller.rb │ ├── nodes_controller.rb │ ├── pages_controller.rb │ ├── radiator_controller.rb │ └── reports_controller.rb ├── helpers │ ├── application_helper.rb │ ├── conflict_analyzer.rb │ ├── conflict_html.rb │ ├── node_classes_helper.rb │ ├── node_groups_helper.rb │ ├── nodes_helper.rb │ ├── pages_helper.rb │ ├── paginate_scope_helper.rb │ ├── reports_helper.rb │ ├── status_helper.rb │ └── string_helper.rb ├── mailers │ └── .gitkeep ├── mixins │ └── searchable_index.rb ├── models │ ├── .gitkeep │ ├── application_record.rb │ ├── delayed_job_failure.rb │ ├── metric.rb │ ├── node.rb │ ├── node_class.rb │ ├── node_class_membership.rb │ ├── node_group.rb │ ├── node_group_class_membership.rb │ ├── node_group_edge.rb │ ├── node_group_membership.rb │ ├── parameter.rb │ ├── report.rb │ ├── report_log.rb │ ├── resource_event.rb │ ├── resource_status.rb │ ├── status.rb │ └── timeline_event.rb └── views │ ├── delayed_job_failures │ └── index.html.haml │ ├── help │ └── _node_status.html.haml │ ├── layouts │ ├── _radiator.html.haml │ └── application.html.haml │ ├── metrics │ └── _metrics_table.html.haml │ ├── node_class_memberships │ ├── _form.html.haml │ ├── edit.html.haml │ └── show.html.haml │ ├── node_classes │ ├── _actions.html.haml │ ├── _form.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── node_group_class_memberships │ ├── _form.html.haml │ ├── edit.html.haml │ └── show.html.haml │ ├── node_groups │ ├── _actions.html.haml │ ├── _form.html.haml │ ├── _search.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── nodes │ ├── _activity.html.haml │ ├── _description.html.haml │ ├── _facts.html.haml │ ├── _form.html.haml │ ├── _hidden.html.haml │ ├── _inspections.html.haml │ ├── _inventory_service.html.haml │ ├── _log_detail.html.haml │ ├── _nodes.html.haml │ ├── _reports.html.haml │ ├── _reports_table_tfoot.html.haml │ ├── _search.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── inventory_search.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── pages │ ├── _node_summary_row.haml │ ├── home.html.haml │ └── index.html.haml │ ├── parameters │ ├── _parameter.html.haml │ └── _parameter_input.html.haml │ ├── puppet │ ├── transaction │ │ └── reports │ │ │ └── _report.haml │ └── util │ │ └── logs │ │ └── _log.haml │ ├── reports │ ├── _log.html.haml │ ├── _metrics.html.haml │ ├── _report.html.haml │ ├── _report_status_icon.html.haml │ ├── _report_status_td.html.haml │ ├── _report_title.html.haml │ ├── _reports_table.html.haml │ ├── _resource_statuses.html.haml │ ├── index.html.haml │ └── show.html.haml │ ├── shared │ ├── _class_parameter_conflicts_table.html.haml │ ├── _classes.html.haml │ ├── _confirm.html.haml │ ├── _error.html.haml │ ├── _form_errors.html.haml │ ├── _global_nav.html.haml │ ├── _groups.html.haml │ ├── _inspector.html.haml │ ├── _node_manager_sidebar.html.haml │ ├── _node_manager_sidebar_for_type.html.haml │ ├── _node_summary.html.haml │ ├── _parameters.html.haml │ ├── _parameters_part1.html.haml │ ├── _parameters_part2.html.haml │ ├── _search.html.haml │ ├── _skiplink.html.haml │ ├── _skiptarget.html.haml │ ├── _tokenized_text_box.html.haml │ ├── _variable_conflicts_table.html.haml │ └── _variables.html.haml │ ├── statuses │ ├── _run_failure.html.haml │ ├── _run_time.html.haml │ └── show.html.haml │ └── timeline_events │ └── _timeline_event.html.haml ├── bin ├── bundle ├── delayed_job ├── external_node ├── rails ├── rake ├── setup ├── update └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── database.yml.example ├── database.yml.travis ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── 00_settings_reader_init.rb │ ├── 01_serialize_flash_as_hash.rb │ ├── ZZZ_load_plugin_initializers.rb │ ├── app_version_init.rb │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── check_migration_version.rb │ ├── clear_cached_assets.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── delayed_job.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── requires.rb │ ├── safe_yaml.rb │ ├── sass.rb │ ├── session_store.rb │ ├── time_formats.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── preinitializer.rb ├── puma.rb ├── routes.rb ├── secrets.yml ├── settings.yml.example ├── spring.rb └── storage.yml ├── db ├── migrate │ ├── 20090916215745_basic_schema.rb │ ├── 20090916221313_create_node_group_memberships.rb │ ├── 20090917163433_create_node_classes.rb │ ├── 20090917163500_create_node_class_memberships.rb │ ├── 20090921151631_create_node_groups.rb │ ├── 20091025181245_create_node_group_class_memberships.rb │ ├── 20091025182048_add_parameters_to_node_groups.rb │ ├── 20091028174517_create_timeline_events.rb │ ├── 20091028210805_create_users.rb │ ├── 20091110002528_create_parameters.rb │ ├── 20091110005353_remove_parameters_from_node.rb │ ├── 20091116212418_create_node_group_edges.rb │ ├── 20091116235339_remove_parameters_from_node_groups.rb │ ├── 20091120013227_create_reports.rb │ ├── 20091130201400_add_url_to_node.rb │ ├── 20091208225308_add_reported_at_to_node.rb │ ├── 20091215194836_add_success_to_report.rb │ ├── 20091217192540_add_host_and_time_to_report.rb │ ├── 20091217212330_migrate_report_data.rb │ ├── 20100318131825_add_indexes.rb │ ├── 20100726070117_add_success_and_last_report_to_nodes.rb │ ├── 20100806181533_cleanup_node_memberships.rb │ ├── 20100810011613_change_report_report_field_size_to_be_larger.rb │ ├── 20100811204545_add_success_to_report_index.rb │ ├── 20100909191050_remove_duplicate_class_and_group_memberships.rb │ ├── 20100916183948_adjust_indexes_on_reports.rb │ ├── 20101109001012_add_status_to_reports.rb │ ├── 20101118222325_add_hidden_to_nodes.rb │ ├── 20101206225510_schematize_reports.rb │ ├── 20101229023023_add_baseline_report_id_to_nodes.rb │ ├── 20101230054456_drop_user_table.rb │ ├── 20110105015322_add_out_of_sync_count_to_resource_statuses.rb │ ├── 20110105231637_remove_source_description_from_resource_statuses.rb │ ├── 20110105231833_remove_source_description_from_resource_events.rb │ ├── 20110105233543_add_historical_value_to_resource_events.rb │ ├── 20110105233640_add_audited_to_resource_events.rb │ ├── 20110105234202_remove_tags_from_resource_events.rb │ ├── 20110106002514_add_skipped_to_resource_statuses.rb │ ├── 20110107233911_remove_out_of_sync_column.rb │ ├── 20110113012919_make_long_string_fields_into_text_fields.rb │ ├── 20110113013807_add_last_inspect_report_id_to_nodes.rb │ ├── 20110113183616_remove_unused_tables_and_models.rb │ ├── 20110113195253_rename_column_last_report_id_to_last_apply_report_id_on_nodes.rb │ ├── 20110114190814_add_failed_to_resource_statuses.rb │ ├── 20110130010154_remove_column_baseline_report_id_from_nodes.rb │ ├── 20110603183820_add_status_column_to_resource_statuses.rb │ ├── 20110614234202_create_delayed_jobs.rb │ ├── 20110620111500_create_delayed_job_failures.rb │ ├── 20110728195829_add_node_host_uniqueness_constraint.rb │ ├── 20110729201310_add_delayed_job_failure_backtrace.rb │ ├── 20111118204121_add_report_foreign_key_constraints.rb │ ├── 20120112195235_remove_url_from_nodes.rb │ ├── 20121111212016_add_queue_to_delayed_jobs.rb │ ├── 20130322105500_create_foreign_key_indexes.rb │ ├── 20130418063629_add_description_to_node_classes.rb │ ├── 20130418064011_add_description_to_node_groups.rb │ ├── 20140118072510_add_performance_indices.rb │ ├── 20140414051338_change_reports_to_blobs.rb │ ├── 20141217071943_add_environment_to_nodes.rb │ ├── 20150405234511_add_environment_to_reports.rb │ ├── 20150406035502_add_transaction_uuid_to_reports.rb │ ├── 20150406035704_add_containment_path_to_resource_statuses.rb │ ├── 20180612210108_add_catalog_uuid_to_reports.rb │ ├── 20180612210310_add_cached_catalog_status_to_reports.rb │ ├── 20180613224704_add_report_format6.rb │ ├── 20180614161626_add_report_format8.rb │ └── 20180614210435_add_report_format9.rb └── schema.rb ├── docs └── manual │ ├── bootstrapping.markdown │ ├── configuring.markdown │ ├── images │ └── background_tasks_pending.png │ ├── index.markdown │ ├── maintaining.markdown │ ├── rake_api.markdown │ └── upgrading.markdown ├── ext ├── build_defaults.yaml ├── debian │ ├── README.Debian │ ├── changelog.erb │ ├── compat │ ├── conf │ │ └── database.yml.template │ ├── control │ ├── copyright │ ├── default │ ├── dirs │ ├── doc │ │ └── examples │ │ │ ├── apache2-alias.conf │ │ │ ├── apache2-host.conf │ │ │ └── apache2-passenger.conf │ ├── docs │ ├── files │ ├── init │ ├── install │ ├── logrotate │ ├── po │ │ └── templates.pot │ ├── postinst │ ├── postrm │ ├── puppet-dashboard-workers.default │ ├── puppet-dashboard-workers.init │ ├── rmshebang.sh │ ├── rules │ └── source │ │ └── format ├── passenger │ └── dashboard-vhost.conf ├── project_data.yaml ├── puppet │ └── puppet_dashboard.rb └── redhat │ ├── puppet-dashboard-workers.init │ ├── puppet-dashboard-workers.service │ ├── puppet-dashboard.init │ ├── puppet-dashboard.logrotate │ ├── puppet-dashboard.service │ ├── puppet-dashboard.spec.erb │ ├── puppet-dashboard.sysconfig │ └── systemd-install.sh ├── lib ├── add_renderers.rb ├── assets │ └── .gitkeep ├── class_parameter_conflict_error.rb ├── core_callbacks.rb ├── csv_extensions.rb ├── data_generator.rb ├── find_by_id_or_name.rb ├── find_from_form.rb ├── has_parameters.rb ├── incorrect_report_kind.rb ├── node_classification_disabled_error.rb ├── node_group_graph.rb ├── parameter_conflict_error.rb ├── puppet │ └── report_sanitizer.rb ├── puppet_https.rb ├── read_only_enabled_error.rb ├── registry.rb ├── report_transformer.rb ├── settings_reader.rb ├── tasks │ ├── .gitkeep │ ├── classesgroups.rake │ ├── clean_sample_reports.rake │ ├── db_raw.rake │ ├── generate_and_import_samples.rake │ ├── generate_sample_reports.rake │ ├── generate_unresponsive_nodes.rake │ ├── import_reports.rake │ ├── install.rake │ ├── install_cleanup_cron.rake │ ├── node.rake │ ├── plugins.rake │ ├── prune_reports.rake │ ├── rake_helpers.rb │ ├── rspec_rcov.rake │ ├── schematize_reports.rake │ ├── scss.rake │ ├── summarize_reports.rake │ ├── timeline.rake │ └── update_report_data.rake └── trimmer.rb ├── log ├── .gitignore └── .gitkeep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico ├── images │ ├── close.gif │ ├── dashboard_logo.png │ ├── icons │ │ ├── add.png │ │ ├── add_grey.png │ │ ├── add_light_grey.png │ │ ├── bullet_green.png │ │ ├── bullet_red.png │ │ ├── bullet_toggle_minus.png │ │ ├── bullet_toggle_plus.png │ │ ├── cancel.png │ │ ├── changed.png │ │ ├── close.png │ │ ├── computer.png │ │ ├── delayed-job-failure.png │ │ ├── delayed-job-ok.png │ │ ├── delayed-job-warning.png │ │ ├── delete.png │ │ ├── edit.png │ │ ├── error.png │ │ ├── failed.png │ │ ├── help.png │ │ ├── inspect.png │ │ ├── notice.png │ │ ├── pending.png │ │ ├── popup.png │ │ ├── search.png │ │ ├── unchanged.png │ │ ├── unresponsive.png │ │ └── warning.png │ ├── loading.gif │ └── tipsy.gif └── robots.txt ├── spec ├── controllers │ ├── application_controller_spec.rb │ ├── delayed_job_failures_controller.rb │ ├── files_controller_spec.rb │ ├── node_classes_controller_spec.rb │ ├── node_group_memberships_controller_spec.rb │ ├── node_groups_controller_spec.rb │ ├── nodes_controller_spec.rb │ ├── pages_controller_spec.rb │ └── reports_controller_spec.rb ├── factories.rb ├── fixtures │ ├── reports │ │ ├── failure.yml │ │ ├── formats │ │ │ ├── 00_changes.yaml │ │ │ ├── 01_changes.yaml │ │ │ ├── 02_failing.yaml │ │ │ ├── 03_failing.yaml │ │ │ ├── 04_failing.yaml │ │ │ ├── 05_failing.yaml │ │ │ ├── 06_failing.yaml │ │ │ ├── 07_failing.yaml │ │ │ ├── 08_failing.yaml │ │ │ └── 09_failing.yaml │ │ ├── meta.yml │ │ ├── puppet25 │ │ │ └── 1_changed_0_failures.yml │ │ ├── puppet26 │ │ │ ├── 0_changed_0_failures.yml │ │ │ ├── report_error_exec_returns_non_zero.yaml │ │ │ ├── report_error_missing_dependency.yaml │ │ │ ├── report_error_on_package_service_and_files.yaml │ │ │ ├── report_ok_exec_returns_zero.yaml │ │ │ ├── report_ok_file_service_package.yaml │ │ │ ├── report_ok_service_and_exec_already_in_correct_state.yaml │ │ │ ├── report_ok_service_started_ok.yaml │ │ │ ├── report_ok_single_file.yaml │ │ │ └── resource_status_test.yaml │ │ ├── success.yml │ │ └── version2 │ │ │ └── example.yaml │ ├── sample_report.yml │ ├── sample_report.yml.erb │ └── sample_report_2_6_0.yml ├── helpers │ ├── application_helper_spec.rb │ ├── pages_helper_spec.rb │ ├── paginate_scope_helper_spec.rb │ ├── reports_helper_spec.rb │ ├── status_helper_spec.rb │ └── string_helper_spec.rb ├── lib │ ├── core_callbacks_spec.rb │ ├── puppet │ │ └── report_sanitizer_spec.rb │ ├── registry_spec.rb │ ├── report_transformer_spec.rb │ ├── settings_reader_spec.rb │ └── settings_spec.rb ├── models │ ├── node_class_membership_spec.rb │ ├── node_class_spec.rb │ ├── node_group_class_membership_spec.rb │ ├── node_group_edge_spec.rb │ ├── node_group_membership_spec.rb │ ├── node_group_spec.rb │ ├── node_spec.rb │ ├── parameter_spec.rb │ ├── report_spec.rb │ ├── resource_event_spec.rb │ ├── resource_status_spec.rb │ └── status_spec.rb ├── rcov.opts.example ├── shared_behaviors │ ├── action_integration_behavior.rb │ ├── controller_mixins.rb │ ├── controller_search.rb │ ├── restful_routing_behavior.rb │ └── sorted_index.rb ├── spec.opts.example ├── spec_helper.rb ├── support │ ├── describe_reports.rb │ ├── factory_bot.rb │ ├── from_response_body.rb │ ├── report_support.rb │ ├── response_codes.rb │ └── should_matchers.rb ├── views │ ├── node_classes │ │ ├── _actions.html.haml_spec.rb │ │ ├── edit.html.haml_spec.rb │ │ ├── index.html.haml_spec.rb │ │ ├── new.html.haml_spec.rb │ │ └── show.html.haml_spec.rb │ ├── node_groups │ │ ├── _actions.html.haml_spec.rb │ │ ├── _search.html.haml_spec.rb │ │ ├── edit.html.haml_spec.rb │ │ ├── index.html.haml_spec.rb │ │ ├── new.html.haml_spec.rb │ │ └── show.html.haml_spec.rb │ ├── nodes │ │ ├── edit.html.haml_spec.rb │ │ ├── index.html.haml_spec.rb │ │ ├── new.html.haml_spec.rb │ │ └── show.html.haml_spec.rb │ ├── pages │ │ └── home.html.haml_spec.rb │ ├── reports │ │ ├── _report.html.haml_spec.rb │ │ ├── _report_status_icon.html.haml_spec.rb │ │ ├── _report_status_td.html.haml_spec.rb │ │ ├── index.html.haml_spec.rb │ │ └── show.html.haml_spec.rb │ ├── statuses │ │ └── _run_failure.html.haml_spec.rb │ └── timeline_events │ │ └── _timeline_event.haml_spec.rb └── watchr.rb.example ├── spool └── .gitignore └── tmp └── .gitignore /.github/workflows/code-style-review.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/.github/workflows/code-style-review.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.haml-lint.yml: -------------------------------------------------------------------------------- 1 | inherits_from: .haml-lint_todo.yml 2 | exclude: 3 | - 'vendor/**/*' 4 | -------------------------------------------------------------------------------- /.haml-lint_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/.haml-lint_todo.yml -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /PLUGINS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/PLUGINS.md -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.0.1 2 | -------------------------------------------------------------------------------- /acceptance/tests/dashboard_rake_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/acceptance/tests/dashboard_rake_tasks.rb -------------------------------------------------------------------------------- /app/assets/javascripts/ajax_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/ajax_helper.js -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/application.radiator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/application.radiator.js -------------------------------------------------------------------------------- /app/assets/javascripts/autorefresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/autorefresh.js -------------------------------------------------------------------------------- /app/assets/javascripts/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/dashboard.js -------------------------------------------------------------------------------- /app/assets/javascripts/jqplot.barRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/jqplot.barRenderer.js -------------------------------------------------------------------------------- /app/assets/javascripts/jqplot.canvasAxisTickRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/jqplot.canvasAxisTickRenderer.js -------------------------------------------------------------------------------- /app/assets/javascripts/jqplot.canvasTextRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/jqplot.canvasTextRenderer.js -------------------------------------------------------------------------------- /app/assets/javascripts/jqplot.categoryAxisRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/jqplot.categoryAxisRenderer.js -------------------------------------------------------------------------------- /app/assets/javascripts/jqplot.highlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/jqplot.highlighter.js -------------------------------------------------------------------------------- /app/assets/javascripts/jqplot.pointLabels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/jqplot.pointLabels.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery.colorbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/jquery.colorbox.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/jquery.cookie.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/jquery.form.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery.jqplot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/jquery.jqplot.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery.livequery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/jquery.livequery.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery.placeholders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/jquery.placeholders.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery.templating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/jquery.templating.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery.tipsy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/jquery.tipsy.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery.tokeninput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/jquery.tokeninput.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery.ui.combobox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/jquery.ui.combobox.js -------------------------------------------------------------------------------- /app/assets/javascripts/radiator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/radiator.js -------------------------------------------------------------------------------- /app/assets/javascripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/search.js -------------------------------------------------------------------------------- /app/assets/javascripts/validation_response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/javascripts/validation_response.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/application.radiator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/application.radiator.css -------------------------------------------------------------------------------- /app/assets/stylesheets/colorbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/colorbox.css -------------------------------------------------------------------------------- /app/assets/stylesheets/dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/dashboard.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/forms.css -------------------------------------------------------------------------------- /app/assets/stylesheets/help.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/help.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/images/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/border.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/controls.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/grid.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/header.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/icons/add.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/icons/add_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/icons/add_grey.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/icons/add_light_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/icons/add_light_grey.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/icons/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/icons/computer.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/icons/delete.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/icons/edit.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/icons/failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/icons/failure.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/icons/search.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/icons/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/icons/success.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/internet_explorer/borderBottomCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/internet_explorer/borderBottomCenter.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/internet_explorer/borderBottomLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/internet_explorer/borderBottomLeft.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/internet_explorer/borderBottomRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/internet_explorer/borderBottomRight.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/internet_explorer/borderMiddleLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/internet_explorer/borderMiddleLeft.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/internet_explorer/borderMiddleRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/internet_explorer/borderMiddleRight.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/internet_explorer/borderTopCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/internet_explorer/borderTopCenter.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/internet_explorer/borderTopLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/internet_explorer/borderTopLeft.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/internet_explorer/borderTopRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/internet_explorer/borderTopRight.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/loading.gif -------------------------------------------------------------------------------- /app/assets/stylesheets/images/loading_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/loading_background.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/overlay.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/ui-bg_flat_0_eeeeee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/ui-bg_flat_0_eeeeee_40x100.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/ui-bg_flat_100_5c80a8_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/ui-bg_flat_100_5c80a8_40x100.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/ui-bg_flat_55_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/ui-bg_flat_55_ffffff_40x100.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/ui-bg_flat_65_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/ui-bg_flat_65_ffffff_40x100.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/ui-bg_highlight-soft_25_0073ea_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/ui-bg_highlight-soft_25_0073ea_1x100.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/ui-bg_highlight-soft_50_dddddd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/ui-bg_highlight-soft_50_dddddd_1x100.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/ui-icons_0073ea_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/ui-icons_0073ea_256x240.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/ui-icons_666666_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/ui-icons_666666_256x240.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/ui-icons_ff0084_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/ui-icons_ff0084_256x240.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/white-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/white-overlay.png -------------------------------------------------------------------------------- /app/assets/stylesheets/images/white-overlays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/images/white-overlays.png -------------------------------------------------------------------------------- /app/assets/stylesheets/jquery.jqplot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/jquery.jqplot.css -------------------------------------------------------------------------------- /app/assets/stylesheets/jquery.ui.combobox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/jquery.ui.combobox.css -------------------------------------------------------------------------------- /app/assets/stylesheets/jquery.ui.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/jquery.ui.custom.css -------------------------------------------------------------------------------- /app/assets/stylesheets/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/layout.css -------------------------------------------------------------------------------- /app/assets/stylesheets/links.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/links.css -------------------------------------------------------------------------------- /app/assets/stylesheets/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/mixins.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/popups.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/popups.css -------------------------------------------------------------------------------- /app/assets/stylesheets/radiator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/radiator.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/reset.css -------------------------------------------------------------------------------- /app/assets/stylesheets/tables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/tables.css -------------------------------------------------------------------------------- /app/assets/stylesheets/tipsy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/tipsy.css -------------------------------------------------------------------------------- /app/assets/stylesheets/token-input-facebook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/token-input-facebook.css -------------------------------------------------------------------------------- /app/assets/stylesheets/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/assets/stylesheets/typography.css -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/delayed_job_failures_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/controllers/delayed_job_failures_controller.rb -------------------------------------------------------------------------------- /app/controllers/files_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/controllers/files_controller.rb -------------------------------------------------------------------------------- /app/controllers/help_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/controllers/help_controller.rb -------------------------------------------------------------------------------- /app/controllers/node_class_memberships_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/controllers/node_class_memberships_controller.rb -------------------------------------------------------------------------------- /app/controllers/node_classes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/controllers/node_classes_controller.rb -------------------------------------------------------------------------------- /app/controllers/node_group_class_memberships_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/controllers/node_group_class_memberships_controller.rb -------------------------------------------------------------------------------- /app/controllers/node_group_memberships_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/controllers/node_group_memberships_controller.rb -------------------------------------------------------------------------------- /app/controllers/node_groups_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/controllers/node_groups_controller.rb -------------------------------------------------------------------------------- /app/controllers/nodes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/controllers/nodes_controller.rb -------------------------------------------------------------------------------- /app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/controllers/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/radiator_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/controllers/radiator_controller.rb -------------------------------------------------------------------------------- /app/controllers/reports_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/controllers/reports_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/conflict_analyzer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/helpers/conflict_analyzer.rb -------------------------------------------------------------------------------- /app/helpers/conflict_html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/helpers/conflict_html.rb -------------------------------------------------------------------------------- /app/helpers/node_classes_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/helpers/node_classes_helper.rb -------------------------------------------------------------------------------- /app/helpers/node_groups_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/helpers/node_groups_helper.rb -------------------------------------------------------------------------------- /app/helpers/nodes_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/helpers/nodes_helper.rb -------------------------------------------------------------------------------- /app/helpers/pages_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/helpers/pages_helper.rb -------------------------------------------------------------------------------- /app/helpers/paginate_scope_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/helpers/paginate_scope_helper.rb -------------------------------------------------------------------------------- /app/helpers/reports_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/helpers/reports_helper.rb -------------------------------------------------------------------------------- /app/helpers/status_helper.rb: -------------------------------------------------------------------------------- 1 | module StatusHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/string_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/helpers/string_helper.rb -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/mixins/searchable_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/mixins/searchable_index.rb -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/delayed_job_failure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/models/delayed_job_failure.rb -------------------------------------------------------------------------------- /app/models/metric.rb: -------------------------------------------------------------------------------- 1 | class Metric < ApplicationRecord 2 | belongs_to :report 3 | end 4 | -------------------------------------------------------------------------------- /app/models/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/models/node.rb -------------------------------------------------------------------------------- /app/models/node_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/models/node_class.rb -------------------------------------------------------------------------------- /app/models/node_class_membership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/models/node_class_membership.rb -------------------------------------------------------------------------------- /app/models/node_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/models/node_group.rb -------------------------------------------------------------------------------- /app/models/node_group_class_membership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/models/node_group_class_membership.rb -------------------------------------------------------------------------------- /app/models/node_group_edge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/models/node_group_edge.rb -------------------------------------------------------------------------------- /app/models/node_group_membership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/models/node_group_membership.rb -------------------------------------------------------------------------------- /app/models/parameter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/models/parameter.rb -------------------------------------------------------------------------------- /app/models/report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/models/report.rb -------------------------------------------------------------------------------- /app/models/report_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/models/report_log.rb -------------------------------------------------------------------------------- /app/models/resource_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/models/resource_event.rb -------------------------------------------------------------------------------- /app/models/resource_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/models/resource_status.rb -------------------------------------------------------------------------------- /app/models/status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/models/status.rb -------------------------------------------------------------------------------- /app/models/timeline_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/models/timeline_event.rb -------------------------------------------------------------------------------- /app/views/delayed_job_failures/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/delayed_job_failures/index.html.haml -------------------------------------------------------------------------------- /app/views/help/_node_status.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/help/_node_status.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_radiator.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/layouts/_radiator.html.haml -------------------------------------------------------------------------------- /app/views/layouts/application.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/layouts/application.html.haml -------------------------------------------------------------------------------- /app/views/metrics/_metrics_table.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/metrics/_metrics_table.html.haml -------------------------------------------------------------------------------- /app/views/node_class_memberships/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/node_class_memberships/_form.html.haml -------------------------------------------------------------------------------- /app/views/node_class_memberships/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/node_class_memberships/edit.html.haml -------------------------------------------------------------------------------- /app/views/node_class_memberships/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/node_class_memberships/show.html.haml -------------------------------------------------------------------------------- /app/views/node_classes/_actions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/node_classes/_actions.html.haml -------------------------------------------------------------------------------- /app/views/node_classes/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/node_classes/_form.html.haml -------------------------------------------------------------------------------- /app/views/node_classes/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/node_classes/edit.html.haml -------------------------------------------------------------------------------- /app/views/node_classes/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/node_classes/index.html.haml -------------------------------------------------------------------------------- /app/views/node_classes/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/node_classes/new.html.haml -------------------------------------------------------------------------------- /app/views/node_classes/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/node_classes/show.html.haml -------------------------------------------------------------------------------- /app/views/node_group_class_memberships/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/node_group_class_memberships/_form.html.haml -------------------------------------------------------------------------------- /app/views/node_group_class_memberships/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/node_group_class_memberships/edit.html.haml -------------------------------------------------------------------------------- /app/views/node_group_class_memberships/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/node_group_class_memberships/show.html.haml -------------------------------------------------------------------------------- /app/views/node_groups/_actions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/node_groups/_actions.html.haml -------------------------------------------------------------------------------- /app/views/node_groups/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/node_groups/_form.html.haml -------------------------------------------------------------------------------- /app/views/node_groups/_search.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/node_groups/_search.html.haml -------------------------------------------------------------------------------- /app/views/node_groups/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/node_groups/edit.html.haml -------------------------------------------------------------------------------- /app/views/node_groups/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/node_groups/index.html.haml -------------------------------------------------------------------------------- /app/views/node_groups/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/node_groups/new.html.haml -------------------------------------------------------------------------------- /app/views/node_groups/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/node_groups/show.html.haml -------------------------------------------------------------------------------- /app/views/nodes/_activity.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/nodes/_activity.html.haml -------------------------------------------------------------------------------- /app/views/nodes/_description.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/nodes/_description.html.haml -------------------------------------------------------------------------------- /app/views/nodes/_facts.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/nodes/_facts.html.haml -------------------------------------------------------------------------------- /app/views/nodes/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/nodes/_form.html.haml -------------------------------------------------------------------------------- /app/views/nodes/_hidden.html.haml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/nodes/_inspections.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/nodes/_inspections.html.haml -------------------------------------------------------------------------------- /app/views/nodes/_inventory_service.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/nodes/_inventory_service.html.haml -------------------------------------------------------------------------------- /app/views/nodes/_log_detail.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/nodes/_log_detail.html.haml -------------------------------------------------------------------------------- /app/views/nodes/_nodes.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/nodes/_nodes.html.haml -------------------------------------------------------------------------------- /app/views/nodes/_reports.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/nodes/_reports.html.haml -------------------------------------------------------------------------------- /app/views/nodes/_reports_table_tfoot.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/nodes/_reports_table_tfoot.html.haml -------------------------------------------------------------------------------- /app/views/nodes/_search.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/nodes/_search.html.haml -------------------------------------------------------------------------------- /app/views/nodes/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/nodes/edit.html.haml -------------------------------------------------------------------------------- /app/views/nodes/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/nodes/index.html.haml -------------------------------------------------------------------------------- /app/views/nodes/inventory_search.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/nodes/inventory_search.html.haml -------------------------------------------------------------------------------- /app/views/nodes/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/nodes/new.html.haml -------------------------------------------------------------------------------- /app/views/nodes/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/nodes/show.html.haml -------------------------------------------------------------------------------- /app/views/pages/_node_summary_row.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/pages/_node_summary_row.haml -------------------------------------------------------------------------------- /app/views/pages/home.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/pages/home.html.haml -------------------------------------------------------------------------------- /app/views/pages/index.html.haml: -------------------------------------------------------------------------------- 1 | #h2 Puppet Dashboard 2 | -------------------------------------------------------------------------------- /app/views/parameters/_parameter.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/parameters/_parameter.html.haml -------------------------------------------------------------------------------- /app/views/parameters/_parameter_input.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/parameters/_parameter_input.html.haml -------------------------------------------------------------------------------- /app/views/puppet/transaction/reports/_report.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/puppet/transaction/reports/_report.haml -------------------------------------------------------------------------------- /app/views/puppet/util/logs/_log.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/puppet/util/logs/_log.haml -------------------------------------------------------------------------------- /app/views/reports/_log.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/reports/_log.html.haml -------------------------------------------------------------------------------- /app/views/reports/_metrics.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/reports/_metrics.html.haml -------------------------------------------------------------------------------- /app/views/reports/_report.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/reports/_report.html.haml -------------------------------------------------------------------------------- /app/views/reports/_report_status_icon.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/reports/_report_status_icon.html.haml -------------------------------------------------------------------------------- /app/views/reports/_report_status_td.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/reports/_report_status_td.html.haml -------------------------------------------------------------------------------- /app/views/reports/_report_title.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/reports/_report_title.html.haml -------------------------------------------------------------------------------- /app/views/reports/_reports_table.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/reports/_reports_table.html.haml -------------------------------------------------------------------------------- /app/views/reports/_resource_statuses.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/reports/_resource_statuses.html.haml -------------------------------------------------------------------------------- /app/views/reports/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/reports/index.html.haml -------------------------------------------------------------------------------- /app/views/reports/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/reports/show.html.haml -------------------------------------------------------------------------------- /app/views/shared/_class_parameter_conflicts_table.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/shared/_class_parameter_conflicts_table.html.haml -------------------------------------------------------------------------------- /app/views/shared/_classes.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/shared/_classes.html.haml -------------------------------------------------------------------------------- /app/views/shared/_confirm.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/shared/_confirm.html.haml -------------------------------------------------------------------------------- /app/views/shared/_error.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/shared/_error.html.haml -------------------------------------------------------------------------------- /app/views/shared/_form_errors.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/shared/_form_errors.html.haml -------------------------------------------------------------------------------- /app/views/shared/_global_nav.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/shared/_global_nav.html.haml -------------------------------------------------------------------------------- /app/views/shared/_groups.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/shared/_groups.html.haml -------------------------------------------------------------------------------- /app/views/shared/_inspector.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/shared/_inspector.html.haml -------------------------------------------------------------------------------- /app/views/shared/_node_manager_sidebar.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/shared/_node_manager_sidebar.html.haml -------------------------------------------------------------------------------- /app/views/shared/_node_manager_sidebar_for_type.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/shared/_node_manager_sidebar_for_type.html.haml -------------------------------------------------------------------------------- /app/views/shared/_node_summary.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/shared/_node_summary.html.haml -------------------------------------------------------------------------------- /app/views/shared/_parameters.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/shared/_parameters.html.haml -------------------------------------------------------------------------------- /app/views/shared/_parameters_part1.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/shared/_parameters_part1.html.haml -------------------------------------------------------------------------------- /app/views/shared/_parameters_part2.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/shared/_parameters_part2.html.haml -------------------------------------------------------------------------------- /app/views/shared/_search.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/shared/_search.html.haml -------------------------------------------------------------------------------- /app/views/shared/_skiplink.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/shared/_skiplink.html.haml -------------------------------------------------------------------------------- /app/views/shared/_skiptarget.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/shared/_skiptarget.html.haml -------------------------------------------------------------------------------- /app/views/shared/_tokenized_text_box.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/shared/_tokenized_text_box.html.haml -------------------------------------------------------------------------------- /app/views/shared/_variable_conflicts_table.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/shared/_variable_conflicts_table.html.haml -------------------------------------------------------------------------------- /app/views/shared/_variables.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/shared/_variables.html.haml -------------------------------------------------------------------------------- /app/views/statuses/_run_failure.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/statuses/_run_failure.html.haml -------------------------------------------------------------------------------- /app/views/statuses/_run_time.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/statuses/_run_time.html.haml -------------------------------------------------------------------------------- /app/views/statuses/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/statuses/show.html.haml -------------------------------------------------------------------------------- /app/views/timeline_events/_timeline_event.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/app/views/timeline_events/_timeline_event.html.haml -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/delayed_job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/bin/delayed_job -------------------------------------------------------------------------------- /bin/external_node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/bin/external_node -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/bin/update -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/database.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/database.yml.example -------------------------------------------------------------------------------- /config/database.yml.travis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/database.yml.travis -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/00_settings_reader_init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/initializers/00_settings_reader_init.rb -------------------------------------------------------------------------------- /config/initializers/01_serialize_flash_as_hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/initializers/01_serialize_flash_as_hash.rb -------------------------------------------------------------------------------- /config/initializers/ZZZ_load_plugin_initializers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/initializers/ZZZ_load_plugin_initializers.rb -------------------------------------------------------------------------------- /config/initializers/app_version_init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/initializers/app_version_init.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/check_migration_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/initializers/check_migration_version.rb -------------------------------------------------------------------------------- /config/initializers/clear_cached_assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/initializers/clear_cached_assets.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/delayed_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/initializers/delayed_job.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/requires.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/initializers/requires.rb -------------------------------------------------------------------------------- /config/initializers/safe_yaml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/initializers/safe_yaml.rb -------------------------------------------------------------------------------- /config/initializers/sass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/initializers/sass.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/time_formats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/initializers/time_formats.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/preinitializer.rb: -------------------------------------------------------------------------------- 1 | require 'thread' 2 | -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/settings.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/settings.yml.example -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/config/storage.yml -------------------------------------------------------------------------------- /db/migrate/20090916215745_basic_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20090916215745_basic_schema.rb -------------------------------------------------------------------------------- /db/migrate/20090916221313_create_node_group_memberships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20090916221313_create_node_group_memberships.rb -------------------------------------------------------------------------------- /db/migrate/20090917163433_create_node_classes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20090917163433_create_node_classes.rb -------------------------------------------------------------------------------- /db/migrate/20090917163500_create_node_class_memberships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20090917163500_create_node_class_memberships.rb -------------------------------------------------------------------------------- /db/migrate/20090921151631_create_node_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20090921151631_create_node_groups.rb -------------------------------------------------------------------------------- /db/migrate/20091025181245_create_node_group_class_memberships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20091025181245_create_node_group_class_memberships.rb -------------------------------------------------------------------------------- /db/migrate/20091025182048_add_parameters_to_node_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20091025182048_add_parameters_to_node_groups.rb -------------------------------------------------------------------------------- /db/migrate/20091028174517_create_timeline_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20091028174517_create_timeline_events.rb -------------------------------------------------------------------------------- /db/migrate/20091028210805_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20091028210805_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20091110002528_create_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20091110002528_create_parameters.rb -------------------------------------------------------------------------------- /db/migrate/20091110005353_remove_parameters_from_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20091110005353_remove_parameters_from_node.rb -------------------------------------------------------------------------------- /db/migrate/20091116212418_create_node_group_edges.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20091116212418_create_node_group_edges.rb -------------------------------------------------------------------------------- /db/migrate/20091116235339_remove_parameters_from_node_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20091116235339_remove_parameters_from_node_groups.rb -------------------------------------------------------------------------------- /db/migrate/20091120013227_create_reports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20091120013227_create_reports.rb -------------------------------------------------------------------------------- /db/migrate/20091130201400_add_url_to_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20091130201400_add_url_to_node.rb -------------------------------------------------------------------------------- /db/migrate/20091208225308_add_reported_at_to_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20091208225308_add_reported_at_to_node.rb -------------------------------------------------------------------------------- /db/migrate/20091215194836_add_success_to_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20091215194836_add_success_to_report.rb -------------------------------------------------------------------------------- /db/migrate/20091217192540_add_host_and_time_to_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20091217192540_add_host_and_time_to_report.rb -------------------------------------------------------------------------------- /db/migrate/20091217212330_migrate_report_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20091217212330_migrate_report_data.rb -------------------------------------------------------------------------------- /db/migrate/20100318131825_add_indexes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20100318131825_add_indexes.rb -------------------------------------------------------------------------------- /db/migrate/20100726070117_add_success_and_last_report_to_nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20100726070117_add_success_and_last_report_to_nodes.rb -------------------------------------------------------------------------------- /db/migrate/20100806181533_cleanup_node_memberships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20100806181533_cleanup_node_memberships.rb -------------------------------------------------------------------------------- /db/migrate/20100810011613_change_report_report_field_size_to_be_larger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20100810011613_change_report_report_field_size_to_be_larger.rb -------------------------------------------------------------------------------- /db/migrate/20100811204545_add_success_to_report_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20100811204545_add_success_to_report_index.rb -------------------------------------------------------------------------------- /db/migrate/20100909191050_remove_duplicate_class_and_group_memberships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20100909191050_remove_duplicate_class_and_group_memberships.rb -------------------------------------------------------------------------------- /db/migrate/20100916183948_adjust_indexes_on_reports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20100916183948_adjust_indexes_on_reports.rb -------------------------------------------------------------------------------- /db/migrate/20101109001012_add_status_to_reports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20101109001012_add_status_to_reports.rb -------------------------------------------------------------------------------- /db/migrate/20101118222325_add_hidden_to_nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20101118222325_add_hidden_to_nodes.rb -------------------------------------------------------------------------------- /db/migrate/20101206225510_schematize_reports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20101206225510_schematize_reports.rb -------------------------------------------------------------------------------- /db/migrate/20101229023023_add_baseline_report_id_to_nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20101229023023_add_baseline_report_id_to_nodes.rb -------------------------------------------------------------------------------- /db/migrate/20101230054456_drop_user_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20101230054456_drop_user_table.rb -------------------------------------------------------------------------------- /db/migrate/20110105015322_add_out_of_sync_count_to_resource_statuses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20110105015322_add_out_of_sync_count_to_resource_statuses.rb -------------------------------------------------------------------------------- /db/migrate/20110105231637_remove_source_description_from_resource_statuses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20110105231637_remove_source_description_from_resource_statuses.rb -------------------------------------------------------------------------------- /db/migrate/20110105231833_remove_source_description_from_resource_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20110105231833_remove_source_description_from_resource_events.rb -------------------------------------------------------------------------------- /db/migrate/20110105233543_add_historical_value_to_resource_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20110105233543_add_historical_value_to_resource_events.rb -------------------------------------------------------------------------------- /db/migrate/20110105233640_add_audited_to_resource_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20110105233640_add_audited_to_resource_events.rb -------------------------------------------------------------------------------- /db/migrate/20110105234202_remove_tags_from_resource_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20110105234202_remove_tags_from_resource_events.rb -------------------------------------------------------------------------------- /db/migrate/20110106002514_add_skipped_to_resource_statuses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20110106002514_add_skipped_to_resource_statuses.rb -------------------------------------------------------------------------------- /db/migrate/20110107233911_remove_out_of_sync_column.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20110107233911_remove_out_of_sync_column.rb -------------------------------------------------------------------------------- /db/migrate/20110113012919_make_long_string_fields_into_text_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20110113012919_make_long_string_fields_into_text_fields.rb -------------------------------------------------------------------------------- /db/migrate/20110113013807_add_last_inspect_report_id_to_nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20110113013807_add_last_inspect_report_id_to_nodes.rb -------------------------------------------------------------------------------- /db/migrate/20110113183616_remove_unused_tables_and_models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20110113183616_remove_unused_tables_and_models.rb -------------------------------------------------------------------------------- /db/migrate/20110113195253_rename_column_last_report_id_to_last_apply_report_id_on_nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20110113195253_rename_column_last_report_id_to_last_apply_report_id_on_nodes.rb -------------------------------------------------------------------------------- /db/migrate/20110114190814_add_failed_to_resource_statuses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20110114190814_add_failed_to_resource_statuses.rb -------------------------------------------------------------------------------- /db/migrate/20110130010154_remove_column_baseline_report_id_from_nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20110130010154_remove_column_baseline_report_id_from_nodes.rb -------------------------------------------------------------------------------- /db/migrate/20110603183820_add_status_column_to_resource_statuses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20110603183820_add_status_column_to_resource_statuses.rb -------------------------------------------------------------------------------- /db/migrate/20110614234202_create_delayed_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20110614234202_create_delayed_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20110620111500_create_delayed_job_failures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20110620111500_create_delayed_job_failures.rb -------------------------------------------------------------------------------- /db/migrate/20110728195829_add_node_host_uniqueness_constraint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20110728195829_add_node_host_uniqueness_constraint.rb -------------------------------------------------------------------------------- /db/migrate/20110729201310_add_delayed_job_failure_backtrace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20110729201310_add_delayed_job_failure_backtrace.rb -------------------------------------------------------------------------------- /db/migrate/20111118204121_add_report_foreign_key_constraints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20111118204121_add_report_foreign_key_constraints.rb -------------------------------------------------------------------------------- /db/migrate/20120112195235_remove_url_from_nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20120112195235_remove_url_from_nodes.rb -------------------------------------------------------------------------------- /db/migrate/20121111212016_add_queue_to_delayed_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20121111212016_add_queue_to_delayed_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20130322105500_create_foreign_key_indexes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20130322105500_create_foreign_key_indexes.rb -------------------------------------------------------------------------------- /db/migrate/20130418063629_add_description_to_node_classes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20130418063629_add_description_to_node_classes.rb -------------------------------------------------------------------------------- /db/migrate/20130418064011_add_description_to_node_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20130418064011_add_description_to_node_groups.rb -------------------------------------------------------------------------------- /db/migrate/20140118072510_add_performance_indices.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20140118072510_add_performance_indices.rb -------------------------------------------------------------------------------- /db/migrate/20140414051338_change_reports_to_blobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20140414051338_change_reports_to_blobs.rb -------------------------------------------------------------------------------- /db/migrate/20141217071943_add_environment_to_nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20141217071943_add_environment_to_nodes.rb -------------------------------------------------------------------------------- /db/migrate/20150405234511_add_environment_to_reports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20150405234511_add_environment_to_reports.rb -------------------------------------------------------------------------------- /db/migrate/20150406035502_add_transaction_uuid_to_reports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20150406035502_add_transaction_uuid_to_reports.rb -------------------------------------------------------------------------------- /db/migrate/20150406035704_add_containment_path_to_resource_statuses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20150406035704_add_containment_path_to_resource_statuses.rb -------------------------------------------------------------------------------- /db/migrate/20180612210108_add_catalog_uuid_to_reports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20180612210108_add_catalog_uuid_to_reports.rb -------------------------------------------------------------------------------- /db/migrate/20180612210310_add_cached_catalog_status_to_reports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20180612210310_add_cached_catalog_status_to_reports.rb -------------------------------------------------------------------------------- /db/migrate/20180613224704_add_report_format6.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20180613224704_add_report_format6.rb -------------------------------------------------------------------------------- /db/migrate/20180614161626_add_report_format8.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20180614161626_add_report_format8.rb -------------------------------------------------------------------------------- /db/migrate/20180614210435_add_report_format9.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/migrate/20180614210435_add_report_format9.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/db/schema.rb -------------------------------------------------------------------------------- /docs/manual/bootstrapping.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/docs/manual/bootstrapping.markdown -------------------------------------------------------------------------------- /docs/manual/configuring.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/docs/manual/configuring.markdown -------------------------------------------------------------------------------- /docs/manual/images/background_tasks_pending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/docs/manual/images/background_tasks_pending.png -------------------------------------------------------------------------------- /docs/manual/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/docs/manual/index.markdown -------------------------------------------------------------------------------- /docs/manual/maintaining.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/docs/manual/maintaining.markdown -------------------------------------------------------------------------------- /docs/manual/rake_api.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/docs/manual/rake_api.markdown -------------------------------------------------------------------------------- /docs/manual/upgrading.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/docs/manual/upgrading.markdown -------------------------------------------------------------------------------- /ext/build_defaults.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/build_defaults.yaml -------------------------------------------------------------------------------- /ext/debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/debian/README.Debian -------------------------------------------------------------------------------- /ext/debian/changelog.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/debian/changelog.erb -------------------------------------------------------------------------------- /ext/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /ext/debian/conf/database.yml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/debian/conf/database.yml.template -------------------------------------------------------------------------------- /ext/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/debian/control -------------------------------------------------------------------------------- /ext/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/debian/copyright -------------------------------------------------------------------------------- /ext/debian/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/debian/default -------------------------------------------------------------------------------- /ext/debian/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/debian/dirs -------------------------------------------------------------------------------- /ext/debian/doc/examples/apache2-alias.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/debian/doc/examples/apache2-alias.conf -------------------------------------------------------------------------------- /ext/debian/doc/examples/apache2-host.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/debian/doc/examples/apache2-host.conf -------------------------------------------------------------------------------- /ext/debian/doc/examples/apache2-passenger.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/debian/doc/examples/apache2-passenger.conf -------------------------------------------------------------------------------- /ext/debian/docs: -------------------------------------------------------------------------------- 1 | debian/doc/examples 2 | -------------------------------------------------------------------------------- /ext/debian/files: -------------------------------------------------------------------------------- 1 | puppet-dashboard_1.0.3_all.deb web extra 2 | -------------------------------------------------------------------------------- /ext/debian/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/debian/init -------------------------------------------------------------------------------- /ext/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/debian/install -------------------------------------------------------------------------------- /ext/debian/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/debian/logrotate -------------------------------------------------------------------------------- /ext/debian/po/templates.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/debian/po/templates.pot -------------------------------------------------------------------------------- /ext/debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/debian/postinst -------------------------------------------------------------------------------- /ext/debian/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/debian/postrm -------------------------------------------------------------------------------- /ext/debian/puppet-dashboard-workers.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/debian/puppet-dashboard-workers.default -------------------------------------------------------------------------------- /ext/debian/puppet-dashboard-workers.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/debian/puppet-dashboard-workers.init -------------------------------------------------------------------------------- /ext/debian/rmshebang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/debian/rmshebang.sh -------------------------------------------------------------------------------- /ext/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/debian/rules -------------------------------------------------------------------------------- /ext/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /ext/passenger/dashboard-vhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/passenger/dashboard-vhost.conf -------------------------------------------------------------------------------- /ext/project_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/project_data.yaml -------------------------------------------------------------------------------- /ext/puppet/puppet_dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/puppet/puppet_dashboard.rb -------------------------------------------------------------------------------- /ext/redhat/puppet-dashboard-workers.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/redhat/puppet-dashboard-workers.init -------------------------------------------------------------------------------- /ext/redhat/puppet-dashboard-workers.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/redhat/puppet-dashboard-workers.service -------------------------------------------------------------------------------- /ext/redhat/puppet-dashboard.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/redhat/puppet-dashboard.init -------------------------------------------------------------------------------- /ext/redhat/puppet-dashboard.logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/redhat/puppet-dashboard.logrotate -------------------------------------------------------------------------------- /ext/redhat/puppet-dashboard.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/redhat/puppet-dashboard.service -------------------------------------------------------------------------------- /ext/redhat/puppet-dashboard.spec.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/redhat/puppet-dashboard.spec.erb -------------------------------------------------------------------------------- /ext/redhat/puppet-dashboard.sysconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/redhat/puppet-dashboard.sysconfig -------------------------------------------------------------------------------- /ext/redhat/systemd-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/ext/redhat/systemd-install.sh -------------------------------------------------------------------------------- /lib/add_renderers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/add_renderers.rb -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/class_parameter_conflict_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/class_parameter_conflict_error.rb -------------------------------------------------------------------------------- /lib/core_callbacks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/core_callbacks.rb -------------------------------------------------------------------------------- /lib/csv_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/csv_extensions.rb -------------------------------------------------------------------------------- /lib/data_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/data_generator.rb -------------------------------------------------------------------------------- /lib/find_by_id_or_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/find_by_id_or_name.rb -------------------------------------------------------------------------------- /lib/find_from_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/find_from_form.rb -------------------------------------------------------------------------------- /lib/has_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/has_parameters.rb -------------------------------------------------------------------------------- /lib/incorrect_report_kind.rb: -------------------------------------------------------------------------------- 1 | class IncorrectReportKind < StandardError 2 | end 3 | -------------------------------------------------------------------------------- /lib/node_classification_disabled_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/node_classification_disabled_error.rb -------------------------------------------------------------------------------- /lib/node_group_graph.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/node_group_graph.rb -------------------------------------------------------------------------------- /lib/parameter_conflict_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/parameter_conflict_error.rb -------------------------------------------------------------------------------- /lib/puppet/report_sanitizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/puppet/report_sanitizer.rb -------------------------------------------------------------------------------- /lib/puppet_https.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/puppet_https.rb -------------------------------------------------------------------------------- /lib/read_only_enabled_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/read_only_enabled_error.rb -------------------------------------------------------------------------------- /lib/registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/registry.rb -------------------------------------------------------------------------------- /lib/report_transformer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/report_transformer.rb -------------------------------------------------------------------------------- /lib/settings_reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/settings_reader.rb -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/classesgroups.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/tasks/classesgroups.rake -------------------------------------------------------------------------------- /lib/tasks/clean_sample_reports.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/tasks/clean_sample_reports.rake -------------------------------------------------------------------------------- /lib/tasks/db_raw.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/tasks/db_raw.rake -------------------------------------------------------------------------------- /lib/tasks/generate_and_import_samples.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/tasks/generate_and_import_samples.rake -------------------------------------------------------------------------------- /lib/tasks/generate_sample_reports.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/tasks/generate_sample_reports.rake -------------------------------------------------------------------------------- /lib/tasks/generate_unresponsive_nodes.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/tasks/generate_unresponsive_nodes.rake -------------------------------------------------------------------------------- /lib/tasks/import_reports.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/tasks/import_reports.rake -------------------------------------------------------------------------------- /lib/tasks/install.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/tasks/install.rake -------------------------------------------------------------------------------- /lib/tasks/install_cleanup_cron.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/tasks/install_cleanup_cron.rake -------------------------------------------------------------------------------- /lib/tasks/node.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/tasks/node.rake -------------------------------------------------------------------------------- /lib/tasks/plugins.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/tasks/plugins.rake -------------------------------------------------------------------------------- /lib/tasks/prune_reports.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/tasks/prune_reports.rake -------------------------------------------------------------------------------- /lib/tasks/rake_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/tasks/rake_helpers.rb -------------------------------------------------------------------------------- /lib/tasks/rspec_rcov.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/tasks/rspec_rcov.rake -------------------------------------------------------------------------------- /lib/tasks/schematize_reports.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/tasks/schematize_reports.rake -------------------------------------------------------------------------------- /lib/tasks/scss.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/tasks/scss.rake -------------------------------------------------------------------------------- /lib/tasks/summarize_reports.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/tasks/summarize_reports.rake -------------------------------------------------------------------------------- /lib/tasks/timeline.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/tasks/timeline.rake -------------------------------------------------------------------------------- /lib/tasks/update_report_data.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/tasks/update_report_data.rake -------------------------------------------------------------------------------- /lib/trimmer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/lib/trimmer.rb -------------------------------------------------------------------------------- /log/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/close.gif -------------------------------------------------------------------------------- /public/images/dashboard_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/dashboard_logo.png -------------------------------------------------------------------------------- /public/images/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/add.png -------------------------------------------------------------------------------- /public/images/icons/add_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/add_grey.png -------------------------------------------------------------------------------- /public/images/icons/add_light_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/add_light_grey.png -------------------------------------------------------------------------------- /public/images/icons/bullet_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/bullet_green.png -------------------------------------------------------------------------------- /public/images/icons/bullet_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/bullet_red.png -------------------------------------------------------------------------------- /public/images/icons/bullet_toggle_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/bullet_toggle_minus.png -------------------------------------------------------------------------------- /public/images/icons/bullet_toggle_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/bullet_toggle_plus.png -------------------------------------------------------------------------------- /public/images/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/cancel.png -------------------------------------------------------------------------------- /public/images/icons/changed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/changed.png -------------------------------------------------------------------------------- /public/images/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/close.png -------------------------------------------------------------------------------- /public/images/icons/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/computer.png -------------------------------------------------------------------------------- /public/images/icons/delayed-job-failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/delayed-job-failure.png -------------------------------------------------------------------------------- /public/images/icons/delayed-job-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/delayed-job-ok.png -------------------------------------------------------------------------------- /public/images/icons/delayed-job-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/delayed-job-warning.png -------------------------------------------------------------------------------- /public/images/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/delete.png -------------------------------------------------------------------------------- /public/images/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/edit.png -------------------------------------------------------------------------------- /public/images/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/error.png -------------------------------------------------------------------------------- /public/images/icons/failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/failed.png -------------------------------------------------------------------------------- /public/images/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/help.png -------------------------------------------------------------------------------- /public/images/icons/inspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/inspect.png -------------------------------------------------------------------------------- /public/images/icons/notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/notice.png -------------------------------------------------------------------------------- /public/images/icons/pending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/pending.png -------------------------------------------------------------------------------- /public/images/icons/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/popup.png -------------------------------------------------------------------------------- /public/images/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/search.png -------------------------------------------------------------------------------- /public/images/icons/unchanged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/unchanged.png -------------------------------------------------------------------------------- /public/images/icons/unresponsive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/unresponsive.png -------------------------------------------------------------------------------- /public/images/icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/icons/warning.png -------------------------------------------------------------------------------- /public/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/loading.gif -------------------------------------------------------------------------------- /public/images/tipsy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/public/images/tipsy.gif -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /spec/controllers/application_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/controllers/application_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/delayed_job_failures_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/controllers/delayed_job_failures_controller.rb -------------------------------------------------------------------------------- /spec/controllers/files_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/controllers/files_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/node_classes_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/controllers/node_classes_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/node_group_memberships_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/controllers/node_group_memberships_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/node_groups_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/controllers/node_groups_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/nodes_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/controllers/nodes_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/pages_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/controllers/pages_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/reports_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/controllers/reports_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/factories.rb -------------------------------------------------------------------------------- /spec/fixtures/reports/failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/failure.yml -------------------------------------------------------------------------------- /spec/fixtures/reports/formats/00_changes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/formats/00_changes.yaml -------------------------------------------------------------------------------- /spec/fixtures/reports/formats/01_changes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/formats/01_changes.yaml -------------------------------------------------------------------------------- /spec/fixtures/reports/formats/02_failing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/formats/02_failing.yaml -------------------------------------------------------------------------------- /spec/fixtures/reports/formats/03_failing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/formats/03_failing.yaml -------------------------------------------------------------------------------- /spec/fixtures/reports/formats/04_failing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/formats/04_failing.yaml -------------------------------------------------------------------------------- /spec/fixtures/reports/formats/05_failing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/formats/05_failing.yaml -------------------------------------------------------------------------------- /spec/fixtures/reports/formats/06_failing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/formats/06_failing.yaml -------------------------------------------------------------------------------- /spec/fixtures/reports/formats/07_failing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/formats/07_failing.yaml -------------------------------------------------------------------------------- /spec/fixtures/reports/formats/08_failing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/formats/08_failing.yaml -------------------------------------------------------------------------------- /spec/fixtures/reports/formats/09_failing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/formats/09_failing.yaml -------------------------------------------------------------------------------- /spec/fixtures/reports/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/meta.yml -------------------------------------------------------------------------------- /spec/fixtures/reports/puppet25/1_changed_0_failures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/puppet25/1_changed_0_failures.yml -------------------------------------------------------------------------------- /spec/fixtures/reports/puppet26/0_changed_0_failures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/puppet26/0_changed_0_failures.yml -------------------------------------------------------------------------------- /spec/fixtures/reports/puppet26/report_error_exec_returns_non_zero.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/puppet26/report_error_exec_returns_non_zero.yaml -------------------------------------------------------------------------------- /spec/fixtures/reports/puppet26/report_error_missing_dependency.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/puppet26/report_error_missing_dependency.yaml -------------------------------------------------------------------------------- /spec/fixtures/reports/puppet26/report_error_on_package_service_and_files.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/puppet26/report_error_on_package_service_and_files.yaml -------------------------------------------------------------------------------- /spec/fixtures/reports/puppet26/report_ok_exec_returns_zero.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/puppet26/report_ok_exec_returns_zero.yaml -------------------------------------------------------------------------------- /spec/fixtures/reports/puppet26/report_ok_file_service_package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/puppet26/report_ok_file_service_package.yaml -------------------------------------------------------------------------------- /spec/fixtures/reports/puppet26/report_ok_service_and_exec_already_in_correct_state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/puppet26/report_ok_service_and_exec_already_in_correct_state.yaml -------------------------------------------------------------------------------- /spec/fixtures/reports/puppet26/report_ok_service_started_ok.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/puppet26/report_ok_service_started_ok.yaml -------------------------------------------------------------------------------- /spec/fixtures/reports/puppet26/report_ok_single_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/puppet26/report_ok_single_file.yaml -------------------------------------------------------------------------------- /spec/fixtures/reports/puppet26/resource_status_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/puppet26/resource_status_test.yaml -------------------------------------------------------------------------------- /spec/fixtures/reports/success.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/success.yml -------------------------------------------------------------------------------- /spec/fixtures/reports/version2/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/reports/version2/example.yaml -------------------------------------------------------------------------------- /spec/fixtures/sample_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/sample_report.yml -------------------------------------------------------------------------------- /spec/fixtures/sample_report.yml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/sample_report.yml.erb -------------------------------------------------------------------------------- /spec/fixtures/sample_report_2_6_0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/fixtures/sample_report_2_6_0.yml -------------------------------------------------------------------------------- /spec/helpers/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/helpers/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/pages_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/helpers/pages_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/paginate_scope_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/helpers/paginate_scope_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/reports_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/helpers/reports_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/status_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/helpers/status_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/string_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/helpers/string_helper_spec.rb -------------------------------------------------------------------------------- /spec/lib/core_callbacks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/lib/core_callbacks_spec.rb -------------------------------------------------------------------------------- /spec/lib/puppet/report_sanitizer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/lib/puppet/report_sanitizer_spec.rb -------------------------------------------------------------------------------- /spec/lib/registry_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/lib/registry_spec.rb -------------------------------------------------------------------------------- /spec/lib/report_transformer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/lib/report_transformer_spec.rb -------------------------------------------------------------------------------- /spec/lib/settings_reader_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/lib/settings_reader_spec.rb -------------------------------------------------------------------------------- /spec/lib/settings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/lib/settings_spec.rb -------------------------------------------------------------------------------- /spec/models/node_class_membership_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/models/node_class_membership_spec.rb -------------------------------------------------------------------------------- /spec/models/node_class_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/models/node_class_spec.rb -------------------------------------------------------------------------------- /spec/models/node_group_class_membership_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/models/node_group_class_membership_spec.rb -------------------------------------------------------------------------------- /spec/models/node_group_edge_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/models/node_group_edge_spec.rb -------------------------------------------------------------------------------- /spec/models/node_group_membership_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/models/node_group_membership_spec.rb -------------------------------------------------------------------------------- /spec/models/node_group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/models/node_group_spec.rb -------------------------------------------------------------------------------- /spec/models/node_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/models/node_spec.rb -------------------------------------------------------------------------------- /spec/models/parameter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/models/parameter_spec.rb -------------------------------------------------------------------------------- /spec/models/report_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/models/report_spec.rb -------------------------------------------------------------------------------- /spec/models/resource_event_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/models/resource_event_spec.rb -------------------------------------------------------------------------------- /spec/models/resource_status_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/models/resource_status_spec.rb -------------------------------------------------------------------------------- /spec/models/status_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/models/status_spec.rb -------------------------------------------------------------------------------- /spec/rcov.opts.example: -------------------------------------------------------------------------------- 1 | --exclude "spec/*,gems/*" 2 | --rails 3 | -------------------------------------------------------------------------------- /spec/shared_behaviors/action_integration_behavior.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/shared_behaviors/action_integration_behavior.rb -------------------------------------------------------------------------------- /spec/shared_behaviors/controller_mixins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/shared_behaviors/controller_mixins.rb -------------------------------------------------------------------------------- /spec/shared_behaviors/controller_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/shared_behaviors/controller_search.rb -------------------------------------------------------------------------------- /spec/shared_behaviors/restful_routing_behavior.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/shared_behaviors/restful_routing_behavior.rb -------------------------------------------------------------------------------- /spec/shared_behaviors/sorted_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/shared_behaviors/sorted_index.rb -------------------------------------------------------------------------------- /spec/spec.opts.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/spec.opts.example -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/describe_reports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/support/describe_reports.rb -------------------------------------------------------------------------------- /spec/support/factory_bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/support/factory_bot.rb -------------------------------------------------------------------------------- /spec/support/from_response_body.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/support/from_response_body.rb -------------------------------------------------------------------------------- /spec/support/report_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/support/report_support.rb -------------------------------------------------------------------------------- /spec/support/response_codes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/support/response_codes.rb -------------------------------------------------------------------------------- /spec/support/should_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/support/should_matchers.rb -------------------------------------------------------------------------------- /spec/views/node_classes/_actions.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/node_classes/_actions.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/node_classes/edit.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/node_classes/edit.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/node_classes/index.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/node_classes/index.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/node_classes/new.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/node_classes/new.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/node_classes/show.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/node_classes/show.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/node_groups/_actions.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/node_groups/_actions.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/node_groups/_search.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/node_groups/_search.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/node_groups/edit.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/node_groups/edit.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/node_groups/index.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/node_groups/index.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/node_groups/new.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/node_groups/new.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/node_groups/show.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/node_groups/show.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/nodes/edit.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/nodes/edit.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/nodes/index.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/nodes/index.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/nodes/new.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/nodes/new.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/nodes/show.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/nodes/show.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/pages/home.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/pages/home.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/reports/_report.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/reports/_report.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/reports/_report_status_icon.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/reports/_report_status_icon.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/reports/_report_status_td.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/reports/_report_status_td.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/reports/index.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/reports/index.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/reports/show.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/reports/show.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/statuses/_run_failure.html.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/statuses/_run_failure.html.haml_spec.rb -------------------------------------------------------------------------------- /spec/views/timeline_events/_timeline_event.haml_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/views/timeline_events/_timeline_event.haml_spec.rb -------------------------------------------------------------------------------- /spec/watchr.rb.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spec/watchr.rb.example -------------------------------------------------------------------------------- /spool/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sodabrew/puppet-dashboard/HEAD/spool/.gitignore -------------------------------------------------------------------------------- /tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | --------------------------------------------------------------------------------