├── LICENSE ├── MANUAL.md ├── README.md ├── Tests └── lib │ ├── EventManagerTest.php │ ├── HelpersTest.php │ ├── PropagatorModelTest.php │ ├── config.inc.php │ └── listeners │ ├── DumpAndStopListener.php │ └── DumpListener.php ├── conf ├── config.inc.php ├── index.html └── propagator-hosts.conf.php ├── css ├── bootstrap-patches.css ├── bootstrap-responsive.css ├── bootstrap.css ├── bootstrap_newest.css ├── chosen-bootstrap.css ├── chosen-sprite.png ├── chosen-sprite@2x.png ├── chosen.css ├── jquery-ui.css ├── prettify.css └── propagator.css ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf └── glyphicons-halflings-regular.woff ├── generate_md.sh ├── img ├── ajax-loader.gif ├── exclamation-mark.png ├── favicon-dark.ico ├── favicon.ico ├── glyphicons-halflings.png ├── icons │ ├── awaiting_approval.gif │ ├── awaiting_approval.png │ ├── awaiting_guinea_pig.gif │ ├── awaiting_guinea_pig.png │ ├── comment_mark_cancelled.png │ ├── comment_mark_fixed.png │ ├── comment_mark_ok.png │ ├── comment_mark_todo.png │ ├── database_type_hive.png │ ├── database_type_mysql.png │ ├── deployed_manually.gif │ ├── deployed_manually.png │ ├── deploying.gif │ ├── disapproved.gif │ ├── failed.gif │ ├── failed.png │ ├── guinea_pig.gif │ ├── guinea_pig.png │ ├── mark_as_passed.gif │ ├── mark_as_passed.png │ ├── not_started.gif │ ├── not_started.png │ ├── passed.gif │ ├── passed.png │ ├── restart_deployment.gif │ ├── restart_deployment.png │ ├── retry_deployment.gif │ └── retry_deployment.png ├── manual │ ├── man_img_deploy_advanced_actions.png │ ├── man_img_deploy_comment.png │ ├── man_img_deploy_failed.png │ ├── man_img_deploy_query.png │ ├── man_img_deploy_status.png │ ├── man_img_history_02.png │ ├── man_img_propagate_role.png │ └── man_img_propagate_schema.png ├── outbrain-logo-s.png ├── outbrain-logo.png └── propagator.png ├── index.php ├── install-db-migration-2014-03-24.sql ├── install-db-migration-2014-07-30.sql ├── install.sql ├── js ├── bootbox.min.js ├── bootstrap-collapse.js ├── bootstrap-dropdown.js ├── bootstrap-tab.js ├── bootstrap-typeahead.js ├── bootstrap.min.js ├── chosen.jquery.min.js ├── jquery-1.8.2.min.js ├── jquery-ui-1.8.24.custom.min.js ├── lang-sql.js ├── prettify.js └── propagator.js ├── lib ├── Credentials.php ├── DatabaseWrapper.php ├── Event.php ├── EventListenerInterface.php ├── EventManager.php ├── Helpers.php ├── Loader.php ├── Propagator.php ├── PropagatorModel.php ├── ThriftHiveClientEx.php ├── medoo.php └── php-thrift-hive-client │ ├── Thrift.php │ ├── autoload.php │ ├── packages │ ├── fb303 │ │ ├── FacebookService.php │ │ └── fb303_types.php │ ├── hive_metastore │ │ ├── .hive_metastore_types.php.un~ │ │ ├── ThriftHiveMetastore.php │ │ ├── hive_metastore_constants.php │ │ └── hive_metastore_types.php │ ├── hive_service │ │ ├── ThriftHive.php │ │ └── hive_service_types.php │ ├── queryplan │ │ └── queryplan_types.php │ └── serde │ │ ├── serde_constants.php │ │ └── serde_types.php │ ├── protocol │ ├── TBinaryProtocol.php │ └── TProtocol.php │ └── transport │ ├── TBufferedTransport.php │ ├── TFramedTransport.php │ ├── THttpClient.php │ ├── TMemoryBuffer.php │ ├── TNullTransport.php │ ├── TPhpStream.php │ ├── TSocket.php │ ├── TSocketPool.php │ └── TTransport.php ├── listeners └── .gitignore └── views ├── about.php ├── check_credentials.php ├── database_instance.php ├── database_instance_table_entry.php ├── database_instance_table_header.php ├── database_instance_topology.php ├── database_instances.php ├── database_role.php ├── database_role_table.php ├── database_roles.php ├── footer.php ├── header.php ├── index.html ├── index.php ├── input_credentials.php ├── input_deployment_environments.php ├── input_script.php ├── list_scripts.php ├── manual.php ├── manual_content.php ├── mappings.php ├── navbar.php ├── no_credentials.php ├── noconfig.php ├── splash.php ├── submit_query.php ├── view_script.php └── view_script_instance_deployments.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/LICENSE -------------------------------------------------------------------------------- /MANUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/MANUAL.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/README.md -------------------------------------------------------------------------------- /Tests/lib/EventManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/Tests/lib/EventManagerTest.php -------------------------------------------------------------------------------- /Tests/lib/HelpersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/Tests/lib/HelpersTest.php -------------------------------------------------------------------------------- /Tests/lib/PropagatorModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/Tests/lib/PropagatorModelTest.php -------------------------------------------------------------------------------- /Tests/lib/config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/Tests/lib/config.inc.php -------------------------------------------------------------------------------- /Tests/lib/listeners/DumpAndStopListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/Tests/lib/listeners/DumpAndStopListener.php -------------------------------------------------------------------------------- /Tests/lib/listeners/DumpListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/Tests/lib/listeners/DumpListener.php -------------------------------------------------------------------------------- /conf/config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/conf/config.inc.php -------------------------------------------------------------------------------- /conf/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conf/propagator-hosts.conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/conf/propagator-hosts.conf.php -------------------------------------------------------------------------------- /css/bootstrap-patches.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/css/bootstrap-patches.css -------------------------------------------------------------------------------- /css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/css/bootstrap.css -------------------------------------------------------------------------------- /css/bootstrap_newest.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/css/bootstrap_newest.css -------------------------------------------------------------------------------- /css/chosen-bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/css/chosen-bootstrap.css -------------------------------------------------------------------------------- /css/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/css/chosen-sprite.png -------------------------------------------------------------------------------- /css/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/css/chosen-sprite@2x.png -------------------------------------------------------------------------------- /css/chosen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/css/chosen.css -------------------------------------------------------------------------------- /css/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/css/jquery-ui.css -------------------------------------------------------------------------------- /css/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/css/prettify.css -------------------------------------------------------------------------------- /css/propagator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/css/propagator.css -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /generate_md.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/generate_md.sh -------------------------------------------------------------------------------- /img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/ajax-loader.gif -------------------------------------------------------------------------------- /img/exclamation-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/exclamation-mark.png -------------------------------------------------------------------------------- /img/favicon-dark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/favicon-dark.ico -------------------------------------------------------------------------------- /img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/favicon.ico -------------------------------------------------------------------------------- /img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /img/icons/awaiting_approval.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/awaiting_approval.gif -------------------------------------------------------------------------------- /img/icons/awaiting_approval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/awaiting_approval.png -------------------------------------------------------------------------------- /img/icons/awaiting_guinea_pig.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/awaiting_guinea_pig.gif -------------------------------------------------------------------------------- /img/icons/awaiting_guinea_pig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/awaiting_guinea_pig.png -------------------------------------------------------------------------------- /img/icons/comment_mark_cancelled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/comment_mark_cancelled.png -------------------------------------------------------------------------------- /img/icons/comment_mark_fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/comment_mark_fixed.png -------------------------------------------------------------------------------- /img/icons/comment_mark_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/comment_mark_ok.png -------------------------------------------------------------------------------- /img/icons/comment_mark_todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/comment_mark_todo.png -------------------------------------------------------------------------------- /img/icons/database_type_hive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/database_type_hive.png -------------------------------------------------------------------------------- /img/icons/database_type_mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/database_type_mysql.png -------------------------------------------------------------------------------- /img/icons/deployed_manually.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/deployed_manually.gif -------------------------------------------------------------------------------- /img/icons/deployed_manually.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/deployed_manually.png -------------------------------------------------------------------------------- /img/icons/deploying.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/deploying.gif -------------------------------------------------------------------------------- /img/icons/disapproved.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/disapproved.gif -------------------------------------------------------------------------------- /img/icons/failed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/failed.gif -------------------------------------------------------------------------------- /img/icons/failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/failed.png -------------------------------------------------------------------------------- /img/icons/guinea_pig.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/guinea_pig.gif -------------------------------------------------------------------------------- /img/icons/guinea_pig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/guinea_pig.png -------------------------------------------------------------------------------- /img/icons/mark_as_passed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/mark_as_passed.gif -------------------------------------------------------------------------------- /img/icons/mark_as_passed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/mark_as_passed.png -------------------------------------------------------------------------------- /img/icons/not_started.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/not_started.gif -------------------------------------------------------------------------------- /img/icons/not_started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/not_started.png -------------------------------------------------------------------------------- /img/icons/passed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/passed.gif -------------------------------------------------------------------------------- /img/icons/passed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/passed.png -------------------------------------------------------------------------------- /img/icons/restart_deployment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/restart_deployment.gif -------------------------------------------------------------------------------- /img/icons/restart_deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/restart_deployment.png -------------------------------------------------------------------------------- /img/icons/retry_deployment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/retry_deployment.gif -------------------------------------------------------------------------------- /img/icons/retry_deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/icons/retry_deployment.png -------------------------------------------------------------------------------- /img/manual/man_img_deploy_advanced_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/manual/man_img_deploy_advanced_actions.png -------------------------------------------------------------------------------- /img/manual/man_img_deploy_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/manual/man_img_deploy_comment.png -------------------------------------------------------------------------------- /img/manual/man_img_deploy_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/manual/man_img_deploy_failed.png -------------------------------------------------------------------------------- /img/manual/man_img_deploy_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/manual/man_img_deploy_query.png -------------------------------------------------------------------------------- /img/manual/man_img_deploy_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/manual/man_img_deploy_status.png -------------------------------------------------------------------------------- /img/manual/man_img_history_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/manual/man_img_history_02.png -------------------------------------------------------------------------------- /img/manual/man_img_propagate_role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/manual/man_img_propagate_role.png -------------------------------------------------------------------------------- /img/manual/man_img_propagate_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/manual/man_img_propagate_schema.png -------------------------------------------------------------------------------- /img/outbrain-logo-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/outbrain-logo-s.png -------------------------------------------------------------------------------- /img/outbrain-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/outbrain-logo.png -------------------------------------------------------------------------------- /img/propagator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/img/propagator.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/index.php -------------------------------------------------------------------------------- /install-db-migration-2014-03-24.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/install-db-migration-2014-03-24.sql -------------------------------------------------------------------------------- /install-db-migration-2014-07-30.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/install-db-migration-2014-07-30.sql -------------------------------------------------------------------------------- /install.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/install.sql -------------------------------------------------------------------------------- /js/bootbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/js/bootbox.min.js -------------------------------------------------------------------------------- /js/bootstrap-collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/js/bootstrap-collapse.js -------------------------------------------------------------------------------- /js/bootstrap-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/js/bootstrap-dropdown.js -------------------------------------------------------------------------------- /js/bootstrap-tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/js/bootstrap-tab.js -------------------------------------------------------------------------------- /js/bootstrap-typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/js/bootstrap-typeahead.js -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /js/chosen.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/js/chosen.jquery.min.js -------------------------------------------------------------------------------- /js/jquery-1.8.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/js/jquery-1.8.2.min.js -------------------------------------------------------------------------------- /js/jquery-ui-1.8.24.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/js/jquery-ui-1.8.24.custom.min.js -------------------------------------------------------------------------------- /js/lang-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/js/lang-sql.js -------------------------------------------------------------------------------- /js/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/js/prettify.js -------------------------------------------------------------------------------- /js/propagator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/js/propagator.js -------------------------------------------------------------------------------- /lib/Credentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/Credentials.php -------------------------------------------------------------------------------- /lib/DatabaseWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/DatabaseWrapper.php -------------------------------------------------------------------------------- /lib/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/Event.php -------------------------------------------------------------------------------- /lib/EventListenerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/EventListenerInterface.php -------------------------------------------------------------------------------- /lib/EventManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/EventManager.php -------------------------------------------------------------------------------- /lib/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/Helpers.php -------------------------------------------------------------------------------- /lib/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/Loader.php -------------------------------------------------------------------------------- /lib/Propagator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/Propagator.php -------------------------------------------------------------------------------- /lib/PropagatorModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/PropagatorModel.php -------------------------------------------------------------------------------- /lib/ThriftHiveClientEx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/ThriftHiveClientEx.php -------------------------------------------------------------------------------- /lib/medoo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/medoo.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/Thrift.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/Thrift.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/autoload.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/packages/fb303/FacebookService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/packages/fb303/FacebookService.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/packages/fb303/fb303_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/packages/fb303/fb303_types.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/packages/hive_metastore/.hive_metastore_types.php.un~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/packages/hive_metastore/.hive_metastore_types.php.un~ -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/packages/hive_metastore/ThriftHiveMetastore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/packages/hive_metastore/ThriftHiveMetastore.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/packages/hive_metastore/hive_metastore_constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/packages/hive_metastore/hive_metastore_constants.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/packages/hive_metastore/hive_metastore_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/packages/hive_metastore/hive_metastore_types.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/packages/hive_service/ThriftHive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/packages/hive_service/ThriftHive.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/packages/hive_service/hive_service_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/packages/hive_service/hive_service_types.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/packages/queryplan/queryplan_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/packages/queryplan/queryplan_types.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/packages/serde/serde_constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/packages/serde/serde_constants.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/packages/serde/serde_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/packages/serde/serde_types.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/protocol/TBinaryProtocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/protocol/TBinaryProtocol.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/protocol/TProtocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/protocol/TProtocol.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/transport/TBufferedTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/transport/TBufferedTransport.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/transport/TFramedTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/transport/TFramedTransport.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/transport/THttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/transport/THttpClient.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/transport/TMemoryBuffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/transport/TMemoryBuffer.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/transport/TNullTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/transport/TNullTransport.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/transport/TPhpStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/transport/TPhpStream.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/transport/TSocket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/transport/TSocket.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/transport/TSocketPool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/transport/TSocketPool.php -------------------------------------------------------------------------------- /lib/php-thrift-hive-client/transport/TTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/lib/php-thrift-hive-client/transport/TTransport.php -------------------------------------------------------------------------------- /listeners/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/listeners/.gitignore -------------------------------------------------------------------------------- /views/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/views/about.php -------------------------------------------------------------------------------- /views/check_credentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/views/check_credentials.php -------------------------------------------------------------------------------- /views/database_instance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/views/database_instance.php -------------------------------------------------------------------------------- /views/database_instance_table_entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/views/database_instance_table_entry.php -------------------------------------------------------------------------------- /views/database_instance_table_header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/views/database_instance_table_header.php -------------------------------------------------------------------------------- /views/database_instance_topology.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/views/database_instance_topology.php -------------------------------------------------------------------------------- /views/database_instances.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/views/database_instances.php -------------------------------------------------------------------------------- /views/database_role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/views/database_role.php -------------------------------------------------------------------------------- /views/database_role_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/views/database_role_table.php -------------------------------------------------------------------------------- /views/database_roles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/views/database_roles.php -------------------------------------------------------------------------------- /views/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/views/footer.php -------------------------------------------------------------------------------- /views/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outbrain-inc/propagator/HEAD/views/header.php -------------------------------------------------------------------------------- /views/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/index.php: -------------------------------------------------------------------------------- 1 |