├── .cursor └── rules │ ├── accessibility.mdc │ ├── build-and-scripts.mdc │ ├── code-quality-and-lint.mdc │ ├── frontend-conventions.mdc │ ├── i18n-and-copy.mdc │ ├── integration-bridges.mdc │ ├── legacy-migration.mdc │ ├── pr-review-checklist.mdc │ ├── project-overview.mdc │ ├── styling-and-design-tokens.mdc │ └── testing-rtl.mdc ├── .dockerignore ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── file-a-bug.yaml │ └── request-enhancement.yaml ├── pull_request_template.md └── workflows │ ├── arm64-python-ci.yml │ ├── autoclose-stale.yml │ ├── cleanup-cache.yml │ ├── commitflow-frontend.yml │ ├── commitflow-py3.yml │ ├── docs_lint.yml │ └── pr-comments.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .stylelintrc ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE.txt ├── Makefile ├── Makefile.sdk ├── Makefile.tarball ├── Makefile.vars ├── Makefile.vars.priv ├── NOTICE.txt ├── NPM-README.md ├── README.md ├── VERSION ├── apps ├── Makefile ├── about │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── about │ │ ├── __init__.py │ │ ├── api.py │ │ ├── api_tests.py │ │ ├── conf.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── models.py │ │ ├── serializer.py │ │ ├── settings.py │ │ ├── static │ │ └── about │ │ │ └── help │ │ │ ├── images │ │ │ └── 23888205.png │ │ │ └── index.html │ │ ├── templates │ │ └── admin_wizard.mako │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py ├── beeswax │ ├── Makefile │ ├── babel.cfg │ ├── data │ │ ├── customers.parquet │ │ ├── employe_sample.csv │ │ ├── queries.json │ │ ├── sample_07.csv │ │ ├── sample_08.csv │ │ ├── tables.json │ │ ├── tables │ │ │ ├── book.xlsx │ │ │ ├── flights.csv │ │ │ ├── onlyheader.csv │ │ │ └── us_population.csv │ │ ├── tables_standard.json │ │ ├── tables_transactional.json │ │ ├── web_logs_1.csv │ │ ├── web_logs_2.csv │ │ ├── web_logs_3.csv │ │ └── web_logs_4.csv │ ├── gen-py │ │ ├── TCLIService │ │ │ ├── TCLIService-remote │ │ │ ├── TCLIService.py │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ │ ├── __init__.py │ │ ├── fb303 │ │ │ ├── FacebookService-remote │ │ │ ├── FacebookService.py │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ │ └── hive_metastore │ │ │ ├── ThriftHiveMetastore-remote │ │ │ ├── ThriftHiveMetastore.py │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ ├── hueversion.py │ ├── regenerate_thrift.sh │ ├── setup.py │ ├── src │ │ └── beeswax │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── api.py │ │ │ ├── api_tests.py │ │ │ ├── common.py │ │ │ ├── conf.py │ │ │ ├── create_database.py │ │ │ ├── create_table.py │ │ │ ├── create_table_tests.py │ │ │ ├── dashboard_api.py │ │ │ ├── data_export.py │ │ │ ├── design.py │ │ │ ├── forms.py │ │ │ ├── hive_site.py │ │ │ ├── locale │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── en_US.pot │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── pt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ └── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── beeswax_install_examples.py │ │ │ │ ├── beeswax_install_examples_tests.py │ │ │ │ ├── close_queries.py │ │ │ │ ├── close_sessions.py │ │ │ │ └── create_table_query_data.py │ │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20200320_0746.py │ │ │ ├── 0003_compute_namespace.py │ │ │ ├── 0004_alter_compute_is_ready.py │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── old_migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto__add_field_queryhistory_notify.py │ │ │ ├── 0003_auto__add_field_queryhistory_server_name__add_field_queryhistory_serve.py │ │ │ ├── 0004_auto__add_session__add_field_queryhistory_server_type__add_field_query.py │ │ │ ├── 0005_auto__add_field_queryhistory_statement_number.py │ │ │ ├── 0006_auto__add_field_session_application.py │ │ │ ├── 0007_auto__add_field_savedquery_is_trashed.py │ │ │ ├── 0008_auto__add_field_queryhistory_query_type.py │ │ │ ├── 0009_auto__add_field_savedquery_is_redacted__add_field_queryhistory_is_reda.py │ │ │ ├── 0009_auto__chg_field_queryhistory_server_port.py │ │ │ ├── 0010_merge_database_state.py │ │ │ ├── 0011_auto__chg_field_savedquery_name.py │ │ │ ├── 0012_auto__add_field_queryhistory_extra.py │ │ │ ├── 0013_auto__add_field_session_properties.py │ │ │ ├── 0014_auto__add_field_queryhistory_is_cleared.py │ │ │ └── __init__.py │ │ │ ├── org_migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ │ ├── query_history.py │ │ │ ├── server │ │ │ ├── __init__.py │ │ │ ├── dbms.py │ │ │ ├── dbms_tests.py │ │ │ ├── hive_metastore_server.py │ │ │ ├── hive_server2_lib.py │ │ │ └── hive_server2_lib_tests.py │ │ │ ├── settings.py │ │ │ ├── static │ │ │ └── beeswax │ │ │ │ ├── art │ │ │ │ ├── beeswax-logo.png │ │ │ │ ├── icon_beeswax_24.png │ │ │ │ └── icon_beeswax_48.png │ │ │ │ ├── help │ │ │ │ ├── images │ │ │ │ │ └── 23888161.png │ │ │ │ └── index.html │ │ │ │ └── js │ │ │ │ ├── autocomplete.utils.js │ │ │ │ ├── beeswax.vm.js │ │ │ │ └── stats.utils.js │ │ │ ├── templates │ │ │ ├── beeswax_components.mako │ │ │ ├── confirm.mako │ │ │ ├── create_database.mako │ │ │ ├── create_database_statement.mako │ │ │ ├── create_table_manually.mako │ │ │ ├── create_table_query_data.mako │ │ │ ├── create_table_statement.mako │ │ │ ├── execute.mako │ │ │ ├── import_wizard_choose_delimiter.mako │ │ │ ├── import_wizard_choose_file.mako │ │ │ ├── import_wizard_define_columns.mako │ │ │ ├── layout.mako │ │ │ ├── list_designs.mako │ │ │ ├── list_history.mako │ │ │ ├── list_trashed_designs.mako │ │ │ ├── msck.mako │ │ │ ├── my_queries.mako │ │ │ ├── select_table_query_data_from.mako │ │ │ ├── select_table_query_data_latest.mako │ │ │ └── util.mako │ │ │ ├── test_base.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── views.py │ │ │ └── views_tests.py │ └── thrift │ │ ├── TCLIService.thrift │ │ ├── fb303.thrift │ │ └── hive_metastore.thrift ├── filebrowser │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── filebrowser │ │ ├── __init__.py │ │ ├── api.py │ │ ├── api_test.py │ │ ├── conf.py │ │ ├── forms.py │ │ ├── lib │ │ ├── __init__.py │ │ ├── archives.py │ │ ├── archives_test.py │ │ ├── rwx.py │ │ ├── rwx_test.py │ │ ├── xxd.py │ │ └── xxd_test.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── models.py │ │ ├── operations.py │ │ ├── operations_tests.py │ │ ├── schemas.py │ │ ├── schemas_tests.py │ │ ├── serializers.py │ │ ├── serializers_tests.py │ │ ├── settings.py │ │ ├── static │ │ └── filebrowser │ │ │ ├── art │ │ │ ├── icon.png │ │ │ ├── icon_filebrowser_24.png │ │ │ └── icon_filebrowser_48.png │ │ │ ├── css │ │ │ ├── display.css │ │ │ └── listdir_components.css │ │ │ ├── help │ │ │ ├── images │ │ │ │ ├── 23888157.png │ │ │ │ └── 23888454.png │ │ │ └── index.html │ │ │ └── less │ │ │ ├── display.less │ │ │ └── listdir_components.less │ │ ├── tasks.py │ │ ├── templates │ │ ├── display.mako │ │ ├── edit.mako │ │ ├── editor_components.mako │ │ ├── fb_components.mako │ │ ├── fileop.mako │ │ ├── listdir.mako │ │ ├── listdir_components.mako │ │ ├── saveas.mako │ │ └── status.html │ │ ├── templatetags │ │ ├── __init__.py │ │ └── unix_to_datetime.py │ │ ├── test_data │ │ ├── parquet-snappy.parquet │ │ ├── te st.zip │ │ ├── test.tar.gz │ │ ├── test.txt.bz2 │ │ ├── test.zip │ │ ├── test2.tar.gz │ │ ├── test3.tar.gz │ │ ├── test4.tar.gz │ │ └── test5.zip │ │ ├── urls.py │ │ ├── utils.py │ │ ├── utils_test.py │ │ ├── views.py │ │ └── views_test.py ├── hbase │ ├── Makefile │ ├── babel.cfg │ ├── example │ │ ├── analytics │ │ │ └── hbase-analytics.tsv │ │ └── documents │ │ │ ├── example-page.html │ │ │ ├── gethue.pdf │ │ │ └── hue-logo.png │ ├── gen-py │ │ ├── __init__.py │ │ └── hbased │ │ │ ├── Hbase-remote │ │ │ ├── Hbase.py │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ ├── hueversion.py │ ├── regenerate_thrift.sh │ ├── setup.py │ ├── src │ │ └── hbase │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── conf.py │ │ │ ├── forms.py │ │ │ ├── hbase_site.py │ │ │ ├── locale │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── en_US.pot │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── pt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ └── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ └── hbase_setup.py │ │ │ ├── migrations │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── old_migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ │ ├── server │ │ │ ├── __init__.py │ │ │ └── hbase_lib.py │ │ │ ├── settings.py │ │ │ ├── static │ │ │ └── hbase │ │ │ │ ├── art │ │ │ │ ├── icon_hbase_24.png │ │ │ │ ├── icon_hbase_48.png │ │ │ │ └── loader.gif │ │ │ │ ├── css │ │ │ │ └── hbase.css │ │ │ │ ├── help │ │ │ │ └── index.html │ │ │ │ └── less │ │ │ │ └── hbase.less │ │ │ ├── templates │ │ │ └── app.mako │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ └── thrift │ │ └── Hbase.thrift ├── help │ ├── Makefile │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── help │ │ ├── __init__.py │ │ ├── conf.py │ │ ├── models.py │ │ ├── settings.py │ │ ├── static │ │ └── help │ │ │ └── art │ │ │ ├── help.png │ │ │ └── icon_help_24.png │ │ ├── templates │ │ └── display.mako │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py ├── hive │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── hive │ │ ├── __init__.py │ │ ├── conf.py │ │ ├── forms.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── models.py │ │ ├── settings.py │ │ ├── static │ │ └── hive │ │ │ ├── art │ │ │ ├── icon_hive_24.png │ │ │ └── icon_hive_48.png │ │ │ └── help │ │ │ └── index.html │ │ ├── tests.py │ │ └── urls.py ├── impala │ ├── Makefile │ ├── babel.cfg │ ├── gen-py │ │ ├── ErrorCodes │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ │ ├── ExecStats │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ │ ├── ImpalaService │ │ │ ├── ImpalaHiveServer2Service-remote │ │ │ ├── ImpalaHiveServer2Service.py │ │ │ ├── ImpalaService-remote │ │ │ ├── ImpalaService.py │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ │ ├── Status │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ │ ├── TCLIService │ │ │ ├── TCLIService-remote │ │ │ ├── TCLIService.py │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ │ ├── Types │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ │ ├── __init__.py │ │ ├── beeswaxd │ │ │ ├── BeeswaxService-remote │ │ │ ├── BeeswaxService.py │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ │ ├── fb303 │ │ │ ├── FacebookService-remote │ │ │ ├── FacebookService.py │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ │ └── hive_metastore │ │ │ ├── ThriftHiveMetastore-remote │ │ │ ├── ThriftHiveMetastore.py │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ ├── hueversion.py │ ├── regenerate_thrift.sh │ ├── setup.py │ ├── src │ │ └── impala │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── api_tests.py │ │ │ ├── conf.py │ │ │ ├── dashboard_api.py │ │ │ ├── dbms.py │ │ │ ├── dbms_tests.py │ │ │ ├── forms.py │ │ │ ├── impala_flags.py │ │ │ ├── locale │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── en_US.pot │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── pt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ └── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ │ ├── models.py │ │ │ ├── server.py │ │ │ ├── server_tests.py │ │ │ ├── settings.py │ │ │ ├── static │ │ │ └── impala │ │ │ │ ├── art │ │ │ │ ├── icon_impala_24.png │ │ │ │ └── icon_impala_48.png │ │ │ │ ├── css │ │ │ │ └── impala-dashboard.css │ │ │ │ └── help │ │ │ │ ├── images │ │ │ │ └── 23887903.png │ │ │ │ └── index.html │ │ │ ├── test_impala_flags.py │ │ │ ├── tests.py │ │ │ └── urls.py │ └── thrift │ │ ├── ErrorCodes.thrift │ │ ├── ExecStats.thrift │ │ ├── ImpalaService.thrift │ │ ├── Status.thrift │ │ ├── TCLIService.thrift │ │ ├── Types.thrift │ │ ├── beeswax.thrift │ │ ├── cli_service.thrift │ │ ├── generate_error_codes.py │ │ └── include │ │ ├── fb303.thrift │ │ └── hive_metastore.thrift ├── jobbrowser │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── jobbrowser │ │ ├── __init__.py │ │ ├── api.py │ │ ├── api2.py │ │ ├── apis │ │ ├── __init__.py │ │ ├── base_api.py │ │ ├── beat_api.py │ │ ├── beeswax_query_api.py │ │ ├── bundle_api.py │ │ ├── clusters.py │ │ ├── data_eng_api.py │ │ ├── data_warehouse.py │ │ ├── history.py │ │ ├── hive_query_api.py │ │ ├── hive_query_api_tests.py │ │ ├── job_api.py │ │ ├── livy_api.py │ │ ├── query_api.py │ │ ├── query_api_tests.py │ │ ├── query_store.py │ │ ├── schedule_api.py │ │ ├── schedule_hive.py │ │ └── workflow_api.py │ │ ├── conf.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── models.py │ │ ├── settings.py │ │ ├── static │ │ └── jobbrowser │ │ │ ├── art │ │ │ ├── icon_jobbrowser_24.png │ │ │ ├── icon_jobbrowser_48.png │ │ │ └── icon_large.png │ │ │ ├── css │ │ │ ├── jobbrowser-embeddable.css │ │ │ └── jobbrowser.css │ │ │ ├── help │ │ │ ├── images │ │ │ │ └── 23888158.png │ │ │ └── index.html │ │ │ ├── js │ │ │ ├── impala_dagre.js │ │ │ └── utils.js │ │ │ └── less │ │ │ ├── jobbrowser-embeddable.less │ │ │ └── jobbrowser.less │ │ ├── templates │ │ ├── attempt.mako │ │ ├── attempt_logs.mako │ │ ├── clusterstatus.html │ │ ├── container.mako │ │ ├── counters.html │ │ ├── job.mako │ │ ├── job_attempt_logs.mako │ │ ├── job_browser.mako │ │ ├── job_not_assigned.mako │ │ ├── jobbrowser.html │ │ ├── jobbrowser_components.mako │ │ ├── jobs.mako │ │ ├── jobs_dock_info.mako │ │ ├── mini_job_browser.mako │ │ ├── queues.html │ │ ├── task.mako │ │ ├── tasks.mako │ │ ├── tasktracker.mako │ │ └── tasktrackers.mako │ │ ├── templatetags │ │ ├── __init__.py │ │ └── unix_ms_to_datetime.py │ │ ├── tests.py │ │ ├── urls.py │ │ ├── views.py │ │ └── yarn_models.py ├── jobsub │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── jobsub │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── conf.py │ │ ├── forms.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ │ ├── models.py │ │ ├── old_migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto__add_ooziestreamingaction__add_oozieaction__add_oozieworkflow__ad.py │ │ ├── 0003_convertCharFieldtoTextField.py │ │ ├── 0004_hue1_to_hue2.py │ │ ├── 0005_unify_with_oozie.py │ │ ├── 0006_chg_varchars_to_textfields.py │ │ └── __init__.py │ │ ├── settings.py │ │ ├── static │ │ └── jobsub │ │ │ ├── art │ │ │ ├── icon.png │ │ │ ├── icon_jobsub_24.png │ │ │ └── icon_jobsub_48.png │ │ │ ├── css │ │ │ └── jobsub.css │ │ │ ├── help │ │ │ ├── cog.png │ │ │ ├── images │ │ │ │ ├── 23888163.png │ │ │ │ ├── 23888164.png │ │ │ │ ├── 23888324.png │ │ │ │ ├── 23888456.png │ │ │ │ ├── 23888457.png │ │ │ │ ├── 23888458.png │ │ │ │ └── 23888498.png │ │ │ └── index.html │ │ │ ├── js │ │ │ ├── jobsub.js │ │ │ ├── jobsub.ko.js │ │ │ └── jobsub.templates.js │ │ │ └── templates │ │ │ ├── actions │ │ │ ├── distcp.html │ │ │ ├── email.html │ │ │ ├── fs.html │ │ │ ├── hive.html │ │ │ ├── java.html │ │ │ ├── mapreduce.html │ │ │ ├── pig.html │ │ │ ├── shell.html │ │ │ ├── sqoop.html │ │ │ ├── ssh.html │ │ │ └── streaming.html │ │ │ ├── designs.html │ │ │ └── widgets │ │ │ ├── checkbox.html │ │ │ ├── chmods.html │ │ │ ├── filechooser.html │ │ │ ├── folderchooser.html │ │ │ ├── moves.html │ │ │ ├── parameters.html │ │ │ ├── params.html │ │ │ ├── pathchooser.html │ │ │ ├── prepares.html │ │ │ ├── properties.html │ │ │ └── text.html │ │ ├── templates │ │ ├── designs.mako │ │ └── not_available.mako │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py ├── metastore │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── metastore │ │ ├── __init__.py │ │ ├── conf.py │ │ ├── forms.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── models.py │ │ ├── parser.py │ │ ├── settings.py │ │ ├── static │ │ └── metastore │ │ │ ├── art │ │ │ ├── icon_metastore_24.png │ │ │ └── icon_metastore_48.png │ │ │ ├── css │ │ │ └── metastore.css │ │ │ ├── help │ │ │ └── index.html │ │ │ └── less │ │ │ └── metastore.less │ │ ├── templates │ │ ├── components.mako │ │ ├── confirm.mako │ │ ├── metastore.mako │ │ ├── popups │ │ │ └── load_data.mako │ │ └── util.mako │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py ├── oozie │ ├── Makefile │ ├── babel.cfg │ ├── examples │ │ ├── bundles │ │ │ ├── aggregate │ │ │ │ └── bundle.zip │ │ │ └── copy-files │ │ │ │ └── empty │ │ ├── coordinators │ │ │ ├── daily-copy │ │ │ │ └── empty │ │ │ ├── dailyanalytics │ │ │ │ └── coordinator.zip │ │ │ └── dailysleep │ │ │ │ └── coordinator.zip │ │ ├── lib │ │ │ ├── hadoop-examples.jar │ │ │ └── pi.py │ │ ├── managed │ │ │ ├── distcp │ │ │ │ └── workflow.zip │ │ │ ├── email │ │ │ │ └── workflow.zip │ │ │ ├── fs │ │ │ │ ├── workflow.zip │ │ │ │ └── workflow │ │ │ │ │ ├── workflow-metadata.json │ │ │ │ │ └── workflow.xml │ │ │ ├── generic │ │ │ │ └── workflow.zip │ │ │ ├── hive │ │ │ │ ├── hive-config.xml │ │ │ │ ├── hive.sql │ │ │ │ └── workflow.zip │ │ │ ├── pig │ │ │ │ ├── aggregate.pig │ │ │ │ └── workflow.zip │ │ │ ├── shell │ │ │ │ ├── hello.py │ │ │ │ └── workflow.zip │ │ │ ├── sleep │ │ │ │ └── workflow.zip │ │ │ ├── sleepfork │ │ │ │ └── workflow.zip │ │ │ ├── sqoop │ │ │ │ ├── TT.java │ │ │ │ ├── db.hsqldb.properties │ │ │ │ ├── db.hsqldb.script │ │ │ │ └── workflow.zip │ │ │ ├── ssh │ │ │ │ └── workflow.zip │ │ │ └── terasort │ │ │ │ └── workflow.zip │ │ ├── unmanaged │ │ │ ├── distcp │ │ │ │ └── workflow.zip │ │ │ ├── email │ │ │ │ └── workflow.zip │ │ │ ├── fs │ │ │ │ └── workflow.zip │ │ │ ├── hive │ │ │ │ ├── hive-config.xml │ │ │ │ ├── hive.sql │ │ │ │ └── workflow.zip │ │ │ ├── pig │ │ │ │ ├── aggregate.pig │ │ │ │ └── workflow.zip │ │ │ ├── shell │ │ │ │ ├── hello.py │ │ │ │ └── workflow.zip │ │ │ ├── sleep │ │ │ │ └── workflow.zip │ │ │ ├── sqoop │ │ │ │ ├── TT.java │ │ │ │ ├── db.hsqldb.properties │ │ │ │ ├── db.hsqldb.script │ │ │ │ └── workflow.zip │ │ │ └── ssh │ │ │ │ └── workflow.zip │ │ └── workflows │ │ │ ├── fork │ │ │ └── dump.pig │ │ │ ├── hiveserver2 │ │ │ └── select.sql │ │ │ ├── sleep │ │ │ ├── dir │ │ │ │ └── empty │ │ │ └── empty │ │ │ └── spark-scala │ │ │ └── lib │ │ │ └── oozie-examples.jar │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── oozie │ │ ├── __init__.py │ │ ├── conf.py │ │ ├── decorators.py │ │ ├── fixtures │ │ └── initial_oozie_examples.json │ │ ├── forms.py │ │ ├── importlib │ │ ├── __init__.py │ │ ├── bundles.py │ │ ├── coordinators.py │ │ ├── jobdesigner.py │ │ ├── utils.py │ │ ├── workflows.py │ │ ├── xslt │ │ │ ├── coordinators │ │ │ │ ├── 0.1 │ │ │ │ │ ├── coordinator.xslt │ │ │ │ │ ├── datainput.xslt │ │ │ │ │ ├── dataoutput.xslt │ │ │ │ │ └── dataset.xslt │ │ │ │ ├── 0.2 │ │ │ │ │ ├── coordinator.xslt │ │ │ │ │ ├── datainput.xslt │ │ │ │ │ ├── dataoutput.xslt │ │ │ │ │ └── dataset.xslt │ │ │ │ ├── 0.3 │ │ │ │ │ ├── coordinator.xslt │ │ │ │ │ ├── datainput.xslt │ │ │ │ │ ├── dataoutput.xslt │ │ │ │ │ └── dataset.xslt │ │ │ │ ├── 0.4 │ │ │ │ │ ├── coordinator.xslt │ │ │ │ │ ├── datainput.xslt │ │ │ │ │ ├── dataoutput.xslt │ │ │ │ │ └── dataset.xslt │ │ │ │ └── coordinator.xslt │ │ │ └── workflows │ │ │ │ ├── 0.1 │ │ │ │ ├── action.xslt │ │ │ │ ├── control.xslt │ │ │ │ ├── extensions │ │ │ │ │ ├── distcp.0.1.xslt │ │ │ │ │ ├── email.0.1.xslt │ │ │ │ │ ├── hive.0.1.xslt │ │ │ │ │ ├── hive.0.2.xslt │ │ │ │ │ ├── shell.0.1.xslt │ │ │ │ │ ├── sqoop.0.1.xslt │ │ │ │ │ └── sqoop.0.2.xslt │ │ │ │ ├── nodes │ │ │ │ │ ├── decision.xslt │ │ │ │ │ ├── end.xslt │ │ │ │ │ ├── fields │ │ │ │ │ │ ├── archives.xslt │ │ │ │ │ │ ├── arg_params.xslt │ │ │ │ │ │ ├── args.xslt │ │ │ │ │ │ ├── arguments.xslt │ │ │ │ │ │ ├── capture_output.xslt │ │ │ │ │ │ ├── chmods.xslt │ │ │ │ │ │ ├── command.xslt │ │ │ │ │ │ ├── deletes.xslt │ │ │ │ │ │ ├── files.xslt │ │ │ │ │ │ ├── host.xslt │ │ │ │ │ │ ├── jar_path.xslt │ │ │ │ │ │ ├── java_opts.xslt │ │ │ │ │ │ ├── job_properties.xslt │ │ │ │ │ │ ├── job_xml.xslt │ │ │ │ │ │ ├── main_class.xslt │ │ │ │ │ │ ├── mapper.xslt │ │ │ │ │ │ ├── mkdirs.xslt │ │ │ │ │ │ ├── moves.xslt │ │ │ │ │ │ ├── params.xslt │ │ │ │ │ │ ├── prepares.xslt │ │ │ │ │ │ ├── propagate_configuration.xslt │ │ │ │ │ │ ├── reducer.xslt │ │ │ │ │ │ ├── script_path.xslt │ │ │ │ │ │ ├── touchzs.xslt │ │ │ │ │ │ ├── user.xslt │ │ │ │ │ │ └── xml.xslt │ │ │ │ │ ├── fork.xslt │ │ │ │ │ ├── fs.xslt │ │ │ │ │ ├── generic.xslt │ │ │ │ │ ├── java.xslt │ │ │ │ │ ├── join.xslt │ │ │ │ │ ├── kill.xslt │ │ │ │ │ ├── mapreduce.xslt │ │ │ │ │ ├── pig.xslt │ │ │ │ │ ├── ssh.xslt │ │ │ │ │ ├── start.xslt │ │ │ │ │ ├── streaming.xslt │ │ │ │ │ └── subworkflow.xslt │ │ │ │ └── workflow.xslt │ │ │ │ ├── 0.2.5 │ │ │ │ ├── action.xslt │ │ │ │ ├── control.xslt │ │ │ │ ├── extensions │ │ │ │ │ ├── distcp.0.1.xslt │ │ │ │ │ ├── email.0.1.xslt │ │ │ │ │ ├── hive.0.1.xslt │ │ │ │ │ ├── hive.0.2.xslt │ │ │ │ │ ├── shell.0.1.xslt │ │ │ │ │ ├── sqoop.0.1.xslt │ │ │ │ │ ├── sqoop.0.2.xslt │ │ │ │ │ └── ssh.0.1.xslt │ │ │ │ ├── nodes │ │ │ │ │ ├── decision.xslt │ │ │ │ │ ├── end.xslt │ │ │ │ │ ├── fields │ │ │ │ │ │ ├── archives.xslt │ │ │ │ │ │ ├── arg_params.xslt │ │ │ │ │ │ ├── args.xslt │ │ │ │ │ │ ├── arguments.xslt │ │ │ │ │ │ ├── capture_output.xslt │ │ │ │ │ │ ├── chmods.xslt │ │ │ │ │ │ ├── command.xslt │ │ │ │ │ │ ├── deletes.xslt │ │ │ │ │ │ ├── files.xslt │ │ │ │ │ │ ├── host.xslt │ │ │ │ │ │ ├── jar_path.xslt │ │ │ │ │ │ ├── java_opts.xslt │ │ │ │ │ │ ├── job_properties.xslt │ │ │ │ │ │ ├── job_xml.xslt │ │ │ │ │ │ ├── main_class.xslt │ │ │ │ │ │ ├── mapper.xslt │ │ │ │ │ │ ├── mkdirs.xslt │ │ │ │ │ │ ├── moves.xslt │ │ │ │ │ │ ├── params.xslt │ │ │ │ │ │ ├── prepares.xslt │ │ │ │ │ │ ├── propagate_configuration.xslt │ │ │ │ │ │ ├── reducer.xslt │ │ │ │ │ │ ├── script_path.xslt │ │ │ │ │ │ ├── touchzs.xslt │ │ │ │ │ │ ├── user.xslt │ │ │ │ │ │ └── xml.xslt │ │ │ │ │ ├── fork.xslt │ │ │ │ │ ├── fs.xslt │ │ │ │ │ ├── generic.xslt │ │ │ │ │ ├── java.xslt │ │ │ │ │ ├── join.xslt │ │ │ │ │ ├── kill.xslt │ │ │ │ │ ├── mapreduce.xslt │ │ │ │ │ ├── pig.xslt │ │ │ │ │ ├── start.xslt │ │ │ │ │ ├── streaming.xslt │ │ │ │ │ └── subworkflow.xslt │ │ │ │ └── workflow.xslt │ │ │ │ ├── 0.2 │ │ │ │ ├── action.xslt │ │ │ │ ├── control.xslt │ │ │ │ ├── extensions │ │ │ │ │ ├── distcp.0.1.xslt │ │ │ │ │ ├── email.0.1.xslt │ │ │ │ │ ├── hive.0.1.xslt │ │ │ │ │ ├── hive.0.2.xslt │ │ │ │ │ ├── shell.0.1.xslt │ │ │ │ │ ├── sqoop.0.1.xslt │ │ │ │ │ ├── sqoop.0.2.xslt │ │ │ │ │ └── ssh.0.1.xslt │ │ │ │ ├── nodes │ │ │ │ │ ├── decision.xslt │ │ │ │ │ ├── end.xslt │ │ │ │ │ ├── fields │ │ │ │ │ │ ├── archives.xslt │ │ │ │ │ │ ├── arg_params.xslt │ │ │ │ │ │ ├── args.xslt │ │ │ │ │ │ ├── arguments.xslt │ │ │ │ │ │ ├── capture_output.xslt │ │ │ │ │ │ ├── chmods.xslt │ │ │ │ │ │ ├── command.xslt │ │ │ │ │ │ ├── deletes.xslt │ │ │ │ │ │ ├── files.xslt │ │ │ │ │ │ ├── host.xslt │ │ │ │ │ │ ├── jar_path.xslt │ │ │ │ │ │ ├── java_opts.xslt │ │ │ │ │ │ ├── job_properties.xslt │ │ │ │ │ │ ├── job_xml.xslt │ │ │ │ │ │ ├── main_class.xslt │ │ │ │ │ │ ├── mapper.xslt │ │ │ │ │ │ ├── mkdirs.xslt │ │ │ │ │ │ ├── moves.xslt │ │ │ │ │ │ ├── params.xslt │ │ │ │ │ │ ├── prepares.xslt │ │ │ │ │ │ ├── propagate_configuration.xslt │ │ │ │ │ │ ├── reducer.xslt │ │ │ │ │ │ ├── script_path.xslt │ │ │ │ │ │ ├── touchzs.xslt │ │ │ │ │ │ ├── user.xslt │ │ │ │ │ │ └── xml.xslt │ │ │ │ │ ├── fork.xslt │ │ │ │ │ ├── fs.xslt │ │ │ │ │ ├── generic.xslt │ │ │ │ │ ├── java.xslt │ │ │ │ │ ├── join.xslt │ │ │ │ │ ├── kill.xslt │ │ │ │ │ ├── mapreduce.xslt │ │ │ │ │ ├── pig.xslt │ │ │ │ │ ├── start.xslt │ │ │ │ │ ├── streaming.xslt │ │ │ │ │ └── subworkflow.xslt │ │ │ │ └── workflow.xslt │ │ │ │ ├── 0.3 │ │ │ │ ├── action.xslt │ │ │ │ ├── control.xslt │ │ │ │ ├── extensions │ │ │ │ │ ├── distcp.0.1.xslt │ │ │ │ │ ├── email.0.1.xslt │ │ │ │ │ ├── hive.0.1.xslt │ │ │ │ │ ├── hive.0.2.xslt │ │ │ │ │ ├── shell.0.1.xslt │ │ │ │ │ ├── sqoop.0.1.xslt │ │ │ │ │ ├── sqoop.0.2.xslt │ │ │ │ │ └── ssh.0.1.xslt │ │ │ │ ├── nodes │ │ │ │ │ ├── decision.xslt │ │ │ │ │ ├── end.xslt │ │ │ │ │ ├── fields │ │ │ │ │ │ ├── archives.xslt │ │ │ │ │ │ ├── arg_params.xslt │ │ │ │ │ │ ├── args.xslt │ │ │ │ │ │ ├── arguments.xslt │ │ │ │ │ │ ├── capture_output.xslt │ │ │ │ │ │ ├── chmods.xslt │ │ │ │ │ │ ├── command.xslt │ │ │ │ │ │ ├── deletes.xslt │ │ │ │ │ │ ├── files.xslt │ │ │ │ │ │ ├── host.xslt │ │ │ │ │ │ ├── jar_path.xslt │ │ │ │ │ │ ├── java_opts.xslt │ │ │ │ │ │ ├── job_properties.xslt │ │ │ │ │ │ ├── job_xml.xslt │ │ │ │ │ │ ├── main_class.xslt │ │ │ │ │ │ ├── mapper.xslt │ │ │ │ │ │ ├── mkdirs.xslt │ │ │ │ │ │ ├── moves.xslt │ │ │ │ │ │ ├── params.xslt │ │ │ │ │ │ ├── prepares.xslt │ │ │ │ │ │ ├── propagate_configuration.xslt │ │ │ │ │ │ ├── reducer.xslt │ │ │ │ │ │ ├── script_path.xslt │ │ │ │ │ │ ├── touchzs.xslt │ │ │ │ │ │ ├── user.xslt │ │ │ │ │ │ └── xml.xslt │ │ │ │ │ ├── fork.xslt │ │ │ │ │ ├── fs.xslt │ │ │ │ │ ├── generic.xslt │ │ │ │ │ ├── java.xslt │ │ │ │ │ ├── join.xslt │ │ │ │ │ ├── kill.xslt │ │ │ │ │ ├── mapreduce.xslt │ │ │ │ │ ├── pig.xslt │ │ │ │ │ ├── start.xslt │ │ │ │ │ ├── streaming.xslt │ │ │ │ │ └── subworkflow.xslt │ │ │ │ └── workflow.xslt │ │ │ │ ├── 0.4 │ │ │ │ ├── action.xslt │ │ │ │ ├── control.xslt │ │ │ │ ├── extensions │ │ │ │ │ ├── distcp.0.1.xslt │ │ │ │ │ ├── email.0.1.xslt │ │ │ │ │ ├── hive.0.1.xslt │ │ │ │ │ ├── hive.0.2.xslt │ │ │ │ │ ├── shell.0.1.xslt │ │ │ │ │ ├── sqoop.0.1.xslt │ │ │ │ │ ├── sqoop.0.2.xslt │ │ │ │ │ └── ssh.0.1.xslt │ │ │ │ ├── nodes │ │ │ │ │ ├── decision.xslt │ │ │ │ │ ├── end.xslt │ │ │ │ │ ├── fields │ │ │ │ │ │ ├── archives.xslt │ │ │ │ │ │ ├── arg_params.xslt │ │ │ │ │ │ ├── args.xslt │ │ │ │ │ │ ├── arguments.xslt │ │ │ │ │ │ ├── capture_output.xslt │ │ │ │ │ │ ├── chmods.xslt │ │ │ │ │ │ ├── command.xslt │ │ │ │ │ │ ├── deletes.xslt │ │ │ │ │ │ ├── files.xslt │ │ │ │ │ │ ├── host.xslt │ │ │ │ │ │ ├── jar_path.xslt │ │ │ │ │ │ ├── java_opts.xslt │ │ │ │ │ │ ├── job_properties.xslt │ │ │ │ │ │ ├── job_xml.xslt │ │ │ │ │ │ ├── main_class.xslt │ │ │ │ │ │ ├── mapper.xslt │ │ │ │ │ │ ├── mkdirs.xslt │ │ │ │ │ │ ├── moves.xslt │ │ │ │ │ │ ├── params.xslt │ │ │ │ │ │ ├── prepares.xslt │ │ │ │ │ │ ├── propagate_configuration.xslt │ │ │ │ │ │ ├── reducer.xslt │ │ │ │ │ │ ├── script_path.xslt │ │ │ │ │ │ ├── touchzs.xslt │ │ │ │ │ │ ├── user.xslt │ │ │ │ │ │ └── xml.xslt │ │ │ │ │ ├── fork.xslt │ │ │ │ │ ├── fs.xslt │ │ │ │ │ ├── generic.xslt │ │ │ │ │ ├── java.xslt │ │ │ │ │ ├── join.xslt │ │ │ │ │ ├── kill.xslt │ │ │ │ │ ├── mapreduce.xslt │ │ │ │ │ ├── pig.xslt │ │ │ │ │ ├── start.xslt │ │ │ │ │ ├── streaming.xslt │ │ │ │ │ └── subworkflow.xslt │ │ │ │ └── workflow.xslt │ │ │ │ ├── 0.5 │ │ │ │ ├── action.xslt │ │ │ │ ├── control.xslt │ │ │ │ ├── extensions │ │ │ │ │ ├── distcp.0.1.xslt │ │ │ │ │ ├── email.0.1.xslt │ │ │ │ │ ├── hive.0.1.xslt │ │ │ │ │ ├── hive.0.2.xslt │ │ │ │ │ ├── shell.0.1.xslt │ │ │ │ │ ├── sqoop.0.1.xslt │ │ │ │ │ ├── sqoop.0.2.xslt │ │ │ │ │ └── ssh.0.1.xslt │ │ │ │ ├── nodes │ │ │ │ │ ├── decision.xslt │ │ │ │ │ ├── end.xslt │ │ │ │ │ ├── fields │ │ │ │ │ │ ├── archives.xslt │ │ │ │ │ │ ├── arg_params.xslt │ │ │ │ │ │ ├── args.xslt │ │ │ │ │ │ ├── arguments.xslt │ │ │ │ │ │ ├── capture_output.xslt │ │ │ │ │ │ ├── chmods.xslt │ │ │ │ │ │ ├── command.xslt │ │ │ │ │ │ ├── deletes.xslt │ │ │ │ │ │ ├── files.xslt │ │ │ │ │ │ ├── host.xslt │ │ │ │ │ │ ├── jar_path.xslt │ │ │ │ │ │ ├── java_opts.xslt │ │ │ │ │ │ ├── job_properties.xslt │ │ │ │ │ │ ├── job_xml.xslt │ │ │ │ │ │ ├── main_class.xslt │ │ │ │ │ │ ├── mapper.xslt │ │ │ │ │ │ ├── mkdirs.xslt │ │ │ │ │ │ ├── moves.xslt │ │ │ │ │ │ ├── params.xslt │ │ │ │ │ │ ├── prepares.xslt │ │ │ │ │ │ ├── propagate_configuration.xslt │ │ │ │ │ │ ├── reducer.xslt │ │ │ │ │ │ ├── script_path.xslt │ │ │ │ │ │ ├── touchzs.xslt │ │ │ │ │ │ ├── user.xslt │ │ │ │ │ │ └── xml.xslt │ │ │ │ │ ├── fork.xslt │ │ │ │ │ ├── fs.xslt │ │ │ │ │ ├── generic.xslt │ │ │ │ │ ├── java.xslt │ │ │ │ │ ├── join.xslt │ │ │ │ │ ├── kill.xslt │ │ │ │ │ ├── mapreduce.xslt │ │ │ │ │ ├── pig.xslt │ │ │ │ │ ├── sla.xslt │ │ │ │ │ ├── start.xslt │ │ │ │ │ ├── streaming.xslt │ │ │ │ │ └── subworkflow.xslt │ │ │ │ └── workflow.xslt │ │ │ │ └── workflow.xslt │ │ └── xslt2 │ │ │ └── workflows │ │ │ ├── 0.5 │ │ │ ├── action.xslt │ │ │ ├── control.xslt │ │ │ ├── extensions │ │ │ │ ├── distcp.0.1.xslt │ │ │ │ ├── distcp.0.2.xslt │ │ │ │ ├── email.0.1.xslt │ │ │ │ ├── email.0.2.xslt │ │ │ │ ├── hive.0.2.xslt │ │ │ │ ├── hive.0.3.xslt │ │ │ │ ├── hive.0.4.xslt │ │ │ │ ├── hive.0.5.xslt │ │ │ │ ├── hive.0.6.xslt │ │ │ │ ├── hive2.0.1.xslt │ │ │ │ ├── hive2.0.2.xslt │ │ │ │ ├── shell.0.1.xslt │ │ │ │ ├── shell.0.2.xslt │ │ │ │ ├── shell.0.3.xslt │ │ │ │ ├── spark.0.1.xslt │ │ │ │ ├── spark.0.2.xslt │ │ │ │ ├── sqoop.0.2.xslt │ │ │ │ ├── sqoop.0.3.xslt │ │ │ │ ├── sqoop.0.4.xslt │ │ │ │ ├── ssh.0.1.xslt │ │ │ │ └── ssh.0.2.xslt │ │ │ ├── nodes │ │ │ │ ├── decision.xslt │ │ │ │ ├── fields │ │ │ │ │ ├── command.xslt │ │ │ │ │ ├── deletes.xslt │ │ │ │ │ ├── jar_path.xslt │ │ │ │ │ ├── job_properties.xslt │ │ │ │ │ ├── job_xml.xslt │ │ │ │ │ ├── mapper.xslt │ │ │ │ │ ├── mkdirs.xslt │ │ │ │ │ ├── moves.xslt │ │ │ │ │ ├── prepares.xslt │ │ │ │ │ ├── reducer.xslt │ │ │ │ │ ├── script_path.xslt │ │ │ │ │ ├── touchzs.xslt │ │ │ │ │ ├── user.xslt │ │ │ │ │ └── xml.xslt │ │ │ │ ├── fork.xslt │ │ │ │ ├── fs.xslt │ │ │ │ ├── generic.xslt │ │ │ │ ├── java.xslt │ │ │ │ ├── mapreduce.xslt │ │ │ │ ├── pig.xslt │ │ │ │ ├── streaming.xslt │ │ │ │ └── subworkflow.xslt │ │ │ └── workflow.xslt │ │ │ └── workflow.xslt │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── oozie_setup.py │ │ │ └── share_all_workflows.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_initial.py │ │ ├── 0003_initial.py │ │ ├── 0004_initial.py │ │ ├── 0005_initial.py │ │ ├── 0006_auto_20200714_1204.py │ │ ├── 0007_auto_20210126_2113.py │ │ ├── 0008_auto_20210216_0216.py │ │ └── __init__.py │ │ ├── models.py │ │ ├── models2.py │ │ ├── models2_tests.py │ │ ├── old_migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto__add_hive.py │ │ ├── 0003_auto__add_sqoop.py │ │ ├── 0004_auto__add_ssh.py │ │ ├── 0005_auto__add_shell.py │ │ ├── 0006_auto__chg_field_java_files__chg_field_java_archives__chg_field_sqoop_f.py │ │ ├── 0007_auto__chg_field_sqoop_script_path.py │ │ ├── 0008_auto__add_distcp.py │ │ ├── 0009_auto__add_decision.py │ │ ├── 0010_auto__add_fs.py │ │ ├── 0011_auto__add_email.py │ │ ├── 0012_auto__add_subworkflow__chg_field_email_subject__chg_field_email_body.py │ │ ├── 0013_auto__add_generic.py │ │ ├── 0014_auto__add_decisionend.py │ │ ├── 0015_auto__add_field_dataset_advanced_start_instance__add_field_dataset_ins.py │ │ ├── 0016_auto__add_field_coordinator_job_properties.py │ │ ├── 0017_auto__add_bundledcoordinator__add_bundle.py │ │ ├── 0018_auto__add_field_workflow_managed.py │ │ ├── 0019_auto__add_field_java_capture_output.py │ │ ├── 0020_chg_large_varchars_to_textfields.py │ │ ├── 0021_auto__chg_field_java_args__add_field_job_is_trashed.py │ │ ├── 0022_auto__chg_field_mapreduce_node_ptr__chg_field_start_node_ptr.py │ │ ├── 0022_change_examples_path_format.py │ │ ├── 0023_auto__add_field_node_data__add_field_job_data.py │ │ ├── 0024_auto__chg_field_subworkflow_sub_workflow.py │ │ ├── 0025_change_examples_path_format.py │ │ ├── 0026_set_default_data_values.py │ │ ├── 0027_auto__chg_field_node_name__chg_field_job_name.py │ │ └── __init__.py │ │ ├── settings.py │ │ ├── static │ │ └── oozie │ │ │ ├── art │ │ │ ├── icon.png │ │ │ ├── icon_beeswax_48.png │ │ │ ├── icon_impala_24.png │ │ │ ├── icon_impala_48.png │ │ │ ├── icon_oozie_24.png │ │ │ ├── icon_oozie_48.png │ │ │ ├── icon_oozie_bundle_24.png │ │ │ ├── icon_oozie_bundle_48.png │ │ │ ├── icon_oozie_coordinator_24.png │ │ │ ├── icon_oozie_coordinator_48.png │ │ │ ├── icon_oozie_dashboard_24.png │ │ │ ├── icon_oozie_dashboard_48.png │ │ │ ├── icon_oozie_editor_24.png │ │ │ ├── icon_oozie_editor_48.png │ │ │ ├── icon_oozie_workflow_24.png │ │ │ ├── icon_oozie_workflow_48.png │ │ │ ├── icon_pig_48.png │ │ │ ├── icon_spark_48.png │ │ │ └── icon_sqoop_48.png │ │ │ ├── css │ │ │ ├── common-editor.css │ │ │ ├── coordinator-editor.css │ │ │ ├── coordinator.css │ │ │ ├── workflow-editor.css │ │ │ └── workflow.css │ │ │ ├── help │ │ │ ├── images │ │ │ │ ├── 23888163.png │ │ │ │ ├── 23888164.png │ │ │ │ ├── 23888324.png │ │ │ │ ├── 23888456.png │ │ │ │ ├── 23888457.png │ │ │ │ ├── 23888458.png │ │ │ │ └── 23888498.png │ │ │ ├── index.html │ │ │ ├── retweet.png │ │ │ └── updown.png │ │ │ ├── js │ │ │ ├── bundle-editor.ko.js │ │ │ ├── coordinator-editor.ko.js │ │ │ ├── coordinator.js │ │ │ ├── dashboard-utils.js │ │ │ ├── list-oozie-coordinator.ko.js │ │ │ ├── sla.utils.js │ │ │ ├── workflow-editor.ko.js │ │ │ ├── workflow-editor.utils.js │ │ │ ├── workflow.idgen.js │ │ │ ├── workflow.import-node.js │ │ │ ├── workflow.js │ │ │ ├── workflow.modal.js │ │ │ ├── workflow.models.js │ │ │ ├── workflow.node-fields.js │ │ │ ├── workflow.node.js │ │ │ ├── workflow.registry.js │ │ │ └── workflow.utils.js │ │ │ ├── less │ │ │ ├── common-editor.less │ │ │ ├── coordinator-editor.less │ │ │ ├── coordinator.less │ │ │ ├── workflow-editor.less │ │ │ └── workflow.less │ │ │ └── spec │ │ │ └── workflowEditorSpec.js │ │ ├── templates │ │ ├── dashboard │ │ │ ├── list_oozie_bundle.mako │ │ │ ├── list_oozie_bundles.mako │ │ │ ├── list_oozie_coordinator.mako │ │ │ ├── list_oozie_coordinators.mako │ │ │ ├── list_oozie_info.mako │ │ │ ├── list_oozie_sla.mako │ │ │ ├── list_oozie_workflow.mako │ │ │ ├── list_oozie_workflow_action.mako │ │ │ ├── list_oozie_workflow_graph.mako │ │ │ ├── list_oozie_workflows.mako │ │ │ ├── rerun_bundle_popup.mako │ │ │ ├── rerun_coord_popup.mako │ │ │ └── rerun_workflow_popup.mako │ │ ├── editor │ │ │ ├── action_utils.mako │ │ │ ├── control_utils.mako │ │ │ ├── coordinator_properties.mako │ │ │ ├── coordinator_utils.mako │ │ │ ├── create_bundle.mako │ │ │ ├── create_bundled_coordinator.mako │ │ │ ├── create_coordinator.mako │ │ │ ├── create_coordinator_data.mako │ │ │ ├── create_coordinator_dataset.mako │ │ │ ├── create_workflow.mako │ │ │ ├── dataset_utils.mako │ │ │ ├── edit_bundle.mako │ │ │ ├── edit_bundled_coordinator.mako │ │ │ ├── edit_coordinator.mako │ │ │ ├── edit_coordinator_dataset.mako │ │ │ ├── edit_workflow.mako │ │ │ ├── gen │ │ │ │ ├── bundle.xml.mako │ │ │ │ ├── coordinator.xml.mako │ │ │ │ ├── workflow-common.xml.mako │ │ │ │ ├── workflow-decision.xml.mako │ │ │ │ ├── workflow-distcp.xml.mako │ │ │ │ ├── workflow-email.xml.mako │ │ │ │ ├── workflow-end.xml.mako │ │ │ │ ├── workflow-fork.xml.mako │ │ │ │ ├── workflow-fs.xml.mako │ │ │ │ ├── workflow-generic.xml.mako │ │ │ │ ├── workflow-graph-status.xml.mako │ │ │ │ ├── workflow-graph.xml.mako │ │ │ │ ├── workflow-hive.xml.mako │ │ │ │ ├── workflow-java.xml.mako │ │ │ │ ├── workflow-join.xml.mako │ │ │ │ ├── workflow-kill.xml.mako │ │ │ │ ├── workflow-mapreduce.xml.mako │ │ │ │ ├── workflow-pig.xml.mako │ │ │ │ ├── workflow-shell.xml.mako │ │ │ │ ├── workflow-sqoop.xml.mako │ │ │ │ ├── workflow-ssh.xml.mako │ │ │ │ ├── workflow-start.xml.mako │ │ │ │ ├── workflow-streaming.xml.mako │ │ │ │ ├── workflow-subworkflow.xml.mako │ │ │ │ └── workflow.xml.mako │ │ │ ├── import_coordinator.mako │ │ │ ├── import_workflow.mako │ │ │ ├── job_action_properties.mako │ │ │ ├── list_bundles.mako │ │ │ ├── list_coordinators.mako │ │ │ ├── list_history.mako │ │ │ ├── list_history_record.mako │ │ │ ├── list_trashed_bundles.mako │ │ │ ├── list_trashed_coordinators.mako │ │ │ ├── list_trashed_workflows.mako │ │ │ ├── list_workflows.mako │ │ │ ├── submit_job_popup.mako │ │ │ └── workflow_utils.mako │ │ ├── editor2 │ │ │ ├── bundle_editor.mako │ │ │ ├── common_scheduler.inc.mako │ │ │ ├── common_scheduler.mako │ │ │ ├── common_workflow.mako │ │ │ ├── coordinator_editor.mako │ │ │ ├── coordinator_utils.mako │ │ │ ├── gen │ │ │ │ ├── bundle.xml.mako │ │ │ │ ├── coordinator.xml.mako │ │ │ │ ├── workflow-common.xml.mako │ │ │ │ ├── workflow-decision.xml.mako │ │ │ │ ├── workflow-distcp-document.xml.mako │ │ │ │ ├── workflow-distcp.xml.mako │ │ │ │ ├── workflow-email.xml.mako │ │ │ │ ├── workflow-end.xml.mako │ │ │ │ ├── workflow-fork.xml.mako │ │ │ │ ├── workflow-fs.xml.mako │ │ │ │ ├── workflow-generic.xml.mako │ │ │ │ ├── workflow-graph-status.xml.mako │ │ │ │ ├── workflow-graph.xml.mako │ │ │ │ ├── workflow-hive-document.xml.mako │ │ │ │ ├── workflow-hive.xml.mako │ │ │ │ ├── workflow-hive2.xml.mako │ │ │ │ ├── workflow-java.xml.mako │ │ │ │ ├── workflow-join.xml.mako │ │ │ │ ├── workflow-kill.xml.mako │ │ │ │ ├── workflow-mapreduce-document.xml.mako │ │ │ │ ├── workflow-mapreduce.xml.mako │ │ │ │ ├── workflow-pig-document.xml.mako │ │ │ │ ├── workflow-pig.xml.mako │ │ │ │ ├── workflow-shell-document.xml.mako │ │ │ │ ├── workflow-shell.xml.mako │ │ │ │ ├── workflow-spark-document.xml.mako │ │ │ │ ├── workflow-spark.xml.mako │ │ │ │ ├── workflow-spark2-document.xml.mako │ │ │ │ ├── workflow-sqoop-document.xml.mako │ │ │ │ ├── workflow-sqoop.xml.mako │ │ │ │ ├── workflow-ssh.xml.mako │ │ │ │ ├── workflow-start.xml.mako │ │ │ │ ├── workflow-streaming.xml.mako │ │ │ │ ├── workflow-subworkflow.xml.mako │ │ │ │ └── workflow.xml.mako │ │ │ ├── list_editor_bundles.mako │ │ │ ├── list_editor_coordinators.mako │ │ │ ├── list_editor_workflows.mako │ │ │ ├── submit_job_popup.mako │ │ │ └── workflow_editor.mako │ │ ├── navigation-bar.mako │ │ └── utils.inc.mako │ │ ├── test_data │ │ ├── coordinators │ │ │ └── 0.2 │ │ │ │ └── test-basic.xml │ │ ├── workflows │ │ │ └── 0.4 │ │ │ │ ├── test-basic-global-config.xml │ │ │ │ ├── test-basic-namespace-missing.xml │ │ │ │ ├── test-basic.xml │ │ │ │ ├── test-credentials.xml │ │ │ │ ├── test-decision-complex.xml │ │ │ │ ├── test-decision.xml │ │ │ │ ├── test-distcp.0.1.xml │ │ │ │ ├── test-email.0.1.xml │ │ │ │ ├── test-forks.xml │ │ │ │ ├── test-fs.xml │ │ │ │ ├── test-generic.xml │ │ │ │ ├── test-java-different-error-links.xml │ │ │ │ ├── test-java-multiple-kill.xml │ │ │ │ ├── test-java.xml │ │ │ │ ├── test-mapreduce.xml │ │ │ │ ├── test-pig.xml │ │ │ │ ├── test-shell.xml │ │ │ │ ├── test-sqoop.0.2.xml │ │ │ │ ├── test-ssh.xml │ │ │ │ └── test-subworkflow.xml │ │ └── xslt2 │ │ │ └── test-workflow.xml │ │ ├── tests.py │ │ ├── timezones.py │ │ ├── urls.py │ │ ├── utils.py │ │ └── views │ │ ├── __init__.py │ │ ├── api.py │ │ ├── dashboard.py │ │ ├── editor.py │ │ └── editor2.py ├── pig │ ├── Makefile │ ├── babel.cfg │ ├── examples │ │ └── empty │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── pig │ │ ├── __init__.py │ │ ├── api.py │ │ ├── conf.py │ │ ├── fixtures │ │ └── initial_pig_examples.json │ │ ├── forms.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── pig_setup.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20200714_1204.py │ │ └── __init__.py │ │ ├── models.py │ │ ├── old_migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ │ ├── settings.py │ │ ├── static │ │ └── pig │ │ │ ├── art │ │ │ ├── icon_pig_24.png │ │ │ └── icon_pig_48.png │ │ │ ├── css │ │ │ └── pig.css │ │ │ ├── help │ │ │ └── index.html │ │ │ └── js │ │ │ ├── pig.ko.js │ │ │ └── utils.js │ │ ├── templates │ │ └── app.mako │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py ├── proxy │ ├── Makefile │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── proxy │ │ ├── __init__.py │ │ ├── conf.py │ │ ├── models.py │ │ ├── proxy_test.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── views.py ├── rdbms │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── rdbms │ │ ├── __init__.py │ │ ├── api.py │ │ ├── conf.py │ │ ├── forms.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── models.py │ │ ├── settings.py │ │ ├── static │ │ └── rdbms │ │ │ ├── art │ │ │ ├── icon_rdbms_24.png │ │ │ └── icon_rdbms_48.png │ │ │ ├── help │ │ │ ├── images │ │ │ │ └── 23888161.png │ │ │ └── index.html │ │ │ └── js │ │ │ ├── autocomplete.utils.js │ │ │ └── rdbms.vm.js │ │ ├── templates │ │ ├── common.mako │ │ ├── error.mako │ │ └── execute.mako │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py ├── search │ ├── Makefile │ ├── babel.cfg │ ├── examples │ │ ├── bin │ │ │ ├── create_collections.sh │ │ │ ├── post.jar │ │ │ └── post.sh │ │ └── collections │ │ │ ├── solr_configs_log_analytics_demo │ │ │ ├── conf │ │ │ │ ├── admin-extra.html │ │ │ │ ├── admin-extra.menu-bottom.html │ │ │ │ ├── admin-extra.menu-top.html │ │ │ │ ├── currency.xml │ │ │ │ ├── elevate.xml │ │ │ │ ├── lang │ │ │ │ │ ├── contractions_ca.txt │ │ │ │ │ ├── contractions_fr.txt │ │ │ │ │ ├── contractions_ga.txt │ │ │ │ │ ├── contractions_it.txt │ │ │ │ │ ├── hyphenations_ga.txt │ │ │ │ │ ├── stemdict_nl.txt │ │ │ │ │ ├── stoptags_ja.txt │ │ │ │ │ ├── stopwords_ar.txt │ │ │ │ │ ├── stopwords_bg.txt │ │ │ │ │ ├── stopwords_ca.txt │ │ │ │ │ ├── stopwords_cz.txt │ │ │ │ │ ├── stopwords_da.txt │ │ │ │ │ ├── stopwords_de.txt │ │ │ │ │ ├── stopwords_el.txt │ │ │ │ │ ├── stopwords_en.txt │ │ │ │ │ ├── stopwords_es.txt │ │ │ │ │ ├── stopwords_eu.txt │ │ │ │ │ ├── stopwords_fa.txt │ │ │ │ │ ├── stopwords_fi.txt │ │ │ │ │ ├── stopwords_fr.txt │ │ │ │ │ ├── stopwords_ga.txt │ │ │ │ │ ├── stopwords_gl.txt │ │ │ │ │ ├── stopwords_hi.txt │ │ │ │ │ ├── stopwords_hu.txt │ │ │ │ │ ├── stopwords_hy.txt │ │ │ │ │ ├── stopwords_id.txt │ │ │ │ │ ├── stopwords_it.txt │ │ │ │ │ ├── stopwords_ja.txt │ │ │ │ │ ├── stopwords_lv.txt │ │ │ │ │ ├── stopwords_nl.txt │ │ │ │ │ ├── stopwords_no.txt │ │ │ │ │ ├── stopwords_pt.txt │ │ │ │ │ ├── stopwords_ro.txt │ │ │ │ │ ├── stopwords_ru.txt │ │ │ │ │ ├── stopwords_sv.txt │ │ │ │ │ ├── stopwords_th.txt │ │ │ │ │ ├── stopwords_tr.txt │ │ │ │ │ └── userdict_ja.txt │ │ │ │ ├── mapping-FoldToASCII.txt │ │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── scripts.conf │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── solrconfig.xml.secure │ │ │ │ ├── solrconfig.xml.solr6 │ │ │ │ ├── solrconfig.xml.solr6NonHdfs │ │ │ │ ├── spellings.txt │ │ │ │ ├── stopwords.txt │ │ │ │ ├── synonyms.txt │ │ │ │ ├── update-script.js │ │ │ │ ├── velocity │ │ │ │ │ ├── VM_global_library.vm │ │ │ │ │ ├── browse.vm │ │ │ │ │ ├── cluster.vm │ │ │ │ │ ├── clusterResults.vm │ │ │ │ │ ├── debug.vm │ │ │ │ │ ├── did_you_mean.vm │ │ │ │ │ ├── facet_fields.vm │ │ │ │ │ ├── facet_pivot.vm │ │ │ │ │ ├── facet_queries.vm │ │ │ │ │ ├── facet_ranges.vm │ │ │ │ │ ├── facets.vm │ │ │ │ │ ├── footer.vm │ │ │ │ │ ├── head.vm │ │ │ │ │ ├── header.vm │ │ │ │ │ ├── hit.vm │ │ │ │ │ ├── hitGrouped.vm │ │ │ │ │ ├── join-doc.vm │ │ │ │ │ ├── jquery.autocomplete.css │ │ │ │ │ ├── jquery.autocomplete.js │ │ │ │ │ ├── layout.vm │ │ │ │ │ ├── main.css │ │ │ │ │ ├── product-doc.vm │ │ │ │ │ ├── query.vm │ │ │ │ │ ├── queryGroup.vm │ │ │ │ │ ├── querySpatial.vm │ │ │ │ │ ├── richtext-doc.vm │ │ │ │ │ ├── suggest.vm │ │ │ │ │ └── tabs.vm │ │ │ │ └── xslt │ │ │ │ │ ├── example.xsl │ │ │ │ │ ├── example_atom.xsl │ │ │ │ │ ├── example_rss.xsl │ │ │ │ │ ├── luke.xsl │ │ │ │ │ └── updateXml.xsl │ │ │ └── index_data.csv │ │ │ ├── solr_configs_twitter_demo │ │ │ ├── conf │ │ │ │ ├── admin-extra.html │ │ │ │ ├── admin-extra.menu-bottom.html │ │ │ │ ├── admin-extra.menu-top.html │ │ │ │ ├── currency.xml │ │ │ │ ├── elevate.xml │ │ │ │ ├── lang │ │ │ │ │ ├── contractions_ca.txt │ │ │ │ │ ├── contractions_fr.txt │ │ │ │ │ ├── contractions_ga.txt │ │ │ │ │ ├── contractions_it.txt │ │ │ │ │ ├── hyphenations_ga.txt │ │ │ │ │ ├── stemdict_nl.txt │ │ │ │ │ ├── stoptags_ja.txt │ │ │ │ │ ├── stopwords_ar.txt │ │ │ │ │ ├── stopwords_bg.txt │ │ │ │ │ ├── stopwords_ca.txt │ │ │ │ │ ├── stopwords_cz.txt │ │ │ │ │ ├── stopwords_da.txt │ │ │ │ │ ├── stopwords_de.txt │ │ │ │ │ ├── stopwords_el.txt │ │ │ │ │ ├── stopwords_en.txt │ │ │ │ │ ├── stopwords_es.txt │ │ │ │ │ ├── stopwords_eu.txt │ │ │ │ │ ├── stopwords_fa.txt │ │ │ │ │ ├── stopwords_fi.txt │ │ │ │ │ ├── stopwords_fr.txt │ │ │ │ │ ├── stopwords_ga.txt │ │ │ │ │ ├── stopwords_gl.txt │ │ │ │ │ ├── stopwords_hi.txt │ │ │ │ │ ├── stopwords_hu.txt │ │ │ │ │ ├── stopwords_hy.txt │ │ │ │ │ ├── stopwords_id.txt │ │ │ │ │ ├── stopwords_it.txt │ │ │ │ │ ├── stopwords_ja.txt │ │ │ │ │ ├── stopwords_lv.txt │ │ │ │ │ ├── stopwords_nl.txt │ │ │ │ │ ├── stopwords_no.txt │ │ │ │ │ ├── stopwords_pt.txt │ │ │ │ │ ├── stopwords_ro.txt │ │ │ │ │ ├── stopwords_ru.txt │ │ │ │ │ ├── stopwords_sv.txt │ │ │ │ │ ├── stopwords_th.txt │ │ │ │ │ ├── stopwords_tr.txt │ │ │ │ │ └── userdict_ja.txt │ │ │ │ ├── mapping-FoldToASCII.txt │ │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── scripts.conf │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── solrconfig.xml.secure │ │ │ │ ├── solrconfig.xml.solr6 │ │ │ │ ├── solrconfig.xml.solr6NonHdfs │ │ │ │ ├── spellings.txt │ │ │ │ ├── stopwords.txt │ │ │ │ ├── synonyms.txt │ │ │ │ ├── update-script.js │ │ │ │ ├── velocity │ │ │ │ │ ├── VM_global_library.vm │ │ │ │ │ ├── browse.vm │ │ │ │ │ ├── cluster.vm │ │ │ │ │ ├── clusterResults.vm │ │ │ │ │ ├── debug.vm │ │ │ │ │ ├── did_you_mean.vm │ │ │ │ │ ├── facet_fields.vm │ │ │ │ │ ├── facet_pivot.vm │ │ │ │ │ ├── facet_queries.vm │ │ │ │ │ ├── facet_ranges.vm │ │ │ │ │ ├── facets.vm │ │ │ │ │ ├── footer.vm │ │ │ │ │ ├── head.vm │ │ │ │ │ ├── header.vm │ │ │ │ │ ├── hit.vm │ │ │ │ │ ├── hitGrouped.vm │ │ │ │ │ ├── join-doc.vm │ │ │ │ │ ├── jquery.autocomplete.css │ │ │ │ │ ├── jquery.autocomplete.js │ │ │ │ │ ├── layout.vm │ │ │ │ │ ├── main.css │ │ │ │ │ ├── product-doc.vm │ │ │ │ │ ├── query.vm │ │ │ │ │ ├── queryGroup.vm │ │ │ │ │ ├── querySpatial.vm │ │ │ │ │ ├── richtext-doc.vm │ │ │ │ │ ├── suggest.vm │ │ │ │ │ └── tabs.vm │ │ │ │ └── xslt │ │ │ │ │ ├── example.xsl │ │ │ │ │ ├── example_atom.xsl │ │ │ │ │ ├── example_rss.xsl │ │ │ │ │ ├── luke.xsl │ │ │ │ │ └── updateXml.xsl │ │ │ └── index_data.csv │ │ │ └── solr_configs_yelp_demo │ │ │ ├── conf │ │ │ ├── admin-extra.html │ │ │ ├── admin-extra.menu-bottom.html │ │ │ ├── admin-extra.menu-top.html │ │ │ ├── currency.xml │ │ │ ├── elevate.xml │ │ │ ├── lang │ │ │ │ ├── contractions_ca.txt │ │ │ │ ├── contractions_fr.txt │ │ │ │ ├── contractions_ga.txt │ │ │ │ ├── contractions_it.txt │ │ │ │ ├── hyphenations_ga.txt │ │ │ │ ├── stemdict_nl.txt │ │ │ │ ├── stoptags_ja.txt │ │ │ │ ├── stopwords_ar.txt │ │ │ │ ├── stopwords_bg.txt │ │ │ │ ├── stopwords_ca.txt │ │ │ │ ├── stopwords_cz.txt │ │ │ │ ├── stopwords_da.txt │ │ │ │ ├── stopwords_de.txt │ │ │ │ ├── stopwords_el.txt │ │ │ │ ├── stopwords_en.txt │ │ │ │ ├── stopwords_es.txt │ │ │ │ ├── stopwords_eu.txt │ │ │ │ ├── stopwords_fa.txt │ │ │ │ ├── stopwords_fi.txt │ │ │ │ ├── stopwords_fr.txt │ │ │ │ ├── stopwords_ga.txt │ │ │ │ ├── stopwords_gl.txt │ │ │ │ ├── stopwords_hi.txt │ │ │ │ ├── stopwords_hu.txt │ │ │ │ ├── stopwords_hy.txt │ │ │ │ ├── stopwords_id.txt │ │ │ │ ├── stopwords_it.txt │ │ │ │ ├── stopwords_ja.txt │ │ │ │ ├── stopwords_lv.txt │ │ │ │ ├── stopwords_nl.txt │ │ │ │ ├── stopwords_no.txt │ │ │ │ ├── stopwords_pt.txt │ │ │ │ ├── stopwords_ro.txt │ │ │ │ ├── stopwords_ru.txt │ │ │ │ ├── stopwords_sv.txt │ │ │ │ ├── stopwords_th.txt │ │ │ │ ├── stopwords_tr.txt │ │ │ │ └── userdict_ja.txt │ │ │ ├── mapping-FoldToASCII.txt │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ ├── protwords.txt │ │ │ ├── schema.xml │ │ │ ├── scripts.conf │ │ │ ├── solrconfig.xml │ │ │ ├── solrconfig.xml.secure │ │ │ ├── solrconfig.xml.solr6 │ │ │ ├── solrconfig.xml.solr6NonHdfs │ │ │ ├── spellings.txt │ │ │ ├── stopwords.txt │ │ │ ├── synonyms.txt │ │ │ ├── update-script.js │ │ │ ├── velocity │ │ │ │ ├── VM_global_library.vm │ │ │ │ ├── browse.vm │ │ │ │ ├── cluster.vm │ │ │ │ ├── clusterResults.vm │ │ │ │ ├── debug.vm │ │ │ │ ├── did_you_mean.vm │ │ │ │ ├── facet_fields.vm │ │ │ │ ├── facet_pivot.vm │ │ │ │ ├── facet_queries.vm │ │ │ │ ├── facet_ranges.vm │ │ │ │ ├── facets.vm │ │ │ │ ├── footer.vm │ │ │ │ ├── head.vm │ │ │ │ ├── header.vm │ │ │ │ ├── hit.vm │ │ │ │ ├── hitGrouped.vm │ │ │ │ ├── join-doc.vm │ │ │ │ ├── jquery.autocomplete.css │ │ │ │ ├── jquery.autocomplete.js │ │ │ │ ├── layout.vm │ │ │ │ ├── main.css │ │ │ │ ├── product-doc.vm │ │ │ │ ├── query.vm │ │ │ │ ├── queryGroup.vm │ │ │ │ ├── querySpatial.vm │ │ │ │ ├── richtext-doc.vm │ │ │ │ ├── suggest.vm │ │ │ │ └── tabs.vm │ │ │ └── xslt │ │ │ │ ├── example.xsl │ │ │ │ ├── example_atom.xsl │ │ │ │ ├── example_rss.xsl │ │ │ │ ├── luke.xsl │ │ │ │ └── updateXml.xsl │ │ │ ├── index_data.csv │ │ │ └── reviews.conf │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── search │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── conf.py │ │ ├── controller.py │ │ ├── dashboard_api.py │ │ ├── fixtures │ │ └── initial_search_examples.json │ │ ├── forms.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── search_setup.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ │ ├── models.py │ │ ├── old_migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto__del_core__add_collection.py │ │ ├── 0003_auto__add_field_collection_owner.py │ │ └── __init__.py │ │ ├── settings.py │ │ ├── static │ │ └── search │ │ │ └── art │ │ │ ├── bird_gray_32.png │ │ │ ├── icon_logs.png │ │ │ ├── icon_logs_48.png │ │ │ ├── icon_search_24.png │ │ │ ├── icon_search_48.png │ │ │ ├── icon_twitter.png │ │ │ ├── icon_twitter_48.png │ │ │ ├── icon_yelp.png │ │ │ ├── icon_yelp_48.png │ │ │ ├── remove.png │ │ │ ├── reply.png │ │ │ └── retweet.png │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py ├── security │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── security │ │ ├── __init__.py │ │ ├── api │ │ ├── __init__.py │ │ ├── hdfs.py │ │ ├── hive.py │ │ ├── sentry.py │ │ └── test_hive.py │ │ ├── conf.py │ │ ├── forms.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ └── __init__.py │ │ ├── migrations │ │ └── __init__.py │ │ ├── models.py │ │ ├── old_migrations │ │ └── __init__.py │ │ ├── settings.py │ │ ├── static │ │ └── security │ │ │ ├── art │ │ │ └── icon_security_24.png │ │ │ ├── css │ │ │ └── security.css │ │ │ ├── help │ │ │ └── index.html │ │ │ ├── js │ │ │ ├── hdfs.ko.js │ │ │ ├── hive.ko.js │ │ │ └── sentry.ko.js │ │ │ └── less │ │ │ └── security.less │ │ ├── templates │ │ ├── hdfs.mako │ │ ├── hive.mako │ │ ├── layout.mako │ │ └── sentry.mako │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py ├── spark │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── java │ │ └── README.rst │ ├── setup.py │ └── src │ │ └── spark │ │ ├── __init__.py │ │ ├── conf.py │ │ ├── forms.py │ │ ├── livy_client.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── migrations │ │ └── __init__.py │ │ ├── models.py │ │ ├── old_migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ │ ├── settings.py │ │ ├── static │ │ └── spark │ │ │ ├── art │ │ │ ├── icon_spark_24.png │ │ │ └── icon_spark_48.png │ │ │ └── help │ │ │ ├── images │ │ │ └── 23888161.png │ │ │ └── index.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py ├── sqoop │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── sqoop │ │ ├── __init__.py │ │ ├── api │ │ ├── __init__.py │ │ ├── autocomplete.py │ │ ├── connector.py │ │ ├── decorators.py │ │ ├── driver.py │ │ ├── exception.py │ │ ├── job.py │ │ ├── link.py │ │ ├── pagination.py │ │ ├── submission.py │ │ └── utils.py │ │ ├── client │ │ ├── __init__.py │ │ ├── base.py │ │ ├── config.py │ │ ├── connector.py │ │ ├── driver.py │ │ ├── exception.py │ │ ├── job.py │ │ ├── link.py │ │ ├── resource.py │ │ └── submission.py │ │ ├── conf.py │ │ ├── forms.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── migrations │ │ └── __init__.py │ │ ├── models.py │ │ ├── old_migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ │ ├── settings.py │ │ ├── sqoop_properties.py │ │ ├── static │ │ └── sqoop │ │ │ ├── art │ │ │ ├── icon_sqoop_24.png │ │ │ └── icon_sqoop_48.png │ │ │ ├── css │ │ │ └── sqoop.css │ │ │ ├── help │ │ │ └── index.html │ │ │ ├── js │ │ │ ├── cclass.js │ │ │ ├── koify.js │ │ │ ├── sqoop.autocomplete.js │ │ │ ├── sqoop.configs.js │ │ │ ├── sqoop.connectors.js │ │ │ ├── sqoop.driver.js │ │ │ ├── sqoop.jobs.js │ │ │ ├── sqoop.js │ │ │ ├── sqoop.links.js │ │ │ ├── sqoop.submissions.js │ │ │ ├── sqoop.utils.js │ │ │ └── sqoop.wizard.js │ │ │ └── less │ │ │ └── sqoop.less │ │ ├── templates │ │ └── app.mako │ │ ├── test_base.py │ │ ├── test_client.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py ├── useradmin │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── useradmin │ │ ├── __init__.py │ │ ├── api.py │ │ ├── conf.py │ │ ├── forms.py │ │ ├── hue_password_policy.py │ │ ├── ldap_access.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── import_ldap_group.py │ │ │ ├── import_ldap_user.py │ │ │ ├── set_user_as_active.py │ │ │ ├── sync_ldap_users_and_groups.py │ │ │ └── useradmin_sync_with_unix.py │ │ ├── metrics.py │ │ ├── middleware.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_userprofile_json_data.py │ │ ├── 0003_auto_20200203_0802.py │ │ ├── 0004_userprofile_hostname.py │ │ └── __init__.py │ │ ├── models.py │ │ ├── old_migrations │ │ ├── 0001_permissions_and_profiles.py │ │ ├── 0002_add_ldap_support.py │ │ ├── 0003_remove_metastore_readonly_huepermission.py │ │ ├── 0004_add_field_UserProfile_first_login.py │ │ ├── 0005_auto__add_field_userprofile_last_activity.py │ │ ├── 0006_auto__add_index_userprofile_last_activity.py │ │ ├── 0007_remove_s3_access.py │ │ ├── 0008_convert_documents.py │ │ └── __init__.py │ │ ├── org_migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20200130_1041.py │ │ ├── 0003_userprofile_hostname.py │ │ ├── 0004_auto_20210120_1258.py │ │ └── __init__.py │ │ ├── organization.py │ │ ├── organization_tests.py │ │ ├── permissions.py │ │ ├── settings.py │ │ ├── static │ │ └── useradmin │ │ │ ├── art │ │ │ ├── icon_useradmin_24.png │ │ │ ├── icon_useradmin_48.png │ │ │ └── useradmin-logo.png │ │ │ ├── css │ │ │ └── useradmin.css │ │ │ ├── help │ │ │ ├── images │ │ │ │ └── 23888159.png │ │ │ └── index.html │ │ │ └── less │ │ │ └── useradmin.less │ │ ├── templates │ │ ├── add_ldap_users.mako │ │ ├── change_password.mako │ │ ├── confirm.mako │ │ ├── edit_group.mako │ │ ├── edit_permissions.mako │ │ ├── edit_user.mako │ │ ├── layout.mako │ │ ├── list_configurations.mako │ │ ├── list_groups.mako │ │ ├── list_organizations.mako │ │ ├── list_permissions.mako │ │ ├── list_users.mako │ │ └── sync_ldap_users_groups.mako │ │ ├── test_ldap.py │ │ ├── test_ldap_deprecated.py │ │ ├── tests.py │ │ ├── tests_api.py │ │ ├── urls.py │ │ └── views.py └── zookeeper │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ └── zookeeper │ ├── __init__.py │ ├── conf.py │ ├── forms.py │ ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── en │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── en_US.pot │ ├── es │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ko │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── pt │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── django.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── django.po │ ├── models.py │ ├── rest.py │ ├── settings.py │ ├── static │ └── zookeeper │ │ ├── art │ │ ├── icon_zookeeper_24.png │ │ ├── icon_zookeeper_48.png │ │ └── line_icons.png │ │ ├── css │ │ └── zookeeper.css │ │ ├── help │ │ └── index.html │ │ └── js │ │ └── base64.js │ ├── stats.py │ ├── templates │ ├── clients.mako │ ├── create.mako │ ├── edit.mako │ ├── index.mako │ ├── shared_components.mako │ ├── tree.mako │ └── view.mako │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── babel.config.js ├── conftest.py ├── contributing-frontend.md ├── data ├── desktop ├── Makefile ├── conf.dist │ ├── gunicorn_log.conf │ ├── hue.ini │ ├── log.conf │ └── log4j.properties ├── conf │ ├── dev_log.conf │ ├── gunicorn_log.conf │ ├── log.conf │ └── pseudo-distributed.ini.tmpl ├── core │ ├── Makefile │ ├── __init__.py │ ├── babel.cfg │ ├── base_requirements.txt │ ├── ext-py3 │ │ ├── boto-2.49.0 │ │ │ ├── .gitignore │ │ │ ├── MANIFEST.in │ │ │ ├── PKG-INFO │ │ │ ├── README.rst │ │ │ ├── bin │ │ │ │ ├── asadmin │ │ │ │ ├── bundle_image │ │ │ │ ├── cfadmin │ │ │ │ ├── cq │ │ │ │ ├── cwutil │ │ │ │ ├── dynamodb_dump │ │ │ │ ├── dynamodb_load │ │ │ │ ├── elbadmin │ │ │ │ ├── fetch_file │ │ │ │ ├── glacier │ │ │ │ ├── instance_events │ │ │ │ ├── kill_instance │ │ │ │ ├── launch_instance │ │ │ │ ├── list_instances │ │ │ │ ├── lss3 │ │ │ │ ├── mturk │ │ │ │ ├── pyami_sendmail │ │ │ │ ├── route53 │ │ │ │ ├── s3put │ │ │ │ ├── sdbadmin │ │ │ │ └── taskadmin │ │ │ ├── boto │ │ │ │ ├── __init__.py │ │ │ │ ├── auth.py │ │ │ │ ├── auth_handler.py │ │ │ │ ├── awslambda │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── layer1.py │ │ │ │ ├── beanstalk │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exception.py │ │ │ │ │ ├── layer1.py │ │ │ │ │ ├── response.py │ │ │ │ │ └── wrapper.py │ │ │ │ ├── cacerts │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── cacerts.txt │ │ │ │ ├── cloudformation │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── stack.py │ │ │ │ │ └── template.py │ │ │ │ ├── cloudfront │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── distribution.py │ │ │ │ │ ├── exception.py │ │ │ │ │ ├── identity.py │ │ │ │ │ ├── invalidation.py │ │ │ │ │ ├── logging.py │ │ │ │ │ ├── object.py │ │ │ │ │ ├── origin.py │ │ │ │ │ └── signers.py │ │ │ │ ├── cloudhsm │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── layer1.py │ │ │ │ ├── cloudsearch │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── document.py │ │ │ │ │ ├── domain.py │ │ │ │ │ ├── layer1.py │ │ │ │ │ ├── layer2.py │ │ │ │ │ ├── optionstatus.py │ │ │ │ │ ├── search.py │ │ │ │ │ └── sourceattribute.py │ │ │ │ ├── cloudsearch2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── document.py │ │ │ │ │ ├── domain.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── layer1.py │ │ │ │ │ ├── layer2.py │ │ │ │ │ ├── optionstatus.py │ │ │ │ │ └── search.py │ │ │ │ ├── cloudsearchdomain │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── layer1.py │ │ │ │ ├── cloudtrail │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── layer1.py │ │ │ │ ├── codedeploy │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── layer1.py │ │ │ │ ├── cognito │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ └── layer1.py │ │ │ │ │ └── sync │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ └── layer1.py │ │ │ │ ├── compat.py │ │ │ │ ├── configservice │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── layer1.py │ │ │ │ ├── connection.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── ymlmessage.py │ │ │ │ ├── datapipeline │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── layer1.py │ │ │ │ ├── directconnect │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── layer1.py │ │ │ │ ├── dynamodb │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── batch.py │ │ │ │ │ ├── condition.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── item.py │ │ │ │ │ ├── layer1.py │ │ │ │ │ ├── layer2.py │ │ │ │ │ ├── schema.py │ │ │ │ │ ├── table.py │ │ │ │ │ └── types.py │ │ │ │ ├── dynamodb2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── fields.py │ │ │ │ │ ├── items.py │ │ │ │ │ ├── layer1.py │ │ │ │ │ ├── results.py │ │ │ │ │ ├── table.py │ │ │ │ │ └── types.py │ │ │ │ ├── ec2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── address.py │ │ │ │ │ ├── attributes.py │ │ │ │ │ ├── autoscale │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── activity.py │ │ │ │ │ │ ├── group.py │ │ │ │ │ │ ├── instance.py │ │ │ │ │ │ ├── launchconfig.py │ │ │ │ │ │ ├── limits.py │ │ │ │ │ │ ├── policy.py │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ ├── scheduled.py │ │ │ │ │ │ └── tag.py │ │ │ │ │ ├── blockdevicemapping.py │ │ │ │ │ ├── bundleinstance.py │ │ │ │ │ ├── buyreservation.py │ │ │ │ │ ├── cloudwatch │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── alarm.py │ │ │ │ │ │ ├── datapoint.py │ │ │ │ │ │ ├── dimension.py │ │ │ │ │ │ ├── listelement.py │ │ │ │ │ │ └── metric.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── ec2object.py │ │ │ │ │ ├── elb │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── attributes.py │ │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ │ ├── instancestate.py │ │ │ │ │ │ ├── listelement.py │ │ │ │ │ │ ├── listener.py │ │ │ │ │ │ ├── loadbalancer.py │ │ │ │ │ │ ├── policies.py │ │ │ │ │ │ └── securitygroup.py │ │ │ │ │ ├── group.py │ │ │ │ │ ├── image.py │ │ │ │ │ ├── instance.py │ │ │ │ │ ├── instanceinfo.py │ │ │ │ │ ├── instancestatus.py │ │ │ │ │ ├── instancetype.py │ │ │ │ │ ├── keypair.py │ │ │ │ │ ├── launchspecification.py │ │ │ │ │ ├── networkinterface.py │ │ │ │ │ ├── placementgroup.py │ │ │ │ │ ├── regioninfo.py │ │ │ │ │ ├── reservedinstance.py │ │ │ │ │ ├── securitygroup.py │ │ │ │ │ ├── snapshot.py │ │ │ │ │ ├── spotdatafeedsubscription.py │ │ │ │ │ ├── spotinstancerequest.py │ │ │ │ │ ├── spotpricehistory.py │ │ │ │ │ ├── tag.py │ │ │ │ │ ├── volume.py │ │ │ │ │ ├── volumestatus.py │ │ │ │ │ └── zone.py │ │ │ │ ├── ec2containerservice │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── layer1.py │ │ │ │ ├── ecs │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── item.py │ │ │ │ ├── elasticache │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── layer1.py │ │ │ │ ├── elastictranscoder │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── layer1.py │ │ │ │ ├── emr │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bootstrap_action.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── emrobject.py │ │ │ │ │ ├── instance_group.py │ │ │ │ │ └── step.py │ │ │ │ ├── endpoints.json │ │ │ │ ├── endpoints.py │ │ │ │ ├── exception.py │ │ │ │ ├── file │ │ │ │ │ ├── README │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bucket.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── key.py │ │ │ │ │ └── simpleresultset.py │ │ │ │ ├── fps │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── exception.py │ │ │ │ │ └── response.py │ │ │ │ ├── glacier │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── concurrent.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── job.py │ │ │ │ │ ├── layer1.py │ │ │ │ │ ├── layer2.py │ │ │ │ │ ├── response.py │ │ │ │ │ ├── utils.py │ │ │ │ │ ├── vault.py │ │ │ │ │ └── writer.py │ │ │ │ ├── gs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── acl.py │ │ │ │ │ ├── bucket.py │ │ │ │ │ ├── bucketlistresultset.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── cors.py │ │ │ │ │ ├── encryptionconfig.py │ │ │ │ │ ├── key.py │ │ │ │ │ ├── lifecycle.py │ │ │ │ │ ├── resumable_upload_handler.py │ │ │ │ │ └── user.py │ │ │ │ ├── handler.py │ │ │ │ ├── https_connection.py │ │ │ │ ├── iam │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ └── summarymap.py │ │ │ │ ├── jsonresponse.py │ │ │ │ ├── kinesis │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── layer1.py │ │ │ │ ├── kms │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── layer1.py │ │ │ │ ├── logs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── layer1.py │ │ │ │ ├── machinelearning │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── layer1.py │ │ │ │ ├── manage │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cmdshell.py │ │ │ │ │ ├── propget.py │ │ │ │ │ ├── server.py │ │ │ │ │ ├── task.py │ │ │ │ │ ├── test_manage.py │ │ │ │ │ └── volume.py │ │ │ │ ├── mashups │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── iobject.py │ │ │ │ │ ├── order.py │ │ │ │ │ └── server.py │ │ │ │ ├── mturk │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── layoutparam.py │ │ │ │ │ ├── notification.py │ │ │ │ │ ├── price.py │ │ │ │ │ ├── qualification.py │ │ │ │ │ └── question.py │ │ │ │ ├── mws │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── exception.py │ │ │ │ │ └── response.py │ │ │ │ ├── opsworks │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── layer1.py │ │ │ │ ├── plugin.py │ │ │ │ ├── provider.py │ │ │ │ ├── pyami │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bootstrap.py │ │ │ │ │ ├── config.py │ │ │ │ │ ├── copybot.cfg │ │ │ │ │ ├── copybot.py │ │ │ │ │ ├── helloworld.py │ │ │ │ │ ├── installers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── ubuntu │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── apache.py │ │ │ │ │ │ │ ├── ebs.py │ │ │ │ │ │ │ ├── installer.py │ │ │ │ │ │ │ ├── mysql.py │ │ │ │ │ │ │ └── trac.py │ │ │ │ │ ├── launch_ami.py │ │ │ │ │ ├── scriptbase.py │ │ │ │ │ └── startup.py │ │ │ │ ├── rds │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── dbinstance.py │ │ │ │ │ ├── dbsecuritygroup.py │ │ │ │ │ ├── dbsnapshot.py │ │ │ │ │ ├── dbsubnetgroup.py │ │ │ │ │ ├── event.py │ │ │ │ │ ├── logfile.py │ │ │ │ │ ├── optiongroup.py │ │ │ │ │ ├── parametergroup.py │ │ │ │ │ ├── regioninfo.py │ │ │ │ │ ├── statusinfo.py │ │ │ │ │ └── vpcsecuritygroupmembership.py │ │ │ │ ├── rds2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── layer1.py │ │ │ │ ├── redshift │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── layer1.py │ │ │ │ ├── regioninfo.py │ │ │ │ ├── requestlog.py │ │ │ │ ├── resultset.py │ │ │ │ ├── roboto │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── awsqueryrequest.py │ │ │ │ │ ├── awsqueryservice.py │ │ │ │ │ └── param.py │ │ │ │ ├── route53 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── domains │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ └── layer1.py │ │ │ │ │ ├── exception.py │ │ │ │ │ ├── healthcheck.py │ │ │ │ │ ├── hostedzone.py │ │ │ │ │ ├── record.py │ │ │ │ │ ├── status.py │ │ │ │ │ └── zone.py │ │ │ │ ├── s3 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── acl.py │ │ │ │ │ ├── bucket.py │ │ │ │ │ ├── bucketlistresultset.py │ │ │ │ │ ├── bucketlogging.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── cors.py │ │ │ │ │ ├── deletemarker.py │ │ │ │ │ ├── key.py │ │ │ │ │ ├── keyfile.py │ │ │ │ │ ├── lifecycle.py │ │ │ │ │ ├── multidelete.py │ │ │ │ │ ├── multipart.py │ │ │ │ │ ├── prefix.py │ │ │ │ │ ├── resumable_download_handler.py │ │ │ │ │ ├── tagging.py │ │ │ │ │ ├── user.py │ │ │ │ │ └── website.py │ │ │ │ ├── sdb │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── db │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── blob.py │ │ │ │ │ │ ├── key.py │ │ │ │ │ │ ├── manager │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── sdbmanager.py │ │ │ │ │ │ │ └── xmlmanager.py │ │ │ │ │ │ ├── model.py │ │ │ │ │ │ ├── property.py │ │ │ │ │ │ ├── query.py │ │ │ │ │ │ ├── sequence.py │ │ │ │ │ │ └── test_db.py │ │ │ │ │ ├── domain.py │ │ │ │ │ ├── item.py │ │ │ │ │ ├── queryresultset.py │ │ │ │ │ └── regioninfo.py │ │ │ │ ├── services │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bs.py │ │ │ │ │ ├── message.py │ │ │ │ │ ├── result.py │ │ │ │ │ ├── service.py │ │ │ │ │ ├── servicedef.py │ │ │ │ │ ├── sonofmmm.cfg │ │ │ │ │ ├── sonofmmm.py │ │ │ │ │ └── submit.py │ │ │ │ ├── ses │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ └── exceptions.py │ │ │ │ ├── sns │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── connection.py │ │ │ │ ├── sqs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── attributes.py │ │ │ │ │ ├── batchresults.py │ │ │ │ │ ├── bigmessage.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── jsonmessage.py │ │ │ │ │ ├── message.py │ │ │ │ │ ├── messageattributes.py │ │ │ │ │ ├── queue.py │ │ │ │ │ └── regioninfo.py │ │ │ │ ├── storage_uri.py │ │ │ │ ├── sts │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ └── credentials.py │ │ │ │ ├── support │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── layer1.py │ │ │ │ ├── swf │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── layer1.py │ │ │ │ │ ├── layer1_decisions.py │ │ │ │ │ └── layer2.py │ │ │ │ ├── utils.py │ │ │ │ ├── vendored │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── regions │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ └── regions.py │ │ │ │ │ └── six.py │ │ │ │ └── vpc │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── customergateway.py │ │ │ │ │ ├── dhcpoptions.py │ │ │ │ │ ├── internetgateway.py │ │ │ │ │ ├── networkacl.py │ │ │ │ │ ├── routetable.py │ │ │ │ │ ├── subnet.py │ │ │ │ │ ├── vpc.py │ │ │ │ │ ├── vpc_peering_connection.py │ │ │ │ │ ├── vpnconnection.py │ │ │ │ │ └── vpngateway.py │ │ │ ├── docs │ │ │ │ ├── BotoCheatSheet.pdf │ │ │ │ ├── Makefile │ │ │ │ ├── make.bat │ │ │ │ └── source │ │ │ │ │ ├── _templates │ │ │ │ │ └── page.html │ │ │ │ │ ├── apps_built_on_boto.rst │ │ │ │ │ ├── autoscale_tut.rst │ │ │ │ │ ├── boto_config_tut.rst │ │ │ │ │ ├── boto_theme │ │ │ │ │ ├── static │ │ │ │ │ │ ├── boto.css_t │ │ │ │ │ │ └── pygments.css │ │ │ │ │ └── theme.conf │ │ │ │ │ ├── cloudfront_tut.rst │ │ │ │ │ ├── cloudsearch_tut.rst │ │ │ │ │ ├── cloudwatch_tut.rst │ │ │ │ │ ├── commandline.rst │ │ │ │ │ ├── conf.py │ │ │ │ │ ├── contributing.rst │ │ │ │ │ ├── documentation.rst │ │ │ │ │ ├── dynamodb2_tut.rst │ │ │ │ │ ├── dynamodb_tut.rst │ │ │ │ │ ├── ec2_tut.rst │ │ │ │ │ ├── elb_tut.rst │ │ │ │ │ ├── emr_tut.rst │ │ │ │ │ ├── extensions │ │ │ │ │ └── githublinks │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── getting_started.rst │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── migrations │ │ │ │ │ ├── dynamodb_v1_to_v2.rst │ │ │ │ │ └── rds_v1_to_v2.rst │ │ │ │ │ ├── porting_guide.rst │ │ │ │ │ ├── rds_tut.rst │ │ │ │ │ ├── ref │ │ │ │ │ ├── autoscale.rst │ │ │ │ │ ├── awslamba.rst │ │ │ │ │ ├── beanstalk.rst │ │ │ │ │ ├── boto.rst │ │ │ │ │ ├── cloudformation.rst │ │ │ │ │ ├── cloudfront.rst │ │ │ │ │ ├── cloudhsm.rst │ │ │ │ │ ├── cloudsearch.rst │ │ │ │ │ ├── cloudsearch2.rst │ │ │ │ │ ├── cloudsearchdomain.rst │ │ │ │ │ ├── cloudtrail.rst │ │ │ │ │ ├── cloudwatch.rst │ │ │ │ │ ├── codedeploy.rst │ │ │ │ │ ├── cognito-identity.rst │ │ │ │ │ ├── cognito-sync.rst │ │ │ │ │ ├── configservice.rst │ │ │ │ │ ├── contrib.rst │ │ │ │ │ ├── datapipeline.rst │ │ │ │ │ ├── dynamodb.rst │ │ │ │ │ ├── dynamodb2.rst │ │ │ │ │ ├── ec2.rst │ │ │ │ │ ├── ec2containerservice.rst │ │ │ │ │ ├── ecs.rst │ │ │ │ │ ├── elasticache.rst │ │ │ │ │ ├── elastictranscoder.rst │ │ │ │ │ ├── elb.rst │ │ │ │ │ ├── emr.rst │ │ │ │ │ ├── file.rst │ │ │ │ │ ├── fps.rst │ │ │ │ │ ├── glacier.rst │ │ │ │ │ ├── gs.rst │ │ │ │ │ ├── iam.rst │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── kinesis.rst │ │ │ │ │ ├── kms.rst │ │ │ │ │ ├── logs.rst │ │ │ │ │ ├── machinelearning.rst │ │ │ │ │ ├── manage.rst │ │ │ │ │ ├── mturk.rst │ │ │ │ │ ├── mws.rst │ │ │ │ │ ├── opsworks.rst │ │ │ │ │ ├── pyami.rst │ │ │ │ │ ├── rds.rst │ │ │ │ │ ├── rds2.rst │ │ │ │ │ ├── redshift.rst │ │ │ │ │ ├── route53.rst │ │ │ │ │ ├── route53domains.rst │ │ │ │ │ ├── s3.rst │ │ │ │ │ ├── sdb.rst │ │ │ │ │ ├── sdb_db.rst │ │ │ │ │ ├── services.rst │ │ │ │ │ ├── ses.rst │ │ │ │ │ ├── sns.rst │ │ │ │ │ ├── sqs.rst │ │ │ │ │ ├── sts.rst │ │ │ │ │ ├── support.rst │ │ │ │ │ ├── swf.rst │ │ │ │ │ └── vpc.rst │ │ │ │ │ ├── releasenotes │ │ │ │ │ ├── 2.46.0.rst │ │ │ │ │ ├── dev.rst │ │ │ │ │ ├── releasenotes_template.rst │ │ │ │ │ ├── v2.0.0.rst │ │ │ │ │ ├── v2.0b1.rst │ │ │ │ │ ├── v2.1.0.rst │ │ │ │ │ ├── v2.1.1.rst │ │ │ │ │ ├── v2.10.0.rst │ │ │ │ │ ├── v2.11.0.rst │ │ │ │ │ ├── v2.12.0.rst │ │ │ │ │ ├── v2.13.0.rst │ │ │ │ │ ├── v2.13.2.rst │ │ │ │ │ ├── v2.13.3.rst │ │ │ │ │ ├── v2.14.0.rst │ │ │ │ │ ├── v2.15.0.rst │ │ │ │ │ ├── v2.16.0.rst │ │ │ │ │ ├── v2.17.0.rst │ │ │ │ │ ├── v2.18.0.rst │ │ │ │ │ ├── v2.19.0.rst │ │ │ │ │ ├── v2.2.0.rst │ │ │ │ │ ├── v2.2.1.rst │ │ │ │ │ ├── v2.2.2.rst │ │ │ │ │ ├── v2.20.0.rst │ │ │ │ │ ├── v2.20.1.rst │ │ │ │ │ ├── v2.21.0.rst │ │ │ │ │ ├── v2.21.1.rst │ │ │ │ │ ├── v2.21.2.rst │ │ │ │ │ ├── v2.22.0.rst │ │ │ │ │ ├── v2.22.1.rst │ │ │ │ │ ├── v2.23.0.rst │ │ │ │ │ ├── v2.24.0.rst │ │ │ │ │ ├── v2.25.0.rst │ │ │ │ │ ├── v2.26.0.rst │ │ │ │ │ ├── v2.26.1.rst │ │ │ │ │ ├── v2.27.0.rst │ │ │ │ │ ├── v2.28.0.rst │ │ │ │ │ ├── v2.29.0.rst │ │ │ │ │ ├── v2.29.1.rst │ │ │ │ │ ├── v2.3.0.rst │ │ │ │ │ ├── v2.30.0.rst │ │ │ │ │ ├── v2.31.0.rst │ │ │ │ │ ├── v2.31.1.rst │ │ │ │ │ ├── v2.32.0.rst │ │ │ │ │ ├── v2.32.1.rst │ │ │ │ │ ├── v2.33.0.rst │ │ │ │ │ ├── v2.34.0.rst │ │ │ │ │ ├── v2.35.0.rst │ │ │ │ │ ├── v2.35.1.rst │ │ │ │ │ ├── v2.35.2.rst │ │ │ │ │ ├── v2.36.0.rst │ │ │ │ │ ├── v2.37.0.rst │ │ │ │ │ ├── v2.38.0.rst │ │ │ │ │ ├── v2.39.0.rst │ │ │ │ │ ├── v2.4.0.rst │ │ │ │ │ ├── v2.40.0.rst │ │ │ │ │ ├── v2.41.0.rst │ │ │ │ │ ├── v2.42.0.rst │ │ │ │ │ ├── v2.43.0.rst │ │ │ │ │ ├── v2.44.0.rst │ │ │ │ │ ├── v2.45.0.rst │ │ │ │ │ ├── v2.46.1.rst │ │ │ │ │ ├── v2.47.0.rst │ │ │ │ │ ├── v2.48.0.rst │ │ │ │ │ ├── v2.49.0.rst │ │ │ │ │ ├── v2.5.0.rst │ │ │ │ │ ├── v2.5.1.rst │ │ │ │ │ ├── v2.5.2.rst │ │ │ │ │ ├── v2.6.0.rst │ │ │ │ │ ├── v2.7.0.rst │ │ │ │ │ ├── v2.8.0.rst │ │ │ │ │ ├── v2.9.0.rst │ │ │ │ │ ├── v2.9.1.rst │ │ │ │ │ ├── v2.9.2.rst │ │ │ │ │ ├── v2.9.3.rst │ │ │ │ │ ├── v2.9.4.rst │ │ │ │ │ ├── v2.9.5.rst │ │ │ │ │ ├── v2.9.6.rst │ │ │ │ │ ├── v2.9.7.rst │ │ │ │ │ ├── v2.9.8.rst │ │ │ │ │ └── v2.9.9.rst │ │ │ │ │ ├── request_hook_tut.rst │ │ │ │ │ ├── route53_tut.rst │ │ │ │ │ ├── s3_tut.rst │ │ │ │ │ ├── security_groups.rst │ │ │ │ │ ├── ses_tut.rst │ │ │ │ │ ├── simpledb_tut.rst │ │ │ │ │ ├── sqs_tut.rst │ │ │ │ │ ├── support_tut.rst │ │ │ │ │ ├── swf_tut.rst │ │ │ │ │ └── vpc_tut.rst │ │ │ ├── pylintrc │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── compat.py │ │ │ │ ├── db │ │ │ │ ├── test_lists.py │ │ │ │ ├── test_password.py │ │ │ │ ├── test_query.py │ │ │ │ └── test_sequence.py │ │ │ │ ├── devpay │ │ │ │ ├── __init__.py │ │ │ │ └── test_s3.py │ │ │ │ ├── fps │ │ │ │ ├── __init__.py │ │ │ │ ├── test.py │ │ │ │ └── test_verify_signature.py │ │ │ │ ├── integration │ │ │ │ ├── __init__.py │ │ │ │ ├── awslambda │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_awslambda.py │ │ │ │ ├── beanstalk │ │ │ │ │ └── test_wrapper.py │ │ │ │ ├── cloudformation │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ └── test_connection.py │ │ │ │ ├── cloudhsm │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_cloudhsm.py │ │ │ │ ├── cloudsearch │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ └── test_layers.py │ │ │ │ ├── cloudsearch2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ └── test_layers.py │ │ │ │ ├── cloudtrail │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ └── test_cloudtrail.py │ │ │ │ ├── codedeploy │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_codedeploy.py │ │ │ │ ├── cognito │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── test_cognito_identity.py │ │ │ │ │ └── sync │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── test_cognito_sync.py │ │ │ │ ├── configservice │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_configservice.py │ │ │ │ ├── datapipeline │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ └── test_layer1.py │ │ │ │ ├── directconnect │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_directconnect.py │ │ │ │ ├── dynamodb │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ ├── test_layer1.py │ │ │ │ │ ├── test_layer2.py │ │ │ │ │ └── test_table.py │ │ │ │ ├── dynamodb2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forum_test_data.json │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ ├── test_highlevel.py │ │ │ │ │ └── test_layer1.py │ │ │ │ ├── ec2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── autoscale │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ │ └── test_connection.py │ │ │ │ │ ├── cloudwatch │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ │ └── test_connection.py │ │ │ │ │ ├── elb │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ │ └── test_connection.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ ├── test_connection.py │ │ │ │ │ └── vpc │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── test_connection.py │ │ │ │ ├── ec2containerservice │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_ec2containerservice.py │ │ │ │ ├── elasticache │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_layer1.py │ │ │ │ ├── elastictranscoder │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ └── test_layer1.py │ │ │ │ ├── emr │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_cert_verification.py │ │ │ │ ├── glacier │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ ├── test_layer1.py │ │ │ │ │ └── test_layer2.py │ │ │ │ ├── gs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cb_test_harness.py │ │ │ │ │ ├── test_basic.py │ │ │ │ │ ├── test_generation_conditionals.py │ │ │ │ │ ├── test_resumable_downloads.py │ │ │ │ │ ├── test_resumable_uploads.py │ │ │ │ │ ├── test_storage_uri.py │ │ │ │ │ ├── test_versioning.py │ │ │ │ │ ├── testcase.py │ │ │ │ │ └── util.py │ │ │ │ ├── iam │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ ├── test_connection.py │ │ │ │ │ ├── test_password_policy.py │ │ │ │ │ └── test_policy.py │ │ │ │ ├── kinesis │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ └── test_kinesis.py │ │ │ │ ├── kms │ │ │ │ │ └── test_kms.py │ │ │ │ ├── logs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ └── test_layer1.py │ │ │ │ ├── mws │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test.py │ │ │ │ ├── opsworks │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_layer1.py │ │ │ │ ├── rds │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ ├── test_db_subnet_group.py │ │ │ │ │ └── test_promote_modify.py │ │ │ │ ├── rds2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ └── test_connection.py │ │ │ │ ├── redshift │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ └── test_layer1.py │ │ │ │ ├── route53 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── domains │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── test_route53domains.py │ │ │ │ │ ├── test_alias_resourcerecordsets.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ ├── test_health_check.py │ │ │ │ │ ├── test_resourcerecordsets.py │ │ │ │ │ └── test_zone.py │ │ │ │ ├── s3 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── mock_storage_service.py │ │ │ │ │ ├── other_cacerts.txt │ │ │ │ │ ├── test_bucket.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ ├── test_connect_to_region.py │ │ │ │ │ ├── test_connection.py │ │ │ │ │ ├── test_cors.py │ │ │ │ │ ├── test_encryption.py │ │ │ │ │ ├── test_https_cert_validation.py │ │ │ │ │ ├── test_key.py │ │ │ │ │ ├── test_mfa.py │ │ │ │ │ ├── test_multidelete.py │ │ │ │ │ ├── test_multipart.py │ │ │ │ │ ├── test_pool.py │ │ │ │ │ └── test_versioning.py │ │ │ │ ├── sdb │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ └── test_connection.py │ │ │ │ ├── ses │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ └── test_connection.py │ │ │ │ ├── sns │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ ├── test_connection.py │ │ │ │ │ └── test_sns_sqs_subscription.py │ │ │ │ ├── sqs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_bigmessage.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ └── test_connection.py │ │ │ │ ├── storage_uri │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_storage_uri.py │ │ │ │ ├── sts │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ └── test_session_token.py │ │ │ │ ├── support │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ └── test_layer1.py │ │ │ │ └── swf │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_cert_verification.py │ │ │ │ │ ├── test_layer1.py │ │ │ │ │ └── test_layer1_workflow_execution.py │ │ │ │ ├── mturk │ │ │ │ ├── __init__.py │ │ │ │ ├── _init_environment.py │ │ │ │ ├── all_tests.py │ │ │ │ ├── cleanup_tests.py │ │ │ │ ├── common.py │ │ │ │ ├── create_hit_external.py │ │ │ │ ├── create_hit_test.py │ │ │ │ ├── create_hit_with_qualifications.py │ │ │ │ ├── hit_persistence.py │ │ │ │ ├── mocks.py │ │ │ │ ├── run-doctest.py │ │ │ │ ├── selenium_support.py │ │ │ │ ├── support.py │ │ │ │ └── test_disable_hit.py │ │ │ │ ├── test.py │ │ │ │ └── unit │ │ │ │ ├── __init__.py │ │ │ │ ├── auth │ │ │ │ ├── __init__.py │ │ │ │ ├── test_sigv4.py │ │ │ │ └── test_stsanon.py │ │ │ │ ├── awslambda │ │ │ │ ├── __init__.py │ │ │ │ └── test_awslambda.py │ │ │ │ ├── beanstalk │ │ │ │ ├── __init__.py │ │ │ │ ├── test_exception.py │ │ │ │ └── test_layer1.py │ │ │ │ ├── cloudformation │ │ │ │ ├── __init__.py │ │ │ │ ├── test_connection.py │ │ │ │ └── test_stack.py │ │ │ │ ├── cloudfront │ │ │ │ ├── __init__.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_distribution.py │ │ │ │ ├── test_invalidation.py │ │ │ │ ├── test_invalidation_list.py │ │ │ │ └── test_signed_urls.py │ │ │ │ ├── cloudsearch │ │ │ │ ├── __init__.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_document.py │ │ │ │ ├── test_exceptions.py │ │ │ │ └── test_search.py │ │ │ │ ├── cloudsearch2 │ │ │ │ ├── __init__.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_document.py │ │ │ │ ├── test_exceptions.py │ │ │ │ └── test_search.py │ │ │ │ ├── cloudsearchdomain │ │ │ │ ├── __init__.py │ │ │ │ └── test_cloudsearchdomain.py │ │ │ │ ├── cloudtrail │ │ │ │ ├── __init__.py │ │ │ │ └── test_layer1.py │ │ │ │ ├── data │ │ │ │ ├── new_endpoints.json │ │ │ │ └── old_endpoints.json │ │ │ │ ├── directconnect │ │ │ │ ├── __init__.py │ │ │ │ └── test_layer1.py │ │ │ │ ├── dynamodb │ │ │ │ ├── __init__.py │ │ │ │ ├── test_batch.py │ │ │ │ ├── test_layer2.py │ │ │ │ └── test_types.py │ │ │ │ ├── dynamodb2 │ │ │ │ ├── __init__.py │ │ │ │ ├── test_layer1.py │ │ │ │ └── test_table.py │ │ │ │ ├── ec2 │ │ │ │ ├── __init__.py │ │ │ │ ├── autoscale │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_group.py │ │ │ │ ├── cloudwatch │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_connection.py │ │ │ │ ├── elb │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_attribute.py │ │ │ │ │ ├── test_listener.py │ │ │ │ │ └── test_loadbalancer.py │ │ │ │ ├── test_address.py │ │ │ │ ├── test_blockdevicemapping.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_ec2object.py │ │ │ │ ├── test_instance.py │ │ │ │ ├── test_instancestatus.py │ │ │ │ ├── test_instancetype.py │ │ │ │ ├── test_networkinterface.py │ │ │ │ ├── test_reservedinstance.py │ │ │ │ ├── test_securitygroup.py │ │ │ │ ├── test_snapshot.py │ │ │ │ ├── test_spotinstance.py │ │ │ │ └── test_volume.py │ │ │ │ ├── ec2containerservice │ │ │ │ ├── __init__.py │ │ │ │ └── test_connection.py │ │ │ │ ├── ecs │ │ │ │ ├── __init__.py │ │ │ │ └── test_connection.py │ │ │ │ ├── elasticache │ │ │ │ ├── __init__.py │ │ │ │ └── test_api_interface.py │ │ │ │ ├── emr │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_emr_responses.py │ │ │ │ └── test_instance_group_args.py │ │ │ │ ├── glacier │ │ │ │ ├── __init__.py │ │ │ │ ├── test_concurrent.py │ │ │ │ ├── test_job.py │ │ │ │ ├── test_layer1.py │ │ │ │ ├── test_layer2.py │ │ │ │ ├── test_response.py │ │ │ │ ├── test_utils.py │ │ │ │ ├── test_vault.py │ │ │ │ └── test_writer.py │ │ │ │ ├── iam │ │ │ │ ├── __init__.py │ │ │ │ ├── test_connection.py │ │ │ │ └── test_policy.py │ │ │ │ ├── kinesis │ │ │ │ ├── __init__.py │ │ │ │ └── test_kinesis.py │ │ │ │ ├── kms │ │ │ │ ├── __init__.py │ │ │ │ └── test_kms.py │ │ │ │ ├── logs │ │ │ │ ├── __init__.py │ │ │ │ └── test_layer1.py │ │ │ │ ├── machinelearning │ │ │ │ ├── __init__.py │ │ │ │ └── test_machinelearning.py │ │ │ │ ├── manage │ │ │ │ ├── __init__.py │ │ │ │ └── test_ssh.py │ │ │ │ ├── mturk │ │ │ │ ├── __init__.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_locale_qualification_in.py │ │ │ │ ├── test_locale_qualification_notin.py │ │ │ │ ├── test_qualification_doesnotexist.py │ │ │ │ ├── test_qualification_exists.py │ │ │ │ └── test_qualification_qualtypewithscore_in.py │ │ │ │ ├── mws │ │ │ │ ├── __init__.py │ │ │ │ ├── test_connection.py │ │ │ │ └── test_response.py │ │ │ │ ├── provider │ │ │ │ ├── __init__.py │ │ │ │ └── test_provider.py │ │ │ │ ├── pyami │ │ │ │ ├── __init__.py │ │ │ │ └── test_config.py │ │ │ │ ├── rds │ │ │ │ ├── __init__.py │ │ │ │ ├── test_connection.py │ │ │ │ └── test_snapshot.py │ │ │ │ ├── rds2 │ │ │ │ ├── __init__.py │ │ │ │ └── test_connection.py │ │ │ │ ├── route53 │ │ │ │ ├── __init__.py │ │ │ │ ├── test_connection.py │ │ │ │ └── test_zone.py │ │ │ │ ├── s3 │ │ │ │ ├── __init__.py │ │ │ │ ├── test_bucket.py │ │ │ │ ├── test_bucketlistresultset.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_cors_configuration.py │ │ │ │ ├── test_key.py │ │ │ │ ├── test_keyfile.py │ │ │ │ ├── test_lifecycle.py │ │ │ │ ├── test_tagging.py │ │ │ │ ├── test_uri.py │ │ │ │ └── test_website.py │ │ │ │ ├── ses │ │ │ │ ├── __init__.py │ │ │ │ └── test_identity.py │ │ │ │ ├── sns │ │ │ │ ├── __init__.py │ │ │ │ └── test_connection.py │ │ │ │ ├── sqs │ │ │ │ ├── __init__.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_message.py │ │ │ │ └── test_queue.py │ │ │ │ ├── sts │ │ │ │ ├── __init__.py │ │ │ │ ├── test_connection.py │ │ │ │ └── test_credentials.py │ │ │ │ ├── swf │ │ │ │ ├── __init__.py │ │ │ │ ├── test_layer1_decisions.py │ │ │ │ ├── test_layer2_actors.py │ │ │ │ ├── test_layer2_base.py │ │ │ │ ├── test_layer2_domain.py │ │ │ │ └── test_layer2_types.py │ │ │ │ ├── test_connect_to_region.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_endpoints.json │ │ │ │ ├── test_endpoints.py │ │ │ │ ├── test_exception.py │ │ │ │ ├── test_regioninfo.py │ │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ └── test_utils.py │ │ │ │ └── vpc │ │ │ │ ├── __init__.py │ │ │ │ ├── test_customergateway.py │ │ │ │ ├── test_dhcpoptions.py │ │ │ │ ├── test_internetgateway.py │ │ │ │ ├── test_networkacl.py │ │ │ │ ├── test_routetable.py │ │ │ │ ├── test_subnet.py │ │ │ │ ├── test_vpc.py │ │ │ │ ├── test_vpc_peering_connection.py │ │ │ │ ├── test_vpnconnection.py │ │ │ │ └── test_vpngateway.py │ │ ├── django-axes-5.13.0 │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ ├── release.yml │ │ │ │ │ └── test.yml │ │ │ ├── .gitignore │ │ │ ├── .prospector.yaml │ │ │ ├── CHANGES.rst │ │ │ ├── LICENSE │ │ │ ├── PKG-INFO │ │ │ ├── README.rst │ │ │ ├── axes │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── attempts.py │ │ │ │ ├── backends.py │ │ │ │ ├── checks.py │ │ │ │ ├── conf.py │ │ │ │ ├── decorators.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── handlers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── database.py │ │ │ │ │ ├── dummy.py │ │ │ │ │ ├── proxy.py │ │ │ │ │ └── test.py │ │ │ │ ├── helpers.py │ │ │ │ ├── locale │ │ │ │ │ ├── de │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── ru │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ │ └── django.po │ │ │ │ │ └── tr │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── management │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── commands │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── axes_list_attempts.py │ │ │ │ │ │ ├── axes_reset.py │ │ │ │ │ │ ├── axes_reset_ip.py │ │ │ │ │ │ ├── axes_reset_logs.py │ │ │ │ │ │ ├── axes_reset_user.py │ │ │ │ │ │ └── axes_reset_username.py │ │ │ │ ├── middleware.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── 0002_auto_20151217_2044.py │ │ │ │ │ ├── 0003_auto_20160322_0929.py │ │ │ │ │ ├── 0004_auto_20181024_1538.py │ │ │ │ │ ├── 0005_remove_accessattempt_trusted.py │ │ │ │ │ ├── 0006_remove_accesslog_trusted.py │ │ │ │ │ ├── 0007_add_accesslog_trusted.py │ │ │ │ │ ├── 0008_remove_accesslog_trusted.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── models.py │ │ │ │ ├── signals.py │ │ │ │ └── utils.py │ │ │ ├── codecov.yml │ │ │ ├── docs │ │ │ │ ├── 10_changelog.rst │ │ │ │ ├── 1_requirements.rst │ │ │ │ ├── 2_installation.rst │ │ │ │ ├── 3_usage.rst │ │ │ │ ├── 4_configuration.rst │ │ │ │ ├── 5_customization.rst │ │ │ │ ├── 6_integration.rst │ │ │ │ ├── 7_architecture.rst │ │ │ │ ├── 8_reference.rst │ │ │ │ ├── 9_development.rst │ │ │ │ ├── Makefile │ │ │ │ ├── conf.py │ │ │ │ ├── images │ │ │ │ │ └── flow.png │ │ │ │ └── index.rst │ │ │ ├── manage.py │ │ │ ├── mypy.ini │ │ │ ├── requirements-qa.txt │ │ │ ├── requirements-test.txt │ │ │ ├── requirements.txt │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── settings.py │ │ │ │ ├── test_admin.py │ │ │ │ ├── test_attempts.py │ │ │ │ ├── test_backends.py │ │ │ │ ├── test_checks.py │ │ │ │ ├── test_decorators.py │ │ │ │ ├── test_handlers.py │ │ │ │ ├── test_helpers.py │ │ │ │ ├── test_logging.py │ │ │ │ ├── test_login.py │ │ │ │ ├── test_management.py │ │ │ │ ├── test_middleware.py │ │ │ │ ├── test_models.py │ │ │ │ ├── test_signals.py │ │ │ │ ├── urls.py │ │ │ │ └── urls_empty.py │ │ ├── django-babel │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.rst │ │ │ ├── COPYING │ │ │ ├── MANIFEST.in │ │ │ ├── README.rst │ │ │ ├── django_babel │ │ │ │ ├── __init__.py │ │ │ │ ├── extract.py │ │ │ │ ├── management │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── commands │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── babel.py │ │ │ │ ├── middleware.py │ │ │ │ └── templatetags │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── babel.py │ │ │ ├── docs │ │ │ │ ├── Makefile │ │ │ │ ├── conf.py │ │ │ │ ├── extract.rst │ │ │ │ ├── index.rst │ │ │ │ ├── make.bat │ │ │ │ ├── management-commands.rst │ │ │ │ ├── middleware.rst │ │ │ │ └── template-tags.rst │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ ├── tests │ │ │ │ ├── babel.cfg │ │ │ │ ├── conftest.py │ │ │ │ ├── test_command.py │ │ │ │ ├── test_extract.py │ │ │ │ ├── test_render.py │ │ │ │ └── testproject │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── locale │ │ │ │ │ ├── en │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ └── fi │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ │ ├── settings.py │ │ │ │ │ ├── templates │ │ │ │ │ └── test.txt │ │ │ │ │ └── urls.py │ │ │ └── tox.ini │ │ ├── pysaml2-7.3.1 │ │ │ ├── LICENSE │ │ │ ├── PKG-INFO │ │ │ ├── README.md │ │ │ ├── pyproject.toml │ │ │ ├── setup.py │ │ │ └── src │ │ │ │ ├── saml2 │ │ │ │ ├── __init__.py │ │ │ │ ├── algsupport.py │ │ │ │ ├── argtree.py │ │ │ │ ├── assertion.py │ │ │ │ ├── attribute_converter.py │ │ │ │ ├── attribute_resolver.py │ │ │ │ ├── attributemaps │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── adfs_v1x.py │ │ │ │ │ ├── adfs_v20.py │ │ │ │ │ ├── basic.py │ │ │ │ │ ├── saml_uri.py │ │ │ │ │ └── shibboleth_uri.py │ │ │ │ ├── authn.py │ │ │ │ ├── authn_context │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ippword.py │ │ │ │ │ ├── mobiletwofactor.py │ │ │ │ │ ├── ppt.py │ │ │ │ │ ├── pword.py │ │ │ │ │ ├── sslcert.py │ │ │ │ │ └── timesync.py │ │ │ │ ├── cache.py │ │ │ │ ├── cert.py │ │ │ │ ├── client.py │ │ │ │ ├── client_base.py │ │ │ │ ├── config.py │ │ │ │ ├── country_codes.py │ │ │ │ ├── cryptography │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── asymmetric.py │ │ │ │ │ ├── errors.py │ │ │ │ │ ├── pki.py │ │ │ │ │ └── symmetric.py │ │ │ │ ├── data │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── schemas │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── eidas-schema-attribute-legalperson.xsd │ │ │ │ │ │ ├── eidas-schema-attribute-naturalperson.xsd │ │ │ │ │ │ ├── eidas-schema-metadata-servicelist.xsd │ │ │ │ │ │ ├── eidas-schema-saml-extensions.xsd │ │ │ │ │ │ ├── envelope.xsd │ │ │ │ │ │ ├── saml-schema-assertion-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-auth-telephony-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-ip-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-ippword-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-kerberos-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-mobileonefactor-reg-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-mobileonefactor-unreg-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-mobiletwofactor-reg-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-mobiletwofactor-unreg-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-nomad-telephony-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-personal-telephony-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-pgp-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-ppt-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-pword-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-session-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-smartcard-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-smartcardpki-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-softwarepki-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-spki-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-srp-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-sslcert-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-telephony-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-timesync-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-types-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-x509-2.0.xsd │ │ │ │ │ │ ├── saml-schema-authn-context-xmldsig-2.0.xsd │ │ │ │ │ │ ├── saml-schema-dce-2.0.xsd │ │ │ │ │ │ ├── saml-schema-ecp-2.0.xsd │ │ │ │ │ │ ├── saml-schema-metadata-2.0.xsd │ │ │ │ │ │ ├── saml-schema-protocol-2.0.xsd │ │ │ │ │ │ ├── saml-schema-x500-2.0.xsd │ │ │ │ │ │ ├── saml-schema-xacml-2.0.xsd │ │ │ │ │ │ ├── saml-subject-id-attr-v1.0.xsd │ │ │ │ │ │ ├── sstc-metadata-attr.xsd │ │ │ │ │ │ ├── sstc-req-attr-ext.xsd │ │ │ │ │ │ ├── sstc-saml-attribute-ext.xsd │ │ │ │ │ │ ├── sstc-saml-metadata-algsupport-v1.0.xsd │ │ │ │ │ │ ├── sstc-saml-metadata-ui-v1.0.xsd │ │ │ │ │ │ ├── xenc-schema.xsd │ │ │ │ │ │ ├── xml.xsd │ │ │ │ │ │ └── xmldsig-core-schema.xsd │ │ │ │ │ └── templates │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── template_enc.xml │ │ │ │ ├── discovery.py │ │ │ │ ├── ecp.py │ │ │ │ ├── ecp_client.py │ │ │ │ ├── entity.py │ │ │ │ ├── entity_category │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── at_egov_pvp2.py │ │ │ │ │ ├── edugain.py │ │ │ │ │ ├── incommon.py │ │ │ │ │ ├── refeds.py │ │ │ │ │ └── swamid.py │ │ │ │ ├── eptid.py │ │ │ │ ├── extension │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── algsupport.py │ │ │ │ │ ├── dri.py │ │ │ │ │ ├── idpdisc.py │ │ │ │ │ ├── mdattr.py │ │ │ │ │ ├── mdrpi.py │ │ │ │ │ ├── mdui.py │ │ │ │ │ ├── pefim.py │ │ │ │ │ ├── reqinit.py │ │ │ │ │ ├── requested_attributes.py │ │ │ │ │ ├── shibmd.py │ │ │ │ │ └── sp_type.py │ │ │ │ ├── filter.py │ │ │ │ ├── httpbase.py │ │ │ │ ├── httputil.py │ │ │ │ ├── ident.py │ │ │ │ ├── mcache.py │ │ │ │ ├── md.py │ │ │ │ ├── mdbcache.py │ │ │ │ ├── mdie.py │ │ │ │ ├── mdstore.py │ │ │ │ ├── metadata.py │ │ │ │ ├── mongo_store.py │ │ │ │ ├── pack.py │ │ │ │ ├── population.py │ │ │ │ ├── profile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ecp.py │ │ │ │ │ ├── paos.py │ │ │ │ │ └── samlec.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── s2repoze │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── plugins │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── challenge_decider.py │ │ │ │ │ │ ├── entitlement.py │ │ │ │ │ │ ├── formswithhidden.py │ │ │ │ │ │ ├── ini.py │ │ │ │ │ │ └── sp.py │ │ │ │ ├── s_utils.py │ │ │ │ ├── saml.py │ │ │ │ ├── samlp.py │ │ │ │ ├── schema │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── soap.py │ │ │ │ │ ├── soapenv.py │ │ │ │ │ └── wsdl.py │ │ │ │ ├── sdb.py │ │ │ │ ├── server.py │ │ │ │ ├── sigver.py │ │ │ │ ├── soap.py │ │ │ │ ├── time_util.py │ │ │ │ ├── tools │ │ │ │ │ ├── make_metadata.py │ │ │ │ │ ├── mdexport.py │ │ │ │ │ ├── mdexport_test.py │ │ │ │ │ ├── mdimport.py │ │ │ │ │ ├── merge_metadata.py │ │ │ │ │ ├── parse_xsd2.py │ │ │ │ │ ├── sync_attrmaps.py │ │ │ │ │ ├── update_metadata.sh │ │ │ │ │ └── verify_metadata.py │ │ │ │ ├── userinfo │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── ldapinfo.py │ │ │ │ ├── validate.py │ │ │ │ ├── version.py │ │ │ │ ├── virtual_org.py │ │ │ │ ├── ws │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── wsaddr.py │ │ │ │ │ ├── wspol.py │ │ │ │ │ ├── wssec.py │ │ │ │ │ ├── wstrust.py │ │ │ │ │ └── wsutil.py │ │ │ │ ├── xml │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── schema │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── xmldsig │ │ │ │ │ └── __init__.py │ │ │ │ └── xmlenc │ │ │ │ │ └── __init__.py │ │ │ │ ├── saml2test │ │ │ │ ├── __init__.py │ │ │ │ ├── check.py │ │ │ │ ├── interaction.py │ │ │ │ ├── opfunc.py │ │ │ │ ├── status.py │ │ │ │ └── tool.py │ │ │ │ └── utility │ │ │ │ ├── __init__.py │ │ │ │ └── metadata.py │ │ └── python-sasl-0.3.1 │ │ │ ├── .gitignore │ │ │ ├── LICENSE.txt │ │ │ ├── MANIFEST.in │ │ │ ├── build-dists.sh │ │ │ ├── io │ │ │ └── manylinux │ │ │ │ └── build.sh │ │ │ ├── pyproject.toml │ │ │ ├── recython.sh │ │ │ ├── sasl │ │ │ ├── __init__.py │ │ │ ├── saslwrapper.h │ │ │ └── saslwrapper.pyx │ │ │ └── setup.py │ ├── generate_requirements.py │ ├── generate_requirements_test.py │ ├── hueversion.py │ ├── regenerate_thrift.sh │ ├── setup.py │ ├── src │ │ └── desktop │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── api.py │ │ │ ├── api2.py │ │ │ ├── api2_tests.py │ │ │ ├── api_public.py │ │ │ ├── api_public_tests.py │ │ │ ├── api_public_urls_v1.py │ │ │ ├── api_tests.py │ │ │ ├── app_template │ │ │ ├── Makefile │ │ │ ├── setup.py │ │ │ └── src │ │ │ │ └── app_name │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── models.py │ │ │ │ ├── settings.py │ │ │ │ ├── static │ │ │ │ └── app_name │ │ │ │ │ ├── art │ │ │ │ │ ├── app_name.png │ │ │ │ │ ├── icon_app_name_24.png │ │ │ │ │ └── icon_app_name_48.png │ │ │ │ │ ├── css │ │ │ │ │ └── app_name.css │ │ │ │ │ ├── help │ │ │ │ │ └── index.md │ │ │ │ │ └── js │ │ │ │ │ └── app_name.js │ │ │ │ ├── templates │ │ │ │ ├── index.mako │ │ │ │ └── shared_components.mako │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── app_template_proxy │ │ │ ├── Makefile │ │ │ ├── setup.py │ │ │ └── src │ │ │ │ └── app_name │ │ │ │ ├── __init__.py │ │ │ │ ├── conf.py │ │ │ │ ├── forms.py │ │ │ │ ├── models.py │ │ │ │ ├── settings.py │ │ │ │ ├── static │ │ │ │ └── app_name │ │ │ │ │ ├── art │ │ │ │ │ ├── app_name.png │ │ │ │ │ ├── icon_app_name_24.png │ │ │ │ │ └── icon_app_name_48.png │ │ │ │ │ └── help │ │ │ │ │ └── index.md │ │ │ │ ├── templates │ │ │ │ └── index.mako │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── appmanager.py │ │ │ ├── asgi.py │ │ │ ├── auth │ │ │ ├── __init__.py │ │ │ ├── api_authentications.py │ │ │ ├── api_authentications_tests.py │ │ │ ├── api_permissions.py │ │ │ ├── backend.py │ │ │ ├── backend_tests.py │ │ │ ├── decorators.py │ │ │ ├── decorators_tests.py │ │ │ ├── forms.py │ │ │ ├── views.py │ │ │ └── views_test.py │ │ │ ├── celery.py │ │ │ ├── cm_environment.py │ │ │ ├── conf.py │ │ │ ├── configuration │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ └── tests.py │ │ │ ├── context_processors.py │ │ │ ├── converter_tests.py │ │ │ ├── converters.py │ │ │ ├── decorators.py │ │ │ ├── hue_curl.py │ │ │ ├── hue_shared.py │ │ │ ├── js │ │ │ ├── api │ │ │ │ ├── apiHelper.js │ │ │ │ ├── apiQueueManager.js │ │ │ │ ├── apiUtils.js │ │ │ │ ├── apiUtils.test.js │ │ │ │ ├── auth.ts │ │ │ │ ├── cancellableJqPromise.ts │ │ │ │ ├── cancellablePromise.test.ts │ │ │ │ ├── cancellablePromise.ts │ │ │ │ ├── urls.js │ │ │ │ └── utils.ts │ │ │ ├── apps │ │ │ │ ├── about │ │ │ │ │ └── components │ │ │ │ │ │ └── ko.connectorsConfig.js │ │ │ │ ├── admin │ │ │ │ │ ├── AdminHeader.scss │ │ │ │ │ ├── AdminHeader.test.tsx │ │ │ │ │ ├── AdminHeader.tsx │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── HighlightText.tsx │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── Configuration │ │ │ │ │ │ ├── Configuration.scss │ │ │ │ │ │ ├── ConfigurationKey.tsx │ │ │ │ │ │ ├── ConfigurationTab.test.tsx │ │ │ │ │ │ ├── ConfigurationTab.tsx │ │ │ │ │ │ └── ConfigurationValue.tsx │ │ │ │ │ ├── Metrics │ │ │ │ │ │ ├── Metrics.scss │ │ │ │ │ │ ├── MetricsTab.test.tsx │ │ │ │ │ │ ├── MetricsTab.tsx │ │ │ │ │ │ └── MetricsTable.tsx │ │ │ │ │ ├── Overview │ │ │ │ │ │ ├── Analytics.tsx │ │ │ │ │ │ ├── ConfigStatus.tsx │ │ │ │ │ │ ├── Examples.tsx │ │ │ │ │ │ ├── Overview.scss │ │ │ │ │ │ ├── OverviewTab.test.tsx │ │ │ │ │ │ └── OverviewTab.tsx │ │ │ │ │ └── ServerLogs │ │ │ │ │ │ ├── ServerLogsHeader.scss │ │ │ │ │ │ ├── ServerLogsHeader.tsx │ │ │ │ │ │ ├── ServerLogsTab.scss │ │ │ │ │ │ ├── ServerLogsTab.test.tsx │ │ │ │ │ │ └── ServerLogsTab.tsx │ │ │ │ ├── editor │ │ │ │ │ ├── EditorViewModel.js │ │ │ │ │ ├── EditorViewModel.test.js │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── app.js │ │ │ │ │ ├── components │ │ │ │ │ │ ├── ClearQueryHistoryModal.vue │ │ │ │ │ │ ├── EditorResizer.vue │ │ │ │ │ │ ├── EditorResizerKoBridge.vue │ │ │ │ │ │ ├── ExecuableActions.scss │ │ │ │ │ │ ├── ExecutableActions.test.ts │ │ │ │ │ │ ├── ExecutableActions.vue │ │ │ │ │ │ ├── ExecutableActionsKoBridge.vue │ │ │ │ │ │ ├── ExecutableProgressBar.test.ts │ │ │ │ │ │ ├── ExecutableProgressBar.vue │ │ │ │ │ │ ├── ExecutableProgressBarKoBridge.vue │ │ │ │ │ │ ├── ExecuteButton.test.ts │ │ │ │ │ │ ├── ExecuteButton.vue │ │ │ │ │ │ ├── ExecuteLimitInput.vue │ │ │ │ │ │ ├── ExecutionStatusIcon.vue │ │ │ │ │ │ ├── QueryHistoryTable.scss │ │ │ │ │ │ ├── QueryHistoryTable.vue │ │ │ │ │ │ ├── QueryHistoryTableKoBridge.vue │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ ├── ExecutableActions.test.ts.snap │ │ │ │ │ │ │ ├── ExecutableProgressBar.test.ts.snap │ │ │ │ │ │ │ ├── ExecuteButton.test.ts.snap │ │ │ │ │ │ │ ├── ko.paginator.test.js.snap │ │ │ │ │ │ │ ├── ko.savedQueries.test.js.snap │ │ │ │ │ │ │ └── ko.syntaxDropdown.test.js.snap │ │ │ │ │ │ ├── aceEditor │ │ │ │ │ │ │ ├── AceAnchoredRange.ts │ │ │ │ │ │ │ ├── AceEditor.scss │ │ │ │ │ │ │ ├── AceEditor.test.ts │ │ │ │ │ │ │ ├── AceEditor.vue │ │ │ │ │ │ │ ├── AceEditorKoBridge.vue │ │ │ │ │ │ │ ├── AceGutterHandler.ts │ │ │ │ │ │ │ ├── AceLocationHandler.ts │ │ │ │ │ │ │ ├── AceSyntaxDropdown.scss │ │ │ │ │ │ │ ├── AceSyntaxDropdown.vue │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── AceEditor.test.ts.snap │ │ │ │ │ │ │ ├── acePredict.ts │ │ │ │ │ │ │ ├── autocomplete │ │ │ │ │ │ │ │ ├── AceAutocomplete.vue │ │ │ │ │ │ │ │ ├── AutocompleteResults.test.ts │ │ │ │ │ │ │ │ ├── AutocompleteResults.ts │ │ │ │ │ │ │ │ ├── Category.ts │ │ │ │ │ │ │ │ ├── MatchedText.vue │ │ │ │ │ │ │ │ ├── SqlAutocompleter.ts │ │ │ │ │ │ │ │ └── details │ │ │ │ │ │ │ │ │ ├── CatalogEntryDetailsPanel.vue │ │ │ │ │ │ │ │ │ ├── OptionDetailsPanel.vue │ │ │ │ │ │ │ │ │ ├── PopularAggregateUdfPanel.vue │ │ │ │ │ │ │ │ │ ├── PopularDetailsPanel.vue │ │ │ │ │ │ │ │ │ └── UdfDetailsPanel.vue │ │ │ │ │ │ │ ├── events.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ ├── events.ts │ │ │ │ │ │ ├── executableStateHandler.js │ │ │ │ │ │ ├── executionAnalysis │ │ │ │ │ │ │ ├── ExecutionAnalysisPanel.scss │ │ │ │ │ │ │ ├── ExecutionAnalysisPanel.vue │ │ │ │ │ │ │ └── ExecutionAnalysisPanelKoBridge.vue │ │ │ │ │ │ ├── ko.executableLogs.js │ │ │ │ │ │ ├── ko.paginator.js │ │ │ │ │ │ ├── ko.paginator.test.js │ │ │ │ │ │ ├── ko.savedQueries.js │ │ │ │ │ │ ├── ko.savedQueries.test.js │ │ │ │ │ │ ├── ko.snippetEditorActions.js │ │ │ │ │ │ ├── ko.syntaxDropdown.js │ │ │ │ │ │ ├── ko.syntaxDropdown.test.js │ │ │ │ │ │ ├── presentationMode │ │ │ │ │ │ │ ├── PresentationMode.scss │ │ │ │ │ │ │ ├── PresentationMode.vue │ │ │ │ │ │ │ └── PresentationModeKoBridge.vue │ │ │ │ │ │ ├── result │ │ │ │ │ │ │ ├── ResultTable.scss │ │ │ │ │ │ │ ├── ResultTable.vue │ │ │ │ │ │ │ ├── ResultTableKoBridge.vue │ │ │ │ │ │ │ └── reactExample │ │ │ │ │ │ │ │ ├── ReactExample.scss │ │ │ │ │ │ │ │ ├── ReactExample.test.tsx │ │ │ │ │ │ │ │ └── ReactExample.tsx │ │ │ │ │ │ ├── resultChart │ │ │ │ │ │ │ ├── chartTransformers.js │ │ │ │ │ │ │ └── ko.resultChart.js │ │ │ │ │ │ ├── resultGrid │ │ │ │ │ │ │ ├── ko.resultDownloadActions.js │ │ │ │ │ │ │ ├── ko.resultDownloadModal.js │ │ │ │ │ │ │ ├── ko.resultGrid.js │ │ │ │ │ │ │ └── ko.simpleResultGrid.js │ │ │ │ │ │ ├── sqlScratchpad │ │ │ │ │ │ │ ├── SqlScratchpad.scss │ │ │ │ │ │ │ └── SqlScratchpad.vue │ │ │ │ │ │ └── variableSubstitution │ │ │ │ │ │ │ ├── VariableSubstitution.scss │ │ │ │ │ │ │ ├── VariableSubstitution.vue │ │ │ │ │ │ │ ├── VariableSubstitutionKoBridge.vue │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── events.js │ │ │ │ │ ├── execution │ │ │ │ │ │ ├── api.ts │ │ │ │ │ │ ├── events.ts │ │ │ │ │ │ ├── executionLogs.ts │ │ │ │ │ │ ├── executionResult.ts │ │ │ │ │ │ ├── executor.d.ts │ │ │ │ │ │ ├── executor.ts │ │ │ │ │ │ ├── sessionManager.test.ts │ │ │ │ │ │ ├── sessionManager.ts │ │ │ │ │ │ ├── sqlExecutable.test.ts │ │ │ │ │ │ ├── sqlExecutable.ts │ │ │ │ │ │ ├── utils.test.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── notebook.js │ │ │ │ │ ├── notebook.test.js │ │ │ │ │ ├── snippet.js │ │ │ │ │ └── snippet.test.js │ │ │ │ ├── jobBrowser │ │ │ │ │ ├── app.js │ │ │ │ │ ├── commons │ │ │ │ │ │ └── api-utils │ │ │ │ │ │ │ ├── api.test.ts │ │ │ │ │ │ │ ├── api.ts │ │ │ │ │ │ │ └── search.ts │ │ │ │ │ ├── components │ │ │ │ │ │ ├── hiveQueryPlan │ │ │ │ │ │ │ ├── HiveQueryPlan.vue │ │ │ │ │ │ │ └── webcomp.ts │ │ │ │ │ │ ├── impalaQueries │ │ │ │ │ │ │ ├── ImpalaQueries.test.ts │ │ │ │ │ │ │ ├── ImpalaQueries.vue │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ └── ImpalaQueries.test.ts.snap │ │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ │ └── query.ts │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── query-details │ │ │ │ │ │ │ │ ├── LabeledInfo.test.ts │ │ │ │ │ │ │ │ ├── LabeledInfo.vue │ │ │ │ │ │ │ │ ├── QueryDetails.test.ts │ │ │ │ │ │ │ │ ├── QueryDetails.vue │ │ │ │ │ │ │ │ ├── QueryDetailsDiff.test.ts │ │ │ │ │ │ │ │ ├── QueryDetailsDiff.vue │ │ │ │ │ │ │ │ ├── QueryInfo.test.ts │ │ │ │ │ │ │ │ ├── QueryInfo.vue │ │ │ │ │ │ │ │ ├── QueryInfoTop.test.ts │ │ │ │ │ │ │ │ ├── QueryInfoTop.vue │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ ├── LabeledInfo.test.ts.snap │ │ │ │ │ │ │ │ │ ├── QueryDetails.test.ts.snap │ │ │ │ │ │ │ │ │ ├── QueryDetailsDiff.test.ts.snap │ │ │ │ │ │ │ │ │ ├── QueryInfo.test.ts.snap │ │ │ │ │ │ │ │ │ └── QueryInfoTop.test.ts.snap │ │ │ │ │ │ │ │ ├── __test_data__ │ │ │ │ │ │ │ │ │ ├── impala_query_1.json │ │ │ │ │ │ │ │ │ └── impala_query_2.json │ │ │ │ │ │ │ │ └── counters-table │ │ │ │ │ │ │ │ │ ├── CounterSet.ts │ │ │ │ │ │ │ │ │ ├── CountersTable.test.ts │ │ │ │ │ │ │ │ │ ├── CountersTable.vue │ │ │ │ │ │ │ │ │ ├── VarianceCell.vue │ │ │ │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ │ │ └── CountersTable.test.ts.snap │ │ │ │ │ │ │ │ │ └── __test_data__ │ │ │ │ │ │ │ │ │ └── counters.json │ │ │ │ │ │ │ ├── query-table │ │ │ │ │ │ │ │ ├── QueryTable.test.ts │ │ │ │ │ │ │ │ ├── QueryTable.vue │ │ │ │ │ │ │ │ ├── SortSelector.vue │ │ │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ │ │ │ └── QueryTable.test.ts.snap │ │ │ │ │ │ │ └── webcomp.ts │ │ │ │ │ │ └── queriesList │ │ │ │ │ │ │ ├── QueriesList.vue │ │ │ │ │ │ │ └── webcomp.ts │ │ │ │ │ ├── eventListeners.js │ │ │ │ │ ├── knockout │ │ │ │ │ │ ├── Job.js │ │ │ │ │ │ ├── JobBrowserViewModel.js │ │ │ │ │ │ └── Jobs.js │ │ │ │ │ └── miniJobBrowser.js │ │ │ │ ├── newimporter │ │ │ │ │ ├── FileImportTabs │ │ │ │ │ │ ├── FileImportTabs.scss │ │ │ │ │ │ ├── FileImportTabs.test.tsx │ │ │ │ │ │ └── FileImportTabs.tsx │ │ │ │ │ ├── FilePreviewTab │ │ │ │ │ │ ├── DestinationSettings │ │ │ │ │ │ │ ├── DestinationSettings.scss │ │ │ │ │ │ │ ├── DestinationSettings.test.tsx │ │ │ │ │ │ │ └── DestinationSettings.tsx │ │ │ │ │ │ ├── EditColumnsModal │ │ │ │ │ │ │ ├── EditColumnsModal.scss │ │ │ │ │ │ │ ├── EditColumnsModal.test.tsx │ │ │ │ │ │ │ └── EditColumnsModal.tsx │ │ │ │ │ │ ├── FilePreviewTab.scss │ │ │ │ │ │ ├── FilePreviewTab.test.tsx │ │ │ │ │ │ ├── FilePreviewTab.tsx │ │ │ │ │ │ └── SourceConfiguration │ │ │ │ │ │ │ ├── SourceConfiguration.scss │ │ │ │ │ │ │ ├── SourceConfiguration.test.tsx │ │ │ │ │ │ │ └── SourceConfiguration.tsx │ │ │ │ │ ├── ImporterPage.scss │ │ │ │ │ ├── ImporterPage.test.tsx │ │ │ │ │ ├── ImporterPage.tsx │ │ │ │ │ ├── ImporterSourceSelector │ │ │ │ │ │ ├── ImporterSourceSelector.scss │ │ │ │ │ │ ├── ImporterSourceSelector.test.tsx │ │ │ │ │ │ ├── ImporterSourceSelector.tsx │ │ │ │ │ │ ├── LocalFileUploadOption.test.tsx │ │ │ │ │ │ └── LocalFileUploadOption.tsx │ │ │ │ │ ├── PartitionsTab │ │ │ │ │ │ ├── PartitionsTab.scss │ │ │ │ │ │ ├── PartitionsTab.test.tsx │ │ │ │ │ │ └── PartitionsTab.tsx │ │ │ │ │ ├── SettingsTab │ │ │ │ │ │ ├── SettingsTab.scss │ │ │ │ │ │ ├── SettingsTab.test.tsx │ │ │ │ │ │ ├── SettingsTab.tsx │ │ │ │ │ │ └── SettingsTabConfig.ts │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── utils.test.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ ├── notebook │ │ │ │ │ ├── NotebookViewModel.js │ │ │ │ │ ├── NotebookViewModel.test.js │ │ │ │ │ ├── aceAutocompleteWrapper.js │ │ │ │ │ ├── aceAutocompleteWrapper.test.js │ │ │ │ │ ├── app.js │ │ │ │ │ ├── chartTransformers.js │ │ │ │ │ ├── notebook.js │ │ │ │ │ ├── result.js │ │ │ │ │ ├── session.js │ │ │ │ │ └── snippet.js │ │ │ │ ├── storageBrowser │ │ │ │ │ ├── FileChooserModal │ │ │ │ │ │ ├── FileChooserModal.scss │ │ │ │ │ │ ├── FileChooserModal.test.tsx │ │ │ │ │ │ └── FileChooserModal.tsx │ │ │ │ │ ├── StorageBrowserPage.scss │ │ │ │ │ ├── StorageBrowserPage.tsx │ │ │ │ │ ├── StorageBrowserTab │ │ │ │ │ │ ├── StorageBrowserTab.scss │ │ │ │ │ │ └── StorageBrowserTab.tsx │ │ │ │ │ ├── StorageDirectoryPage │ │ │ │ │ │ ├── StorageDirectoryActions │ │ │ │ │ │ │ ├── CreateAndUpload │ │ │ │ │ │ │ │ ├── CreateAndUploadAction.scss │ │ │ │ │ │ │ │ ├── CreateAndUploadAction.test.tsx │ │ │ │ │ │ │ │ └── CreateAndUploadAction.tsx │ │ │ │ │ │ │ ├── FileAndFolder │ │ │ │ │ │ │ │ ├── ChangeOwnerAndGroupModal │ │ │ │ │ │ │ │ │ ├── ChangeOwnerAndGroupModal.scss │ │ │ │ │ │ │ │ │ ├── ChangeOwnerAndGroupModal.test.tsx │ │ │ │ │ │ │ │ │ └── ChangeOwnerAndGroupModal.tsx │ │ │ │ │ │ │ │ ├── ChangePermissionModal │ │ │ │ │ │ │ │ │ ├── ChangePermissionModal.scss │ │ │ │ │ │ │ │ │ ├── ChangePermissionModal.test.tsx │ │ │ │ │ │ │ │ │ ├── ChangePermissionModal.tsx │ │ │ │ │ │ │ │ │ ├── ChangePermissionModal.util.test.ts │ │ │ │ │ │ │ │ │ └── ChangePermissionModal.util.ts │ │ │ │ │ │ │ │ ├── CompressionModal │ │ │ │ │ │ │ │ │ ├── CompressionModal.scss │ │ │ │ │ │ │ │ │ ├── CompressionModal.test.tsx │ │ │ │ │ │ │ │ │ └── CompressionModal.tsx │ │ │ │ │ │ │ │ ├── DeletionModal │ │ │ │ │ │ │ │ │ ├── DeletionModal.test.tsx │ │ │ │ │ │ │ │ │ └── DeletionModal.tsx │ │ │ │ │ │ │ │ ├── ExtractionModal │ │ │ │ │ │ │ │ │ ├── ExtractionModal.test.tsx │ │ │ │ │ │ │ │ │ └── ExtractionModal.tsx │ │ │ │ │ │ │ │ ├── FileAndFolderActions.scss │ │ │ │ │ │ │ │ ├── FileAndFolderActions.test.tsx │ │ │ │ │ │ │ │ ├── FileAndFolderActions.tsx │ │ │ │ │ │ │ │ ├── FileAndFolderActions.util.ts │ │ │ │ │ │ │ │ ├── MoveCopyModal │ │ │ │ │ │ │ │ │ ├── MoveCopyModal.test.tsx │ │ │ │ │ │ │ │ │ └── MoveCopyModal.tsx │ │ │ │ │ │ │ │ ├── RenameModal │ │ │ │ │ │ │ │ │ ├── RenameModal.test.tsx │ │ │ │ │ │ │ │ │ └── RenameModal.tsx │ │ │ │ │ │ │ │ ├── ReplicationModal │ │ │ │ │ │ │ │ │ ├── ReplicationModal.test.tsx │ │ │ │ │ │ │ │ │ └── ReplicationModal.tsx │ │ │ │ │ │ │ │ └── SummaryModal │ │ │ │ │ │ │ │ │ ├── SummaryModal.scss │ │ │ │ │ │ │ │ │ ├── SummaryModal.test.tsx │ │ │ │ │ │ │ │ │ └── SummaryModal.tsx │ │ │ │ │ │ │ ├── StorageDirectoryActions.test.tsx │ │ │ │ │ │ │ ├── StorageDirectoryActions.tsx │ │ │ │ │ │ │ └── Trash │ │ │ │ │ │ │ │ ├── TrashActions.test.tsx │ │ │ │ │ │ │ │ └── TrashActions.tsx │ │ │ │ │ │ ├── StorageDirectoryPage.scss │ │ │ │ │ │ └── StorageDirectoryPage.tsx │ │ │ │ │ ├── StorageFilePage │ │ │ │ │ │ ├── StorageFilePage.scss │ │ │ │ │ │ ├── StorageFilePage.test.tsx │ │ │ │ │ │ ├── StorageFilePage.tsx │ │ │ │ │ │ ├── StorageFilePage.util.test.tsx │ │ │ │ │ │ └── StorageFilePage.util.ts │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── utils.test.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ └── tableBrowser │ │ │ │ │ ├── app.js │ │ │ │ │ ├── metastoreColumn.js │ │ │ │ │ ├── metastoreDatabase.js │ │ │ │ │ ├── metastoreNamespace.js │ │ │ │ │ ├── metastoreSource.js │ │ │ │ │ ├── metastoreTable.js │ │ │ │ │ ├── metastoreTable.test.js │ │ │ │ │ ├── metastoreTablePartitions.js │ │ │ │ │ ├── metastoreTableSamples.js │ │ │ │ │ ├── metastoreViewModel.js │ │ │ │ │ └── propsMappers.ts │ │ │ ├── catalog │ │ │ │ ├── DataCatalogEntry.test.ts │ │ │ │ ├── DataCatalogEntry.ts │ │ │ │ ├── GeneralDataCatalog.ts │ │ │ │ ├── MultiTableEntry.ts │ │ │ │ ├── analyzer │ │ │ │ │ ├── ApiSqlAnalyzer.ts │ │ │ │ │ ├── CombinedSqlAnalyser.test.ts │ │ │ │ │ ├── CombinedSqlAnalyser.ts │ │ │ │ │ ├── NoopSqlAnalyzer.ts │ │ │ │ │ ├── sqlAnalyzerRepository.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── api.ts │ │ │ │ ├── catalogUtils.ts │ │ │ │ ├── contextCatalog.d.ts │ │ │ │ ├── contextCatalog.ts │ │ │ │ ├── dataCatalog.test.ts │ │ │ │ ├── dataCatalog.ts │ │ │ │ └── events.ts │ │ │ ├── components │ │ │ │ ├── ColumnSelectorPanel.test.ts │ │ │ │ ├── ColumnSelectorPanel.vue │ │ │ │ ├── ComboBox.vue │ │ │ │ ├── DateRangePicker.d.ts │ │ │ │ ├── DateRangePicker.test.ts │ │ │ │ ├── DateRangePicker.vue │ │ │ │ ├── Duration.test.ts │ │ │ │ ├── Duration.vue │ │ │ │ ├── FacetSelector.d.ts │ │ │ │ ├── FacetSelector.vue │ │ │ │ ├── FileUpload.vue │ │ │ │ ├── HueButton.scss │ │ │ │ ├── HueButton.test.ts │ │ │ │ ├── HueButton.vue │ │ │ │ ├── HueIcon.test.ts │ │ │ │ ├── HueIcon.vue │ │ │ │ ├── HueLink.test.ts │ │ │ │ ├── HueLink.vue │ │ │ │ ├── HueTable.d.ts │ │ │ │ ├── HueTable.scss │ │ │ │ ├── HueTable.test.ts │ │ │ │ ├── HueTable.vue │ │ │ │ ├── HumanByteSize.test.ts │ │ │ │ ├── HumanByteSize.vue │ │ │ │ ├── ImportDocumentsModal.vue │ │ │ │ ├── InlineAlert.test.ts │ │ │ │ ├── InlineAlert.vue │ │ │ │ ├── LogsPanel.vue │ │ │ │ ├── Modal.scss │ │ │ │ ├── Modal.test.ts │ │ │ │ ├── Modal.vue │ │ │ │ ├── Paginator.d.ts │ │ │ │ ├── Paginator.scss │ │ │ │ ├── Paginator.test.ts │ │ │ │ ├── Paginator.vue │ │ │ │ ├── SearchInput.scss │ │ │ │ ├── SearchInput.test.ts │ │ │ │ ├── SearchInput.vue │ │ │ │ ├── Spinner.scss │ │ │ │ ├── Spinner.vue │ │ │ │ ├── SqlContextSelector.d.ts │ │ │ │ ├── SqlContextSelector.vue │ │ │ │ ├── SqlText.vue │ │ │ │ ├── StatusIndicator.test.ts │ │ │ │ ├── StatusIndicator.vue │ │ │ │ ├── Tab.test.ts │ │ │ │ ├── Tab.vue │ │ │ │ ├── Tabs.test.ts │ │ │ │ ├── Tabs.vue │ │ │ │ ├── TimeAgo.test.ts │ │ │ │ ├── TimeAgo.vue │ │ │ │ ├── TypeaheadInput.vue │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── ColumnSelectorPanel.test.ts.snap │ │ │ │ │ ├── DateRangePicker.test.ts.snap │ │ │ │ │ ├── Duration.test.ts.snap │ │ │ │ │ ├── HueButton.test.ts.snap │ │ │ │ │ ├── HueIcon.test.ts.snap │ │ │ │ │ ├── HueLink.test.ts.snap │ │ │ │ │ ├── HueTable.test.ts.snap │ │ │ │ │ ├── HumanByteSize.test.ts.snap │ │ │ │ │ ├── InlineAlert.test.ts.snap │ │ │ │ │ ├── Modal.test.ts.snap │ │ │ │ │ ├── Paginator.test.ts.snap │ │ │ │ │ ├── SearchInput.test.ts.snap │ │ │ │ │ ├── StatusIndicator.test.ts.snap │ │ │ │ │ ├── Tab.test.ts.snap │ │ │ │ │ ├── Tabs.test.ts.snap │ │ │ │ │ └── TimeAgo.test.ts.snap │ │ │ │ ├── assist │ │ │ │ │ ├── AssistPanel.scss │ │ │ │ │ ├── AssistPanel.vue │ │ │ │ │ ├── AssistPanelWebComponent.ts │ │ │ │ │ ├── SqlAssistEntry.vue │ │ │ │ │ ├── SqlAssistPanel.scss │ │ │ │ │ └── SqlAssistPanel.vue │ │ │ │ ├── directives │ │ │ │ │ ├── clickOutsideDirective.ts │ │ │ │ │ └── overflowOnHoverDirective.ts │ │ │ │ ├── dropdown │ │ │ │ │ ├── DropdownDivider.vue │ │ │ │ │ ├── DropdownDrawer.scss │ │ │ │ │ ├── DropdownDrawer.test.ts │ │ │ │ │ ├── DropdownDrawer.vue │ │ │ │ │ ├── DropdownMenu.scss │ │ │ │ │ ├── DropdownMenu.test.ts │ │ │ │ │ ├── DropdownMenu.vue │ │ │ │ │ ├── DropdownMenuButton.test.ts │ │ │ │ │ ├── DropdownMenuButton.vue │ │ │ │ │ ├── DropdownMenuGroup.test.ts │ │ │ │ │ ├── DropdownMenuGroup.vue │ │ │ │ │ ├── DropdownMenuItem.test.ts │ │ │ │ │ ├── DropdownMenuItem.vue │ │ │ │ │ ├── DropdownMenuOptions.vue │ │ │ │ │ ├── DropdownMenuText.test.ts │ │ │ │ │ ├── DropdownMenuText.vue │ │ │ │ │ ├── DropdownPanel.scss │ │ │ │ │ ├── DropdownPanel.test.ts │ │ │ │ │ ├── DropdownPanel.vue │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── DropdownDrawer.test.ts.snap │ │ │ │ │ │ ├── DropdownMenu.test.ts.snap │ │ │ │ │ │ ├── DropdownMenuButton.test.ts.snap │ │ │ │ │ │ ├── DropdownMenuGroup.test.ts.snap │ │ │ │ │ │ ├── DropdownMenuItem.test.ts.snap │ │ │ │ │ │ ├── DropdownMenuText.test.ts.snap │ │ │ │ │ │ └── DropdownPanel.test.ts.snap │ │ │ │ │ └── types.ts │ │ │ │ ├── er-diagram │ │ │ │ │ ├── comps │ │ │ │ │ │ ├── literal-entity.scss │ │ │ │ │ │ ├── literal-entity.test.ts │ │ │ │ │ │ ├── literal-entity.vue │ │ │ │ │ │ ├── table-entity.scss │ │ │ │ │ │ ├── table-entity.test.ts │ │ │ │ │ │ └── table-entity.vue │ │ │ │ │ ├── er-diagram.scss │ │ │ │ │ ├── er-diagram.test.ts │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── entities.ts │ │ │ │ │ │ ├── enums.ts │ │ │ │ │ │ ├── interfaces.ts │ │ │ │ │ │ ├── processor.test.ts │ │ │ │ │ │ └── processor.ts │ │ │ │ │ ├── test │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ └── utils.ts │ │ │ │ │ └── webcomp.ts │ │ │ │ ├── icons │ │ │ │ │ ├── AdlsIcon.tsx │ │ │ │ │ ├── CheckmarkIcon.tsx │ │ │ │ │ ├── CloseIcon.tsx │ │ │ │ │ ├── DocumentationIcon.tsx │ │ │ │ │ ├── DownloadIcon.tsx │ │ │ │ │ ├── DropdownIcon.tsx │ │ │ │ │ ├── GSIcon.tsx │ │ │ │ │ ├── HdfsIcon.tsx │ │ │ │ │ ├── ImportIcon.tsx │ │ │ │ │ ├── MoreVerticalIcon.tsx │ │ │ │ │ ├── OzoneIcon.tsx │ │ │ │ │ ├── PageNextIcon.tsx │ │ │ │ │ ├── PlusCircleIcon.tsx │ │ │ │ │ ├── ProjectIcon.tsx │ │ │ │ │ ├── S3Icon.tsx │ │ │ │ │ ├── SpinnerLgIcon.tsx │ │ │ │ │ ├── SpinnerSmIcon.tsx │ │ │ │ │ └── vue │ │ │ │ │ │ ├── ChevronLeftIcon.ts │ │ │ │ │ │ ├── ColumnIcon.ts │ │ │ │ │ │ ├── ConnectorIcon.ts │ │ │ │ │ │ ├── DatabaseIcon.ts │ │ │ │ │ │ ├── DropDownIcon.ts │ │ │ │ │ │ ├── DropRightIcon.ts │ │ │ │ │ │ ├── HueIcons.scss │ │ │ │ │ │ ├── HueIcons.vue │ │ │ │ │ │ ├── SpinnerLargeIcon.ts │ │ │ │ │ │ ├── SpinnerSmallIcon.ts │ │ │ │ │ │ ├── TableIcon.ts │ │ │ │ │ │ └── ViewIcon.ts │ │ │ │ ├── sidebar │ │ │ │ │ ├── AccordionItem.vue │ │ │ │ │ ├── AccordionSubItem.vue │ │ │ │ │ ├── BaseNavigationItem.vue │ │ │ │ │ ├── BaseNavigationItemTooltip.vue │ │ │ │ │ ├── HelpDrawerContent.vue │ │ │ │ │ ├── HueSidebar.vue │ │ │ │ │ ├── HueSidebarWebComponent.ts │ │ │ │ │ ├── NavigationItem.vue │ │ │ │ │ ├── SectionItem.vue │ │ │ │ │ ├── Sidebar.vue │ │ │ │ │ ├── SidebarBody.vue │ │ │ │ │ ├── SidebarDrawer.vue │ │ │ │ │ ├── SpacerItem.vue │ │ │ │ │ ├── UserDrawerContent.vue │ │ │ │ │ ├── drawer.scss │ │ │ │ │ ├── hueSidebar.scss │ │ │ │ │ ├── sidebar.scss │ │ │ │ │ ├── types.ts │ │ │ │ │ └── variables.scss │ │ │ │ ├── styles │ │ │ │ │ ├── _classes.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ └── _variables.scss │ │ │ │ └── utils │ │ │ │ │ └── SubscriptionTracker.ts │ │ │ ├── config │ │ │ │ ├── events.ts │ │ │ │ ├── hueConfig.d.ts │ │ │ │ ├── hueConfig.ts │ │ │ │ └── types.ts │ │ │ ├── doc │ │ │ │ ├── docSupport.js │ │ │ │ ├── hueDocument.js │ │ │ │ └── hueFileEntry.js │ │ │ ├── ext │ │ │ │ ├── ace.d.ts │ │ │ │ ├── ace │ │ │ │ │ ├── ace.js │ │ │ │ │ ├── ext-beautify.js │ │ │ │ │ ├── ext-chromevox.js │ │ │ │ │ ├── ext-elastic_tabstops_lite.js │ │ │ │ │ ├── ext-emmet.js │ │ │ │ │ ├── ext-error_marker.js │ │ │ │ │ ├── ext-keybinding_menu.js │ │ │ │ │ ├── ext-language_tools.js │ │ │ │ │ ├── ext-linking.js │ │ │ │ │ ├── ext-modelist.js │ │ │ │ │ ├── ext-old_ie.js │ │ │ │ │ ├── ext-searchbox.js │ │ │ │ │ ├── ext-settings_menu.js │ │ │ │ │ ├── ext-spellcheck.js │ │ │ │ │ ├── ext-split.js │ │ │ │ │ ├── ext-static_highlight.js │ │ │ │ │ ├── ext-statusbar.js │ │ │ │ │ ├── ext-textarea.js │ │ │ │ │ ├── ext-themelist.js │ │ │ │ │ ├── ext-whitespace.js │ │ │ │ │ ├── keybinding-emacs.js │ │ │ │ │ ├── keybinding-vim.js │ │ │ │ │ ├── mode-abap.js │ │ │ │ │ ├── mode-abc.js │ │ │ │ │ ├── mode-actionscript.js │ │ │ │ │ ├── mode-ada.js │ │ │ │ │ ├── mode-apache_conf.js │ │ │ │ │ ├── mode-applescript.js │ │ │ │ │ ├── mode-asciidoc.js │ │ │ │ │ ├── mode-assembly_x86.js │ │ │ │ │ ├── mode-autohotkey.js │ │ │ │ │ ├── mode-batchfile.js │ │ │ │ │ ├── mode-bigquery.js │ │ │ │ │ ├── mode-c9search.js │ │ │ │ │ ├── mode-c_cpp.js │ │ │ │ │ ├── mode-cirru.js │ │ │ │ │ ├── mode-clojure.js │ │ │ │ │ ├── mode-cobol.js │ │ │ │ │ ├── mode-coffee.js │ │ │ │ │ ├── mode-coldfusion.js │ │ │ │ │ ├── mode-csharp.js │ │ │ │ │ ├── mode-css.js │ │ │ │ │ ├── mode-curly.js │ │ │ │ │ ├── mode-d.js │ │ │ │ │ ├── mode-dart.js │ │ │ │ │ ├── mode-dasksql.js │ │ │ │ │ ├── mode-diff.js │ │ │ │ │ ├── mode-django.js │ │ │ │ │ ├── mode-dockerfile.js │ │ │ │ │ ├── mode-dot.js │ │ │ │ │ ├── mode-druid.js │ │ │ │ │ ├── mode-eiffel.js │ │ │ │ │ ├── mode-ejs.js │ │ │ │ │ ├── mode-elasticsearch.js │ │ │ │ │ ├── mode-elixir.js │ │ │ │ │ ├── mode-elm.js │ │ │ │ │ ├── mode-erlang.js │ │ │ │ │ ├── mode-flink.js │ │ │ │ │ ├── mode-forth.js │ │ │ │ │ ├── mode-ftl.js │ │ │ │ │ ├── mode-gcode.js │ │ │ │ │ ├── mode-gherkin.js │ │ │ │ │ ├── mode-gitignore.js │ │ │ │ │ ├── mode-glsl.js │ │ │ │ │ ├── mode-golang.js │ │ │ │ │ ├── mode-groovy.js │ │ │ │ │ ├── mode-haml.js │ │ │ │ │ ├── mode-handlebars.js │ │ │ │ │ ├── mode-haskell.js │ │ │ │ │ ├── mode-haxe.js │ │ │ │ │ ├── mode-hive.js │ │ │ │ │ ├── mode-hplsql.js │ │ │ │ │ ├── mode-html.js │ │ │ │ │ ├── mode-html_ruby.js │ │ │ │ │ ├── mode-impala.js │ │ │ │ │ ├── mode-ini.js │ │ │ │ │ ├── mode-io.js │ │ │ │ │ ├── mode-jack.js │ │ │ │ │ ├── mode-jade.js │ │ │ │ │ ├── mode-java.js │ │ │ │ │ ├── mode-javascript.js │ │ │ │ │ ├── mode-json.js │ │ │ │ │ ├── mode-jsoniq.js │ │ │ │ │ ├── mode-jsp.js │ │ │ │ │ ├── mode-jsx.js │ │ │ │ │ ├── mode-julia.js │ │ │ │ │ ├── mode-ksql.js │ │ │ │ │ ├── mode-latex.js │ │ │ │ │ ├── mode-lean.js │ │ │ │ │ ├── mode-less.js │ │ │ │ │ ├── mode-liquid.js │ │ │ │ │ ├── mode-lisp.js │ │ │ │ │ ├── mode-livescript.js │ │ │ │ │ ├── mode-logiql.js │ │ │ │ │ ├── mode-lsl.js │ │ │ │ │ ├── mode-lua.js │ │ │ │ │ ├── mode-luapage.js │ │ │ │ │ ├── mode-lucene.js │ │ │ │ │ ├── mode-makefile.js │ │ │ │ │ ├── mode-markdown.js │ │ │ │ │ ├── mode-mask.js │ │ │ │ │ ├── mode-matlab.js │ │ │ │ │ ├── mode-maze.js │ │ │ │ │ ├── mode-mel.js │ │ │ │ │ ├── mode-mushcode.js │ │ │ │ │ ├── mode-mysql.js │ │ │ │ │ ├── mode-nix.js │ │ │ │ │ ├── mode-objectivec.js │ │ │ │ │ ├── mode-ocaml.js │ │ │ │ │ ├── mode-pascal.js │ │ │ │ │ ├── mode-perl.js │ │ │ │ │ ├── mode-pgsql.js │ │ │ │ │ ├── mode-phoenix.js │ │ │ │ │ ├── mode-php.js │ │ │ │ │ ├── mode-pig.js │ │ │ │ │ ├── mode-plain_text.js │ │ │ │ │ ├── mode-powershell.js │ │ │ │ │ ├── mode-praat.js │ │ │ │ │ ├── mode-presto.js │ │ │ │ │ ├── mode-prolog.js │ │ │ │ │ ├── mode-properties.js │ │ │ │ │ ├── mode-protobuf.js │ │ │ │ │ ├── mode-python.js │ │ │ │ │ ├── mode-r.js │ │ │ │ │ ├── mode-rdoc.js │ │ │ │ │ ├── mode-rhtml.js │ │ │ │ │ ├── mode-ruby.js │ │ │ │ │ ├── mode-rust.js │ │ │ │ │ ├── mode-sass.js │ │ │ │ │ ├── mode-scad.js │ │ │ │ │ ├── mode-scala.js │ │ │ │ │ ├── mode-scheme.js │ │ │ │ │ ├── mode-scss.js │ │ │ │ │ ├── mode-sh.js │ │ │ │ │ ├── mode-sjs.js │ │ │ │ │ ├── mode-smarty.js │ │ │ │ │ ├── mode-snippets.js │ │ │ │ │ ├── mode-solr.js │ │ │ │ │ ├── mode-soy_template.js │ │ │ │ │ ├── mode-space.js │ │ │ │ │ ├── mode-sparksql.js │ │ │ │ │ ├── mode-sql.js │ │ │ │ │ ├── mode-sqlserver.js │ │ │ │ │ ├── mode-stylus.js │ │ │ │ │ ├── mode-svg.js │ │ │ │ │ ├── mode-tcl.js │ │ │ │ │ ├── mode-tex.js │ │ │ │ │ ├── mode-text.js │ │ │ │ │ ├── mode-textile.js │ │ │ │ │ ├── mode-toml.js │ │ │ │ │ ├── mode-twig.js │ │ │ │ │ ├── mode-typescript.js │ │ │ │ │ ├── mode-vala.js │ │ │ │ │ ├── mode-vbscript.js │ │ │ │ │ ├── mode-velocity.js │ │ │ │ │ ├── mode-verilog.js │ │ │ │ │ ├── mode-vhdl.js │ │ │ │ │ ├── mode-xml.js │ │ │ │ │ ├── mode-xquery.js │ │ │ │ │ ├── mode-yaml.js │ │ │ │ │ ├── snippets │ │ │ │ │ │ ├── abap.js │ │ │ │ │ │ ├── abc.js │ │ │ │ │ │ ├── actionscript.js │ │ │ │ │ │ ├── ada.js │ │ │ │ │ │ ├── apache_conf.js │ │ │ │ │ │ ├── applescript.js │ │ │ │ │ │ ├── asciidoc.js │ │ │ │ │ │ ├── assembly_x86.js │ │ │ │ │ │ ├── autohotkey.js │ │ │ │ │ │ ├── batchfile.js │ │ │ │ │ │ ├── bigquery.js │ │ │ │ │ │ ├── c9search.js │ │ │ │ │ │ ├── c_cpp.js │ │ │ │ │ │ ├── cirru.js │ │ │ │ │ │ ├── clojure.js │ │ │ │ │ │ ├── cobol.js │ │ │ │ │ │ ├── coffee.js │ │ │ │ │ │ ├── coldfusion.js │ │ │ │ │ │ ├── csharp.js │ │ │ │ │ │ ├── css.js │ │ │ │ │ │ ├── curly.js │ │ │ │ │ │ ├── d.js │ │ │ │ │ │ ├── dart.js │ │ │ │ │ │ ├── dasksql.js │ │ │ │ │ │ ├── diff.js │ │ │ │ │ │ ├── django.js │ │ │ │ │ │ ├── dockerfile.js │ │ │ │ │ │ ├── dot.js │ │ │ │ │ │ ├── druid.js │ │ │ │ │ │ ├── eiffel.js │ │ │ │ │ │ ├── ejs.js │ │ │ │ │ │ ├── elasticsearch.js │ │ │ │ │ │ ├── elixir.js │ │ │ │ │ │ ├── elm.js │ │ │ │ │ │ ├── erlang.js │ │ │ │ │ │ ├── flink.js │ │ │ │ │ │ ├── forth.js │ │ │ │ │ │ ├── ftl.js │ │ │ │ │ │ ├── gcode.js │ │ │ │ │ │ ├── gherkin.js │ │ │ │ │ │ ├── gitignore.js │ │ │ │ │ │ ├── glsl.js │ │ │ │ │ │ ├── golang.js │ │ │ │ │ │ ├── groovy.js │ │ │ │ │ │ ├── haml.js │ │ │ │ │ │ ├── handlebars.js │ │ │ │ │ │ ├── haskell.js │ │ │ │ │ │ ├── haxe.js │ │ │ │ │ │ ├── hive.js │ │ │ │ │ │ ├── hplsql.js │ │ │ │ │ │ ├── html.js │ │ │ │ │ │ ├── html_ruby.js │ │ │ │ │ │ ├── impala.js │ │ │ │ │ │ ├── ini.js │ │ │ │ │ │ ├── io.js │ │ │ │ │ │ ├── jack.js │ │ │ │ │ │ ├── jade.js │ │ │ │ │ │ ├── java.js │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ ├── json.js │ │ │ │ │ │ ├── jsoniq.js │ │ │ │ │ │ ├── jsp.js │ │ │ │ │ │ ├── jsx.js │ │ │ │ │ │ ├── julia.js │ │ │ │ │ │ ├── ksql.js │ │ │ │ │ │ ├── latex.js │ │ │ │ │ │ ├── lean.js │ │ │ │ │ │ ├── less.js │ │ │ │ │ │ ├── liquid.js │ │ │ │ │ │ ├── lisp.js │ │ │ │ │ │ ├── livescript.js │ │ │ │ │ │ ├── logiql.js │ │ │ │ │ │ ├── lsl.js │ │ │ │ │ │ ├── lua.js │ │ │ │ │ │ ├── luapage.js │ │ │ │ │ │ ├── lucene.js │ │ │ │ │ │ ├── makefile.js │ │ │ │ │ │ ├── markdown.js │ │ │ │ │ │ ├── mask.js │ │ │ │ │ │ ├── matlab.js │ │ │ │ │ │ ├── maze.js │ │ │ │ │ │ ├── mel.js │ │ │ │ │ │ ├── mushcode.js │ │ │ │ │ │ ├── mysql.js │ │ │ │ │ │ ├── nix.js │ │ │ │ │ │ ├── objectivec.js │ │ │ │ │ │ ├── ocaml.js │ │ │ │ │ │ ├── pascal.js │ │ │ │ │ │ ├── perl.js │ │ │ │ │ │ ├── pgsql.js │ │ │ │ │ │ ├── phoenix.js │ │ │ │ │ │ ├── php.js │ │ │ │ │ │ ├── pig.js │ │ │ │ │ │ ├── plain_text.js │ │ │ │ │ │ ├── powershell.js │ │ │ │ │ │ ├── praat.js │ │ │ │ │ │ ├── presto.js │ │ │ │ │ │ ├── prolog.js │ │ │ │ │ │ ├── properties.js │ │ │ │ │ │ ├── protobuf.js │ │ │ │ │ │ ├── python.js │ │ │ │ │ │ ├── r.js │ │ │ │ │ │ ├── rdoc.js │ │ │ │ │ │ ├── rhtml.js │ │ │ │ │ │ ├── ruby.js │ │ │ │ │ │ ├── rust.js │ │ │ │ │ │ ├── sass.js │ │ │ │ │ │ ├── scad.js │ │ │ │ │ │ ├── scala.js │ │ │ │ │ │ ├── scheme.js │ │ │ │ │ │ ├── scss.js │ │ │ │ │ │ ├── sh.js │ │ │ │ │ │ ├── sjs.js │ │ │ │ │ │ ├── smarty.js │ │ │ │ │ │ ├── snippets.js │ │ │ │ │ │ ├── solr.js │ │ │ │ │ │ ├── soy_template.js │ │ │ │ │ │ ├── space.js │ │ │ │ │ │ ├── sql.js │ │ │ │ │ │ ├── sqlserver.js │ │ │ │ │ │ ├── stylus.js │ │ │ │ │ │ ├── svg.js │ │ │ │ │ │ ├── tcl.js │ │ │ │ │ │ ├── tex.js │ │ │ │ │ │ ├── text.js │ │ │ │ │ │ ├── textile.js │ │ │ │ │ │ ├── toml.js │ │ │ │ │ │ ├── twig.js │ │ │ │ │ │ ├── typescript.js │ │ │ │ │ │ ├── vala.js │ │ │ │ │ │ ├── vbscript.js │ │ │ │ │ │ ├── velocity.js │ │ │ │ │ │ ├── verilog.js │ │ │ │ │ │ ├── vhdl.js │ │ │ │ │ │ ├── xml.js │ │ │ │ │ │ ├── xquery.js │ │ │ │ │ │ └── yaml.js │ │ │ │ │ ├── theme-ambiance.js │ │ │ │ │ ├── theme-chaos.js │ │ │ │ │ ├── theme-chrome.js │ │ │ │ │ ├── theme-clouds.js │ │ │ │ │ ├── theme-clouds_midnight.js │ │ │ │ │ ├── theme-cobalt.js │ │ │ │ │ ├── theme-crimson_editor.js │ │ │ │ │ ├── theme-dawn.js │ │ │ │ │ ├── theme-dreamweaver.js │ │ │ │ │ ├── theme-eclipse.js │ │ │ │ │ ├── theme-github.js │ │ │ │ │ ├── theme-hue.js │ │ │ │ │ ├── theme-hue_dark.js │ │ │ │ │ ├── theme-idle_fingers.js │ │ │ │ │ ├── theme-iplastic.js │ │ │ │ │ ├── theme-katzenmilch.js │ │ │ │ │ ├── theme-kr_theme.js │ │ │ │ │ ├── theme-kuroir.js │ │ │ │ │ ├── theme-merbivore.js │ │ │ │ │ ├── theme-merbivore_soft.js │ │ │ │ │ ├── theme-mono_industrial.js │ │ │ │ │ ├── theme-monokai.js │ │ │ │ │ ├── theme-pastel_on_dark.js │ │ │ │ │ ├── theme-solarized_dark.js │ │ │ │ │ ├── theme-solarized_light.js │ │ │ │ │ ├── theme-sqlserver.js │ │ │ │ │ ├── theme-terminal.js │ │ │ │ │ ├── theme-textmate.js │ │ │ │ │ ├── theme-tomorrow.js │ │ │ │ │ ├── theme-tomorrow_night.js │ │ │ │ │ ├── theme-tomorrow_night_blue.js │ │ │ │ │ ├── theme-tomorrow_night_bright.js │ │ │ │ │ ├── theme-tomorrow_night_eighties.js │ │ │ │ │ ├── theme-twilight.js │ │ │ │ │ ├── theme-vibrant_ink.js │ │ │ │ │ ├── theme-xcode.js │ │ │ │ │ ├── worker-coffee.js │ │ │ │ │ ├── worker-css.js │ │ │ │ │ ├── worker-html.js │ │ │ │ │ ├── worker-javascript.js │ │ │ │ │ ├── worker-json.js │ │ │ │ │ ├── worker-lua.js │ │ │ │ │ ├── worker-php.js │ │ │ │ │ ├── worker-xml.js │ │ │ │ │ └── worker-xquery.js │ │ │ │ ├── aceExtensions.js │ │ │ │ ├── aceHelper.ts │ │ │ │ ├── bootstrap-datepicker.min.js │ │ │ │ ├── bootstrap-editable.1.5.1.min.js │ │ │ │ ├── bootstrap.2.3.2.min.js │ │ │ │ ├── d3-tip.min.js │ │ │ │ ├── fileuploader.custom.js │ │ │ │ ├── fileuploader.custom.new.js │ │ │ │ ├── jquery.chosen.1.0.0.min.js │ │ │ │ ├── jquery.dataTables.1.8.2.min.js │ │ │ │ ├── jquery.hotkeys.js │ │ │ │ ├── jquery.select2.3.5.1.min.js │ │ │ │ ├── ko.editable.custom.js │ │ │ │ ├── ko.selectize.custom.js │ │ │ │ ├── leaflet │ │ │ │ │ ├── leaflet.heat.js │ │ │ │ │ ├── leaflet.js │ │ │ │ │ ├── leaflet.markercluster.js │ │ │ │ │ └── leaflet.zoombox.js │ │ │ │ ├── nv.d3.1.1.15b.custom.js │ │ │ │ └── topojson.v1.min.js │ │ │ ├── hue.js │ │ │ ├── jest │ │ │ │ ├── jest.init.js │ │ │ │ ├── jquery.setup.js │ │ │ │ ├── koTestUtils.js │ │ │ │ └── sqlTestUtils.js │ │ │ ├── jquery │ │ │ │ ├── jquery.common.js │ │ │ │ ├── jquery.login.js │ │ │ │ ├── jquery.migration.js │ │ │ │ └── plugins │ │ │ │ │ ├── jquery.datatables.sorting.js │ │ │ │ │ ├── jquery.delayedinput.js │ │ │ │ │ ├── jquery.filechooser.js │ │ │ │ │ ├── jquery.hdfs.autocomplete.js │ │ │ │ │ ├── jquery.hdfstree.js │ │ │ │ │ ├── jquery.hiveautocomplete.js │ │ │ │ │ ├── jquery.horizontalscrollbar.js │ │ │ │ │ ├── jquery.huedatatable.js │ │ │ │ │ ├── jquery.rowselector.js │ │ │ │ │ ├── jquery.scrollleft.js │ │ │ │ │ ├── jquery.scrollup.js │ │ │ │ │ ├── jquery.selectize.js │ │ │ │ │ ├── jquery.selector.js │ │ │ │ │ ├── jquery.tableextender.js │ │ │ │ │ ├── jquery.tableextender2.js │ │ │ │ │ ├── jquery.tablescroller.js │ │ │ │ │ ├── jquery.titleupdater.js │ │ │ │ │ └── types.d.ts │ │ │ ├── ko │ │ │ │ ├── bindings │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── ko.stickVertical.test.js.snap │ │ │ │ │ │ ├── ko.templateContextMenu.test.js.snap │ │ │ │ │ │ ├── ko.templatePopover.test.js.snap │ │ │ │ │ │ ├── ko.toggleOverflow.test.js.snap │ │ │ │ │ │ ├── ko.toogle.test.js.snap │ │ │ │ │ │ ├── ko.tooltip.test.js.snap │ │ │ │ │ │ ├── ko.truncatedText.test.js.snap │ │ │ │ │ │ ├── ko.verticalSlide.test.js.snap │ │ │ │ │ │ └── ko.visibleOnHover.test.js.snap │ │ │ │ │ ├── ace │ │ │ │ │ │ ├── aceAnchoredRange.js │ │ │ │ │ │ ├── aceGutterHandler.js │ │ │ │ │ │ ├── aceLocationHandler.js │ │ │ │ │ │ ├── ko.aceEditor.js │ │ │ │ │ │ ├── ko.aceEditor.test.js │ │ │ │ │ │ └── ko.aceResizer.js │ │ │ │ │ ├── bindingUtils.js │ │ │ │ │ ├── charts │ │ │ │ │ │ ├── chartUtils.js │ │ │ │ │ │ ├── ko.barChart.js │ │ │ │ │ │ ├── ko.leafletMapChart.js │ │ │ │ │ │ ├── ko.lineChart.js │ │ │ │ │ │ ├── ko.partitionChart.js │ │ │ │ │ │ ├── ko.pieChart.js │ │ │ │ │ │ ├── ko.scatterChart.js │ │ │ │ │ │ ├── ko.timelineChart.js │ │ │ │ │ │ ├── mapchart │ │ │ │ │ │ │ ├── datamap.js │ │ │ │ │ │ │ └── ko.mapChart.js │ │ │ │ │ │ └── plotly │ │ │ │ │ │ │ └── ko.plotly.js │ │ │ │ │ ├── ko.appAwareTemplateContextMenu.js │ │ │ │ │ ├── ko.assistFileDraggable.js │ │ │ │ │ ├── ko.assistFileDroppable.js │ │ │ │ │ ├── ko.assistVerticalResizer.js │ │ │ │ │ ├── ko.attachViewModelToElementData.js │ │ │ │ │ ├── ko.augmentHtml.js │ │ │ │ │ ├── ko.autocomplete.js │ │ │ │ │ ├── ko.autogrowInput.js │ │ │ │ │ ├── ko.blurHide.js │ │ │ │ │ ├── ko.bytesize.js │ │ │ │ │ ├── ko.chosen.js │ │ │ │ │ ├── ko.clearable.js │ │ │ │ │ ├── ko.clickForAceFocus.js │ │ │ │ │ ├── ko.clickToCopy.js │ │ │ │ │ ├── ko.clipboard.js │ │ │ │ │ ├── ko.codemirror.js │ │ │ │ │ ├── ko.contextMenu.js │ │ │ │ │ ├── ko.contextSubMenu.js │ │ │ │ │ ├── ko.datalist.js │ │ │ │ │ ├── ko.dateRangePicker.js │ │ │ │ │ ├── ko.datepicker.js │ │ │ │ │ ├── ko.dblClick.js │ │ │ │ │ ├── ko.delayedOverflow.js │ │ │ │ │ ├── ko.dockable.js │ │ │ │ │ ├── ko.documentChooser.js │ │ │ │ │ ├── ko.documentContextPopover.js │ │ │ │ │ ├── ko.draggableText.js │ │ │ │ │ ├── ko.dropdown.js │ │ │ │ │ ├── ko.dropzone.js │ │ │ │ │ ├── ko.duration.js │ │ │ │ │ ├── ko.ellipsis.js │ │ │ │ │ ├── ko.fadeVisible.js │ │ │ │ │ ├── ko.fetchMore.js │ │ │ │ │ ├── ko.fileChooser.js │ │ │ │ │ ├── ko.foreachVisible.js │ │ │ │ │ ├── ko.fresherEditor.js │ │ │ │ │ ├── ko.hdfsAutocomplete.js │ │ │ │ │ ├── ko.hdfsTree.js │ │ │ │ │ ├── ko.highlight.js │ │ │ │ │ ├── ko.hiveChooser.js │ │ │ │ │ ├── ko.html.js │ │ │ │ │ ├── ko.hueCheckAll.js │ │ │ │ │ ├── ko.hueCheckbox.js │ │ │ │ │ ├── ko.hueChecked.js │ │ │ │ │ ├── ko.hueLink.js │ │ │ │ │ ├── ko.hueSpinner.js │ │ │ │ │ ├── ko.hueach.js │ │ │ │ │ ├── ko.impalaDagre.js │ │ │ │ │ ├── ko.jHueRowSelector.js │ │ │ │ │ ├── ko.logResizer.js │ │ │ │ │ ├── ko.logScroller.js │ │ │ │ │ ├── ko.medium.js │ │ │ │ │ ├── ko.moment.js │ │ │ │ │ ├── ko.momentFromNow.js │ │ │ │ │ ├── ko.multiCheck.js │ │ │ │ │ ├── ko.multiCheckForeachVisible.js │ │ │ │ │ ├── ko.multiClick.js │ │ │ │ │ ├── ko.multiLineEllipsis.js │ │ │ │ │ ├── ko.numberFormat.js │ │ │ │ │ ├── ko.numericTextInput.js │ │ │ │ │ ├── ko.onClickOutside.js │ │ │ │ │ ├── ko.oneClickSelect.js │ │ │ │ │ ├── ko.parseArguments.js │ │ │ │ │ ├── ko.publish.js │ │ │ │ │ ├── ko.reactWrapper.js │ │ │ │ │ ├── ko.readOnlyAce.js │ │ │ │ │ ├── ko.resizable.js │ │ │ │ │ ├── ko.select2.js │ │ │ │ │ ├── ko.select2.test.js │ │ │ │ │ ├── ko.simplesize.js │ │ │ │ │ ├── ko.slideVisible.js │ │ │ │ │ ├── ko.slider.js │ │ │ │ │ ├── ko.solrChooser.js │ │ │ │ │ ├── ko.spinEdit.js │ │ │ │ │ ├── ko.splitDraggable.js │ │ │ │ │ ├── ko.splitFlexDraggable.js │ │ │ │ │ ├── ko.sqlContextPopover.js │ │ │ │ │ ├── ko.stickVertical.js │ │ │ │ │ ├── ko.stickVertical.test.js │ │ │ │ │ ├── ko.storageContextPopover.js │ │ │ │ │ ├── ko.stretchDown.js │ │ │ │ │ ├── ko.tagEditor.js │ │ │ │ │ ├── ko.tagsNotAllowed.js │ │ │ │ │ ├── ko.templateContextMenu.js │ │ │ │ │ ├── ko.templateContextMenu.test.js │ │ │ │ │ ├── ko.templatePopover.js │ │ │ │ │ ├── ko.templatePopover.test.js │ │ │ │ │ ├── ko.textSqueezer.js │ │ │ │ │ ├── ko.textSqueezer.test.js │ │ │ │ │ ├── ko.toggle.js │ │ │ │ │ ├── ko.toggleOverflow.js │ │ │ │ │ ├── ko.toggleOverflow.test.js │ │ │ │ │ ├── ko.toogle.test.js │ │ │ │ │ ├── ko.tooltip.js │ │ │ │ │ ├── ko.tooltip.test.js │ │ │ │ │ ├── ko.truncatedText.js │ │ │ │ │ ├── ko.truncatedText.test.js │ │ │ │ │ ├── ko.typeahead.js │ │ │ │ │ ├── ko.verticalSlide.js │ │ │ │ │ ├── ko.verticalSlide.test.js │ │ │ │ │ ├── ko.visibleOnHover.js │ │ │ │ │ ├── ko.visibleOnHover.test.js │ │ │ │ │ └── ko.vue.js │ │ │ │ ├── components │ │ │ │ │ ├── DisposableComponent.js │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ ├── ko.contextSelector.test.js.snap │ │ │ │ │ │ ├── ko.createDirectoryModal.test.js.snap │ │ │ │ │ │ ├── ko.deleteDocModal.test.js.snap │ │ │ │ │ │ ├── ko.dropDown.test.js.snap │ │ │ │ │ │ ├── ko.executionAnalysis.test.js.snap │ │ │ │ │ │ ├── ko.favoriteApp.test.js.snap │ │ │ │ │ │ ├── ko.fieldSamples.test.js.snap │ │ │ │ │ │ ├── ko.globalSearch.test.js.snap │ │ │ │ │ │ ├── ko.historyPanel.test.js.snap │ │ │ │ │ │ ├── ko.importDocumentsModal.test.js.snap │ │ │ │ │ │ ├── ko.inlineAutocomplete.test.js.snap │ │ │ │ │ │ ├── ko.jobBrowserLinks.test.js.snap │ │ │ │ │ │ ├── ko.navProperties.test.js.snap │ │ │ │ │ │ ├── ko.navTags.test.js.snap │ │ │ │ │ │ ├── ko.pollingCatalogEntriesList.test.js.snap │ │ │ │ │ │ ├── ko.quickQueryAction.test.js.snap │ │ │ │ │ │ ├── ko.sentryPrivileges.test.js.snap │ │ │ │ │ │ ├── ko.sessionAuthModal.test.js.snap │ │ │ │ │ │ ├── ko.sessionPanel.test.js.snap │ │ │ │ │ │ ├── ko.shareGistModal.test.js.snap │ │ │ │ │ │ └── ko.sqlColumnsTable.test.js.snap │ │ │ │ │ ├── appSwitcher │ │ │ │ │ │ ├── apps.v2.json │ │ │ │ │ │ ├── environment.js │ │ │ │ │ │ └── ko.appSwitcher.js │ │ │ │ │ ├── assist │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── ko.assistKey.test.js.snap │ │ │ │ │ │ ├── assistDbEntry.js │ │ │ │ │ │ ├── assistDbNamespace.js │ │ │ │ │ │ ├── assistDbSource.js │ │ │ │ │ │ ├── assistGitEntry.js │ │ │ │ │ │ ├── assistHBaseEntry.js │ │ │ │ │ │ ├── assistInnerPanel.js │ │ │ │ │ │ ├── assistStorageEntry.js │ │ │ │ │ │ ├── assistStorageEntry.test.js │ │ │ │ │ │ ├── assistViewModel.js │ │ │ │ │ │ ├── events.js │ │ │ │ │ │ ├── ko.assistDashboardPanel.js │ │ │ │ │ │ ├── ko.assistDbPanel.js │ │ │ │ │ │ ├── ko.assistDocumentsPanel.js │ │ │ │ │ │ ├── ko.assistEditorContextPanel.js │ │ │ │ │ │ ├── ko.assistFunctionsPanel.js │ │ │ │ │ │ ├── ko.assistFunctionsPanel.test.js │ │ │ │ │ │ ├── ko.assistGitPanel.js │ │ │ │ │ │ ├── ko.assistHBasePanel.js │ │ │ │ │ │ ├── ko.assistKey.js │ │ │ │ │ │ ├── ko.assistKey.test.js │ │ │ │ │ │ ├── ko.assistLangRefPanel.js │ │ │ │ │ │ ├── ko.assistLangRefPanel.test.js │ │ │ │ │ │ ├── ko.assistPanel.js │ │ │ │ │ │ ├── ko.assistSchedulePanel.js │ │ │ │ │ │ ├── ko.assistStoragePanel.js │ │ │ │ │ │ └── ko.rightAssistPanel.js │ │ │ │ │ ├── componentUtils.js │ │ │ │ │ ├── contextPopover │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── ko.popoverOnHover.test.js.snap │ │ │ │ │ │ ├── asteriskContextTabs.js │ │ │ │ │ │ ├── collectionContextTabs.js │ │ │ │ │ │ ├── dataCatalogContext.js │ │ │ │ │ │ ├── documentContext.js │ │ │ │ │ │ ├── functionContext.js │ │ │ │ │ │ ├── ko.contextPopover.js │ │ │ │ │ │ ├── ko.documentContextFooter.js │ │ │ │ │ │ ├── ko.popoverOnHover.js │ │ │ │ │ │ ├── ko.popoverOnHover.test.js │ │ │ │ │ │ ├── ko.quickQueryContext.js │ │ │ │ │ │ ├── langRefContext.js │ │ │ │ │ │ ├── partitionContext.js │ │ │ │ │ │ ├── resizeHelper.js │ │ │ │ │ │ └── storageContext.js │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ ├── ko.linkSharing.test.js.snap │ │ │ │ │ │ │ └── ko.shareDocModal.test.js.snap │ │ │ │ │ │ ├── ko.linkSharing.js │ │ │ │ │ │ ├── ko.linkSharing.test.js │ │ │ │ │ │ ├── ko.shareDocModal.js │ │ │ │ │ │ └── ko.shareDocModal.test.js │ │ │ │ │ ├── ko.catalogEntriesList.js │ │ │ │ │ ├── ko.contextSelector.js │ │ │ │ │ ├── ko.contextSelector.test.js │ │ │ │ │ ├── ko.createDirectoryModal.js │ │ │ │ │ ├── ko.createDirectoryModal.test.js │ │ │ │ │ ├── ko.deleteDocModal.js │ │ │ │ │ ├── ko.deleteDocModal.test.js │ │ │ │ │ ├── ko.dropDown.js │ │ │ │ │ ├── ko.dropDown.test.js │ │ │ │ │ ├── ko.editorDroppableMenu.js │ │ │ │ │ ├── ko.executionAnalysis.js │ │ │ │ │ ├── ko.executionAnalysis.test.js │ │ │ │ │ ├── ko.favoriteApp.js │ │ │ │ │ ├── ko.favoriteApp.test.js │ │ │ │ │ ├── ko.fieldSamples.js │ │ │ │ │ ├── ko.fieldSamples.test.js │ │ │ │ │ ├── ko.globalSearch.js │ │ │ │ │ ├── ko.globalSearch.test.js │ │ │ │ │ ├── ko.historyPanel.js │ │ │ │ │ ├── ko.historyPanel.test.js │ │ │ │ │ ├── ko.importDocumentsModal.js │ │ │ │ │ ├── ko.importDocumentsModal.test.js │ │ │ │ │ ├── ko.inlineAutocomplete.js │ │ │ │ │ ├── ko.inlineAutocomplete.test.js │ │ │ │ │ ├── ko.jobBrowserLinks.js │ │ │ │ │ ├── ko.jobBrowserLinks.test.js │ │ │ │ │ ├── ko.navProperties.js │ │ │ │ │ ├── ko.navProperties.test.js │ │ │ │ │ ├── ko.navTags.js │ │ │ │ │ ├── ko.navTags.test.js │ │ │ │ │ ├── ko.pollingCatalogEntriesList.js │ │ │ │ │ ├── ko.pollingCatalogEntriesList.test.js │ │ │ │ │ ├── ko.quickQueryAction.js │ │ │ │ │ ├── ko.quickQueryAction.test.js │ │ │ │ │ ├── ko.sentryPrivileges.js │ │ │ │ │ ├── ko.sentryPrivileges.test.js │ │ │ │ │ ├── ko.sessionAuthModal.js │ │ │ │ │ ├── ko.sessionAuthModal.test.js │ │ │ │ │ ├── ko.sessionPanel.js │ │ │ │ │ ├── ko.sessionPanel.test.js │ │ │ │ │ ├── ko.shareGistModal.js │ │ │ │ │ ├── ko.shareGistModal.test.js │ │ │ │ │ ├── ko.sqlColumnsTable.js │ │ │ │ │ ├── ko.sqlColumnsTable.test.js │ │ │ │ │ └── simpleAceEditor │ │ │ │ │ │ ├── ko.simpleAceEditor.js │ │ │ │ │ │ ├── solrFormulaAutocompleter.js │ │ │ │ │ │ └── solrQueryAutocompleter.js │ │ │ │ ├── extenders │ │ │ │ │ ├── ko.maxLength.js │ │ │ │ │ ├── ko.numeric.js │ │ │ │ │ └── ko.toJson.js │ │ │ │ ├── ko.all.js │ │ │ │ ├── ko.init.js │ │ │ │ └── observables │ │ │ │ │ ├── ko.observableArrayDefault.js │ │ │ │ │ └── ko.observableDefault.js │ │ │ ├── login.js │ │ │ ├── nvd3 │ │ │ │ ├── nv.all.js │ │ │ │ ├── nv.d3.growingDiscreteBar.js │ │ │ │ ├── nv.d3.growingDiscreteBarChart.js │ │ │ │ ├── nv.d3.growingMultiBar.js │ │ │ │ ├── nv.d3.growingMultiBarChart.js │ │ │ │ ├── nv.d3.growingPie.js │ │ │ │ ├── nv.d3.growingPieChart.js │ │ │ │ ├── nv.d3.legend.js │ │ │ │ ├── nv.d3.lineWithBrushChart.js │ │ │ │ └── nv.d3.multiBarWithBrushChart.js │ │ │ ├── onePageViewModel.js │ │ │ ├── parse │ │ │ │ ├── globalSearchParser.js │ │ │ │ ├── globalSearchParser.test.js │ │ │ │ ├── hplsqlStatementsParser.js │ │ │ │ ├── hplsqlStatementsParser.test.js │ │ │ │ ├── jison │ │ │ │ │ ├── globalSearchParser.jison │ │ │ │ │ ├── hplsqlStatementsParser.jison │ │ │ │ │ ├── solrFormulaParser.jison │ │ │ │ │ ├── solrQueryParser.jison │ │ │ │ │ └── sqlStatementsParser.jison │ │ │ │ ├── parserTypeDefs.js │ │ │ │ ├── sharedStatementsParserTests.ts │ │ │ │ ├── solrFormulaParser.js │ │ │ │ ├── solrFormulaParser.test.js │ │ │ │ ├── solrQueryParser.js │ │ │ │ ├── solrQueryParser.test.js │ │ │ │ ├── sql │ │ │ │ │ ├── calcite │ │ │ │ │ │ ├── calciteAutocompleteParser.js │ │ │ │ │ │ ├── calciteSyntaxParser.js │ │ │ │ │ │ ├── jison │ │ │ │ │ │ │ ├── describe │ │ │ │ │ │ │ │ └── describe_table.jison │ │ │ │ │ │ │ ├── quoted_table_identifier.jison │ │ │ │ │ │ │ ├── select │ │ │ │ │ │ │ │ └── select_stream.jison │ │ │ │ │ │ │ ├── sql.jisonlex │ │ │ │ │ │ │ └── structure.json │ │ │ │ │ │ ├── sqlParseSupport.js │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── calciteAutocompleteParser.Alter.test.js │ │ │ │ │ │ │ ├── calciteAutocompleteParser.Create.test.js │ │ │ │ │ │ │ ├── calciteAutocompleteParser.Drop.test.js │ │ │ │ │ │ │ ├── calciteAutocompleteParser.Error.test.js │ │ │ │ │ │ │ ├── calciteAutocompleteParser.Insert.test.js │ │ │ │ │ │ │ ├── calciteAutocompleteParser.Locations.test.js │ │ │ │ │ │ │ ├── calciteAutocompleteParser.Select.stream.test.js │ │ │ │ │ │ │ ├── calciteAutocompleteParser.Select.test.js │ │ │ │ │ │ │ ├── calciteAutocompleteParser.Set.test.js │ │ │ │ │ │ │ ├── calciteAutocompleteParser.Update.test.js │ │ │ │ │ │ │ ├── calciteAutocompleteParser.Use.test.js │ │ │ │ │ │ │ ├── calciteAutocompleteParser.test.js │ │ │ │ │ │ │ ├── calciteSyntaxParser.test.js │ │ │ │ │ │ │ └── calciteutocompleteParser.Describe.test.js │ │ │ │ │ ├── dasksql │ │ │ │ │ │ ├── dasksqlAutocompleteParser.js │ │ │ │ │ │ ├── dasksqlSyntaxParser.js │ │ │ │ │ │ ├── jison │ │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ │ ├── create_common.jison │ │ │ │ │ │ │ │ ├── create_table.jison │ │ │ │ │ │ │ │ └── create_view.jison │ │ │ │ │ │ │ ├── show │ │ │ │ │ │ │ │ └── show.jison │ │ │ │ │ │ │ ├── sql.jisonlex │ │ │ │ │ │ │ └── structure.json │ │ │ │ │ │ ├── sqlParseSupport.js │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── dasksqlAutocompleteParser.Create.test.js │ │ │ │ │ │ │ ├── dasksqlAutocompleteParser.Error.test.js │ │ │ │ │ │ │ ├── dasksqlAutocompleteParser.Locations.test.js │ │ │ │ │ │ │ ├── dasksqlAutocompleteParser.Select.test.js │ │ │ │ │ │ │ ├── dasksqlAutocompleteParser.Show.test.js │ │ │ │ │ │ │ ├── dasksqlAutocompleteParser.test.js │ │ │ │ │ │ │ └── dasksqlSyntaxParser.test.js │ │ │ │ │ ├── flink │ │ │ │ │ │ ├── flinkAutocompleteParser.js │ │ │ │ │ │ ├── flinkSyntaxParser.js │ │ │ │ │ │ ├── jison │ │ │ │ │ │ │ ├── show │ │ │ │ │ │ │ │ └── sql_show.jison │ │ │ │ │ │ │ ├── sql.jisonlex │ │ │ │ │ │ │ └── structure.json │ │ │ │ │ │ ├── sqlParseSupport.js │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── flinkAutoCompleteParser.Show.test.js │ │ │ │ │ │ │ ├── flinkAutocompleteParser.Alter.test.js │ │ │ │ │ │ │ ├── flinkAutocompleteParser.Create.test.js │ │ │ │ │ │ │ ├── flinkAutocompleteParser.Describe.test.js │ │ │ │ │ │ │ ├── flinkAutocompleteParser.Drop.test.js │ │ │ │ │ │ │ ├── flinkAutocompleteParser.Error.test.js │ │ │ │ │ │ │ ├── flinkAutocompleteParser.Insert.test.js │ │ │ │ │ │ │ ├── flinkAutocompleteParser.Locations.test.js │ │ │ │ │ │ │ ├── flinkAutocompleteParser.Select.test.js │ │ │ │ │ │ │ ├── flinkAutocompleteParser.Set.test.js │ │ │ │ │ │ │ ├── flinkAutocompleteParser.Update.test.js │ │ │ │ │ │ │ ├── flinkAutocompleteParser.Use.test.js │ │ │ │ │ │ │ ├── flinkAutocompleteParser.test.js │ │ │ │ │ │ │ └── flinkSyntaxParser.test.js │ │ │ │ │ ├── generic │ │ │ │ │ │ ├── genericAutocompleteParser.Locations.test.js │ │ │ │ │ │ ├── genericAutocompleteParser.js │ │ │ │ │ │ ├── genericAutocompleteParser.test.ts │ │ │ │ │ │ ├── genericSyntaxParser.js │ │ │ │ │ │ ├── genericSyntaxParser.test.js │ │ │ │ │ │ ├── jison │ │ │ │ │ │ │ ├── alter │ │ │ │ │ │ │ │ ├── alter_common.jison │ │ │ │ │ │ │ │ ├── alter_common.test.json │ │ │ │ │ │ │ │ ├── alter_table.jison │ │ │ │ │ │ │ │ ├── alter_table.test.json │ │ │ │ │ │ │ │ ├── alter_view.jison │ │ │ │ │ │ │ │ └── alter_view.test.json │ │ │ │ │ │ │ ├── autocomplete_footer.jison │ │ │ │ │ │ │ ├── autocomplete_header.jison │ │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ │ ├── create_common.jison │ │ │ │ │ │ │ │ ├── create_common.test.json │ │ │ │ │ │ │ │ ├── create_database.jison │ │ │ │ │ │ │ │ ├── create_database.test.json │ │ │ │ │ │ │ │ ├── create_role.jison │ │ │ │ │ │ │ │ ├── create_role.test.json │ │ │ │ │ │ │ │ ├── create_table.jison │ │ │ │ │ │ │ │ ├── create_table.test.json │ │ │ │ │ │ │ │ ├── create_view.jison │ │ │ │ │ │ │ │ └── create_view.test.json │ │ │ │ │ │ │ ├── drop │ │ │ │ │ │ │ │ ├── drop_common.jison │ │ │ │ │ │ │ │ ├── drop_common.test.json │ │ │ │ │ │ │ │ ├── drop_database.jison │ │ │ │ │ │ │ │ ├── drop_database.test.json │ │ │ │ │ │ │ │ ├── drop_role.jison │ │ │ │ │ │ │ │ ├── drop_role.test.json │ │ │ │ │ │ │ │ ├── drop_table.jison │ │ │ │ │ │ │ │ ├── drop_table.test.json │ │ │ │ │ │ │ │ ├── drop_view.jison │ │ │ │ │ │ │ │ └── drop_view.test.json │ │ │ │ │ │ │ ├── insert │ │ │ │ │ │ │ │ ├── insert.jison │ │ │ │ │ │ │ │ └── insert.test.json │ │ │ │ │ │ │ ├── select │ │ │ │ │ │ │ │ ├── cte_select_statement.jison │ │ │ │ │ │ │ │ ├── cte_select_statement.test.json │ │ │ │ │ │ │ │ ├── from_clause.jison │ │ │ │ │ │ │ │ ├── from_clause.test.json │ │ │ │ │ │ │ │ ├── group_by_clause.jison │ │ │ │ │ │ │ │ ├── group_by_clause.test.json │ │ │ │ │ │ │ │ ├── having_clause.jison │ │ │ │ │ │ │ │ ├── joins.jison │ │ │ │ │ │ │ │ ├── joins.test.json │ │ │ │ │ │ │ │ ├── limit_clause.jison │ │ │ │ │ │ │ │ ├── limit_clause.test.json │ │ │ │ │ │ │ │ ├── order_by_clause.jison │ │ │ │ │ │ │ │ ├── order_by_clause.test.json │ │ │ │ │ │ │ │ ├── select.jison │ │ │ │ │ │ │ │ ├── select.test.json │ │ │ │ │ │ │ │ ├── select_conditions.jison │ │ │ │ │ │ │ │ ├── select_conditions.test.json │ │ │ │ │ │ │ │ ├── union_clause.jison │ │ │ │ │ │ │ │ ├── union_clause.test.json │ │ │ │ │ │ │ │ ├── where_clause.jison │ │ │ │ │ │ │ │ └── where_clause.test.json │ │ │ │ │ │ │ ├── set │ │ │ │ │ │ │ │ ├── set_all.jison │ │ │ │ │ │ │ │ ├── set_common.jison │ │ │ │ │ │ │ │ ├── set_common.test.json │ │ │ │ │ │ │ │ ├── set_option.jison │ │ │ │ │ │ │ │ └── set_option.test.json │ │ │ │ │ │ │ ├── sql.jisonlex │ │ │ │ │ │ │ ├── sql_error.jison │ │ │ │ │ │ │ ├── sql_error.test.json │ │ │ │ │ │ │ ├── sql_main.jison │ │ │ │ │ │ │ ├── sql_main.test.json │ │ │ │ │ │ │ ├── sql_valueExpression.jison │ │ │ │ │ │ │ ├── structure.json │ │ │ │ │ │ │ ├── syntax_footer.jison │ │ │ │ │ │ │ ├── syntax_header.jison │ │ │ │ │ │ │ ├── truncate │ │ │ │ │ │ │ │ ├── truncate_table.jison │ │ │ │ │ │ │ │ └── truncate_table.test.json │ │ │ │ │ │ │ ├── udf │ │ │ │ │ │ │ │ ├── aggregate │ │ │ │ │ │ │ │ │ ├── aggregate_common.jison │ │ │ │ │ │ │ │ │ ├── avg.jison │ │ │ │ │ │ │ │ │ ├── count.jison │ │ │ │ │ │ │ │ │ ├── max.jison │ │ │ │ │ │ │ │ │ ├── min.jison │ │ │ │ │ │ │ │ │ ├── stddev_pop.jison │ │ │ │ │ │ │ │ │ ├── stddev_samp.jison │ │ │ │ │ │ │ │ │ ├── sum.jison │ │ │ │ │ │ │ │ │ ├── var_pop.jison │ │ │ │ │ │ │ │ │ ├── var_samp.jison │ │ │ │ │ │ │ │ │ └── variance.jison │ │ │ │ │ │ │ │ ├── analytic │ │ │ │ │ │ │ │ │ └── analytic.jison │ │ │ │ │ │ │ │ ├── function │ │ │ │ │ │ │ │ │ ├── array.jison │ │ │ │ │ │ │ │ │ ├── cast.jison │ │ │ │ │ │ │ │ │ ├── if.jison │ │ │ │ │ │ │ │ │ ├── map.jison │ │ │ │ │ │ │ │ │ └── truncate.jison │ │ │ │ │ │ │ │ └── udf_common.jison │ │ │ │ │ │ │ ├── update │ │ │ │ │ │ │ │ ├── update_table.jison │ │ │ │ │ │ │ │ └── update_table.test.json │ │ │ │ │ │ │ └── use │ │ │ │ │ │ │ │ ├── use.jison │ │ │ │ │ │ │ │ └── use.test.json │ │ │ │ │ │ └── sqlParseSupport.js │ │ │ │ │ ├── hive │ │ │ │ │ │ ├── hiveAutocompleteParser.js │ │ │ │ │ │ ├── hiveSyntaxParser.js │ │ │ │ │ │ ├── jison │ │ │ │ │ │ │ ├── abort │ │ │ │ │ │ │ │ └── abort_transactions.jison │ │ │ │ │ │ │ ├── alter │ │ │ │ │ │ │ │ ├── alter_common.jison │ │ │ │ │ │ │ │ ├── alter_connector.jison │ │ │ │ │ │ │ │ ├── alter_database.jison │ │ │ │ │ │ │ │ ├── alter_index.jison │ │ │ │ │ │ │ │ ├── alter_materialized_view.jison │ │ │ │ │ │ │ │ ├── alter_scheduled_query.jison │ │ │ │ │ │ │ │ ├── alter_table.jison │ │ │ │ │ │ │ │ └── alter_view.jison │ │ │ │ │ │ │ ├── analyze │ │ │ │ │ │ │ │ └── analyze_table.jison │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ └── table_constraint.jison │ │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ │ ├── clustered_by.jison │ │ │ │ │ │ │ │ ├── create_common.jison │ │ │ │ │ │ │ │ ├── create_connector.jison │ │ │ │ │ │ │ │ ├── create_database.jison │ │ │ │ │ │ │ │ ├── create_function.jison │ │ │ │ │ │ │ │ ├── create_index.jison │ │ │ │ │ │ │ │ ├── create_materialized_view.jison │ │ │ │ │ │ │ │ ├── create_role.jison │ │ │ │ │ │ │ │ ├── create_scheduled_query.jison │ │ │ │ │ │ │ │ ├── create_table.jison │ │ │ │ │ │ │ │ ├── create_temporary_function.jison │ │ │ │ │ │ │ │ ├── create_temporary_macro.jison │ │ │ │ │ │ │ │ ├── create_view.jison │ │ │ │ │ │ │ │ ├── row_format.jison │ │ │ │ │ │ │ │ └── row_format.test.json │ │ │ │ │ │ │ ├── delete │ │ │ │ │ │ │ │ └── delete.jison │ │ │ │ │ │ │ ├── describe │ │ │ │ │ │ │ │ ├── describe.jison │ │ │ │ │ │ │ │ ├── describe_connector.jison │ │ │ │ │ │ │ │ ├── describe_database.jison │ │ │ │ │ │ │ │ └── describe_function.jison │ │ │ │ │ │ │ ├── drop │ │ │ │ │ │ │ │ ├── drop_common.jison │ │ │ │ │ │ │ │ ├── drop_connector.jison │ │ │ │ │ │ │ │ ├── drop_database.jison │ │ │ │ │ │ │ │ ├── drop_function.jison │ │ │ │ │ │ │ │ ├── drop_index.jison │ │ │ │ │ │ │ │ ├── drop_materialized_view.jison │ │ │ │ │ │ │ │ ├── drop_role.jison │ │ │ │ │ │ │ │ ├── drop_scheduled_query.jison │ │ │ │ │ │ │ │ ├── drop_table.jison │ │ │ │ │ │ │ │ ├── drop_temporary_function.jison │ │ │ │ │ │ │ │ ├── drop_temporary_macro.jison │ │ │ │ │ │ │ │ └── drop_view.jison │ │ │ │ │ │ │ ├── explain │ │ │ │ │ │ │ │ └── explain.jison │ │ │ │ │ │ │ ├── export │ │ │ │ │ │ │ │ └── export.jison │ │ │ │ │ │ │ ├── grant │ │ │ │ │ │ │ │ ├── grant_common.jison │ │ │ │ │ │ │ │ ├── grant_privilege.jison │ │ │ │ │ │ │ │ ├── grant_role.jison │ │ │ │ │ │ │ │ ├── grant_user.jison │ │ │ │ │ │ │ │ └── privilege_type.jison │ │ │ │ │ │ │ ├── import │ │ │ │ │ │ │ │ └── import.jison │ │ │ │ │ │ │ ├── insert │ │ │ │ │ │ │ │ └── insert.jison │ │ │ │ │ │ │ ├── load │ │ │ │ │ │ │ │ └── load_data.jison │ │ │ │ │ │ │ ├── merge │ │ │ │ │ │ │ │ └── merge.jison │ │ │ │ │ │ │ ├── msck │ │ │ │ │ │ │ │ └── msck.jison │ │ │ │ │ │ │ ├── reload │ │ │ │ │ │ │ │ └── reload.jison │ │ │ │ │ │ │ ├── revoke │ │ │ │ │ │ │ │ ├── revoke_admin_option_for.jison │ │ │ │ │ │ │ │ ├── revoke_all.jison │ │ │ │ │ │ │ │ ├── revoke_common.jison │ │ │ │ │ │ │ │ ├── revoke_grant_option_for.jison │ │ │ │ │ │ │ │ ├── revoke_privilege.jison │ │ │ │ │ │ │ │ ├── revoke_role.jison │ │ │ │ │ │ │ │ └── revoke_user.jison │ │ │ │ │ │ │ ├── set │ │ │ │ │ │ │ │ ├── set_common.jison │ │ │ │ │ │ │ │ └── set_role.jison │ │ │ │ │ │ │ ├── show │ │ │ │ │ │ │ │ ├── show_columns.jison │ │ │ │ │ │ │ │ ├── show_common.jison │ │ │ │ │ │ │ │ ├── show_compactions.jison │ │ │ │ │ │ │ │ ├── show_conf.jison │ │ │ │ │ │ │ │ ├── show_connectors.jison │ │ │ │ │ │ │ │ ├── show_create_table.jison │ │ │ │ │ │ │ │ ├── show_current_roles.jison │ │ │ │ │ │ │ │ ├── show_databases.jison │ │ │ │ │ │ │ │ ├── show_functions.jison │ │ │ │ │ │ │ │ ├── show_grant.jison │ │ │ │ │ │ │ │ ├── show_index.jison │ │ │ │ │ │ │ │ ├── show_locks.jison │ │ │ │ │ │ │ │ ├── show_materialized_views.jison │ │ │ │ │ │ │ │ ├── show_partitions.jison │ │ │ │ │ │ │ │ ├── show_role.jison │ │ │ │ │ │ │ │ ├── show_roles.jison │ │ │ │ │ │ │ │ ├── show_table.jison │ │ │ │ │ │ │ │ ├── show_tables.jison │ │ │ │ │ │ │ │ ├── show_tblproperties.jison │ │ │ │ │ │ │ │ ├── show_transactions.jison │ │ │ │ │ │ │ │ └── show_views.jison │ │ │ │ │ │ │ ├── sql.jisonlex │ │ │ │ │ │ │ ├── sql_error.jison │ │ │ │ │ │ │ ├── sql_main.jison │ │ │ │ │ │ │ ├── structure.json │ │ │ │ │ │ │ ├── truncate │ │ │ │ │ │ │ │ └── truncate_table.jison │ │ │ │ │ │ │ ├── udf │ │ │ │ │ │ │ │ ├── sql_aggregate.jison │ │ │ │ │ │ │ │ ├── sql_arbitrary.jison │ │ │ │ │ │ │ │ └── sql_extract.jison │ │ │ │ │ │ │ └── update │ │ │ │ │ │ │ │ └── update.jison │ │ │ │ │ │ ├── keywords.json │ │ │ │ │ │ ├── sqlParseSupport.js │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── alter │ │ │ │ │ │ │ └── alterScheduledQuery.test.js │ │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ └── createScheduledQuery.test.js │ │ │ │ │ │ │ ├── drop │ │ │ │ │ │ │ └── dropScheduledQuery.test.js │ │ │ │ │ │ │ ├── hiveAutocompleteParser.Abort.test.js │ │ │ │ │ │ │ ├── hiveAutocompleteParser.Alter.test.js │ │ │ │ │ │ │ ├── hiveAutocompleteParser.Analyze.test.js │ │ │ │ │ │ │ ├── hiveAutocompleteParser.Create.test.js │ │ │ │ │ │ │ ├── hiveAutocompleteParser.Describe.test.js │ │ │ │ │ │ │ ├── hiveAutocompleteParser.Drop.test.js │ │ │ │ │ │ │ ├── hiveAutocompleteParser.Error.test.js │ │ │ │ │ │ │ ├── hiveAutocompleteParser.Grant.test.js │ │ │ │ │ │ │ ├── hiveAutocompleteParser.ImportExport.test.js │ │ │ │ │ │ │ ├── hiveAutocompleteParser.Insert.test.js │ │ │ │ │ │ │ ├── hiveAutocompleteParser.Load.test.js │ │ │ │ │ │ │ ├── hiveAutocompleteParser.Locations.test.js │ │ │ │ │ │ │ ├── hiveAutocompleteParser.Select.test.js │ │ │ │ │ │ │ ├── hiveAutocompleteParser.Set.test.js │ │ │ │ │ │ │ ├── hiveAutocompleteParser.Show.test.js │ │ │ │ │ │ │ ├── hiveAutocompleteParser.Truncate.test.js │ │ │ │ │ │ │ ├── hiveAutocompleteParser.Update.test.js │ │ │ │ │ │ │ ├── hiveAutocompleteParser.Use.test.js │ │ │ │ │ │ │ ├── hiveAutocompleteParser.test.js │ │ │ │ │ │ │ └── hiveSyntaxParser.test.js │ │ │ │ │ ├── impala │ │ │ │ │ │ ├── impalaAutocompleteParser.js │ │ │ │ │ │ ├── impalaSyntaxParser.js │ │ │ │ │ │ ├── jison │ │ │ │ │ │ │ ├── alter │ │ │ │ │ │ │ │ ├── alter_common.jison │ │ │ │ │ │ │ │ ├── alter_database.jison │ │ │ │ │ │ │ │ ├── alter_table.jison │ │ │ │ │ │ │ │ └── alter_view.jison │ │ │ │ │ │ │ ├── autocomplete_header.jison │ │ │ │ │ │ │ ├── comment │ │ │ │ │ │ │ │ └── comment_on.jison │ │ │ │ │ │ │ ├── compute │ │ │ │ │ │ │ │ └── compute_stats.jison │ │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ │ ├── create_aggregate_function.jison │ │ │ │ │ │ │ │ ├── create_common.jison │ │ │ │ │ │ │ │ ├── create_database.jison │ │ │ │ │ │ │ │ ├── create_function.jison │ │ │ │ │ │ │ │ ├── create_role.jison │ │ │ │ │ │ │ │ ├── create_table.jison │ │ │ │ │ │ │ │ └── create_view.jison │ │ │ │ │ │ │ ├── delete │ │ │ │ │ │ │ │ └── delete.jison │ │ │ │ │ │ │ ├── describe │ │ │ │ │ │ │ │ ├── describe.jison │ │ │ │ │ │ │ │ ├── describe_database.jison │ │ │ │ │ │ │ │ └── describe_history.jison │ │ │ │ │ │ │ ├── drop │ │ │ │ │ │ │ │ ├── drop_aggregate_function.jison │ │ │ │ │ │ │ │ ├── drop_common.jison │ │ │ │ │ │ │ │ ├── drop_database.jison │ │ │ │ │ │ │ │ ├── drop_database.test.json │ │ │ │ │ │ │ │ ├── drop_function.jison │ │ │ │ │ │ │ │ ├── drop_incremental_stats.jison │ │ │ │ │ │ │ │ ├── drop_role.jison │ │ │ │ │ │ │ │ ├── drop_stats.jison │ │ │ │ │ │ │ │ ├── drop_table.jison │ │ │ │ │ │ │ │ └── drop_view.jison │ │ │ │ │ │ │ ├── grant │ │ │ │ │ │ │ │ ├── grant_common.jison │ │ │ │ │ │ │ │ ├── grant_on.jison │ │ │ │ │ │ │ │ └── grant_role.jison │ │ │ │ │ │ │ ├── insert │ │ │ │ │ │ │ │ ├── cte_insert.jison │ │ │ │ │ │ │ │ ├── insert.jison │ │ │ │ │ │ │ │ └── insert_common.jison │ │ │ │ │ │ │ ├── invalidate │ │ │ │ │ │ │ │ └── invalidate_metadata.jison │ │ │ │ │ │ │ ├── load │ │ │ │ │ │ │ │ └── load_data.jison │ │ │ │ │ │ │ ├── refresh │ │ │ │ │ │ │ │ └── refresh.jison │ │ │ │ │ │ │ ├── revoke │ │ │ │ │ │ │ │ ├── revoke_common.jison │ │ │ │ │ │ │ │ ├── revoke_on.jison │ │ │ │ │ │ │ │ └── revoke_role.jison │ │ │ │ │ │ │ ├── select │ │ │ │ │ │ │ │ ├── joins.jison │ │ │ │ │ │ │ │ ├── limit_clause.jison │ │ │ │ │ │ │ │ ├── offset_clause.jison │ │ │ │ │ │ │ │ ├── order_by_clause.jison │ │ │ │ │ │ │ │ ├── select.jison │ │ │ │ │ │ │ │ └── select_conditions.jison │ │ │ │ │ │ │ ├── set │ │ │ │ │ │ │ │ └── set.jison │ │ │ │ │ │ │ ├── show │ │ │ │ │ │ │ │ ├── show_column_stats.jison │ │ │ │ │ │ │ │ ├── show_common.jison │ │ │ │ │ │ │ │ ├── show_create_table.jison │ │ │ │ │ │ │ │ ├── show_current_roles.jison │ │ │ │ │ │ │ │ ├── show_databases.jison │ │ │ │ │ │ │ │ ├── show_files.jison │ │ │ │ │ │ │ │ ├── show_functions.jison │ │ │ │ │ │ │ │ ├── show_grant.jison │ │ │ │ │ │ │ │ ├── show_partitions.jison │ │ │ │ │ │ │ │ ├── show_range_partitions.jison │ │ │ │ │ │ │ │ ├── show_role.jison │ │ │ │ │ │ │ │ ├── show_roles.jison │ │ │ │ │ │ │ │ ├── show_table_stats.jison │ │ │ │ │ │ │ │ └── show_tables.jison │ │ │ │ │ │ │ ├── sql.jisonlex │ │ │ │ │ │ │ ├── sql_error.jison │ │ │ │ │ │ │ ├── sql_main.jison │ │ │ │ │ │ │ ├── sql_valueExpression.jison │ │ │ │ │ │ │ ├── structure.json │ │ │ │ │ │ │ ├── syntax_header.jison │ │ │ │ │ │ │ ├── truncate │ │ │ │ │ │ │ │ └── truncate_table.jison │ │ │ │ │ │ │ ├── udf │ │ │ │ │ │ │ │ ├── aggregate │ │ │ │ │ │ │ │ │ ├── aggregate_common.jison │ │ │ │ │ │ │ │ │ ├── appx_median.jison │ │ │ │ │ │ │ │ │ ├── count.jison │ │ │ │ │ │ │ │ │ ├── group_concat.jison │ │ │ │ │ │ │ │ │ ├── ndv.jison │ │ │ │ │ │ │ │ │ ├── stddev.jison │ │ │ │ │ │ │ │ │ ├── sum.jison │ │ │ │ │ │ │ │ │ ├── variance_pop.jison │ │ │ │ │ │ │ │ │ └── variance_samp.jison │ │ │ │ │ │ │ │ └── function │ │ │ │ │ │ │ │ │ ├── extract.jison │ │ │ │ │ │ │ │ │ ├── replace.jison │ │ │ │ │ │ │ │ │ └── user.jison │ │ │ │ │ │ │ ├── update │ │ │ │ │ │ │ │ └── update.jison │ │ │ │ │ │ │ └── upsert │ │ │ │ │ │ │ │ ├── cte_upsert.jison │ │ │ │ │ │ │ │ └── upsert.jison │ │ │ │ │ │ ├── sqlParseSupport.js │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── impalaAutocompleteParser.Alter.test.js │ │ │ │ │ │ │ ├── impalaAutocompleteParser.Analyze.test.js │ │ │ │ │ │ │ ├── impalaAutocompleteParser.Create.test.js │ │ │ │ │ │ │ ├── impalaAutocompleteParser.Describe.test.js │ │ │ │ │ │ │ ├── impalaAutocompleteParser.Drop.test.js │ │ │ │ │ │ │ ├── impalaAutocompleteParser.Error.test.js │ │ │ │ │ │ │ ├── impalaAutocompleteParser.Grant.test.js │ │ │ │ │ │ │ ├── impalaAutocompleteParser.Insert.test.js │ │ │ │ │ │ │ ├── impalaAutocompleteParser.Load.test.js │ │ │ │ │ │ │ ├── impalaAutocompleteParser.Locations.test.js │ │ │ │ │ │ │ ├── impalaAutocompleteParser.Select.test.js │ │ │ │ │ │ │ ├── impalaAutocompleteParser.Set.test.js │ │ │ │ │ │ │ ├── impalaAutocompleteParser.Show.test.js │ │ │ │ │ │ │ ├── impalaAutocompleteParser.Update.test.js │ │ │ │ │ │ │ ├── impalaAutocompleteParser.Use.test.js │ │ │ │ │ │ │ ├── impalaAutocompleteParser.test.js │ │ │ │ │ │ │ └── impalaSyntaxParser.test.js │ │ │ │ │ ├── ksql │ │ │ │ │ │ ├── jison │ │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ │ └── sql_list.jison │ │ │ │ │ │ │ ├── show │ │ │ │ │ │ │ │ └── sql_show.jison │ │ │ │ │ │ │ ├── sql.jisonlex │ │ │ │ │ │ │ └── structure.json │ │ │ │ │ │ ├── ksqlAutocompleteParser.js │ │ │ │ │ │ ├── ksqlSyntaxParser.js │ │ │ │ │ │ ├── sqlParseSupport.js │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── ksqlAutocompleteParser.Create.test.js │ │ │ │ │ │ │ ├── ksqlAutocompleteParser.Drop.test.js │ │ │ │ │ │ │ ├── ksqlAutocompleteParser.Error.test.js │ │ │ │ │ │ │ ├── ksqlAutocompleteParser.Insert.test.js │ │ │ │ │ │ │ ├── ksqlAutocompleteParser.Locations.test.js │ │ │ │ │ │ │ ├── ksqlAutocompleteParser.Select.test.js │ │ │ │ │ │ │ ├── ksqlAutocompleteParser.Set.test.js │ │ │ │ │ │ │ ├── ksqlAutocompleteParser.Show.test.js │ │ │ │ │ │ │ ├── ksqlAutocompleteParser.test.js │ │ │ │ │ │ │ └── ksqlSyntaxParser.test.js │ │ │ │ │ ├── phoenix │ │ │ │ │ │ ├── jison │ │ │ │ │ │ │ ├── sql.jisonlex │ │ │ │ │ │ │ ├── structure.json │ │ │ │ │ │ │ └── upsert │ │ │ │ │ │ │ │ └── upsert.jison │ │ │ │ │ │ ├── phoenixAutocompleteParser.js │ │ │ │ │ │ ├── phoenixSyntaxParser.js │ │ │ │ │ │ ├── sqlParseSupport.js │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── phoenixAutocompleteParser.Alter.test.js │ │ │ │ │ │ │ ├── phoenixAutocompleteParser.Create.test.js │ │ │ │ │ │ │ ├── phoenixAutocompleteParser.Drop.test.js │ │ │ │ │ │ │ ├── phoenixAutocompleteParser.Error.test.js │ │ │ │ │ │ │ ├── phoenixAutocompleteParser.Locations.test.js │ │ │ │ │ │ │ ├── phoenixAutocompleteParser.Select.test.js │ │ │ │ │ │ │ ├── phoenixAutocompleteParser.Set.test.js │ │ │ │ │ │ │ ├── phoenixAutocompleteParser.Update.test.js │ │ │ │ │ │ │ ├── phoenixAutocompleteParser.Upsert.test.js │ │ │ │ │ │ │ ├── phoenixAutocompleteParser.Use.test.js │ │ │ │ │ │ │ ├── phoenixAutocompleteParser.test.js │ │ │ │ │ │ │ └── phoenixSyntaxParser.test.js │ │ │ │ │ ├── presto │ │ │ │ │ │ ├── jison │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ └── table_constraint.jison │ │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ │ ├── create_common.jison │ │ │ │ │ │ │ │ └── create_database_no_db.jison │ │ │ │ │ │ │ ├── load │ │ │ │ │ │ │ │ └── load_data.jison │ │ │ │ │ │ │ ├── msck │ │ │ │ │ │ │ │ └── msck.jison │ │ │ │ │ │ │ ├── sql.jisonlex │ │ │ │ │ │ │ ├── sql_main.jison │ │ │ │ │ │ │ └── structure.json │ │ │ │ │ │ ├── keywords.json │ │ │ │ │ │ ├── prestoAutocompleteParser.js │ │ │ │ │ │ ├── prestoSyntaxParser.js │ │ │ │ │ │ ├── sqlParseSupport.js │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── prestoAutocompleteParser.Alter.test.js │ │ │ │ │ │ │ ├── prestoAutocompleteParser.Analyze.test.js │ │ │ │ │ │ │ ├── prestoAutocompleteParser.Create.test.js │ │ │ │ │ │ │ ├── prestoAutocompleteParser.Describe.test.js │ │ │ │ │ │ │ ├── prestoAutocompleteParser.Drop.test.js │ │ │ │ │ │ │ ├── prestoAutocompleteParser.Error.test.js │ │ │ │ │ │ │ ├── prestoAutocompleteParser.Grant.test.js │ │ │ │ │ │ │ ├── prestoAutocompleteParser.ImportExport.test.js │ │ │ │ │ │ │ ├── prestoAutocompleteParser.Insert.test.js │ │ │ │ │ │ │ ├── prestoAutocompleteParser.Load.test.js │ │ │ │ │ │ │ ├── prestoAutocompleteParser.Locations.test.js │ │ │ │ │ │ │ ├── prestoAutocompleteParser.Select.test.js │ │ │ │ │ │ │ ├── prestoAutocompleteParser.Set.test.js │ │ │ │ │ │ │ ├── prestoAutocompleteParser.Show.test.js │ │ │ │ │ │ │ ├── prestoAutocompleteParser.Update.test.js │ │ │ │ │ │ │ ├── prestoAutocompleteParser.Use.test.js │ │ │ │ │ │ │ ├── prestoAutocompleteParser.test.js │ │ │ │ │ │ │ └── prestoSyntaxParser.test.js │ │ │ │ │ ├── sharedParserTests.ts │ │ │ │ │ ├── sparksql │ │ │ │ │ │ ├── jison │ │ │ │ │ │ │ ├── add │ │ │ │ │ │ │ │ ├── add_archive.jison │ │ │ │ │ │ │ │ ├── add_archive.test.json │ │ │ │ │ │ │ │ ├── add_archives.jison │ │ │ │ │ │ │ │ ├── add_archives.test.json │ │ │ │ │ │ │ │ ├── add_common.jison │ │ │ │ │ │ │ │ ├── add_common.test.json │ │ │ │ │ │ │ │ ├── add_file.jison │ │ │ │ │ │ │ │ ├── add_file.test.json │ │ │ │ │ │ │ │ ├── add_files.jison │ │ │ │ │ │ │ │ ├── add_files.test.json │ │ │ │ │ │ │ │ ├── add_jar.jison │ │ │ │ │ │ │ │ ├── add_jar.test.json │ │ │ │ │ │ │ │ ├── add_jars.jison │ │ │ │ │ │ │ │ └── add_jars.test.json │ │ │ │ │ │ │ ├── alter │ │ │ │ │ │ │ │ ├── alter_common.jison │ │ │ │ │ │ │ │ ├── alter_common.test.json │ │ │ │ │ │ │ │ ├── alter_database.jison │ │ │ │ │ │ │ │ ├── alter_database.test.json │ │ │ │ │ │ │ │ ├── alter_table.jison │ │ │ │ │ │ │ │ ├── alter_table.test.json │ │ │ │ │ │ │ │ ├── alter_view.jison │ │ │ │ │ │ │ │ └── alter_view.test.json │ │ │ │ │ │ │ ├── analyze │ │ │ │ │ │ │ │ ├── analyze_common.jison │ │ │ │ │ │ │ │ ├── analyze_common.test.json │ │ │ │ │ │ │ │ ├── analyze_table.jison │ │ │ │ │ │ │ │ ├── analyze_table.test.json │ │ │ │ │ │ │ │ ├── analyze_tables.jison │ │ │ │ │ │ │ │ └── analyze_tables.test.json │ │ │ │ │ │ │ ├── cache │ │ │ │ │ │ │ │ ├── cache_common.jison │ │ │ │ │ │ │ │ ├── cache_common.test.json │ │ │ │ │ │ │ │ ├── cache_table.jison │ │ │ │ │ │ │ │ └── cache_table.test.json │ │ │ │ │ │ │ ├── clear │ │ │ │ │ │ │ │ ├── clear_cache.jison │ │ │ │ │ │ │ │ ├── clear_cache.test.json │ │ │ │ │ │ │ │ ├── clear_common.jison │ │ │ │ │ │ │ │ └── clear_common.test.json │ │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ │ ├── create_common.jison │ │ │ │ │ │ │ │ ├── create_common.test.json │ │ │ │ │ │ │ │ ├── create_database.jison │ │ │ │ │ │ │ │ ├── create_database.test.json │ │ │ │ │ │ │ │ ├── create_function.jison │ │ │ │ │ │ │ │ ├── create_function.test.json │ │ │ │ │ │ │ │ ├── create_table.jison │ │ │ │ │ │ │ │ ├── create_table.test.json │ │ │ │ │ │ │ │ ├── create_view.jison │ │ │ │ │ │ │ │ └── create_view.test.json │ │ │ │ │ │ │ ├── describe │ │ │ │ │ │ │ │ ├── describe_common.jison │ │ │ │ │ │ │ │ ├── describe_common.test.json │ │ │ │ │ │ │ │ ├── describe_database.jison │ │ │ │ │ │ │ │ ├── describe_database.test.json │ │ │ │ │ │ │ │ ├── describe_function.jison │ │ │ │ │ │ │ │ ├── describe_function.test.json │ │ │ │ │ │ │ │ ├── describe_query.jison │ │ │ │ │ │ │ │ ├── describe_query.test.json │ │ │ │ │ │ │ │ ├── describe_table.jison │ │ │ │ │ │ │ │ └── describe_table.test.json │ │ │ │ │ │ │ ├── drop │ │ │ │ │ │ │ │ ├── drop_common.jison │ │ │ │ │ │ │ │ ├── drop_common.test.json │ │ │ │ │ │ │ │ ├── drop_function.jison │ │ │ │ │ │ │ │ ├── drop_function.test.json │ │ │ │ │ │ │ │ ├── drop_table.jison │ │ │ │ │ │ │ │ └── drop_table.test.json │ │ │ │ │ │ │ ├── insert │ │ │ │ │ │ │ │ ├── insert_common.jison │ │ │ │ │ │ │ │ ├── insert_common.test.json │ │ │ │ │ │ │ │ ├── insert_overwrite_directory.jison │ │ │ │ │ │ │ │ ├── insert_overwrite_directory.test.json │ │ │ │ │ │ │ │ ├── insert_table.jison │ │ │ │ │ │ │ │ └── insert_table.test.json │ │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ │ ├── list_archive.jison │ │ │ │ │ │ │ │ ├── list_archive.test.json │ │ │ │ │ │ │ │ ├── list_archives.jison │ │ │ │ │ │ │ │ ├── list_archives.test.json │ │ │ │ │ │ │ │ ├── list_common.jison │ │ │ │ │ │ │ │ ├── list_common.test.json │ │ │ │ │ │ │ │ ├── list_file.jison │ │ │ │ │ │ │ │ ├── list_file.test.json │ │ │ │ │ │ │ │ ├── list_files.jison │ │ │ │ │ │ │ │ ├── list_files.test.json │ │ │ │ │ │ │ │ ├── list_jar.jison │ │ │ │ │ │ │ │ ├── list_jar.test.json │ │ │ │ │ │ │ │ ├── list_jars.jison │ │ │ │ │ │ │ │ └── list_jars.test.json │ │ │ │ │ │ │ ├── load │ │ │ │ │ │ │ │ ├── load_data.jison │ │ │ │ │ │ │ │ └── load_data.test.json │ │ │ │ │ │ │ ├── main.jison │ │ │ │ │ │ │ ├── main.test.json │ │ │ │ │ │ │ ├── msck │ │ │ │ │ │ │ │ ├── msck_common.jison │ │ │ │ │ │ │ │ ├── msck_common.test.json │ │ │ │ │ │ │ │ ├── msck_repair_table.jison │ │ │ │ │ │ │ │ └── msck_repair_table.test.json │ │ │ │ │ │ │ ├── refresh │ │ │ │ │ │ │ │ ├── refresh_common.jison │ │ │ │ │ │ │ │ ├── refresh_common.test.json │ │ │ │ │ │ │ │ ├── refresh_function.jison │ │ │ │ │ │ │ │ ├── refresh_function.test.json │ │ │ │ │ │ │ │ ├── refresh_resource.jison │ │ │ │ │ │ │ │ ├── refresh_resource.test.json │ │ │ │ │ │ │ │ ├── refresh_table.jison │ │ │ │ │ │ │ │ └── refresh_table.test.json │ │ │ │ │ │ │ ├── reset │ │ │ │ │ │ │ │ ├── reset_config.jison │ │ │ │ │ │ │ │ └── reset_config.test.json │ │ │ │ │ │ │ ├── set │ │ │ │ │ │ │ │ ├── set_common.jison │ │ │ │ │ │ │ │ ├── set_config.jison │ │ │ │ │ │ │ │ └── set_config.test.json │ │ │ │ │ │ │ ├── show │ │ │ │ │ │ │ │ ├── show_columns.jison │ │ │ │ │ │ │ │ ├── show_columns.test.json │ │ │ │ │ │ │ │ ├── show_common.jison │ │ │ │ │ │ │ │ ├── show_common.test.json │ │ │ │ │ │ │ │ ├── show_create_table.jison │ │ │ │ │ │ │ │ ├── show_create_table.test.json │ │ │ │ │ │ │ │ ├── show_databases.jison │ │ │ │ │ │ │ │ ├── show_databases.test.json │ │ │ │ │ │ │ │ ├── show_functions.jison │ │ │ │ │ │ │ │ ├── show_functions.test.json │ │ │ │ │ │ │ │ ├── show_partitions.jison │ │ │ │ │ │ │ │ ├── show_partitions.test.json │ │ │ │ │ │ │ │ ├── show_table_extended.jison │ │ │ │ │ │ │ │ ├── show_table_extended.test.json │ │ │ │ │ │ │ │ ├── show_tables.jison │ │ │ │ │ │ │ │ ├── show_tables.test.json │ │ │ │ │ │ │ │ ├── show_tblproperties.jison │ │ │ │ │ │ │ │ ├── show_tblproperties.test.json │ │ │ │ │ │ │ │ ├── show_views.jison │ │ │ │ │ │ │ │ └── show_views.test.json │ │ │ │ │ │ │ ├── sql.jisonlex │ │ │ │ │ │ │ ├── structure.json │ │ │ │ │ │ │ ├── truncate │ │ │ │ │ │ │ │ ├── truncate_common.jison │ │ │ │ │ │ │ │ ├── truncate_common.test.json │ │ │ │ │ │ │ │ ├── truncate_table.jison │ │ │ │ │ │ │ │ └── truncate_table.test.json │ │ │ │ │ │ │ └── uncache │ │ │ │ │ │ │ │ ├── uncache_common.jison │ │ │ │ │ │ │ │ ├── uncache_common.test.json │ │ │ │ │ │ │ │ ├── uncache_table.jison │ │ │ │ │ │ │ │ └── uncache_table.test.json │ │ │ │ │ │ ├── sparksqlAutocompleteParser.Locations.test.js │ │ │ │ │ │ ├── sparksqlAutocompleteParser.js │ │ │ │ │ │ ├── sparksqlAutocompleteParser.test.ts │ │ │ │ │ │ ├── sparksqlSyntaxParser.js │ │ │ │ │ │ ├── sparksqlSyntaxParser.test.js │ │ │ │ │ │ └── sqlParseSupport.js │ │ │ │ │ ├── sqlParseUtils.js │ │ │ │ │ ├── sqlParserRepository.ts │ │ │ │ │ └── testUtils.ts │ │ │ │ ├── sqlParseSupport.js │ │ │ │ ├── sqlStatementsParser.d.ts │ │ │ │ ├── sqlStatementsParser.js │ │ │ │ ├── sqlStatementsParser.test.js │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── reactComponents │ │ │ │ ├── AppBanner │ │ │ │ │ ├── AppBanner.scss │ │ │ │ │ ├── AppBanner.test.tsx │ │ │ │ │ └── AppBanner.tsx │ │ │ │ ├── BottomSlidePanel │ │ │ │ │ ├── BottomSlidePanel.scss │ │ │ │ │ ├── BottomSlidePanel.test.tsx │ │ │ │ │ └── BottomSlidePanel.tsx │ │ │ │ ├── CommonHeader │ │ │ │ │ ├── CommonHeader.scss │ │ │ │ │ ├── CommonHeader.test.tsx │ │ │ │ │ └── CommonHeader.tsx │ │ │ │ ├── DragAndDrop │ │ │ │ │ ├── DragAndDrop.scss │ │ │ │ │ ├── DragAndDrop.test.tsx │ │ │ │ │ └── DragAndDrop.tsx │ │ │ │ ├── FallbackComponent.jsx │ │ │ │ ├── FileUploadQueue │ │ │ │ │ ├── FileUploadQueue.scss │ │ │ │ │ ├── FileUploadQueue.test.tsx │ │ │ │ │ ├── FileUploadQueue.tsx │ │ │ │ │ ├── FileUploadRow │ │ │ │ │ │ ├── FileUploadRow.scss │ │ │ │ │ │ ├── FileUploadRow.test.tsx │ │ │ │ │ │ └── FileUploadRow.tsx │ │ │ │ │ └── event.ts │ │ │ │ ├── FormInput │ │ │ │ │ ├── FileChooserInput │ │ │ │ │ │ ├── FileChooserInput.scss │ │ │ │ │ │ ├── FileChooserInput.test.tsx │ │ │ │ │ │ └── FileChooserInput.tsx │ │ │ │ │ ├── FormInput.scss │ │ │ │ │ ├── FormInput.test.tsx │ │ │ │ │ └── FormInput.tsx │ │ │ │ ├── GlobalAlert │ │ │ │ │ ├── GlobalAlert.scss │ │ │ │ │ ├── GlobalAlert.test.tsx │ │ │ │ │ ├── GlobalAlert.tsx │ │ │ │ │ ├── events.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── InputModal │ │ │ │ │ ├── InputModal.test.tsx │ │ │ │ │ └── InputModal.tsx │ │ │ │ ├── LoadingErrorWrapper │ │ │ │ │ ├── LoadingErrorWrapper.scss │ │ │ │ │ ├── LoadingErrorWrapper.test.tsx │ │ │ │ │ └── LoadingErrorWrapper.tsx │ │ │ │ ├── PaginatedTable │ │ │ │ │ ├── PaginatedTable.scss │ │ │ │ │ ├── PaginatedTable.test.tsx │ │ │ │ │ └── PaginatedTable.tsx │ │ │ │ ├── Pagination │ │ │ │ │ ├── Pagination.scss │ │ │ │ │ └── Pagination.tsx │ │ │ │ ├── PathBrowser │ │ │ │ │ ├── Breadcrumb │ │ │ │ │ │ ├── Breadcrumb.scss │ │ │ │ │ │ └── Breadcrumb.tsx │ │ │ │ │ ├── OverflowingItem │ │ │ │ │ │ ├── OverflowTooltip.tsx │ │ │ │ │ │ ├── OverflowingItem.scss │ │ │ │ │ │ └── OverflowingItem.tsx │ │ │ │ │ ├── PathBrowser.scss │ │ │ │ │ ├── PathBrowser.test.tsx │ │ │ │ │ ├── PathBrowser.tsx │ │ │ │ │ ├── PathBrowser.util.test.ts │ │ │ │ │ └── PathBrowser.util.ts │ │ │ │ ├── PushDrawer │ │ │ │ │ ├── Drawer │ │ │ │ │ │ ├── Drawer.scss │ │ │ │ │ │ └── Drawer.tsx │ │ │ │ │ ├── DrawerHeader │ │ │ │ │ │ ├── DrawerHeader.scss │ │ │ │ │ │ └── DrawerHeader.tsx │ │ │ │ │ ├── PushDrawer.scss │ │ │ │ │ ├── PushDrawer.test.tsx │ │ │ │ │ └── PushDrawer.tsx │ │ │ │ ├── ReactExampleGlobal │ │ │ │ │ ├── ReactExampleGlobal.scss │ │ │ │ │ ├── ReactExampleGlobal.test.tsx │ │ │ │ │ └── ReactExampleGlobal.tsx │ │ │ │ ├── TaskServer │ │ │ │ │ ├── ScheduleTaskModal │ │ │ │ │ │ ├── ScheduleTaskModal.test.tsx │ │ │ │ │ │ └── ScheduleTaskModal.tsx │ │ │ │ │ ├── TaskLogsModal │ │ │ │ │ │ ├── TaskLogsModal.scss │ │ │ │ │ │ ├── TaskLogsModal.test.tsx │ │ │ │ │ │ └── TaskLogsModal.tsx │ │ │ │ │ ├── TaskServer.scss │ │ │ │ │ ├── TaskServer.test.tsx │ │ │ │ │ ├── TaskServer.tsx │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── Toolbar │ │ │ │ │ ├── Toolbar.scss │ │ │ │ │ ├── Toolbar.test.tsx │ │ │ │ │ ├── Toolbar.tsx │ │ │ │ │ ├── ToolbarButton │ │ │ │ │ │ ├── ToolbarButton.scss │ │ │ │ │ │ └── ToolbarButton.tsx │ │ │ │ │ ├── ToolbarDivider │ │ │ │ │ │ ├── ToolbarDivider.scss │ │ │ │ │ │ └── ToolbarDivider.tsx │ │ │ │ │ └── ToolbarShared.scss │ │ │ │ ├── WelcomeTour │ │ │ │ │ ├── WelcomeTour.module.scss │ │ │ │ │ ├── WelcomeTour.scss │ │ │ │ │ ├── WelcomeTour.test.tsx │ │ │ │ │ └── WelcomeTour.tsx │ │ │ │ ├── createRootElements.js │ │ │ │ └── imports.js │ │ │ ├── sidePanelViewModel.js │ │ │ ├── sidePanelViewModel.test.js │ │ │ ├── sql │ │ │ │ ├── autocompleteResults.js │ │ │ │ ├── autocompleteResults.test.js │ │ │ │ ├── reference │ │ │ │ │ ├── apiCache.ts │ │ │ │ │ ├── apiUtils.test.ts │ │ │ │ │ ├── apiUtils.ts │ │ │ │ │ ├── calcite │ │ │ │ │ │ └── reservedKeywords.ts │ │ │ │ │ ├── flink │ │ │ │ │ │ ├── reservedKeywords.ts │ │ │ │ │ │ ├── typeConversion.ts │ │ │ │ │ │ └── udfReference.ts │ │ │ │ │ ├── generic │ │ │ │ │ │ ├── reservedKeywords.ts │ │ │ │ │ │ ├── typeConversion.ts │ │ │ │ │ │ └── udfReference.ts │ │ │ │ │ ├── hive │ │ │ │ │ │ ├── reservedKeywords.ts │ │ │ │ │ │ ├── typeConversion.ts │ │ │ │ │ │ └── udfReference.ts │ │ │ │ │ ├── impala │ │ │ │ │ │ ├── reservedKeywords.ts │ │ │ │ │ │ ├── setReference.ts │ │ │ │ │ │ ├── typeConversion.ts │ │ │ │ │ │ └── udfReference.ts │ │ │ │ │ ├── pig │ │ │ │ │ │ └── udfReference.ts │ │ │ │ │ ├── postgresql │ │ │ │ │ │ └── reservedKeywords.ts │ │ │ │ │ ├── presto │ │ │ │ │ │ └── reservedKeywords.ts │ │ │ │ │ ├── sparksql │ │ │ │ │ │ ├── reservedKeywords.ts │ │ │ │ │ │ ├── typeConversion.ts │ │ │ │ │ │ └── udfReference.ts │ │ │ │ │ ├── sqlReferenceRepository.ts │ │ │ │ │ ├── sqlUdfRepository.test.ts │ │ │ │ │ ├── sqlUdfRepository.ts │ │ │ │ │ ├── typeUtils.test.ts │ │ │ │ │ ├── typeUtils.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── sqlAutocompleter.js │ │ │ │ ├── sqlAutocompleter.test.ignore.js │ │ │ │ ├── sqlUtils.ts │ │ │ │ ├── stringDistance.js │ │ │ │ ├── stringDistance.test.js │ │ │ │ ├── test │ │ │ │ │ └── lotsOfParseResults.js │ │ │ │ └── workers │ │ │ │ │ ├── events.ts │ │ │ │ │ ├── hueWorkerHandler.ts │ │ │ │ │ ├── registrationUtils.ts │ │ │ │ │ ├── sqlLocationWebWorker.ts │ │ │ │ │ ├── sqlSyntaxWebWorker.ts │ │ │ │ │ └── workerUtils.ts │ │ │ ├── topNavViewModel.js │ │ │ ├── types │ │ │ │ ├── types.ts │ │ │ │ └── vue-datepicker.d.ts │ │ │ ├── utils │ │ │ │ ├── __mocks__ │ │ │ │ │ └── i18nReact.ts │ │ │ │ ├── constants │ │ │ │ │ ├── common.ts │ │ │ │ │ └── storageBrowser.ts │ │ │ │ ├── customIntervals.js │ │ │ │ ├── customIntervals.test.js │ │ │ │ ├── d3Extensions.js │ │ │ │ ├── dateTimeUtils.ts │ │ │ │ ├── formatBytes.test.ts │ │ │ │ ├── formatBytes.ts │ │ │ │ ├── hdfsAutocompleter.js │ │ │ │ ├── hdfsAutocompleter.test.js │ │ │ │ ├── hooks │ │ │ │ │ ├── useCurrentApp │ │ │ │ │ │ ├── useCurrentApp.test.tsx │ │ │ │ │ │ └── useCurrentApp.ts │ │ │ │ │ ├── useDataCatalog │ │ │ │ │ │ ├── useDataCatalog.test.tsx │ │ │ │ │ │ └── useDataCatalog.tsx │ │ │ │ │ ├── useFileUpload │ │ │ │ │ │ ├── types.ts │ │ │ │ │ │ ├── useChunkUpload.test.tsx │ │ │ │ │ │ ├── useChunkUpload.ts │ │ │ │ │ │ ├── useFileUpload.test.tsx │ │ │ │ │ │ ├── useFileUpload.ts │ │ │ │ │ │ ├── useRegularUpload.test.tsx │ │ │ │ │ │ ├── useRegularUpload.ts │ │ │ │ │ │ ├── utils.test.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── useHuePubSub │ │ │ │ │ │ ├── useHuePubSub.test.tsx │ │ │ │ │ │ └── useHuePubSub.ts │ │ │ │ │ ├── useLoadData │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── useLoadData.ts │ │ │ │ │ │ ├── useLoadData.test.tsx │ │ │ │ │ │ └── useLoadData.ts │ │ │ │ │ ├── useQueueProcessor │ │ │ │ │ │ ├── useQueueProcessor.test.tsx │ │ │ │ │ │ └── useQueueProcessor.ts │ │ │ │ │ ├── useResizeObserver │ │ │ │ │ │ ├── useResizeObserver.test.tsx │ │ │ │ │ │ └── useResizeObserver.ts │ │ │ │ │ └── useSaveData │ │ │ │ │ │ ├── useSaveData.test.tsx │ │ │ │ │ │ └── useSaveData.ts │ │ │ │ ├── html │ │ │ │ │ ├── bootstrapRatios.ts │ │ │ │ │ ├── deXSS.test.ts │ │ │ │ │ ├── deXSS.ts │ │ │ │ │ ├── escapeOutput.ts │ │ │ │ │ ├── getFileBrowseButton.ts │ │ │ │ │ ├── getStyleFromCSSClass.ts │ │ │ │ │ ├── highlight.ts │ │ │ │ │ ├── html2text.ts │ │ │ │ │ ├── htmlEncode.ts │ │ │ │ │ ├── isOverflowing.ts │ │ │ │ │ ├── onHueLinkClick.ts │ │ │ │ │ └── stripHtmlForFunctions.ts │ │ │ │ ├── hueAnalytics.test.ts │ │ │ │ ├── hueAnalytics.ts │ │ │ │ ├── hueColors.js │ │ │ │ ├── hueDebug.ts │ │ │ │ ├── hueDrop.js │ │ │ │ ├── hueGeo.js │ │ │ │ ├── huePubSub.test.ts │ │ │ │ ├── huePubSub.ts │ │ │ │ ├── hueUtils.ts │ │ │ │ ├── i18n.js │ │ │ │ ├── i18nReact.test.ts │ │ │ │ ├── i18nReact.ts │ │ │ │ ├── json.bigDataParse.d.ts │ │ │ │ ├── json.bigDataParse.js │ │ │ │ ├── jsonUtils.test.ts │ │ │ │ ├── jsonUtils.ts │ │ │ │ ├── logError.ts │ │ │ │ ├── multiLineEllipsisHandler.js │ │ │ │ ├── publicPath.js │ │ │ │ ├── screen │ │ │ │ │ ├── exitFullsScreen.ts │ │ │ │ │ ├── goFullScreen.ts │ │ │ │ │ ├── isFullScreen.ts │ │ │ │ │ ├── scrollbarWidth.ts │ │ │ │ │ └── toggleFullScreen.ts │ │ │ │ ├── storageUtils.ts │ │ │ │ ├── string │ │ │ │ │ ├── UUID.ts │ │ │ │ │ ├── changeCasing.test.ts │ │ │ │ │ ├── changeCasing.ts │ │ │ │ │ ├── deleteAllEmptyStringKeys.ts │ │ │ │ │ ├── equalIgnoreCase.ts │ │ │ │ │ ├── includesComplexDBTypeDefinition.ts │ │ │ │ │ ├── includesComplexDBTypeDefinitionComplexDBTypeDefinition.test.js │ │ │ │ │ └── parseHivePseudoJson.ts │ │ │ │ ├── timing │ │ │ │ │ ├── defer.ts │ │ │ │ │ ├── noop.ts │ │ │ │ │ ├── sleep.ts │ │ │ │ │ ├── waitForObservable.ts │ │ │ │ │ ├── waitForRendered.ts │ │ │ │ │ └── waitForVariable.ts │ │ │ │ ├── url │ │ │ │ │ ├── changeURL.test.ts │ │ │ │ │ ├── changeURL.ts │ │ │ │ │ ├── changeURLParameter.test.ts │ │ │ │ │ ├── changeURLParameter.ts │ │ │ │ │ ├── getParameter.ts │ │ │ │ │ ├── getSearchParameter.ts │ │ │ │ │ ├── removeURLParameter.test.ts │ │ │ │ │ ├── removeURLParameter.ts │ │ │ │ │ └── replaceURL.ts │ │ │ │ ├── useDebounce.test.ts │ │ │ │ └── useDebounce.ts │ │ │ ├── vue │ │ │ │ ├── components │ │ │ │ │ └── login │ │ │ │ │ │ └── TrademarkBanner.vue │ │ │ │ ├── webComponentWrap.ts │ │ │ │ └── wrapper │ │ │ │ │ ├── index.ts │ │ │ │ │ └── utils.ts │ │ │ ├── webComponents │ │ │ │ ├── ExecutionAnalysis.ts │ │ │ │ ├── HueIcons.ts │ │ │ │ ├── QueryEditor.ts │ │ │ │ ├── QueryEditorComponents.d.ts │ │ │ │ ├── QueryEditorComponents.ts │ │ │ │ ├── QueryEditorExecuteButton.ts │ │ │ │ ├── QueryEditorHistoryTable.ts │ │ │ │ ├── QueryEditorLimitInput.ts │ │ │ │ ├── QueryEditorProgressBar.ts │ │ │ │ ├── QueryEditorResultTable.ts │ │ │ │ ├── SqlContextSelector.ts │ │ │ │ ├── SqlScratchpad.d.ts │ │ │ │ ├── SqlScratchpad.ts │ │ │ │ └── SqlText.ts │ │ │ └── webpack │ │ │ │ ├── AdjustMapPathsPlugin.js │ │ │ │ ├── configUtils.js │ │ │ │ └── relativeBundleTracker.js │ │ │ ├── kt_renewer.py │ │ │ ├── ldaptestcmd_tests.py │ │ │ ├── lib │ │ │ ├── __init__.py │ │ │ ├── analytics │ │ │ │ ├── __init__.py │ │ │ │ ├── api.py │ │ │ │ ├── lib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── hive.py │ │ │ │ │ └── impala.py │ │ │ │ ├── models.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── apputil.py │ │ │ ├── botserver │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── api.py │ │ │ │ ├── api_tests.py │ │ │ │ ├── apps.py │ │ │ │ ├── migrations │ │ │ │ │ └── __init__.py │ │ │ │ ├── models.py │ │ │ │ ├── slack_client.py │ │ │ │ ├── tests.py │ │ │ │ ├── urls.py │ │ │ │ ├── views.py │ │ │ │ └── views_tests.py │ │ │ ├── classes.py │ │ │ ├── conf.py │ │ │ ├── conf_test.py │ │ │ ├── config_spec_dump.py │ │ │ ├── connectors │ │ │ │ ├── __init__.py │ │ │ │ ├── api.py │ │ │ │ ├── api_tests.py │ │ │ │ ├── models.py │ │ │ │ ├── tests.py │ │ │ │ ├── types.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── daemon_utils.py │ │ │ ├── django_db_util.py │ │ │ ├── django_forms.py │ │ │ ├── django_forms_test.py │ │ │ ├── django_mako.py │ │ │ ├── django_test_util.py │ │ │ ├── django_util.py │ │ │ ├── django_util_test.py │ │ │ ├── djangojson.py │ │ │ ├── djangothrift.py │ │ │ ├── djangothrift_test.py │ │ │ ├── djangothrift_test.thrift │ │ │ ├── exceptions.py │ │ │ ├── exceptions_renderable.py │ │ │ ├── export_csvxls.py │ │ │ ├── export_csvxls_tests.py │ │ │ ├── fs │ │ │ │ ├── __init__.py │ │ │ │ ├── fs_test.py │ │ │ │ ├── gc │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── gs.py │ │ │ │ │ ├── gs_test.py │ │ │ │ │ ├── gsconnection.py │ │ │ │ │ ├── gsfile.py │ │ │ │ │ ├── gsfile_test.py │ │ │ │ │ ├── gsstat.py │ │ │ │ │ ├── gsstat_test.py │ │ │ │ │ ├── upload.py │ │ │ │ │ └── upload_test.py │ │ │ │ ├── ozone │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── ofs.py │ │ │ │ │ ├── ofs_test.py │ │ │ │ │ ├── ofsstat.py │ │ │ │ │ ├── ofsstat_test.py │ │ │ │ │ ├── upload.py │ │ │ │ │ └── upload_test.py │ │ │ │ ├── proxyfs.py │ │ │ │ ├── proxyfs_test.py │ │ │ │ └── s3 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── clients │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── iam.py │ │ │ │ │ │ ├── idbroker.py │ │ │ │ │ │ ├── key.py │ │ │ │ │ │ └── raz.py │ │ │ │ │ ├── aws.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── factory.py │ │ │ │ │ └── generic.py │ │ │ │ │ ├── conf_utils.py │ │ │ │ │ ├── constants.py │ │ │ │ │ └── core │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── file.py │ │ │ │ │ ├── path.py │ │ │ │ │ ├── s3fs.py │ │ │ │ │ ├── stat.py │ │ │ │ │ └── upload.py │ │ │ ├── fsmanager.py │ │ │ ├── gen-py │ │ │ │ ├── __init__.py │ │ │ │ └── djangothrift_test_gen │ │ │ │ │ ├── TestService-remote │ │ │ │ │ ├── TestService.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── constants.py │ │ │ │ │ └── ttypes.py │ │ │ ├── gunicorn_cleanup_utils.py │ │ │ ├── gunicorn_log_utils.py │ │ │ ├── gunicorn_loglistener_minimal_test.py │ │ │ ├── gunicorn_server_utils.py │ │ │ ├── i18n.py │ │ │ ├── idbroker │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── conf.py │ │ │ │ └── tests.py │ │ │ ├── importer │ │ │ │ ├── __init__.py │ │ │ │ ├── api.py │ │ │ │ ├── api_tests.py │ │ │ │ ├── operations.py │ │ │ │ ├── operations_tests.py │ │ │ │ ├── schemas.py │ │ │ │ ├── schemas_tests.py │ │ │ │ ├── serializers.py │ │ │ │ └── serializers_tests.py │ │ │ ├── ip_utils.py │ │ │ ├── ip_utils_test.py │ │ │ ├── json_utils.py │ │ │ ├── metrics │ │ │ │ ├── __init__.py │ │ │ │ ├── file_reporter.py │ │ │ │ ├── registry.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── paginator.py │ │ │ ├── parameterization.py │ │ │ ├── paths.py │ │ │ ├── python_util.py │ │ │ ├── python_util_test.py │ │ │ ├── raz │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── clients.py │ │ │ │ ├── clients_test.py │ │ │ │ ├── raz_client.py │ │ │ │ ├── raz_client_test.py │ │ │ │ └── signer_protos_pb2.py │ │ │ ├── rest │ │ │ │ ├── __init__.py │ │ │ │ ├── http_client.py │ │ │ │ ├── http_client_test.py │ │ │ │ ├── raz_http_client.py │ │ │ │ ├── raz_http_client_test.py │ │ │ │ ├── resource.py │ │ │ │ ├── resource_test.py │ │ │ │ ├── streamed_resource.py │ │ │ │ └── unsecure_http_client.py │ │ │ ├── sasl_compat.py │ │ │ ├── scheduler │ │ │ │ ├── __init__.py │ │ │ │ ├── api.py │ │ │ │ ├── lib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── api.py │ │ │ │ │ ├── beat.py │ │ │ │ │ ├── hive.py │ │ │ │ │ └── oozie.py │ │ │ │ ├── models.py │ │ │ │ ├── tasks.py │ │ │ │ └── urls.py │ │ │ ├── sdxaas │ │ │ │ ├── __init__.py │ │ │ │ ├── knox_jwt.py │ │ │ │ └── knox_jwt_test.py │ │ │ ├── security_util.py │ │ │ ├── security_util_test.py │ │ │ ├── tasks │ │ │ │ ├── __init__.py │ │ │ │ ├── compress_files │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── compress_in_hdfs.sh │ │ │ │ │ └── compress_utils.py │ │ │ │ └── extract_archive │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── extract_in_hdfs.sh │ │ │ │ │ └── extract_utils.py │ │ │ ├── template_loader.py │ │ │ ├── test_utils.py │ │ │ ├── thread_util.py │ │ │ ├── thread_util_test.py │ │ │ ├── thrift_ │ │ │ │ ├── TSSLSocketWithWildcardSAN.py │ │ │ │ ├── __init__.py │ │ │ │ └── http_client.py │ │ │ ├── thrift_sasl.py │ │ │ ├── thrift_util.py │ │ │ ├── thrift_util_test.py │ │ │ ├── tls_utils.py │ │ │ ├── vcs │ │ │ │ ├── __init__.py │ │ │ │ ├── api.py │ │ │ │ ├── apis │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base_api.py │ │ │ │ │ ├── github_api.py │ │ │ │ │ └── github_readonly_api.py │ │ │ │ └── github_client.py │ │ │ ├── view_util.py │ │ │ ├── view_util_test.py │ │ │ └── wsgiserver.py │ │ │ ├── locale │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── en_US.pot │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── pt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ └── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ │ ├── log │ │ │ ├── __init__.py │ │ │ ├── access.py │ │ │ ├── api.py │ │ │ ├── api_test.py │ │ │ ├── formatter.py │ │ │ ├── log_buffer.py │ │ │ ├── log_buffer_test.py │ │ │ └── tests.py │ │ │ ├── manage_entry.py │ │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── change_owner_of_docs.py │ │ │ │ ├── config_dump.py │ │ │ │ ├── config_help.py │ │ │ │ ├── config_override.py │ │ │ │ ├── config_upgrade.py │ │ │ │ ├── convert_documents.py │ │ │ │ ├── create_desktop_app.py │ │ │ │ ├── create_proxy_app.py │ │ │ │ ├── create_test_fs.py │ │ │ │ ├── create_user_directories.py │ │ │ │ ├── desktop_document_cleanup.py │ │ │ │ ├── generate_mdl.py │ │ │ │ ├── get_backend_curl.py │ │ │ │ ├── is_db_alive.py │ │ │ │ ├── kt_renewer.py │ │ │ │ ├── ldaptest.py │ │ │ │ ├── runcelery.py │ │ │ │ ├── runcherrypyserver.py │ │ │ │ ├── runcpserver.py │ │ │ │ ├── rungunicornserver.py │ │ │ │ ├── runruff.py │ │ │ │ ├── sync_documents.py │ │ │ │ ├── sync_warehouses.py │ │ │ │ ├── syncdb.py │ │ │ │ └── version.py │ │ │ ├── metrics.py │ │ │ ├── middleware.py │ │ │ ├── middleware_test.py │ │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_initial.py │ │ │ ├── 0003_initial.py │ │ │ ├── 0004_initial.py │ │ │ ├── 0005_initial.py │ │ │ ├── 0006_initial.py │ │ │ ├── 0007_initial.py │ │ │ ├── 0008_auto_20191031_0704.py │ │ │ ├── 0009_auto_20191202_1056.py │ │ │ ├── 0010_auto_20200115_0908.py │ │ │ ├── 0011_document2_connector.py │ │ │ ├── 0012_connector_interface.py │ │ │ ├── 0013_alter_document2_is_trashed.py │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── models_tests.py │ │ │ ├── monkey_patches.py │ │ │ ├── old_migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_add_groups_and_homedirs.py │ │ │ ├── 0003_group_permissions.py │ │ │ ├── 0004_grouprelations.py │ │ │ ├── 0005_settings.py │ │ │ ├── 0006_settings_add_tour.py │ │ │ ├── 0007_auto__add_documentpermission__add_documenttag__add_document.py │ │ │ ├── 0008_documentpermission_m2m_tables.py │ │ │ ├── 0009_auto__chg_field_document_name.py │ │ │ ├── 0010_auto__add_document2__chg_field_userpreferences_key__chg_field_userpref.py │ │ │ ├── 0011_auto__chg_field_document2_uuid.py │ │ │ ├── 0012_auto__chg_field_documentpermission_perms.py │ │ │ ├── 0013_auto__add_unique_documenttag_owner_tag.py │ │ │ ├── 0014_auto__add_unique_document_content_type_object_id.py │ │ │ ├── 0015_auto__add_unique_documentpermission_doc_perms.py │ │ │ ├── 0016_auto__add_unique_document2_uuid_version_is_history.py │ │ │ ├── 0017_auto__add_document2permission__add_unique_document2permission_doc_perm.py │ │ │ ├── 0018_auto__add_field_document2_parent_directory.py │ │ │ ├── 0019_auto.py │ │ │ ├── 0020_auto__del_field_document2permission_all.py │ │ │ ├── 0021_auto__add_defaultconfiguration__add_unique_defaultconfiguration_app_is.py │ │ │ ├── 0022_auto__del_field_defaultconfiguration_group__del_unique_defaultconfigur.py │ │ │ ├── 0023_auto__del_unique_defaultconfiguration_app_is_default_user__add_field_d.py │ │ │ ├── 0024_auto__add_field_document2_is_managed.py │ │ │ ├── 0025_auto__add_field_document2_is_trashed.py │ │ │ ├── 0026_change_is_trashed_default_to_false.py │ │ │ ├── 0027_truncate_documents.py │ │ │ └── __init__.py │ │ │ ├── org_migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_document2_connector.py │ │ │ ├── 0003_connector_interface.py │ │ │ └── __init__.py │ │ │ ├── redaction │ │ │ ├── __init__.py │ │ │ ├── engine.py │ │ │ ├── logfilter.py │ │ │ ├── test_data │ │ │ │ ├── alpha-version.json │ │ │ │ ├── bad-regex.json │ │ │ │ ├── case-1.json │ │ │ │ ├── empty-rules.json │ │ │ │ ├── empty.json │ │ │ │ ├── extra-attr.json │ │ │ │ ├── good-1.json │ │ │ │ ├── huge-1.json │ │ │ │ ├── no-brace.json │ │ │ │ ├── no-replace.json │ │ │ │ ├── no-search.json │ │ │ │ ├── no-version.json │ │ │ │ ├── non-json.json │ │ │ │ ├── numbers.json │ │ │ │ ├── ordering-1.json │ │ │ │ ├── real-1.json │ │ │ │ ├── replace-1.json │ │ │ │ ├── unknown-version.json │ │ │ │ └── verint.json │ │ │ └── tests.py │ │ │ ├── require_login_test.py │ │ │ ├── routing.py │ │ │ ├── settings.py │ │ │ ├── signal_handlers.py │ │ │ ├── static │ │ │ └── desktop │ │ │ │ ├── art │ │ │ │ ├── assist-preload.svg │ │ │ │ ├── clearField.png │ │ │ │ ├── clearField@2x.png │ │ │ │ ├── cloudera-altus.svg │ │ │ │ ├── cloudera-data-engineering.svg │ │ │ │ ├── cloudera-data-warehouse-2.svg │ │ │ │ ├── cloudera-data-warehouse-3.svg │ │ │ │ ├── cloudera-data-warehouse-logo.svg │ │ │ │ ├── cloudera-data-warehouse.svg │ │ │ │ ├── cloudera-dwx.svg │ │ │ │ ├── datatables │ │ │ │ │ ├── back_disabled.jpg │ │ │ │ │ ├── back_enabled.jpg │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── forward_disabled.jpg │ │ │ │ │ ├── forward_enabled.jpg │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ ├── sort_both.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ ├── sort_desc_disabled.png │ │ │ │ │ └── src │ │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ │ ├── sort_both.png │ │ │ │ │ │ └── sort_desc.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── help │ │ │ │ │ ├── action.png │ │ │ │ │ ├── applications.png │ │ │ │ │ ├── browse.png │ │ │ │ │ ├── convert.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── databases.png │ │ │ │ │ ├── edit.png │ │ │ │ │ ├── eye.png │ │ │ │ │ ├── fbtrash.png │ │ │ │ │ ├── forbidden.gif │ │ │ │ │ ├── gear.png │ │ │ │ │ ├── help_16.gif │ │ │ │ │ ├── huearch.jpg │ │ │ │ │ ├── icon_beeswax_24.png │ │ │ │ │ ├── icon_filebrowser_24.png │ │ │ │ │ ├── icon_help_24.png │ │ │ │ │ ├── icon_impala_24.png │ │ │ │ │ ├── icon_jobbrowser_24.png │ │ │ │ │ ├── icon_jobsub_24.png │ │ │ │ │ ├── icon_oozie_24.png │ │ │ │ │ ├── icon_pig_24.png │ │ │ │ │ ├── icon_shell_24.png │ │ │ │ │ ├── icon_table_browser_24.png │ │ │ │ │ ├── icon_useradmin_24.png │ │ │ │ │ ├── important.jpg │ │ │ │ │ ├── info.jpg │ │ │ │ │ ├── information.gif │ │ │ │ │ ├── log.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── misconfiguration.png │ │ │ │ │ ├── note.jpg │ │ │ │ │ ├── quick_start.png │ │ │ │ │ ├── tip.jpg │ │ │ │ │ ├── trash.png │ │ │ │ │ ├── warning.gif │ │ │ │ │ ├── warning.jpg │ │ │ │ │ └── workflow.jpg │ │ │ │ ├── hint_arrow.svg │ │ │ │ ├── home.png │ │ │ │ ├── hue-login-logo-ellie.png │ │ │ │ ├── hue-login-logo-ellie@2x.png │ │ │ │ ├── hue-login-logo-skew.png │ │ │ │ ├── hue-login-logo.png │ │ │ │ ├── hue-login-white.png │ │ │ │ ├── hue-logo-mini-letterpress.png │ │ │ │ ├── hue-logo-mini-white-ellie.png │ │ │ │ ├── hue-logo-mini-white-hover.png │ │ │ │ ├── hue-logo-mini-white.png │ │ │ │ ├── hue-logo-mini.png │ │ │ │ ├── hue-logo-subtle.png │ │ │ │ ├── icon_hue_24.png │ │ │ │ ├── icon_hue_48.png │ │ │ │ ├── spinner-input.gif │ │ │ │ ├── spinner-inverted.gif │ │ │ │ ├── spinner.gif │ │ │ │ ├── stripedbackground.png │ │ │ │ └── wxm_fake │ │ │ │ │ ├── duration.svg │ │ │ │ │ ├── memory.svg │ │ │ │ │ ├── outliers.svg │ │ │ │ │ ├── statement_types.svg │ │ │ │ │ └── trend.svg │ │ │ │ ├── css │ │ │ │ ├── bootstrap-daterangepicker.css │ │ │ │ ├── bootstrap-medium-editor.css │ │ │ │ ├── bootstrap-slider.css │ │ │ │ ├── bootstrap-spinedit.css │ │ │ │ ├── freshereditor.css │ │ │ │ ├── home.css │ │ │ │ ├── httperrors.css │ │ │ │ ├── hue-mobile.css │ │ │ │ ├── hue.css │ │ │ │ ├── hue3-extra.css │ │ │ │ ├── hue3.css │ │ │ │ ├── jqCron.css │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── login.css │ │ │ │ ├── nv.d3.css │ │ │ │ └── roboto.css │ │ │ │ ├── docs │ │ │ │ ├── hive │ │ │ │ │ ├── _103092177.json │ │ │ │ │ ├── _122917025.json │ │ │ │ │ ├── _145724128.json │ │ │ │ │ ├── _177049669.json │ │ │ │ │ ├── _177050456.json │ │ │ │ │ ├── _27362030.json │ │ │ │ │ ├── _27362032.json │ │ │ │ │ ├── _27362033.json │ │ │ │ │ ├── _27362034.json │ │ │ │ │ ├── _27362035.json │ │ │ │ │ ├── _27362036.json │ │ │ │ │ ├── _27362037.json │ │ │ │ │ ├── _27362039.json │ │ │ │ │ ├── _27362040.json │ │ │ │ │ ├── _27362042.json │ │ │ │ │ ├── _27362043.json │ │ │ │ │ ├── _27362044.json │ │ │ │ │ ├── _27362048.json │ │ │ │ │ ├── _27362049.json │ │ │ │ │ ├── _27829682.json │ │ │ │ │ ├── _27837968.json │ │ │ │ │ ├── _27838462.json │ │ │ │ │ ├── _27842758.json │ │ │ │ │ ├── _30151323.json │ │ │ │ │ ├── _30754722.json │ │ │ │ │ ├── _30755801.json │ │ │ │ │ ├── _31818911.json │ │ │ │ │ ├── _31819589.json │ │ │ │ │ ├── _31822176.json │ │ │ │ │ ├── _33293167.json │ │ │ │ │ ├── _33298193.json │ │ │ │ │ ├── _34838882.json │ │ │ │ │ ├── _38570914.json │ │ │ │ │ ├── _38572242.json │ │ │ │ │ ├── _40509928.json │ │ │ │ │ ├── _45876173.json │ │ │ │ │ ├── _45876440.json │ │ │ │ │ ├── _47384180.json │ │ │ │ │ ├── _58851803.json │ │ │ │ │ ├── _59690156.json │ │ │ │ │ └── _95654003.json │ │ │ │ └── impala │ │ │ │ │ └── topics │ │ │ │ │ ├── impala_abort_on_error.json │ │ │ │ │ ├── impala_adls.json │ │ │ │ │ ├── impala_admission.json │ │ │ │ │ ├── impala_admission_config.json │ │ │ │ │ ├── impala_aggregate_functions.json │ │ │ │ │ ├── impala_aliases.json │ │ │ │ │ ├── impala_allow_erasure_coded_files.json │ │ │ │ │ ├── impala_allow_unsupported_formats.json │ │ │ │ │ ├── impala_alter_database.json │ │ │ │ │ ├── impala_alter_table.json │ │ │ │ │ ├── impala_alter_view.json │ │ │ │ │ ├── impala_analytic_functions.json │ │ │ │ │ ├── impala_appx_count_distinct.json │ │ │ │ │ ├── impala_appx_median.json │ │ │ │ │ ├── impala_array.json │ │ │ │ │ ├── impala_avg.json │ │ │ │ │ ├── impala_avro.json │ │ │ │ │ ├── impala_batch_size.json │ │ │ │ │ ├── impala_bigint.json │ │ │ │ │ ├── impala_bit_functions.json │ │ │ │ │ ├── impala_boolean.json │ │ │ │ │ ├── impala_breakpad.json │ │ │ │ │ ├── impala_broadcast_bytes_limit.json │ │ │ │ │ ├── impala_buffer_pool_limit.json │ │ │ │ │ ├── impala_char.json │ │ │ │ │ ├── impala_client.json │ │ │ │ │ ├── impala_comment.json │ │ │ │ │ ├── impala_comments.json │ │ │ │ │ ├── impala_complex_types.json │ │ │ │ │ ├── impala_compression_codec.json │ │ │ │ │ ├── impala_compute_stats.json │ │ │ │ │ ├── impala_compute_stats_min_sample_size.json │ │ │ │ │ ├── impala_conditional_functions.json │ │ │ │ │ ├── impala_connecting.json │ │ │ │ │ ├── impala_conversion_functions.json │ │ │ │ │ ├── impala_count.json │ │ │ │ │ ├── impala_create_data_source.json │ │ │ │ │ ├── impala_create_database.json │ │ │ │ │ ├── impala_create_function.json │ │ │ │ │ ├── impala_create_role.json │ │ │ │ │ ├── impala_create_table.json │ │ │ │ │ ├── impala_create_view.json │ │ │ │ │ ├── impala_custom_timezones.json │ │ │ │ │ ├── impala_data_cache.json │ │ │ │ │ ├── impala_data_sources.json │ │ │ │ │ ├── impala_databases.json │ │ │ │ │ ├── impala_datatypes.json │ │ │ │ │ ├── impala_date.json │ │ │ │ │ ├── impala_datetime_functions.json │ │ │ │ │ ├── impala_ddl.json │ │ │ │ │ ├── impala_debug_action.json │ │ │ │ │ ├── impala_decimal.json │ │ │ │ │ ├── impala_decimal_v2.json │ │ │ │ │ ├── impala_dedicated_coordinator.json │ │ │ │ │ ├── impala_default_file_format.json │ │ │ │ │ ├── impala_default_hints_insert_statement.json │ │ │ │ │ ├── impala_default_join_distribution_mode.json │ │ │ │ │ ├── impala_default_spillable_buffer_size.json │ │ │ │ │ ├── impala_default_transactional_type.json │ │ │ │ │ ├── impala_delete.json │ │ │ │ │ ├── impala_delete_stats_in_truncate.json │ │ │ │ │ ├── impala_describe.json │ │ │ │ │ ├── impala_disable_codegen.json │ │ │ │ │ ├── impala_disable_codegen_rows_threshold.json │ │ │ │ │ ├── impala_disable_hbase_num_rows_estimate.json │ │ │ │ │ ├── impala_disable_row_runtime_filtering.json │ │ │ │ │ ├── impala_disable_streaming_preaggregations.json │ │ │ │ │ ├── impala_disable_unsafe_spills.json │ │ │ │ │ ├── impala_distinct.json │ │ │ │ │ ├── impala_dml.json │ │ │ │ │ ├── impala_double.json │ │ │ │ │ ├── impala_drop_data_source.json │ │ │ │ │ ├── impala_drop_database.json │ │ │ │ │ ├── impala_drop_function.json │ │ │ │ │ ├── impala_drop_role.json │ │ │ │ │ ├── impala_drop_stats.json │ │ │ │ │ ├── impala_drop_table.json │ │ │ │ │ ├── impala_drop_view.json │ │ │ │ │ ├── impala_enable_expr_rewrites.json │ │ │ │ │ ├── impala_exec_single_node_rows_threshold.json │ │ │ │ │ ├── impala_exec_time_limit_s.json │ │ │ │ │ ├── impala_explain.json │ │ │ │ │ ├── impala_explain_level.json │ │ │ │ │ ├── impala_explain_plan.json │ │ │ │ │ ├── impala_faq.json │ │ │ │ │ ├── impala_fault_tolerance.json │ │ │ │ │ ├── impala_fetch_rows_timeout_ms.json │ │ │ │ │ ├── impala_file_formats.json │ │ │ │ │ ├── impala_fixed_issues.json │ │ │ │ │ ├── impala_float.json │ │ │ │ │ ├── impala_functions.json │ │ │ │ │ ├── impala_functions_overview.json │ │ │ │ │ ├── impala_grant.json │ │ │ │ │ ├── impala_group_by.json │ │ │ │ │ ├── impala_group_concat.json │ │ │ │ │ ├── impala_having.json │ │ │ │ │ ├── impala_hbase.json │ │ │ │ │ ├── impala_hbase_cache_blocks.json │ │ │ │ │ ├── impala_hbase_caching.json │ │ │ │ │ ├── impala_hints.json │ │ │ │ │ ├── impala_hudi.json │ │ │ │ │ ├── impala_iceberg.json │ │ │ │ │ ├── impala_identifiers.json │ │ │ │ │ ├── impala_idle_session_timeout.json │ │ │ │ │ ├── impala_impala_shell.json │ │ │ │ │ ├── impala_incompatible_changes.json │ │ │ │ │ ├── impala_insert.json │ │ │ │ │ ├── impala_int.json │ │ │ │ │ ├── impala_invalidate_metadata.json │ │ │ │ │ ├── impala_isilon.json │ │ │ │ │ ├── impala_jdbc.json │ │ │ │ │ ├── impala_join_rows_produced_limit.json │ │ │ │ │ ├── impala_joins.json │ │ │ │ │ ├── impala_known_issues.json │ │ │ │ │ ├── impala_kudu.json │ │ │ │ │ ├── impala_kudu_read_mode.json │ │ │ │ │ ├── impala_langref.json │ │ │ │ │ ├── impala_langref_sql.json │ │ │ │ │ ├── impala_langref_unsupported.json │ │ │ │ │ ├── impala_limit.json │ │ │ │ │ ├── impala_literals.json │ │ │ │ │ ├── impala_live_progress.json │ │ │ │ │ ├── impala_live_summary.json │ │ │ │ │ ├── impala_load_data.json │ │ │ │ │ ├── impala_logging.json │ │ │ │ │ ├── impala_map.json │ │ │ │ │ ├── impala_math_functions.json │ │ │ │ │ ├── impala_max.json │ │ │ │ │ ├── impala_max_errors.json │ │ │ │ │ ├── impala_max_mem_estimate_for_admission.json │ │ │ │ │ ├── impala_max_num_runtime_filters.json │ │ │ │ │ ├── impala_max_result_spooling_mem.json │ │ │ │ │ ├── impala_max_row_size.json │ │ │ │ │ ├── impala_max_scan_range_length.json │ │ │ │ │ ├── impala_max_spilled_result_spooling_mem.json │ │ │ │ │ ├── impala_mem_limit.json │ │ │ │ │ ├── impala_metadata.json │ │ │ │ │ ├── impala_min.json │ │ │ │ │ ├── impala_min_spillable_buffer_size.json │ │ │ │ │ ├── impala_misc_functions.json │ │ │ │ │ ├── impala_mt_dop.json │ │ │ │ │ ├── impala_ndv.json │ │ │ │ │ ├── impala_new_features.json │ │ │ │ │ ├── impala_node_blacklisting.json │ │ │ │ │ ├── impala_num_nodes.json │ │ │ │ │ ├── impala_num_rows_produced_limit.json │ │ │ │ │ ├── impala_num_scanner_threads.json │ │ │ │ │ ├── impala_odbc.json │ │ │ │ │ ├── impala_offset.json │ │ │ │ │ ├── impala_operators.json │ │ │ │ │ ├── impala_optimize_partition_key_scans.json │ │ │ │ │ ├── impala_orc.json │ │ │ │ │ ├── impala_order_by.json │ │ │ │ │ ├── impala_parquet.json │ │ │ │ │ ├── impala_parquet_annotate_strings_utf8.json │ │ │ │ │ ├── impala_parquet_array_resolution.json │ │ │ │ │ ├── impala_parquet_compression_codec.json │ │ │ │ │ ├── impala_parquet_dictionary_filtering.json │ │ │ │ │ ├── impala_parquet_fallback_schema_resolution.json │ │ │ │ │ ├── impala_parquet_file_size.json │ │ │ │ │ ├── impala_parquet_object_store_split_size.json │ │ │ │ │ ├── impala_parquet_page_row_count_limit.json │ │ │ │ │ ├── impala_parquet_read_page_index.json │ │ │ │ │ ├── impala_parquet_read_statistics.json │ │ │ │ │ ├── impala_parquet_write_page_index.json │ │ │ │ │ ├── impala_partitioning.json │ │ │ │ │ ├── impala_perf_benchmarking.json │ │ │ │ │ ├── impala_perf_cookbook.json │ │ │ │ │ ├── impala_perf_hdfs_caching.json │ │ │ │ │ ├── impala_perf_joins.json │ │ │ │ │ ├── impala_perf_resources.json │ │ │ │ │ ├── impala_perf_skew.json │ │ │ │ │ ├── impala_perf_stats.json │ │ │ │ │ ├── impala_perf_testing.json │ │ │ │ │ ├── impala_performance.json │ │ │ │ │ ├── impala_porting.json │ │ │ │ │ ├── impala_ports.json │ │ │ │ │ ├── impala_prefetch_mode.json │ │ │ │ │ ├── impala_query_options.json │ │ │ │ │ ├── impala_query_results_spooling.json │ │ │ │ │ ├── impala_query_timeout_s.json │ │ │ │ │ ├── impala_rcfile.json │ │ │ │ │ ├── impala_real.json │ │ │ │ │ ├── impala_refresh.json │ │ │ │ │ ├── impala_refresh_authorization.json │ │ │ │ │ ├── impala_refresh_functions.json │ │ │ │ │ ├── impala_refresh_updated_hms.json │ │ │ │ │ ├── impala_release_notes.json │ │ │ │ │ ├── impala_replica_preference.json │ │ │ │ │ ├── impala_request_pool.json │ │ │ │ │ ├── impala_reserved_words.json │ │ │ │ │ ├── impala_resource_management.json │ │ │ │ │ ├── impala_resource_trace_ratio.json │ │ │ │ │ ├── impala_retry_failed_queries.json │ │ │ │ │ ├── impala_revoke.json │ │ │ │ │ ├── impala_runtime_bloom_filter_size.json │ │ │ │ │ ├── impala_runtime_filter_max_size.json │ │ │ │ │ ├── impala_runtime_filter_min_size.json │ │ │ │ │ ├── impala_runtime_filter_mode.json │ │ │ │ │ ├── impala_runtime_filter_wait_time_ms.json │ │ │ │ │ ├── impala_runtime_filtering.json │ │ │ │ │ ├── impala_s3.json │ │ │ │ │ ├── impala_s3_skip_insert_staging.json │ │ │ │ │ ├── impala_scalability.json │ │ │ │ │ ├── impala_scaling_limits.json │ │ │ │ │ ├── impala_scan_bytes_limit.json │ │ │ │ │ ├── impala_schedule_random_replica.json │ │ │ │ │ ├── impala_schema_objects.json │ │ │ │ │ ├── impala_scratch_limit.json │ │ │ │ │ ├── impala_select.json │ │ │ │ │ ├── impala_seqfile.json │ │ │ │ │ ├── impala_set.json │ │ │ │ │ ├── impala_shell_commands.json │ │ │ │ │ ├── impala_shell_options.json │ │ │ │ │ ├── impala_shell_running_commands.json │ │ │ │ │ ├── impala_show.json │ │ │ │ │ ├── impala_shuffle_distinct_exprs.json │ │ │ │ │ ├── impala_shutdown.json │ │ │ │ │ ├── impala_smallint.json │ │ │ │ │ ├── impala_spool_query_results.json │ │ │ │ │ ├── impala_stddev.json │ │ │ │ │ ├── impala_string.json │ │ │ │ │ ├── impala_string_functions.json │ │ │ │ │ ├── impala_struct.json │ │ │ │ │ ├── impala_subqueries.json │ │ │ │ │ ├── impala_sum.json │ │ │ │ │ ├── impala_support_start_over.json │ │ │ │ │ ├── impala_sync_ddl.json │ │ │ │ │ ├── impala_tables.json │ │ │ │ │ ├── impala_tablesample.json │ │ │ │ │ ├── impala_thread_reservation_aggregate_limit.json │ │ │ │ │ ├── impala_thread_reservation_limit.json │ │ │ │ │ ├── impala_timestamp.json │ │ │ │ │ ├── impala_timezone.json │ │ │ │ │ ├── impala_tinyint.json │ │ │ │ │ ├── impala_topn_bytes_limit.json │ │ │ │ │ ├── impala_transactions.json │ │ │ │ │ ├── impala_transparent_query_retries.json │ │ │ │ │ ├── impala_troubleshooting.json │ │ │ │ │ ├── impala_truncate_table.json │ │ │ │ │ ├── impala_txtfile.json │ │ │ │ │ ├── impala_udf.json │ │ │ │ │ ├── impala_union.json │ │ │ │ │ ├── impala_update.json │ │ │ │ │ ├── impala_upsert.json │ │ │ │ │ ├── impala_use.json │ │ │ │ │ ├── impala_values.json │ │ │ │ │ ├── impala_varchar.json │ │ │ │ │ ├── impala_variance.json │ │ │ │ │ ├── impala_views.json │ │ │ │ │ ├── impala_webui.json │ │ │ │ │ └── impala_with.json │ │ │ │ ├── ext │ │ │ │ ├── chosen │ │ │ │ │ ├── chosen-sprite.png │ │ │ │ │ ├── chosen-sprite@2x.png │ │ │ │ │ ├── chosen.jquery.min.js │ │ │ │ │ └── chosen.min.css │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-datepicker.min.css │ │ │ │ │ ├── bootstrap-editable.css │ │ │ │ │ ├── bootstrap-fileupload.css │ │ │ │ │ ├── bootstrap-select.css │ │ │ │ │ ├── bootstrap-timepicker.min.css │ │ │ │ │ ├── codemirror.css │ │ │ │ │ ├── cui │ │ │ │ │ │ ├── bootstrap-responsive2.css │ │ │ │ │ │ ├── bootstrap2.css │ │ │ │ │ │ └── cui.css │ │ │ │ │ ├── fileuploader.css │ │ │ │ │ ├── font-awesome.min.css │ │ │ │ │ ├── font │ │ │ │ │ │ ├── context-menu-icons.eot │ │ │ │ │ │ ├── context-menu-icons.ttf │ │ │ │ │ │ ├── context-menu-icons.woff │ │ │ │ │ │ └── context-menu-icons.woff2 │ │ │ │ │ ├── hue-charts.css │ │ │ │ │ ├── hue-filetypes.css │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_55_ffffff_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_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-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ ├── ui-icons_0073ea_256x240.png │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ ├── ui-icons_666666_256x240.png │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ ├── ui-icons_ff0084_256x240.png │ │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── img │ │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ │ ├── jquery-ui-autocomplete-1.8.18.css │ │ │ │ │ ├── jquery.contextMenu.min.css │ │ │ │ │ ├── jquery.contextMenu.min.css.map │ │ │ │ │ ├── jquery.gridster.min.css │ │ │ │ │ ├── leaflet.css │ │ │ │ │ ├── leaflet.markercluster.css │ │ │ │ │ ├── leaflet.zoombox.css │ │ │ │ │ ├── mCSB_buttons.png │ │ │ │ │ ├── medium-editor.min.css │ │ │ │ │ ├── nv.d3.min.css │ │ │ │ │ ├── select2.min.css │ │ │ │ │ └── selectize.css │ │ │ │ ├── cuix │ │ │ │ │ ├── cloudera-cuix-core-1.1.7.tgz │ │ │ │ │ └── cuix-13.4.1.tgz │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── altus.svg │ │ │ │ │ ├── altus.ttf │ │ │ │ │ ├── altus.woff │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ │ ├── huecharts-regular.eot │ │ │ │ │ ├── huecharts-regular.svg │ │ │ │ │ ├── huecharts-regular.ttf │ │ │ │ │ ├── huecharts-regular.woff │ │ │ │ │ ├── huefiletypes-regular.eot │ │ │ │ │ ├── huefiletypes-regular.svg │ │ │ │ │ ├── huefiletypes-regular.ttf │ │ │ │ │ ├── huefiletypes-regular.woff │ │ │ │ │ ├── roboto-300-normal.woff │ │ │ │ │ ├── roboto-300-normal.woff2 │ │ │ │ │ ├── roboto-400-normal.woff │ │ │ │ │ ├── roboto-400-normal.woff2 │ │ │ │ │ ├── roboto-500-normal.woff │ │ │ │ │ ├── roboto-500-normal.woff2 │ │ │ │ │ ├── roboto-700-normal.woff │ │ │ │ │ ├── roboto-700-normal.woff2 │ │ │ │ │ ├── roboto-mono-300-normal.woff │ │ │ │ │ ├── roboto-mono-300-normal.woff2 │ │ │ │ │ ├── roboto-mono-400-normal.woff │ │ │ │ │ ├── roboto-mono-400-normal.woff2 │ │ │ │ │ ├── roboto-mono-500-normal.woff │ │ │ │ │ ├── roboto-mono-500-normal.woff2 │ │ │ │ │ ├── roboto-mono-700-normal.woff │ │ │ │ │ └── roboto-mono-700-normal.woff2 │ │ │ │ ├── img │ │ │ │ │ ├── clear.png │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ │ ├── leaflet │ │ │ │ │ │ ├── layers-2x.png │ │ │ │ │ │ ├── layers.png │ │ │ │ │ │ ├── marker-icon-2x.png │ │ │ │ │ │ ├── marker-icon.png │ │ │ │ │ │ └── marker-shadow.png │ │ │ │ │ └── loading.gif │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap-better-typeahead.min.js │ │ │ │ │ ├── bootstrap-datepicker.min.js │ │ │ │ │ ├── bootstrap-fileupload.js │ │ │ │ │ ├── bootstrap-timepicker.min.js │ │ │ │ │ ├── classList.min.js │ │ │ │ │ ├── clipboard.min.js │ │ │ │ │ ├── codemirror-3.11.js │ │ │ │ │ ├── codemirror-closetag.js │ │ │ │ │ ├── codemirror-javascript.js │ │ │ │ │ ├── codemirror-markdown.js │ │ │ │ │ ├── codemirror-sql.js │ │ │ │ │ ├── codemirror-xml.js │ │ │ │ │ ├── dagre-d3-min.js │ │ │ │ │ ├── datatables-paging-0.1.js │ │ │ │ │ ├── jquery │ │ │ │ │ │ ├── jquery-3.5.1.min.js │ │ │ │ │ │ └── plugins │ │ │ │ │ │ │ ├── jquery-fieldselection.js │ │ │ │ │ │ │ ├── jquery.curvedarrow.js │ │ │ │ │ │ │ ├── jquery.flot.canvas.min.js │ │ │ │ │ │ │ ├── jquery.flot.categories.min.js │ │ │ │ │ │ │ ├── jquery.flot.min.js │ │ │ │ │ │ │ ├── jquery.flot.pie.min.js │ │ │ │ │ │ │ ├── jquery.flot.selection.min.js │ │ │ │ │ │ │ ├── jquery.flot.time.min.js │ │ │ │ │ │ │ ├── jquery.gridster.with-extras.min.js │ │ │ │ │ │ │ ├── jquery.hotkeys.js │ │ │ │ │ │ │ ├── jquery.mousewheel.min.js │ │ │ │ │ │ │ ├── jquery.touchSwipe.min.js │ │ │ │ │ │ │ └── jquery.visible.min.js │ │ │ │ │ ├── knockout.validation.min.js.map │ │ │ │ │ ├── less-1.7.0.min.js │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── moment-timezone-with-data.min.js │ │ │ │ │ ├── moment-with-locales.min.js │ │ │ │ │ ├── moment-with-locales.min.js.map │ │ │ │ │ ├── shortcut.js │ │ │ │ │ ├── tether.js │ │ │ │ │ ├── text.js │ │ │ │ │ └── tzdetect.js │ │ │ │ ├── select2 │ │ │ │ │ ├── select2-bootstrap.css │ │ │ │ │ ├── select2-spinner.gif │ │ │ │ │ ├── select2.css │ │ │ │ │ ├── select2.png │ │ │ │ │ └── select2x2.png │ │ │ │ └── topo │ │ │ │ │ ├── abw.topo.json │ │ │ │ │ ├── afg.topo.json │ │ │ │ │ ├── ago.topo.json │ │ │ │ │ ├── aia.topo.json │ │ │ │ │ ├── alb.topo.json │ │ │ │ │ ├── ald.topo.json │ │ │ │ │ ├── and.topo.json │ │ │ │ │ ├── are.topo.json │ │ │ │ │ ├── arg.topo.json │ │ │ │ │ ├── arm.topo.json │ │ │ │ │ ├── asm.topo.json │ │ │ │ │ ├── ata.topo.json │ │ │ │ │ ├── atc.topo.json │ │ │ │ │ ├── atf.topo.json │ │ │ │ │ ├── atg.topo.json │ │ │ │ │ ├── aus.topo.json │ │ │ │ │ ├── aut.topo.json │ │ │ │ │ ├── aze.topo.json │ │ │ │ │ ├── bdi.topo.json │ │ │ │ │ ├── bel.topo.json │ │ │ │ │ ├── ben.topo.json │ │ │ │ │ ├── bfa.topo.json │ │ │ │ │ ├── bgd.topo.json │ │ │ │ │ ├── bgr.topo.json │ │ │ │ │ ├── bhr.topo.json │ │ │ │ │ ├── bhs.topo.json │ │ │ │ │ ├── bih.topo.json │ │ │ │ │ ├── bjn.topo.json │ │ │ │ │ ├── blm.topo.json │ │ │ │ │ ├── blr.topo.json │ │ │ │ │ ├── blz.topo.json │ │ │ │ │ ├── bmu.topo.json │ │ │ │ │ ├── bol.topo.json │ │ │ │ │ ├── bra.topo.json │ │ │ │ │ ├── brb.topo.json │ │ │ │ │ ├── brn.topo.json │ │ │ │ │ ├── btn.topo.json │ │ │ │ │ ├── bwa.topo.json │ │ │ │ │ ├── caf.topo.json │ │ │ │ │ ├── can.topo.json │ │ │ │ │ ├── che.topo.json │ │ │ │ │ ├── chl.topo.json │ │ │ │ │ ├── chn.topo.json │ │ │ │ │ ├── civ.topo.json │ │ │ │ │ ├── clp.topo.json │ │ │ │ │ ├── cmr.topo.json │ │ │ │ │ ├── cod.topo.json │ │ │ │ │ ├── cog.topo.json │ │ │ │ │ ├── cok.topo.json │ │ │ │ │ ├── col.topo.json │ │ │ │ │ ├── com.topo.json │ │ │ │ │ ├── cpv.topo.json │ │ │ │ │ ├── cri.topo.json │ │ │ │ │ ├── csi.topo.json │ │ │ │ │ ├── cub.topo.json │ │ │ │ │ ├── cuw.topo.json │ │ │ │ │ ├── cym.topo.json │ │ │ │ │ ├── cyn.topo.json │ │ │ │ │ ├── cyp.topo.json │ │ │ │ │ ├── cze.topo.json │ │ │ │ │ ├── deu.topo.json │ │ │ │ │ ├── dji.topo.json │ │ │ │ │ ├── dma.topo.json │ │ │ │ │ ├── dnk.topo.json │ │ │ │ │ ├── dom.topo.json │ │ │ │ │ ├── dza.topo.json │ │ │ │ │ ├── ecu.topo.json │ │ │ │ │ ├── egy.topo.json │ │ │ │ │ ├── eri.topo.json │ │ │ │ │ ├── esb.topo.json │ │ │ │ │ ├── esp.topo.json │ │ │ │ │ ├── est.topo.json │ │ │ │ │ ├── eth.topo.json │ │ │ │ │ ├── fin.topo.json │ │ │ │ │ ├── fji.topo.json │ │ │ │ │ ├── flk.topo.json │ │ │ │ │ ├── fra.topo.json │ │ │ │ │ ├── fro.topo.json │ │ │ │ │ ├── fsm.topo.json │ │ │ │ │ ├── gab.topo.json │ │ │ │ │ ├── gbr.topo.json │ │ │ │ │ ├── geo.topo.json │ │ │ │ │ ├── ggy.topo.json │ │ │ │ │ ├── gha.topo.json │ │ │ │ │ ├── gib.topo.json │ │ │ │ │ ├── gin.topo.json │ │ │ │ │ ├── gmb.topo.json │ │ │ │ │ ├── gnb.topo.json │ │ │ │ │ ├── gnq.topo.json │ │ │ │ │ ├── grc.topo.json │ │ │ │ │ ├── grd.topo.json │ │ │ │ │ ├── grl.topo.json │ │ │ │ │ ├── gtm.topo.json │ │ │ │ │ ├── gum.topo.json │ │ │ │ │ ├── guy.topo.json │ │ │ │ │ ├── hkg.topo.json │ │ │ │ │ ├── hmd.topo.json │ │ │ │ │ ├── hnd.topo.json │ │ │ │ │ ├── hrv.topo.json │ │ │ │ │ ├── hti.topo.json │ │ │ │ │ ├── hun.topo.json │ │ │ │ │ ├── idn.topo.json │ │ │ │ │ ├── imn.topo.json │ │ │ │ │ ├── ind.topo.json │ │ │ │ │ ├── ioa.topo.json │ │ │ │ │ ├── iot.topo.json │ │ │ │ │ ├── irl.topo.json │ │ │ │ │ ├── irn.topo.json │ │ │ │ │ ├── irq.topo.json │ │ │ │ │ ├── isl.topo.json │ │ │ │ │ ├── isr.topo.json │ │ │ │ │ ├── ita.topo.json │ │ │ │ │ ├── jam.topo.json │ │ │ │ │ ├── jey.topo.json │ │ │ │ │ ├── jor.topo.json │ │ │ │ │ ├── jpn.topo.json │ │ │ │ │ ├── kab.topo.json │ │ │ │ │ ├── kas.topo.json │ │ │ │ │ ├── kaz.topo.json │ │ │ │ │ ├── ken.topo.json │ │ │ │ │ ├── kgz.topo.json │ │ │ │ │ ├── khm.topo.json │ │ │ │ │ ├── kir.topo.json │ │ │ │ │ ├── kna.topo.json │ │ │ │ │ ├── kor.topo.json │ │ │ │ │ ├── kos.topo.json │ │ │ │ │ ├── kwt.topo.json │ │ │ │ │ ├── lao.topo.json │ │ │ │ │ ├── lbn.topo.json │ │ │ │ │ ├── lbr.topo.json │ │ │ │ │ ├── lby.topo.json │ │ │ │ │ ├── lca.topo.json │ │ │ │ │ ├── lie.topo.json │ │ │ │ │ ├── lka.topo.json │ │ │ │ │ ├── lso.topo.json │ │ │ │ │ ├── ltu.topo.json │ │ │ │ │ ├── lux.topo.json │ │ │ │ │ ├── lva.topo.json │ │ │ │ │ ├── mac.topo.json │ │ │ │ │ ├── maf.topo.json │ │ │ │ │ ├── mar.topo.json │ │ │ │ │ ├── mco.topo.json │ │ │ │ │ ├── mda.topo.json │ │ │ │ │ ├── mdg.topo.json │ │ │ │ │ ├── mdv.topo.json │ │ │ │ │ ├── mex.topo.json │ │ │ │ │ ├── mhl.topo.json │ │ │ │ │ ├── mkd.topo.json │ │ │ │ │ ├── mli.topo.json │ │ │ │ │ ├── mlt.topo.json │ │ │ │ │ ├── mmr.topo.json │ │ │ │ │ ├── mne.topo.json │ │ │ │ │ ├── mng.topo.json │ │ │ │ │ ├── mnp.topo.json │ │ │ │ │ ├── moz.topo.json │ │ │ │ │ ├── mrt.topo.json │ │ │ │ │ ├── msr.topo.json │ │ │ │ │ ├── mus.topo.json │ │ │ │ │ ├── mwi.topo.json │ │ │ │ │ ├── mys.topo.json │ │ │ │ │ ├── nam.topo.json │ │ │ │ │ ├── ncl.topo.json │ │ │ │ │ ├── ner.topo.json │ │ │ │ │ ├── nfk.topo.json │ │ │ │ │ ├── nga.topo.json │ │ │ │ │ ├── nic.topo.json │ │ │ │ │ ├── niu.topo.json │ │ │ │ │ ├── nld.topo.json │ │ │ │ │ ├── nor.topo.json │ │ │ │ │ ├── npl.topo.json │ │ │ │ │ ├── nru.topo.json │ │ │ │ │ ├── nul.topo.json │ │ │ │ │ ├── nzl.topo.json │ │ │ │ │ ├── omn.topo.json │ │ │ │ │ ├── pak.topo.json │ │ │ │ │ ├── pan.topo.json │ │ │ │ │ ├── pcn.topo.json │ │ │ │ │ ├── per.topo.json │ │ │ │ │ ├── pga.topo.json │ │ │ │ │ ├── phl.topo.json │ │ │ │ │ ├── plw.topo.json │ │ │ │ │ ├── png.topo.json │ │ │ │ │ ├── pol.topo.json │ │ │ │ │ ├── pri.topo.json │ │ │ │ │ ├── prk.topo.json │ │ │ │ │ ├── prt.topo.json │ │ │ │ │ ├── pry.topo.json │ │ │ │ │ ├── psx.topo.json │ │ │ │ │ ├── pyf.topo.json │ │ │ │ │ ├── qat.topo.json │ │ │ │ │ ├── rou.topo.json │ │ │ │ │ ├── rus.topo.json │ │ │ │ │ ├── rwa.topo.json │ │ │ │ │ ├── sah.topo.json │ │ │ │ │ ├── sau.topo.json │ │ │ │ │ ├── scr.topo.json │ │ │ │ │ ├── sdn.topo.json │ │ │ │ │ ├── sds.topo.json │ │ │ │ │ ├── sen.topo.json │ │ │ │ │ ├── ser.topo.json │ │ │ │ │ ├── sgp.topo.json │ │ │ │ │ ├── sgs.topo.json │ │ │ │ │ ├── shn.topo.json │ │ │ │ │ ├── slb.topo.json │ │ │ │ │ ├── sle.topo.json │ │ │ │ │ ├── slv.topo.json │ │ │ │ │ ├── smr.topo.json │ │ │ │ │ ├── sol.topo.json │ │ │ │ │ ├── som.topo.json │ │ │ │ │ ├── spm.topo.json │ │ │ │ │ ├── srb.topo.json │ │ │ │ │ ├── stp.topo.json │ │ │ │ │ ├── sur.topo.json │ │ │ │ │ ├── svk.topo.json │ │ │ │ │ ├── svn.topo.json │ │ │ │ │ ├── swe.topo.json │ │ │ │ │ ├── swz.topo.json │ │ │ │ │ ├── sxm.topo.json │ │ │ │ │ ├── syc.topo.json │ │ │ │ │ ├── syr.topo.json │ │ │ │ │ ├── tca.topo.json │ │ │ │ │ ├── tcd.topo.json │ │ │ │ │ ├── tgo.topo.json │ │ │ │ │ ├── tha.topo.json │ │ │ │ │ ├── tjk.topo.json │ │ │ │ │ ├── tkm.topo.json │ │ │ │ │ ├── tls.topo.json │ │ │ │ │ ├── ton.topo.json │ │ │ │ │ ├── tto.topo.json │ │ │ │ │ ├── tun.topo.json │ │ │ │ │ ├── tur.topo.json │ │ │ │ │ ├── tuv.topo.json │ │ │ │ │ ├── twn.topo.json │ │ │ │ │ ├── tza.topo.json │ │ │ │ │ ├── uga.topo.json │ │ │ │ │ ├── ukr.topo.json │ │ │ │ │ ├── umi.topo.json │ │ │ │ │ ├── ury.topo.json │ │ │ │ │ ├── usa.topo.json │ │ │ │ │ ├── usg.topo.json │ │ │ │ │ ├── uzb.topo.json │ │ │ │ │ ├── vat.topo.json │ │ │ │ │ ├── vct.topo.json │ │ │ │ │ ├── ven.topo.json │ │ │ │ │ ├── vgb.topo.json │ │ │ │ │ ├── vir.topo.json │ │ │ │ │ ├── vnm.topo.json │ │ │ │ │ ├── vut.topo.json │ │ │ │ │ ├── wlf.topo.json │ │ │ │ │ ├── world.topo.json │ │ │ │ │ ├── wsb.topo.json │ │ │ │ │ ├── wsm.topo.json │ │ │ │ │ ├── yem.topo.json │ │ │ │ │ ├── zaf.topo.json │ │ │ │ │ ├── zmb.topo.json │ │ │ │ │ └── zwe.topo.json │ │ │ │ ├── help │ │ │ │ ├── images │ │ │ │ │ ├── 23888160.png │ │ │ │ │ ├── 23888202.png │ │ │ │ │ ├── 23888204.png │ │ │ │ │ ├── 23888519.jpg │ │ │ │ │ ├── feedback.gif │ │ │ │ │ ├── logout.gif │ │ │ │ │ └── shortcuts.gif │ │ │ │ └── index.html │ │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ │ ├── js │ │ │ │ ├── 500-inline.js │ │ │ │ ├── add_ldap-inline.js │ │ │ │ ├── admin-wizard-inline.js │ │ │ │ ├── bootstrap-daterangepicker.js │ │ │ │ ├── bootstrap-slider.js │ │ │ │ ├── bootstrap-spinedit.js │ │ │ │ ├── bootstrap-tooltip.js │ │ │ │ ├── bootstrap-typeahead-touchscreen.js │ │ │ │ ├── bootstrap-wysiwyg.js │ │ │ │ ├── change_password-inline.js │ │ │ │ ├── codemirror-clike-hint.js │ │ │ │ ├── codemirror-clike.js │ │ │ │ ├── codemirror-hql-hint.js │ │ │ │ ├── codemirror-hql.js │ │ │ │ ├── codemirror-isql-hint.js │ │ │ │ ├── codemirror-pig-hint.js │ │ │ │ ├── codemirror-pig.js │ │ │ │ ├── codemirror-python-hint.js │ │ │ │ ├── codemirror-python.js │ │ │ │ ├── codemirror-show-hint.js │ │ │ │ ├── codemirror-sql-hint.js │ │ │ │ ├── cordinator-inline.js │ │ │ │ ├── document-inline.js │ │ │ │ ├── dumpconfig-inline.js │ │ │ │ ├── edit_group-inline.js │ │ │ │ ├── edit_permissions-inline.js │ │ │ │ ├── edit_users-inline.js │ │ │ │ ├── editor-component.js │ │ │ │ ├── file-display-inline.js │ │ │ │ ├── file-edit-inline.js │ │ │ │ ├── freshereditor.js │ │ │ │ ├── gridster-knockout.js │ │ │ │ ├── hbase-inline.js │ │ │ │ ├── hbaseapp-inline.js │ │ │ │ ├── hdfs-inline.js │ │ │ │ ├── home.vm.js │ │ │ │ ├── home2.vm.js │ │ │ │ ├── hue.errorcatcher.js │ │ │ │ ├── hue.routie.js │ │ │ │ ├── importer-inline.js │ │ │ │ ├── indexes_inline.js │ │ │ │ ├── jqCron.js │ │ │ │ ├── jquery.blueprint.js │ │ │ │ ├── jquery.datatables.sorting.js │ │ │ │ ├── jquery.delayedinput.js │ │ │ │ ├── jquery.hiveautocomplete.js │ │ │ │ ├── jquery.huedatatable.js │ │ │ │ ├── jquery.migration.js │ │ │ │ ├── jquery.rowselector.js │ │ │ │ ├── jquery.scrollleft.js │ │ │ │ ├── jquery.scrollup.js │ │ │ │ ├── jquery.selector.js │ │ │ │ ├── jquery.tablescroller.js │ │ │ │ ├── jquery.textsqueezer.js │ │ │ │ ├── jquery.titleupdater.js │ │ │ │ ├── ko.common-dashboard.js │ │ │ │ ├── ko.droppable.fix.js │ │ │ │ ├── ko.tree.js │ │ │ │ ├── list_configurations-inline.js │ │ │ │ ├── list_groups-inline.js │ │ │ │ ├── listdir-inline.js │ │ │ │ ├── listusers-inline.js │ │ │ │ ├── logs-inline.js │ │ │ │ ├── metastore_inline.js │ │ │ │ ├── metrics-inline.js │ │ │ │ ├── permissions-inline.js │ │ │ │ ├── polyfills.js │ │ │ │ ├── popover-extra-placements.js │ │ │ │ ├── queryBuilder.js │ │ │ │ ├── security-inline.js │ │ │ │ ├── security-sentry-inline.js │ │ │ │ ├── select2.full.patched.js │ │ │ │ ├── server-logs-inline.js │ │ │ │ ├── share.vm.js │ │ │ │ ├── share2.vm.js │ │ │ │ ├── task-browser-inline.js │ │ │ │ └── useradmin-inline.js │ │ │ │ ├── less │ │ │ │ ├── components │ │ │ │ │ ├── hue-app-switcher.less │ │ │ │ │ ├── hue-breadcrumbs.less │ │ │ │ │ ├── hue-catalog-entries-table.less │ │ │ │ │ ├── hue-clearable.less │ │ │ │ │ ├── hue-demi-modal.less │ │ │ │ │ ├── hue-execution-analysis.less │ │ │ │ │ ├── hue-filechooser.less │ │ │ │ │ ├── hue-gridster.less │ │ │ │ │ ├── hue-hamburger.less │ │ │ │ │ ├── hue-inputautocomplete.less │ │ │ │ │ ├── hue-link-sharing.less │ │ │ │ │ ├── hue-nav-properties.less │ │ │ │ │ ├── hue-popover.less │ │ │ │ │ ├── hue-qq-upload.less │ │ │ │ │ ├── hue-query-builder.less │ │ │ │ │ ├── hue-ribbon.less │ │ │ │ │ ├── hue-scroll-anchor.less │ │ │ │ │ ├── hue-scrollbar.less │ │ │ │ │ ├── hue-selectize.less │ │ │ │ │ ├── hue-selector.less │ │ │ │ │ ├── hue-simple-ace.less │ │ │ │ │ ├── hue-snippet-editor-actions.less │ │ │ │ │ ├── hue-snippet-execute-actions.less │ │ │ │ │ ├── hue-spinner.less │ │ │ │ │ ├── hue-tables.less │ │ │ │ │ └── hue-wizard.less │ │ │ │ ├── cui │ │ │ │ │ ├── colors.less │ │ │ │ │ ├── extra-variables.less │ │ │ │ │ └── variables.less │ │ │ │ ├── home.less │ │ │ │ ├── httperrors.less │ │ │ │ ├── hue-assist.less │ │ │ │ ├── hue-autocomplete.less │ │ │ │ ├── hue-c3-overrides.less │ │ │ │ ├── hue-cross-version.less │ │ │ │ ├── hue-cui-overrides.less │ │ │ │ ├── hue-helpers.less │ │ │ │ ├── hue-mixins.less │ │ │ │ ├── hue-multi-cluster-icons.less │ │ │ │ ├── hue.less │ │ │ │ ├── hue3-extra.less │ │ │ │ ├── hue4.less │ │ │ │ ├── login.less │ │ │ │ ├── reset-globals.less │ │ │ │ └── root-wrapped-antd.less │ │ │ │ └── locales │ │ │ │ ├── de │ │ │ │ └── translation.json │ │ │ │ ├── en │ │ │ │ └── translation.json │ │ │ │ ├── es │ │ │ │ └── translation.json │ │ │ │ ├── fr │ │ │ │ └── translation.json │ │ │ │ ├── ja │ │ │ │ └── translation.json │ │ │ │ ├── ko │ │ │ │ └── translation.json │ │ │ │ ├── pt-BR │ │ │ │ └── translation.json │ │ │ │ ├── pt │ │ │ │ └── translation.json │ │ │ │ ├── zh-CN │ │ │ │ └── translation.json │ │ │ │ └── zh │ │ │ │ └── translation.json │ │ │ ├── supervisor.py │ │ │ ├── templates │ │ │ ├── 403.mako │ │ │ ├── 403_csrf.mako │ │ │ ├── 404.mako │ │ │ ├── 500.mako │ │ │ ├── about_layout.mako │ │ │ ├── ace_sql_location_worker.mako │ │ │ ├── ace_sql_syntax_worker.mako │ │ │ ├── actionbar.mako │ │ │ ├── analytics.mako │ │ │ ├── assist_m.mako │ │ │ ├── catalog.mako │ │ │ ├── common_dashboard.mako │ │ │ ├── common_footer.mako │ │ │ ├── common_footer_m.mako │ │ │ ├── common_header.mako │ │ │ ├── common_header_footer_components.mako │ │ │ ├── common_header_m.mako │ │ │ ├── common_home.mako │ │ │ ├── common_import_export.mako │ │ │ ├── common_notebook_ko_components.mako │ │ │ ├── common_share.mako │ │ │ ├── common_share2.mako │ │ │ ├── common_tree.mako │ │ │ ├── config_alert_dock.mako │ │ │ ├── config_ko_components.mako │ │ │ ├── connectors │ │ │ │ └── connectors.mako │ │ │ ├── djangosaml2 │ │ │ │ ├── auth_error.html │ │ │ │ ├── echo_attributes.html │ │ │ │ ├── login_error.html │ │ │ │ ├── logout_error.html │ │ │ │ ├── post_binding_form.html │ │ │ │ └── wayf.html │ │ │ ├── document_browser.mako │ │ │ ├── dump_config.mako │ │ │ ├── error.mako │ │ │ ├── global_js_constants.mako │ │ │ ├── home.mako │ │ │ ├── home2.mako │ │ │ ├── hue.mako │ │ │ ├── hue_ace_autocompleter.mako │ │ │ ├── hue_icons.mako │ │ │ ├── job_browser_common.mako │ │ │ ├── ko_editor.mako │ │ │ ├── ko_metastore.mako │ │ │ ├── login.mako │ │ │ ├── login_modal.mako │ │ │ ├── logs.mako │ │ │ ├── metrics.mako │ │ │ ├── oidc_failed.mako │ │ │ ├── popup_error.mako │ │ │ ├── scheduler │ │ │ │ └── submit_job_popup.mako │ │ │ ├── sql_doc_index.mako │ │ │ ├── taskserver_list_tasks.mako │ │ │ └── unfurl_link.mako │ │ │ ├── test_data │ │ │ ├── hue_5.10.db │ │ │ ├── hue_5.11.db │ │ │ ├── hue_5.12.db │ │ │ ├── hue_5.13.db │ │ │ ├── hue_5.14.db │ │ │ ├── hue_5.15.db │ │ │ ├── hue_5.7.db │ │ │ ├── hue_5.8.db │ │ │ ├── hue_5.9.db │ │ │ ├── hue_5_10_mysql.sql │ │ │ ├── hue_5_11_mysql.sql │ │ │ ├── hue_5_12_mysql.sql │ │ │ ├── hue_5_13_mysql.sql │ │ │ ├── hue_5_14_mysql.sql │ │ │ ├── hue_5_15_mysql.sql │ │ │ ├── hue_5_7_mysql.sql │ │ │ ├── hue_5_8_mysql.sql │ │ │ └── hue_5_9_mysql.sql │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── views.py │ │ │ ├── webpack_utils.py │ │ │ └── wsgi.py │ ├── test_requirements.txt │ └── wheels │ │ └── navoptapi-1.0.0-py3-none-any.whl ├── devtools.mk └── libs │ ├── aws │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── aws │ │ ├── __init__.py │ │ ├── client.py │ │ ├── conf.py │ │ ├── conf_tests.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── s3 │ │ ├── __init__.py │ │ ├── s3_test.py │ │ ├── s3connection.py │ │ ├── s3connection_test.py │ │ ├── s3file.py │ │ ├── s3file_test.py │ │ ├── s3fs.py │ │ ├── s3fs_test.py │ │ ├── s3stat.py │ │ ├── s3stat_test.py │ │ ├── s3test_utils.py │ │ └── upload.py │ │ └── tests.py │ ├── azure │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── azure │ │ ├── __init__.py │ │ ├── abfs │ │ ├── __init__.py │ │ ├── abfs.py │ │ ├── abfs_test.py │ │ ├── abfsfile.py │ │ ├── abfsstats.py │ │ └── upload.py │ │ ├── active_directory.py │ │ ├── adls │ │ ├── __init__.py │ │ └── webhdfs.py │ │ ├── client.py │ │ ├── conf.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ └── tests.py │ ├── dashboard │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── dashboard │ │ ├── __init__.py │ │ ├── api.py │ │ ├── conf.py │ │ ├── controller.py │ │ ├── dashboard_api.py │ │ ├── data_export.py │ │ ├── decorators.py │ │ ├── facet_builder.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── models.py │ │ ├── settings.py │ │ ├── static │ │ └── dashboard │ │ │ ├── art │ │ │ ├── bird_gray_32.png │ │ │ ├── icon_logs.png │ │ │ ├── icon_logs_48.png │ │ │ ├── icon_search_24.png │ │ │ ├── icon_search_48.png │ │ │ ├── icon_twitter.png │ │ │ ├── icon_twitter_48.png │ │ │ ├── icon_yelp.png │ │ │ ├── icon_yelp_48.png │ │ │ ├── remove.png │ │ │ ├── reply.png │ │ │ └── retweet.png │ │ │ ├── css │ │ │ ├── admin.css │ │ │ ├── admin_mobile.css │ │ │ ├── common_dashboard.css │ │ │ ├── search.css │ │ │ └── search_mobile.css │ │ │ ├── help │ │ │ └── index.html │ │ │ ├── img │ │ │ ├── clear.png │ │ │ └── loading.gif │ │ │ ├── js │ │ │ ├── collections.ko.js │ │ │ ├── create-collections.ko.js │ │ │ ├── search.ko.js │ │ │ └── search.utils.js │ │ │ ├── less │ │ │ ├── admin.less │ │ │ ├── admin_mobile.less │ │ │ ├── common_dashboard.less │ │ │ ├── search.less │ │ │ └── search_mobile.less │ │ │ └── templates │ │ │ ├── logs.jpg │ │ │ ├── restaurant.jpg │ │ │ ├── templates.xml │ │ │ └── twitter.jpg │ │ ├── templates │ │ ├── admin_collections.mako │ │ ├── admin_collections_m.mako │ │ ├── common_admin_collections.mako │ │ ├── common_search.mako │ │ ├── macros.mako │ │ ├── no_collections.mako │ │ ├── search.mako │ │ └── search_m.mako │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── hadoop │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── hadoop │ │ ├── __init__.py │ │ ├── cluster.py │ │ ├── conf.py │ │ ├── confparse.py │ │ ├── core_site.py │ │ ├── core_site_tests.py │ │ ├── fs │ │ ├── __init__.py │ │ ├── exceptions.py │ │ ├── fs_for_testing.py │ │ ├── fs_test.py │ │ ├── fsutils.py │ │ ├── fsutils_tests.py │ │ ├── hadoopfs.py │ │ ├── test_webhdfs.py │ │ ├── upload.py │ │ ├── webhdfs.py │ │ └── webhdfs_types.py │ │ ├── hdfs_site.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── mini_cluster.py │ │ ├── pseudo_hdfs4.py │ │ ├── ssl_client_site.py │ │ ├── test_base.py │ │ ├── test_data │ │ └── sample_conf.xml │ │ ├── test_hdfs_site.py │ │ ├── test_ssl_client_site.py │ │ ├── tests.py │ │ └── yarn │ │ ├── __init__.py │ │ ├── clients.py │ │ ├── history_server_api.py │ │ ├── mapreduce_api.py │ │ ├── node_manager_api.py │ │ ├── resource_manager_api.py │ │ ├── spark_history_server_api.py │ │ └── tests.py │ ├── indexer │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ ├── data │ │ ├── morphline │ │ │ ├── __init__.py │ │ │ ├── hue_accesslogs_no_geo.morphline.conf │ │ │ └── navigator_topic.morphline.conf │ │ ├── oozie_workspace │ │ │ ├── clean_to_match_schema.conf │ │ │ ├── convert_date_operation.conf │ │ │ ├── extract_uri_components_operation.conf │ │ │ ├── find_replace_operation.conf │ │ │ ├── geo_ip_operation.conf │ │ │ ├── grok_operation.conf │ │ │ ├── log4j.properties │ │ │ ├── morphline_template.conf │ │ │ ├── parse_csv.conf │ │ │ ├── parse_grok_line.conf │ │ │ ├── parse_hue.conf │ │ │ ├── parse_parquet.conf │ │ │ ├── split_operation.conf │ │ │ └── translate_operation.conf │ │ └── solrconfigs │ │ │ ├── nonsolrcloud │ │ │ └── conf │ │ │ │ ├── currency.xml │ │ │ │ ├── elevate.xml │ │ │ │ ├── lang │ │ │ │ ├── contractions_ca.txt │ │ │ │ ├── contractions_fr.txt │ │ │ │ ├── contractions_ga.txt │ │ │ │ ├── contractions_it.txt │ │ │ │ ├── hyphenations_ga.txt │ │ │ │ ├── stemdict_nl.txt │ │ │ │ ├── stoptags_ja.txt │ │ │ │ ├── stopwords_ar.txt │ │ │ │ ├── stopwords_bg.txt │ │ │ │ ├── stopwords_ca.txt │ │ │ │ ├── stopwords_cz.txt │ │ │ │ ├── stopwords_da.txt │ │ │ │ ├── stopwords_de.txt │ │ │ │ ├── stopwords_el.txt │ │ │ │ ├── stopwords_en.txt │ │ │ │ ├── stopwords_es.txt │ │ │ │ ├── stopwords_eu.txt │ │ │ │ ├── stopwords_fa.txt │ │ │ │ ├── stopwords_fi.txt │ │ │ │ ├── stopwords_fr.txt │ │ │ │ ├── stopwords_ga.txt │ │ │ │ ├── stopwords_gl.txt │ │ │ │ ├── stopwords_hi.txt │ │ │ │ ├── stopwords_hu.txt │ │ │ │ ├── stopwords_hy.txt │ │ │ │ ├── stopwords_id.txt │ │ │ │ ├── stopwords_it.txt │ │ │ │ ├── stopwords_ja.txt │ │ │ │ ├── stopwords_lv.txt │ │ │ │ ├── stopwords_nl.txt │ │ │ │ ├── stopwords_no.txt │ │ │ │ ├── stopwords_pt.txt │ │ │ │ ├── stopwords_ro.txt │ │ │ │ ├── stopwords_ru.txt │ │ │ │ ├── stopwords_sv.txt │ │ │ │ ├── stopwords_th.txt │ │ │ │ ├── stopwords_tr.txt │ │ │ │ └── userdict_ja.txt │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── stopwords.txt │ │ │ │ └── synonyms.txt │ │ │ └── solrcloud │ │ │ └── conf │ │ │ ├── admin-extra.html │ │ │ ├── admin-extra.menu-bottom.html │ │ │ ├── admin-extra.menu-top.html │ │ │ ├── currency.xml │ │ │ ├── elevate.xml │ │ │ ├── lang │ │ │ ├── contractions_ca.txt │ │ │ ├── contractions_fr.txt │ │ │ ├── contractions_ga.txt │ │ │ ├── contractions_it.txt │ │ │ ├── hyphenations_ga.txt │ │ │ ├── stemdict_nl.txt │ │ │ ├── stoptags_ja.txt │ │ │ ├── stopwords_ar.txt │ │ │ ├── stopwords_bg.txt │ │ │ ├── stopwords_ca.txt │ │ │ ├── stopwords_cz.txt │ │ │ ├── stopwords_da.txt │ │ │ ├── stopwords_de.txt │ │ │ ├── stopwords_el.txt │ │ │ ├── stopwords_en.txt │ │ │ ├── stopwords_es.txt │ │ │ ├── stopwords_eu.txt │ │ │ ├── stopwords_fa.txt │ │ │ ├── stopwords_fi.txt │ │ │ ├── stopwords_fr.txt │ │ │ ├── stopwords_ga.txt │ │ │ ├── stopwords_gl.txt │ │ │ ├── stopwords_hi.txt │ │ │ ├── stopwords_hu.txt │ │ │ ├── stopwords_hy.txt │ │ │ ├── stopwords_id.txt │ │ │ ├── stopwords_it.txt │ │ │ ├── stopwords_ja.txt │ │ │ ├── stopwords_lv.txt │ │ │ ├── stopwords_nl.txt │ │ │ ├── stopwords_no.txt │ │ │ ├── stopwords_pt.txt │ │ │ ├── stopwords_ro.txt │ │ │ ├── stopwords_ru.txt │ │ │ ├── stopwords_sv.txt │ │ │ ├── stopwords_th.txt │ │ │ ├── stopwords_tr.txt │ │ │ └── userdict_ja.txt │ │ │ ├── mapping-FoldToASCII.txt │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ ├── protwords.txt │ │ │ ├── schema.xml │ │ │ ├── scripts.conf │ │ │ ├── solrconfig.xml │ │ │ ├── solrconfig.xml.secure │ │ │ ├── solrconfig.xml.solr6 │ │ │ ├── solrconfig.xml.solr6NonHdfs │ │ │ ├── spellings.txt │ │ │ ├── stopwords.txt │ │ │ ├── synonyms.txt │ │ │ ├── update-script.js │ │ │ ├── velocity │ │ │ ├── README.txt │ │ │ ├── VM_global_library.vm │ │ │ ├── browse.vm │ │ │ ├── cluster.vm │ │ │ ├── cluster_results.vm │ │ │ ├── debug.vm │ │ │ ├── did_you_mean.vm │ │ │ ├── error.vm │ │ │ ├── facet_fields.vm │ │ │ ├── facet_pivot.vm │ │ │ ├── facet_queries.vm │ │ │ ├── facet_ranges.vm │ │ │ ├── facets.vm │ │ │ ├── footer.vm │ │ │ ├── head.vm │ │ │ ├── header.vm │ │ │ ├── hit.vm │ │ │ ├── hit_grouped.vm │ │ │ ├── hit_plain.vm │ │ │ ├── join_doc.vm │ │ │ ├── jquery.autocomplete.css │ │ │ ├── jquery.autocomplete.js │ │ │ ├── layout.vm │ │ │ ├── main.css │ │ │ ├── mime_type_lists.vm │ │ │ ├── pagination_bottom.vm │ │ │ ├── pagination_top.vm │ │ │ ├── product_doc.vm │ │ │ ├── query.vm │ │ │ ├── query_form.vm │ │ │ ├── query_group.vm │ │ │ ├── query_spatial.vm │ │ │ ├── results_list.vm │ │ │ ├── richtext_doc.vm │ │ │ ├── suggest.vm │ │ │ └── tabs.vm │ │ │ └── xslt │ │ │ ├── example.xsl │ │ │ ├── example_atom.xsl │ │ │ ├── example_rss.xsl │ │ │ ├── luke.xsl │ │ │ └── updateXml.xsl │ │ └── indexer │ │ ├── __init__.py │ │ ├── api.py │ │ ├── api3.py │ │ ├── api3_tests.py │ │ ├── argument.py │ │ ├── conf.py │ │ ├── controller.py │ │ ├── fields.py │ │ ├── file_format.py │ │ ├── indexers │ │ ├── __init__.py │ │ ├── base.py │ │ ├── envelope.py │ │ ├── envelope_tests.py │ │ ├── flink_sql.py │ │ ├── flume.py │ │ ├── flume_tests.py │ │ ├── morphline.py │ │ ├── morphline_operations.py │ │ ├── morphline_tests.py │ │ ├── phoenix_sql.py │ │ ├── phoenix_sql_tests.py │ │ ├── rdbms.py │ │ ├── sql.py │ │ └── sql_tests.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── indexer_setup.py │ │ ├── models.py │ │ ├── rdbms_indexer_tests.py │ │ ├── settings.py │ │ ├── solr_api.py │ │ ├── solr_client.py │ │ ├── solr_client_tests.py │ │ ├── static │ │ └── indexer │ │ │ ├── art │ │ │ └── icon_search_24.png │ │ │ ├── css │ │ │ ├── admin.css │ │ │ ├── importer.css │ │ │ └── indexes.css │ │ │ ├── help │ │ │ └── index.html │ │ │ ├── img │ │ │ ├── clear.png │ │ │ └── loading.gif │ │ │ ├── js │ │ │ ├── collections.js │ │ │ ├── indexes.ko.js │ │ │ └── lib.js │ │ │ └── less │ │ │ ├── importer.less │ │ │ └── indexes.less │ │ ├── templates │ │ ├── collections.mako │ │ ├── gen │ │ │ ├── create_database_statement.mako │ │ │ └── create_table_statement.mako │ │ ├── importer.mako │ │ ├── indexer.mako │ │ ├── indexes.mako │ │ └── topics.mako │ │ ├── test_utils.py │ │ ├── tests.py │ │ ├── urls.py │ │ ├── utils.py │ │ └── views.py │ ├── kafka │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── kafka │ │ ├── __init__.py │ │ ├── conf.py │ │ ├── kafka_api.py │ │ ├── kafka_client.py │ │ ├── ksql_client.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── settings.py │ │ └── urls.py │ ├── libanalyze │ ├── Makefile │ ├── babel.cfg │ ├── gen-py │ │ ├── Metrics │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ │ └── RuntimeProfile │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ ├── hueversion.py │ ├── reasons │ │ ├── agg_performance.json │ │ ├── bytes_read_skew.json │ │ ├── join_performance.json │ │ ├── metadata_missing.json │ │ ├── remote_scan_ranges.json │ │ ├── rows_read_skew.json │ │ ├── scan_performance.json │ │ ├── scanner_filter.json │ │ ├── scanner_parallelism.json │ │ ├── selective_scan.json │ │ ├── skew.json │ │ ├── slow_table_sink.json │ │ ├── sort_performance.json │ │ ├── spilling.json │ │ ├── stats_missing.json │ │ └── too_many_columns.json │ ├── setup.py │ ├── src │ │ └── libanalyze │ │ │ ├── __init__.py │ │ │ ├── analyze.py │ │ │ ├── analyze_test.py │ │ │ ├── dot.py │ │ │ ├── exprs.py │ │ │ ├── gjson.py │ │ │ ├── locale │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── en_US.pot │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── pt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ └── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ │ ├── models.py │ │ │ ├── rules.py │ │ │ └── utils.py │ ├── testdata │ │ └── profile.thrift │ └── thrift │ │ ├── Metrics.thrift │ │ └── RuntimeProfile.thrift │ ├── liboauth │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── liboauth │ │ ├── __init__.py │ │ ├── backend.py │ │ ├── conf.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── metrics.py │ │ ├── static │ │ └── liboauth │ │ │ └── art │ │ │ ├── icon-fb.png │ │ │ ├── icon-gplus.png │ │ │ ├── icon-linkedin.png │ │ │ └── icon-twitter.png │ │ ├── templates │ │ └── oauth-login.mako │ │ ├── urls.py │ │ └── views.py │ ├── liboozie │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── liboozie │ │ ├── __init__.py │ │ ├── conf.py │ │ ├── conf_tests.py │ │ ├── credentials.py │ │ ├── credentials_tests.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── oozie_api.py │ │ ├── oozie_api_tests.py │ │ ├── submission2.py │ │ ├── submittion.py │ │ ├── submittion2_tests.py │ │ ├── submittion_tests.py │ │ ├── tests.py │ │ ├── types.py │ │ └── utils.py │ ├── librdbms │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── java │ │ ├── README.md │ │ ├── bin │ │ │ └── dbproxy │ │ ├── pom.xml │ │ ├── query.py │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── cloudera │ │ │ └── hue │ │ │ └── dbproxy │ │ │ └── DBProxy.java │ ├── setup.py │ └── src │ │ └── librdbms │ │ ├── __init__.py │ │ ├── conf.py │ │ ├── design.py │ │ ├── jdbc.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── models.py │ │ ├── server │ │ ├── __init__.py │ │ ├── dbms.py │ │ ├── mysql_lib.py │ │ ├── oracle_lib.py │ │ ├── postgresql_lib.py │ │ ├── rdbms_base_lib.py │ │ └── sqlite_lib.py │ │ └── tests.py │ ├── libsaml │ ├── Makefile │ ├── attribute-maps │ │ └── SAML2.py │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── libsaml │ │ ├── __init__.py │ │ ├── backend.py │ │ ├── conf.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── metrics.py │ │ ├── saml_settings.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── libsentry │ ├── Makefile │ ├── babel.cfg │ ├── gen-py │ │ ├── __init__.py │ │ ├── sentry_common_service │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ │ ├── sentry_generic_policy_service │ │ │ ├── SentryGenericPolicyService-remote │ │ │ ├── SentryGenericPolicyService.py │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ │ └── sentry_policy_service │ │ │ ├── SentryPolicyService-remote │ │ │ ├── SentryPolicyService.py │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ └── ttypes.py │ ├── hueversion.py │ ├── regenerate_thrift.sh │ ├── setup.py │ ├── src │ │ └── libsentry │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── api2.py │ │ │ ├── client.py │ │ │ ├── client2.py │ │ │ ├── conf.py │ │ │ ├── locale │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── en_US.pot │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── pt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── django.po │ │ │ └── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ │ ├── models.py │ │ │ ├── privilege_checker.py │ │ │ ├── sentry_ha.py │ │ │ ├── sentry_site.py │ │ │ ├── test_client.py │ │ │ ├── test_privilege_checker.py │ │ │ └── tests.py │ └── thrift │ │ ├── sentry_common_service.thrift │ │ ├── sentry_generic_policy_service.thrift │ │ └── sentry_policy_service.thrift │ ├── libsolr │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── libsolr │ │ ├── __init__.py │ │ ├── api.py │ │ ├── conf.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── models.py │ │ └── tests.py │ ├── libzookeeper │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── libzookeeper │ │ ├── __init__.py │ │ ├── conf.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── models.py │ │ └── tests.py │ ├── metadata │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ │ └── metadata │ │ ├── __init__.py │ │ ├── analytic_db_api.py │ │ ├── assistant │ │ ├── __init__.py │ │ ├── data │ │ │ └── queries.json │ │ └── queries_utils.py │ │ ├── catalog │ │ ├── __init__.py │ │ ├── atlas_client.py │ │ ├── atlas_flags.py │ │ ├── base.py │ │ ├── dummy_client.py │ │ ├── navigator_client.py │ │ └── navigator_client_tests.py │ │ ├── catalog_api.py │ │ ├── catalog_tests.py │ │ ├── conf.py │ │ ├── dataeng_api.py │ │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── en_US.pot │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ │ ├── manager_api.py │ │ ├── manager_client.py │ │ ├── metadata_sites.py │ │ ├── metadata_sites_tests.py │ │ ├── optimizer │ │ ├── __init__.py │ │ ├── base.py │ │ ├── dummy_client.py │ │ ├── optimizer_client.py │ │ ├── optimizer_client_tests.py │ │ └── optimizer_rest_client.py │ │ ├── optimizer_api.py │ │ ├── optimizer_api_tests.py │ │ ├── prometheus_api.py │ │ ├── prometheus_client.py │ │ ├── settings.py │ │ ├── urls.py │ │ ├── workload_analytics_api.py │ │ └── workload_analytics_client.py │ └── notebook │ ├── Makefile │ ├── babel.cfg │ ├── hueversion.py │ ├── setup.py │ └── src │ └── notebook │ ├── __init__.py │ ├── api.py │ ├── api_tests.py │ ├── apps.py │ ├── conf.py │ ├── conf_tests.py │ ├── connectors │ ├── __init__.py │ ├── altus.py │ ├── altus_adb.py │ ├── base.py │ ├── base_tests.py │ ├── dataeng.py │ ├── flink_sql.py │ ├── flink_sql_tests.py │ ├── hbase.py │ ├── hive_metastore.py │ ├── hiveserver2.py │ ├── hiveserver2_tests.py │ ├── jdbc.py │ ├── jdbc_athena.py │ ├── jdbc_clickhouse.py │ ├── jdbc_kyuubi.py │ ├── jdbc_presto.py │ ├── jdbc_teradata.py │ ├── jdbc_vertica.py │ ├── kafka.py │ ├── ksql.py │ ├── oozie_batch.py │ ├── rdbms.py │ ├── solr.py │ ├── spark_batch.py │ ├── spark_shell.py │ ├── spark_shell_tests.py │ ├── sql_alchemy.py │ ├── sql_alchemy_tests.py │ ├── sqlflow.py │ ├── text.py │ ├── trino.py │ └── trino_tests.py │ ├── consumer.py │ ├── dashboard_api.py │ ├── data_export.py │ ├── decorators.py │ ├── fixtures │ └── initial_notebook_examples.json │ ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── en │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── en_US.pot │ ├── es │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ko │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── pt │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── django.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── django.po │ ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── dbproxy_server.py │ │ ├── notebook_setup.py │ │ ├── samples_setup.py │ │ └── send_query_stats.py │ ├── migrations │ └── __init__.py │ ├── models.py │ ├── models_tests.py │ ├── monkey_patches.py │ ├── old_migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── routing.py │ ├── settings.py │ ├── sql_utils.py │ ├── sql_utils_tests.py │ ├── static │ └── notebook │ │ ├── art │ │ ├── icon_notebook_24.png │ │ └── icon_notebook_48.png │ │ ├── css │ │ ├── editor2.css │ │ ├── notebook-layout.css │ │ └── notebook.css │ │ ├── help │ │ └── index.html │ │ ├── img │ │ ├── clear.png │ │ └── loading.gif │ │ └── less │ │ ├── editor2.less │ │ ├── notebook-layout.less │ │ └── notebook.less │ ├── tasks.py │ ├── tasks_tests.py │ ├── templates │ ├── editor.mako │ ├── editor2.mako │ ├── editor_components.mako │ ├── editor_m.mako │ └── notebook.mako │ ├── urls.py │ ├── views.py │ └── views_tests.py ├── dist └── README ├── docs ├── Makefile ├── README.md ├── ROADMAP.md ├── css │ ├── bootplus.css │ ├── docbook.css │ └── font-awesome.min.css ├── designs │ ├── apache_flink.md │ ├── apache_phoenix.md │ ├── authentication │ │ └── saml.md │ ├── ci-cd.md │ ├── connectors.md │ ├── editor3.md │ ├── hue5.md │ ├── metrics.md │ ├── organizations.md │ ├── query_result_handling.md │ ├── scheduling.md │ ├── sharing.md │ ├── spark_sql_livy.md │ ├── sql │ │ ├── autocomplete_udfs.md │ │ └── hiveserver-ha.md │ ├── sql_alchemy.md │ └── tracing.md ├── docs-site │ ├── .gitignore │ ├── README.md │ ├── archetypes │ │ └── default.md │ ├── config.toml │ ├── content │ │ ├── _index.md │ │ ├── administrator │ │ │ ├── _index.md │ │ │ ├── administration │ │ │ │ ├── _index.md │ │ │ │ ├── database.md │ │ │ │ ├── operations.md │ │ │ │ ├── reference.md │ │ │ │ └── user-management.md │ │ │ ├── configuration │ │ │ │ ├── _index.md │ │ │ │ ├── apps │ │ │ │ │ └── _index.md │ │ │ │ ├── connectors │ │ │ │ │ └── _index.md │ │ │ │ └── server │ │ │ │ │ └── _index.md │ │ │ └── installation │ │ │ │ ├── _index.md │ │ │ │ ├── cloud.md │ │ │ │ ├── dependencies │ │ │ │ └── _index.md │ │ │ │ └── install.md │ │ ├── developer │ │ │ ├── _index.md │ │ │ ├── api │ │ │ │ ├── _index.md │ │ │ │ ├── cli │ │ │ │ │ └── _index.md │ │ │ │ ├── python │ │ │ │ │ └── _index.md │ │ │ │ └── rest │ │ │ │ │ ├── _index.md │ │ │ │ │ └── importer.md │ │ │ ├── components │ │ │ │ ├── _index.md │ │ │ │ ├── er-diagram │ │ │ │ │ └── demo │ │ │ │ │ │ └── attrs.json │ │ │ │ ├── parsers │ │ │ │ │ ├── _index.md │ │ │ │ │ └── demo │ │ │ │ │ │ ├── live-parser.js │ │ │ │ │ │ └── styles.css │ │ │ │ └── scratchpad │ │ │ │ │ └── _index.md │ │ │ └── development │ │ │ │ └── _index.md │ │ ├── quickstart │ │ │ └── _index.md │ │ ├── releases │ │ │ ├── _index.md │ │ │ ├── release-notes-0.3.0.md │ │ │ ├── release-notes-0.4.0.md │ │ │ ├── release-notes-0.4.1.md │ │ │ ├── release-notes-0.4.2.md │ │ │ ├── release-notes-0.9.0.md │ │ │ ├── release-notes-0.9.1.md │ │ │ ├── release-notes-1.0.0.md │ │ │ ├── release-notes-1.0.1.md │ │ │ ├── release-notes-1.1.0.md │ │ │ ├── release-notes-1.2.0.md │ │ │ ├── release-notes-2.0.0-beta.md │ │ │ ├── release-notes-2.0.1.md │ │ │ ├── release-notes-2.1.0.md │ │ │ ├── release-notes-2.2.0.md │ │ │ ├── release-notes-2.3.0.md │ │ │ ├── release-notes-2.4.0.md │ │ │ ├── release-notes-2.5.0.md │ │ │ ├── release-notes-3.0.0.md │ │ │ ├── release-notes-3.10.0.md │ │ │ ├── release-notes-3.11.0.md │ │ │ ├── release-notes-3.12.0.md │ │ │ ├── release-notes-3.5.0.md │ │ │ ├── release-notes-3.6.0.md │ │ │ ├── release-notes-3.7.0.md │ │ │ ├── release-notes-3.8.0.md │ │ │ ├── release-notes-3.9.0.md │ │ │ ├── release-notes-4.0.0.md │ │ │ ├── release-notes-4.1.0.md │ │ │ ├── release-notes-4.10.0.md │ │ │ ├── release-notes-4.11.0.md │ │ │ ├── release-notes-4.2.0.md │ │ │ ├── release-notes-4.3.0.md │ │ │ ├── release-notes-4.4.0.md │ │ │ ├── release-notes-4.5.0.md │ │ │ ├── release-notes-4.6.0.md │ │ │ ├── release-notes-4.7.0.md │ │ │ ├── release-notes-4.8.0.md │ │ │ └── release-notes-4.9.0.md │ │ └── user │ │ │ ├── _index.md │ │ │ ├── browsing │ │ │ └── _index.md │ │ │ ├── concept │ │ │ └── _index.md │ │ │ └── querying │ │ │ └── _index.md │ ├── layouts │ │ ├── partials │ │ │ ├── custom-footer.html │ │ │ ├── favicon.html │ │ │ ├── logo.html │ │ │ └── menu-footer.html │ │ └── shortcodes │ │ │ ├── rawhtml.html │ │ │ └── webcomp.html │ ├── package-lock.json │ ├── package.json │ ├── static │ │ ├── css │ │ │ └── theme-hue.css │ │ ├── images │ │ │ ├── architecture.png │ │ │ ├── django_request.png │ │ │ ├── eclipse_debug.png │ │ │ ├── eclipse_debug_arguments.png │ │ │ ├── eclipse_debug_interpreter.png │ │ │ ├── eclipse_interpreter.png │ │ │ ├── favicon.ico │ │ │ ├── favicon.png │ │ │ ├── from30kfeet.png │ │ │ ├── hue-4-interface-concept.png │ │ │ ├── hue_architecture.png │ │ │ ├── hue_architecture.xml │ │ │ ├── hue_logo.png │ │ │ ├── interactingwithhadoop.png │ │ │ ├── pycharm_debug.png │ │ │ ├── pycharm_virtualenv.png │ │ │ └── webbackend.png │ │ └── js │ │ │ └── gethue │ │ │ ├── components │ │ │ ├── ErDiagram.js │ │ │ ├── QueryEditorWebComponents.js │ │ │ ├── SqlScratchpadWebComponent.js │ │ │ ├── calcite-parser.js │ │ │ ├── calcite-ref.js │ │ │ ├── dasksql-parser.js │ │ │ ├── flink-parser.js │ │ │ ├── flink-ref.js │ │ │ ├── generic-parser.js │ │ │ ├── generic-ref.js │ │ │ ├── hive-parser.js │ │ │ ├── hive-ref.js │ │ │ ├── impala-parser.js │ │ │ ├── impala-ref.js │ │ │ ├── ksql-parser.js │ │ │ ├── phoenix-parser.js │ │ │ ├── pig-ref.js │ │ │ ├── presto-parser.js │ │ │ ├── sparksql-parser.js │ │ │ └── sparksql-ref.js │ │ │ └── parsers │ │ │ ├── calciteAutocompleteParser.js │ │ │ ├── calciteSyntaxParser.js │ │ │ ├── dasksqlAutocompleteParser.js │ │ │ ├── dasksqlSyntaxParser.js │ │ │ ├── flinkAutocompleteParser.js │ │ │ ├── flinkSyntaxParser.js │ │ │ ├── genericAutocompleteParser.js │ │ │ ├── genericSyntaxParser.js │ │ │ ├── hiveAutocompleteParser.js │ │ │ ├── hiveSyntaxParser.js │ │ │ ├── impalaAutocompleteParser.js │ │ │ ├── impalaSyntaxParser.js │ │ │ ├── ksqlAutocompleteParser.js │ │ │ ├── ksqlSyntaxParser.js │ │ │ ├── phoenixAutocompleteParser.js │ │ │ ├── phoenixSyntaxParser.js │ │ │ ├── prestoAutocompleteParser.js │ │ │ └── prestoSyntaxParser.js │ └── themes │ │ └── hugo-theme-learn │ │ ├── .gitignore │ │ ├── .grenrc.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── archetypes │ │ ├── chapter.md │ │ └── default.md │ │ ├── exampleSite │ │ ├── LICENSE.md │ │ ├── config.toml │ │ ├── content │ │ │ ├── _index.en.md │ │ │ ├── _index.fr.md │ │ │ ├── basics │ │ │ │ ├── _index.en.md │ │ │ │ ├── _index.fr.md │ │ │ │ ├── configuration │ │ │ │ │ ├── _index.en.md │ │ │ │ │ └── _index.fr.md │ │ │ │ ├── installation │ │ │ │ │ ├── _index.en.md │ │ │ │ │ ├── _index.fr.md │ │ │ │ │ └── images │ │ │ │ │ │ └── chapter.png │ │ │ │ ├── requirements │ │ │ │ │ ├── _index.en.md │ │ │ │ │ ├── _index.fr.md │ │ │ │ │ └── images │ │ │ │ │ │ └── magic.gif │ │ │ │ └── style-customization │ │ │ │ │ ├── _index.en.md │ │ │ │ │ ├── _index.fr.md │ │ │ │ │ └── images │ │ │ │ │ ├── blue-variant.png │ │ │ │ │ ├── green-variant.png │ │ │ │ │ └── red-variant.png │ │ │ ├── cont │ │ │ │ ├── _index.en.md │ │ │ │ ├── _index.fr.md │ │ │ │ ├── archetypes.en.md │ │ │ │ ├── archetypes.fr.md │ │ │ │ ├── i18n │ │ │ │ │ ├── _index.en.md │ │ │ │ │ ├── _index.fr.md │ │ │ │ │ └── images │ │ │ │ │ │ └── i18n-menu.gif │ │ │ │ ├── icons.en.md │ │ │ │ ├── markdown.en.md │ │ │ │ ├── markdown.fr.md │ │ │ │ ├── menushortcuts.en.md │ │ │ │ ├── menushortcuts.fr.md │ │ │ │ └── pages │ │ │ │ │ ├── _index.en.md │ │ │ │ │ ├── _index.fr.md │ │ │ │ │ └── images │ │ │ │ │ ├── frontmatter-icon.png │ │ │ │ │ ├── pages-chapter.png │ │ │ │ │ └── pages-default.png │ │ │ ├── credits.en.md │ │ │ ├── credits.fr.md │ │ │ ├── shortcodes │ │ │ │ ├── _index.en.md │ │ │ │ ├── _index.fr.md │ │ │ │ ├── attachments.en.files │ │ │ │ │ ├── BachGavotteShort.mp3 │ │ │ │ │ ├── Carroll_AliceAuPaysDesMerveilles.pdf │ │ │ │ │ ├── adivorciarsetoca00cape.pdf │ │ │ │ │ ├── hugo.png │ │ │ │ │ └── movieselectricsheep-flock-244-32500-2.mp4 │ │ │ │ ├── attachments.en.md │ │ │ │ ├── attachments.fr.files │ │ │ │ │ ├── BachGavotteShort.mp3 │ │ │ │ │ ├── Carroll_AliceAuPaysDesMerveilles.pdf │ │ │ │ │ ├── adivorciarsetoca00cape.pdf │ │ │ │ │ ├── hugo.png │ │ │ │ │ └── movieselectricsheep-flock-244-32500-2.mp4 │ │ │ │ ├── attachments.fr.md │ │ │ │ ├── button.en.md │ │ │ │ ├── button.fr.md │ │ │ │ ├── children │ │ │ │ │ ├── _index.en.md │ │ │ │ │ ├── _index.fr.md │ │ │ │ │ ├── children-1 │ │ │ │ │ │ ├── _index.en.md │ │ │ │ │ │ ├── _index.fr.md │ │ │ │ │ │ └── children-1-1 │ │ │ │ │ │ │ ├── _index.en.md │ │ │ │ │ │ │ ├── _index.fr.md │ │ │ │ │ │ │ └── children-1-1-1 │ │ │ │ │ │ │ ├── _index.en.md │ │ │ │ │ │ │ ├── _index.fr.md │ │ │ │ │ │ │ └── children-1-1-1-1 │ │ │ │ │ │ │ ├── _index.en.md │ │ │ │ │ │ │ ├── _index.fr.md │ │ │ │ │ │ │ └── children-1-1-1-1-1 │ │ │ │ │ │ │ ├── _index.en.md │ │ │ │ │ │ │ └── _index.fr.md │ │ │ │ │ ├── children-2 │ │ │ │ │ │ ├── _index.en.md │ │ │ │ │ │ ├── _index.fr.md │ │ │ │ │ │ ├── test3.en.md │ │ │ │ │ │ └── test3.fr.md │ │ │ │ │ ├── children-3 │ │ │ │ │ │ ├── _index.en.md │ │ │ │ │ │ └── _index.fr.md │ │ │ │ │ ├── children-4 │ │ │ │ │ │ ├── _index.en.md │ │ │ │ │ │ └── _index.fr.md │ │ │ │ │ ├── test.en.md │ │ │ │ │ └── test.fr.md │ │ │ │ ├── expand.en.md │ │ │ │ ├── expand.fr.md │ │ │ │ ├── mermaid.en.md │ │ │ │ ├── mermaid.fr.md │ │ │ │ ├── notice.en.md │ │ │ │ ├── notice.fr.md │ │ │ │ ├── siteparam.en.md │ │ │ │ └── siteparam.fr.md │ │ │ ├── showcase.en.md │ │ │ └── showcase.fr.md │ │ ├── layouts │ │ │ ├── partials │ │ │ │ ├── custom-footer.html │ │ │ │ ├── logo.html │ │ │ │ └── menu-footer.html │ │ │ └── shortcodes │ │ │ │ └── ghcontributors.html │ │ └── static │ │ │ ├── css │ │ │ └── theme-mine.css │ │ │ ├── fonts │ │ │ ├── monogramos-webfont.eot │ │ │ ├── monogramos-webfont.svg │ │ │ ├── monogramos-webfont.ttf │ │ │ ├── monogramos-webfont.woff │ │ │ └── monogramos-webfont.woff2 │ │ │ └── images │ │ │ └── showcase │ │ │ └── tat.png │ │ ├── i18n │ │ ├── en.toml │ │ ├── es.toml │ │ ├── fr.toml │ │ ├── id.toml │ │ ├── nl.toml │ │ ├── pt.toml │ │ └── tr.toml │ │ ├── images │ │ ├── screenshot.png │ │ └── tn.png │ │ ├── layouts │ │ ├── 404.html │ │ ├── _default │ │ │ ├── list.html │ │ │ └── single.html │ │ ├── index.html │ │ ├── index.json │ │ ├── partials │ │ │ ├── custom-comments.html │ │ │ ├── custom-footer.html │ │ │ ├── custom-header.html │ │ │ ├── favicon.html │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── logo.html │ │ │ ├── menu-footer.html │ │ │ ├── menu.html │ │ │ ├── meta.html │ │ │ ├── search.html │ │ │ └── toc.html │ │ └── shortcodes │ │ │ ├── attachments.html │ │ │ ├── button.html │ │ │ ├── children.html │ │ │ ├── expand.html │ │ │ ├── mermaid.html │ │ │ ├── notice.html │ │ │ ├── ref.html │ │ │ ├── relref.html │ │ │ └── siteparam.html │ │ ├── netlify.toml │ │ ├── static │ │ ├── css │ │ │ ├── auto-complete.css │ │ │ ├── featherlight.min.css │ │ │ ├── fontawesome-all.min.css │ │ │ ├── hugo-theme.css │ │ │ ├── hybrid.css │ │ │ ├── nucleus.css │ │ │ ├── perfect-scrollbar.min.css │ │ │ ├── theme-blue.css │ │ │ ├── theme-green.css │ │ │ ├── theme-red.css │ │ │ └── theme.css │ │ ├── fonts │ │ │ ├── Inconsolata.eot │ │ │ ├── Inconsolata.svg │ │ │ ├── Inconsolata.ttf │ │ │ ├── Inconsolata.woff │ │ │ ├── Novecentosanswide-Normal-webfont.eot │ │ │ ├── Novecentosanswide-Normal-webfont.svg │ │ │ ├── Novecentosanswide-Normal-webfont.ttf │ │ │ ├── Novecentosanswide-Normal-webfont.woff │ │ │ ├── Novecentosanswide-Normal-webfont.woff2 │ │ │ ├── Novecentosanswide-UltraLight-webfont.eot │ │ │ ├── Novecentosanswide-UltraLight-webfont.svg │ │ │ ├── Novecentosanswide-UltraLight-webfont.ttf │ │ │ ├── Novecentosanswide-UltraLight-webfont.woff │ │ │ ├── Novecentosanswide-UltraLight-webfont.woff2 │ │ │ ├── Work_Sans_200.eot │ │ │ ├── Work_Sans_200.svg │ │ │ ├── Work_Sans_200.ttf │ │ │ ├── Work_Sans_200.woff │ │ │ ├── Work_Sans_200.woff2 │ │ │ ├── Work_Sans_300.eot │ │ │ ├── Work_Sans_300.svg │ │ │ ├── Work_Sans_300.ttf │ │ │ ├── Work_Sans_300.woff │ │ │ ├── Work_Sans_300.woff2 │ │ │ ├── Work_Sans_500.eot │ │ │ ├── Work_Sans_500.svg │ │ │ ├── Work_Sans_500.ttf │ │ │ ├── Work_Sans_500.woff │ │ │ └── Work_Sans_500.woff2 │ │ ├── images │ │ │ ├── clippy.svg │ │ │ ├── favicon.png │ │ │ └── gopher-404.jpg │ │ ├── js │ │ │ ├── auto-complete.js │ │ │ ├── clipboard.min.js │ │ │ ├── featherlight.min.js │ │ │ ├── highlight.pack.js │ │ │ ├── html5shiv-printshiv.min.js │ │ │ ├── hugo-learn.js │ │ │ ├── jquery-2.x.min.js │ │ │ ├── jquery.sticky.js │ │ │ ├── learn.js │ │ │ ├── lunr.min.js │ │ │ ├── modernizr.custom.71422.js │ │ │ ├── perfect-scrollbar.jquery.min.js │ │ │ ├── perfect-scrollbar.min.js │ │ │ └── search.js │ │ ├── mermaid │ │ │ ├── mermaid.css │ │ │ ├── mermaid.dark.css │ │ │ ├── mermaid.forest.css │ │ │ └── mermaid.js │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ │ ├── theme.toml │ │ └── wercker.yml ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── gethue │ ├── .gitignore │ ├── archetypes │ │ └── default.md │ ├── config.toml │ ├── content │ │ ├── en │ │ │ ├── posts │ │ │ │ ├── 2010-08-20-hue-1-0-1-aug-20th-2010.md │ │ │ │ ├── 2010-10-11-hue-1-1-0-oct-11th-2010.md │ │ │ │ ├── 2011-02-21-hue-1-2-0-feb-21st-2011.md │ │ │ │ ├── 2012-06-04-hue-2-0-1-jun-4th-2012.md │ │ │ │ ├── 2012-06-04-hue-2-0.md │ │ │ │ ├── 2012-10-01-whats-new-in-hue-2-1.md │ │ │ │ ├── 2012-10-02-hue-2-1-0-oct-2nd-2012.md │ │ │ │ ├── 2012-12-15-how-to-manage-permissions-in-hue.md │ │ │ │ ├── 2013-01-15-the-dynamic-workflow-builder-in-hue.md │ │ │ │ ├── 2013-01-20-how-to-import-a-pre-existing-oozie-workflow-into-hue.md │ │ │ │ ├── 2013-02-01-how-to-analyze-twitter-data-with-hue.md │ │ │ │ ├── 2013-02-15-a-closer-look-at-hue-how-to-interface-with-hadoop.md │ │ │ │ ├── 2013-02-15-whats-new-in-hue-2-2.md │ │ │ │ ├── 2013-02-25-hue-2-2-0-feb-25th-2013.md │ │ │ │ ├── 2013-03-01-demo-hdfs-file-operations-made-easy-with-hue.md │ │ │ │ ├── 2013-03-11-tutorial-analyzing-data-with-hue-and-hive.md │ │ │ │ ├── 2013-03-27-kick-off-of-how-to-improve-the-hadoop-user-experience.md │ │ │ │ ├── 2013-04-15-hue-2-3-0-apr-15th-2013.md │ │ │ │ ├── 2013-04-16-whats-new-in-hue-2-3.md │ │ │ │ ├── 2013-05-07-tutorial-executing-hive-or-impala-queries-with-python.md │ │ │ │ ├── 2013-05-13-single-sign-on-in-hue-with-twitter-and-oauth.md │ │ │ │ ├── 2013-05-22-tutorial-a-new-ui-for-oozie.md │ │ │ │ ├── 2013-05-28-tutorial-apache-pig-editor-in-hue-2-3.md │ │ │ │ ├── 2013-06-11-hue-2-4-is-released.md │ │ │ │ ├── 2013-06-12-tutorial-search-hadoop-in-hue.md │ │ │ │ ├── 2013-07-16-hue-2-5-and-its-hbase-app-is-out.md │ │ │ │ ├── 2013-07-29-hadoop-tutorial-how-to-access-hive-in-pig-with.md │ │ │ │ ├── 2013-08-09-hadoop-tutorial-high-availability-of-hue.md │ │ │ │ ├── 2013-08-13-hadoop-tutorial-how-to-create-example-tables-in-hbase.md │ │ │ │ ├── 2013-08-19-hadoop-tutorial-hive-udf-in-1-minute.md │ │ │ │ ├── 2013-08-22-nosql-2013-hue-starting-point-for-exploration-and.md │ │ │ │ ├── 2013-08-22-y-hug-august-2013-hue-the-hadoop-ui.md │ │ │ │ ├── 2013-08-23-the-web-ui-for-hbase-hbase-browser.md │ │ │ │ ├── 2013-09-05-hadoop-tutorials-ii-1-prepare-the-data-for-analysis.md │ │ │ │ ├── 2013-09-11-hadoop-tutorials-ii-2-execute-hive-queries-and.md │ │ │ │ ├── 2013-09-18-hadoop-tutorials-ii-3-schedule-hive-queries-with.md │ │ │ │ ├── 2013-09-23-hue-3-and-the-new-sqoop-and-zookeeper-apps-are-out.md │ │ │ │ ├── 2013-09-25-sso-with-hue-new-saml-backend.md │ │ │ │ ├── 2013-09-27-fast-sql-with-the-impala-query-editor.md │ │ │ │ ├── 2013-10-01-group-synchronization-backends-in-hue.md │ │ │ │ ├── 2013-10-04-move-data-in-out-your-hadoop-cluster-with-the-sqoop.md │ │ │ │ ├── 2013-10-10-password-management-in-hue.md │ │ │ │ ├── 2013-10-14-hadoop-tutorial-bundle-oozie-coordinators-with-hue.md │ │ │ │ ├── 2013-10-20-stockholm-hug-hue-the-hadoop-ui.md │ │ │ │ ├── 2013-10-21-hadoop-tutorial-use-pig-and-hive-with-hbase.md │ │ │ │ ├── 2013-10-23-tutorial-better-file-formats-for-impala-and-quick-sql.md │ │ │ │ ├── 2013-10-24-hadoop-tutorial-hive-query-editor-with-hiveserver2-and.md │ │ │ │ ├── 2013-10-29-apache-hive-editor-and-hive-metastore-browser.md │ │ │ │ ├── 2013-11-04-hadoop-tutorials-season-ii-7-how-to-index-and-search.md │ │ │ │ ├── 2013-11-08-hadoop-tutorials-series-ii-8-how-to-transfer-data.md │ │ │ │ ├── 2013-11-08-integrate-external-web-applications-in-any-language.md │ │ │ │ ├── 2013-11-08-new-search-feature-graphical-facets.md │ │ │ │ ├── 2013-11-11-dbquery-app-mysql-postgresql-oracle-and-sqlite-query.md │ │ │ │ ├── 2013-11-11-hue-team-retreat-thailand.md │ │ │ │ ├── 2013-11-19-new-zookeeper-browser-app.md │ │ │ │ ├── 2013-11-27-hadoop-tutorial-create-hive-tables-with-headers-and.md │ │ │ │ ├── 2013-12-02-hadoop-tutorial-submit-any-oozie-jobs-directly-from.md │ │ │ │ ├── 2013-12-05-hadoop-tutorial-language-assistant-in-pig-editor-with.md │ │ │ │ ├── 2013-12-05-hue-3-5-and-its-redesign-are-out.md │ │ │ │ ├── 2013-12-07-new-in-cdh-5-5-simplified-administration-and-user-experience-and-more-in-hue.md │ │ │ │ ├── 2013-12-12-hue-goes-to-paris-hug-france.md │ │ │ │ ├── 2013-12-12-recent-security-enhancements.md │ │ │ │ ├── 2013-12-13-hue-goes-to-los-angeles-hbase-meetup.md │ │ │ │ ├── 2013-12-16-use-the-impala-app-with-sentry-for-real-security.md │ │ │ │ ├── 2013-12-30-jobtracker-high-availability-ha-in-mr1.md │ │ │ │ ├── 2014-01-02-a-better-pygresql-support-for-django.md │ │ │ │ ├── 2014-01-02-a-new-spark-web-ui-spark-app.md │ │ │ │ ├── 2014-01-13-using-hadoop-mr2-and-yarn-with-an-alternative-job.md │ │ │ │ ├── 2014-02-03-how-to-manage-the-hue-database-with-the-shell.md │ │ │ │ ├── 2014-02-03-making-hadoop-accessible-to-your-employees-with-ldap.md │ │ │ │ ├── 2014-02-03-solving-the-hue-2-x-hanging-problem.md │ │ │ │ ├── 2014-02-06-sf-hue-meetup-hue-3-5-and-where-we-stand.md │ │ │ │ ├── 2014-02-19-how-to-use-the-new-file-types-icons-with-the-hue-sdk-or.md │ │ │ │ ├── 2014-02-21-san-francisco-developer-get-started-with-the-hue-sdk.md │ │ │ │ ├── 2014-02-26-secure-your-yarn-cluster-and-access-the-jobs.md │ │ │ │ ├── 2014-03-04-hadoop-tutorial-schedule-your-hadoop-jobs-intuitively.md │ │ │ │ ├── 2014-03-06-how-hue-integrates-hadoop-with-django.md │ │ │ │ ├── 2014-03-10-join-the-hue-team.md │ │ │ │ ├── 2014-03-14-how-to-fix-the-multipleobjectsreturned-error-in-hue.md │ │ │ │ ├── 2014-03-23-tutorial-live-demo-of-search-on-hadoop.md │ │ │ │ ├── 2014-03-26-hadoop-tutoriel-comment-acceder-a-hive-depuis-pig-avec-hcatalog-et-hue.md │ │ │ │ ├── 2014-03-26-hadoop-tutoriel-comment-creer-des-tables-dexemple-dans-hbase.md │ │ │ │ ├── 2014-03-26-hue-2-5-et-son-hbase-application-est-sorti.md │ │ │ │ ├── 2014-03-26-hue-3-5-et-sa-refonte-sont-arrives.md │ │ │ │ ├── 2014-03-26-lediteur-de-requete-impala.md │ │ │ │ ├── 2014-03-26-linterface-utilisateur-web-pour-hbase-hbase-browser.md │ │ │ │ ├── 2014-03-26-nouvelle-application-zookeeper-browser.md │ │ │ │ ├── 2014-04-01-hadoop-tutorial-hadoop-voice-recognition.md │ │ │ │ ├── 2014-04-02-hadoop-tutorial-oozie-workflow-credentials-with-a-hive-action-with-kerberos.md │ │ │ │ ├── 2014-04-03-hadoop-tutorial-monitor-and-get-alerts-for-your-workflows-with-the-oozie-slas.md │ │ │ │ ├── 2014-04-04-hadoop-tutorial-new-impala-and-hive-editors.md │ │ │ │ ├── 2014-04-04-how-to-fix-map.md │ │ │ │ ├── 2014-04-07-hadoop-tutorial-live-demo-hadoop-directly-from-your-browser.md │ │ │ │ ├── 2014-04-10-singapore-hadoop-meetup.md │ │ │ │ ├── 2014-04-17-hadoop-tutorial-how-to-create-a-real-hadoop-cluster-in-10-minutes.md │ │ │ │ ├── 2014-04-17-yahoo-hadoop-meetup-integrate-hue-with-your-hadoop-cluster.md │ │ │ │ ├── 2014-04-23-israel-hadoop-meetup-hbase-browser.md │ │ │ │ ├── 2014-04-25-cloudera-enterprise-5-7-brings-a-faster-and-prettier-hue-for-sql.md │ │ │ │ ├── 2014-05-19-hadoop-tutorial-how-to-distribute-impala-query-load.md │ │ │ │ ├── 2014-05-20-visualize-snappy-compressed-avro-files.md │ │ │ │ ├── 2014-05-21-team-retreat-in-the-caribbean-curacao.md │ │ │ │ ├── 2014-05-29-hadoop-tutorial-make-hadoop-more-accessible-by-integrating-multiple-ldap-servers.md │ │ │ │ ├── 2014-05-30-hadoop-tutorial-how-to-integrate-unix-users-and-groups.md │ │ │ │ ├── 2014-06-02-hadoop-search-dynamic-search-dashboards-with-solr.md │ │ │ │ ├── 2014-06-02-hadoop-ui-hue-3-6-and-the-search-dashboards-are-out.md │ │ │ │ ├── 2014-06-05-budapest-dw-2014-open-up-interactive-big-data-analysis-for-your-enterprise.md │ │ │ │ ├── 2014-06-11-how-to-use-the-new-chart-icons-with-the-hue-sdk-or-in-standalone.md │ │ │ │ ├── 2014-06-12-how-ldap-and-saml-integration-with-hue-work.md │ │ │ │ ├── 2014-06-12-i-put-a-proxy-on-hue.md │ │ │ │ ├── 2014-06-16-get-started-with-spark-deploy-spark-server-and-compute-pi-from-your-web-browser.md │ │ │ │ ├── 2014-06-18-hadoop-tutorial-yarn-resource-manager-high-availability-ha-in-mr2.md │ │ │ │ ├── 2014-06-20-analyse-apache-logs-and-build-your-own-web-analytics-dashboard-with-hadoop-and-solr.md │ │ │ │ ├── 2014-07-02-spark-summit-2014-a-web-application-for-interactive-data-analysis-with-spark.md │ │ │ │ ├── 2014-07-15-how-to-fix-the-bignumbers-results-on-beeswax-and-impala.md │ │ │ │ ├── 2014-07-17-rbtools-example-how-do-easily-do-code-reviews-with-review-board.md │ │ │ │ ├── 2014-07-24-tutorial-how-to-run-the-hue-integration-tests.md │ │ │ │ ├── 2014-09-03-team-retreat-hawaii-big-island.md │ │ │ │ ├── 2014-09-11-how-to-build-hue-on-ubuntu-14-04-trusty.md │ │ │ │ ├── 2014-09-17-hadoop-tutorial-hive-and-impala-queries-life-cycle.md │ │ │ │ ├── 2014-09-17-hadoop-tutorial-kerberos-security-and-sentry-authorization-for-solr-search-app.md │ │ │ │ ├── 2014-09-19-new-in-cloudera-enterprise-5-9-s3-integration-and-sql-editor-improvements.md │ │ │ │ ├── 2014-09-22-hadoop-tutorial-ssl-encryption-between-hue-and-hive.md │ │ │ │ ├── 2014-10-02-how-to-configure-hue-in-your-hadoop-cluster.md │ │ │ │ ├── 2014-10-03-running-an-oozie-workflow-and-getting-split-class-org-apache-oozie-action-hadoop-oozielauncherinputformatemptysplit-not-found.md │ │ │ │ ├── 2014-10-07-apache-sentry-made-easy-with-the-new-hue-security-app.md │ │ │ │ ├── 2014-10-08-file-browser-enhancements-hdfs-operations-made-easy.md │ │ │ │ ├── 2014-10-08-search-app-enhancements-explore-even-more-data.md │ │ │ │ ├── 2014-10-09-bay-area-bike-share-analysis-with-the-hadoop-notebook-and-spark-sql.md │ │ │ │ ├── 2014-10-09-hue-3-7-with-sentry-app-and-new-search-widgets-are-out.md │ │ │ │ ├── 2014-10-09-improved-oozie-dashboard-bulk-manipulate-your-jobs.md │ │ │ │ ├── 2014-11-12-team-retreat-in-tenerife.md │ │ │ │ ├── 2014-11-13-presentation-solr-lucene-revolution-interactively-search-and-visualize-your-big-data.md │ │ │ │ ├── 2014-11-22-updated-saml-2-0-support.md │ │ │ │ ├── 2014-12-03-hadoop-yarn-11-local-dirs-are-bad-varlibhadoop-yarncacheyarnnm-local-dir-11-log-dirs-are-bad-varloghadoop-yarncontainers.md │ │ │ │ ├── 2014-12-09-how-to-use-hcatalog-with-pig-in-a-secured-cluster.md │ │ │ │ ├── 2014-12-11-how-to-run-hue-with-the-apache-server.md │ │ │ │ ├── 2014-12-12-how-to-use-hue-with-hive-and-impala-configured-with-ldap-authentication-and-ssl.md │ │ │ │ ├── 2014-12-15-team-retreat-in-nicaragua-and-belize.md │ │ │ │ ├── 2014-12-16-how-to-deploy-hue-on-hdp.md │ │ │ │ ├── 2015-01-14-big-data-spain-2014-big-data-web-applications-for-interactive-hadoop.md │ │ │ │ ├── 2015-01-16-configure-hue-with-https-ssl.md │ │ │ │ ├── 2015-01-21-automatic-high-availability-with-hue-and-cloudera-manager.md │ │ │ │ ├── 2015-02-06-export-and-import-your-search-dashboards.md │ │ │ │ ├── 2015-02-06-team-retreat-in-the-phillipines.md │ │ │ │ ├── 2015-02-08-hue-api-execute-some-builtin-commands.md │ │ │ │ ├── 2015-02-10-hue-3-7-with-sentry-app-and-new-search-widgets-are-out-2.md │ │ │ │ ├── 2015-02-12-hadoop-hue-3-on-hdp-installation-tutorial.md │ │ │ │ ├── 2015-03-10-fixing-the-yarn-invalid-resource-request-requested-memory-0-or-requested-memory-max-configured.md │ │ │ │ ├── 2015-03-11-export-and-import-your-oozie-workflows.md │ │ │ │ ├── 2015-03-12-solr-search-ui-only.md │ │ │ │ ├── 2015-03-23-start-developing-hue-on-a-mac-in-a-few-minutes.md │ │ │ │ ├── 2015-03-25-hbase-browsing-with-doas-impersonation-and-kerberos.md │ │ │ │ ├── 2015-03-26-add-a-top-banner-to-hue.md │ │ │ │ ├── 2015-03-26-using-nginx-to-speed-up-hue-3-8-0.md │ │ │ │ ├── 2015-03-30-more-solr-search-dashboards-possibilities.md │ │ │ │ ├── 2015-04-01-hueber-is-launching-just-tap-for-getting-your-big-data-cloud.md │ │ │ │ ├── 2015-04-02-new-apache-oozie-workflow-coordinator-bundle-editors.md │ │ │ │ ├── 2015-04-08-developer-guide-on-upgrading-apps-for-django-1-6.md │ │ │ │ ├── 2015-04-10-hive-1-1-and-impala-2-2-support.md │ │ │ │ ├── 2015-04-10-oozie-dashboard-improvements.md │ │ │ │ ├── 2015-04-23-new-notebook-application-for-spark-sql.md │ │ │ │ ├── 2015-04-24-hue-3-8-with-an-oozie-editor-revamp-better-performances-improved-spark-ui-is-out.md │ │ │ │ ├── 2015-05-04-team-retreat-in-israel.md │ │ │ │ ├── 2015-05-15-harness-the-power-of-spark-and-solr-in-hue-big-data-amsterdam-v-2-0-meeetup.md │ │ │ │ ├── 2015-05-21-build-a-real-time-analytic-dashboard-with-solr-search-and-spark-streaming.md │ │ │ │ ├── 2015-06-12-hadoop-summit-san-jose-2015-interactively-query-and-search-your-big-data.md │ │ │ │ ├── 2015-06-15-install-hue-3-on-pivotal-hd-3-0.md │ │ │ │ ├── 2015-06-29-big-data-day-la-solr-search-with-spark-for-big-data-analytics-in-action-with-hue.md │ │ │ │ ├── 2015-07-07-bay-area-bikeshare-data-analysis-with-search-and-spark-notebook.md │ │ │ │ ├── 2015-07-08-analizziamo-i-dati-bikeshare-della-bay-area-con-solr-search-e-spark-notebook.md │ │ │ │ ├── 2015-07-08-analyse-des-donnees-des-velib-de-san-francisco-avec-solr-search-et-un-spark-notebook.md │ │ │ │ ├── 2015-07-09-how-to-install-hue-3-on-ibm-biginsights-4-0-to-explore-big-data.md │ │ │ │ ├── 2015-07-25-whats-new-in-hue-in-5-8.md │ │ │ │ ├── 2015-07-27-enhance-search-results.md │ │ │ │ ├── 2015-07-30-filter-sort-browse-hive-partitions-with-hues-metastore.md │ │ │ │ ├── 2015-08-05-exporting-and-importing-oozie-workflows.md │ │ │ │ ├── 2015-08-07-configuring-hue-multiple-authentication-backends-and-ldap.md │ │ │ │ ├── 2015-08-11-oozie-dashboard-improvements-in-hue-3-9.md │ │ │ │ ├── 2015-08-19-big-data-scala-by-the-bay-interactive-spark-in-your-browser.md │ │ │ │ ├── 2015-08-19-solr-sf-meetup-interactively-search-and-visualize-your-big-data.md │ │ │ │ ├── 2015-08-20-dynamic-search-dashboard-improvements-3.md │ │ │ │ ├── 2015-08-24-hue-3-9-with-all-its-improvements-is-out.md │ │ │ │ ├── 2015-08-24-improved-hbase-cell-editor-history.md │ │ │ │ ├── 2015-08-24-spark-notebook-and-livy-rest-job-server-improvements.md │ │ │ │ ├── 2015-08-28-mini-task-configure-hue-with-a-proxy.md │ │ │ │ ├── 2015-09-02-mini-how-to-disabling-some-apps-from-showing-up.md │ │ │ │ ├── 2015-09-09-storing-passwords-in-script-rather-than-hue-ini-files.md │ │ │ │ ├── 2015-09-10-ldap-or-pam-pass-through-authentication-with-hive-or-impala.md │ │ │ │ ├── 2015-09-24-how-to-use-the-livy-spark-rest-job-server-for-interactive-spark-2-2.md │ │ │ │ ├── 2015-09-25-bay-area-bike-share-data-analysis-with-spark-notebook-part-2.md │ │ │ │ ├── 2015-10-04-hadoop-world-spark-meetup-interactive-spark-in-your-browser.md │ │ │ │ ├── 2015-10-13-how-to-use-the-livy-spark-rest-job-server-api-for-sharing-spark-rdds-and-contexts.md │ │ │ │ ├── 2015-10-21-how-to-use-the-livy-spark-rest-job-server-api-for-submitting-batch-jar-python-and-streaming-spark-jobs.md │ │ │ │ ├── 2015-10-22-use-the-shell-action-in-oozie.md │ │ │ │ ├── 2015-10-27-performance-tuning.md │ │ │ │ ├── 2015-10-28-spark-summit-europe-building-a-rest-job-server-for-interactive-spark-as-a-service.md │ │ │ │ ├── 2015-11-05-assist-and-autocomplete-improvements.md │ │ │ │ ├── 2015-11-10-team-retreat-in-spain-amsterdam.md │ │ │ │ ├── 2015-12-07-auditing-user-administration-operations-with-hue-and-cloudera-navigator-2.md │ │ │ │ ├── 2015-12-08-automatic-high-availability-and-load-balancing-of-hue-in-cloudera-manager-with-monitoring.md │ │ │ │ ├── 2015-12-14-hue-3-9-avec-ses-ameliorations-generales-est-sorti-2.md │ │ │ │ ├── 2015-12-18-getting-started-with-hue-in-2-minutes-with-docker.md │ │ │ │ ├── 2016-01-04-use-the-spark-action-in-oozie.md │ │ │ │ ├── 2016-02-25-browsing-hive-tables-data-and-metadata-is-getting-faster-and-prettier.md │ │ │ │ ├── 2016-02-27-team-retreat-in-vietnam.md │ │ │ │ ├── 2016-03-03-custom-sql-query-editors.md │ │ │ │ ├── 2016-03-15-oozie-improvements-in-hue-3-10.md │ │ │ │ ├── 2016-04-06-suggest-for-solr-search-dashboards.md │ │ │ │ ├── 2016-05-04-the-hue-team-development-process.md │ │ │ │ ├── 2016-05-09-mini-team-retreat-in-bloemendaal.md │ │ │ │ ├── 2016-05-12-hue-3-10-with-its-new-sql-editor-is-out.md │ │ │ │ ├── 2016-06-02-ui-to-edit-sentry-privilege-of-solr-collections.md │ │ │ │ ├── 2016-06-06-drag-drop-saved-hive-queries-into-your-workflows.md │ │ │ │ ├── 2016-06-13-introducing-the-new-login-modal-and-idle-session-timeout.md │ │ │ │ ├── 2016-06-16-introducing-hues-new-home-page.md │ │ │ │ ├── 2016-06-29-hadoop-summit-san-jose-2016-hue-sql-editor-and-architecture.md │ │ │ │ ├── 2016-06-30-new-sql-editor.md │ │ │ │ ├── 2016-06-30-work-hard-and-see-the-world-some-tips-to-have-a-wonderful-team-retreat.md │ │ │ │ ├── 2016-07-12-sql-editor-for-solr-sql.md │ │ │ │ ├── 2016-07-19-change-your-maps-look-and-feel.md │ │ │ │ ├── 2016-07-22-login-into-hue-using-the-python-request-library.md │ │ │ │ ├── 2016-08-16-mini-team-retreat-in-portland.md │ │ │ │ ├── 2016-08-22-easy-indexing-of-data-into-solr.md │ │ │ │ ├── 2016-08-23-how-to-schedule-spark-jobs-with-spark-on-yarn-and-oozie.md │ │ │ │ ├── 2016-08-24-hue-3-11-with-its-new-s3-browser-and-sql-autocomplete-is-out.md │ │ │ │ ├── 2016-08-25-introducing-s3-support-in-hue.md │ │ │ │ ├── 2016-08-26-brand-new-autocompleter-for-hive-and-impala.md │ │ │ │ ├── 2016-08-26-new-features-in-the-sql-results-grid-in-hive-and-impala.md │ │ │ │ ├── 2016-09-22-hue-security-improvements.md │ │ │ │ ├── 2016-10-29-team-retreat-in-riga.md │ │ │ │ ├── 2016-12-19-security-improvements-http-only-flag-sasl-qop-and-more.md │ │ │ │ ├── 2016-12-22-extract-archives-as-oozie-job.md │ │ │ │ ├── 2016-12-22-oozie-improvements-in-3-12-with-email-notifications-and-extended-dashboard-filtering.md │ │ │ │ ├── 2016-12-22-sql-improvements-with-row-counts-sample-popup-and-more.md │ │ │ │ ├── 2017-01-15-team-retreat-in-malaysia-and-cambodia.md │ │ │ │ ├── 2017-02-06-hue-3-12-the-improved-editor-for-sql-developers-and-analysts-is-out.md │ │ │ │ ├── 2017-04-03-hue-with-a-custom-logo.md │ │ │ │ ├── 2017-04-10-job-browsing-improvements.md │ │ │ │ ├── 2017-05-11-sql-autocomplete-popup-revamp-and-new-create-table-wizard.md │ │ │ │ ├── 2017-07-13-hue-4-and-its-new-interface-is-out.md │ │ │ │ ├── 2017-07-18-hue-4-sql-editor-improvements.md │ │ │ │ ├── 2017-07-20-the-hue-4-user-interface-in-detail.md │ │ │ │ ├── 2017-08-24-importing-data-from-traditional-databases-into-hdfshive-in-just-a-few-clicks.md │ │ │ │ ├── 2017-10-04-hue-4-1-is-out.md │ │ │ │ ├── 2017-11-20-browsing-adls-data-querying-it-with-sql-and-exporting-the-results-back-in-hue-4-2.md │ │ │ │ ├── 2017-12-08-browsing-impala-query-execution-within-the-sql-editor.md │ │ │ │ ├── 2017-12-13-using-hue-to-interact-with-apache-kylin.md │ │ │ │ ├── 2018-01-04-how-to-optimally-configure-your-analytic-database-for-high-availability-with-hue-and-other-sql-clients.md │ │ │ │ ├── 2018-01-05-import-data-to-be-queried-via-the-self-service-drag-drop-create-table-wizard.md │ │ │ │ ├── 2018-01-10-self-service-bi-doing-a-customer-360-by-querying-and-joining-salesforce-marketing-and-log-datasets.md │ │ │ │ ├── 2018-01-16-intuitively-discovering-and-exploring-a-wine-dataset-with-the-dynamic-dashboards.md │ │ │ │ ├── 2018-02-02-easier-administration-of-hue-with-the-new-threads-and-metrics-pages.md │ │ │ │ ├── 2018-04-04-hue-4-2-and-its-self-service-bi-improvements-are-out.md │ │ │ │ ├── 2018-04-05-sql-editor-variables.md │ │ │ │ ├── 2018-05-01-simplifying-the-end-user-data-catalog-search.md │ │ │ │ ├── 2018-05-11-improved-job-scheduling-monitoring.md │ │ │ │ ├── 2018-05-30-improved-sql-exploration-in-hue-4-3.md │ │ │ │ ├── 2018-07-06-improved-oozie-workflow-graph-display-in-hue-4-3.md │ │ │ │ ├── 2018-08-16-live-analytics-of-live-apache-log-files.md │ │ │ │ ├── 2018-08-17-finer-grain-privileges.md │ │ │ │ ├── 2018-08-17-improved-dashboard-layout.md │ │ │ │ ├── 2018-09-11-how-to-configure-hue-to-enable-s3-file-browser-for-standard-or-v4-regions.md │ │ │ │ ├── 2018-09-14-configure-hue-with-multi-authentication-ldap-djangobackend-and-sync-ldap-user-group.md │ │ │ │ ├── 2018-09-14-get-a-mode-to-allow-easy-profiling-of-requests.md │ │ │ │ ├── 2018-10-17-additional-sql-improvements-in-hue-4-3.md │ │ │ │ ├── 2018-10-17-hue-4-3-and-its-app-building-improvements-are-out.md │ │ │ │ ├── 2019-03-02-configure-ambari-hdp-with-hue.md │ │ │ │ ├── 2019-03-11-self-service-impala-sql-query-troubleshooting.md │ │ │ │ ├── 2019-03-12-hue-in-docker.md │ │ │ │ ├── 2019-03-18-quick-task-how-to-count-the-documents-of-a-user-via-the-shell.md │ │ │ │ ├── 2019-03-22-querying-exploring-the-instacart-dataset-part-1-ingesting-the-data.md │ │ │ │ ├── 2019-03-22-quick-task-how-to-query-apache-druid-analytic-database.md │ │ │ │ ├── 2019-03-26-document-count-check.md │ │ │ │ ├── 2019-03-26-quick-task-fixing-importerror-no-module-named-google_compute_engine-when-building-hue.md │ │ │ │ ├── 2019-03-26-restrict-number-of-concurrent-sessions-per-user.md │ │ │ │ ├── 2019-03-28-hue-4-4-and-its-improvements-are-out.md │ │ │ │ ├── 2019-04-01-hive-on-tez-integrations-improvements.md │ │ │ │ ├── 2019-04-10-how-to-enable-new-user-for-table-creation-on-secure-cluster.md │ │ │ │ ├── 2019-04-12-documentation-revamp-making-hue-easier-to-install-use-and-develop.md │ │ │ │ ├── 2019-04-16-2x-faster-page-load-time-with-the-new-bundling-of-javascript-files.md │ │ │ │ ├── 2019-06-12-improving-the-developer-productivity-with-some-continuous-integration.md │ │ │ │ ├── 2019-06-20-realtime-catalog-search-with-hue-and-apache-atlas.md │ │ │ │ ├── 2019-07-19-build-your-own-autocompleter.md │ │ │ │ ├── 2019-07-24-quick-start-a-hue-development-environment-in-3-minutes-with-docker.md │ │ │ │ ├── 2019-07-26-hue-in-kubernetes.md │ │ │ │ ├── 2019-08-07-sql-querying-apache-hbase-with-apache-phoenix.md │ │ │ │ ├── 2019-08-09-built-in-hive-language-reference-in-the-sql-editor.md │ │ │ │ ├── 2019-08-12-hue-4-5-and-its-improvements-are-out.md │ │ │ │ ├── 2019-09-11-collecting-and-querying-hue-logs-with-fluentd-in-kubernetes.md │ │ │ │ ├── 2019-09-16-collecting-hue-metrics-with-prometheus-in-kubernetes.md │ │ │ │ ├── 2019-09-24-introducing-request-tracing-with-opentracing-and-jaeger-in-kubernetes.md │ │ │ │ ├── 2019-10-10-integration-with-microsoft-azure-data-lake-store-gen2.md │ │ │ │ ├── 2019-10-17-easily-checking-for-deadlinks-on-docs-gethue-com.md │ │ │ │ ├── 2019-10-24-how-to-create-a-hbase-table-on-kerberized-hadoop-clusters.md │ │ │ │ ├── 2019-10-31-how-to-improve-or-add-your-own-sql-syntax-highlighter.md │ │ │ │ ├── 2019-11-13-sql-column-keys-information.md │ │ │ │ ├── 2019-12-03-release-hue-4-6.md │ │ │ │ ├── 2020-01-28-ten-years-data-querying-ux-evolution.md │ │ │ │ ├── 2020-02-10-sql-editor-user-experience.md │ │ │ │ ├── 2020-02-27-using-sql-parser-module.md │ │ │ │ ├── 2020-03-04-collaboration-with-link-and-gist.md │ │ │ │ ├── 2020-03-11-checking-dead-link-automatically-continuous-integration.md │ │ │ │ ├── 2020-04-01-hue-active-users-metric.md │ │ │ │ ├── 2020-04-01-set-up-prometheus-server-without-kubernetes.md │ │ │ │ ├── 2020-04-07-some-4-7-admin-improvements.md │ │ │ │ ├── 2020-04-10-release-hue-4-7.md │ │ │ │ ├── 2020-04-27-sql-editor-for-apache-spark-sql-with-livy.md │ │ │ │ ├── 2020-04-30-quickstart-sql-editor-for-apache-impala.md │ │ │ │ ├── 2020-05-05-how-to-configure-hue-to-use-knoxspnegodjango-backend-on-secure-cluster.md │ │ │ │ ├── 2020-05-06-sql-editor-for-apache-flink-sql.md │ │ │ │ ├── 2020-05-19-how-to-grant-ranger-permissions-for-new-user-on-secure-cluster.md │ │ │ │ ├── 2020-06-22-automated-checking-licenses-absolute-paths-continuous-integration.md │ │ │ │ ├── 2020-06-23-monitoring-hue-activity-with-grafana-dashboards.md │ │ │ │ ├── 2020-08-15-automated-checking-python-style-lint-git-commit-messages-continuous-integration.md │ │ │ │ ├── 2020-08-19-quick-hue-in-docker.md │ │ │ │ ├── 2020-08-22-quickstart-hue-in-kubernetes.md │ │ │ │ ├── 2020-09-14-rest-api-querying.md │ │ │ │ ├── 2020-09-15-sql-querying-improvements-phoenix-flink-sparksql-erd.md │ │ │ │ ├── 2020-09-23-release-hue-4-8.md │ │ │ │ ├── 2020-09-30-quick-checking-sql-connection-from-kubernetes-pod.md │ │ │ │ ├── 2020-10-20-querying-live-streams-of-data-with-flink-sql.md │ │ │ │ ├── 2020-10-20-querying-live-streams-of-data-with-kafka-sql.md │ │ │ │ ├── 2020-11-17-querying-live-kafka-data-in-apache-hbase-with-phoenix.md │ │ │ │ ├── 2020-12-31-querying-spark-sql-with-spark-thrift-server-and-hue-editor.md │ │ │ │ ├── 2021-01-10-live-sql-querying-live-kafka-logs-and-sending-live-updates-with-flink-sql.md │ │ │ │ ├── 2021-02-02-release-hue-4-9.md │ │ │ │ ├── 2021-03-04-vue3-build-cli-options-composition-api-template-web-components-hue.md │ │ │ │ ├── 2021-03-06-web-api-service-upgrade-no-downtime-kubernetes-rollout.md │ │ │ │ ├── 2021-03-09-process-and-learnings-when-upgrading-the-webserver-stack-django-upgrade-1.11-to-3.1.md │ │ │ │ ├── 2021-04-05-interactively-querying-hbase-via-sql-tech-talk.md │ │ │ │ ├── 2021-04-09-collaborate-on-your-sql-queries-and-results-directly-within-slack.md │ │ │ │ ├── 2021-04-19-publish-kubernetes-container-application-via-package-with-helm.md │ │ │ │ ├── 2021-04-23-s3-file-access-without-any-credentials-and-signed-urls.md │ │ │ │ ├── 2021-05-18-installing-hue-slack-app-in-three-simple-steps.md │ │ │ │ ├── 2021-05-26-improved-hue-importer-select-a-file-choose-a-dialect-create-a-table.md │ │ │ │ ├── 2021-05-29-create-own-sql-editor-via-webcomponent-and-public-api.md │ │ │ │ ├── 2021-06-14-release-hue-4-10.md │ │ │ │ ├── 2021-06-30-how-to-use-azure-storage-rest-api-with-shared-access-sginature-sas-tokens.md │ │ │ │ ├── 2021-07-26-create-sql-tables-on-the-fly-with-zero-clicks.md │ │ │ │ ├── 2021-08-10-open-in-importer-and-copy-path-options-in-filebrowser.md │ │ │ │ ├── 2021-08-13-public-api-object-storage.md │ │ │ │ ├── 2021-08-17-create-phoenix-tables-in-just-2-steps.md │ │ │ │ ├── 2021-09-14-sso-for-rest-apis-with-your-custom-jwt-authentication.md │ │ │ │ ├── 2021-09-21-access-your-data-in-abfs-without-any-credential-keys.md │ │ │ │ ├── 2021-11-15-create-sql-tables-from-excel-files.md │ │ │ │ ├── 2022-02-01-hplsql-support.md │ │ │ │ ├── 2022-10-11-creating-iceberg-tables-in-hue.md │ │ │ │ ├── 2023-01-23-release-hue-4.11.md │ │ │ │ ├── 2023-03-01-hue-community-2023.md │ │ │ │ ├── 2023-05-02-discover-the-power-of-apache-ozone-using-the-hue-file-browser.md │ │ │ │ ├── 2024-06-26-integrating-trino-editor-in-hue-supporting-data-mesh-and-SQL-federation.md │ │ │ │ └── _index.md │ │ │ ├── privacy-policy │ │ │ │ └── index.md │ │ │ ├── sql-editor │ │ │ │ └── index.md │ │ │ └── terms-and-conditions-of-site-use │ │ │ │ └── index.md │ │ └── jp │ │ │ ├── posts │ │ │ ├── 2013-09-27-impalaクエリエディタで高速なsql.md │ │ │ ├── 2013-10-23-チュートリアル:impala用の優れたファイルフォーマ.md │ │ │ ├── 2013-10-24-hadoopチュートリアル-hiveserver2とsentryでhiveクエリエディタ.md │ │ │ ├── 2013-10-29-apache-hiveエディタとhive-metastoreブラウザ.md │ │ │ ├── 2013-11-04-hadoopチュートリアル-シーズンii:7-solrでyelpデータをインデ.md │ │ │ ├── 2013-11-08-hadoopチュートリアル・シリーズ-ii-8-sqoop2でhadoopからデータを.md │ │ │ ├── 2013-11-08-任意の言語の外部ウェブアプリを統合する.md │ │ │ ├── 2013-11-08-新しい検索機能-グラフィカルファセット.md │ │ │ ├── 2013-11-11-dbqueryアプリ-mysqlとpostgresqlクエリエディタ.md │ │ │ ├── 2013-11-11-hueチームの静養-タイ.md │ │ │ ├── 2013-11-19-新しい-zookeeper-ブラウザーアプリ.md │ │ │ ├── 2013-11-27-hadoop-tutorial-create-hive-tables-with-headers-and.md │ │ │ ├── 2013-12-02-任意のoozieジョブをhdfsから直接サブミット.md │ │ │ ├── 2013-12-05-hadoopチュートリアル-pigエディタのnavigatorによる言語アシス.md │ │ │ ├── 2013-12-12-パリに行ったhue-hug-france.md │ │ │ ├── 2013-12-13-ロサンゼルスに行ったhue-hbase-meetup.md │ │ │ ├── 2013-12-16-実際のセキュリティのためにimpalaアプリでsentryを使用.md │ │ │ ├── 2013-12-30-mr1でのjobtracker高可用性ha.md │ │ │ ├── 2014-01-02-新しいspark-web-ui-sparkアプリ.md │ │ │ ├── 2014-03-26-hue-3-5が公開されました!.md │ │ │ ├── 2014-03-26-最近のセキュリティ強化.md │ │ │ ├── 2014-03-28-django用のより良いpygresqlをサポート.md │ │ │ ├── 2014-04-01-hadoopの音声認識-hadoopを使うためにあなたの声を使う.md │ │ │ ├── 2014-04-02-oozieワークフローのクレデンシャル.md │ │ │ ├── 2014-04-03-oozie-slaでワークフローの監視とアラートを取得.md │ │ │ ├── 2014-04-04-hadoopのインタラクティブsqlが簡単に.md │ │ │ ├── 2014-04-04-hue-3-5で地図チャートを修復する方法.md │ │ │ ├── 2014-04-07-hadoop-tutorial-live-demo-hadoop-directly-from-your-browser.md │ │ │ ├── 2014-04-22-singapore-hadoop-meetup-2.md │ │ │ ├── 2014-04-22-yahoo-hadoop-meetup-あなたのhadoopクラスタをhueと統合する.md │ │ │ ├── 2014-04-23-10分でhadoopクラスタを作成するには.md │ │ │ ├── 2014-04-24-israel-hadoop-meetup-hbase-browser-jp.md │ │ │ ├── 2014-05-20-hadoop-tutorial-how-to-distribute-impala-query-load-2.md │ │ │ ├── 2014-06-03-hadoop-search-dynamic-search-dashboards-with-solr-2.md │ │ │ ├── 2014-06-03-hadoop-ui-hue-3-6-and-the-search-dashboards-are-out-2.md │ │ │ ├── 2014-06-17-get-started-with-spark-deploy-spark-server-and-compute-pi-from-your-web-browser-2.md │ │ │ ├── 2014-06-19-hadoop-tutorial-yarn-resource-manager-high-availability-ha-in-mr2-2.md │ │ │ ├── 2014-06-21-analyse-apache-logs-and-build-your-own-web-analytics-dashboard-with-hadoop-and-solr-2.md │ │ │ ├── 2014-07-03-spark-summit-2014-a-web-application-for-interactive-data-analysis-with-spark-2.md │ │ │ ├── 2014-07-15-how-to-fix-the-bignumbers-results-on-beeswax-and-impala-2.md │ │ │ ├── 2014-09-22-hadoop-tutorial-hive-and-impala-queries-life-cycle-2.md │ │ │ ├── 2014-09-22-hadoop-tutorial-kerberos-security-and-sentry-authorization-for-solr-search-app-2.md │ │ │ ├── 2015-02-17-hue-3-7-with-sentry-app-and-new-search-widgets-are-out-2.md │ │ │ ├── 2015-02-26-export-and-import-your-search-dashboards-2.md │ │ │ ├── 2015-02-26-hue-api-execute-some-builtin-commands-2.md │ │ │ ├── 2015-03-05-how-to-use-hue-with-hive-and-impala-configured-with-ldap-authentication-and-ssl-2.md │ │ │ ├── 2015-03-25-start-developing-hue-on-a-mac-in-a-few-minutes-2.md │ │ │ ├── 2015-04-03-new-apache-oozie-workflow-coordinator-bundle-editors-2.md │ │ │ ├── 2015-04-10-developer-guide-on-upgrading-apps-for-django-1-6-2.md │ │ │ ├── 2015-04-13-hive-1-1-and-impala-2-2-support-2.md │ │ │ ├── 2015-04-13-more-solr-search-dashboards-possibilities-2.md │ │ │ ├── 2015-04-13-oozie-dashboard-improvements-2.md │ │ │ ├── 2015-04-25-httpgethue-comhue-3-8-with-an-oozie-editor-revamp-better-performances-improved-spark-ui-is-out.md │ │ │ ├── 2015-04-25-new-notebook-application-for-spark-sql-2.md │ │ │ ├── 2015-05-22-build-a-real-time-analytic-dashboard-with-solr-search-and-spark-streaming-2.md │ │ │ ├── 2015-06-15-hadoop-summit-san-jose-2015-interactively-query-and-search-your-big-data-2.md │ │ │ ├── 2015-06-30-big-data-day-la-solr-search-with-spark-for-big-data-analytics-in-action-with-hue-2.md │ │ │ ├── 2015-06-30-spark-casual-talk-1-at-tokyo-hue-notebook.md │ │ │ ├── 2015-07-02-add-a-top-banner-to-hue-2.md │ │ │ ├── 2015-07-08-bay-area-bikeshare-data-analysis-with-search-and-spark-notebook-2.md │ │ │ ├── 2015-08-11-enhance-search-results-2.md │ │ │ ├── 2015-08-21-dynamic-search-dashboard-improvements-3-2.md │ │ │ ├── 2015-08-21-filter-sort-browse-hive-partitions-with-hues-metastore-2.md │ │ │ ├── 2015-10-01-bay-area-bike-share-data-analysis-with-spark-notebook-part-2-2.md │ │ │ ├── 2015-10-06-hadoop-world-spark-meetup-interactive-spark-in-your-browser-2.md │ │ │ ├── 2016-02-12-how-to-use-the-livy-spark-rest-job-server-api-for-submitting-batch-jar-python-and-streaming-spark-jobs.md │ │ │ ├── 2016-02-15-how-to-use-the-livy-spark-rest-job-server-api-for-submitting-batch-jar-python-and-streaming-spark-jobs-2.md │ │ │ ├── 2016-05-06-assist-and-autocomplete-improvements.md │ │ │ ├── 2016-05-13-hue-3-10-with-its-new-sql-editor-is-out.md │ │ │ ├── 2016-06-02-ui-to-edit-sentry-privilege-of-solr-collections.md │ │ │ ├── 2016-06-06-drag-drop-saved-hive-queries-into-your-workflows.md │ │ │ ├── 2016-06-13-introducing-the-new-login-modal-and-idle-session-timeout.md │ │ │ ├── 2016-06-16-introducing-hues-new-home-page.md │ │ │ ├── 2016-06-29-hadoop-summit-san-jose-2016-hue-sql-editor-and-architecture.md │ │ │ ├── 2016-06-30-new-sql-editor.md │ │ │ ├── 2016-07-15-sql-editor-for-solr-sql.md │ │ │ ├── 2016-07-19-change-your-maps-look-and-feel.md │ │ │ ├── 2016-07-22-ogin-into-hue-using-the-python-request-library.md │ │ │ ├── 2016-08-16-mini-team-retreat-in-portland.md │ │ │ ├── 2016-08-25-introducing-s3-support-in-hue.md │ │ │ ├── 2016-08-26-new-features-in-the-sql-results-grid-in-hive-and-impala.md │ │ │ ├── 2016-09-22-hue-security-improvements.md │ │ │ ├── 2016-10-29-rigaでのチームリトリート!.md │ │ │ ├── 2017-02-08-hue-3-12-the-improved-editor-for-sql-developers-and-analysts-is-out.md │ │ │ ├── 2017-05-12-sql-autocomplete-popup-revamp-and-new-create-table-wizard.md │ │ │ ├── 2017-07-14-hue-4-and-its-new-interface-is-out.md │ │ │ ├── 2017-07-20-hue-4-sql-editor-improvements.md │ │ │ ├── 2017-10-01-hue-meetup-tokyo-2017!.md │ │ │ ├── 2017-10-11-hue-4-1-is-out.md │ │ │ ├── 2017-10-11-the-hue-4-user-interface-in-detail.md │ │ │ ├── 2018-07-04-sql-editor-variables.md │ │ │ ├── 2018-10-31-additional-sql-improvements-in-hue-4-3.md │ │ │ ├── 2018-10-31-hue-4-3-and-its-app-building-improvements-are-out.md │ │ │ ├── 2019-03-01-getting-started-with-hue-in-2-minutes-with-docker.md │ │ │ ├── 2019-03-08-configure-ambari-hdp-with-hue.md │ │ │ ├── 2019-03-15-self-service-impala-sql-query-troubleshooting.md │ │ │ ├── 2019-07-27-quick-start-a-hue-development-environment-in-3-minutes-with-docker.md │ │ │ ├── 2019-07-28-hue-in-kubernetes.md │ │ │ ├── 2019-08-14-built-in-hive-language-reference-in-the-sql-editor.md │ │ │ ├── 2019-08-14-hue-4-5-and-its-improvements-are-out.md │ │ │ ├── 2019-08-14-sql-querying-apache-hbase-with-apache-phoenix.md │ │ │ ├── 2019-12-03-release-hue-4-6.md │ │ │ ├── 2020-01-28-ten-years-data-querying-ux-evolution.md │ │ │ ├── 2020-02-10-sql-editor-user-experience.md │ │ │ ├── 2020-02-27-using-sql-parser-module.md │ │ │ ├── 2020-03-04-collaboration-with-link-and-gist.md │ │ │ ├── 2020-03-11-checking-dead-link-automatically-continuous-integration.md │ │ │ ├── 2020-04-01-hue-active-users-metric.md │ │ │ ├── 2020-04-01-set-up-prometheus-server-without-kubernetes.md │ │ │ ├── 2020-04-07-some-4-7-admin-improvements.md │ │ │ ├── 2020-04-10-release-hue-4-7.md │ │ │ ├── 2020-04-27-sql-editor-for-apache-spark-sql-with-livy.md │ │ │ ├── 2020-04-30-quickstart-sql-editor-for-apache-impala.md │ │ │ ├── 2020-05-05-how-to-configure-hue-to-use-knoxspnegodjango-backend-on-secure-cluster.md │ │ │ ├── 2020-05-06-sql-editor-for-apache-flink-sql.md │ │ │ ├── 2020-05-19-how-to-grant-ranger-permissions-for-new-user-on-secure-cluster.md │ │ │ ├── 2020-06-22-automated-checking-licenses-absolute-paths-continuous-integration.md │ │ │ ├── 2020-06-23-monitoring-hue-activity-with-grafana-dashboards.md │ │ │ ├── 2020-08-15-automated-checking-python-style-lint-git-commit-messages-continuous-integration.md │ │ │ ├── 2020-08-19-quick-hue-in-docker.md │ │ │ ├── 2020-09-14-rest-api-querying.md │ │ │ ├── 2020-09-15-sql-querying-improvements-phoenix-flink-sparksql-erd.md │ │ │ ├── 2020-09-23-release-hue-4-8.md │ │ │ ├── 2020-09-30-quick-checking-sql-connection-from-kubernetes-pod.md │ │ │ ├── 2020-10-20-querying-live-streams-of-data-with-flink-sql.md │ │ │ ├── 2020-10-20-querying-live-streams-of-data-with-kafka-sql.md │ │ │ ├── 2020-11-17-querying-live-kafka-data-in-apache-hbase-with-phoenix.md │ │ │ ├── 2020-12-31-querying-spark-sql-with-spark-thrift-server-and-hue-editor.md │ │ │ ├── 2021-01-10-live-sql-querying-live-kafka-logs-and-sending-live-updates-with-flink-sql.md │ │ │ ├── 2021-02-02-release-hue-4-9.md │ │ │ ├── 2021-03-04-vue3-build-cli-options-composition-api-template-web-components-hue.md │ │ │ ├── 2021-03-06-web-api-service-upgrade-no-downtime-kubernetes-rollout.md │ │ │ ├── 2021-03-09-process-and-learnings-when-upgrading-the-webserver-stack-django-upgrade-1.11-to-3.1.md │ │ │ ├── 2021-04-05-interactively-querying-hbase-via-sql-tech-talk.md │ │ │ ├── 2021-04-09-collaborate-on-your-sql-queries-and-results-directly-within-slack.md │ │ │ ├── 2021-04-19-publish-kubernetes-container-application-via-package-with-helm.md │ │ │ ├── 2021-04-23-s3-file-access-without-any-credentials-and-signed-urls.md │ │ │ ├── 2021-05-18-installing-hue-slack-app-in-three-simple-steps.md │ │ │ ├── 2021-05-26-improved-hue-importer-select-a-file-choose-a-dialect-create-a-table.md │ │ │ ├── 2021-05-29-create-own-sql-editor-via-webcomponent-and-public-api.md │ │ │ ├── 2021-06-14-release-hue-4-10.md │ │ │ └── _index.md │ │ │ ├── privacy-policy │ │ │ └── index.md │ │ │ ├── sql-editor │ │ │ └── index.md │ │ │ └── terms-and-conditions-of-site-use │ │ │ └── index.md │ ├── layouts │ │ └── shortcodes │ │ │ └── youtube.html │ ├── static │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ ├── custom.css │ │ │ ├── iconsmind.css │ │ │ ├── lightbox.min.css │ │ │ ├── socicon.css │ │ │ ├── stack-interface.css │ │ │ └── theme.css │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── iconsmind.eot │ │ │ ├── iconsmind.ttf │ │ │ ├── iconsmind.woff │ │ │ ├── socicon.eot │ │ │ ├── socicon.svg │ │ │ ├── socicon.ttf │ │ │ ├── socicon.woff │ │ │ ├── stack-interface.eot │ │ │ ├── stack-interface.svg │ │ │ ├── stack-interface.ttf │ │ │ ├── stack-interface.woff │ │ │ └── stack-interface.woff2 │ │ ├── img │ │ │ ├── browsers.png │ │ │ ├── databases.svg │ │ │ ├── flags │ │ │ │ ├── en.png │ │ │ │ ├── en.svg │ │ │ │ ├── fr.svg │ │ │ │ ├── it.svg │ │ │ │ ├── jp.png │ │ │ │ ├── jp.svg │ │ │ │ └── se.svg │ │ │ ├── hue-logo.svg │ │ │ ├── hue4_editor.png │ │ │ ├── hue_slack_integration.png │ │ │ └── search-full-mode.png │ │ └── js │ │ │ ├── gifffer.min.js │ │ │ ├── jquery-3.1.1.min.js │ │ │ ├── lightbox.min.js │ │ │ ├── scripts.js │ │ │ ├── smooth-scroll.min.js │ │ │ └── typed.min.js │ └── themes │ │ └── stack-hue-theme │ │ ├── archetypes │ │ └── default.md │ │ ├── i18n │ │ ├── en.toml │ │ └── jp.toml │ │ ├── images │ │ ├── screenshot.png │ │ ├── splash.png │ │ └── tn.png │ │ ├── layouts │ │ ├── 404.html │ │ ├── _default │ │ │ ├── list.html │ │ │ └── single.html │ │ ├── index.html │ │ ├── partials │ │ │ ├── article.html │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── home.en.html │ │ │ ├── home.jp.html │ │ │ ├── latest.html │ │ │ ├── pagination.html │ │ │ ├── sidebar.html │ │ │ └── summary.html │ │ └── shortcodes │ │ │ ├── rawhtml.html │ │ │ └── webcomp.html │ │ └── theme.toml ├── html.dsl ├── images │ ├── README │ ├── callouts │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ ├── caution.png │ ├── dashboard.png │ ├── example.png │ ├── favicon.ico │ ├── home.png │ ├── hue-screens-demo.gif │ ├── hue_logo.png │ ├── important.png │ ├── next.png │ ├── note.png │ ├── post-login.png │ ├── prev.png │ ├── sql-editor.png │ ├── tip.png │ ├── up.png │ ├── val.png │ └── warning.png ├── index.txt ├── js │ ├── hue-docs.js │ ├── jquery.highlight.js │ ├── jquery.min.js │ └── jquery.treed.js ├── release-notes │ ├── release-notes-0.3.0.txt │ ├── release-notes-0.4.0.txt │ ├── release-notes-0.4.1.txt │ ├── release-notes-0.4.2.txt │ ├── release-notes-0.9.0.txt │ ├── release-notes-0.9.1.txt │ ├── release-notes-1.0.0.txt │ ├── release-notes-1.0.1.txt │ ├── release-notes-1.1.0.txt │ ├── release-notes-1.2.0.txt │ ├── release-notes-2.0.0-beta.txt │ ├── release-notes-2.0.1.txt │ ├── release-notes-2.1.0.txt │ ├── release-notes-2.2.0.txt │ ├── release-notes-2.3.0.txt │ ├── release-notes-2.4.0.txt │ ├── release-notes-2.5.0.txt │ ├── release-notes-3.0.0.txt │ ├── release-notes-3.10.0.txt │ ├── release-notes-3.11.0.txt │ ├── release-notes-3.12.0.txt │ ├── release-notes-3.5.0.txt │ ├── release-notes-3.6.0.txt │ ├── release-notes-3.7.0.txt │ ├── release-notes-3.8.0.txt │ ├── release-notes-3.9.0.txt │ ├── release-notes-4.0.0.txt │ ├── release-notes-4.1.0.txt │ ├── release-notes-4.2.0.txt │ └── release-notes-4.3.0.txt ├── sdk │ ├── architecture.png │ ├── calculator_error.png │ ├── calculator_werkzeug.png │ ├── calculator_working.jpg │ ├── diagrams.graffle │ │ ├── QuickLook │ │ │ ├── Preview.pdf │ │ │ └── Thumbnail.tiff │ │ ├── data.plist │ │ ├── image1.tiff │ │ ├── image10.tiff │ │ ├── image11.tiff │ │ ├── image12.tiff │ │ ├── image13.tiff │ │ ├── image14.tiff │ │ ├── image3.tiff │ │ ├── image5.tiff │ │ ├── image6.tiff │ │ └── image9.tiff │ ├── django_flow.png │ ├── django_request.png │ ├── from30kfeet.png │ ├── interactingwithhadoop.png │ ├── sdk.md │ └── webbackend.png └── user-guide │ ├── images │ ├── action.png │ ├── add.png │ ├── applications.png │ ├── browse.png │ ├── clear.jpg │ ├── clear.png │ ├── convert.png │ ├── copy.png │ ├── databases.png │ ├── edit.png │ ├── eye.png │ ├── eyeglass.png │ ├── fbtrash.png │ ├── gear.png │ ├── hue-4-interface-concept.png │ ├── huearch.jpg │ ├── icon_beeswax_24.png │ ├── icon_help_24.png │ ├── icon_impala_24.png │ ├── icon_jobsub_24.png │ ├── icon_oozie_24.png │ ├── icon_pig_24.png │ ├── icon_search_24.png │ ├── icon_shell_24.png │ ├── icon_table_browser_24.png │ ├── import.png │ ├── important.jpg │ ├── info.jpg │ ├── layoutChooser.png │ ├── log.png │ ├── misconfiguration.png │ ├── note.jpg │ ├── quick_start.png │ ├── tip.jpg │ ├── trash.png │ ├── warning.jpg │ └── workflow.jpg │ └── user-guide.md ├── ext └── thirdparty │ ├── README.md │ └── sample_data │ ├── 20130601 │ ├── midsummer.txt │ └── sonnets.txt │ ├── 20130602 │ ├── midsummer.txt │ └── sonnets.txt │ ├── 20130603 │ ├── midsummer.txt │ └── sonnets.txt │ ├── 20130604 │ ├── midsummer.txt │ └── sonnets.txt │ ├── 20130605 │ ├── midsummer.txt │ └── sonnets.txt │ ├── midsummer.txt │ └── sonnets.txt ├── jest.config.js ├── maven └── pom.xml ├── package.json ├── pyproject.toml ├── setup-hooks.sh ├── tools ├── ace-editor │ ├── .gitignore │ ├── CNAME │ ├── CONTRIBUTING.md │ ├── ChangeLog.txt │ ├── LICENSE │ ├── Makefile │ ├── Makefile.dryice.js │ ├── README-HUE │ ├── Readme.md │ ├── api │ │ ├── ace.html │ │ ├── anchor.html │ │ ├── background_tokenizer.html │ │ ├── command_manager.html │ │ ├── document.html │ │ ├── edit_session.html │ │ ├── editor.html │ │ ├── index.html │ │ ├── placeholder.html │ │ ├── range.html │ │ ├── renderloop.html │ │ ├── resources │ │ │ ├── csses │ │ │ │ └── ace_api.css │ │ │ ├── font │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── images │ │ │ │ ├── Ace_ERD.png │ │ │ │ ├── ace_logo.png │ │ │ │ ├── ace_logo_menu.png │ │ │ │ ├── c9-log-footer.png │ │ │ │ ├── c9-sponsor.png │ │ │ │ ├── cloud9-logo.png │ │ │ │ ├── content-top.png │ │ │ │ ├── content_bg.png │ │ │ │ ├── content_top_bg.png │ │ │ │ ├── dashed_back.png │ │ │ │ ├── footer-bg.png │ │ │ │ ├── main_bg.png │ │ │ │ ├── member-sprites.png │ │ │ │ ├── menu_disc.png │ │ │ │ ├── method_bg.png │ │ │ │ ├── scrolled-heading-shadow.png │ │ │ │ ├── sidebar-top-bg.png │ │ │ │ ├── sidebar_border.png │ │ │ │ └── swirl_divider.png │ │ │ └── javascripts │ │ │ │ ├── bbq.js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── clicker.js │ │ │ │ ├── disqus-ext.js │ │ │ │ ├── jquery-scrollspy.js │ │ │ │ ├── jquery.collapse.js │ │ │ │ ├── jquery.cookie.js │ │ │ │ ├── plugins.js │ │ │ │ ├── prettify-extension.js │ │ │ │ ├── prettify.js │ │ │ │ └── ux.js │ │ ├── scrollbar.html │ │ ├── search.html │ │ ├── selection.html │ │ ├── split.html │ │ ├── token_iterator.html │ │ ├── tokenizer.html │ │ ├── undomanager.html │ │ └── virtual_renderer.html │ ├── build_support │ │ ├── bookmarklet.html │ │ ├── editor.html │ │ ├── mini_require.js │ │ └── style.css │ ├── demo │ │ ├── autocompletion.html │ │ ├── autoresize.html │ │ ├── chromevox.html │ │ ├── emmet.html │ │ ├── ie7.html │ │ ├── keyboard_shortcuts.html │ │ ├── kitchen-sink │ │ │ ├── demo.js │ │ │ ├── dev_util.js │ │ │ ├── doclist.js │ │ │ ├── docs │ │ │ │ ├── Dockerfile │ │ │ │ ├── Haxe.hx │ │ │ │ ├── Jack.jack │ │ │ │ ├── Makefile │ │ │ │ ├── Nix.nix │ │ │ │ ├── abap.abap │ │ │ │ ├── abc.abc │ │ │ │ ├── actionscript.as │ │ │ │ ├── ada.ada │ │ │ │ ├── assembly_x86.asm │ │ │ │ ├── autohotkey.ahk │ │ │ │ ├── batchfile.bat │ │ │ │ ├── c9search.c9search_results │ │ │ │ ├── c_cpp.cpp │ │ │ │ ├── cirru.cirru │ │ │ │ ├── clojure.clj │ │ │ │ ├── cobol.CBL │ │ │ │ ├── coffee.coffee │ │ │ │ ├── coldfusion.cfm │ │ │ │ ├── csharp.cs │ │ │ │ ├── css.css │ │ │ │ ├── curly.curly │ │ │ │ ├── d.d │ │ │ │ ├── dart.dart │ │ │ │ ├── diff.diff │ │ │ │ ├── dot.dot │ │ │ │ ├── eiffel.e │ │ │ │ ├── ejs.ejs │ │ │ │ ├── elixir.ex │ │ │ │ ├── elm.elm │ │ │ │ ├── erlang.erl │ │ │ │ ├── forth.frt │ │ │ │ ├── ftl.ftl │ │ │ │ ├── gcode.gcode │ │ │ │ ├── gherkin.feature │ │ │ │ ├── glsl.glsl │ │ │ │ ├── golang.go │ │ │ │ ├── groovy.groovy │ │ │ │ ├── haml.haml │ │ │ │ ├── handlebars.hbs │ │ │ │ ├── haskell.hs │ │ │ │ ├── hive.hql │ │ │ │ ├── htaccess │ │ │ │ ├── html.html │ │ │ │ ├── html_ruby.erb │ │ │ │ ├── ini.ini │ │ │ │ ├── io.io │ │ │ │ ├── jade.jade │ │ │ │ ├── java.java │ │ │ │ ├── javascript.js │ │ │ │ ├── json.json │ │ │ │ ├── jsoniq.jq │ │ │ │ ├── jsp.jsp │ │ │ │ ├── jsx.jsx │ │ │ │ ├── julia.jl │ │ │ │ ├── latex.tex │ │ │ │ ├── lean.lean │ │ │ │ ├── less.less │ │ │ │ ├── liquid.liquid │ │ │ │ ├── lisp.lisp │ │ │ │ ├── livescript.ls │ │ │ │ ├── logiql.logic │ │ │ │ ├── lsl.lsl │ │ │ │ ├── lua.lua │ │ │ │ ├── luapage.lp │ │ │ │ ├── lucene.lucene │ │ │ │ ├── markdown.md │ │ │ │ ├── mask.mask │ │ │ │ ├── matlab.matlab │ │ │ │ ├── maze.mz │ │ │ │ ├── mel.mel │ │ │ │ ├── mushcode.mc │ │ │ │ ├── mysql.mysql │ │ │ │ ├── objectivec.m │ │ │ │ ├── ocaml.ml │ │ │ │ ├── pascal.pas │ │ │ │ ├── perl.pl │ │ │ │ ├── pgsql.pgsql │ │ │ │ ├── php.php │ │ │ │ ├── pig_latin.pig │ │ │ │ ├── plaintext.txt │ │ │ │ ├── powershell.ps1 │ │ │ │ ├── praat.praat │ │ │ │ ├── prolog.plg │ │ │ │ ├── properties.properties │ │ │ │ ├── protobuf.proto │ │ │ │ ├── python.py │ │ │ │ ├── r.r │ │ │ │ ├── rdoc.Rd │ │ │ │ ├── rhtml.Rhtml │ │ │ │ ├── ruby.rb │ │ │ │ ├── rust.rs │ │ │ │ ├── sass.sass │ │ │ │ ├── scad.scad │ │ │ │ ├── scala.scala │ │ │ │ ├── scheme.scm │ │ │ │ ├── scss.scss │ │ │ │ ├── sh.sh │ │ │ │ ├── sjs.sjs │ │ │ │ ├── smarty.smarty │ │ │ │ ├── snippets.snippets │ │ │ │ ├── soy_template.soy │ │ │ │ ├── space.space │ │ │ │ ├── sql.sql │ │ │ │ ├── sqlserver.sqlserver │ │ │ │ ├── stylus.styl │ │ │ │ ├── svg.svg │ │ │ │ ├── tcl.tcl │ │ │ │ ├── tex.tex │ │ │ │ ├── textile.textile │ │ │ │ ├── toml.toml │ │ │ │ ├── twig.twig │ │ │ │ ├── typescript.ts │ │ │ │ ├── vala.vala │ │ │ │ ├── vbscript.vbs │ │ │ │ ├── velocity.vm │ │ │ │ ├── verilog.v │ │ │ │ ├── vhdl.vhd │ │ │ │ ├── xml.xml │ │ │ │ ├── xquery.xq │ │ │ │ └── yaml.yaml │ │ │ ├── file_drop.js │ │ │ ├── icons │ │ │ │ ├── Readme.txt │ │ │ │ ├── epl.html │ │ │ │ ├── error_obj.gif │ │ │ │ └── warning_obj.gif │ │ │ ├── inline_editor.js │ │ │ ├── layout.js │ │ │ ├── logo.png │ │ │ ├── require.js │ │ │ ├── styles.css │ │ │ ├── token_tooltip.js │ │ │ └── util.js │ │ ├── modelist.html │ │ ├── r.js │ │ │ ├── build.js │ │ │ └── editor.html │ │ ├── requirejs+build.html │ │ ├── scrollable-page.html │ │ ├── settings_menu.html │ │ ├── show_own_source.js │ │ ├── static-highlighter.html │ │ ├── static-highlighter │ │ │ ├── client.html │ │ │ └── server.js │ │ ├── statusbar.html │ │ ├── svg.svg │ │ └── xml.xml │ ├── doc │ │ ├── README.md │ │ ├── additionalObjs.json │ │ ├── build.js │ │ ├── index.md │ │ ├── package.json │ │ ├── site │ │ │ ├── images │ │ │ │ ├── ac-logo.png │ │ │ │ ├── ace-logo.png │ │ │ │ ├── ace-tab.png │ │ │ │ ├── ace.png │ │ │ │ ├── background.png │ │ │ │ ├── body_background.png │ │ │ │ ├── bottombar.png │ │ │ │ ├── cloud9-logo.png │ │ │ │ ├── codecademy-logo.png │ │ │ │ ├── codiad.png │ │ │ │ ├── crunchapp-logo.png │ │ │ │ ├── empty-logo.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── firefox-logo.png │ │ │ │ ├── fork_on_github.png │ │ │ │ ├── github-logo.png │ │ │ │ ├── habitat-logo.svg │ │ │ │ ├── header-bg.png │ │ │ │ ├── ideone-logo.png │ │ │ │ ├── khan-logo.png │ │ │ │ ├── logo.png │ │ │ │ ├── logo_half.png │ │ │ │ ├── modx-logo-4.png │ │ │ │ ├── pixie-logo.png │ │ │ │ ├── plunker.png │ │ │ │ ├── processwire-logo.svg │ │ │ │ ├── repl.it-logo.png │ │ │ │ ├── rstudio_logo_64.png │ │ │ │ ├── sassmeister-logo.png │ │ │ │ ├── shiftedit-logo.png │ │ │ │ ├── spandexio-logo.png │ │ │ │ ├── stypi-logo.png │ │ │ │ ├── sx-logo.png │ │ │ │ ├── textimage.png │ │ │ │ ├── weecod-logo.png │ │ │ │ ├── wolf_3d_logo_trans.png │ │ │ │ └── zorba-logo.png │ │ │ ├── iphone.css │ │ │ ├── js │ │ │ │ ├── ga.js │ │ │ │ └── main.js │ │ │ └── style.css │ │ └── template │ │ │ ├── jade │ │ │ ├── common_layout.jade │ │ │ ├── layout.jade │ │ │ └── lib.jade │ │ │ └── resources │ │ │ ├── csses │ │ │ └── ace_api.css │ │ │ ├── font │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ │ ├── images │ │ │ ├── Ace_ERD.png │ │ │ ├── ace_logo.png │ │ │ ├── ace_logo_menu.png │ │ │ ├── c9-log-footer.png │ │ │ ├── c9-sponsor.png │ │ │ ├── cloud9-logo.png │ │ │ ├── content-top.png │ │ │ ├── content_bg.png │ │ │ ├── content_top_bg.png │ │ │ ├── dashed_back.png │ │ │ ├── footer-bg.png │ │ │ ├── main_bg.png │ │ │ ├── member-sprites.png │ │ │ ├── menu_disc.png │ │ │ ├── method_bg.png │ │ │ ├── scrolled-heading-shadow.png │ │ │ ├── sidebar-top-bg.png │ │ │ ├── sidebar_border.png │ │ │ └── swirl_divider.png │ │ │ └── javascripts │ │ │ ├── bbq.js │ │ │ ├── bootstrap.js │ │ │ ├── clicker.js │ │ │ ├── disqus-ext.js │ │ │ ├── jquery-scrollspy.js │ │ │ ├── jquery.collapse.js │ │ │ ├── jquery.cookie.js │ │ │ ├── plugins.js │ │ │ ├── prettify-extension.js │ │ │ ├── prettify.js │ │ │ └── ux.js │ ├── experiments │ │ ├── animate_folding.html │ │ ├── basic_animation.html │ │ ├── capture.html │ │ ├── cut_copy.html │ │ ├── debug_mem_leak.html │ │ ├── triple_click.html │ │ ├── worker.html │ │ ├── worker.js │ │ └── zenbg.png │ ├── hue-ace-dev.sh │ ├── hue-ace.sh │ ├── index.html │ ├── kitchen-sink.html │ ├── lib │ │ └── ace │ │ │ ├── ace.js │ │ │ ├── anchor.js │ │ │ ├── anchor_test.js │ │ │ ├── apply_delta.js │ │ │ ├── autocomplete.js │ │ │ ├── autocomplete │ │ │ ├── popup.js │ │ │ ├── text_completer.js │ │ │ └── util.js │ │ │ ├── background_tokenizer.js │ │ │ ├── background_tokenizer_test.js │ │ │ ├── commands │ │ │ ├── command_manager.js │ │ │ ├── command_manager_test.js │ │ │ ├── default_commands.js │ │ │ ├── incremental_search_commands.js │ │ │ ├── multi_select_commands.js │ │ │ └── occur_commands.js │ │ │ ├── config.js │ │ │ ├── config_test.js │ │ │ ├── css │ │ │ ├── codefolding-fold-button-states.png │ │ │ ├── editor.css │ │ │ └── expand-marker.png │ │ │ ├── document.js │ │ │ ├── document_test.js │ │ │ ├── edit_session.js │ │ │ ├── edit_session │ │ │ ├── bracket_match.js │ │ │ ├── fold.js │ │ │ ├── fold_line.js │ │ │ └── folding.js │ │ │ ├── edit_session_test.js │ │ │ ├── editor.js │ │ │ ├── editor_change_document_test.js │ │ │ ├── editor_highlight_selected_word_test.js │ │ │ ├── editor_navigation_test.js │ │ │ ├── editor_text_edit_test.js │ │ │ ├── ext │ │ │ ├── beautify.js │ │ │ ├── beautify │ │ │ │ └── php_rules.js │ │ │ ├── chromevox.js │ │ │ ├── elastic_tabstops_lite.js │ │ │ ├── emmet.js │ │ │ ├── error_marker.js │ │ │ ├── keybinding_menu.js │ │ │ ├── language_tools.js │ │ │ ├── linking.js │ │ │ ├── menu_tools │ │ │ │ ├── add_editor_menu_options.js │ │ │ │ ├── element_generator.js │ │ │ │ ├── generate_settings_menu.js │ │ │ │ ├── get_editor_keyboard_shortcuts.js │ │ │ │ ├── get_set_functions.js │ │ │ │ ├── overlay_page.js │ │ │ │ └── settings_menu.css │ │ │ ├── modelist.js │ │ │ ├── old_ie.js │ │ │ ├── old_ie_test.js │ │ │ ├── searchbox.css │ │ │ ├── searchbox.js │ │ │ ├── settings_menu.js │ │ │ ├── spellcheck.js │ │ │ ├── split.js │ │ │ ├── static.css │ │ │ ├── static_highlight.js │ │ │ ├── static_highlight_test.js │ │ │ ├── statusbar.js │ │ │ ├── textarea.js │ │ │ ├── themelist.js │ │ │ ├── whitespace.js │ │ │ └── whitespace_test.js │ │ │ ├── incremental_search.js │ │ │ ├── incremental_search_test.js │ │ │ ├── keyboard │ │ │ ├── emacs.js │ │ │ ├── emacs_test.js │ │ │ ├── hash_handler.js │ │ │ ├── keybinding.js │ │ │ ├── keybinding_test.js │ │ │ ├── state_handler.js │ │ │ ├── textarea.js │ │ │ ├── textinput.js │ │ │ ├── vim.js │ │ │ └── vim_test.js │ │ │ ├── layer │ │ │ ├── cursor.js │ │ │ ├── font_metrics.js │ │ │ ├── gutter.js │ │ │ ├── marker.js │ │ │ ├── text.js │ │ │ └── text_test.js │ │ │ ├── lib │ │ │ ├── app_config.js │ │ │ ├── dom.js │ │ │ ├── es5-shim.js │ │ │ ├── event.js │ │ │ ├── event_emitter.js │ │ │ ├── event_emitter_test.js │ │ │ ├── fixoldbrowsers.js │ │ │ ├── keys.js │ │ │ ├── lang.js │ │ │ ├── net.js │ │ │ ├── oop.js │ │ │ ├── regexp.js │ │ │ └── useragent.js │ │ │ ├── line_widgets.js │ │ │ ├── mode │ │ │ ├── _test │ │ │ │ ├── Readme.md │ │ │ │ ├── highlight_rules_test.js │ │ │ │ ├── package.json │ │ │ │ ├── text_asciidoc.txt │ │ │ │ ├── text_coffee.txt │ │ │ │ ├── text_curly.txt │ │ │ │ ├── text_html.txt │ │ │ │ ├── text_javascript.txt │ │ │ │ ├── text_livescript.txt │ │ │ │ ├── text_lucene.txt │ │ │ │ ├── text_markdown.txt │ │ │ │ ├── text_php.txt │ │ │ │ ├── text_ruby.txt │ │ │ │ ├── text_xml.txt │ │ │ │ ├── tokens_abap.json │ │ │ │ ├── tokens_abc.json │ │ │ │ ├── tokens_actionscript.json │ │ │ │ ├── tokens_ada.json │ │ │ │ ├── tokens_asciidoc.json │ │ │ │ ├── tokens_assembly_x86.json │ │ │ │ ├── tokens_autohotkey.json │ │ │ │ ├── tokens_batchfile.json │ │ │ │ ├── tokens_c9search.json │ │ │ │ ├── tokens_c_cpp.json │ │ │ │ ├── tokens_cirru.json │ │ │ │ ├── tokens_clojure.json │ │ │ │ ├── tokens_cobol.json │ │ │ │ ├── tokens_coffee.json │ │ │ │ ├── tokens_coldfusion.json │ │ │ │ ├── tokens_csharp.json │ │ │ │ ├── tokens_css.json │ │ │ │ ├── tokens_curly.json │ │ │ │ ├── tokens_d.json │ │ │ │ ├── tokens_dart.json │ │ │ │ ├── tokens_diff.json │ │ │ │ ├── tokens_dot.json │ │ │ │ ├── tokens_eiffel.json │ │ │ │ ├── tokens_ejs.json │ │ │ │ ├── tokens_elixir.json │ │ │ │ ├── tokens_elm.json │ │ │ │ ├── tokens_erlang.json │ │ │ │ ├── tokens_forth.json │ │ │ │ ├── tokens_ftl.json │ │ │ │ ├── tokens_gcode.json │ │ │ │ ├── tokens_gherkin.json │ │ │ │ ├── tokens_gitignore.json │ │ │ │ ├── tokens_glsl.json │ │ │ │ ├── tokens_golang.json │ │ │ │ ├── tokens_groovy.json │ │ │ │ ├── tokens_haml.json │ │ │ │ ├── tokens_handlebars.json │ │ │ │ ├── tokens_haskell.json │ │ │ │ ├── tokens_haxe.json │ │ │ │ ├── tokens_html.json │ │ │ │ ├── tokens_html_ruby.json │ │ │ │ ├── tokens_ini.json │ │ │ │ ├── tokens_io.json │ │ │ │ ├── tokens_jack.json │ │ │ │ ├── tokens_jade.json │ │ │ │ ├── tokens_java.json │ │ │ │ ├── tokens_javascript.json │ │ │ │ ├── tokens_json.json │ │ │ │ ├── tokens_jsoniq.json │ │ │ │ ├── tokens_jsp.json │ │ │ │ ├── tokens_jsx.json │ │ │ │ ├── tokens_julia.json │ │ │ │ ├── tokens_latex.json │ │ │ │ ├── tokens_less.json │ │ │ │ ├── tokens_liquid.json │ │ │ │ ├── tokens_lisp.json │ │ │ │ ├── tokens_livescript.json │ │ │ │ ├── tokens_logiql.json │ │ │ │ ├── tokens_lsl.json │ │ │ │ ├── tokens_lua.json │ │ │ │ ├── tokens_luapage.json │ │ │ │ ├── tokens_lucene.json │ │ │ │ ├── tokens_markdown.json │ │ │ │ ├── tokens_mask.json │ │ │ │ ├── tokens_matlab.json │ │ │ │ ├── tokens_mel.json │ │ │ │ ├── tokens_mushcode.json │ │ │ │ ├── tokens_mysql.json │ │ │ │ ├── tokens_nix.json │ │ │ │ ├── tokens_objectivec.json │ │ │ │ ├── tokens_ocaml.json │ │ │ │ ├── tokens_pascal.json │ │ │ │ ├── tokens_perl.json │ │ │ │ ├── tokens_pgsql.json │ │ │ │ ├── tokens_php.json │ │ │ │ ├── tokens_powershell.json │ │ │ │ ├── tokens_prolog.json │ │ │ │ ├── tokens_properties.json │ │ │ │ ├── tokens_protobuf.json │ │ │ │ ├── tokens_python.json │ │ │ │ ├── tokens_r.json │ │ │ │ ├── tokens_rdoc.json │ │ │ │ ├── tokens_rhtml.json │ │ │ │ ├── tokens_ruby.json │ │ │ │ ├── tokens_rust.json │ │ │ │ ├── tokens_sass.json │ │ │ │ ├── tokens_scad.json │ │ │ │ ├── tokens_scala.json │ │ │ │ ├── tokens_scheme.json │ │ │ │ ├── tokens_scss.json │ │ │ │ ├── tokens_sh.json │ │ │ │ ├── tokens_sjs.json │ │ │ │ ├── tokens_smarty.json │ │ │ │ ├── tokens_snippets.json │ │ │ │ ├── tokens_soy_template.json │ │ │ │ ├── tokens_space.json │ │ │ │ ├── tokens_sql.json │ │ │ │ ├── tokens_stylus.json │ │ │ │ ├── tokens_svg.json │ │ │ │ ├── tokens_tcl.json │ │ │ │ ├── tokens_tex.json │ │ │ │ ├── tokens_text.json │ │ │ │ ├── tokens_textile.json │ │ │ │ ├── tokens_toml.json │ │ │ │ ├── tokens_twig.json │ │ │ │ ├── tokens_typescript.json │ │ │ │ ├── tokens_vala.json │ │ │ │ ├── tokens_vbscript.json │ │ │ │ ├── tokens_velocity.json │ │ │ │ ├── tokens_verilog.json │ │ │ │ ├── tokens_vhdl.json │ │ │ │ ├── tokens_xml.json │ │ │ │ ├── tokens_xquery.json │ │ │ │ └── tokens_yaml.json │ │ │ ├── abap.js │ │ │ ├── abap_highlight_rules.js │ │ │ ├── abc.js │ │ │ ├── abc_highlight_rules.js │ │ │ ├── actionscript.js │ │ │ ├── actionscript_highlight_rules.js │ │ │ ├── ada.js │ │ │ ├── ada_highlight_rules.js │ │ │ ├── apache_conf.js │ │ │ ├── apache_conf_highlight_rules.js │ │ │ ├── applescript.js │ │ │ ├── applescript_highlight_rules.js │ │ │ ├── asciidoc.js │ │ │ ├── asciidoc_highlight_rules.js │ │ │ ├── assembly_x86.js │ │ │ ├── assembly_x86_highlight_rules.js │ │ │ ├── autohotkey.js │ │ │ ├── autohotkey_highlight_rules.js │ │ │ ├── batchfile.js │ │ │ ├── batchfile_highlight_rules.js │ │ │ ├── behaviour.js │ │ │ ├── behaviour │ │ │ │ ├── behaviour_test.js │ │ │ │ ├── css.js │ │ │ │ ├── cstyle.js │ │ │ │ ├── html.js │ │ │ │ ├── xml.js │ │ │ │ └── xquery.js │ │ │ ├── bigquery.js │ │ │ ├── bigquery_highlight_rules.js │ │ │ ├── c9search.js │ │ │ ├── c9search_highlight_rules.js │ │ │ ├── c_cpp.js │ │ │ ├── c_cpp_highlight_rules.js │ │ │ ├── cirru.js │ │ │ ├── cirru_highlight_rules.js │ │ │ ├── clojure.js │ │ │ ├── clojure_highlight_rules.js │ │ │ ├── cobol.js │ │ │ ├── cobol_highlight_rules.js │ │ │ ├── coffee.js │ │ │ ├── coffee │ │ │ │ ├── coffee.js │ │ │ │ └── parser_test.js │ │ │ ├── coffee_highlight_rules.js │ │ │ ├── coffee_worker.js │ │ │ ├── coldfusion.js │ │ │ ├── coldfusion_highlight_rules.js │ │ │ ├── coldfusion_test.js │ │ │ ├── csharp.js │ │ │ ├── csharp_highlight_rules.js │ │ │ ├── css.js │ │ │ ├── css │ │ │ │ └── csslint.js │ │ │ ├── css_completions.js │ │ │ ├── css_highlight_rules.js │ │ │ ├── css_test.js │ │ │ ├── css_worker.js │ │ │ ├── css_worker_test.js │ │ │ ├── curly.js │ │ │ ├── curly_highlight_rules.js │ │ │ ├── d.js │ │ │ ├── d_highlight_rules.js │ │ │ ├── dart.js │ │ │ ├── dart_highlight_rules.js │ │ │ ├── dasksql.js │ │ │ ├── dasksql_highlight_rules.js │ │ │ ├── diff.js │ │ │ ├── diff_highlight_rules.js │ │ │ ├── django.js │ │ │ ├── doc_comment_highlight_rules.js │ │ │ ├── dockerfile.js │ │ │ ├── dockerfile_highlight_rules.js │ │ │ ├── dot.js │ │ │ ├── dot_highlight_rules.js │ │ │ ├── druid.js │ │ │ ├── druid_highlight_rules.js │ │ │ ├── eiffel.js │ │ │ ├── eiffel_highlight_rules.js │ │ │ ├── ejs.js │ │ │ ├── elasticsearch.js │ │ │ ├── elasticsearch_highlight_rules.js │ │ │ ├── elixir.js │ │ │ ├── elixir_highlight_rules.js │ │ │ ├── elm.js │ │ │ ├── elm_highlight_rules.js │ │ │ ├── erlang.js │ │ │ ├── erlang_highlight_rules.js │ │ │ ├── flink.js │ │ │ ├── flink_highlight_rules.js │ │ │ ├── folding │ │ │ │ ├── asciidoc.js │ │ │ │ ├── c9search.js │ │ │ │ ├── coffee.js │ │ │ │ ├── coffee_test.js │ │ │ │ ├── csharp.js │ │ │ │ ├── cstyle.js │ │ │ │ ├── cstyle_test.js │ │ │ │ ├── diff.js │ │ │ │ ├── fold_mode.js │ │ │ │ ├── html.js │ │ │ │ ├── html_test.js │ │ │ │ ├── ini.js │ │ │ │ ├── latex.js │ │ │ │ ├── lua.js │ │ │ │ ├── markdown.js │ │ │ │ ├── mixed.js │ │ │ │ ├── pythonic.js │ │ │ │ ├── pythonic_test.js │ │ │ │ ├── sqlserver.js │ │ │ │ ├── velocity.js │ │ │ │ ├── xml.js │ │ │ │ └── xml_test.js │ │ │ ├── forth.js │ │ │ ├── forth_highlight_rules.js │ │ │ ├── ftl.js │ │ │ ├── ftl_highlight_rules.js │ │ │ ├── gcode.js │ │ │ ├── gcode_highlight_rules.js │ │ │ ├── gherkin.js │ │ │ ├── gherkin_highlight_rules.js │ │ │ ├── gitignore.js │ │ │ ├── gitignore_highlight_rules.js │ │ │ ├── glsl.js │ │ │ ├── glsl_highlight_rules.js │ │ │ ├── golang.js │ │ │ ├── golang_highlight_rules.js │ │ │ ├── groovy.js │ │ │ ├── groovy_highlight_rules.js │ │ │ ├── haml.js │ │ │ ├── haml_highlight_rules.js │ │ │ ├── handlebars.js │ │ │ ├── handlebars_highlight_rules.js │ │ │ ├── haskell.js │ │ │ ├── haskell_highlight_rules.js │ │ │ ├── haxe.js │ │ │ ├── haxe_highlight_rules.js │ │ │ ├── hive.js │ │ │ ├── hive_highlight_rules.js │ │ │ ├── hplsql.js │ │ │ ├── hplsql_highlight_rules.js │ │ │ ├── html.js │ │ │ ├── html │ │ │ │ └── saxparser.js │ │ │ ├── html_completions.js │ │ │ ├── html_highlight_rules.js │ │ │ ├── html_ruby.js │ │ │ ├── html_ruby_highlight_rules.js │ │ │ ├── html_test.js │ │ │ ├── html_worker.js │ │ │ ├── impala.js │ │ │ ├── impala_highlight_rules.js │ │ │ ├── ini.js │ │ │ ├── ini_highlight_rules.js │ │ │ ├── io.js │ │ │ ├── io_highlight_rules.js │ │ │ ├── jack.js │ │ │ ├── jack_highlight_rules.js │ │ │ ├── jade.js │ │ │ ├── jade_highlight_rules.js │ │ │ ├── java.js │ │ │ ├── java_highlight_rules.js │ │ │ ├── javascript.js │ │ │ ├── javascript │ │ │ │ └── jshint.js │ │ │ ├── javascript_highlight_rules.js │ │ │ ├── javascript_test.js │ │ │ ├── javascript_worker.js │ │ │ ├── javascript_worker_test.js │ │ │ ├── js_regex_highlight_rules.js │ │ │ ├── json.js │ │ │ ├── json │ │ │ │ └── json_parse.js │ │ │ ├── json_highlight_rules.js │ │ │ ├── json_worker.js │ │ │ ├── json_worker_test.js │ │ │ ├── jsoniq.js │ │ │ ├── jsp.js │ │ │ ├── jsp_highlight_rules.js │ │ │ ├── jsx.js │ │ │ ├── jsx_highlight_rules.js │ │ │ ├── julia.js │ │ │ ├── julia_highlight_rules.js │ │ │ ├── ksql.js │ │ │ ├── ksql_highlight_rules.js │ │ │ ├── latex.js │ │ │ ├── latex_highlight_rules.js │ │ │ ├── lean.js │ │ │ ├── lean_highlight_rules.js │ │ │ ├── less.js │ │ │ ├── less_highlight_rules.js │ │ │ ├── liquid.js │ │ │ ├── liquid_highlight_rules.js │ │ │ ├── lisp.js │ │ │ ├── lisp_highlight_rules.js │ │ │ ├── livescript.js │ │ │ ├── logiql.js │ │ │ ├── logiql_highlight_rules.js │ │ │ ├── logiql_test.js │ │ │ ├── lsl.js │ │ │ ├── lsl_highlight_rules.js │ │ │ ├── lua.js │ │ │ ├── lua │ │ │ │ └── luaparse.js │ │ │ ├── lua_highlight_rules.js │ │ │ ├── lua_worker.js │ │ │ ├── luapage.js │ │ │ ├── luapage_highlight_rules.js │ │ │ ├── lucene.js │ │ │ ├── lucene_highlight_rules.js │ │ │ ├── makefile.js │ │ │ ├── makefile_highlight_rules.js │ │ │ ├── markdown.js │ │ │ ├── markdown_highlight_rules.js │ │ │ ├── mask.js │ │ │ ├── mask_highlight_rules.js │ │ │ ├── matching_brace_outdent.js │ │ │ ├── matching_parens_outdent.js │ │ │ ├── matlab.js │ │ │ ├── matlab_highlight_rules.js │ │ │ ├── maze.js │ │ │ ├── maze_highlight_rules.js │ │ │ ├── mel.js │ │ │ ├── mel_highlight_rules.js │ │ │ ├── mushcode.js │ │ │ ├── mushcode_highlight_rules.js │ │ │ ├── mysql.js │ │ │ ├── mysql_highlight_rules.js │ │ │ ├── nix.js │ │ │ ├── nix_highlight_rules.js │ │ │ ├── objectivec.js │ │ │ ├── objectivec_highlight_rules.js │ │ │ ├── ocaml.js │ │ │ ├── ocaml_highlight_rules.js │ │ │ ├── pascal.js │ │ │ ├── pascal_highlight_rules.js │ │ │ ├── perl.js │ │ │ ├── perl_highlight_rules.js │ │ │ ├── pgsql.js │ │ │ ├── pgsql_highlight_rules.js │ │ │ ├── phoenix.js │ │ │ ├── phoenix_highlight_rules.js │ │ │ ├── php.js │ │ │ ├── php │ │ │ │ └── php.js │ │ │ ├── php_highlight_rules.js │ │ │ ├── php_test.js │ │ │ ├── php_worker.js │ │ │ ├── pig.js │ │ │ ├── pig_highlight_rules.js │ │ │ ├── plain_text.js │ │ │ ├── plain_text_test.js │ │ │ ├── powershell.js │ │ │ ├── powershell_highlight_rules.js │ │ │ ├── praat.js │ │ │ ├── praat_highlight_rules.js │ │ │ ├── presto.js │ │ │ ├── presto_highlight_rules.js │ │ │ ├── prolog.js │ │ │ ├── prolog_highlight_rules.js │ │ │ ├── properties.js │ │ │ ├── properties_highlight_rules.js │ │ │ ├── protobuf.js │ │ │ ├── protobuf_highlight_rules.js │ │ │ ├── python.js │ │ │ ├── python_highlight_rules.js │ │ │ ├── python_test.js │ │ │ ├── r.js │ │ │ ├── r_highlight_rules.js │ │ │ ├── rdoc.js │ │ │ ├── rdoc_highlight_rules.js │ │ │ ├── rhtml.js │ │ │ ├── rhtml_highlight_rules.js │ │ │ ├── ruby.js │ │ │ ├── ruby_highlight_rules.js │ │ │ ├── ruby_test.js │ │ │ ├── rust.js │ │ │ ├── rust_highlight_rules.js │ │ │ ├── sass.js │ │ │ ├── sass_highlight_rules.js │ │ │ ├── scad.js │ │ │ ├── scad_highlight_rules.js │ │ │ ├── scala.js │ │ │ ├── scala_highlight_rules.js │ │ │ ├── scheme.js │ │ │ ├── scheme_highlight_rules.js │ │ │ ├── scss.js │ │ │ ├── scss_highlight_rules.js │ │ │ ├── sh.js │ │ │ ├── sh_highlight_rules.js │ │ │ ├── sjs.js │ │ │ ├── sjs_highlight_rules.js │ │ │ ├── smarty.js │ │ │ ├── smarty_highlight_rules.js │ │ │ ├── snippets.js │ │ │ ├── solr.js │ │ │ ├── solr_highlight_rules.js │ │ │ ├── soy_template.js │ │ │ ├── soy_template_highlight_rules.js │ │ │ ├── space.js │ │ │ ├── space_highlight_rules.js │ │ │ ├── sparksql.js │ │ │ ├── sparksql_highlight_rules.js │ │ │ ├── sql.js │ │ │ ├── sql_highlight_rules.js │ │ │ ├── sqlserver.js │ │ │ ├── sqlserver_highlight_rules.js │ │ │ ├── stylus.js │ │ │ ├── stylus_highlight_rules.js │ │ │ ├── svg.js │ │ │ ├── svg_highlight_rules.js │ │ │ ├── tcl.js │ │ │ ├── tcl_highlight_rules.js │ │ │ ├── tex.js │ │ │ ├── tex_highlight_rules.js │ │ │ ├── text.js │ │ │ ├── text_highlight_rules.js │ │ │ ├── text_test.js │ │ │ ├── textile.js │ │ │ ├── textile_highlight_rules.js │ │ │ ├── toml.js │ │ │ ├── toml_highlight_rules.js │ │ │ ├── twig.js │ │ │ ├── twig_highlight_rules.js │ │ │ ├── typescript.js │ │ │ ├── typescript_highlight_rules.js │ │ │ ├── vala.js │ │ │ ├── vala_highlight_rules.js │ │ │ ├── vbscript.js │ │ │ ├── vbscript_highlight_rules.js │ │ │ ├── velocity.js │ │ │ ├── velocity_highlight_rules.js │ │ │ ├── verilog.js │ │ │ ├── verilog_highlight_rules.js │ │ │ ├── vhdl.js │ │ │ ├── vhdl_highlight_rules.js │ │ │ ├── xml.js │ │ │ ├── xml │ │ │ │ ├── dom-parser.js │ │ │ │ ├── dom.js │ │ │ │ └── sax.js │ │ │ ├── xml_highlight_rules.js │ │ │ ├── xml_test.js │ │ │ ├── xml_worker.js │ │ │ ├── xquery.js │ │ │ ├── xquery │ │ │ │ ├── Readme.md │ │ │ │ ├── jsoniq_lexer.js │ │ │ │ ├── xqlint.js │ │ │ │ └── xquery_lexer.js │ │ │ ├── xquery_worker.js │ │ │ ├── yaml.js │ │ │ └── yaml_highlight_rules.js │ │ │ ├── model │ │ │ └── editor.js │ │ │ ├── mouse │ │ │ ├── default_gutter_handler.js │ │ │ ├── default_handlers.js │ │ │ ├── dragdrop_handler.js │ │ │ ├── fold_handler.js │ │ │ ├── mouse_event.js │ │ │ ├── mouse_handler.js │ │ │ ├── mouse_handler_test.js │ │ │ └── multi_select_handler.js │ │ │ ├── multi_select.js │ │ │ ├── multi_select_test.js │ │ │ ├── occur.js │ │ │ ├── occur_test.js │ │ │ ├── placeholder.js │ │ │ ├── placeholder_test.js │ │ │ ├── range.js │ │ │ ├── range_list.js │ │ │ ├── range_list_test.js │ │ │ ├── range_test.js │ │ │ ├── renderloop.js │ │ │ ├── requirejs │ │ │ ├── text.js │ │ │ └── text_build.js │ │ │ ├── scrollbar.js │ │ │ ├── search.js │ │ │ ├── search_highlight.js │ │ │ ├── search_test.js │ │ │ ├── selection.js │ │ │ ├── selection_test.js │ │ │ ├── snippets.js │ │ │ ├── snippets │ │ │ ├── _.snippets │ │ │ ├── _all_modes.js │ │ │ ├── _all_modes.snippets │ │ │ ├── abap.js │ │ │ ├── abap.snippets │ │ │ ├── abc.js │ │ │ ├── abc.snippets │ │ │ ├── actionscript.js │ │ │ ├── actionscript.snippets │ │ │ ├── ada.js │ │ │ ├── ada.snippets │ │ │ ├── all_modes.js │ │ │ ├── all_modes.snippets │ │ │ ├── apache.snippets │ │ │ ├── apache_conf.js │ │ │ ├── apache_conf.snippets │ │ │ ├── applescript.js │ │ │ ├── applescript.snippets │ │ │ ├── asciidoc.js │ │ │ ├── asciidoc.snippets │ │ │ ├── assembly_x86.js │ │ │ ├── assembly_x86.snippets │ │ │ ├── autohotkey.js │ │ │ ├── autohotkey.snippets │ │ │ ├── autoit.snippets │ │ │ ├── batchfile.js │ │ │ ├── batchfile.snippets │ │ │ ├── bigquery.js │ │ │ ├── bigquery.snippets │ │ │ ├── c.snippets │ │ │ ├── c9search.js │ │ │ ├── c9search.snippets │ │ │ ├── c_cpp.js │ │ │ ├── c_cpp.snippets │ │ │ ├── chef.snippets │ │ │ ├── cirru.js │ │ │ ├── cirru.snippets │ │ │ ├── clojure.js │ │ │ ├── clojure.snippets │ │ │ ├── cmake.snippets │ │ │ ├── cobol.js │ │ │ ├── cobol.snippets │ │ │ ├── coffee.js │ │ │ ├── coffee.snippets │ │ │ ├── coldfusion.js │ │ │ ├── coldfusion.snippets │ │ │ ├── cs.snippets │ │ │ ├── csharp.js │ │ │ ├── csharp.snippets │ │ │ ├── css.js │ │ │ ├── css.snippets │ │ │ ├── curly.js │ │ │ ├── curly.snippets │ │ │ ├── d.js │ │ │ ├── d.snippets │ │ │ ├── dart.js │ │ │ ├── dart.snippets │ │ │ ├── dasksql.js │ │ │ ├── dasksql.snippets │ │ │ ├── diff.js │ │ │ ├── diff.snippets │ │ │ ├── django.js │ │ │ ├── django.snippets │ │ │ ├── dockerfile.js │ │ │ ├── dockerfile.snippets │ │ │ ├── dot.js │ │ │ ├── dot.snippets │ │ │ ├── druid.js │ │ │ ├── druid.snippets │ │ │ ├── dummy.js │ │ │ ├── dummy_syntax.js │ │ │ ├── eiffel.js │ │ │ ├── eiffel.snippets │ │ │ ├── ejs.js │ │ │ ├── ejs.snippets │ │ │ ├── elasticsearch.js │ │ │ ├── elasticsearch.snippets │ │ │ ├── elixir.js │ │ │ ├── elixir.snippets │ │ │ ├── elm.js │ │ │ ├── elm.snippets │ │ │ ├── erlang.js │ │ │ ├── erlang.snippets │ │ │ ├── eruby.snippets │ │ │ ├── falcon.snippets │ │ │ ├── flink.js │ │ │ ├── flink.snippets │ │ │ ├── forth.js │ │ │ ├── forth.snippets │ │ │ ├── ftl.js │ │ │ ├── ftl.snippets │ │ │ ├── gcode.js │ │ │ ├── gcode.snippets │ │ │ ├── gherkin.js │ │ │ ├── gherkin.snippets │ │ │ ├── gitignore.js │ │ │ ├── gitignore.snippets │ │ │ ├── glsl.js │ │ │ ├── glsl.snippets │ │ │ ├── go.snippets │ │ │ ├── golang.js │ │ │ ├── golang.snippets │ │ │ ├── groovy.js │ │ │ ├── groovy.snippets │ │ │ ├── haml.js │ │ │ ├── haml.snippets │ │ │ ├── handlebars.js │ │ │ ├── handlebars.snippets │ │ │ ├── haskell.js │ │ │ ├── haskell.snippets │ │ │ ├── haxe.js │ │ │ ├── haxe.snippets │ │ │ ├── hive.js │ │ │ ├── hive.snippets │ │ │ ├── hplsql.js │ │ │ ├── hplsql.snippets │ │ │ ├── html.js │ │ │ ├── html.snippets │ │ │ ├── html_ruby.js │ │ │ ├── html_ruby.snippets │ │ │ ├── htmldjango.snippets │ │ │ ├── htmltornado.snippets │ │ │ ├── impala.js │ │ │ ├── impala.snippets │ │ │ ├── ini.js │ │ │ ├── ini.snippets │ │ │ ├── io.js │ │ │ ├── io.snippets │ │ │ ├── jack.js │ │ │ ├── jack.snippets │ │ │ ├── jade.js │ │ │ ├── jade.snippets │ │ │ ├── java.js │ │ │ ├── java.snippets │ │ │ ├── javascript-jquery.snippets │ │ │ ├── javascript.js │ │ │ ├── javascript.snippets │ │ │ ├── json.js │ │ │ ├── json.snippets │ │ │ ├── jsoniq.js │ │ │ ├── jsoniq.snippets │ │ │ ├── jsp.js │ │ │ ├── jsp.snippets │ │ │ ├── jsx.js │ │ │ ├── jsx.snippets │ │ │ ├── julia.js │ │ │ ├── julia.snippets │ │ │ ├── ksql.js │ │ │ ├── ksql.snippets │ │ │ ├── latex.js │ │ │ ├── latex.snippets │ │ │ ├── lean.js │ │ │ ├── lean.snippets │ │ │ ├── ledger.snippets │ │ │ ├── less.js │ │ │ ├── less.snippets │ │ │ ├── liquid.js │ │ │ ├── liquid.snippets │ │ │ ├── lisp.js │ │ │ ├── lisp.snippets │ │ │ ├── livescript.js │ │ │ ├── livescript.snippets │ │ │ ├── logiql.js │ │ │ ├── logiql.snippets │ │ │ ├── lsl.js │ │ │ ├── lsl.snippets │ │ │ ├── lua.js │ │ │ ├── lua.snippets │ │ │ ├── luapage.js │ │ │ ├── luapage.snippets │ │ │ ├── lucene.js │ │ │ ├── lucene.snippets │ │ │ ├── makefile.js │ │ │ ├── makefile.snippets │ │ │ ├── mako.snippets │ │ │ ├── markdown.js │ │ │ ├── markdown.snippets │ │ │ ├── mask.js │ │ │ ├── mask.snippets │ │ │ ├── matlab.js │ │ │ ├── matlab.snippets │ │ │ ├── maze.js │ │ │ ├── maze.snippets │ │ │ ├── mel.js │ │ │ ├── mel.snippets │ │ │ ├── mushcode.js │ │ │ ├── mushcode.snippets │ │ │ ├── mushcode_high_rules.js │ │ │ ├── mushcode_high_rules.snippets │ │ │ ├── mysql.js │ │ │ ├── mysql.snippets │ │ │ ├── nix.js │ │ │ ├── nix.snippets │ │ │ ├── objc.snippets │ │ │ ├── objectivec.js │ │ │ ├── objectivec.snippets │ │ │ ├── ocaml.js │ │ │ ├── ocaml.snippets │ │ │ ├── pascal.js │ │ │ ├── pascal.snippets │ │ │ ├── perl.js │ │ │ ├── perl.snippets │ │ │ ├── pgsql.js │ │ │ ├── pgsql.snippets │ │ │ ├── phoenix.js │ │ │ ├── phoenix.snippets │ │ │ ├── php.js │ │ │ ├── php.snippets │ │ │ ├── pig.js │ │ │ ├── pig.snippets │ │ │ ├── plain_text.js │ │ │ ├── plain_text.snippets │ │ │ ├── powershell.js │ │ │ ├── powershell.snippets │ │ │ ├── praat.js │ │ │ ├── praat.snippets │ │ │ ├── presto.js │ │ │ ├── presto.snippets │ │ │ ├── prolog.js │ │ │ ├── prolog.snippets │ │ │ ├── properties.js │ │ │ ├── properties.snippets │ │ │ ├── protobuf.js │ │ │ ├── protobuf.snippets │ │ │ ├── python.js │ │ │ ├── python.snippets │ │ │ ├── r.js │ │ │ ├── r.snippets │ │ │ ├── rdoc.js │ │ │ ├── rdoc.snippets │ │ │ ├── rhtml.js │ │ │ ├── rhtml.snippets │ │ │ ├── rst.snippets │ │ │ ├── ruby.js │ │ │ ├── ruby.snippets │ │ │ ├── rust.js │ │ │ ├── rust.snippets │ │ │ ├── sass.js │ │ │ ├── sass.snippets │ │ │ ├── scad.js │ │ │ ├── scad.snippets │ │ │ ├── scala.js │ │ │ ├── scala.snippets │ │ │ ├── scheme.js │ │ │ ├── scheme.snippets │ │ │ ├── scss.js │ │ │ ├── scss.snippets │ │ │ ├── sh.js │ │ │ ├── sh.snippets │ │ │ ├── sjs.js │ │ │ ├── sjs.snippets │ │ │ ├── smarty.js │ │ │ ├── smarty.snippets │ │ │ ├── snippets.js │ │ │ ├── snippets.snippets │ │ │ ├── solr.js │ │ │ ├── solr.snippets │ │ │ ├── soy_template.js │ │ │ ├── soy_template.snippets │ │ │ ├── space.js │ │ │ ├── space.snippets │ │ │ ├── sql.js │ │ │ ├── sql.snippets │ │ │ ├── sqlserver.js │ │ │ ├── sqlserver.snippets │ │ │ ├── stylus.js │ │ │ ├── stylus.snippets │ │ │ ├── svg.js │ │ │ ├── svg.snippets │ │ │ ├── tcl.js │ │ │ ├── tcl.snippets │ │ │ ├── tex.js │ │ │ ├── tex.snippets │ │ │ ├── text.js │ │ │ ├── text.snippets │ │ │ ├── textile.js │ │ │ ├── textile.snippets │ │ │ ├── tmsnippet.snippets │ │ │ ├── toml.js │ │ │ ├── toml.snippets │ │ │ ├── twig.js │ │ │ ├── twig.snippets │ │ │ ├── typescript.js │ │ │ ├── typescript.snippets │ │ │ ├── vala.js │ │ │ ├── vala.snippets │ │ │ ├── vbscript.js │ │ │ ├── vbscript.snippets │ │ │ ├── velocity.js │ │ │ ├── velocity.snippets │ │ │ ├── verilog.js │ │ │ ├── verilog.snippets │ │ │ ├── vhdl.js │ │ │ ├── vhdl.snippets │ │ │ ├── xml.js │ │ │ ├── xml.snippets │ │ │ ├── xquery.js │ │ │ ├── xquery.snippets │ │ │ ├── xslt.snippets │ │ │ ├── yaml.js │ │ │ └── yaml.snippets │ │ │ ├── snippets_test.js │ │ │ ├── split.js │ │ │ ├── test │ │ │ ├── all.js │ │ │ ├── all_browser.js │ │ │ ├── assertions.js │ │ │ ├── asyncjs │ │ │ │ ├── assert.js │ │ │ │ ├── async.js │ │ │ │ ├── index.js │ │ │ │ ├── test.js │ │ │ │ └── utils.js │ │ │ ├── benchmark.js │ │ │ ├── mockdom.js │ │ │ ├── mockrenderer.js │ │ │ └── tests.html │ │ │ ├── theme │ │ │ ├── ambiance.css │ │ │ ├── ambiance.js │ │ │ ├── chaos.css │ │ │ ├── chaos.js │ │ │ ├── chrome.css │ │ │ ├── chrome.js │ │ │ ├── clouds.css │ │ │ ├── clouds.js │ │ │ ├── clouds_midnight.css │ │ │ ├── clouds_midnight.js │ │ │ ├── cobalt.css │ │ │ ├── cobalt.js │ │ │ ├── crimson_editor.css │ │ │ ├── crimson_editor.js │ │ │ ├── dawn.css │ │ │ ├── dawn.js │ │ │ ├── dreamweaver.css │ │ │ ├── dreamweaver.js │ │ │ ├── eclipse.css │ │ │ ├── eclipse.js │ │ │ ├── github.css │ │ │ ├── github.js │ │ │ ├── hue.css │ │ │ ├── hue.js │ │ │ ├── hue_dark.css │ │ │ ├── hue_dark.js │ │ │ ├── idle_fingers.css │ │ │ ├── idle_fingers.js │ │ │ ├── iplastic.css │ │ │ ├── iplastic.js │ │ │ ├── katzenmilch.css │ │ │ ├── katzenmilch.js │ │ │ ├── kr_theme.css │ │ │ ├── kr_theme.js │ │ │ ├── kuroir.css │ │ │ ├── kuroir.js │ │ │ ├── merbivore.css │ │ │ ├── merbivore.js │ │ │ ├── merbivore_soft.css │ │ │ ├── merbivore_soft.js │ │ │ ├── mono_industrial.css │ │ │ ├── mono_industrial.js │ │ │ ├── monokai.css │ │ │ ├── monokai.js │ │ │ ├── pastel_on_dark.css │ │ │ ├── pastel_on_dark.js │ │ │ ├── solarized_dark.css │ │ │ ├── solarized_dark.js │ │ │ ├── solarized_light.css │ │ │ ├── solarized_light.js │ │ │ ├── sqlserver.css │ │ │ ├── sqlserver.js │ │ │ ├── terminal.css │ │ │ ├── terminal.js │ │ │ ├── textmate.css │ │ │ ├── textmate.js │ │ │ ├── tomorrow.css │ │ │ ├── tomorrow.js │ │ │ ├── tomorrow_night.css │ │ │ ├── tomorrow_night.js │ │ │ ├── tomorrow_night_blue.css │ │ │ ├── tomorrow_night_blue.js │ │ │ ├── tomorrow_night_bright.css │ │ │ ├── tomorrow_night_bright.js │ │ │ ├── tomorrow_night_eighties.css │ │ │ ├── tomorrow_night_eighties.js │ │ │ ├── twilight.css │ │ │ ├── twilight.js │ │ │ ├── vibrant_ink.css │ │ │ ├── vibrant_ink.js │ │ │ ├── xcode.css │ │ │ └── xcode.js │ │ │ ├── token_iterator.js │ │ │ ├── token_iterator_test.js │ │ │ ├── tokenizer.js │ │ │ ├── tokenizer_dev.js │ │ │ ├── tokenizer_test.js │ │ │ ├── tooltip.js │ │ │ ├── undomanager.js │ │ │ ├── unicode.js │ │ │ ├── virtual_renderer.js │ │ │ ├── virtual_renderer_test.js │ │ │ └── worker │ │ │ ├── mirror.js │ │ │ ├── worker.js │ │ │ ├── worker_client.js │ │ │ └── worker_test.js │ ├── package.json │ ├── static.js │ ├── static.py │ ├── tool │ │ ├── Readme.md │ │ ├── add_mode.js │ │ ├── lib.js │ │ ├── mode_creator.html │ │ ├── mode_creator.js │ │ ├── package.json │ │ ├── perf-test.html │ │ ├── regexp_tokenizer.js │ │ ├── regexp_tokenizer_test.js │ │ ├── release.sh │ │ ├── templates │ │ │ ├── dummy.JSON-tmLanguage │ │ │ ├── highlight_rules.js │ │ │ ├── mode.js │ │ │ ├── snippets.js │ │ │ ├── theme.css │ │ │ └── theme.js │ │ ├── tmlanguage.js │ │ ├── tmsnippets.js │ │ ├── tmtheme.js │ │ ├── tmthemes │ │ │ ├── Active4D.tmTheme │ │ │ ├── Amy.tmTheme │ │ │ ├── Blackboard.tmTheme │ │ │ ├── Clouds.tmTheme │ │ │ ├── Cobalt.tmTheme │ │ │ ├── Dawn.tmTheme │ │ │ ├── Dreamweaver.tmTheme │ │ │ ├── Eiffel.tmTheme │ │ │ ├── GitHub.tmTheme │ │ │ ├── IDLE.tmTheme │ │ │ ├── Katzenmilch.tmTheme │ │ │ ├── LAZY.tmTheme │ │ │ ├── LICENSE │ │ │ ├── Merbivore.tmTheme │ │ │ ├── Monokai.tmTheme │ │ │ ├── Solarized-dark.tmTheme │ │ │ ├── Solarized-light.tmTheme │ │ │ ├── SpaceCadet.tmTheme │ │ │ ├── Sunburst.tmTheme │ │ │ ├── Tomorrow-Night-Blue.tmTheme │ │ │ ├── Tomorrow-Night-Bright.tmTheme │ │ │ ├── Tomorrow-Night-Eighties.tmTheme │ │ │ ├── Tomorrow-Night.tmTheme │ │ │ ├── Tomorrow.tmTheme │ │ │ ├── Twilight.tmTheme │ │ │ ├── Xcode_default.tmTheme │ │ │ ├── Zenburnesque.tmTheme │ │ │ ├── iPlastic.tmTheme │ │ │ ├── idleFingers.tmTheme │ │ │ ├── krTheme.tmTheme │ │ │ └── monoindustrial.tmTheme │ │ ├── update_deps.js │ │ └── wrap_keyword_regexp.js │ └── version.js ├── app_reg │ ├── app_reg.py │ ├── build.py │ ├── common.py │ ├── pth.py │ └── registry.py ├── ci │ ├── check_for_absolute_paths.js │ ├── check_for_commit_message.sh │ ├── check_for_invalid_characters.sh │ ├── check_for_js_licenses.js │ └── check_for_pinned_versions.js ├── cloudera │ ├── build_hue_cloudera.sh │ └── build_hue_common.sh ├── container │ ├── base │ │ ├── hue │ │ │ ├── Dockerfile │ │ │ └── healthz.sh │ │ └── huelb │ │ │ ├── Dockerfile │ │ │ └── healthz.sh │ ├── build.sh │ ├── common.sh │ ├── compile │ │ └── hue │ │ │ └── Dockerfile │ ├── hue │ │ ├── Dockerfile │ │ ├── hue.sh │ │ ├── hueconf │ │ │ ├── altscript.sh │ │ │ ├── gunicorn_log.conf │ │ │ ├── hue.ini │ │ │ ├── log.conf │ │ │ ├── log4j.properties │ │ │ ├── saml_attributes │ │ │ │ └── cldr.py │ │ │ └── security-7.2.3.jar │ │ └── supervisor-files │ │ │ ├── etc │ │ │ └── supervisord_template │ │ │ ├── hue_celery_template │ │ │ ├── hue_ktrenewer_template │ │ │ ├── hue_redis_template │ │ │ └── hue_server_template │ └── huelb │ │ ├── Dockerfile │ │ ├── hue.conf │ │ ├── hue_httpd_template │ │ └── run_httpd.sh ├── docker │ ├── README.md │ ├── documentation │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── docs.gethue.com.conf │ │ └── nginx.conf │ ├── hue │ │ ├── Dockerfile │ │ ├── Dockerfile.py2 │ │ ├── Dockerfile.py2.dockerignore │ │ ├── README.md │ │ ├── conf │ │ │ ├── log.conf │ │ │ └── z-hue-overrides.ini │ │ ├── conf3 │ │ │ ├── log.conf │ │ │ └── z-hue-overrides.ini │ │ ├── docker-compose.yml │ │ ├── init.sql │ │ └── startup.sh │ ├── nginx │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── hue.conf │ │ └── nginx.conf │ └── website │ │ ├── README.md │ │ ├── gethue.Dockerfile │ │ ├── gethue.Dockerfile.dockerignore │ │ └── nginx.conf ├── examples │ ├── api │ │ └── hue_dep │ │ │ ├── .eslintignore │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── app.js │ │ │ └── webpack.config.js │ └── components │ │ ├── er-diagram-demo │ │ ├── .gitignore │ │ ├── README.md │ │ ├── data.js │ │ ├── index.html │ │ └── package.json │ │ └── sql-scratchpad │ │ ├── .env │ │ ├── README.md │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── manifest.json │ │ └── robots.txt │ │ ├── src │ │ ├── App.css │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── components │ │ │ ├── ExecuteButton.tsx │ │ │ ├── ExecuteLimit.tsx │ │ │ ├── ExecuteProgress.tsx │ │ │ ├── QueryEditor.tsx │ │ │ ├── ResultTable.tsx │ │ │ ├── SqlScratchpad.tsx │ │ │ ├── types.d.ts │ │ │ └── utils.ts │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ └── setupTests.ts │ │ └── tsconfig.json ├── git-hooks │ ├── pre-commit │ └── pre-push ├── githooks │ └── commit-msg ├── jenkins │ ├── build-functions │ ├── jenkins-prod-tarball.sh │ └── jenkins.sh ├── jira │ ├── hueJira.js │ └── package.json ├── jison │ ├── generateParsers.js │ ├── package.json │ ├── parserDefinitions.js │ └── utils.js ├── knox │ └── hue │ │ └── 1.0.0 │ │ ├── rewrite.xml │ │ └── service.xml ├── kubernetes │ ├── README.md │ ├── grafana │ │ └── hue-home.json │ └── helm │ │ ├── hue │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── clusterissuer-letsencrypt-prod.yaml │ │ │ ├── clusterissuer-letsencrypt-staging.yaml │ │ │ ├── clusterrole-traefik.yaml │ │ │ ├── clusterrolebinding-traefik.yaml │ │ │ ├── configmap-hive.yaml │ │ │ ├── configmap-hue-extra.yaml │ │ │ ├── configmap-hue.yaml │ │ │ ├── configmap-nginx.yaml │ │ │ ├── cron-email-stats.yaml │ │ │ ├── deployment-celery-beat.yaml │ │ │ ├── deployment-celery-flower.yaml │ │ │ ├── deployment-celery-workers.yaml │ │ │ ├── deployment-daphne.yaml │ │ │ ├── deployment-hue-api.yaml │ │ │ ├── deployment-hue.yaml │ │ │ ├── deployment-postgres.yaml │ │ │ ├── deployment-redis.yaml │ │ │ ├── deployment-traefik.yaml │ │ │ ├── ingress-http-v1.yaml │ │ │ ├── ingress-http-v1beta.yaml │ │ │ ├── ingress-https-v1.yaml │ │ │ ├── ingress-https-v1beta.yaml │ │ │ ├── ingress-traefik-hue.yaml │ │ │ ├── ingress-traefik.yaml │ │ │ ├── prometheus-rule-hue.yaml │ │ │ ├── pv-postgres.yaml │ │ │ ├── pvc-postgres.yaml │ │ │ ├── secret-postgres.yaml │ │ │ ├── service-account-traefik.yaml │ │ │ ├── service-celery-flower.yaml │ │ │ ├── service-daphne.yaml │ │ │ ├── service-hue-api.yaml │ │ │ ├── service-hue.yaml │ │ │ ├── service-nginx-hue.yaml │ │ │ ├── service-postgres.yaml │ │ │ ├── service-redis.yaml │ │ │ ├── service-traefik.yaml │ │ │ └── servicemonitor-hue.yaml │ │ └── values.yaml │ │ └── website │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── clusterissuer-letsencrypt-prod.yaml │ │ ├── deployment-docs.yaml │ │ ├── deployment-website-jp.yaml │ │ ├── deployment-website.yaml │ │ ├── ingress-http.yaml │ │ ├── ingress-https.yaml │ │ ├── service-docs.yaml │ │ ├── service-website-jp.yaml │ │ ├── service-website.yaml │ │ └── servicemonitor-hue.yaml │ │ └── values.yaml ├── load-balancer │ ├── LICENSE.txt │ ├── README.md │ ├── bin │ │ ├── haproxy-wrapper │ │ ├── monitor-hue-lb │ │ ├── supervisorctl │ │ └── supervisord │ ├── etc │ │ ├── haproxy-hue-server.conf.in │ │ ├── haproxy-hue.conf.in │ │ ├── haproxy.conf │ │ ├── hue-lb.toml │ │ ├── nginx-hue-server.conf.in │ │ ├── nginx-hue.conf.in │ │ ├── nginx.conf │ │ ├── supervisor.d │ │ │ ├── haproxy.conf │ │ │ ├── monitor-hue-lb.conf │ │ │ ├── monitor-hue-lb.conf.example │ │ │ └── nginx.conf │ │ └── supervisord.conf │ └── requirements.txt ├── nginx │ ├── README.md │ └── configs │ │ └── hue ├── ops │ ├── bees_monitor.sh │ ├── create_userprofile_json.sh │ ├── hbase_break_test.sh │ ├── hue_beeswax_tester.sh │ ├── hue_beeswax_tester_setup.sh │ ├── hue_file_tester.sh │ ├── hue_file_tester_setup.sh │ ├── hue_history_cron.sh │ ├── hue_impala_post.sh │ ├── hue_ldap_test.sh │ ├── hue_mem_cron.sh │ ├── hue_mem_cron_cm.sh │ ├── hue_sync_ldap_groups_cron.sh │ ├── script_runner │ │ ├── README.md │ │ ├── extract_archive_in_hdfs.sh │ │ ├── get_hue_version.sh │ │ ├── hue_change_dashboard_owner.sh │ │ ├── hue_clean_duplicate_permissions.sh │ │ ├── hue_create_db.sh │ │ ├── hue_download_watcher.sh │ │ ├── hue_dump_user.sh │ │ ├── hue_history_cron.sh │ │ ├── hue_multiple_home_cleanup.sh │ │ ├── hue_restart_cm.sh │ │ ├── lib │ │ │ ├── __init__.py │ │ │ ├── adapter_factory.py │ │ │ ├── cm_environment.py │ │ │ ├── conversion_runner.py │ │ │ ├── custom_commands │ │ │ │ ├── __init__.py │ │ │ │ ├── management │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── commands │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── backend_test_curl.py │ │ │ │ │ │ ├── c6_test_command.py │ │ │ │ │ │ ├── change_owner_of_docs.py │ │ │ │ │ │ ├── db_query_test.py │ │ │ │ │ │ ├── delete_user.py │ │ │ │ │ │ ├── estimate_concurrent_users.py │ │ │ │ │ │ ├── hue_desktop_document_cleanup.py │ │ │ │ │ │ ├── list_groups.py │ │ │ │ │ │ ├── remove_doc2_without_content_object.py │ │ │ │ │ │ ├── remove_duplicate_user_preferences.py │ │ │ │ │ │ ├── remove_orphaned_docs.py │ │ │ │ │ │ ├── rename_duplicate_users.py │ │ │ │ │ │ ├── run_hive_impala_query.py │ │ │ │ │ │ └── share_all_workflows.py │ │ │ │ └── settings.py │ │ │ ├── customdumpdata.py │ │ │ ├── doc2_utils.py │ │ │ ├── doc_count_util.py │ │ │ ├── hue_adapters.py │ │ │ ├── hue_converters.py │ │ │ ├── hue_curl.py │ │ │ ├── hue_shared.py │ │ │ ├── log.conf │ │ │ ├── log │ │ │ │ ├── __init__.py │ │ │ │ ├── access.py │ │ │ │ ├── formatter.py │ │ │ │ ├── log_buffer.py │ │ │ │ ├── log_buffer_test.py │ │ │ │ └── tests.py │ │ │ └── url_util.py │ │ ├── patches │ │ │ ├── 5.12_all_logging.patch │ │ │ ├── 5.13_all_logging.patch │ │ │ ├── 5.14_all_logging.patch │ │ │ ├── 5.15_all_logging.patch │ │ │ └── fix_cm_config_file.patch │ │ ├── queries.txt │ │ └── script_runner │ ├── sync_ldap_group.sh │ ├── sync_ldap_user.sh │ └── sync_ldap_users_groups.sh ├── rat │ ├── .rat-excludes │ └── check.sh ├── relocatable.py ├── relocatable.sh ├── scripts │ ├── check_tarball_standalone.sh │ ├── clean_js_bundles.sh │ ├── hue-review │ ├── hue.sh │ └── python │ │ ├── hue_py_shebang.sh │ │ └── python_helper.sh ├── slack │ └── manifest.yml ├── sql-docs │ ├── DocFragment.js │ ├── Topic.js │ ├── ditamapParser.js │ ├── docExtractor.js │ ├── docXmlParser.js │ ├── extractorUtils.js │ ├── hiveExtractor.js │ ├── jsonHandler.js │ ├── package.json │ └── topicLinker.js ├── virtual-bootstrap │ ├── virtual-bootstrap.py │ └── virtualenv_support │ │ ├── __init__.py │ │ ├── argparse-1.4.0-py2.py3-none-any.whl │ │ ├── pip-9.0.1-py2.py3-none-any.whl │ │ ├── setuptools-28.8.0-py2.py3-none-any.whl │ │ └── wheel-0.29.0-py2.py3-none-any.whl ├── vue3-webcomponent-wrapper │ ├── .gitignore │ ├── README.md │ └── package.json └── wrk-scripts │ ├── README.md │ ├── lib │ ├── argparse.lua │ ├── cookie.lua │ ├── copy.lua │ ├── equal-5bb8dbf.lua │ ├── hue.lua │ ├── inspect.lua │ ├── old │ │ └── argparse.lua │ └── uri-f570bf7.lua │ └── stress-hue.lua ├── tsconfig.json ├── webpack.config.js ├── webpack.config.login.js ├── webpack.config.npm.js └── webpack.config.workers.js /.cursor/rules/accessibility.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/.cursor/rules/accessibility.mdc -------------------------------------------------------------------------------- /.cursor/rules/build-and-scripts.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/.cursor/rules/build-and-scripts.mdc -------------------------------------------------------------------------------- /.cursor/rules/i18n-and-copy.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/.cursor/rules/i18n-and-copy.mdc -------------------------------------------------------------------------------- /.cursor/rules/legacy-migration.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/.cursor/rules/legacy-migration.mdc -------------------------------------------------------------------------------- /.cursor/rules/project-overview.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/.cursor/rules/project-overview.mdc -------------------------------------------------------------------------------- /.cursor/rules/testing-rtl.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/.cursor/rules/testing-rtl.mdc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | build 2 | logs 3 | node_modules 4 | .git 5 | .vscode 6 | 7 | desktop/core/ext-py/ 8 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | LAST_COMMIT export-subst 2 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/cleanup-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/.github/workflows/cleanup-cache.yml -------------------------------------------------------------------------------- /.github/workflows/docs_lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/.github/workflows/docs_lint.yml -------------------------------------------------------------------------------- /.github/workflows/pr-comments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/.github/workflows/pr-comments.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/.stylelintrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.sdk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/Makefile.sdk -------------------------------------------------------------------------------- /Makefile.tarball: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/Makefile.tarball -------------------------------------------------------------------------------- /Makefile.vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/Makefile.vars -------------------------------------------------------------------------------- /Makefile.vars.priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/Makefile.vars.priv -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /NPM-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/NPM-README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/VERSION -------------------------------------------------------------------------------- /apps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/Makefile -------------------------------------------------------------------------------- /apps/about/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/about/Makefile -------------------------------------------------------------------------------- /apps/about/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/about/babel.cfg -------------------------------------------------------------------------------- /apps/about/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /apps/about/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/about/setup.py -------------------------------------------------------------------------------- /apps/about/src/about/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/about/src/about/__init__.py -------------------------------------------------------------------------------- /apps/about/src/about/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/about/src/about/api.py -------------------------------------------------------------------------------- /apps/about/src/about/api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/about/src/about/api_tests.py -------------------------------------------------------------------------------- /apps/about/src/about/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/about/src/about/conf.py -------------------------------------------------------------------------------- /apps/about/src/about/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/about/src/about/models.py -------------------------------------------------------------------------------- /apps/about/src/about/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/about/src/about/serializer.py -------------------------------------------------------------------------------- /apps/about/src/about/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/about/src/about/settings.py -------------------------------------------------------------------------------- /apps/about/src/about/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/about/src/about/tests.py -------------------------------------------------------------------------------- /apps/about/src/about/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/about/src/about/urls.py -------------------------------------------------------------------------------- /apps/about/src/about/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/about/src/about/views.py -------------------------------------------------------------------------------- /apps/beeswax/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/Makefile -------------------------------------------------------------------------------- /apps/beeswax/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/babel.cfg -------------------------------------------------------------------------------- /apps/beeswax/data/customers.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/data/customers.parquet -------------------------------------------------------------------------------- /apps/beeswax/data/queries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/data/queries.json -------------------------------------------------------------------------------- /apps/beeswax/data/sample_07.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/data/sample_07.csv -------------------------------------------------------------------------------- /apps/beeswax/data/sample_08.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/data/sample_08.csv -------------------------------------------------------------------------------- /apps/beeswax/data/tables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/data/tables.json -------------------------------------------------------------------------------- /apps/beeswax/data/tables/book.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/data/tables/book.xlsx -------------------------------------------------------------------------------- /apps/beeswax/data/web_logs_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/data/web_logs_1.csv -------------------------------------------------------------------------------- /apps/beeswax/data/web_logs_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/data/web_logs_2.csv -------------------------------------------------------------------------------- /apps/beeswax/data/web_logs_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/data/web_logs_3.csv -------------------------------------------------------------------------------- /apps/beeswax/data/web_logs_4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/data/web_logs_4.csv -------------------------------------------------------------------------------- /apps/beeswax/gen-py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/beeswax/gen-py/fb303/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/gen-py/fb303/ttypes.py -------------------------------------------------------------------------------- /apps/beeswax/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /apps/beeswax/regenerate_thrift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/regenerate_thrift.sh -------------------------------------------------------------------------------- /apps/beeswax/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/setup.py -------------------------------------------------------------------------------- /apps/beeswax/src/beeswax/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/src/beeswax/admin.py -------------------------------------------------------------------------------- /apps/beeswax/src/beeswax/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/src/beeswax/api.py -------------------------------------------------------------------------------- /apps/beeswax/src/beeswax/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/src/beeswax/common.py -------------------------------------------------------------------------------- /apps/beeswax/src/beeswax/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/src/beeswax/conf.py -------------------------------------------------------------------------------- /apps/beeswax/src/beeswax/design.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/src/beeswax/design.py -------------------------------------------------------------------------------- /apps/beeswax/src/beeswax/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/src/beeswax/forms.py -------------------------------------------------------------------------------- /apps/beeswax/src/beeswax/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/beeswax/src/beeswax/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/beeswax/src/beeswax/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/src/beeswax/models.py -------------------------------------------------------------------------------- /apps/beeswax/src/beeswax/old_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/beeswax/src/beeswax/org_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/beeswax/src/beeswax/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/src/beeswax/tests.py -------------------------------------------------------------------------------- /apps/beeswax/src/beeswax/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/src/beeswax/urls.py -------------------------------------------------------------------------------- /apps/beeswax/src/beeswax/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/src/beeswax/views.py -------------------------------------------------------------------------------- /apps/beeswax/thrift/fb303.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/beeswax/thrift/fb303.thrift -------------------------------------------------------------------------------- /apps/filebrowser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/filebrowser/Makefile -------------------------------------------------------------------------------- /apps/filebrowser/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/filebrowser/babel.cfg -------------------------------------------------------------------------------- /apps/filebrowser/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /apps/filebrowser/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/filebrowser/setup.py -------------------------------------------------------------------------------- /apps/hbase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hbase/Makefile -------------------------------------------------------------------------------- /apps/hbase/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hbase/babel.cfg -------------------------------------------------------------------------------- /apps/hbase/gen-py/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hbase/gen-py/__init__.py -------------------------------------------------------------------------------- /apps/hbase/gen-py/hbased/Hbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hbase/gen-py/hbased/Hbase.py -------------------------------------------------------------------------------- /apps/hbase/gen-py/hbased/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hbase/gen-py/hbased/ttypes.py -------------------------------------------------------------------------------- /apps/hbase/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /apps/hbase/regenerate_thrift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hbase/regenerate_thrift.sh -------------------------------------------------------------------------------- /apps/hbase/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hbase/setup.py -------------------------------------------------------------------------------- /apps/hbase/src/hbase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hbase/src/hbase/__init__.py -------------------------------------------------------------------------------- /apps/hbase/src/hbase/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hbase/src/hbase/api.py -------------------------------------------------------------------------------- /apps/hbase/src/hbase/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hbase/src/hbase/conf.py -------------------------------------------------------------------------------- /apps/hbase/src/hbase/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hbase/src/hbase/forms.py -------------------------------------------------------------------------------- /apps/hbase/src/hbase/hbase_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hbase/src/hbase/hbase_site.py -------------------------------------------------------------------------------- /apps/hbase/src/hbase/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/hbase/src/hbase/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hbase/src/hbase/models.py -------------------------------------------------------------------------------- /apps/hbase/src/hbase/old_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/hbase/src/hbase/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hbase/src/hbase/settings.py -------------------------------------------------------------------------------- /apps/hbase/src/hbase/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hbase/src/hbase/tests.py -------------------------------------------------------------------------------- /apps/hbase/src/hbase/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hbase/src/hbase/urls.py -------------------------------------------------------------------------------- /apps/hbase/src/hbase/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hbase/src/hbase/views.py -------------------------------------------------------------------------------- /apps/hbase/thrift/Hbase.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hbase/thrift/Hbase.thrift -------------------------------------------------------------------------------- /apps/help/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/help/Makefile -------------------------------------------------------------------------------- /apps/help/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /apps/help/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/help/setup.py -------------------------------------------------------------------------------- /apps/help/src/help/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/help/src/help/__init__.py -------------------------------------------------------------------------------- /apps/help/src/help/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/help/src/help/conf.py -------------------------------------------------------------------------------- /apps/help/src/help/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/help/src/help/models.py -------------------------------------------------------------------------------- /apps/help/src/help/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/help/src/help/settings.py -------------------------------------------------------------------------------- /apps/help/src/help/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/help/src/help/tests.py -------------------------------------------------------------------------------- /apps/help/src/help/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/help/src/help/urls.py -------------------------------------------------------------------------------- /apps/help/src/help/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/help/src/help/views.py -------------------------------------------------------------------------------- /apps/hive/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hive/Makefile -------------------------------------------------------------------------------- /apps/hive/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hive/babel.cfg -------------------------------------------------------------------------------- /apps/hive/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /apps/hive/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hive/setup.py -------------------------------------------------------------------------------- /apps/hive/src/hive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hive/src/hive/__init__.py -------------------------------------------------------------------------------- /apps/hive/src/hive/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hive/src/hive/conf.py -------------------------------------------------------------------------------- /apps/hive/src/hive/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hive/src/hive/forms.py -------------------------------------------------------------------------------- /apps/hive/src/hive/locale/en_US.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hive/src/hive/locale/en_US.pot -------------------------------------------------------------------------------- /apps/hive/src/hive/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hive/src/hive/models.py -------------------------------------------------------------------------------- /apps/hive/src/hive/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hive/src/hive/settings.py -------------------------------------------------------------------------------- /apps/hive/src/hive/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hive/src/hive/tests.py -------------------------------------------------------------------------------- /apps/hive/src/hive/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/hive/src/hive/urls.py -------------------------------------------------------------------------------- /apps/impala/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/Makefile -------------------------------------------------------------------------------- /apps/impala/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/babel.cfg -------------------------------------------------------------------------------- /apps/impala/gen-py/ErrorCodes/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /apps/impala/gen-py/ExecStats/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /apps/impala/gen-py/Status/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /apps/impala/gen-py/Status/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/gen-py/Status/ttypes.py -------------------------------------------------------------------------------- /apps/impala/gen-py/Types/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /apps/impala/gen-py/Types/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/gen-py/Types/ttypes.py -------------------------------------------------------------------------------- /apps/impala/gen-py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/impala/gen-py/fb303/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/gen-py/fb303/ttypes.py -------------------------------------------------------------------------------- /apps/impala/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /apps/impala/regenerate_thrift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/regenerate_thrift.sh -------------------------------------------------------------------------------- /apps/impala/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/setup.py -------------------------------------------------------------------------------- /apps/impala/src/impala/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/src/impala/__init__.py -------------------------------------------------------------------------------- /apps/impala/src/impala/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/src/impala/api.py -------------------------------------------------------------------------------- /apps/impala/src/impala/api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/src/impala/api_tests.py -------------------------------------------------------------------------------- /apps/impala/src/impala/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/src/impala/conf.py -------------------------------------------------------------------------------- /apps/impala/src/impala/dbms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/src/impala/dbms.py -------------------------------------------------------------------------------- /apps/impala/src/impala/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/src/impala/forms.py -------------------------------------------------------------------------------- /apps/impala/src/impala/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/src/impala/models.py -------------------------------------------------------------------------------- /apps/impala/src/impala/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/src/impala/server.py -------------------------------------------------------------------------------- /apps/impala/src/impala/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/src/impala/settings.py -------------------------------------------------------------------------------- /apps/impala/src/impala/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/src/impala/tests.py -------------------------------------------------------------------------------- /apps/impala/src/impala/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/src/impala/urls.py -------------------------------------------------------------------------------- /apps/impala/thrift/ExecStats.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/thrift/ExecStats.thrift -------------------------------------------------------------------------------- /apps/impala/thrift/Status.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/thrift/Status.thrift -------------------------------------------------------------------------------- /apps/impala/thrift/Types.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/thrift/Types.thrift -------------------------------------------------------------------------------- /apps/impala/thrift/beeswax.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/impala/thrift/beeswax.thrift -------------------------------------------------------------------------------- /apps/jobbrowser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/jobbrowser/Makefile -------------------------------------------------------------------------------- /apps/jobbrowser/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/jobbrowser/babel.cfg -------------------------------------------------------------------------------- /apps/jobbrowser/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /apps/jobbrowser/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/jobbrowser/setup.py -------------------------------------------------------------------------------- /apps/jobsub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/jobsub/Makefile -------------------------------------------------------------------------------- /apps/jobsub/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/jobsub/babel.cfg -------------------------------------------------------------------------------- /apps/jobsub/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /apps/jobsub/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/jobsub/setup.py -------------------------------------------------------------------------------- /apps/jobsub/src/jobsub/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/jobsub/src/jobsub/__init__.py -------------------------------------------------------------------------------- /apps/jobsub/src/jobsub/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/jobsub/src/jobsub/admin.py -------------------------------------------------------------------------------- /apps/jobsub/src/jobsub/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/jobsub/src/jobsub/conf.py -------------------------------------------------------------------------------- /apps/jobsub/src/jobsub/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/jobsub/src/jobsub/forms.py -------------------------------------------------------------------------------- /apps/jobsub/src/jobsub/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/jobsub/src/jobsub/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/jobsub/src/jobsub/models.py -------------------------------------------------------------------------------- /apps/jobsub/src/jobsub/old_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/jobsub/src/jobsub/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/jobsub/src/jobsub/settings.py -------------------------------------------------------------------------------- /apps/jobsub/src/jobsub/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/jobsub/src/jobsub/tests.py -------------------------------------------------------------------------------- /apps/jobsub/src/jobsub/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/jobsub/src/jobsub/urls.py -------------------------------------------------------------------------------- /apps/jobsub/src/jobsub/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/jobsub/src/jobsub/views.py -------------------------------------------------------------------------------- /apps/metastore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/metastore/Makefile -------------------------------------------------------------------------------- /apps/metastore/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/metastore/babel.cfg -------------------------------------------------------------------------------- /apps/metastore/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /apps/metastore/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/metastore/setup.py -------------------------------------------------------------------------------- /apps/oozie/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/oozie/Makefile -------------------------------------------------------------------------------- /apps/oozie/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/oozie/babel.cfg -------------------------------------------------------------------------------- /apps/oozie/examples/bundles/copy-files/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/oozie/examples/coordinators/daily-copy/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/oozie/examples/lib/pi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/oozie/examples/lib/pi.py -------------------------------------------------------------------------------- /apps/oozie/examples/managed/hive/hive.sql: -------------------------------------------------------------------------------- 1 | show tables; 2 | -------------------------------------------------------------------------------- /apps/oozie/examples/unmanaged/hive/hive.sql: -------------------------------------------------------------------------------- 1 | show tables; 2 | -------------------------------------------------------------------------------- /apps/oozie/examples/workflows/fork/dump.pig: -------------------------------------------------------------------------------- 1 | a = LOAD '$input'; 2 | b = LIMIT a $limit; 3 | DUMP b; -------------------------------------------------------------------------------- /apps/oozie/examples/workflows/sleep/dir/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/oozie/examples/workflows/sleep/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/oozie/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /apps/oozie/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/oozie/setup.py -------------------------------------------------------------------------------- /apps/oozie/src/oozie/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/oozie/src/oozie/__init__.py -------------------------------------------------------------------------------- /apps/oozie/src/oozie/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/oozie/src/oozie/conf.py -------------------------------------------------------------------------------- /apps/oozie/src/oozie/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/oozie/src/oozie/decorators.py -------------------------------------------------------------------------------- /apps/oozie/src/oozie/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/oozie/src/oozie/forms.py -------------------------------------------------------------------------------- /apps/oozie/src/oozie/importlib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/oozie/src/oozie/importlib/utils.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/oozie/src/oozie/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/oozie/src/oozie/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/oozie/src/oozie/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/oozie/src/oozie/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/oozie/src/oozie/models.py -------------------------------------------------------------------------------- /apps/oozie/src/oozie/models2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/oozie/src/oozie/models2.py -------------------------------------------------------------------------------- /apps/oozie/src/oozie/old_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/oozie/src/oozie/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/oozie/src/oozie/settings.py -------------------------------------------------------------------------------- /apps/oozie/src/oozie/templates/editor2/gen/workflow-mapreduce-document.xml.mako: -------------------------------------------------------------------------------- 1 | workflow-mapreduce.xml.mako -------------------------------------------------------------------------------- /apps/oozie/src/oozie/templates/editor2/gen/workflow-pig-document.xml.mako: -------------------------------------------------------------------------------- 1 | workflow-pig.xml.mako -------------------------------------------------------------------------------- /apps/oozie/src/oozie/templates/editor2/gen/workflow-shell-document.xml.mako: -------------------------------------------------------------------------------- 1 | workflow-shell.xml.mako -------------------------------------------------------------------------------- /apps/oozie/src/oozie/templates/editor2/gen/workflow-spark-document.xml.mako: -------------------------------------------------------------------------------- 1 | workflow-spark.xml.mako -------------------------------------------------------------------------------- /apps/oozie/src/oozie/templates/editor2/gen/workflow-spark2-document.xml.mako: -------------------------------------------------------------------------------- 1 | workflow-spark.xml.mako -------------------------------------------------------------------------------- /apps/oozie/src/oozie/templates/editor2/gen/workflow-sqoop-document.xml.mako: -------------------------------------------------------------------------------- 1 | workflow-sqoop.xml.mako -------------------------------------------------------------------------------- /apps/oozie/src/oozie/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/oozie/src/oozie/tests.py -------------------------------------------------------------------------------- /apps/oozie/src/oozie/timezones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/oozie/src/oozie/timezones.py -------------------------------------------------------------------------------- /apps/oozie/src/oozie/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/oozie/src/oozie/urls.py -------------------------------------------------------------------------------- /apps/oozie/src/oozie/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/oozie/src/oozie/utils.py -------------------------------------------------------------------------------- /apps/oozie/src/oozie/views/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/oozie/src/oozie/views/api.py -------------------------------------------------------------------------------- /apps/pig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/pig/Makefile -------------------------------------------------------------------------------- /apps/pig/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/pig/babel.cfg -------------------------------------------------------------------------------- /apps/pig/examples/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/pig/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /apps/pig/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/pig/setup.py -------------------------------------------------------------------------------- /apps/pig/src/pig/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/pig/src/pig/__init__.py -------------------------------------------------------------------------------- /apps/pig/src/pig/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/pig/src/pig/api.py -------------------------------------------------------------------------------- /apps/pig/src/pig/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/pig/src/pig/conf.py -------------------------------------------------------------------------------- /apps/pig/src/pig/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/pig/src/pig/forms.py -------------------------------------------------------------------------------- /apps/pig/src/pig/locale/en_US.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/pig/src/pig/locale/en_US.pot -------------------------------------------------------------------------------- /apps/pig/src/pig/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/pig/src/pig/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/pig/src/pig/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/pig/src/pig/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/pig/src/pig/models.py -------------------------------------------------------------------------------- /apps/pig/src/pig/old_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/pig/src/pig/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/pig/src/pig/settings.py -------------------------------------------------------------------------------- /apps/pig/src/pig/templates/app.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/pig/src/pig/templates/app.mako -------------------------------------------------------------------------------- /apps/pig/src/pig/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/pig/src/pig/tests.py -------------------------------------------------------------------------------- /apps/pig/src/pig/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/pig/src/pig/urls.py -------------------------------------------------------------------------------- /apps/pig/src/pig/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/pig/src/pig/views.py -------------------------------------------------------------------------------- /apps/proxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/proxy/Makefile -------------------------------------------------------------------------------- /apps/proxy/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /apps/proxy/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/proxy/setup.py -------------------------------------------------------------------------------- /apps/proxy/src/proxy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/proxy/src/proxy/__init__.py -------------------------------------------------------------------------------- /apps/proxy/src/proxy/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/proxy/src/proxy/conf.py -------------------------------------------------------------------------------- /apps/proxy/src/proxy/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/proxy/src/proxy/models.py -------------------------------------------------------------------------------- /apps/proxy/src/proxy/proxy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/proxy/src/proxy/proxy_test.py -------------------------------------------------------------------------------- /apps/proxy/src/proxy/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/proxy/src/proxy/settings.py -------------------------------------------------------------------------------- /apps/proxy/src/proxy/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/proxy/src/proxy/urls.py -------------------------------------------------------------------------------- /apps/proxy/src/proxy/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/proxy/src/proxy/views.py -------------------------------------------------------------------------------- /apps/rdbms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/rdbms/Makefile -------------------------------------------------------------------------------- /apps/rdbms/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/rdbms/babel.cfg -------------------------------------------------------------------------------- /apps/rdbms/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /apps/rdbms/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/rdbms/setup.py -------------------------------------------------------------------------------- /apps/rdbms/src/rdbms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/rdbms/src/rdbms/__init__.py -------------------------------------------------------------------------------- /apps/rdbms/src/rdbms/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/rdbms/src/rdbms/api.py -------------------------------------------------------------------------------- /apps/rdbms/src/rdbms/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/rdbms/src/rdbms/conf.py -------------------------------------------------------------------------------- /apps/rdbms/src/rdbms/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/rdbms/src/rdbms/forms.py -------------------------------------------------------------------------------- /apps/rdbms/src/rdbms/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/rdbms/src/rdbms/models.py -------------------------------------------------------------------------------- /apps/rdbms/src/rdbms/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/rdbms/src/rdbms/settings.py -------------------------------------------------------------------------------- /apps/rdbms/src/rdbms/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/rdbms/src/rdbms/tests.py -------------------------------------------------------------------------------- /apps/rdbms/src/rdbms/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/rdbms/src/rdbms/urls.py -------------------------------------------------------------------------------- /apps/rdbms/src/rdbms/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/rdbms/src/rdbms/views.py -------------------------------------------------------------------------------- /apps/search/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/search/Makefile -------------------------------------------------------------------------------- /apps/search/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/search/babel.cfg -------------------------------------------------------------------------------- /apps/search/examples/bin/post.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/search/examples/bin/post.jar -------------------------------------------------------------------------------- /apps/search/examples/bin/post.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/search/examples/bin/post.sh -------------------------------------------------------------------------------- /apps/search/examples/collections/solr_configs_log_analytics_demo/conf/spellings.txt: -------------------------------------------------------------------------------- 1 | pizza 2 | history 3 | -------------------------------------------------------------------------------- /apps/search/examples/collections/solr_configs_twitter_demo/conf/spellings.txt: -------------------------------------------------------------------------------- 1 | pizza 2 | history 3 | -------------------------------------------------------------------------------- /apps/search/examples/collections/solr_configs_yelp_demo/conf/spellings.txt: -------------------------------------------------------------------------------- 1 | pizza 2 | history 3 | -------------------------------------------------------------------------------- /apps/search/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /apps/search/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/search/setup.py -------------------------------------------------------------------------------- /apps/search/src/search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/search/src/search/__init__.py -------------------------------------------------------------------------------- /apps/search/src/search/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/search/src/search/admin.py -------------------------------------------------------------------------------- /apps/search/src/search/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/search/src/search/conf.py -------------------------------------------------------------------------------- /apps/search/src/search/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/search/src/search/forms.py -------------------------------------------------------------------------------- /apps/search/src/search/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/search/src/search/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/search/src/search/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/search/src/search/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/search/src/search/models.py -------------------------------------------------------------------------------- /apps/search/src/search/old_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/search/src/search/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/search/src/search/settings.py -------------------------------------------------------------------------------- /apps/search/src/search/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/search/src/search/tests.py -------------------------------------------------------------------------------- /apps/search/src/search/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/search/src/search/urls.py -------------------------------------------------------------------------------- /apps/search/src/search/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/search/src/search/views.py -------------------------------------------------------------------------------- /apps/security/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/security/Makefile -------------------------------------------------------------------------------- /apps/security/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/security/babel.cfg -------------------------------------------------------------------------------- /apps/security/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /apps/security/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/security/setup.py -------------------------------------------------------------------------------- /apps/security/src/security/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/security/src/security/conf.py -------------------------------------------------------------------------------- /apps/security/src/security/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/security/src/security/forms.py -------------------------------------------------------------------------------- /apps/security/src/security/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/security/src/security/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/security/src/security/tests.py -------------------------------------------------------------------------------- /apps/security/src/security/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/security/src/security/urls.py -------------------------------------------------------------------------------- /apps/security/src/security/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/security/src/security/views.py -------------------------------------------------------------------------------- /apps/spark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/spark/Makefile -------------------------------------------------------------------------------- /apps/spark/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/spark/babel.cfg -------------------------------------------------------------------------------- /apps/spark/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /apps/spark/java/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/spark/java/README.rst -------------------------------------------------------------------------------- /apps/spark/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/spark/setup.py -------------------------------------------------------------------------------- /apps/spark/src/spark/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/spark/src/spark/__init__.py -------------------------------------------------------------------------------- /apps/spark/src/spark/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/spark/src/spark/conf.py -------------------------------------------------------------------------------- /apps/spark/src/spark/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/spark/src/spark/forms.py -------------------------------------------------------------------------------- /apps/spark/src/spark/livy_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/spark/src/spark/livy_client.py -------------------------------------------------------------------------------- /apps/spark/src/spark/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/spark/src/spark/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/spark/src/spark/models.py -------------------------------------------------------------------------------- /apps/spark/src/spark/old_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/spark/src/spark/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/spark/src/spark/settings.py -------------------------------------------------------------------------------- /apps/spark/src/spark/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/spark/src/spark/tests.py -------------------------------------------------------------------------------- /apps/spark/src/spark/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/spark/src/spark/urls.py -------------------------------------------------------------------------------- /apps/spark/src/spark/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/spark/src/spark/views.py -------------------------------------------------------------------------------- /apps/sqoop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/sqoop/Makefile -------------------------------------------------------------------------------- /apps/sqoop/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/sqoop/babel.cfg -------------------------------------------------------------------------------- /apps/sqoop/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /apps/sqoop/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/sqoop/setup.py -------------------------------------------------------------------------------- /apps/sqoop/src/sqoop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/sqoop/src/sqoop/__init__.py -------------------------------------------------------------------------------- /apps/sqoop/src/sqoop/api/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/sqoop/src/sqoop/api/driver.py -------------------------------------------------------------------------------- /apps/sqoop/src/sqoop/api/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/sqoop/src/sqoop/api/job.py -------------------------------------------------------------------------------- /apps/sqoop/src/sqoop/api/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/sqoop/src/sqoop/api/link.py -------------------------------------------------------------------------------- /apps/sqoop/src/sqoop/api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/sqoop/src/sqoop/api/utils.py -------------------------------------------------------------------------------- /apps/sqoop/src/sqoop/client/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/sqoop/src/sqoop/client/base.py -------------------------------------------------------------------------------- /apps/sqoop/src/sqoop/client/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/sqoop/src/sqoop/client/job.py -------------------------------------------------------------------------------- /apps/sqoop/src/sqoop/client/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/sqoop/src/sqoop/client/link.py -------------------------------------------------------------------------------- /apps/sqoop/src/sqoop/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/sqoop/src/sqoop/conf.py -------------------------------------------------------------------------------- /apps/sqoop/src/sqoop/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/sqoop/src/sqoop/forms.py -------------------------------------------------------------------------------- /apps/sqoop/src/sqoop/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/sqoop/src/sqoop/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/sqoop/src/sqoop/models.py -------------------------------------------------------------------------------- /apps/sqoop/src/sqoop/old_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/sqoop/src/sqoop/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/sqoop/src/sqoop/settings.py -------------------------------------------------------------------------------- /apps/sqoop/src/sqoop/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/sqoop/src/sqoop/test_base.py -------------------------------------------------------------------------------- /apps/sqoop/src/sqoop/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/sqoop/src/sqoop/test_client.py -------------------------------------------------------------------------------- /apps/sqoop/src/sqoop/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/sqoop/src/sqoop/tests.py -------------------------------------------------------------------------------- /apps/sqoop/src/sqoop/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/sqoop/src/sqoop/urls.py -------------------------------------------------------------------------------- /apps/sqoop/src/sqoop/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/sqoop/src/sqoop/views.py -------------------------------------------------------------------------------- /apps/useradmin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/useradmin/Makefile -------------------------------------------------------------------------------- /apps/useradmin/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/useradmin/babel.cfg -------------------------------------------------------------------------------- /apps/useradmin/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /apps/useradmin/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/useradmin/setup.py -------------------------------------------------------------------------------- /apps/useradmin/src/useradmin/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/useradmin/src/useradmin/api.py -------------------------------------------------------------------------------- /apps/useradmin/src/useradmin/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/useradmin/src/useradmin/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/useradmin/src/useradmin/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/useradmin/src/useradmin/old_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/useradmin/src/useradmin/org_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/zookeeper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/zookeeper/Makefile -------------------------------------------------------------------------------- /apps/zookeeper/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/zookeeper/babel.cfg -------------------------------------------------------------------------------- /apps/zookeeper/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /apps/zookeeper/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/apps/zookeeper/setup.py -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/babel.config.js -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/conftest.py -------------------------------------------------------------------------------- /contributing-frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/contributing-frontend.md -------------------------------------------------------------------------------- /data: -------------------------------------------------------------------------------- 1 | /var/lib/hue -------------------------------------------------------------------------------- /desktop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/Makefile -------------------------------------------------------------------------------- /desktop/conf.dist/gunicorn_log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/conf.dist/gunicorn_log.conf -------------------------------------------------------------------------------- /desktop/conf.dist/hue.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/conf.dist/hue.ini -------------------------------------------------------------------------------- /desktop/conf.dist/log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/conf.dist/log.conf -------------------------------------------------------------------------------- /desktop/conf.dist/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/conf.dist/log4j.properties -------------------------------------------------------------------------------- /desktop/conf/dev_log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/conf/dev_log.conf -------------------------------------------------------------------------------- /desktop/conf/gunicorn_log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/conf/gunicorn_log.conf -------------------------------------------------------------------------------- /desktop/conf/log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/conf/log.conf -------------------------------------------------------------------------------- /desktop/core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/Makefile -------------------------------------------------------------------------------- /desktop/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/__init__.py -------------------------------------------------------------------------------- /desktop/core/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/babel.cfg -------------------------------------------------------------------------------- /desktop/core/base_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/base_requirements.txt -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/boto/roboto/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/boto/vendored/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/devpay/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/fps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/integration/cloudtrail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/integration/datapipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/integration/directconnect/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/integration/dynamodb2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/integration/ec2/vpc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/integration/elasticache/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/integration/elastictranscoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/integration/gs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/integration/kinesis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/integration/logs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/integration/mws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/integration/opsworks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/integration/redshift/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/integration/ses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/integration/storage_uri/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/integration/support/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/integration/swf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/mturk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/beanstalk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/cloudformation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/cloudfront/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/cloudsearch/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/cloudsearchdomain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/cloudtrail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/directconnect/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/dynamodb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/dynamodb2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/ec2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/ec2/autoscale/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/ec2/cloudwatch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/ec2/elb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/ec2containerservice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/ecs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/elasticache/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/glacier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/iam/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/kinesis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/logs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/manage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/mturk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/mws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/provider/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/pyami/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/rds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/rds2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/route53/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/s3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/ses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/sns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/sqs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/sts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/swf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/boto-2.49.0/tests/unit/vpc/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Test package for VPC 3 | """ 4 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/django-axes-5.13.0/axes/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/django-axes-5.13.0/axes/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/django-axes-5.13.0/axes/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/django-axes-5.13.0/axes/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/django-axes-5.13.0/docs/10_changelog.rst: -------------------------------------------------------------------------------- 1 | .. changelog: 2 | 3 | .. include:: ../CHANGES.rst 4 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/django-axes-5.13.0/requirements-qa.txt: -------------------------------------------------------------------------------- 1 | black==20.8b1 2 | mypy==0.800 3 | prospector==1.3.1 4 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/django-axes-5.13.0/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/django-axes-5.13.0/tests/urls_empty.py: -------------------------------------------------------------------------------- 1 | urlpatterns: list = [] 2 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/django-babel/django_babel/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/django-babel/django_babel/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/django-babel/setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/django-babel/tests/babel.cfg: -------------------------------------------------------------------------------- 1 | [django: **/templates/**.*] 2 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/django-babel/tests/testproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/django-babel/tests/testproject/locale/en/LC_MESSAGES/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/pysaml2-7.3.1/src/saml2/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/pysaml2-7.3.1/src/saml2/data/schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/pysaml2-7.3.1/src/saml2/data/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/pysaml2-7.3.1/src/saml2/s2repoze/__init__.py: -------------------------------------------------------------------------------- 1 | # Created by Roland Hedberg 2 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/pysaml2-7.3.1/src/saml2/s2repoze/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/pysaml2-7.3.1/src/saml2/schema/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = "rolandh" 2 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/pysaml2-7.3.1/src/saml2/ws/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = "roland" 2 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/pysaml2-7.3.1/src/saml2/xml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/ext-py3/pysaml2-7.3.1/src/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../VERSION -------------------------------------------------------------------------------- /desktop/core/regenerate_thrift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/regenerate_thrift.sh -------------------------------------------------------------------------------- /desktop/core/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/setup.py -------------------------------------------------------------------------------- /desktop/core/src/desktop/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/src/desktop/admin.py -------------------------------------------------------------------------------- /desktop/core/src/desktop/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/src/desktop/api.py -------------------------------------------------------------------------------- /desktop/core/src/desktop/api2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/src/desktop/api2.py -------------------------------------------------------------------------------- /desktop/core/src/desktop/app_template/src/app_name/static/app_name/js/app_name.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/src/desktop/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/src/desktop/asgi.py -------------------------------------------------------------------------------- /desktop/core/src/desktop/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/src/desktop/celery.py -------------------------------------------------------------------------------- /desktop/core/src/desktop/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/src/desktop/conf.py -------------------------------------------------------------------------------- /desktop/core/src/desktop/js/ext/ace/mode-text.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /desktop/core/src/desktop/js/hue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/src/desktop/js/hue.js -------------------------------------------------------------------------------- /desktop/core/src/desktop/lib/gen-py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/src/desktop/log/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/src/desktop/log/api.py -------------------------------------------------------------------------------- /desktop/core/src/desktop/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/src/desktop/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/src/desktop/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/src/desktop/metrics.py -------------------------------------------------------------------------------- /desktop/core/src/desktop/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/src/desktop/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/src/desktop/models.py -------------------------------------------------------------------------------- /desktop/core/src/desktop/old_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/src/desktop/org_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/src/desktop/redaction/test_data/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/core/src/desktop/redaction/test_data/non-json.json: -------------------------------------------------------------------------------- 1 | # This file is not JSON. 2 | -------------------------------------------------------------------------------- /desktop/core/src/desktop/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/src/desktop/routing.py -------------------------------------------------------------------------------- /desktop/core/src/desktop/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/src/desktop/tests.py -------------------------------------------------------------------------------- /desktop/core/src/desktop/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/src/desktop/urls.py -------------------------------------------------------------------------------- /desktop/core/src/desktop/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/src/desktop/views.py -------------------------------------------------------------------------------- /desktop/core/src/desktop/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/src/desktop/wsgi.py -------------------------------------------------------------------------------- /desktop/core/test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/core/test_requirements.txt -------------------------------------------------------------------------------- /desktop/devtools.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/devtools.mk -------------------------------------------------------------------------------- /desktop/libs/aws/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/aws/Makefile -------------------------------------------------------------------------------- /desktop/libs/aws/babel.cfg: -------------------------------------------------------------------------------- 1 | [python: src/aws/**.py] -------------------------------------------------------------------------------- /desktop/libs/aws/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../../VERSION -------------------------------------------------------------------------------- /desktop/libs/aws/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/aws/setup.py -------------------------------------------------------------------------------- /desktop/libs/aws/src/aws/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/aws/src/aws/client.py -------------------------------------------------------------------------------- /desktop/libs/aws/src/aws/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/aws/src/aws/conf.py -------------------------------------------------------------------------------- /desktop/libs/aws/src/aws/s3/s3fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/aws/src/aws/s3/s3fs.py -------------------------------------------------------------------------------- /desktop/libs/aws/src/aws/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/aws/src/aws/tests.py -------------------------------------------------------------------------------- /desktop/libs/azure/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/azure/Makefile -------------------------------------------------------------------------------- /desktop/libs/azure/babel.cfg: -------------------------------------------------------------------------------- 1 | [python: src/azure/**.py] -------------------------------------------------------------------------------- /desktop/libs/azure/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../../VERSION -------------------------------------------------------------------------------- /desktop/libs/azure/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/azure/setup.py -------------------------------------------------------------------------------- /desktop/libs/dashboard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/dashboard/Makefile -------------------------------------------------------------------------------- /desktop/libs/dashboard/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/dashboard/babel.cfg -------------------------------------------------------------------------------- /desktop/libs/dashboard/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../../VERSION -------------------------------------------------------------------------------- /desktop/libs/dashboard/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/dashboard/setup.py -------------------------------------------------------------------------------- /desktop/libs/hadoop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/hadoop/Makefile -------------------------------------------------------------------------------- /desktop/libs/hadoop/babel.cfg: -------------------------------------------------------------------------------- 1 | [python: src/hadoop/**.py] 2 | -------------------------------------------------------------------------------- /desktop/libs/hadoop/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../../VERSION -------------------------------------------------------------------------------- /desktop/libs/hadoop/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/hadoop/setup.py -------------------------------------------------------------------------------- /desktop/libs/indexer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/indexer/Makefile -------------------------------------------------------------------------------- /desktop/libs/indexer/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/indexer/babel.cfg -------------------------------------------------------------------------------- /desktop/libs/indexer/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../../VERSION -------------------------------------------------------------------------------- /desktop/libs/indexer/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/indexer/setup.py -------------------------------------------------------------------------------- /desktop/libs/indexer/src/data/morphline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/libs/indexer/src/data/solrconfigs/solrcloud/conf/spellings.txt: -------------------------------------------------------------------------------- 1 | pizza 2 | history 3 | -------------------------------------------------------------------------------- /desktop/libs/indexer/src/indexer/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/libs/indexer/src/indexer/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/libs/kafka/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/kafka/Makefile -------------------------------------------------------------------------------- /desktop/libs/kafka/babel.cfg: -------------------------------------------------------------------------------- 1 | [python: src/kafka/**.py] 2 | -------------------------------------------------------------------------------- /desktop/libs/kafka/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../../VERSION -------------------------------------------------------------------------------- /desktop/libs/kafka/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/kafka/setup.py -------------------------------------------------------------------------------- /desktop/libs/libanalyze/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/libanalyze/Makefile -------------------------------------------------------------------------------- /desktop/libs/libanalyze/babel.cfg: -------------------------------------------------------------------------------- 1 | [python: src/libanalyze/**.py] -------------------------------------------------------------------------------- /desktop/libs/libanalyze/gen-py/Metrics/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /desktop/libs/libanalyze/gen-py/RuntimeProfile/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /desktop/libs/libanalyze/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../../VERSION -------------------------------------------------------------------------------- /desktop/libs/libanalyze/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/libanalyze/setup.py -------------------------------------------------------------------------------- /desktop/libs/liboauth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/liboauth/Makefile -------------------------------------------------------------------------------- /desktop/libs/liboauth/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/liboauth/babel.cfg -------------------------------------------------------------------------------- /desktop/libs/liboauth/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../../VERSION -------------------------------------------------------------------------------- /desktop/libs/liboauth/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/liboauth/setup.py -------------------------------------------------------------------------------- /desktop/libs/liboozie/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/liboozie/Makefile -------------------------------------------------------------------------------- /desktop/libs/liboozie/babel.cfg: -------------------------------------------------------------------------------- 1 | [python: src/liboozie/**.py] 2 | -------------------------------------------------------------------------------- /desktop/libs/liboozie/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../../VERSION -------------------------------------------------------------------------------- /desktop/libs/liboozie/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/liboozie/setup.py -------------------------------------------------------------------------------- /desktop/libs/librdbms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/librdbms/Makefile -------------------------------------------------------------------------------- /desktop/libs/librdbms/babel.cfg: -------------------------------------------------------------------------------- 1 | [python: src/librdbms/**.py] 2 | -------------------------------------------------------------------------------- /desktop/libs/librdbms/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../../VERSION -------------------------------------------------------------------------------- /desktop/libs/librdbms/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/librdbms/java/pom.xml -------------------------------------------------------------------------------- /desktop/libs/librdbms/java/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/librdbms/java/query.py -------------------------------------------------------------------------------- /desktop/libs/librdbms/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/librdbms/setup.py -------------------------------------------------------------------------------- /desktop/libs/librdbms/src/librdbms/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/libs/libsaml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/libsaml/Makefile -------------------------------------------------------------------------------- /desktop/libs/libsaml/babel.cfg: -------------------------------------------------------------------------------- 1 | [python: src/libsaml/**.py] 2 | -------------------------------------------------------------------------------- /desktop/libs/libsaml/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../../VERSION -------------------------------------------------------------------------------- /desktop/libs/libsaml/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/libsaml/setup.py -------------------------------------------------------------------------------- /desktop/libs/libsentry/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/libsentry/Makefile -------------------------------------------------------------------------------- /desktop/libs/libsentry/babel.cfg: -------------------------------------------------------------------------------- 1 | [python: src/libsentry/**.py] 2 | -------------------------------------------------------------------------------- /desktop/libs/libsentry/gen-py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/libs/libsentry/gen-py/sentry_common_service/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ttypes', 'constants'] 2 | -------------------------------------------------------------------------------- /desktop/libs/libsentry/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../../VERSION -------------------------------------------------------------------------------- /desktop/libs/libsentry/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/libsentry/setup.py -------------------------------------------------------------------------------- /desktop/libs/libsolr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/libsolr/Makefile -------------------------------------------------------------------------------- /desktop/libs/libsolr/babel.cfg: -------------------------------------------------------------------------------- 1 | [python: src/libsolr/**.py] 2 | -------------------------------------------------------------------------------- /desktop/libs/libsolr/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../../VERSION -------------------------------------------------------------------------------- /desktop/libs/libsolr/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/libsolr/setup.py -------------------------------------------------------------------------------- /desktop/libs/libzookeeper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/libzookeeper/Makefile -------------------------------------------------------------------------------- /desktop/libs/libzookeeper/babel.cfg: -------------------------------------------------------------------------------- 1 | [python: src/libzookeeper/**.py] 2 | -------------------------------------------------------------------------------- /desktop/libs/libzookeeper/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../../VERSION -------------------------------------------------------------------------------- /desktop/libs/libzookeeper/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/libzookeeper/setup.py -------------------------------------------------------------------------------- /desktop/libs/metadata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/metadata/Makefile -------------------------------------------------------------------------------- /desktop/libs/metadata/babel.cfg: -------------------------------------------------------------------------------- 1 | [python: src/metadata/**.py] 2 | -------------------------------------------------------------------------------- /desktop/libs/metadata/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../../VERSION -------------------------------------------------------------------------------- /desktop/libs/metadata/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/metadata/setup.py -------------------------------------------------------------------------------- /desktop/libs/notebook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/notebook/Makefile -------------------------------------------------------------------------------- /desktop/libs/notebook/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/notebook/babel.cfg -------------------------------------------------------------------------------- /desktop/libs/notebook/hueversion.py: -------------------------------------------------------------------------------- 1 | ../../../VERSION -------------------------------------------------------------------------------- /desktop/libs/notebook/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/desktop/libs/notebook/setup.py -------------------------------------------------------------------------------- /desktop/libs/notebook/src/notebook/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/libs/notebook/src/notebook/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/libs/notebook/src/notebook/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop/libs/notebook/src/notebook/old_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/dist/README -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/ROADMAP.md -------------------------------------------------------------------------------- /docs/css/bootplus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/css/bootplus.css -------------------------------------------------------------------------------- /docs/css/docbook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/css/docbook.css -------------------------------------------------------------------------------- /docs/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/css/font-awesome.min.css -------------------------------------------------------------------------------- /docs/designs/apache_flink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/designs/apache_flink.md -------------------------------------------------------------------------------- /docs/designs/apache_phoenix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/designs/apache_phoenix.md -------------------------------------------------------------------------------- /docs/designs/authentication/saml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/designs/authentication/saml.md -------------------------------------------------------------------------------- /docs/designs/ci-cd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/designs/ci-cd.md -------------------------------------------------------------------------------- /docs/designs/connectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/designs/connectors.md -------------------------------------------------------------------------------- /docs/designs/editor3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/designs/editor3.md -------------------------------------------------------------------------------- /docs/designs/hue5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/designs/hue5.md -------------------------------------------------------------------------------- /docs/designs/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/designs/metrics.md -------------------------------------------------------------------------------- /docs/designs/organizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/designs/organizations.md -------------------------------------------------------------------------------- /docs/designs/scheduling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/designs/scheduling.md -------------------------------------------------------------------------------- /docs/designs/sharing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/designs/sharing.md -------------------------------------------------------------------------------- /docs/designs/spark_sql_livy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/designs/spark_sql_livy.md -------------------------------------------------------------------------------- /docs/designs/sql/hiveserver-ha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/designs/sql/hiveserver-ha.md -------------------------------------------------------------------------------- /docs/designs/sql_alchemy.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/designs/tracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/designs/tracing.md -------------------------------------------------------------------------------- /docs/docs-site/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | #NPM 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /docs/docs-site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/docs-site/README.md -------------------------------------------------------------------------------- /docs/docs-site/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/docs-site/config.toml -------------------------------------------------------------------------------- /docs/docs-site/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/docs-site/content/_index.md -------------------------------------------------------------------------------- /docs/docs-site/layouts/partials/menu-footer.html: -------------------------------------------------------------------------------- 1 |

2 | -------------------------------------------------------------------------------- /docs/docs-site/layouts/shortcodes/rawhtml.html: -------------------------------------------------------------------------------- 1 | 2 | {{.Inner}} 3 | -------------------------------------------------------------------------------- /docs/docs-site/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/docs-site/package-lock.json -------------------------------------------------------------------------------- /docs/docs-site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/docs-site/package.json -------------------------------------------------------------------------------- /docs/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/gethue/.gitignore: -------------------------------------------------------------------------------- 1 | public/ 2 | -------------------------------------------------------------------------------- /docs/gethue/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/gethue/archetypes/default.md -------------------------------------------------------------------------------- /docs/gethue/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/gethue/config.toml -------------------------------------------------------------------------------- /docs/gethue/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/gethue/static/css/custom.css -------------------------------------------------------------------------------- /docs/gethue/static/css/socicon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/gethue/static/css/socicon.css -------------------------------------------------------------------------------- /docs/gethue/static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/gethue/static/css/theme.css -------------------------------------------------------------------------------- /docs/gethue/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/gethue/static/favicon.ico -------------------------------------------------------------------------------- /docs/gethue/static/img/browsers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/gethue/static/img/browsers.png -------------------------------------------------------------------------------- /docs/gethue/static/img/flags/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/gethue/static/img/flags/en.png -------------------------------------------------------------------------------- /docs/gethue/static/img/flags/en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/gethue/static/img/flags/en.svg -------------------------------------------------------------------------------- /docs/gethue/static/img/flags/fr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/gethue/static/img/flags/fr.svg -------------------------------------------------------------------------------- /docs/gethue/static/img/flags/it.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/gethue/static/img/flags/it.svg -------------------------------------------------------------------------------- /docs/gethue/static/img/flags/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/gethue/static/img/flags/jp.png -------------------------------------------------------------------------------- /docs/gethue/static/img/flags/jp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/gethue/static/img/flags/jp.svg -------------------------------------------------------------------------------- /docs/gethue/static/img/flags/se.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/gethue/static/img/flags/se.svg -------------------------------------------------------------------------------- /docs/gethue/static/img/hue-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/gethue/static/img/hue-logo.svg -------------------------------------------------------------------------------- /docs/gethue/static/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/gethue/static/js/scripts.js -------------------------------------------------------------------------------- /docs/gethue/static/js/typed.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/gethue/static/js/typed.min.js -------------------------------------------------------------------------------- /docs/gethue/themes/stack-hue-theme/layouts/partials/article.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/gethue/themes/stack-hue-theme/layouts/shortcodes/rawhtml.html: -------------------------------------------------------------------------------- 1 | 2 | {{.Inner}} 3 | -------------------------------------------------------------------------------- /docs/html.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/html.dsl -------------------------------------------------------------------------------- /docs/images/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/README -------------------------------------------------------------------------------- /docs/images/callouts/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/callouts/1.png -------------------------------------------------------------------------------- /docs/images/callouts/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/callouts/10.png -------------------------------------------------------------------------------- /docs/images/callouts/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/callouts/11.png -------------------------------------------------------------------------------- /docs/images/callouts/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/callouts/12.png -------------------------------------------------------------------------------- /docs/images/callouts/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/callouts/13.png -------------------------------------------------------------------------------- /docs/images/callouts/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/callouts/14.png -------------------------------------------------------------------------------- /docs/images/callouts/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/callouts/15.png -------------------------------------------------------------------------------- /docs/images/callouts/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/callouts/2.png -------------------------------------------------------------------------------- /docs/images/callouts/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/callouts/3.png -------------------------------------------------------------------------------- /docs/images/callouts/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/callouts/4.png -------------------------------------------------------------------------------- /docs/images/callouts/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/callouts/5.png -------------------------------------------------------------------------------- /docs/images/callouts/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/callouts/6.png -------------------------------------------------------------------------------- /docs/images/callouts/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/callouts/7.png -------------------------------------------------------------------------------- /docs/images/callouts/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/callouts/8.png -------------------------------------------------------------------------------- /docs/images/callouts/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/callouts/9.png -------------------------------------------------------------------------------- /docs/images/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/caution.png -------------------------------------------------------------------------------- /docs/images/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/dashboard.png -------------------------------------------------------------------------------- /docs/images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/example.png -------------------------------------------------------------------------------- /docs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/favicon.ico -------------------------------------------------------------------------------- /docs/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/home.png -------------------------------------------------------------------------------- /docs/images/hue-screens-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/hue-screens-demo.gif -------------------------------------------------------------------------------- /docs/images/hue_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/hue_logo.png -------------------------------------------------------------------------------- /docs/images/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/important.png -------------------------------------------------------------------------------- /docs/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/next.png -------------------------------------------------------------------------------- /docs/images/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/note.png -------------------------------------------------------------------------------- /docs/images/post-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/post-login.png -------------------------------------------------------------------------------- /docs/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/prev.png -------------------------------------------------------------------------------- /docs/images/sql-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/sql-editor.png -------------------------------------------------------------------------------- /docs/images/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/tip.png -------------------------------------------------------------------------------- /docs/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/up.png -------------------------------------------------------------------------------- /docs/images/val.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/val.png -------------------------------------------------------------------------------- /docs/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/images/warning.png -------------------------------------------------------------------------------- /docs/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/index.txt -------------------------------------------------------------------------------- /docs/js/hue-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/js/hue-docs.js -------------------------------------------------------------------------------- /docs/js/jquery.highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/js/jquery.highlight.js -------------------------------------------------------------------------------- /docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/js/jquery.min.js -------------------------------------------------------------------------------- /docs/js/jquery.treed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/js/jquery.treed.js -------------------------------------------------------------------------------- /docs/sdk/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/sdk/architecture.png -------------------------------------------------------------------------------- /docs/sdk/calculator_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/sdk/calculator_error.png -------------------------------------------------------------------------------- /docs/sdk/calculator_werkzeug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/sdk/calculator_werkzeug.png -------------------------------------------------------------------------------- /docs/sdk/calculator_working.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/sdk/calculator_working.jpg -------------------------------------------------------------------------------- /docs/sdk/django_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/sdk/django_flow.png -------------------------------------------------------------------------------- /docs/sdk/django_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/sdk/django_request.png -------------------------------------------------------------------------------- /docs/sdk/from30kfeet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/sdk/from30kfeet.png -------------------------------------------------------------------------------- /docs/sdk/interactingwithhadoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/sdk/interactingwithhadoop.png -------------------------------------------------------------------------------- /docs/sdk/sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/sdk/sdk.md -------------------------------------------------------------------------------- /docs/sdk/webbackend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/sdk/webbackend.png -------------------------------------------------------------------------------- /docs/user-guide/images/action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/images/action.png -------------------------------------------------------------------------------- /docs/user-guide/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/images/add.png -------------------------------------------------------------------------------- /docs/user-guide/images/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/images/browse.png -------------------------------------------------------------------------------- /docs/user-guide/images/clear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/images/clear.jpg -------------------------------------------------------------------------------- /docs/user-guide/images/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/images/clear.png -------------------------------------------------------------------------------- /docs/user-guide/images/convert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/images/convert.png -------------------------------------------------------------------------------- /docs/user-guide/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/images/copy.png -------------------------------------------------------------------------------- /docs/user-guide/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/images/edit.png -------------------------------------------------------------------------------- /docs/user-guide/images/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/images/eye.png -------------------------------------------------------------------------------- /docs/user-guide/images/eyeglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/images/eyeglass.png -------------------------------------------------------------------------------- /docs/user-guide/images/fbtrash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/images/fbtrash.png -------------------------------------------------------------------------------- /docs/user-guide/images/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/images/gear.png -------------------------------------------------------------------------------- /docs/user-guide/images/huearch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/images/huearch.jpg -------------------------------------------------------------------------------- /docs/user-guide/images/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/images/import.png -------------------------------------------------------------------------------- /docs/user-guide/images/info.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/images/info.jpg -------------------------------------------------------------------------------- /docs/user-guide/images/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/images/log.png -------------------------------------------------------------------------------- /docs/user-guide/images/note.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/images/note.jpg -------------------------------------------------------------------------------- /docs/user-guide/images/tip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/images/tip.jpg -------------------------------------------------------------------------------- /docs/user-guide/images/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/images/trash.png -------------------------------------------------------------------------------- /docs/user-guide/images/warning.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/images/warning.jpg -------------------------------------------------------------------------------- /docs/user-guide/images/workflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/images/workflow.jpg -------------------------------------------------------------------------------- /docs/user-guide/user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/docs/user-guide/user-guide.md -------------------------------------------------------------------------------- /ext/thirdparty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/ext/thirdparty/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/jest.config.js -------------------------------------------------------------------------------- /maven/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/maven/pom.xml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup-hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/setup-hooks.sh -------------------------------------------------------------------------------- /tools/ace-editor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/.gitignore -------------------------------------------------------------------------------- /tools/ace-editor/CNAME: -------------------------------------------------------------------------------- 1 | ace.c9.io 2 | -------------------------------------------------------------------------------- /tools/ace-editor/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/CONTRIBUTING.md -------------------------------------------------------------------------------- /tools/ace-editor/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/ChangeLog.txt -------------------------------------------------------------------------------- /tools/ace-editor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/LICENSE -------------------------------------------------------------------------------- /tools/ace-editor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/Makefile -------------------------------------------------------------------------------- /tools/ace-editor/Makefile.dryice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/Makefile.dryice.js -------------------------------------------------------------------------------- /tools/ace-editor/README-HUE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/README-HUE -------------------------------------------------------------------------------- /tools/ace-editor/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/Readme.md -------------------------------------------------------------------------------- /tools/ace-editor/api/ace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/api/ace.html -------------------------------------------------------------------------------- /tools/ace-editor/api/anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/api/anchor.html -------------------------------------------------------------------------------- /tools/ace-editor/api/document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/api/document.html -------------------------------------------------------------------------------- /tools/ace-editor/api/editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/api/editor.html -------------------------------------------------------------------------------- /tools/ace-editor/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/api/index.html -------------------------------------------------------------------------------- /tools/ace-editor/api/range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/api/range.html -------------------------------------------------------------------------------- /tools/ace-editor/api/scrollbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/api/scrollbar.html -------------------------------------------------------------------------------- /tools/ace-editor/api/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/api/search.html -------------------------------------------------------------------------------- /tools/ace-editor/api/selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/api/selection.html -------------------------------------------------------------------------------- /tools/ace-editor/api/split.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/api/split.html -------------------------------------------------------------------------------- /tools/ace-editor/api/tokenizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/api/tokenizer.html -------------------------------------------------------------------------------- /tools/ace-editor/demo/emmet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/demo/emmet.html -------------------------------------------------------------------------------- /tools/ace-editor/demo/ie7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/demo/ie7.html -------------------------------------------------------------------------------- /tools/ace-editor/demo/kitchen-sink/docs/cobol.CBL: -------------------------------------------------------------------------------- 1 | TODO -------------------------------------------------------------------------------- /tools/ace-editor/demo/kitchen-sink/docs/hive.hql: -------------------------------------------------------------------------------- 1 | TODO add a nice demo! 2 | Try to keep it short! -------------------------------------------------------------------------------- /tools/ace-editor/demo/kitchen-sink/docs/jsoniq.jq: -------------------------------------------------------------------------------- 1 | TODO -------------------------------------------------------------------------------- /tools/ace-editor/demo/kitchen-sink/docs/mysql.mysql: -------------------------------------------------------------------------------- 1 | TODO -------------------------------------------------------------------------------- /tools/ace-editor/demo/kitchen-sink/docs/pig_latin.pig: -------------------------------------------------------------------------------- 1 | TODO add a nice demo! 2 | Try to keep it short! -------------------------------------------------------------------------------- /tools/ace-editor/demo/modelist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/demo/modelist.html -------------------------------------------------------------------------------- /tools/ace-editor/demo/r.js/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/demo/r.js/build.js -------------------------------------------------------------------------------- /tools/ace-editor/demo/svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/demo/svg.svg -------------------------------------------------------------------------------- /tools/ace-editor/demo/xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/demo/xml.xml -------------------------------------------------------------------------------- /tools/ace-editor/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/doc/README.md -------------------------------------------------------------------------------- /tools/ace-editor/doc/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/doc/build.js -------------------------------------------------------------------------------- /tools/ace-editor/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/doc/index.md -------------------------------------------------------------------------------- /tools/ace-editor/doc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/doc/package.json -------------------------------------------------------------------------------- /tools/ace-editor/doc/site/js/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/doc/site/js/ga.js -------------------------------------------------------------------------------- /tools/ace-editor/doc/site/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/doc/site/style.css -------------------------------------------------------------------------------- /tools/ace-editor/hue-ace-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/hue-ace-dev.sh -------------------------------------------------------------------------------- /tools/ace-editor/hue-ace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/hue-ace.sh -------------------------------------------------------------------------------- /tools/ace-editor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/index.html -------------------------------------------------------------------------------- /tools/ace-editor/kitchen-sink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/kitchen-sink.html -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/lib/ace/ace.js -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/lib/ace/anchor.js -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/lib/ace/config.js -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/lib/ace/editor.js -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/lib/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/lib/ace/lib/dom.js -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/lib/net.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/lib/ace/lib/net.js -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/lib/oop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/lib/ace/lib/oop.js -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/mode/_test/text_livescript.txt: -------------------------------------------------------------------------------- 1 | # comment 2 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/mode/_test/tokens_cobol.json: -------------------------------------------------------------------------------- 1 | [[ 2 | "start", 3 | ["identifier","TODO"] 4 | ]] -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/mode/_test/tokens_mysql.json: -------------------------------------------------------------------------------- 1 | [[ 2 | "start", 3 | ["identifier","TODO"] 4 | ]] -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/mode/d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/lib/ace/mode/d.js -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/mode/io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/lib/ace/mode/io.js -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/mode/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/lib/ace/mode/r.js -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/mode/sh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/lib/ace/mode/sh.js -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/occur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/lib/ace/occur.js -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/lib/ace/range.js -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/lib/ace/search.js -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/_all_modes.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/abap.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/ada.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/all_modes.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/apache_conf.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/applescript.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/asciidoc.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/assembly_x86.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/autohotkey.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/batchfile.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/bigquery.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/c9search.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/cirru.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/cobol.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/coldfusion.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/csharp.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/curly.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/d.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/dasksql.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/dockerfile.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/dot.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/druid.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/eiffel.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/ejs.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/elasticsearch.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/elixir.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/elm.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/flink.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/forth.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/ftl.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/gcode.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/gherkin.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/gitignore.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/glsl.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/golang.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/groovy.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/handlebars.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/haxe.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/hplsql.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/html_ruby.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/ini.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/io.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/jack.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/jade.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/json.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/jsx.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/julia.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/ksql.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/latex.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/lean.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/less.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/liquid.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/lisp.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/livescript.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/logiql.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/luapage.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/lucene.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/mask.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/matlab.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/mel.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/mushcode.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/mushcode_high_rules.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/mysql.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/nix.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/objectivec.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/ocaml.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/pascal.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/pgsql.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/phoenix.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/plain_text.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/powershell.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/praat.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/presto.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/prolog.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/properties.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/protobuf.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/rdoc.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/rhtml.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/rust.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/sass.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/scad.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/scala.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/scheme.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/scss.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/sjs.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/smarty.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/solr.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/soy_template.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/space.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/stylus.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/svg.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/text.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/tmsnippet.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/toml.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/twig.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/typescript.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/vala.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/vbscript.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/verilog.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/vhdl.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/xml.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/snippets/yaml.snippets: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/lib/ace/split.js -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/lib/ace/tooltip.js -------------------------------------------------------------------------------- /tools/ace-editor/lib/ace/unicode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/lib/ace/unicode.js -------------------------------------------------------------------------------- /tools/ace-editor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/package.json -------------------------------------------------------------------------------- /tools/ace-editor/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/static.js -------------------------------------------------------------------------------- /tools/ace-editor/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/static.py -------------------------------------------------------------------------------- /tools/ace-editor/tool/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/tool/Readme.md -------------------------------------------------------------------------------- /tools/ace-editor/tool/add_mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/tool/add_mode.js -------------------------------------------------------------------------------- /tools/ace-editor/tool/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/tool/lib.js -------------------------------------------------------------------------------- /tools/ace-editor/tool/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/tool/package.json -------------------------------------------------------------------------------- /tools/ace-editor/tool/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/tool/release.sh -------------------------------------------------------------------------------- /tools/ace-editor/tool/tmlanguage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/tool/tmlanguage.js -------------------------------------------------------------------------------- /tools/ace-editor/tool/tmsnippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/tool/tmsnippets.js -------------------------------------------------------------------------------- /tools/ace-editor/tool/tmtheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/tool/tmtheme.js -------------------------------------------------------------------------------- /tools/ace-editor/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ace-editor/version.js -------------------------------------------------------------------------------- /tools/app_reg/app_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/app_reg/app_reg.py -------------------------------------------------------------------------------- /tools/app_reg/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/app_reg/build.py -------------------------------------------------------------------------------- /tools/app_reg/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/app_reg/common.py -------------------------------------------------------------------------------- /tools/app_reg/pth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/app_reg/pth.py -------------------------------------------------------------------------------- /tools/app_reg/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/app_reg/registry.py -------------------------------------------------------------------------------- /tools/ci/check_for_js_licenses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ci/check_for_js_licenses.js -------------------------------------------------------------------------------- /tools/cloudera/build_hue_common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/cloudera/build_hue_common.sh -------------------------------------------------------------------------------- /tools/container/base/hue/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/container/base/hue/Dockerfile -------------------------------------------------------------------------------- /tools/container/base/hue/healthz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/container/base/hue/healthz.sh -------------------------------------------------------------------------------- /tools/container/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/container/build.sh -------------------------------------------------------------------------------- /tools/container/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/container/common.sh -------------------------------------------------------------------------------- /tools/container/hue/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/container/hue/Dockerfile -------------------------------------------------------------------------------- /tools/container/hue/hue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/container/hue/hue.sh -------------------------------------------------------------------------------- /tools/container/hue/hueconf/hue.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/container/hue/hueconf/hue.ini -------------------------------------------------------------------------------- /tools/container/huelb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/container/huelb/Dockerfile -------------------------------------------------------------------------------- /tools/container/huelb/hue.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/docker/README.md -------------------------------------------------------------------------------- /tools/docker/hue/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/docker/hue/Dockerfile -------------------------------------------------------------------------------- /tools/docker/hue/Dockerfile.py2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/docker/hue/Dockerfile.py2 -------------------------------------------------------------------------------- /tools/docker/hue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/docker/hue/README.md -------------------------------------------------------------------------------- /tools/docker/hue/conf/log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/docker/hue/conf/log.conf -------------------------------------------------------------------------------- /tools/docker/hue/conf3/log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/docker/hue/conf3/log.conf -------------------------------------------------------------------------------- /tools/docker/hue/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/docker/hue/docker-compose.yml -------------------------------------------------------------------------------- /tools/docker/hue/init.sql: -------------------------------------------------------------------------------- 1 | CREATE DATABASE IF NOT EXISTS hue; 2 | -------------------------------------------------------------------------------- /tools/docker/hue/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/docker/hue/startup.sh -------------------------------------------------------------------------------- /tools/docker/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/docker/nginx/Dockerfile -------------------------------------------------------------------------------- /tools/docker/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/docker/nginx/README.md -------------------------------------------------------------------------------- /tools/docker/nginx/hue.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/docker/nginx/hue.conf -------------------------------------------------------------------------------- /tools/docker/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/docker/nginx/nginx.conf -------------------------------------------------------------------------------- /tools/docker/website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/docker/website/README.md -------------------------------------------------------------------------------- /tools/docker/website/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/docker/website/nginx.conf -------------------------------------------------------------------------------- /tools/examples/api/hue_dep/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .idea -------------------------------------------------------------------------------- /tools/examples/components/er-diagram-demo/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /tools/examples/components/sql-scratchpad/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tools/git-hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/git-hooks/pre-commit -------------------------------------------------------------------------------- /tools/git-hooks/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/git-hooks/pre-push -------------------------------------------------------------------------------- /tools/githooks/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/githooks/commit-msg -------------------------------------------------------------------------------- /tools/jenkins/build-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/jenkins/build-functions -------------------------------------------------------------------------------- /tools/jenkins/jenkins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/jenkins/jenkins.sh -------------------------------------------------------------------------------- /tools/jira/hueJira.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/jira/hueJira.js -------------------------------------------------------------------------------- /tools/jira/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/jira/package.json -------------------------------------------------------------------------------- /tools/jison/generateParsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/jison/generateParsers.js -------------------------------------------------------------------------------- /tools/jison/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/jison/package.json -------------------------------------------------------------------------------- /tools/jison/parserDefinitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/jison/parserDefinitions.js -------------------------------------------------------------------------------- /tools/jison/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/jison/utils.js -------------------------------------------------------------------------------- /tools/knox/hue/1.0.0/rewrite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/knox/hue/1.0.0/rewrite.xml -------------------------------------------------------------------------------- /tools/knox/hue/1.0.0/service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/knox/hue/1.0.0/service.xml -------------------------------------------------------------------------------- /tools/kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/kubernetes/README.md -------------------------------------------------------------------------------- /tools/kubernetes/helm/hue/.helmignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /tools/kubernetes/helm/hue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/kubernetes/helm/hue/README.md -------------------------------------------------------------------------------- /tools/kubernetes/helm/website/.helmignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /tools/load-balancer/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/load-balancer/LICENSE.txt -------------------------------------------------------------------------------- /tools/load-balancer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/load-balancer/README.md -------------------------------------------------------------------------------- /tools/load-balancer/bin/supervisord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/load-balancer/bin/supervisord -------------------------------------------------------------------------------- /tools/load-balancer/etc/hue-lb.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/load-balancer/etc/hue-lb.toml -------------------------------------------------------------------------------- /tools/load-balancer/etc/nginx-hue-server.conf.in: -------------------------------------------------------------------------------- 1 | server %(address)s max_fails=3 2 | -------------------------------------------------------------------------------- /tools/load-balancer/etc/nginx-hue.conf.in: -------------------------------------------------------------------------------- 1 | upstream hue { 2 | ip_hash; 3 | 4 | %(servers)s 5 | } 6 | -------------------------------------------------------------------------------- /tools/load-balancer/requirements.txt: -------------------------------------------------------------------------------- 1 | supervisor 2 | cm-api 3 | toml 4 | -------------------------------------------------------------------------------- /tools/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/nginx/README.md -------------------------------------------------------------------------------- /tools/nginx/configs/hue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/nginx/configs/hue -------------------------------------------------------------------------------- /tools/ops/bees_monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ops/bees_monitor.sh -------------------------------------------------------------------------------- /tools/ops/hbase_break_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ops/hbase_break_test.sh -------------------------------------------------------------------------------- /tools/ops/hue_beeswax_tester.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ops/hue_beeswax_tester.sh -------------------------------------------------------------------------------- /tools/ops/hue_file_tester.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ops/hue_file_tester.sh -------------------------------------------------------------------------------- /tools/ops/hue_history_cron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ops/hue_history_cron.sh -------------------------------------------------------------------------------- /tools/ops/hue_impala_post.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ops/hue_impala_post.sh -------------------------------------------------------------------------------- /tools/ops/hue_ldap_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ops/hue_ldap_test.sh -------------------------------------------------------------------------------- /tools/ops/hue_mem_cron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ops/hue_mem_cron.sh -------------------------------------------------------------------------------- /tools/ops/hue_mem_cron_cm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ops/hue_mem_cron_cm.sh -------------------------------------------------------------------------------- /tools/ops/sync_ldap_group.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ops/sync_ldap_group.sh -------------------------------------------------------------------------------- /tools/ops/sync_ldap_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/ops/sync_ldap_user.sh -------------------------------------------------------------------------------- /tools/rat/.rat-excludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/rat/.rat-excludes -------------------------------------------------------------------------------- /tools/rat/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/rat/check.sh -------------------------------------------------------------------------------- /tools/relocatable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/relocatable.py -------------------------------------------------------------------------------- /tools/relocatable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/relocatable.sh -------------------------------------------------------------------------------- /tools/scripts/hue-review: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/scripts/hue-review -------------------------------------------------------------------------------- /tools/scripts/hue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/scripts/hue.sh -------------------------------------------------------------------------------- /tools/slack/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/slack/manifest.yml -------------------------------------------------------------------------------- /tools/sql-docs/DocFragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/sql-docs/DocFragment.js -------------------------------------------------------------------------------- /tools/sql-docs/Topic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/sql-docs/Topic.js -------------------------------------------------------------------------------- /tools/sql-docs/ditamapParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/sql-docs/ditamapParser.js -------------------------------------------------------------------------------- /tools/sql-docs/docExtractor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/sql-docs/docExtractor.js -------------------------------------------------------------------------------- /tools/sql-docs/docXmlParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/sql-docs/docXmlParser.js -------------------------------------------------------------------------------- /tools/sql-docs/extractorUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/sql-docs/extractorUtils.js -------------------------------------------------------------------------------- /tools/sql-docs/hiveExtractor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/sql-docs/hiveExtractor.js -------------------------------------------------------------------------------- /tools/sql-docs/jsonHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/sql-docs/jsonHandler.js -------------------------------------------------------------------------------- /tools/sql-docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/sql-docs/package.json -------------------------------------------------------------------------------- /tools/sql-docs/topicLinker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/sql-docs/topicLinker.js -------------------------------------------------------------------------------- /tools/virtual-bootstrap/virtualenv_support/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/vue3-webcomponent-wrapper/.gitignore: -------------------------------------------------------------------------------- 1 | src/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /tools/wrk-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/wrk-scripts/README.md -------------------------------------------------------------------------------- /tools/wrk-scripts/lib/cookie.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/wrk-scripts/lib/cookie.lua -------------------------------------------------------------------------------- /tools/wrk-scripts/lib/copy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/wrk-scripts/lib/copy.lua -------------------------------------------------------------------------------- /tools/wrk-scripts/lib/hue.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/wrk-scripts/lib/hue.lua -------------------------------------------------------------------------------- /tools/wrk-scripts/stress-hue.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tools/wrk-scripts/stress-hue.lua -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.config.login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/webpack.config.login.js -------------------------------------------------------------------------------- /webpack.config.npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/webpack.config.npm.js -------------------------------------------------------------------------------- /webpack.config.workers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/hue/HEAD/webpack.config.workers.js --------------------------------------------------------------------------------