├── .codecov.yml ├── .dockerignore ├── .flaskenv ├── .fossa.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── sip.md ├── PULL_REQUEST_TEMPLATE.md ├── config.yml ├── issue_label_bot.yaml ├── move.yml ├── prlint.json ├── stale.yml └── workflows │ ├── bashlib.sh │ ├── caches.js │ ├── license-check.yml │ ├── prefer_typescript.yml │ ├── superset-e2e.yml │ ├── superset-frontend.yml │ ├── superset-python.yml │ └── superset-translations.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── .rat-excludes ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DISCLAIMER ├── Dockerfile ├── Dockerfile-dev ├── INSTALL.md ├── INTHEWILD.md ├── LICENSE.txt ├── MANIFEST.in ├── NOTICE ├── README.md ├── RELEASING ├── Dockerfile.from_local_tarball ├── Dockerfile.from_svn_tarball ├── Dockerfile.make_docs ├── Dockerfile.make_tarball ├── README.md ├── email_templates │ ├── announce.j2 │ ├── result_ipmc.j2 │ ├── result_pmc.j2 │ ├── vote_ipmc.j2 │ └── vote_pmc.j2 ├── from_tarball_entrypoint.sh ├── make_docs.sh ├── make_docs_entrypoint.sh ├── make_tarball.sh ├── make_tarball_entrypoint.sh ├── send_email.py ├── set_release_env.sh └── test_run_tarball.sh ├── UPDATING.md ├── docker-compose.prod.yml ├── docker-compose.yml ├── docker ├── .env ├── .env.prod ├── README.md ├── docker-entrypoint.sh ├── docker-init.sh ├── frontend-mem-nag.sh ├── pythonpath_dev │ ├── .gitignore │ ├── superset_config.py │ └── superset_config_local.example ├── requirements-extra.txt ├── simhei.ttf └── simsun.ttc ├── docs ├── Makefile ├── _static │ ├── docs.css │ └── images ├── admintutorial.rst ├── build.sh ├── conf.py ├── druid.rst ├── faq.rst ├── gallery.rst ├── import_export_datasources.rst ├── index.rst ├── installation.rst ├── issue_code_reference.rst ├── misc.rst ├── requirements.txt ├── security.rst ├── sqllab.rst ├── tutorials.rst ├── usertutorial.rst ├── videos.rst └── visualization.rst ├── helm └── superset │ ├── .gitignore │ ├── .helmignore │ ├── Chart.yaml │ ├── requirements.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── ingress.yaml │ ├── init-job.yaml │ ├── secret-env.yaml │ ├── secret-superset-config.yaml │ └── service.yaml │ └── values.yaml ├── pytest.ini ├── requirements-dev.txt ├── requirements.txt ├── scripts ├── check_license.sh ├── fossa.sh ├── gen_changelog.sh ├── generate_frontend_ts_tasklist.js ├── permissions_cleanup.py ├── pypi_push.sh ├── python_tests.sh ├── sign.sh └── tests │ ├── README.md │ └── run.sh ├── setup.cfg ├── setup.py ├── sources.list ├── superset-frontend ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── babel.config.js ├── branding │ ├── superset-logo-horiz-apache.png │ ├── superset-logo-horiz-apache.svg │ ├── superset-logo-horiz.png │ ├── superset-logo-horiz.svg │ ├── superset-logo-stacked-apache.png │ ├── superset-logo-stacked-apache.svg │ ├── superset-logo-stacked.png │ └── superset-logo-stacked.svg ├── cypress-base │ ├── .eslintrc │ ├── .gitignore │ ├── cypress.json │ ├── cypress │ │ ├── fixtures │ │ │ └── example.json │ │ ├── integration │ │ │ ├── dashboard │ │ │ │ ├── controls.test.js │ │ │ │ ├── dashboard.helper.js │ │ │ │ ├── edit_mode.test.js │ │ │ │ ├── fav_star.test.js │ │ │ │ ├── filter.test.ts │ │ │ │ ├── load.test.js │ │ │ │ ├── save.test.js │ │ │ │ ├── tabs.test.js │ │ │ │ └── url_params.test.js │ │ │ ├── explore │ │ │ │ ├── AdhocFilters.test.ts │ │ │ │ ├── AdhocMetrics.test.ts │ │ │ │ ├── advanced.test.ts │ │ │ │ ├── chart.test.js │ │ │ │ ├── control.test.ts │ │ │ │ ├── filter_box.test.js │ │ │ │ ├── link.test.js │ │ │ │ └── visualizations │ │ │ │ │ ├── area.test.js │ │ │ │ │ ├── big_number.test.js │ │ │ │ │ ├── big_number_total.test.js │ │ │ │ │ ├── box_plot.test.js │ │ │ │ │ ├── bubble.test.js │ │ │ │ │ ├── compare.test.js │ │ │ │ │ ├── dist_bar.test.js │ │ │ │ │ ├── dual_line.test.js │ │ │ │ │ ├── histogram.test.js │ │ │ │ │ ├── line.test.ts │ │ │ │ │ ├── pie.test.js │ │ │ │ │ ├── pivot_table.test.js │ │ │ │ │ ├── sankey.test.js │ │ │ │ │ ├── shared.helper.js │ │ │ │ │ ├── sunburst.test.js │ │ │ │ │ ├── table.test.ts │ │ │ │ │ ├── time_table.js │ │ │ │ │ ├── treemap.test.js │ │ │ │ │ └── world_map.test.js │ │ │ └── sqllab │ │ │ │ ├── query.test.js │ │ │ │ ├── sourcePanel.index.js │ │ │ │ ├── sqllab.helper.js │ │ │ │ └── tabs.test.js │ │ ├── plugins │ │ │ └── index.js │ │ ├── support │ │ │ ├── index.d.ts │ │ │ └── index.ts │ │ └── utils │ │ │ └── readResponseBlob.ts │ ├── package-lock.json │ ├── package.json │ └── tsconfig.json ├── cypress.json ├── cypress │ ├── .eslintrc │ ├── integration │ │ ├── dashboard │ │ │ ├── controls.js │ │ │ ├── dashboard.helper.js │ │ │ ├── edit_mode.js │ │ │ ├── fav_star.js │ │ │ ├── filter.js │ │ │ ├── index.test.js │ │ │ ├── load.js │ │ │ ├── save.js │ │ │ ├── tabs.js │ │ │ └── url_params.js │ │ ├── explore │ │ │ ├── chart.test.js │ │ │ ├── control.test.js │ │ │ ├── link.test.js │ │ │ └── visualizations │ │ │ │ ├── area.js │ │ │ │ ├── big_number.js │ │ │ │ ├── big_number_total.js │ │ │ │ ├── box_plot.js │ │ │ │ ├── bubble.js │ │ │ │ ├── compare.js │ │ │ │ ├── dist_bar.js │ │ │ │ ├── dual_line.js │ │ │ │ ├── filter_box.js │ │ │ │ ├── histogram.js │ │ │ │ ├── index.test.js │ │ │ │ ├── line.js │ │ │ │ ├── pie.js │ │ │ │ ├── pivot_table.js │ │ │ │ ├── sankey.js │ │ │ │ ├── shared.helper.js │ │ │ │ ├── sunburst.js │ │ │ │ ├── table.js │ │ │ │ ├── time_table.js │ │ │ │ ├── treemap.js │ │ │ │ └── world_map.js │ │ └── sqllab │ │ │ ├── index.test.js │ │ │ ├── query.js │ │ │ ├── sourcePanel.js │ │ │ ├── sqllab.helper.js │ │ │ └── tabs.js │ ├── plugins │ │ └── index.js │ ├── support │ │ ├── commands.js │ │ └── index.js │ └── utils │ │ └── readResponseBlob.js ├── cypress_build.sh ├── docs ├── fonts │ ├── FiraCode │ │ ├── specimen.less │ │ ├── woff │ │ │ ├── FiraCode-Bold.woff │ │ │ ├── FiraCode-Light.woff │ │ │ ├── FiraCode-Medium.woff │ │ │ ├── FiraCode-Regular.woff │ │ │ ├── FiraCode-Retina.woff │ │ │ └── FiraCode-VF.woff │ │ └── woff2 │ │ │ ├── FiraCode-Bold.woff2 │ │ │ ├── FiraCode-Light.woff2 │ │ │ ├── FiraCode-Medium.woff2 │ │ │ ├── FiraCode-Regular.woff2 │ │ │ ├── FiraCode-Retina.woff2 │ │ │ └── FiraCode-VF.woff2 │ └── InterUI │ │ ├── Inter-Black.woff │ │ ├── Inter-Black.woff2 │ │ ├── Inter-BlackItalic.woff │ │ ├── Inter-BlackItalic.woff2 │ │ ├── Inter-Bold.woff │ │ ├── Inter-Bold.woff2 │ │ ├── Inter-BoldItalic.woff │ │ ├── Inter-BoldItalic.woff2 │ │ ├── Inter-ExtraBold.woff │ │ ├── Inter-ExtraBold.woff2 │ │ ├── Inter-ExtraBoldItalic.woff │ │ ├── Inter-ExtraBoldItalic.woff2 │ │ ├── Inter-ExtraLight.woff │ │ ├── Inter-ExtraLight.woff2 │ │ ├── Inter-ExtraLightItalic.woff │ │ ├── Inter-ExtraLightItalic.woff2 │ │ ├── Inter-Italic.woff │ │ ├── Inter-Italic.woff2 │ │ ├── Inter-Light.woff │ │ ├── Inter-Light.woff2 │ │ ├── Inter-LightItalic.woff │ │ ├── Inter-LightItalic.woff2 │ │ ├── Inter-Medium.woff │ │ ├── Inter-Medium.woff2 │ │ ├── Inter-MediumItalic.woff │ │ ├── Inter-MediumItalic.woff2 │ │ ├── Inter-Regular.woff │ │ ├── Inter-Regular.woff2 │ │ ├── Inter-SemiBold.woff │ │ ├── Inter-SemiBold.woff2 │ │ ├── Inter-SemiBoldItalic.woff │ │ ├── Inter-SemiBoldItalic.woff2 │ │ ├── Inter-Thin.woff │ │ ├── Inter-Thin.woff2 │ │ ├── Inter-ThinItalic.woff │ │ ├── Inter-ThinItalic.woff2 │ │ ├── Inter-italic.var.woff2 │ │ ├── Inter-roman.var.woff2 │ │ └── Inter.var.woff2 ├── images │ ├── apache_feather.png │ ├── babies.png │ ├── bubble.png │ ├── cloud.png │ ├── create_role.png │ ├── dash.png │ ├── druid_agg.png │ ├── favicon.png │ ├── icons │ │ ├── cancel-x.svg │ │ ├── check.svg │ │ ├── checkbox-half.svg │ │ ├── checkbox-off.svg │ │ ├── checkbox-on.svg │ │ ├── circle-check-solid.svg │ │ ├── circle-check.svg │ │ ├── close.svg │ │ ├── compass.svg │ │ ├── dataset_physical.svg │ │ ├── dataset_virtual.svg │ │ ├── error.svg │ │ ├── pencil.svg │ │ ├── search.svg │ │ ├── share.svg │ │ ├── sort-asc.svg │ │ ├── sort-desc.svg │ │ ├── sort.svg │ │ ├── trash.svg │ │ └── warning.svg │ ├── loading.gif │ ├── noimg.png │ ├── s.png │ ├── screenshots │ │ ├── bank_dash.png │ │ ├── deckgl_dash.png │ │ ├── explore.png │ │ ├── sqllab.png │ │ └── visualizations.png │ ├── superset-logo-horiz.png │ ├── superset-logo@2x.png │ ├── superset-logo@2x1.png │ ├── superset.png │ ├── superset_screenshot.png │ ├── tutorial │ │ ├── add_db.png │ │ ├── tutorial_01_sources_database.png │ │ ├── tutorial_02_add_database.png │ │ ├── tutorial_03_database_name.png │ │ ├── tutorial_04_sqlalchemy_connection_string.png │ │ ├── tutorial_05_connection_popup.png │ │ ├── tutorial_06_list_of_tables.png │ │ ├── tutorial_07_save_button.png │ │ ├── tutorial_08_sources_tables.png │ │ ├── tutorial_09_add_new_table.png │ │ ├── tutorial_10_table_name.png │ │ ├── tutorial_11_choose_db.png │ │ ├── tutorial_12_table_creation_success_msg.png │ │ ├── tutorial_13_edit_table_config.png │ │ ├── tutorial_14_field_config.png │ │ ├── tutorial_15_click_table_name.png │ │ ├── tutorial_16_datasource_chart_type.png │ │ ├── tutorial_17_choose_time_range.png │ │ ├── tutorial_18_choose_metric.png │ │ ├── tutorial_19_click_query.png │ │ ├── tutorial_20_count_star_result.png │ │ ├── tutorial_21_group_by.png │ │ ├── tutorial_22_group_by_result.png │ │ ├── tutorial_23_group_by_more_dimensions.png │ │ ├── tutorial_24_max_metric.png │ │ ├── tutorial_25_max_temp_filter.png │ │ ├── tutorial_26_row_limit.png │ │ ├── tutorial_27_top_10_max_temps.png │ │ ├── tutorial_28_bar_chart.png │ │ ├── tutorial_29_bar_chart_series_metrics.png │ │ ├── tutorial_30_bar_chart_results.png │ │ ├── tutorial_31_save_slice_to_dashboard.png │ │ ├── tutorial_32_save_slice_confirmation.png │ │ ├── tutorial_33_dashboard.png │ │ ├── tutorial_34_weather_dashboard.png │ │ ├── tutorial_35_slice_on_dashboard.png │ │ └── tutorial_36_adjust_dimensions.gif │ ├── usertutorial │ │ ├── add_new_chart.png │ │ ├── advanced_analytics_base.png │ │ ├── annotation.png │ │ ├── annotation_settings.png │ │ ├── average_aggregate_for_cost.png │ │ ├── blue_bar_insert_component.png │ │ ├── chose_a_datasource.png │ │ ├── csv_to_database_configuration.png │ │ ├── edit-record.png │ │ ├── edit_annotation.png │ │ ├── filter_on_origin_country.png │ │ ├── markdown.png │ │ ├── no_filter_on_time_filter.png │ │ ├── parse_dates_column.png │ │ ├── publish_dashboard.png │ │ ├── resample.png │ │ ├── resize_tutorial_table_on_dashboard.png │ │ ├── rolling_mean.png │ │ ├── save_tutorial_table.png │ │ ├── select_dates_pivot_table.png │ │ ├── select_table_visualization_type.png │ │ ├── sum_cost_column.png │ │ ├── time_comparison_absolute_difference.png │ │ ├── time_comparison_two_series.png │ │ ├── tutorial_line_chart.png │ │ ├── tutorial_pivot_table.png │ │ ├── tutorial_table.png │ │ └── upload_a_csv.png │ └── viz_thumbnails │ │ ├── area.png │ │ ├── bar.png │ │ ├── big_number.png │ │ ├── big_number_total.png │ │ ├── box_plot.png │ │ ├── bubble.png │ │ ├── bullet.png │ │ ├── cal_heatmap.png │ │ ├── chord.png │ │ ├── compare.png │ │ ├── country_map.png │ │ ├── deck_arc.png │ │ ├── deck_geojson.png │ │ ├── deck_grid.png │ │ ├── deck_hex.png │ │ ├── deck_multi.png │ │ ├── deck_path.png │ │ ├── deck_polygon.png │ │ ├── deck_scatter.png │ │ ├── deck_screengrid.png │ │ ├── directed_force.png │ │ ├── dist_bar.png │ │ ├── dual_line.png │ │ ├── event_flow.png │ │ ├── filter_box.png │ │ ├── heatmap.png │ │ ├── histogram.png │ │ ├── horizon.png │ │ ├── iframe.png │ │ ├── line.png │ │ ├── line_multi.png │ │ ├── mapbox.png │ │ ├── markup.png │ │ ├── multi.png │ │ ├── paired_ttest.png │ │ ├── para.png │ │ ├── partition.png │ │ ├── pie.png │ │ ├── pivot_table.png │ │ ├── rose.png │ │ ├── sankey.png │ │ ├── separator.png │ │ ├── sunburst.png │ │ ├── table.png │ │ ├── time_pivot.png │ │ ├── time_table.png │ │ ├── treemap.png │ │ ├── word_cloud.png │ │ └── world_map.png ├── jest.config.js ├── js_build.sh ├── jsconfig.json ├── package-lock.json ├── package.json ├── spec │ ├── .eslintrc │ ├── __mocks__ │ │ ├── fileMock.js │ │ ├── styleMock.js │ │ └── svgrMock.js │ ├── fixtures │ │ └── mockDatasource.js │ ├── helpers │ │ ├── setupSupersetClient.js │ │ ├── shim.js │ │ └── waitForComponentToPaint.ts │ └── javascripts │ │ ├── CRUD │ │ └── CollectionTable_spec.jsx │ │ ├── addSlice │ │ ├── AddSliceContainer_spec.jsx │ │ └── AddSliceContainer_spec.tsx │ │ ├── chart │ │ ├── ChartRenderer_spec.jsx │ │ ├── chartActions_spec.js │ │ └── chartReducers_spec.js │ │ ├── components │ │ ├── AlteredSliceTag_spec.jsx │ │ ├── AnchorLink_spec.jsx │ │ ├── AsyncSelect_spec.jsx │ │ ├── CachedLabel_spec.jsx │ │ ├── Checkbox_spec.jsx │ │ ├── ColumnOption_spec.jsx │ │ ├── ColumnTypeLabel_spec.jsx │ │ ├── ConfirmStatusChange_spec.jsx │ │ ├── CopyToClipboard_spec.jsx │ │ ├── ErrorMessage │ │ │ └── getErrorMessageComponentRegistry_spec.tsx │ │ ├── FilterableTable │ │ │ ├── FilterableTable_spec.jsx │ │ │ └── FilterableTable_spec.tsx │ │ ├── FormRow_spec.jsx │ │ ├── ListView │ │ │ └── ListView_spec.jsx │ │ ├── Menu_spec.jsx │ │ ├── MetricOption_spec.jsx │ │ ├── ModalTrigger_spec.jsx │ │ ├── OnPasteSelect_spec.jsx │ │ ├── OptionDescription_spec.jsx │ │ ├── PopoverSection_spec.jsx │ │ ├── SearchInput_spec.jsx │ │ ├── TableSelector_spec.jsx │ │ ├── URLShortLinkButton_spec.jsx │ │ ├── URLShortLinkModal_spec.jsx │ │ └── VirtualizedRendererWrap_spec.jsx │ │ ├── dashboard │ │ ├── .eslintrc │ │ ├── actions │ │ │ ├── dashboardLayout_spec.js │ │ │ └── dashboardState_spec.js │ │ ├── components │ │ │ ├── CodeModal_spec.jsx │ │ │ ├── CssEditor_spec.jsx │ │ │ ├── DashboardBuilder_spec.jsx │ │ │ ├── DashboardGrid_spec.jsx │ │ │ ├── Dashboard_spec.jsx │ │ │ ├── FilterIndicatorGroup_spec.jsx │ │ │ ├── FilterIndicatorTooltip_spec.jsx │ │ │ ├── FilterIndicator_spec.jsx │ │ │ ├── FilterIndicatorsContainer_spec.jsx │ │ │ ├── FilterTooltipWrapper_spec.jsx │ │ │ ├── HeaderActionsDropdown_spec.jsx │ │ │ ├── Header_spec.jsx │ │ │ ├── MissingChart_spec.jsx │ │ │ ├── RefreshIntervalModal_spec.jsx │ │ │ ├── SliceAdder_spec.jsx │ │ │ ├── dnd │ │ │ │ └── DragDroppable_spec.jsx │ │ │ ├── gridComponents │ │ │ │ ├── ChartHolder_spec.jsx │ │ │ │ ├── Chart_spec.jsx │ │ │ │ ├── Column_spec.jsx │ │ │ │ ├── Divider_spec.jsx │ │ │ │ ├── Header_spec.jsx │ │ │ │ ├── Markdown_spec.jsx │ │ │ │ ├── Row_spec.jsx │ │ │ │ ├── Tab_spec.jsx │ │ │ │ ├── Tabs_spec.jsx │ │ │ │ └── new │ │ │ │ │ ├── DraggableNewComponent_spec.jsx │ │ │ │ │ ├── NewColumn_spec.jsx │ │ │ │ │ ├── NewDivider_spec.jsx │ │ │ │ │ ├── NewHeader_spec.jsx │ │ │ │ │ ├── NewRow_spec.jsx │ │ │ │ │ └── NewTabs_spec.jsx │ │ │ ├── menu │ │ │ │ ├── HoverMenu_spec.jsx │ │ │ │ └── WithPopoverMenu_spec.jsx │ │ │ └── resizable │ │ │ │ ├── ResizableContainer_spec.jsx │ │ │ │ └── ResizableHandle_spec.jsx │ │ ├── fixtures │ │ │ ├── mockChartQueries.js │ │ │ ├── mockDashboardData.js │ │ │ ├── mockDashboardFilters.js │ │ │ ├── mockDashboardInfo.js │ │ │ ├── mockDashboardLayout.js │ │ │ ├── mockDashboardState.js │ │ │ ├── mockSliceEntities.js │ │ │ ├── mockState.js │ │ │ └── mockStore.js │ │ ├── helpers │ │ │ └── WithDragDropContext.jsx │ │ ├── reducers │ │ │ ├── dashboardFilters_spec.js │ │ │ ├── dashboardLayout_spec.js │ │ │ ├── dashboardState_spec.js │ │ │ └── sliceEntities_spec.js │ │ └── util │ │ │ ├── componentIsResizable_spec.js │ │ │ ├── componentIsResizable_spec.ts │ │ │ ├── dnd-reorder_spec.js │ │ │ ├── dropOverflowsParent_spec.js │ │ │ ├── findFirstParentContainer_spec.js │ │ │ ├── findParentId_spec.js │ │ │ ├── findTabIndexByComponentId_spec.js │ │ │ ├── getChartAndLabelComponentIdFromPath_spec.js │ │ │ ├── getChartIdsFromLayout_spec.js │ │ │ ├── getDashboardUrl_spec.js │ │ │ ├── getDetailedComponentWidth_spec.js │ │ │ ├── getDropPosition_spec.js │ │ │ ├── getFilterConfigsFromFormdata_spec.js │ │ │ ├── getFilterScopeFromNodesTree_spec.js │ │ │ ├── getFormDataWithExtraFilters_spec.js │ │ │ ├── getFormDataWithExtraFilters_spec.ts │ │ │ ├── getLeafComponentIdFromPath_spec.js │ │ │ ├── isDashboardEmpty_spec.ts │ │ │ ├── isValidChild_spec.js │ │ │ ├── isValidChild_spec.ts │ │ │ ├── newComponentFactory_spec.js │ │ │ ├── newEntitiesFromDrop_spec.js │ │ │ └── updateComponentParentsList_spec.js │ │ ├── datasource │ │ ├── ChangeDatasourceModal_spec.jsx │ │ ├── DatasourceEditor_spec.jsx │ │ └── DatasourceModal_spec.jsx │ │ ├── explore │ │ ├── AdhocFilter_spec.js │ │ ├── AdhocMetric_spec.js │ │ ├── components │ │ │ ├── AdhocFilterControl_spec.jsx │ │ │ ├── AdhocFilterEditPopoverSimpleTabContent_spec.jsx │ │ │ ├── AdhocFilterEditPopoverSqlTabContent_spec.jsx │ │ │ ├── AdhocFilterEditPopover_spec.jsx │ │ │ ├── AdhocFilterOption_spec.jsx │ │ │ ├── AdhocMetricEditPopoverTitle_spec.jsx │ │ │ ├── AdhocMetricEditPopover_spec.jsx │ │ │ ├── AdhocMetricOption_spec.jsx │ │ │ ├── AdhocMetricStaticOption_spec.jsx │ │ │ ├── AggregateOption_spec.jsx │ │ │ ├── BoundsControl_spec.jsx │ │ │ ├── CheckboxControl_spec.jsx │ │ │ ├── ColorPickerControl_spec.jsx │ │ │ ├── ColorScheme_spec.jsx │ │ │ ├── ControlPanelSection_spec.jsx │ │ │ ├── ControlPanelsContainer_spec.jsx │ │ │ ├── ControlRow_spec.jsx │ │ │ ├── DatasourceControl_spec.jsx │ │ │ ├── DateFilterControl_spec.jsx │ │ │ ├── DisplayQueryButton_spec.jsx │ │ │ ├── EmbedCodeButton_spec.jsx │ │ │ ├── ExploreActionButtons_spec.jsx │ │ │ ├── ExploreChartHeader_spec.jsx │ │ │ ├── ExploreChartPanel_spec.jsx │ │ │ ├── ExploreViewContainer_spec.jsx │ │ │ ├── FilterBoxItemControl_spec.jsx │ │ │ ├── FilterDefinitionOption_spec.jsx │ │ │ ├── FixedOrMetricControl_spec.jsx │ │ │ ├── MetricDefinitionOption_spec.jsx │ │ │ ├── MetricDefinitionValue_spec.jsx │ │ │ ├── MetricsControl_spec.jsx │ │ │ ├── QueryAndSaveBtns_spec.jsx │ │ │ ├── RowCountLabel_spec.jsx │ │ │ ├── RunQueryActionButton_spec.jsx │ │ │ ├── SaveModal_spec.jsx │ │ │ ├── SelectControl_spec.jsx │ │ │ ├── TextArea_spec.jsx │ │ │ ├── TimeSeriesColumnControl_spec.jsx │ │ │ ├── ViewportControl_spec.jsx │ │ │ ├── VizTypeControl_spec.jsx │ │ │ └── withVerification_spec.jsx │ │ ├── controlUtils_spec.jsx │ │ ├── exploreActions_spec.js │ │ ├── store_spec.jsx │ │ └── utils_spec.jsx │ │ ├── messageToasts │ │ ├── .eslintrc │ │ ├── components │ │ │ ├── ToastPresenter_spec.jsx │ │ │ └── Toast_spec.jsx │ │ ├── mockMessageToasts.js │ │ ├── reducers │ │ │ └── messageToasts_spec.js │ │ └── utils │ │ │ └── getToastsFromPyFlashMessages_spec.js │ │ ├── middleware │ │ └── logger_spec.js │ │ ├── modules │ │ ├── dates_spec.js │ │ └── utils_spec.jsx │ │ ├── profile │ │ ├── App_spec.jsx │ │ ├── App_spec.tsx │ │ ├── CreatedContent_spec.jsx │ │ ├── CreatedContent_spec.tsx │ │ ├── EditableTitle_spec.jsx │ │ ├── EditableTitle_spec.tsx │ │ ├── Favorites_spec.jsx │ │ ├── Favorites_spec.tsx │ │ ├── RecentActivity_spec.jsx │ │ ├── RecentActivity_spec.tsx │ │ ├── Security_spec.jsx │ │ ├── Security_spec.tsx │ │ ├── UserInfo_spec.jsx │ │ ├── UserInfo_spec.tsx │ │ ├── fixtures.jsx │ │ └── fixtures.tsx │ │ ├── showSavedQuery │ │ └── utils_spec.jsx │ │ ├── sqllab │ │ ├── App_spec.jsx │ │ ├── ColumnElement_spec.jsx │ │ ├── ColumnElement_spec.tsx │ │ ├── ExploreResultsButton_spec.jsx │ │ ├── HighlightedSql_spec.jsx │ │ ├── LimitControl_spec.jsx │ │ ├── Link_spec.jsx │ │ ├── QueryAutoRefresh_spec.jsx │ │ ├── QuerySearch_spec.jsx │ │ ├── QueryStateLabel_spec.jsx │ │ ├── QueryTable_spec.jsx │ │ ├── ResultSet_spec.jsx │ │ ├── SaveQuery_spec.jsx │ │ ├── ShareSqlLabQuery_spec.jsx │ │ ├── SouthPane_spec.jsx │ │ ├── SqlEditorLeftBar_spec.jsx │ │ ├── SqlEditor_spec.jsx │ │ ├── TabStatusIcon_spec.jsx │ │ ├── TabbedSqlEditors_spec.jsx │ │ ├── TableElement_spec.jsx │ │ ├── Timer_spec.jsx │ │ ├── actions │ │ │ └── sqlLab_spec.js │ │ ├── fixtures.js │ │ ├── fixtures.ts │ │ ├── reducers │ │ │ └── sqlLab_spec.js │ │ └── utils │ │ │ └── emptyQueryResults_spec.js │ │ ├── utils │ │ ├── common_spec.jsx │ │ ├── getClientErrorObject_spec.js │ │ ├── getClientErrorObject_spec.ts │ │ ├── getControlsForVizType_spec.js │ │ ├── parseCookie_spec.ts │ │ └── safeStringify_spec.ts │ │ ├── views │ │ ├── chartList │ │ │ └── ChartList_spec.jsx │ │ ├── dashboardList │ │ │ └── DashboardList_spec.jsx │ │ └── datasetList │ │ │ └── DatasetList_spec.jsx │ │ └── welcome │ │ ├── DashboardTable_spec.jsx │ │ ├── DashboardTable_spec.tsx │ │ ├── Welcome_spec.jsx │ │ └── Welcome_spec.tsx ├── src │ ├── CRUD │ │ ├── CollectionTable.jsx │ │ ├── Field.jsx │ │ ├── Fieldset.jsx │ │ ├── crud.less │ │ └── utils.js │ ├── SqlLab │ │ ├── App.jsx │ │ ├── actions │ │ │ └── sqlLab.js │ │ ├── components │ │ │ ├── AceEditorWrapper.jsx │ │ │ ├── AceEditorWrapper.tsx │ │ │ ├── App.jsx │ │ │ ├── ColumnElement.jsx │ │ │ ├── ColumnElement.tsx │ │ │ ├── EstimateQueryCostButton.jsx │ │ │ ├── ExploreCtasResultsButton.jsx │ │ │ ├── ExploreResultsButton.jsx │ │ │ ├── HighlightedSql.jsx │ │ │ ├── LimitControl.jsx │ │ │ ├── Link.jsx │ │ │ ├── QueryAutoRefresh.jsx │ │ │ ├── QueryHistory.jsx │ │ │ ├── QuerySearch.jsx │ │ │ ├── QueryStateLabel.jsx │ │ │ ├── QueryTable.jsx │ │ │ ├── ResultSet.jsx │ │ │ ├── ResultSet.tsx │ │ │ ├── RunQueryActionButton.jsx │ │ │ ├── RunQueryActionButton.tsx │ │ │ ├── SaveQuery.jsx │ │ │ ├── ScheduleQueryButton.jsx │ │ │ ├── ScheduleQueryButton.less │ │ │ ├── ShareSqlLabQuery.jsx │ │ │ ├── ShowSQL.jsx │ │ │ ├── ShowSQL.tsx │ │ │ ├── SouthPane.jsx │ │ │ ├── SqlEditor.jsx │ │ │ ├── SqlEditorLeftBar.jsx │ │ │ ├── TabStatusIcon.jsx │ │ │ ├── TabbedSqlEditors.jsx │ │ │ ├── TableElement.jsx │ │ │ └── TemplateParamsEditor.jsx │ │ ├── constants.js │ │ ├── constants.ts │ │ ├── index.jsx │ │ ├── index.tsx │ │ ├── main.less │ │ ├── reducers │ │ │ ├── common.js │ │ │ ├── getInitialState.js │ │ │ ├── index.js │ │ │ ├── localStorageUsage.js │ │ │ └── sqlLab.js │ │ ├── types.ts │ │ └── utils │ │ │ ├── reduxStateToLocalStorageHelper.js │ │ │ └── sqlKeywords.ts │ ├── addSlice │ │ ├── AddSliceContainer.jsx │ │ ├── AddSliceContainer.tsx │ │ ├── App.jsx │ │ ├── App.tsx │ │ ├── index.jsx │ │ └── index.tsx │ ├── chart │ │ ├── Chart.jsx │ │ ├── ChartContainer.jsx │ │ ├── ChartRenderer.jsx │ │ ├── chart.less │ │ ├── chartAction.js │ │ └── chartReducer.js │ ├── chartPlugins │ │ ├── applyOptionExtends.js │ │ ├── carouselTable │ │ │ ├── CarouselTable.jsx │ │ │ ├── index.js │ │ │ ├── index.less │ │ │ ├── table.png │ │ │ └── transformProps.js │ │ ├── echarts3DLines │ │ │ ├── Echarts3DLines.jsx │ │ │ ├── bathymetry_bw_composite_4k.jpg │ │ │ ├── globe-echarts-gl-hello-world.jpg │ │ │ ├── index.js │ │ │ ├── starfield.jpg │ │ │ ├── world.topo.bathy.200401.jpg │ │ │ ├── world.topo.bathy.200402.jpg │ │ │ └── world.topo.bathy.200403.jpg │ │ ├── echartsBar │ │ │ ├── EchartsBar.jsx │ │ │ ├── bar-tick-align.jpg │ │ │ └── index.js │ │ ├── echartsExample │ │ │ ├── EchartsExample.jsx │ │ │ ├── area-basic.jpg │ │ │ └── index.js │ │ ├── echartsMapLines │ │ │ ├── EchartsMapLines.jsx │ │ │ ├── china-us-japan.json │ │ │ ├── echarts_lines.png │ │ │ └── index.js │ │ ├── echartsMultipleLines │ │ │ ├── EchartsMultipleLines.jsx │ │ │ ├── index.js │ │ │ └── mix-bar.jpg │ │ ├── echartsPictorialBar │ │ │ ├── EchartsPictorialBar.jsx │ │ │ └── index.js │ │ ├── echartsPie │ │ │ ├── EchartsPie.jsx │ │ │ ├── index.js │ │ │ └── pie-legend.jpg │ │ ├── odometer │ │ │ ├── 37472571-b13b0080-286c-11e8-8495-ef6aba591646.gif │ │ │ ├── Odometer.jsx │ │ │ ├── fonts │ │ │ │ └── UKIJKuYB.ttf │ │ │ ├── index.js │ │ │ ├── odometer-theme-car.css │ │ │ ├── odometer-theme-digital.css │ │ │ ├── odometer-theme-minimal.css │ │ │ ├── odometer.less │ │ │ └── transformProps.js │ │ ├── utils.js │ │ ├── withAutoRefresh.js │ │ └── wordCloud │ │ │ ├── Sample_TagCloud_WorldPress.png │ │ │ ├── WordCloud.jsx │ │ │ ├── index.js │ │ │ ├── transformProps.js │ │ │ ├── word-cloud.css │ │ │ └── word-cloud.js │ ├── components │ │ ├── ActionMenuItem.jsx │ │ ├── AlteredSliceTag.jsx │ │ ├── AnchorLink.jsx │ │ ├── AsyncSelect.jsx │ │ ├── AvatarIcon.tsx │ │ ├── BootstrapSliderWrapper.jsx │ │ ├── BootstrapSliderWrapper.less │ │ ├── Button.jsx │ │ ├── Button.tsx │ │ ├── CachedLabel.jsx │ │ ├── ChartIcon.jsx │ │ ├── Checkbox.jsx │ │ ├── CheckboxIcons.jsx │ │ ├── ColumnOption.jsx │ │ ├── ColumnTypeLabel.jsx │ │ ├── ConfirmStatusChange.tsx │ │ ├── CopyToClipboard.jsx │ │ ├── DeleteModal.tsx │ │ ├── EditableTitle.jsx │ │ ├── ErrorBoundary.jsx │ │ ├── ErrorMessage │ │ │ ├── ErrorMessageWithStackTrace.tsx │ │ │ ├── IssueCode.tsx │ │ │ ├── TimeoutErrorMessage.tsx │ │ │ ├── getErrorMessageComponentRegistry.ts │ │ │ └── types.ts │ │ ├── ExpandableList.tsx │ │ ├── FaveStar.jsx │ │ ├── FilterBadgeIcon.jsx │ │ ├── FilterBadgeIcon.less │ │ ├── FilterableTable │ │ │ ├── FilterableTable.jsx │ │ │ ├── FilterableTable.tsx │ │ │ └── FilterableTableStyles.less │ │ ├── FlashProvider.tsx │ │ ├── FormRow.jsx │ │ ├── Hotkeys.jsx │ │ ├── Icon.tsx │ │ ├── IndeterminateCheckbox.tsx │ │ ├── InfoTooltipWithTrigger.jsx │ │ ├── Link.tsx │ │ ├── ListView │ │ │ ├── Filters.tsx │ │ │ ├── LegacyFilters.tsx │ │ │ ├── ListView.tsx │ │ │ ├── ListViewStyles.less │ │ │ ├── Pagination.tsx │ │ │ ├── TableCollection.tsx │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── Loading.jsx │ │ ├── Loading.less │ │ ├── Loading.tsx │ │ ├── Menu │ │ │ ├── LanguagePicker.jsx │ │ │ ├── Menu.jsx │ │ │ ├── Menu.less │ │ │ ├── MenuObject.jsx │ │ │ ├── NewMenu.jsx │ │ │ ├── SubMenu.tsx │ │ │ └── UserMenu.jsx │ │ ├── MetricOption.jsx │ │ ├── Modal.tsx │ │ ├── ModalTrigger.jsx │ │ ├── OmniContainer.jsx │ │ ├── OnPasteSelect.jsx │ │ ├── OptionDescription.jsx │ │ ├── Pagination.tsx │ │ ├── PopoverSection.jsx │ │ ├── RefreshChartOverlay.jsx │ │ ├── RefreshChartOverlay.tsx │ │ ├── RefreshLabel.jsx │ │ ├── RefreshLabel.less │ │ ├── SearchInput.tsx │ │ ├── Select │ │ │ ├── OnPasteSelect.jsx │ │ │ ├── SupersetStyledSelect.tsx │ │ │ ├── WindowedSelect │ │ │ │ ├── WindowedMenuList.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── windowed.tsx │ │ │ ├── index.ts │ │ │ ├── styles.tsx │ │ │ └── utils.ts │ │ ├── StackTraceMessage.jsx │ │ ├── TableLoader.jsx │ │ ├── TableSelector.jsx │ │ ├── TableSelector.less │ │ ├── Timer.jsx │ │ ├── TooltipWrapper.jsx │ │ ├── URLShortLinkButton.jsx │ │ ├── URLShortLinkModal.jsx │ │ ├── VictoryTheme.js │ │ ├── VirtualizedRendererWrap.jsx │ │ └── styles.ts │ ├── dashboard │ │ ├── .eslintrc │ │ ├── App.jsx │ │ ├── actions │ │ │ ├── dashboardFilters.js │ │ │ ├── dashboardInfo.js │ │ │ ├── dashboardLayout.js │ │ │ ├── dashboardState.js │ │ │ ├── datasources.js │ │ │ └── sliceEntities.js │ │ ├── components │ │ │ ├── AddSliceCard.jsx │ │ │ ├── BuilderComponentPane.jsx │ │ │ ├── CodeModal.jsx │ │ │ ├── ColorComponentPane.jsx │ │ │ ├── CssEditor.jsx │ │ │ ├── Dashboard.jsx │ │ │ ├── DashboardBuilder.jsx │ │ │ ├── DashboardGrid.jsx │ │ │ ├── DeleteComponentButton.jsx │ │ │ ├── DeleteComponentModal.jsx │ │ │ ├── FilterIndicator.jsx │ │ │ ├── FilterIndicatorGroup.jsx │ │ │ ├── FilterIndicatorTooltip.jsx │ │ │ ├── FilterIndicatorsContainer.jsx │ │ │ ├── FilterTooltipWrapper.jsx │ │ │ ├── Header.jsx │ │ │ ├── HeaderActionsDropdown.jsx │ │ │ ├── IconButton.jsx │ │ │ ├── InsertComponentPane.jsx │ │ │ ├── MissingChart.jsx │ │ │ ├── PropertiesModal.jsx │ │ │ ├── PublishedStatus.jsx │ │ │ ├── RefreshIntervalModal.jsx │ │ │ ├── SaveModal.jsx │ │ │ ├── SliceAdder.jsx │ │ │ ├── SliceHeader.jsx │ │ │ ├── SliceHeaderControls.jsx │ │ │ ├── UndoRedoKeylisteners.jsx │ │ │ ├── dnd │ │ │ │ ├── AddSliceDragPreview.jsx │ │ │ │ ├── DragDroppable.jsx │ │ │ │ ├── DragHandle.jsx │ │ │ │ ├── dragDroppableConfig.js │ │ │ │ ├── handleDrop.js │ │ │ │ └── handleHover.js │ │ │ ├── filterscope │ │ │ │ ├── FilterFieldItem.jsx │ │ │ │ ├── FilterFieldTree.jsx │ │ │ │ ├── FilterScopeModal.jsx │ │ │ │ ├── FilterScopeSelector.jsx │ │ │ │ ├── FilterScopeTree.jsx │ │ │ │ ├── renderFilterFieldTreeNodes.jsx │ │ │ │ ├── renderFilterScopeTreeNodes.jsx │ │ │ │ └── treeIcons.jsx │ │ │ ├── gridComponents │ │ │ │ ├── Chart.jsx │ │ │ │ ├── ChartHolder.jsx │ │ │ │ ├── Column.jsx │ │ │ │ ├── Divider.jsx │ │ │ │ ├── Header.jsx │ │ │ │ ├── Markdown.jsx │ │ │ │ ├── Row.jsx │ │ │ │ ├── Tab.jsx │ │ │ │ ├── Tabs.jsx │ │ │ │ ├── index.js │ │ │ │ └── new │ │ │ │ │ ├── DraggableNewComponent.jsx │ │ │ │ │ ├── NewColumn.jsx │ │ │ │ │ ├── NewDivider.jsx │ │ │ │ │ ├── NewHeader.jsx │ │ │ │ │ ├── NewMarkdown.jsx │ │ │ │ │ ├── NewRow.jsx │ │ │ │ │ └── NewTabs.jsx │ │ │ ├── menu │ │ │ │ ├── BackgroundStyleDropdown.jsx │ │ │ │ ├── HoverMenu.jsx │ │ │ │ ├── MarkdownModeDropdown.jsx │ │ │ │ ├── PopoverDropdown.jsx │ │ │ │ └── WithPopoverMenu.jsx │ │ │ └── resizable │ │ │ │ ├── ResizableContainer.jsx │ │ │ │ └── ResizableHandle.jsx │ │ ├── containers │ │ │ ├── Chart.jsx │ │ │ ├── Dashboard.jsx │ │ │ ├── DashboardBuilder.jsx │ │ │ ├── DashboardComponent.jsx │ │ │ ├── DashboardGrid.jsx │ │ │ ├── DashboardHeader.jsx │ │ │ ├── FilterIndicators.jsx │ │ │ ├── FilterScope.jsx │ │ │ └── SliceAdder.jsx │ │ ├── fixtures │ │ │ └── emptyDashboardLayout.js │ │ ├── index.jsx │ │ ├── reducers │ │ │ ├── dashboardFilters.js │ │ │ ├── dashboardInfo.js │ │ │ ├── dashboardLayout.js │ │ │ ├── dashboardState.js │ │ │ ├── datasources.js │ │ │ ├── getInitialState.js │ │ │ ├── index.js │ │ │ ├── sliceEntities.js │ │ │ └── undoableDashboardLayout.js │ │ ├── stylesheets │ │ │ ├── builder-sidepane.less │ │ │ ├── builder.less │ │ │ ├── buttons.less │ │ │ ├── components │ │ │ │ ├── chart.less │ │ │ │ ├── column.less │ │ │ │ ├── divider.less │ │ │ │ ├── header.less │ │ │ │ ├── index.less │ │ │ │ ├── markdown.less │ │ │ │ ├── new-component.less │ │ │ │ ├── row.less │ │ │ │ └── tabs.less │ │ │ ├── dashboard.less │ │ │ ├── dnd.less │ │ │ ├── filter-indicator-tooltip.less │ │ │ ├── filter-indicator.less │ │ │ ├── filter-scope-selector.less │ │ │ ├── grid.less │ │ │ ├── hover-menu.less │ │ │ ├── index.less │ │ │ ├── popover-menu.less │ │ │ └── resizable.less │ │ ├── types.ts │ │ └── util │ │ │ ├── activeDashboardFilters.js │ │ │ ├── backgroundStyleOptions.js │ │ │ ├── backgroundStyleOptions.ts │ │ │ ├── buildFilterScopeTreeEntry.js │ │ │ ├── charts │ │ │ ├── getEffectiveExtraFilters.js │ │ │ ├── getEffectiveExtraFilters.ts │ │ │ ├── getFormDataWithExtraFilters.js │ │ │ └── getFormDataWithExtraFilters.ts │ │ │ ├── componentIsResizable.js │ │ │ ├── componentIsResizable.ts │ │ │ ├── componentTypes.js │ │ │ ├── componentTypes.ts │ │ │ ├── constants.js │ │ │ ├── constants.ts │ │ │ ├── dashboardFiltersColorMap.js │ │ │ ├── dnd-reorder.js │ │ │ ├── dropOverflowsParent.js │ │ │ ├── findFirstParentContainer.js │ │ │ ├── findParentId.js │ │ │ ├── findTabIndexByComponentId.js │ │ │ ├── getChartAndLabelComponentIdFromPath.js │ │ │ ├── getChartIdsFromLayout.js │ │ │ ├── getComponentWidthFromDrop.js │ │ │ ├── getDashboardFilterKey.js │ │ │ ├── getDashboardFilterKey.ts │ │ │ ├── getDashboardUrl.js │ │ │ ├── getDetailedComponentWidth.js │ │ │ ├── getDirectPathToTabIndex.js │ │ │ ├── getDragDropManager.js │ │ │ ├── getDropPosition.js │ │ │ ├── getEmptyLayout.js │ │ │ ├── getFilterConfigsFromFormdata.js │ │ │ ├── getFilterFieldNodesTree.js │ │ │ ├── getFilterScopeFromNodesTree.js │ │ │ ├── getFilterScopeNodesTree.js │ │ │ ├── getFilterScopeParentNodes.js │ │ │ ├── getFilterValuesByFilterId.js │ │ │ ├── getKeyForFilterScopeTree.js │ │ │ ├── getLayoutComponentFromChartId.js │ │ │ ├── getLeafComponentIdFromPath.js │ │ │ ├── getLocationHash.js │ │ │ ├── getLocationHash.ts │ │ │ ├── getRevertedFilterScope.js │ │ │ ├── getRevertedFilterScope.ts │ │ │ ├── getSelectedChartIdForFilterScopeTree.js │ │ │ ├── headerStyleOptions.js │ │ │ ├── headerStyleOptions.ts │ │ │ ├── injectCustomCss.js │ │ │ ├── isDashboardEmpty.ts │ │ │ ├── isDashboardLoading.js │ │ │ ├── isInDifferentFilterScopes.js │ │ │ ├── isValidChild.js │ │ │ ├── isValidChild.ts │ │ │ ├── logging │ │ │ ├── childChartsDidLoad.js │ │ │ ├── findNonTabChildChartIds.js │ │ │ ├── findTopLevelComponentIds.js │ │ │ └── getLoadStatsPerTopLevelComponent.js │ │ │ ├── newComponentFactory.js │ │ │ ├── newEntitiesFromDrop.js │ │ │ ├── propShapes.jsx │ │ │ ├── resizableConfig.js │ │ │ ├── resizableConfig.ts │ │ │ ├── serializeActiveFilterValues.js │ │ │ ├── serializeFilterScopes.js │ │ │ ├── setPeriodicRunner.ts │ │ │ ├── shouldWrapChildInRow.js │ │ │ └── updateComponentParentsList.js │ ├── datasource │ │ ├── ChangeDatasourceModal.jsx │ │ ├── DatasourceEditor.jsx │ │ ├── DatasourceModal.jsx │ │ └── main.less │ ├── explore │ │ ├── AdhocFilter.js │ │ ├── AdhocMetric.js │ │ ├── App.jsx │ │ ├── actions │ │ │ ├── exploreActions.js │ │ │ └── saveModalActions.js │ │ ├── components │ │ │ ├── AdhocFilterEditPopover.jsx │ │ │ ├── AdhocFilterEditPopoverSimpleTabContent.jsx │ │ │ ├── AdhocFilterEditPopoverSqlTabContent.jsx │ │ │ ├── AdhocFilterOption.jsx │ │ │ ├── AdhocMetricEditPopover.jsx │ │ │ ├── AdhocMetricEditPopoverTitle.jsx │ │ │ ├── AdhocMetricOption.jsx │ │ │ ├── AdhocMetricStaticOption.jsx │ │ │ ├── AggregateOption.jsx │ │ │ ├── Control.jsx │ │ │ ├── Control.less │ │ │ ├── ControlHeader.jsx │ │ │ ├── ControlPanelSection.jsx │ │ │ ├── ControlPanelsContainer.jsx │ │ │ ├── ControlRow.jsx │ │ │ ├── DisplayQueryButton.jsx │ │ │ ├── EmbedCodeButton.jsx │ │ │ ├── ExploreActionButtons.jsx │ │ │ ├── ExploreChartHeader.jsx │ │ │ ├── ExploreChartPanel.jsx │ │ │ ├── ExploreViewContainer.jsx │ │ │ ├── FilterDefinitionOption.jsx │ │ │ ├── MetricDefinitionOption.jsx │ │ │ ├── MetricDefinitionValue.jsx │ │ │ ├── PropertiesModal.tsx │ │ │ ├── QueryAndSaveBtns.css │ │ │ ├── QueryAndSaveBtns.jsx │ │ │ ├── RowCountLabel.jsx │ │ │ ├── SaveModal.jsx │ │ │ └── controls │ │ │ │ ├── AdhocFilterControl.jsx │ │ │ │ ├── AnnotationLayer.jsx │ │ │ │ ├── AnnotationLayer.less │ │ │ │ ├── AnnotationLayerControl.jsx │ │ │ │ ├── BoundsControl.jsx │ │ │ │ ├── CheckboxControl.jsx │ │ │ │ ├── CollectionControl.jsx │ │ │ │ ├── CollectionControl.less │ │ │ │ ├── ColorMapControl.jsx │ │ │ │ ├── ColorPickerControl.jsx │ │ │ │ ├── ColorSchemeControl.jsx │ │ │ │ ├── DatasourceControl.jsx │ │ │ │ ├── DatasourceControl.less │ │ │ │ ├── DateFilterControl.jsx │ │ │ │ ├── DateFilterControl.less │ │ │ │ ├── FilterBoxItemControl.jsx │ │ │ │ ├── FixedOrMetricControl.jsx │ │ │ │ ├── HiddenControl.jsx │ │ │ │ ├── MetricsControl.jsx │ │ │ │ ├── SelectAsyncControl.jsx │ │ │ │ ├── SelectControl.jsx │ │ │ │ ├── SliderControl.jsx │ │ │ │ ├── SpatialControl.jsx │ │ │ │ ├── TextAreaControl.jsx │ │ │ │ ├── TextControl.jsx │ │ │ │ ├── TimeSeriesColumnControl.jsx │ │ │ │ ├── ViewportControl.jsx │ │ │ │ ├── VizTypeControl.jsx │ │ │ │ ├── VizTypeControl.less │ │ │ │ ├── index.js │ │ │ │ └── withVerification.jsx │ │ ├── constants.js │ │ ├── controlPanels │ │ │ ├── Area.js │ │ │ ├── Bar.js │ │ │ ├── BigNumber.js │ │ │ ├── BigNumberTotal.js │ │ │ ├── BoxPlot.js │ │ │ ├── Bubble.js │ │ │ ├── Bullet.js │ │ │ ├── CalHeatmap.js │ │ │ ├── CarouselTable.js │ │ │ ├── Chord.js │ │ │ ├── Compare.js │ │ │ ├── CountryMap.js │ │ │ ├── DeckArc.js │ │ │ ├── DeckGeojson.js │ │ │ ├── DeckGrid.js │ │ │ ├── DeckHex.js │ │ │ ├── DeckMulti.js │ │ │ ├── DeckPath.js │ │ │ ├── DeckPolygon.js │ │ │ ├── DeckScatter.js │ │ │ ├── DeckScreengrid.js │ │ │ ├── DirectedForce.js │ │ │ ├── DistBar.js │ │ │ ├── DualLine.js │ │ │ ├── Echarts3DLines.js │ │ │ ├── EchartsBar.js │ │ │ ├── EchartsLine.js │ │ │ ├── EchartsMapLines.js │ │ │ ├── EchartsMultipleLines.js │ │ │ ├── EchartsPictorialBar.js │ │ │ ├── EchartsPie.js │ │ │ ├── EventFlow.js │ │ │ ├── FilterBox.jsx │ │ │ ├── Heatmap.js │ │ │ ├── Histogram.js │ │ │ ├── Horizon.js │ │ │ ├── Iframe.js │ │ │ ├── Line.js │ │ │ ├── LineMulti.js │ │ │ ├── Mapbox.js │ │ │ ├── Markup.js │ │ │ ├── Odometer.js │ │ │ ├── PairedTtest.js │ │ │ ├── Para.js │ │ │ ├── Partition.js │ │ │ ├── Pie.js │ │ │ ├── PivotTable.js │ │ │ ├── Rose.js │ │ │ ├── Sankey.js │ │ │ ├── ScatterGL.jsx │ │ │ ├── Separator.js │ │ │ ├── Shared_DeckGL.jsx │ │ │ ├── Sunburst.js │ │ │ ├── Table.js │ │ │ ├── Table.jsx │ │ │ ├── TimePivot.js │ │ │ ├── TimeTable.js │ │ │ ├── Treemap.js │ │ │ ├── WordCloud.js │ │ │ ├── WordCloud3D.js │ │ │ ├── WorldMap.js │ │ │ ├── sections.jsx │ │ │ └── timeGrainSqlaAnimationOverrides.js │ │ ├── controlUtils.js │ │ ├── controls.jsx │ │ ├── exploreUtils.js │ │ ├── index.jsx │ │ ├── main.less │ │ ├── propTypes │ │ │ ├── adhocFilterType.js │ │ │ ├── adhocMetricType.js │ │ │ ├── aggregateOptionType.js │ │ │ ├── columnType.js │ │ │ └── savedMetricType.js │ │ ├── reducers │ │ │ ├── exploreReducer.js │ │ │ ├── getInitialState.js │ │ │ ├── index.js │ │ │ └── saveModalReducer.js │ │ ├── store.js │ │ └── validators.js │ ├── featureFlags.ts │ ├── logger │ │ ├── LogUtils.js │ │ └── actions │ │ │ └── index.js │ ├── messageToasts │ │ ├── actions │ │ │ └── index.js │ │ ├── components │ │ │ ├── Toast.jsx │ │ │ ├── Toast.tsx │ │ │ ├── ToastPresenter.jsx │ │ │ └── ToastPresenter.tsx │ │ ├── constants.js │ │ ├── containers │ │ │ └── ToastPresenter.jsx │ │ ├── enhancers │ │ │ ├── withToasts.jsx │ │ │ └── withToasts.tsx │ │ ├── propShapes.js │ │ ├── reducers │ │ │ └── index.js │ │ ├── stylesheets │ │ │ └── toast.less │ │ ├── types.ts │ │ └── utils │ │ │ └── getToastsFromPyFlashMessages.js │ ├── middleware │ │ └── loggerMiddleware.js │ ├── modules │ │ ├── AnnotationTypes.js │ │ ├── dates.js │ │ └── utils.js │ ├── preamble.js │ ├── preamble.ts │ ├── profile │ │ ├── App.jsx │ │ ├── App.tsx │ │ ├── components │ │ │ ├── App.jsx │ │ │ ├── App.tsx │ │ │ ├── CreatedContent.jsx │ │ │ ├── CreatedContent.tsx │ │ │ ├── Favorites.jsx │ │ │ ├── Favorites.tsx │ │ │ ├── RecentActivity.jsx │ │ │ ├── RecentActivity.tsx │ │ │ ├── Security.jsx │ │ │ ├── Security.tsx │ │ │ ├── UserInfo.jsx │ │ │ └── UserInfo.tsx │ │ ├── index.jsx │ │ ├── index.tsx │ │ ├── main.less │ │ └── types.ts │ ├── reduxUtils.js │ ├── reduxUtils.ts │ ├── setup │ │ ├── setupApp.js │ │ ├── setupApp.ts │ │ ├── setupClient.js │ │ ├── setupColors.js │ │ ├── setupErrorMessages.ts │ │ ├── setupErrorMessagesExtra.ts │ │ ├── setupFormatters.js │ │ ├── setupPlugins.ts │ │ └── setupPluginsExtra.js │ ├── showSavedQuery │ │ ├── index.jsx │ │ ├── index.less │ │ └── utils.js │ ├── theme.js │ ├── theme.ts │ ├── types │ │ ├── Chart.ts │ │ ├── bootstrapTypes.ts │ │ ├── files.d.ts │ │ └── react-table-config.d.ts │ ├── utils │ │ ├── DebouncedMessageQueue.js │ │ ├── common.js │ │ ├── downloadAsImage.ts │ │ ├── errorMessages.js │ │ ├── getClientErrorObject.js │ │ ├── getClientErrorObject.ts │ │ ├── getControlsForVizType.js │ │ ├── hostNamesConfig.js │ │ ├── parseCookie.ts │ │ ├── reducerUtils.js │ │ └── safeStringify.ts │ ├── views │ │ ├── chartList │ │ │ └── ChartList.tsx │ │ ├── dashboardList │ │ │ └── DashboardList.tsx │ │ └── datasetList │ │ │ ├── AddDatasetModal.tsx │ │ │ ├── Button.tsx │ │ │ └── DatasetList.tsx │ ├── visualizations │ │ ├── FilterBox │ │ │ ├── FilterBox.jsx │ │ │ ├── FilterBox.less │ │ │ ├── FilterBoxChartPlugin.js │ │ │ ├── controlPanel.jsx │ │ │ ├── images │ │ │ │ ├── thumbnail.png │ │ │ │ └── thumbnailLarge.png │ │ │ └── transformProps.js │ │ ├── ScatterGL │ │ │ ├── ScatterGL.jsx │ │ │ ├── ScatterGL.less │ │ │ ├── ScatterGLChartPlugin.js │ │ │ ├── images │ │ │ │ ├── thumbnail.png │ │ │ │ └── thumbnailLarge.png │ │ │ └── transformProps.js │ │ ├── TimeTable │ │ │ ├── FormattedNumber.jsx │ │ │ ├── SparklineCell.jsx │ │ │ ├── TimeTable.jsx │ │ │ ├── TimeTable.less │ │ │ ├── TimeTableChartPlugin.js │ │ │ ├── images │ │ │ │ ├── thumbnail.png │ │ │ │ └── thumbnailLarge.png │ │ │ └── transformProps.js │ │ ├── constants.js │ │ └── presets │ │ │ └── MainPreset.js │ └── welcome │ │ ├── App.jsx │ │ ├── App.tsx │ │ ├── DashboardTable.jsx │ │ ├── DashboardTable.tsx │ │ ├── Welcome.jsx │ │ ├── Welcome.tsx │ │ ├── index.jsx │ │ └── index.tsx ├── stylesheets │ ├── fonts │ │ ├── Roboto-Regular.woff │ │ └── Roboto-Regular.woff2 │ ├── less │ │ ├── cosmo │ │ │ ├── bootswatch.less │ │ │ ├── cosmoTheme.js │ │ │ └── variables.less │ │ ├── font_specimens │ │ │ ├── fira_code.less │ │ │ └── inter_ui.less │ │ ├── fonts.less │ │ ├── index.less │ │ └── variables.less │ ├── react-select │ │ └── select.less │ ├── reactable-pagination.less │ └── superset.less ├── tsconfig.json ├── tslint.json ├── webpack.config.js └── webpack.proxy-config.js ├── superset ├── __init__.py ├── app.py ├── assets │ ├── images │ │ ├── favicon.png │ │ ├── superset-logo@2x.png │ │ └── superset-logo@2x1.png │ ├── package.json │ ├── spec │ │ └── javascripts │ │ │ └── sqllab │ │ │ └── ExploreCtasResultsButton_spec.jsx │ ├── src │ │ ├── SqlLab │ │ │ └── components │ │ │ │ └── ExploreCtasResultsButton.jsx │ │ ├── chartPlugins │ │ │ ├── applyOptionExtends.js │ │ │ ├── carouselTable │ │ │ │ ├── CarouselTable.jsx │ │ │ │ ├── index.js │ │ │ │ ├── index.less │ │ │ │ ├── table.png │ │ │ │ └── transformProps.js │ │ │ ├── echarts3DLines │ │ │ │ ├── Echarts3DLines.jsx │ │ │ │ ├── bathymetry_bw_composite_4k.jpg │ │ │ │ ├── index.js │ │ │ │ ├── starfield.jpg │ │ │ │ ├── world.topo.bathy.200401.jpg │ │ │ │ ├── world.topo.bathy.200402.jpg │ │ │ │ └── world.topo.bathy.200403.jpg │ │ │ ├── echartsBar │ │ │ │ ├── EchartsBar.jsx │ │ │ │ └── index.js │ │ │ ├── echartsExample │ │ │ │ ├── EchartsExample.jsx │ │ │ │ └── index.js │ │ │ ├── echartsMapLines │ │ │ │ ├── EchartsMapLines.jsx │ │ │ │ ├── china-us-japan.json │ │ │ │ ├── echarts_lines.png │ │ │ │ └── index.js │ │ │ ├── echartsMultipleLines │ │ │ │ ├── EchartsMultipleLines.jsx │ │ │ │ └── index.js │ │ │ ├── echartsPictorialBar │ │ │ │ ├── EchartsPictorialBar.jsx │ │ │ │ └── index.js │ │ │ ├── echartsPie │ │ │ │ ├── EchartsPie.jsx │ │ │ │ └── index.js │ │ │ ├── odometer │ │ │ │ ├── 37472571-b13b0080-286c-11e8-8495-ef6aba591646.gif │ │ │ │ ├── Odometer.jsx │ │ │ │ ├── fonts │ │ │ │ │ └── UKIJKuYB.ttf │ │ │ │ ├── index.js │ │ │ │ ├── odometer-theme-car.css │ │ │ │ ├── odometer-theme-digital.css │ │ │ │ ├── odometer-theme-minimal.css │ │ │ │ ├── odometer.less │ │ │ │ └── transformProps.js │ │ │ ├── utils.js │ │ │ ├── withAutoRefresh.js │ │ │ └── wordCloud │ │ │ │ ├── Sample_TagCloud_WorldPress.png │ │ │ │ ├── WordCloud.jsx │ │ │ │ ├── index.js │ │ │ │ ├── transformProps.js │ │ │ │ ├── word-cloud.css │ │ │ │ └── word-cloud.js │ │ ├── explore │ │ │ ├── controlPanels │ │ │ │ ├── CarouselTable.js │ │ │ │ ├── Echarts3DLines.js │ │ │ │ ├── EchartsBar.js │ │ │ │ ├── EchartsLine.js │ │ │ │ ├── EchartsMapLines.js │ │ │ │ ├── EchartsMultipleLines.js │ │ │ │ ├── EchartsPictorialBar.js │ │ │ │ ├── EchartsPie.js │ │ │ │ ├── Odometer.js │ │ │ │ ├── ScatterGL.jsx │ │ │ │ └── WordCloud3D.js │ │ │ ├── controlUtils.js │ │ │ └── controls.jsx │ │ ├── setup │ │ │ └── setupPlugins.ts │ │ └── visualizations │ │ │ └── ScatterGL │ │ │ ├── ScatterGL.jsx │ │ │ ├── ScatterGL.less │ │ │ ├── ScatterGLChartPlugin.js │ │ │ ├── images │ │ │ ├── thumbnail.png │ │ │ └── thumbnailLarge.png │ │ │ └── transformProps.js │ └── version_info.json ├── bin │ ├── __init__.py │ └── superset ├── charts │ ├── __init__.py │ ├── api.py │ ├── commands │ │ ├── __init__.py │ │ ├── bulk_delete.py │ │ ├── create.py │ │ ├── delete.py │ │ ├── exceptions.py │ │ └── update.py │ ├── dao.py │ ├── filters.py │ └── schemas.py ├── cli.py ├── commands │ ├── __init__.py │ ├── base.py │ ├── exceptions.py │ └── utils.py ├── common │ ├── __init__.py │ ├── query_context.py │ ├── query_object.py │ └── tags.py ├── config.py ├── connectors │ ├── __init__.py │ ├── base │ │ ├── __init__.py │ │ ├── models.py │ │ └── views.py │ ├── connector_registry.py │ ├── druid │ │ ├── __init__.py │ │ ├── models.py │ │ └── views.py │ └── sqla │ │ ├── __init__.py │ │ ├── models.py │ │ └── views.py ├── constants.py ├── dao │ ├── __init__.py │ ├── base.py │ └── exceptions.py ├── dashboards │ ├── __init__.py │ ├── api.py │ ├── commands │ │ ├── __init__.py │ │ ├── bulk_delete.py │ │ ├── create.py │ │ ├── delete.py │ │ ├── exceptions.py │ │ └── update.py │ ├── dao.py │ ├── filters.py │ └── schemas.py ├── databases │ ├── __init__.py │ ├── api.py │ ├── decorators.py │ └── schemas.py ├── dataframe.py ├── datasets │ ├── __init__.py │ ├── api.py │ ├── commands │ │ ├── __init__.py │ │ ├── create.py │ │ ├── delete.py │ │ ├── exceptions.py │ │ ├── refresh.py │ │ └── update.py │ ├── dao.py │ └── schemas.py ├── db_engine_specs │ ├── __init__.py │ ├── athena.py │ ├── base.py │ ├── bigquery.py │ ├── clickhouse.py │ ├── cockroachdb.py │ ├── db2.py │ ├── dremio.py │ ├── drill.py │ ├── druid.py │ ├── elasticsearch.py │ ├── exasol.py │ ├── gsheets.py │ ├── hana.py │ ├── hive.py │ ├── impala.py │ ├── kylin.py │ ├── mssql.py │ ├── mysql.py │ ├── oracle.py │ ├── pinot.py │ ├── postgres.py │ ├── presto.py │ ├── redshift.py │ ├── snowflake.py │ ├── sqlite.py │ ├── teradata.py │ └── vertica.py ├── db_engines │ ├── __init__.py │ └── hive.py ├── errors.py ├── examples │ ├── __init__.py │ ├── bart_lines.py │ ├── birth_names.py │ ├── countries.md │ ├── countries.py │ ├── country_map.py │ ├── css_templates.py │ ├── deck.py │ ├── energy.py │ ├── flights.py │ ├── helpers.py │ ├── long_lat.py │ ├── misc_dashboard.py │ ├── multi_line.py │ ├── multiformat_time_series.py │ ├── paris.py │ ├── random_time_series.py │ ├── sf_population_polygons.py │ ├── tabbed_dashboard.py │ ├── unicode_test_data.py │ └── world_bank.py ├── exceptions.py ├── extensions.py ├── forms.py ├── jinja_context.py ├── legacy.py ├── migrations │ ├── README │ ├── __init__.py │ ├── alembic.ini │ ├── env.py │ ├── script.py.mako │ └── versions │ │ ├── 0a6f12f60c73_add_role_level_security.py │ │ ├── 0b1f1ab473c0_add_extra_column_to_query.py │ │ ├── 0c5070e96b57_add_user_attributes_table.py │ │ ├── 11c737c17cc6_deprecate_restricted_metrics.py │ │ ├── 1226819ee0e3_fix_wrong_constraint_on_table_columns.py │ │ ├── 1296d28ec131_druid_exports.py │ │ ├── 12d55656cbca_is_featured.py │ │ ├── 130915240929_is_sqllab_viz_flow.py │ │ ├── 1495eb914ad3_time_range.py │ │ ├── 18dc26817ad2_.py │ │ ├── 18e88e1cc004_making_audit_nullable.py │ │ ├── 190188938582_adding_unique_constraint_on_dashboard_slices_tbl.py │ │ ├── 19a814813610_adding_metric_warning_text.py │ │ ├── 1a1d627ebd8e_position_json.py │ │ ├── 1a48a5411020_adding_slug_to_dash.py │ │ ├── 1d2ddd543133_log_dt.py │ │ ├── 1d9e835a84f9_.py │ │ ├── 1e2841a4128_.py │ │ ├── 21e88bc06c02_annotation_migration.py │ │ ├── 258b5280a45e_form_strip_leading_and_trailing_whitespace.py │ │ ├── 2591d77e9831_user_id.py │ │ ├── 27ae655e4247_make_creator_owners.py │ │ ├── 289ce07647b_add_encrypted_password_field.py │ │ ├── 2929af7925ed_tz_offsets_in_data_sources.py │ │ ├── 2f1d15e8a6af_add_alerts.py │ │ ├── 2fcdcb35e487_saved_queries.py │ │ ├── 30bb17c0dc76_.py │ │ ├── 315b3f4da9b0_adding_log_model.py │ │ ├── 3325d4caccc8_dashboard_scoped_filters.py │ │ ├── 33d996bcc382_update_slice_model.py │ │ ├── 3b626e2a6783_sync_db_with_models.py │ │ ├── 3c3ffe173e4f_add_sql_string_to_table.py │ │ ├── 3dda56f1c4c6_migrate_num_period_compare_and_period_.py │ │ ├── 3e1b21cd94a4_change_owner_to_m2m_relation_on_.py │ │ ├── 41f6a59a61f2_database_options_for_sql_lab.py │ │ ├── 430039611635_log_more.py │ │ ├── 43df8de3a5f4_dash_json.py │ │ ├── 4451805bbaa1_remove_double_percents.py │ │ ├── 4500485bde7d_allow_run_sync_async.py │ │ ├── 45e7da7cfeba_.py │ │ ├── 46ba6aaaac97_.py │ │ ├── 46f444d8b9b7_remove_coordinator_from_druid_cluster_.py │ │ ├── 472d2f73dfd4_.py │ │ ├── 4736ec66ce19_.py │ │ ├── 4ce8df208545_migrate_time_range_for_default_filters.py │ │ ├── 4e6a06bad7a8_init.py │ │ ├── 4fa88fe24e94_owners_many_to_many.py │ │ ├── 525c854f0005_log_this_plus.py │ │ ├── 55179c7f25c7_sqla_descr.py │ │ ├── 55e910a74826_add_metadata_column_to_annotation_model_.py │ │ ├── 5a7bad26f2a7_.py │ │ ├── 5afa9079866a_serialize_schema_permissions_py.py │ │ ├── 5ccf602336a0_.py │ │ ├── 5e4a03ef0bf0_add_request_access_model.py │ │ ├── 620241d1153f_update_time_grain_sqla.py │ │ ├── 6414e83d82b7_.py │ │ ├── 65903709c321_allow_dml.py │ │ ├── 67a6ac9b727b_update_spatial_params.py │ │ ├── 6c7537a6004a_models_for_email_reports.py │ │ ├── 705732c70154_.py │ │ ├── 72428d1ea401_add_tmp_schema_name_to_the_query_object.py │ │ ├── 732f1c06bcbf_add_fetch_values_predicate.py │ │ ├── 743a117f0d98_add_slack_to_the_schedule.py │ │ ├── 7467e77870e4_remove_aggs.py │ │ ├── 763d4b211ec9_fixing_audit_fk.py │ │ ├── 78ee127d0d1d_reconvert_legacy_filters_into_adhoc.py │ │ ├── 7dbf98566af7_slice_description.py │ │ ├── 7e3ddad2a00b_results_key_to_query.py │ │ ├── 7f2635b51f5d_update_base_columns.py │ │ ├── 7fcdcde0761c_.py │ │ ├── 80a67c5192fa_single_pie_chart_metric.py │ │ ├── 80aa3f04bc82_add_parent_ids_in_dashboard_layout.py │ │ ├── 817e1c9b09d0_add_not_null_to_dbs_sqlalchemy_url.py │ │ ├── 836c0bf75904_cache_timeouts.py │ │ ├── 867bf4f117f9_adding_extra_field_to_database_model.py │ │ ├── 89115a40e8ea_change_table_schema_description_to_long_.py │ │ ├── 8b70aa3d0f87_.py │ │ ├── 8e80a26a31db_.py │ │ ├── 937d04c16b64_update_datasources.py │ │ ├── 956a063c52b3_adjusting_key_length.py │ │ ├── 960c69cb1f5b_.py │ │ ├── 979c03af3341_.py │ │ ├── a2d606a761d9_adding_favstar_model.py │ │ ├── a33a03f16c4a_add_extra_column_to_savedquery.py │ │ ├── a61b40f9f57f_remove_allow_run_sync.py │ │ ├── a65458420354_add_result_backend_time_logging.py │ │ ├── a6c18f869a4e_query_start_running_time.py │ │ ├── a72cb0ebeb22_deprecate_dbs_perm_column.py │ │ ├── a99f2f7c195a_rewriting_url_from_shortner_with_new_.py │ │ ├── a9c47e2c1547_add_impersonate_user_to_dbs.py │ │ ├── ab3d66c4246e_add_cache_timeout_to_druid_cluster.py │ │ ├── ab8c66efdd01_resample.py │ │ ├── ad4d656d92bc_add_avg_metric.py │ │ ├── ad82a75afd82_add_query_model.py │ │ ├── afb7730f6a9c_remove_empty_filters.py │ │ ├── afc69274c25a_alter_sql_column_data_type_in_query_mysql_table.py │ │ ├── b318dfe5fb6c_adding_verbose_name_to_druid_column.py │ │ ├── b347b202819b_.py │ │ ├── b4456560d4f3_change_table_unique_constraint.py │ │ ├── b46fa1b0b39e_add_params_to_tables.py │ │ ├── b4a38aa87893_deprecate_database_expression.py │ │ ├── b5998378c225_add_certificate_to_dbs.py │ │ ├── b6fa807eac07_make_names_non_nullable.py │ │ ├── bb51420eaf83_add_schema_to_table_model.py │ │ ├── bcf3126872fc_add_keyvalue.py │ │ ├── bddc498dd179_adhoc_filters.py │ │ ├── bebcf3fed1fe_convert_dashboard_v1_positions.py │ │ ├── bf706ae5eb46_cal_heatmap_metric_to_metrics.py │ │ ├── c18bd4186f15_.py │ │ ├── c2acd2cf3df2_alter_type_of_dbs_encrypted_extra.py │ │ ├── c3a8f8611885_materializing_permission.py │ │ ├── c5756bec8b47_time_grain_sqla.py │ │ ├── c611f2b591b8_dim_spec.py │ │ ├── c617da68de7d_form_nullable.py │ │ ├── c829ff0b37d0_.py │ │ ├── c82ee8a39623_add_implicit_tags.py │ │ ├── c9495751e314_.py │ │ ├── ca69c70ec99b_tracking_url.py │ │ ├── cca2f5d568c8_add_encrypted_extra_to_dbs.py │ │ ├── cefabc8f7d38_increase_size_of_name_column_in_ab_view_.py │ │ ├── d2424a248d63_.py │ │ ├── d39b1e37131d_.py │ │ ├── d6db5a5cdb5d_.py │ │ ├── d6ffdf31bdd4_add_published_column_to_dashboards.py │ │ ├── d7c1a0d6f2da_remove_limit_used_from_query_model.py │ │ ├── d827694c7555_css_templates.py │ │ ├── d8bc074f7aad_add_new_field_is_restricted_to_.py │ │ ├── d94d33dbe938_form_strip.py │ │ ├── db0c65b146bd_update_slice_model_json.py │ │ ├── db4b49eb0782_add_tables_for_sql_lab_state.py │ │ ├── db527d8c4c78_add_db_verbose_name.py │ │ ├── ddd6ebdd853b_annotations.py │ │ ├── de021a1ca60d_.py │ │ ├── def97f26fdfb_add_index_to_tagged_object.py │ │ ├── e3970889f38e_.py │ │ ├── e46f2d27a08e_materialize_perms.py │ │ ├── e502db2af7be_add_template_params_to_tables.py │ │ ├── e553e78e90c5_add_druid_auth_py_py.py │ │ ├── e557699a813e_add_tables_relation_to_row_level_.py │ │ ├── e68c4473c581_allow_multi_schema_metadata_fetch.py │ │ ├── e866bd2d4976_smaller_grid.py │ │ ├── e96dbf2cfef0_datasource_cluster_fk.py │ │ ├── e9df189e5c7e_update_base_metrics.py │ │ ├── ea033256294a_.py │ │ ├── ea396d202291_ctas_method_in_query.py │ │ ├── ec1f88a35cc6_.py │ │ ├── eca4694defa7_sqllab_setting_defaults.py │ │ ├── ef8843b41dac_.py │ │ ├── f0fbf6129e13_adding_verbose_name_to_tablecolumn.py │ │ ├── f162a1dea4c4_d3format_by_metric.py │ │ ├── f18570e03440_add_query_result_key_index.py │ │ ├── f1f2d4af5b90_.py │ │ ├── f231d82b9b26_.py │ │ ├── f959a6652acd_.py │ │ ├── f9a30386bd74_cleanup_time_grainularity.py │ │ ├── fb13d49b72f9_better_filters.py │ │ ├── fbd55e0f83eb_.py │ │ ├── fc480c87706c_.py │ │ └── fee7b758c130_.py ├── models │ ├── __init__.py │ ├── alerts.py │ ├── annotations.py │ ├── core.py │ ├── dashboard.py │ ├── datasource_access_request.py │ ├── helpers.py │ ├── schedules.py │ ├── slice.py │ ├── sql_lab.py │ ├── sql_types │ │ ├── __init__.py │ │ └── presto_sql_types.py │ ├── tags.py │ └── user_attributes.py ├── queries │ ├── __init__.py │ ├── api.py │ ├── dao.py │ ├── filters.py │ └── schemas.py ├── result_set.py ├── security │ ├── __init__.py │ ├── analytics_db_safety.py │ └── manager.py ├── sql_lab.py ├── sql_parse.py ├── sql_validators │ ├── __init__.py │ ├── base.py │ └── presto_db.py ├── static │ └── .gitkeep ├── stats_logger.py ├── tasks │ ├── __init__.py │ ├── cache.py │ ├── celery_app.py │ ├── schedules.py │ ├── slack_util.py │ └── thumbnails.py ├── templates │ ├── appbuilder │ │ ├── baselayout.html │ │ ├── general │ │ │ ├── model │ │ │ │ └── list.html │ │ │ └── widgets │ │ │ │ ├── base_list.html │ │ │ │ └── search.html │ │ ├── navbar.html │ │ └── navbar_right.html │ ├── email │ │ ├── role_extended.txt │ │ └── role_granted.txt │ └── superset │ │ ├── add_slice.html │ │ ├── base.html │ │ ├── basic.html │ │ ├── csrf_token.json │ │ ├── dashboard.html │ │ ├── dashboard_v1_deprecated.html │ │ ├── export_dashboards.html │ │ ├── fab_overrides │ │ ├── list.html │ │ ├── list_role.html │ │ └── list_with_checkboxes.html │ │ ├── flash_wrapper.html │ │ ├── form_view │ │ ├── csv_to_database_view │ │ │ └── edit.html │ │ └── excel_to_database_view │ │ │ └── edit.html │ │ ├── import_dashboards.html │ │ ├── models │ │ ├── database │ │ │ ├── add.html │ │ │ ├── edit.html │ │ │ └── macros.html │ │ └── savedquery │ │ │ └── show.html │ │ ├── paper-theme.html │ │ ├── partials │ │ └── asset_bundle.html │ │ ├── reports │ │ └── slice_data.html │ │ ├── request_access.html │ │ ├── theme.html │ │ ├── traceback.html │ │ └── welcome.html ├── translations │ ├── __init__.py │ ├── babel.cfg │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── messages.json │ │ │ └── messages.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── messages.json │ │ │ └── messages.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── messages.json │ │ │ └── messages.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── messages.json │ │ │ └── messages.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── messages.json │ │ │ └── messages.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ ├── messages.json │ │ │ └── messages.po │ ├── ko │ │ └── LC_MESSAGES │ │ │ ├── messages.json │ │ │ └── messages.po │ ├── messages.pot │ ├── pt │ │ └── LC_MESSAGES │ │ │ ├── message.po │ │ │ └── messages.json │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── messages.json │ │ │ └── messages.po │ ├── requirements.txt │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── messages.json │ │ │ └── messages.po │ ├── utils.py │ └── zh │ │ └── LC_MESSAGES │ │ ├── messages.json │ │ └── messages.po ├── typing.py ├── utils │ ├── __init__.py │ ├── cache.py │ ├── cache_manager.py │ ├── core.py │ ├── dashboard_filter_scopes_converter.py │ ├── dashboard_import_export.py │ ├── dates.py │ ├── decorators.py │ ├── dict_import_export.py │ ├── feature_flag_manager.py │ ├── hashing.py │ ├── import_datasource.py │ ├── log.py │ ├── logging_configurator.py │ ├── pandas_postprocessing.py │ ├── schema.py │ ├── screenshots.py │ ├── url_map_converters.py │ └── urls.py ├── views │ ├── __init__.py │ ├── access_requests.py │ ├── alerts.py │ ├── annotations.py │ ├── api.py │ ├── base.py │ ├── base_api.py │ ├── base_schemas.py │ ├── chart │ │ ├── __init__.py │ │ ├── filters.py │ │ ├── mixin.py │ │ └── views.py │ ├── core.py │ ├── css_templates.py │ ├── dashboard │ │ ├── __init__.py │ │ ├── filters.py │ │ ├── mixin.py │ │ └── views.py │ ├── database │ │ ├── __init__.py │ │ ├── filters.py │ │ ├── forms.py │ │ ├── mixins.py │ │ ├── validators.py │ │ └── views.py │ ├── datasource.py │ ├── filters.py │ ├── health.py │ ├── key_value.py │ ├── log │ │ ├── __init__.py │ │ ├── api.py │ │ └── views.py │ ├── redirects.py │ ├── schedules.py │ ├── sql_lab.py │ ├── tags.py │ └── utils.py ├── viz.py └── viz_sip38.py ├── tests ├── __init__.py ├── access_tests.py ├── base_api_tests.py ├── base_tests.py ├── cache_tests.py ├── celery_tests.py ├── charts │ ├── __init__.py │ ├── api_tests.py │ └── schema_tests.py ├── config_tests.py ├── core_tests.py ├── dashboard_tests.py ├── dashboards │ ├── __init__.py │ ├── api_tests.py │ └── dao_tests.py ├── database_api_tests.py ├── dataframe_test.py ├── datasets │ ├── __init__.py │ └── api_tests.py ├── datasource_tests.py ├── db_engine_specs │ ├── __init__.py │ ├── athena_tests.py │ ├── base_engine_spec_tests.py │ ├── base_tests.py │ ├── bigquery_tests.py │ ├── clickhouse_tests.py │ ├── drill_tests.py │ ├── druid_tests.py │ ├── elasticsearch_tests.py │ ├── hive_tests.py │ ├── impala_tests.py │ ├── kylin_tests.py │ ├── mssql_tests.py │ ├── mysql_tests.py │ ├── oracle_tests.py │ ├── pinot_tests.py │ ├── postgres_tests.py │ ├── presto_tests.py │ ├── snowflake_tests.py │ └── sqlite_tests.py ├── dict_import_export_tests.py ├── druid_func_tests.py ├── druid_func_tests_sip38.py ├── druid_tests.py ├── email_tests.py ├── event_logger_tests.py ├── feature_flag_tests.py ├── fixtures │ ├── __init__.py │ ├── certificates.py │ ├── dataframes.py │ ├── datasource.py │ ├── deck_geojson_form_data.json │ ├── deck_path_form_data.json │ ├── pyodbcRow.py │ ├── query_context.py │ ├── sample.png │ └── trends.csv ├── form_tests.py ├── import_export_tests.py ├── jinja_context_tests.py ├── load_examples_test.py ├── log_api_tests.py ├── logging_configurator_tests.py ├── migration_tests.py ├── model_tests.py ├── pandas_postprocessing_tests.py ├── queries │ ├── __init__.py │ └── api_tests.py ├── query_context_tests.py ├── result_set_tests.py ├── schedules_test.py ├── security │ ├── __init__.py │ └── analytics_db_safety_tests.py ├── security_tests.py ├── sql_parse_tests.py ├── sql_validator_tests.py ├── sqla_models_tests.py ├── sqllab_tests.py ├── stats_logger_tests.py ├── strategy_tests.py ├── superset_test_config.py ├── superset_test_config_sqllab_backend_persist.py ├── superset_test_config_thumbnails.py ├── superset_test_custom_template_processors.py ├── tagging_tests.py ├── test_app.py ├── thumbnails_tests.py ├── utils.py ├── utils_tests.py └── viz_tests.py └── tox.ini /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.dockerignore -------------------------------------------------------------------------------- /.flaskenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.flaskenv -------------------------------------------------------------------------------- /.fossa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.fossa.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/sip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.github/ISSUE_TEMPLATE/sip.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/issue_label_bot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.github/issue_label_bot.yaml -------------------------------------------------------------------------------- /.github/move.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.github/move.yml -------------------------------------------------------------------------------- /.github/prlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.github/prlint.json -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/bashlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.github/workflows/bashlib.sh -------------------------------------------------------------------------------- /.github/workflows/caches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.github/workflows/caches.js -------------------------------------------------------------------------------- /.github/workflows/license-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.github/workflows/license-check.yml -------------------------------------------------------------------------------- /.github/workflows/prefer_typescript.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.github/workflows/prefer_typescript.yml -------------------------------------------------------------------------------- /.github/workflows/superset-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.github/workflows/superset-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/superset-frontend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.github/workflows/superset-frontend.yml -------------------------------------------------------------------------------- /.github/workflows/superset-python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.github/workflows/superset-python.yml -------------------------------------------------------------------------------- /.github/workflows/superset-translations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.github/workflows/superset-translations.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.pylintrc -------------------------------------------------------------------------------- /.rat-excludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/.rat-excludes -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DISCLAIMER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/DISCLAIMER -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/Dockerfile-dev -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/INSTALL.md -------------------------------------------------------------------------------- /INTHEWILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/INTHEWILD.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING/Dockerfile.from_local_tarball: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/RELEASING/Dockerfile.from_local_tarball -------------------------------------------------------------------------------- /RELEASING/Dockerfile.from_svn_tarball: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/RELEASING/Dockerfile.from_svn_tarball -------------------------------------------------------------------------------- /RELEASING/Dockerfile.make_docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/RELEASING/Dockerfile.make_docs -------------------------------------------------------------------------------- /RELEASING/Dockerfile.make_tarball: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/RELEASING/Dockerfile.make_tarball -------------------------------------------------------------------------------- /RELEASING/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/RELEASING/README.md -------------------------------------------------------------------------------- /RELEASING/email_templates/announce.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/RELEASING/email_templates/announce.j2 -------------------------------------------------------------------------------- /RELEASING/email_templates/result_ipmc.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/RELEASING/email_templates/result_ipmc.j2 -------------------------------------------------------------------------------- /RELEASING/email_templates/result_pmc.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/RELEASING/email_templates/result_pmc.j2 -------------------------------------------------------------------------------- /RELEASING/email_templates/vote_ipmc.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/RELEASING/email_templates/vote_ipmc.j2 -------------------------------------------------------------------------------- /RELEASING/email_templates/vote_pmc.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/RELEASING/email_templates/vote_pmc.j2 -------------------------------------------------------------------------------- /RELEASING/from_tarball_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/RELEASING/from_tarball_entrypoint.sh -------------------------------------------------------------------------------- /RELEASING/make_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/RELEASING/make_docs.sh -------------------------------------------------------------------------------- /RELEASING/make_docs_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/RELEASING/make_docs_entrypoint.sh -------------------------------------------------------------------------------- /RELEASING/make_tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/RELEASING/make_tarball.sh -------------------------------------------------------------------------------- /RELEASING/make_tarball_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/RELEASING/make_tarball_entrypoint.sh -------------------------------------------------------------------------------- /RELEASING/send_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/RELEASING/send_email.py -------------------------------------------------------------------------------- /RELEASING/set_release_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/RELEASING/set_release_env.sh -------------------------------------------------------------------------------- /RELEASING/test_run_tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/RELEASING/test_run_tarball.sh -------------------------------------------------------------------------------- /UPDATING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/UPDATING.md -------------------------------------------------------------------------------- /docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docker-compose.prod.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docker/.env -------------------------------------------------------------------------------- /docker/.env.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docker/.env.prod -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docker/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/docker-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docker/docker-init.sh -------------------------------------------------------------------------------- /docker/frontend-mem-nag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docker/frontend-mem-nag.sh -------------------------------------------------------------------------------- /docker/pythonpath_dev/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docker/pythonpath_dev/.gitignore -------------------------------------------------------------------------------- /docker/pythonpath_dev/superset_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docker/pythonpath_dev/superset_config.py -------------------------------------------------------------------------------- /docker/pythonpath_dev/superset_config_local.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docker/pythonpath_dev/superset_config_local.example -------------------------------------------------------------------------------- /docker/requirements-extra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docker/requirements-extra.txt -------------------------------------------------------------------------------- /docker/simhei.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docker/simhei.ttf -------------------------------------------------------------------------------- /docker/simsun.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docker/simsun.ttc -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docs/_static/docs.css -------------------------------------------------------------------------------- /docs/_static/images: -------------------------------------------------------------------------------- 1 | ../../superset-frontend/images -------------------------------------------------------------------------------- /docs/admintutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docs/admintutorial.rst -------------------------------------------------------------------------------- /docs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docs/build.sh -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/druid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docs/druid.rst -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docs/faq.rst -------------------------------------------------------------------------------- /docs/gallery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docs/gallery.rst -------------------------------------------------------------------------------- /docs/import_export_datasources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docs/import_export_datasources.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/issue_code_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docs/issue_code_reference.rst -------------------------------------------------------------------------------- /docs/misc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docs/misc.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docs/security.rst -------------------------------------------------------------------------------- /docs/sqllab.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docs/sqllab.rst -------------------------------------------------------------------------------- /docs/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docs/tutorials.rst -------------------------------------------------------------------------------- /docs/usertutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docs/usertutorial.rst -------------------------------------------------------------------------------- /docs/videos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docs/videos.rst -------------------------------------------------------------------------------- /docs/visualization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/docs/visualization.rst -------------------------------------------------------------------------------- /helm/superset/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/helm/superset/.gitignore -------------------------------------------------------------------------------- /helm/superset/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/helm/superset/.helmignore -------------------------------------------------------------------------------- /helm/superset/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/helm/superset/Chart.yaml -------------------------------------------------------------------------------- /helm/superset/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/helm/superset/requirements.yaml -------------------------------------------------------------------------------- /helm/superset/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/helm/superset/templates/NOTES.txt -------------------------------------------------------------------------------- /helm/superset/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/helm/superset/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/superset/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/helm/superset/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/superset/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/helm/superset/templates/ingress.yaml -------------------------------------------------------------------------------- /helm/superset/templates/init-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/helm/superset/templates/init-job.yaml -------------------------------------------------------------------------------- /helm/superset/templates/secret-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/helm/superset/templates/secret-env.yaml -------------------------------------------------------------------------------- /helm/superset/templates/secret-superset-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/helm/superset/templates/secret-superset-config.yaml -------------------------------------------------------------------------------- /helm/superset/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/helm/superset/templates/service.yaml -------------------------------------------------------------------------------- /helm/superset/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/helm/superset/values.yaml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/check_license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/scripts/check_license.sh -------------------------------------------------------------------------------- /scripts/fossa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/scripts/fossa.sh -------------------------------------------------------------------------------- /scripts/gen_changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/scripts/gen_changelog.sh -------------------------------------------------------------------------------- /scripts/generate_frontend_ts_tasklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/scripts/generate_frontend_ts_tasklist.js -------------------------------------------------------------------------------- /scripts/permissions_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/scripts/permissions_cleanup.py -------------------------------------------------------------------------------- /scripts/pypi_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/scripts/pypi_push.sh -------------------------------------------------------------------------------- /scripts/python_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/scripts/python_tests.sh -------------------------------------------------------------------------------- /scripts/sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/scripts/sign.sh -------------------------------------------------------------------------------- /scripts/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/scripts/tests/README.md -------------------------------------------------------------------------------- /scripts/tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/scripts/tests/run.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/setup.py -------------------------------------------------------------------------------- /sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/sources.list -------------------------------------------------------------------------------- /superset-frontend/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/.eslintignore -------------------------------------------------------------------------------- /superset-frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/.eslintrc.js -------------------------------------------------------------------------------- /superset-frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/.gitignore -------------------------------------------------------------------------------- /superset-frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/.prettierrc -------------------------------------------------------------------------------- /superset-frontend/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/babel.config.js -------------------------------------------------------------------------------- /superset-frontend/branding/superset-logo-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/branding/superset-logo-horiz.png -------------------------------------------------------------------------------- /superset-frontend/branding/superset-logo-horiz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/branding/superset-logo-horiz.svg -------------------------------------------------------------------------------- /superset-frontend/branding/superset-logo-stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/branding/superset-logo-stacked.png -------------------------------------------------------------------------------- /superset-frontend/branding/superset-logo-stacked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/branding/superset-logo-stacked.svg -------------------------------------------------------------------------------- /superset-frontend/cypress-base/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/cypress-base/.eslintrc -------------------------------------------------------------------------------- /superset-frontend/cypress-base/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/cypress-base/.gitignore -------------------------------------------------------------------------------- /superset-frontend/cypress-base/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/cypress-base/cypress.json -------------------------------------------------------------------------------- /superset-frontend/cypress-base/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/cypress-base/package-lock.json -------------------------------------------------------------------------------- /superset-frontend/cypress-base/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/cypress-base/package.json -------------------------------------------------------------------------------- /superset-frontend/cypress-base/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/cypress-base/tsconfig.json -------------------------------------------------------------------------------- /superset-frontend/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/cypress.json -------------------------------------------------------------------------------- /superset-frontend/cypress/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/cypress/.eslintrc -------------------------------------------------------------------------------- /superset-frontend/cypress/integration/sqllab/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/cypress/integration/sqllab/tabs.js -------------------------------------------------------------------------------- /superset-frontend/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/cypress/plugins/index.js -------------------------------------------------------------------------------- /superset-frontend/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/cypress/support/commands.js -------------------------------------------------------------------------------- /superset-frontend/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/cypress/support/index.js -------------------------------------------------------------------------------- /superset-frontend/cypress/utils/readResponseBlob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/cypress/utils/readResponseBlob.js -------------------------------------------------------------------------------- /superset-frontend/cypress_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/cypress_build.sh -------------------------------------------------------------------------------- /superset-frontend/docs: -------------------------------------------------------------------------------- 1 | ../../docs/_build/html/ -------------------------------------------------------------------------------- /superset-frontend/fonts/FiraCode/specimen.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/fonts/FiraCode/specimen.less -------------------------------------------------------------------------------- /superset-frontend/fonts/InterUI/Inter-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/fonts/InterUI/Inter-Black.woff -------------------------------------------------------------------------------- /superset-frontend/fonts/InterUI/Inter-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/fonts/InterUI/Inter-Black.woff2 -------------------------------------------------------------------------------- /superset-frontend/fonts/InterUI/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/fonts/InterUI/Inter-Bold.woff -------------------------------------------------------------------------------- /superset-frontend/fonts/InterUI/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/fonts/InterUI/Inter-Bold.woff2 -------------------------------------------------------------------------------- /superset-frontend/fonts/InterUI/Inter-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/fonts/InterUI/Inter-ExtraBold.woff -------------------------------------------------------------------------------- /superset-frontend/fonts/InterUI/Inter-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/fonts/InterUI/Inter-Italic.woff -------------------------------------------------------------------------------- /superset-frontend/fonts/InterUI/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/fonts/InterUI/Inter-Italic.woff2 -------------------------------------------------------------------------------- /superset-frontend/fonts/InterUI/Inter-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/fonts/InterUI/Inter-Light.woff -------------------------------------------------------------------------------- /superset-frontend/fonts/InterUI/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/fonts/InterUI/Inter-Light.woff2 -------------------------------------------------------------------------------- /superset-frontend/fonts/InterUI/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/fonts/InterUI/Inter-Medium.woff -------------------------------------------------------------------------------- /superset-frontend/fonts/InterUI/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/fonts/InterUI/Inter-Medium.woff2 -------------------------------------------------------------------------------- /superset-frontend/fonts/InterUI/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/fonts/InterUI/Inter-Regular.woff -------------------------------------------------------------------------------- /superset-frontend/fonts/InterUI/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/fonts/InterUI/Inter-Regular.woff2 -------------------------------------------------------------------------------- /superset-frontend/fonts/InterUI/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/fonts/InterUI/Inter-SemiBold.woff -------------------------------------------------------------------------------- /superset-frontend/fonts/InterUI/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/fonts/InterUI/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /superset-frontend/fonts/InterUI/Inter-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/fonts/InterUI/Inter-Thin.woff -------------------------------------------------------------------------------- /superset-frontend/fonts/InterUI/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/fonts/InterUI/Inter-Thin.woff2 -------------------------------------------------------------------------------- /superset-frontend/fonts/InterUI/Inter.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/fonts/InterUI/Inter.var.woff2 -------------------------------------------------------------------------------- /superset-frontend/images/apache_feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/apache_feather.png -------------------------------------------------------------------------------- /superset-frontend/images/babies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/babies.png -------------------------------------------------------------------------------- /superset-frontend/images/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/bubble.png -------------------------------------------------------------------------------- /superset-frontend/images/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/cloud.png -------------------------------------------------------------------------------- /superset-frontend/images/create_role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/create_role.png -------------------------------------------------------------------------------- /superset-frontend/images/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/dash.png -------------------------------------------------------------------------------- /superset-frontend/images/druid_agg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/druid_agg.png -------------------------------------------------------------------------------- /superset-frontend/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/favicon.png -------------------------------------------------------------------------------- /superset-frontend/images/icons/cancel-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/icons/cancel-x.svg -------------------------------------------------------------------------------- /superset-frontend/images/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/icons/check.svg -------------------------------------------------------------------------------- /superset-frontend/images/icons/checkbox-half.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/icons/checkbox-half.svg -------------------------------------------------------------------------------- /superset-frontend/images/icons/checkbox-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/icons/checkbox-off.svg -------------------------------------------------------------------------------- /superset-frontend/images/icons/checkbox-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/icons/checkbox-on.svg -------------------------------------------------------------------------------- /superset-frontend/images/icons/circle-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/icons/circle-check.svg -------------------------------------------------------------------------------- /superset-frontend/images/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/icons/close.svg -------------------------------------------------------------------------------- /superset-frontend/images/icons/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/icons/compass.svg -------------------------------------------------------------------------------- /superset-frontend/images/icons/dataset_physical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/icons/dataset_physical.svg -------------------------------------------------------------------------------- /superset-frontend/images/icons/dataset_virtual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/icons/dataset_virtual.svg -------------------------------------------------------------------------------- /superset-frontend/images/icons/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/icons/error.svg -------------------------------------------------------------------------------- /superset-frontend/images/icons/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/icons/pencil.svg -------------------------------------------------------------------------------- /superset-frontend/images/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/icons/search.svg -------------------------------------------------------------------------------- /superset-frontend/images/icons/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/icons/share.svg -------------------------------------------------------------------------------- /superset-frontend/images/icons/sort-asc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/icons/sort-asc.svg -------------------------------------------------------------------------------- /superset-frontend/images/icons/sort-desc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/icons/sort-desc.svg -------------------------------------------------------------------------------- /superset-frontend/images/icons/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/icons/sort.svg -------------------------------------------------------------------------------- /superset-frontend/images/icons/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/icons/trash.svg -------------------------------------------------------------------------------- /superset-frontend/images/icons/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/icons/warning.svg -------------------------------------------------------------------------------- /superset-frontend/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/loading.gif -------------------------------------------------------------------------------- /superset-frontend/images/noimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/noimg.png -------------------------------------------------------------------------------- /superset-frontend/images/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/s.png -------------------------------------------------------------------------------- /superset-frontend/images/screenshots/bank_dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/screenshots/bank_dash.png -------------------------------------------------------------------------------- /superset-frontend/images/screenshots/deckgl_dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/screenshots/deckgl_dash.png -------------------------------------------------------------------------------- /superset-frontend/images/screenshots/explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/screenshots/explore.png -------------------------------------------------------------------------------- /superset-frontend/images/screenshots/sqllab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/screenshots/sqllab.png -------------------------------------------------------------------------------- /superset-frontend/images/superset-logo-horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/superset-logo-horiz.png -------------------------------------------------------------------------------- /superset-frontend/images/superset-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/superset-logo@2x.png -------------------------------------------------------------------------------- /superset-frontend/images/superset-logo@2x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/superset-logo@2x1.png -------------------------------------------------------------------------------- /superset-frontend/images/superset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/superset.png -------------------------------------------------------------------------------- /superset-frontend/images/superset_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/superset_screenshot.png -------------------------------------------------------------------------------- /superset-frontend/images/tutorial/add_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/tutorial/add_db.png -------------------------------------------------------------------------------- /superset-frontend/images/usertutorial/annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/usertutorial/annotation.png -------------------------------------------------------------------------------- /superset-frontend/images/usertutorial/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/usertutorial/markdown.png -------------------------------------------------------------------------------- /superset-frontend/images/usertutorial/resample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/usertutorial/resample.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/area.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/bar.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/box_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/box_plot.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/bubble.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/bullet.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/chord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/chord.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/compare.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/deck_arc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/deck_arc.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/deck_hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/deck_hex.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/dist_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/dist_bar.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/heatmap.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/horizon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/horizon.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/iframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/iframe.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/line.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/mapbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/mapbox.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/markup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/markup.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/multi.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/para.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/para.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/pie.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/rose.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/sankey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/sankey.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/sunburst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/sunburst.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/table.png -------------------------------------------------------------------------------- /superset-frontend/images/viz_thumbnails/treemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/images/viz_thumbnails/treemap.png -------------------------------------------------------------------------------- /superset-frontend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/jest.config.js -------------------------------------------------------------------------------- /superset-frontend/js_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/js_build.sh -------------------------------------------------------------------------------- /superset-frontend/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/jsconfig.json -------------------------------------------------------------------------------- /superset-frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/package-lock.json -------------------------------------------------------------------------------- /superset-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/package.json -------------------------------------------------------------------------------- /superset-frontend/spec/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/spec/.eslintrc -------------------------------------------------------------------------------- /superset-frontend/spec/__mocks__/fileMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/spec/__mocks__/fileMock.js -------------------------------------------------------------------------------- /superset-frontend/spec/__mocks__/styleMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/spec/__mocks__/styleMock.js -------------------------------------------------------------------------------- /superset-frontend/spec/__mocks__/svgrMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/spec/__mocks__/svgrMock.js -------------------------------------------------------------------------------- /superset-frontend/spec/fixtures/mockDatasource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/spec/fixtures/mockDatasource.js -------------------------------------------------------------------------------- /superset-frontend/spec/helpers/shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/spec/helpers/shim.js -------------------------------------------------------------------------------- /superset-frontend/src/CRUD/CollectionTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/CRUD/CollectionTable.jsx -------------------------------------------------------------------------------- /superset-frontend/src/CRUD/Field.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/CRUD/Field.jsx -------------------------------------------------------------------------------- /superset-frontend/src/CRUD/Fieldset.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/CRUD/Fieldset.jsx -------------------------------------------------------------------------------- /superset-frontend/src/CRUD/crud.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/CRUD/crud.less -------------------------------------------------------------------------------- /superset-frontend/src/CRUD/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/CRUD/utils.js -------------------------------------------------------------------------------- /superset-frontend/src/SqlLab/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/SqlLab/App.jsx -------------------------------------------------------------------------------- /superset-frontend/src/SqlLab/actions/sqlLab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/SqlLab/actions/sqlLab.js -------------------------------------------------------------------------------- /superset-frontend/src/SqlLab/components/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/SqlLab/components/App.jsx -------------------------------------------------------------------------------- /superset-frontend/src/SqlLab/components/Link.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/SqlLab/components/Link.jsx -------------------------------------------------------------------------------- /superset-frontend/src/SqlLab/components/ShowSQL.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/SqlLab/components/ShowSQL.jsx -------------------------------------------------------------------------------- /superset-frontend/src/SqlLab/components/ShowSQL.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/SqlLab/components/ShowSQL.tsx -------------------------------------------------------------------------------- /superset-frontend/src/SqlLab/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/SqlLab/constants.js -------------------------------------------------------------------------------- /superset-frontend/src/SqlLab/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/SqlLab/constants.ts -------------------------------------------------------------------------------- /superset-frontend/src/SqlLab/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/SqlLab/index.jsx -------------------------------------------------------------------------------- /superset-frontend/src/SqlLab/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/SqlLab/index.tsx -------------------------------------------------------------------------------- /superset-frontend/src/SqlLab/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/SqlLab/main.less -------------------------------------------------------------------------------- /superset-frontend/src/SqlLab/reducers/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/SqlLab/reducers/common.js -------------------------------------------------------------------------------- /superset-frontend/src/SqlLab/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/SqlLab/reducers/index.js -------------------------------------------------------------------------------- /superset-frontend/src/SqlLab/reducers/sqlLab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/SqlLab/reducers/sqlLab.js -------------------------------------------------------------------------------- /superset-frontend/src/SqlLab/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/SqlLab/types.ts -------------------------------------------------------------------------------- /superset-frontend/src/SqlLab/utils/sqlKeywords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/SqlLab/utils/sqlKeywords.ts -------------------------------------------------------------------------------- /superset-frontend/src/addSlice/AddSliceContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/addSlice/AddSliceContainer.jsx -------------------------------------------------------------------------------- /superset-frontend/src/addSlice/AddSliceContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/addSlice/AddSliceContainer.tsx -------------------------------------------------------------------------------- /superset-frontend/src/addSlice/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/addSlice/App.jsx -------------------------------------------------------------------------------- /superset-frontend/src/addSlice/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/addSlice/App.tsx -------------------------------------------------------------------------------- /superset-frontend/src/addSlice/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/addSlice/index.jsx -------------------------------------------------------------------------------- /superset-frontend/src/addSlice/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/addSlice/index.tsx -------------------------------------------------------------------------------- /superset-frontend/src/chart/Chart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/chart/Chart.jsx -------------------------------------------------------------------------------- /superset-frontend/src/chart/ChartContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/chart/ChartContainer.jsx -------------------------------------------------------------------------------- /superset-frontend/src/chart/ChartRenderer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/chart/ChartRenderer.jsx -------------------------------------------------------------------------------- /superset-frontend/src/chart/chart.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/chart/chart.less -------------------------------------------------------------------------------- /superset-frontend/src/chart/chartAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/chart/chartAction.js -------------------------------------------------------------------------------- /superset-frontend/src/chart/chartReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/chart/chartReducer.js -------------------------------------------------------------------------------- /superset-frontend/src/chartPlugins/odometer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/chartPlugins/odometer/index.js -------------------------------------------------------------------------------- /superset-frontend/src/chartPlugins/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/chartPlugins/utils.js -------------------------------------------------------------------------------- /superset-frontend/src/components/ActionMenuItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/ActionMenuItem.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/AlteredSliceTag.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/AlteredSliceTag.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/AnchorLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/AnchorLink.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/AsyncSelect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/AsyncSelect.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/AvatarIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/AvatarIcon.tsx -------------------------------------------------------------------------------- /superset-frontend/src/components/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/Button.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/Button.tsx -------------------------------------------------------------------------------- /superset-frontend/src/components/CachedLabel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/CachedLabel.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/ChartIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/ChartIcon.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/Checkbox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/Checkbox.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/CheckboxIcons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/CheckboxIcons.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/ColumnOption.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/ColumnOption.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/ColumnTypeLabel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/ColumnTypeLabel.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/CopyToClipboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/CopyToClipboard.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/DeleteModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/DeleteModal.tsx -------------------------------------------------------------------------------- /superset-frontend/src/components/EditableTitle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/EditableTitle.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/ErrorBoundary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/ErrorBoundary.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/ExpandableList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/ExpandableList.tsx -------------------------------------------------------------------------------- /superset-frontend/src/components/FaveStar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/FaveStar.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/FilterBadgeIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/FilterBadgeIcon.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/FlashProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/FlashProvider.tsx -------------------------------------------------------------------------------- /superset-frontend/src/components/FormRow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/FormRow.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/Hotkeys.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/Hotkeys.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/Icon.tsx -------------------------------------------------------------------------------- /superset-frontend/src/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/Link.tsx -------------------------------------------------------------------------------- /superset-frontend/src/components/ListView/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/ListView/types.ts -------------------------------------------------------------------------------- /superset-frontend/src/components/ListView/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/ListView/utils.ts -------------------------------------------------------------------------------- /superset-frontend/src/components/Loading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/Loading.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/Loading.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/Loading.less -------------------------------------------------------------------------------- /superset-frontend/src/components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/Loading.tsx -------------------------------------------------------------------------------- /superset-frontend/src/components/Menu/Menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/Menu/Menu.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/Menu/Menu.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/Menu/Menu.less -------------------------------------------------------------------------------- /superset-frontend/src/components/Menu/MenuObject.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/Menu/MenuObject.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/Menu/NewMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/Menu/NewMenu.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/Menu/SubMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/Menu/SubMenu.tsx -------------------------------------------------------------------------------- /superset-frontend/src/components/Menu/UserMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/Menu/UserMenu.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/MetricOption.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/MetricOption.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/Modal.tsx -------------------------------------------------------------------------------- /superset-frontend/src/components/ModalTrigger.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/ModalTrigger.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/OmniContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/OmniContainer.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/OnPasteSelect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/OnPasteSelect.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/Pagination.tsx -------------------------------------------------------------------------------- /superset-frontend/src/components/PopoverSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/PopoverSection.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/RefreshLabel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/RefreshLabel.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/RefreshLabel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/RefreshLabel.less -------------------------------------------------------------------------------- /superset-frontend/src/components/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/SearchInput.tsx -------------------------------------------------------------------------------- /superset-frontend/src/components/Select/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/Select/index.ts -------------------------------------------------------------------------------- /superset-frontend/src/components/Select/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/Select/styles.tsx -------------------------------------------------------------------------------- /superset-frontend/src/components/Select/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/Select/utils.ts -------------------------------------------------------------------------------- /superset-frontend/src/components/TableLoader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/TableLoader.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/TableSelector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/TableSelector.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/TableSelector.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/TableSelector.less -------------------------------------------------------------------------------- /superset-frontend/src/components/Timer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/Timer.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/TooltipWrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/TooltipWrapper.jsx -------------------------------------------------------------------------------- /superset-frontend/src/components/VictoryTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/VictoryTheme.js -------------------------------------------------------------------------------- /superset-frontend/src/components/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/components/styles.ts -------------------------------------------------------------------------------- /superset-frontend/src/dashboard/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/dashboard/.eslintrc -------------------------------------------------------------------------------- /superset-frontend/src/dashboard/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/dashboard/App.jsx -------------------------------------------------------------------------------- /superset-frontend/src/dashboard/containers/Chart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/dashboard/containers/Chart.jsx -------------------------------------------------------------------------------- /superset-frontend/src/dashboard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/dashboard/index.jsx -------------------------------------------------------------------------------- /superset-frontend/src/dashboard/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/dashboard/reducers/index.js -------------------------------------------------------------------------------- /superset-frontend/src/dashboard/stylesheets/dnd.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/dashboard/stylesheets/dnd.less -------------------------------------------------------------------------------- /superset-frontend/src/dashboard/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/dashboard/types.ts -------------------------------------------------------------------------------- /superset-frontend/src/dashboard/util/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/dashboard/util/constants.js -------------------------------------------------------------------------------- /superset-frontend/src/dashboard/util/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/dashboard/util/constants.ts -------------------------------------------------------------------------------- /superset-frontend/src/dashboard/util/dnd-reorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/dashboard/util/dnd-reorder.js -------------------------------------------------------------------------------- /superset-frontend/src/dashboard/util/findParentId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/dashboard/util/findParentId.js -------------------------------------------------------------------------------- /superset-frontend/src/dashboard/util/isValidChild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/dashboard/util/isValidChild.js -------------------------------------------------------------------------------- /superset-frontend/src/dashboard/util/isValidChild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/dashboard/util/isValidChild.ts -------------------------------------------------------------------------------- /superset-frontend/src/dashboard/util/propShapes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/dashboard/util/propShapes.jsx -------------------------------------------------------------------------------- /superset-frontend/src/datasource/DatasourceModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/datasource/DatasourceModal.jsx -------------------------------------------------------------------------------- /superset-frontend/src/datasource/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/datasource/main.less -------------------------------------------------------------------------------- /superset-frontend/src/explore/AdhocFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/explore/AdhocFilter.js -------------------------------------------------------------------------------- /superset-frontend/src/explore/AdhocMetric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/explore/AdhocMetric.js -------------------------------------------------------------------------------- /superset-frontend/src/explore/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/explore/App.jsx -------------------------------------------------------------------------------- /superset-frontend/src/explore/components/Control.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/explore/components/Control.jsx -------------------------------------------------------------------------------- /superset-frontend/src/explore/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/explore/constants.js -------------------------------------------------------------------------------- /superset-frontend/src/explore/controlPanels/Area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/explore/controlPanels/Area.js -------------------------------------------------------------------------------- /superset-frontend/src/explore/controlPanels/Bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/explore/controlPanels/Bar.js -------------------------------------------------------------------------------- /superset-frontend/src/explore/controlPanels/Chord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/explore/controlPanels/Chord.js -------------------------------------------------------------------------------- /superset-frontend/src/explore/controlPanels/Line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/explore/controlPanels/Line.js -------------------------------------------------------------------------------- /superset-frontend/src/explore/controlPanels/Para.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/explore/controlPanels/Para.js -------------------------------------------------------------------------------- /superset-frontend/src/explore/controlPanels/Pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/explore/controlPanels/Pie.js -------------------------------------------------------------------------------- /superset-frontend/src/explore/controlPanels/Rose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/explore/controlPanels/Rose.js -------------------------------------------------------------------------------- /superset-frontend/src/explore/controlPanels/Table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/explore/controlPanels/Table.js -------------------------------------------------------------------------------- /superset-frontend/src/explore/controlUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/explore/controlUtils.js -------------------------------------------------------------------------------- /superset-frontend/src/explore/controls.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/explore/controls.jsx -------------------------------------------------------------------------------- /superset-frontend/src/explore/exploreUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/explore/exploreUtils.js -------------------------------------------------------------------------------- /superset-frontend/src/explore/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/explore/index.jsx -------------------------------------------------------------------------------- /superset-frontend/src/explore/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/explore/main.less -------------------------------------------------------------------------------- /superset-frontend/src/explore/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/explore/reducers/index.js -------------------------------------------------------------------------------- /superset-frontend/src/explore/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/explore/store.js -------------------------------------------------------------------------------- /superset-frontend/src/explore/validators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/explore/validators.js -------------------------------------------------------------------------------- /superset-frontend/src/featureFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/featureFlags.ts -------------------------------------------------------------------------------- /superset-frontend/src/logger/LogUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/logger/LogUtils.js -------------------------------------------------------------------------------- /superset-frontend/src/logger/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/logger/actions/index.js -------------------------------------------------------------------------------- /superset-frontend/src/messageToasts/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/messageToasts/actions/index.js -------------------------------------------------------------------------------- /superset-frontend/src/messageToasts/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/messageToasts/constants.js -------------------------------------------------------------------------------- /superset-frontend/src/messageToasts/propShapes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/messageToasts/propShapes.js -------------------------------------------------------------------------------- /superset-frontend/src/messageToasts/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/messageToasts/types.ts -------------------------------------------------------------------------------- /superset-frontend/src/middleware/loggerMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/middleware/loggerMiddleware.js -------------------------------------------------------------------------------- /superset-frontend/src/modules/AnnotationTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/modules/AnnotationTypes.js -------------------------------------------------------------------------------- /superset-frontend/src/modules/dates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/modules/dates.js -------------------------------------------------------------------------------- /superset-frontend/src/modules/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/modules/utils.js -------------------------------------------------------------------------------- /superset-frontend/src/preamble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/preamble.js -------------------------------------------------------------------------------- /superset-frontend/src/preamble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/preamble.ts -------------------------------------------------------------------------------- /superset-frontend/src/profile/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/profile/App.jsx -------------------------------------------------------------------------------- /superset-frontend/src/profile/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/profile/App.tsx -------------------------------------------------------------------------------- /superset-frontend/src/profile/components/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/profile/components/App.jsx -------------------------------------------------------------------------------- /superset-frontend/src/profile/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/profile/components/App.tsx -------------------------------------------------------------------------------- /superset-frontend/src/profile/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/profile/index.jsx -------------------------------------------------------------------------------- /superset-frontend/src/profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/profile/index.tsx -------------------------------------------------------------------------------- /superset-frontend/src/profile/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/profile/main.less -------------------------------------------------------------------------------- /superset-frontend/src/profile/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/profile/types.ts -------------------------------------------------------------------------------- /superset-frontend/src/reduxUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/reduxUtils.js -------------------------------------------------------------------------------- /superset-frontend/src/reduxUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/reduxUtils.ts -------------------------------------------------------------------------------- /superset-frontend/src/setup/setupApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/setup/setupApp.js -------------------------------------------------------------------------------- /superset-frontend/src/setup/setupApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/setup/setupApp.ts -------------------------------------------------------------------------------- /superset-frontend/src/setup/setupClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/setup/setupClient.js -------------------------------------------------------------------------------- /superset-frontend/src/setup/setupColors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/setup/setupColors.js -------------------------------------------------------------------------------- /superset-frontend/src/setup/setupErrorMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/setup/setupErrorMessages.ts -------------------------------------------------------------------------------- /superset-frontend/src/setup/setupFormatters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/setup/setupFormatters.js -------------------------------------------------------------------------------- /superset-frontend/src/setup/setupPlugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/setup/setupPlugins.ts -------------------------------------------------------------------------------- /superset-frontend/src/setup/setupPluginsExtra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/setup/setupPluginsExtra.js -------------------------------------------------------------------------------- /superset-frontend/src/showSavedQuery/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/showSavedQuery/index.jsx -------------------------------------------------------------------------------- /superset-frontend/src/showSavedQuery/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/showSavedQuery/index.less -------------------------------------------------------------------------------- /superset-frontend/src/showSavedQuery/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/showSavedQuery/utils.js -------------------------------------------------------------------------------- /superset-frontend/src/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/theme.js -------------------------------------------------------------------------------- /superset-frontend/src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/theme.ts -------------------------------------------------------------------------------- /superset-frontend/src/types/Chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/types/Chart.ts -------------------------------------------------------------------------------- /superset-frontend/src/types/bootstrapTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/types/bootstrapTypes.ts -------------------------------------------------------------------------------- /superset-frontend/src/types/files.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/types/files.d.ts -------------------------------------------------------------------------------- /superset-frontend/src/types/react-table-config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/types/react-table-config.d.ts -------------------------------------------------------------------------------- /superset-frontend/src/utils/DebouncedMessageQueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/utils/DebouncedMessageQueue.js -------------------------------------------------------------------------------- /superset-frontend/src/utils/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/utils/common.js -------------------------------------------------------------------------------- /superset-frontend/src/utils/downloadAsImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/utils/downloadAsImage.ts -------------------------------------------------------------------------------- /superset-frontend/src/utils/errorMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/utils/errorMessages.js -------------------------------------------------------------------------------- /superset-frontend/src/utils/getClientErrorObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/utils/getClientErrorObject.js -------------------------------------------------------------------------------- /superset-frontend/src/utils/hostNamesConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/utils/hostNamesConfig.js -------------------------------------------------------------------------------- /superset-frontend/src/utils/parseCookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/utils/parseCookie.ts -------------------------------------------------------------------------------- /superset-frontend/src/utils/reducerUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/utils/reducerUtils.js -------------------------------------------------------------------------------- /superset-frontend/src/utils/safeStringify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/utils/safeStringify.ts -------------------------------------------------------------------------------- /superset-frontend/src/visualizations/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/visualizations/constants.js -------------------------------------------------------------------------------- /superset-frontend/src/welcome/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/welcome/App.jsx -------------------------------------------------------------------------------- /superset-frontend/src/welcome/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/welcome/App.tsx -------------------------------------------------------------------------------- /superset-frontend/src/welcome/DashboardTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/welcome/DashboardTable.jsx -------------------------------------------------------------------------------- /superset-frontend/src/welcome/DashboardTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/welcome/DashboardTable.tsx -------------------------------------------------------------------------------- /superset-frontend/src/welcome/Welcome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/welcome/Welcome.jsx -------------------------------------------------------------------------------- /superset-frontend/src/welcome/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/welcome/Welcome.tsx -------------------------------------------------------------------------------- /superset-frontend/src/welcome/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/welcome/index.jsx -------------------------------------------------------------------------------- /superset-frontend/src/welcome/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/src/welcome/index.tsx -------------------------------------------------------------------------------- /superset-frontend/stylesheets/less/fonts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/stylesheets/less/fonts.less -------------------------------------------------------------------------------- /superset-frontend/stylesheets/less/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/stylesheets/less/index.less -------------------------------------------------------------------------------- /superset-frontend/stylesheets/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/stylesheets/less/variables.less -------------------------------------------------------------------------------- /superset-frontend/stylesheets/superset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/stylesheets/superset.less -------------------------------------------------------------------------------- /superset-frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/tsconfig.json -------------------------------------------------------------------------------- /superset-frontend/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/tslint.json -------------------------------------------------------------------------------- /superset-frontend/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/webpack.config.js -------------------------------------------------------------------------------- /superset-frontend/webpack.proxy-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset-frontend/webpack.proxy-config.js -------------------------------------------------------------------------------- /superset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/__init__.py -------------------------------------------------------------------------------- /superset/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/app.py -------------------------------------------------------------------------------- /superset/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/assets/images/favicon.png -------------------------------------------------------------------------------- /superset/assets/images/superset-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/assets/images/superset-logo@2x.png -------------------------------------------------------------------------------- /superset/assets/images/superset-logo@2x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/assets/images/superset-logo@2x1.png -------------------------------------------------------------------------------- /superset/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/assets/package.json -------------------------------------------------------------------------------- /superset/assets/src/chartPlugins/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/assets/src/chartPlugins/utils.js -------------------------------------------------------------------------------- /superset/assets/src/explore/controlUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/assets/src/explore/controlUtils.js -------------------------------------------------------------------------------- /superset/assets/src/explore/controls.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/assets/src/explore/controls.jsx -------------------------------------------------------------------------------- /superset/assets/src/setup/setupPlugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/assets/src/setup/setupPlugins.ts -------------------------------------------------------------------------------- /superset/assets/version_info.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /superset/bin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/bin/__init__.py -------------------------------------------------------------------------------- /superset/bin/superset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/bin/superset -------------------------------------------------------------------------------- /superset/charts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/charts/__init__.py -------------------------------------------------------------------------------- /superset/charts/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/charts/api.py -------------------------------------------------------------------------------- /superset/charts/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/charts/commands/__init__.py -------------------------------------------------------------------------------- /superset/charts/commands/bulk_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/charts/commands/bulk_delete.py -------------------------------------------------------------------------------- /superset/charts/commands/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/charts/commands/create.py -------------------------------------------------------------------------------- /superset/charts/commands/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/charts/commands/delete.py -------------------------------------------------------------------------------- /superset/charts/commands/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/charts/commands/exceptions.py -------------------------------------------------------------------------------- /superset/charts/commands/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/charts/commands/update.py -------------------------------------------------------------------------------- /superset/charts/dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/charts/dao.py -------------------------------------------------------------------------------- /superset/charts/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/charts/filters.py -------------------------------------------------------------------------------- /superset/charts/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/charts/schemas.py -------------------------------------------------------------------------------- /superset/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/cli.py -------------------------------------------------------------------------------- /superset/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/commands/__init__.py -------------------------------------------------------------------------------- /superset/commands/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/commands/base.py -------------------------------------------------------------------------------- /superset/commands/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/commands/exceptions.py -------------------------------------------------------------------------------- /superset/commands/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/commands/utils.py -------------------------------------------------------------------------------- /superset/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/common/__init__.py -------------------------------------------------------------------------------- /superset/common/query_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/common/query_context.py -------------------------------------------------------------------------------- /superset/common/query_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/common/query_object.py -------------------------------------------------------------------------------- /superset/common/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/common/tags.py -------------------------------------------------------------------------------- /superset/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/config.py -------------------------------------------------------------------------------- /superset/connectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/connectors/__init__.py -------------------------------------------------------------------------------- /superset/connectors/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/connectors/base/__init__.py -------------------------------------------------------------------------------- /superset/connectors/base/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/connectors/base/models.py -------------------------------------------------------------------------------- /superset/connectors/base/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/connectors/base/views.py -------------------------------------------------------------------------------- /superset/connectors/connector_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/connectors/connector_registry.py -------------------------------------------------------------------------------- /superset/connectors/druid/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/connectors/druid/__init__.py -------------------------------------------------------------------------------- /superset/connectors/druid/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/connectors/druid/models.py -------------------------------------------------------------------------------- /superset/connectors/druid/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/connectors/druid/views.py -------------------------------------------------------------------------------- /superset/connectors/sqla/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/connectors/sqla/__init__.py -------------------------------------------------------------------------------- /superset/connectors/sqla/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/connectors/sqla/models.py -------------------------------------------------------------------------------- /superset/connectors/sqla/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/connectors/sqla/views.py -------------------------------------------------------------------------------- /superset/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/constants.py -------------------------------------------------------------------------------- /superset/dao/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/dao/__init__.py -------------------------------------------------------------------------------- /superset/dao/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/dao/base.py -------------------------------------------------------------------------------- /superset/dao/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/dao/exceptions.py -------------------------------------------------------------------------------- /superset/dashboards/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/dashboards/__init__.py -------------------------------------------------------------------------------- /superset/dashboards/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/dashboards/api.py -------------------------------------------------------------------------------- /superset/dashboards/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/dashboards/commands/__init__.py -------------------------------------------------------------------------------- /superset/dashboards/commands/bulk_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/dashboards/commands/bulk_delete.py -------------------------------------------------------------------------------- /superset/dashboards/commands/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/dashboards/commands/create.py -------------------------------------------------------------------------------- /superset/dashboards/commands/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/dashboards/commands/delete.py -------------------------------------------------------------------------------- /superset/dashboards/commands/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/dashboards/commands/exceptions.py -------------------------------------------------------------------------------- /superset/dashboards/commands/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/dashboards/commands/update.py -------------------------------------------------------------------------------- /superset/dashboards/dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/dashboards/dao.py -------------------------------------------------------------------------------- /superset/dashboards/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/dashboards/filters.py -------------------------------------------------------------------------------- /superset/dashboards/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/dashboards/schemas.py -------------------------------------------------------------------------------- /superset/databases/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/databases/__init__.py -------------------------------------------------------------------------------- /superset/databases/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/databases/api.py -------------------------------------------------------------------------------- /superset/databases/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/databases/decorators.py -------------------------------------------------------------------------------- /superset/databases/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/databases/schemas.py -------------------------------------------------------------------------------- /superset/dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/dataframe.py -------------------------------------------------------------------------------- /superset/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/datasets/__init__.py -------------------------------------------------------------------------------- /superset/datasets/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/datasets/api.py -------------------------------------------------------------------------------- /superset/datasets/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/datasets/commands/__init__.py -------------------------------------------------------------------------------- /superset/datasets/commands/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/datasets/commands/create.py -------------------------------------------------------------------------------- /superset/datasets/commands/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/datasets/commands/delete.py -------------------------------------------------------------------------------- /superset/datasets/commands/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/datasets/commands/exceptions.py -------------------------------------------------------------------------------- /superset/datasets/commands/refresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/datasets/commands/refresh.py -------------------------------------------------------------------------------- /superset/datasets/commands/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/datasets/commands/update.py -------------------------------------------------------------------------------- /superset/datasets/dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/datasets/dao.py -------------------------------------------------------------------------------- /superset/datasets/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/datasets/schemas.py -------------------------------------------------------------------------------- /superset/db_engine_specs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/__init__.py -------------------------------------------------------------------------------- /superset/db_engine_specs/athena.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/athena.py -------------------------------------------------------------------------------- /superset/db_engine_specs/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/base.py -------------------------------------------------------------------------------- /superset/db_engine_specs/bigquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/bigquery.py -------------------------------------------------------------------------------- /superset/db_engine_specs/clickhouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/clickhouse.py -------------------------------------------------------------------------------- /superset/db_engine_specs/cockroachdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/cockroachdb.py -------------------------------------------------------------------------------- /superset/db_engine_specs/db2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/db2.py -------------------------------------------------------------------------------- /superset/db_engine_specs/dremio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/dremio.py -------------------------------------------------------------------------------- /superset/db_engine_specs/drill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/drill.py -------------------------------------------------------------------------------- /superset/db_engine_specs/druid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/druid.py -------------------------------------------------------------------------------- /superset/db_engine_specs/elasticsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/elasticsearch.py -------------------------------------------------------------------------------- /superset/db_engine_specs/exasol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/exasol.py -------------------------------------------------------------------------------- /superset/db_engine_specs/gsheets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/gsheets.py -------------------------------------------------------------------------------- /superset/db_engine_specs/hana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/hana.py -------------------------------------------------------------------------------- /superset/db_engine_specs/hive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/hive.py -------------------------------------------------------------------------------- /superset/db_engine_specs/impala.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/impala.py -------------------------------------------------------------------------------- /superset/db_engine_specs/kylin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/kylin.py -------------------------------------------------------------------------------- /superset/db_engine_specs/mssql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/mssql.py -------------------------------------------------------------------------------- /superset/db_engine_specs/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/mysql.py -------------------------------------------------------------------------------- /superset/db_engine_specs/oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/oracle.py -------------------------------------------------------------------------------- /superset/db_engine_specs/pinot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/pinot.py -------------------------------------------------------------------------------- /superset/db_engine_specs/postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/postgres.py -------------------------------------------------------------------------------- /superset/db_engine_specs/presto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/presto.py -------------------------------------------------------------------------------- /superset/db_engine_specs/redshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/redshift.py -------------------------------------------------------------------------------- /superset/db_engine_specs/snowflake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/snowflake.py -------------------------------------------------------------------------------- /superset/db_engine_specs/sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/sqlite.py -------------------------------------------------------------------------------- /superset/db_engine_specs/teradata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/teradata.py -------------------------------------------------------------------------------- /superset/db_engine_specs/vertica.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engine_specs/vertica.py -------------------------------------------------------------------------------- /superset/db_engines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engines/__init__.py -------------------------------------------------------------------------------- /superset/db_engines/hive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/db_engines/hive.py -------------------------------------------------------------------------------- /superset/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/errors.py -------------------------------------------------------------------------------- /superset/examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/examples/__init__.py -------------------------------------------------------------------------------- /superset/examples/bart_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/examples/bart_lines.py -------------------------------------------------------------------------------- /superset/examples/birth_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/examples/birth_names.py -------------------------------------------------------------------------------- /superset/examples/countries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/examples/countries.md -------------------------------------------------------------------------------- /superset/examples/countries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/examples/countries.py -------------------------------------------------------------------------------- /superset/examples/country_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/examples/country_map.py -------------------------------------------------------------------------------- /superset/examples/css_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/examples/css_templates.py -------------------------------------------------------------------------------- /superset/examples/deck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/examples/deck.py -------------------------------------------------------------------------------- /superset/examples/energy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/examples/energy.py -------------------------------------------------------------------------------- /superset/examples/flights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/examples/flights.py -------------------------------------------------------------------------------- /superset/examples/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/examples/helpers.py -------------------------------------------------------------------------------- /superset/examples/long_lat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/examples/long_lat.py -------------------------------------------------------------------------------- /superset/examples/misc_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/examples/misc_dashboard.py -------------------------------------------------------------------------------- /superset/examples/multi_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/examples/multi_line.py -------------------------------------------------------------------------------- /superset/examples/multiformat_time_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/examples/multiformat_time_series.py -------------------------------------------------------------------------------- /superset/examples/paris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/examples/paris.py -------------------------------------------------------------------------------- /superset/examples/random_time_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/examples/random_time_series.py -------------------------------------------------------------------------------- /superset/examples/sf_population_polygons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/examples/sf_population_polygons.py -------------------------------------------------------------------------------- /superset/examples/tabbed_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/examples/tabbed_dashboard.py -------------------------------------------------------------------------------- /superset/examples/unicode_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/examples/unicode_test_data.py -------------------------------------------------------------------------------- /superset/examples/world_bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/examples/world_bank.py -------------------------------------------------------------------------------- /superset/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/exceptions.py -------------------------------------------------------------------------------- /superset/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/extensions.py -------------------------------------------------------------------------------- /superset/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/forms.py -------------------------------------------------------------------------------- /superset/jinja_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/jinja_context.py -------------------------------------------------------------------------------- /superset/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/legacy.py -------------------------------------------------------------------------------- /superset/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /superset/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/__init__.py -------------------------------------------------------------------------------- /superset/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/alembic.ini -------------------------------------------------------------------------------- /superset/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/env.py -------------------------------------------------------------------------------- /superset/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/script.py.mako -------------------------------------------------------------------------------- /superset/migrations/versions/18dc26817ad2_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/18dc26817ad2_.py -------------------------------------------------------------------------------- /superset/migrations/versions/1d9e835a84f9_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/1d9e835a84f9_.py -------------------------------------------------------------------------------- /superset/migrations/versions/1e2841a4128_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/1e2841a4128_.py -------------------------------------------------------------------------------- /superset/migrations/versions/30bb17c0dc76_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/30bb17c0dc76_.py -------------------------------------------------------------------------------- /superset/migrations/versions/45e7da7cfeba_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/45e7da7cfeba_.py -------------------------------------------------------------------------------- /superset/migrations/versions/46ba6aaaac97_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/46ba6aaaac97_.py -------------------------------------------------------------------------------- /superset/migrations/versions/472d2f73dfd4_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/472d2f73dfd4_.py -------------------------------------------------------------------------------- /superset/migrations/versions/4736ec66ce19_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/4736ec66ce19_.py -------------------------------------------------------------------------------- /superset/migrations/versions/4e6a06bad7a8_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/4e6a06bad7a8_init.py -------------------------------------------------------------------------------- /superset/migrations/versions/5a7bad26f2a7_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/5a7bad26f2a7_.py -------------------------------------------------------------------------------- /superset/migrations/versions/5ccf602336a0_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/5ccf602336a0_.py -------------------------------------------------------------------------------- /superset/migrations/versions/6414e83d82b7_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/6414e83d82b7_.py -------------------------------------------------------------------------------- /superset/migrations/versions/705732c70154_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/705732c70154_.py -------------------------------------------------------------------------------- /superset/migrations/versions/7fcdcde0761c_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/7fcdcde0761c_.py -------------------------------------------------------------------------------- /superset/migrations/versions/8b70aa3d0f87_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/8b70aa3d0f87_.py -------------------------------------------------------------------------------- /superset/migrations/versions/8e80a26a31db_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/8e80a26a31db_.py -------------------------------------------------------------------------------- /superset/migrations/versions/960c69cb1f5b_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/960c69cb1f5b_.py -------------------------------------------------------------------------------- /superset/migrations/versions/979c03af3341_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/979c03af3341_.py -------------------------------------------------------------------------------- /superset/migrations/versions/b347b202819b_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/b347b202819b_.py -------------------------------------------------------------------------------- /superset/migrations/versions/c18bd4186f15_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/c18bd4186f15_.py -------------------------------------------------------------------------------- /superset/migrations/versions/c829ff0b37d0_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/c829ff0b37d0_.py -------------------------------------------------------------------------------- /superset/migrations/versions/c9495751e314_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/c9495751e314_.py -------------------------------------------------------------------------------- /superset/migrations/versions/d2424a248d63_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/d2424a248d63_.py -------------------------------------------------------------------------------- /superset/migrations/versions/d39b1e37131d_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/d39b1e37131d_.py -------------------------------------------------------------------------------- /superset/migrations/versions/d6db5a5cdb5d_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/d6db5a5cdb5d_.py -------------------------------------------------------------------------------- /superset/migrations/versions/de021a1ca60d_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/de021a1ca60d_.py -------------------------------------------------------------------------------- /superset/migrations/versions/e3970889f38e_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/e3970889f38e_.py -------------------------------------------------------------------------------- /superset/migrations/versions/ea033256294a_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/ea033256294a_.py -------------------------------------------------------------------------------- /superset/migrations/versions/ec1f88a35cc6_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/ec1f88a35cc6_.py -------------------------------------------------------------------------------- /superset/migrations/versions/ef8843b41dac_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/ef8843b41dac_.py -------------------------------------------------------------------------------- /superset/migrations/versions/f1f2d4af5b90_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/f1f2d4af5b90_.py -------------------------------------------------------------------------------- /superset/migrations/versions/f231d82b9b26_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/f231d82b9b26_.py -------------------------------------------------------------------------------- /superset/migrations/versions/f959a6652acd_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/f959a6652acd_.py -------------------------------------------------------------------------------- /superset/migrations/versions/fbd55e0f83eb_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/fbd55e0f83eb_.py -------------------------------------------------------------------------------- /superset/migrations/versions/fc480c87706c_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/fc480c87706c_.py -------------------------------------------------------------------------------- /superset/migrations/versions/fee7b758c130_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/migrations/versions/fee7b758c130_.py -------------------------------------------------------------------------------- /superset/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/models/__init__.py -------------------------------------------------------------------------------- /superset/models/alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/models/alerts.py -------------------------------------------------------------------------------- /superset/models/annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/models/annotations.py -------------------------------------------------------------------------------- /superset/models/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/models/core.py -------------------------------------------------------------------------------- /superset/models/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/models/dashboard.py -------------------------------------------------------------------------------- /superset/models/datasource_access_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/models/datasource_access_request.py -------------------------------------------------------------------------------- /superset/models/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/models/helpers.py -------------------------------------------------------------------------------- /superset/models/schedules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/models/schedules.py -------------------------------------------------------------------------------- /superset/models/slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/models/slice.py -------------------------------------------------------------------------------- /superset/models/sql_lab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/models/sql_lab.py -------------------------------------------------------------------------------- /superset/models/sql_types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/models/sql_types/__init__.py -------------------------------------------------------------------------------- /superset/models/sql_types/presto_sql_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/models/sql_types/presto_sql_types.py -------------------------------------------------------------------------------- /superset/models/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/models/tags.py -------------------------------------------------------------------------------- /superset/models/user_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/models/user_attributes.py -------------------------------------------------------------------------------- /superset/queries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/queries/__init__.py -------------------------------------------------------------------------------- /superset/queries/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/queries/api.py -------------------------------------------------------------------------------- /superset/queries/dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/queries/dao.py -------------------------------------------------------------------------------- /superset/queries/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/queries/filters.py -------------------------------------------------------------------------------- /superset/queries/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/queries/schemas.py -------------------------------------------------------------------------------- /superset/result_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/result_set.py -------------------------------------------------------------------------------- /superset/security/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/security/__init__.py -------------------------------------------------------------------------------- /superset/security/analytics_db_safety.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/security/analytics_db_safety.py -------------------------------------------------------------------------------- /superset/security/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/security/manager.py -------------------------------------------------------------------------------- /superset/sql_lab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/sql_lab.py -------------------------------------------------------------------------------- /superset/sql_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/sql_parse.py -------------------------------------------------------------------------------- /superset/sql_validators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/sql_validators/__init__.py -------------------------------------------------------------------------------- /superset/sql_validators/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/sql_validators/base.py -------------------------------------------------------------------------------- /superset/sql_validators/presto_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/sql_validators/presto_db.py -------------------------------------------------------------------------------- /superset/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /superset/stats_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/stats_logger.py -------------------------------------------------------------------------------- /superset/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/tasks/__init__.py -------------------------------------------------------------------------------- /superset/tasks/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/tasks/cache.py -------------------------------------------------------------------------------- /superset/tasks/celery_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/tasks/celery_app.py -------------------------------------------------------------------------------- /superset/tasks/schedules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/tasks/schedules.py -------------------------------------------------------------------------------- /superset/tasks/slack_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/tasks/slack_util.py -------------------------------------------------------------------------------- /superset/tasks/thumbnails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/tasks/thumbnails.py -------------------------------------------------------------------------------- /superset/templates/appbuilder/baselayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/templates/appbuilder/baselayout.html -------------------------------------------------------------------------------- /superset/templates/appbuilder/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/templates/appbuilder/navbar.html -------------------------------------------------------------------------------- /superset/templates/appbuilder/navbar_right.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/templates/appbuilder/navbar_right.html -------------------------------------------------------------------------------- /superset/templates/email/role_extended.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/templates/email/role_extended.txt -------------------------------------------------------------------------------- /superset/templates/email/role_granted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/templates/email/role_granted.txt -------------------------------------------------------------------------------- /superset/templates/superset/add_slice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/templates/superset/add_slice.html -------------------------------------------------------------------------------- /superset/templates/superset/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/templates/superset/base.html -------------------------------------------------------------------------------- /superset/templates/superset/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/templates/superset/basic.html -------------------------------------------------------------------------------- /superset/templates/superset/csrf_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/templates/superset/csrf_token.json -------------------------------------------------------------------------------- /superset/templates/superset/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/templates/superset/dashboard.html -------------------------------------------------------------------------------- /superset/templates/superset/flash_wrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/templates/superset/flash_wrapper.html -------------------------------------------------------------------------------- /superset/templates/superset/paper-theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/templates/superset/paper-theme.html -------------------------------------------------------------------------------- /superset/templates/superset/request_access.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/templates/superset/request_access.html -------------------------------------------------------------------------------- /superset/templates/superset/theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/templates/superset/theme.html -------------------------------------------------------------------------------- /superset/templates/superset/traceback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/templates/superset/traceback.html -------------------------------------------------------------------------------- /superset/templates/superset/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/templates/superset/welcome.html -------------------------------------------------------------------------------- /superset/translations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/translations/__init__.py -------------------------------------------------------------------------------- /superset/translations/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/translations/babel.cfg -------------------------------------------------------------------------------- /superset/translations/de/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/translations/de/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /superset/translations/en/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/translations/en/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /superset/translations/es/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/translations/es/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /superset/translations/fr/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/translations/fr/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /superset/translations/it/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/translations/it/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /superset/translations/ja/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/translations/ja/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /superset/translations/ko/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/translations/ko/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /superset/translations/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/translations/messages.pot -------------------------------------------------------------------------------- /superset/translations/pt/LC_MESSAGES/message.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/translations/pt/LC_MESSAGES/message.po -------------------------------------------------------------------------------- /superset/translations/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/translations/requirements.txt -------------------------------------------------------------------------------- /superset/translations/ru/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/translations/ru/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /superset/translations/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/translations/utils.py -------------------------------------------------------------------------------- /superset/translations/zh/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/translations/zh/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /superset/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/typing.py -------------------------------------------------------------------------------- /superset/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/utils/__init__.py -------------------------------------------------------------------------------- /superset/utils/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/utils/cache.py -------------------------------------------------------------------------------- /superset/utils/cache_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/utils/cache_manager.py -------------------------------------------------------------------------------- /superset/utils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/utils/core.py -------------------------------------------------------------------------------- /superset/utils/dashboard_import_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/utils/dashboard_import_export.py -------------------------------------------------------------------------------- /superset/utils/dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/utils/dates.py -------------------------------------------------------------------------------- /superset/utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/utils/decorators.py -------------------------------------------------------------------------------- /superset/utils/dict_import_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/utils/dict_import_export.py -------------------------------------------------------------------------------- /superset/utils/feature_flag_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/utils/feature_flag_manager.py -------------------------------------------------------------------------------- /superset/utils/hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/utils/hashing.py -------------------------------------------------------------------------------- /superset/utils/import_datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/utils/import_datasource.py -------------------------------------------------------------------------------- /superset/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/utils/log.py -------------------------------------------------------------------------------- /superset/utils/logging_configurator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/utils/logging_configurator.py -------------------------------------------------------------------------------- /superset/utils/pandas_postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/utils/pandas_postprocessing.py -------------------------------------------------------------------------------- /superset/utils/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/utils/schema.py -------------------------------------------------------------------------------- /superset/utils/screenshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/utils/screenshots.py -------------------------------------------------------------------------------- /superset/utils/url_map_converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/utils/url_map_converters.py -------------------------------------------------------------------------------- /superset/utils/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/utils/urls.py -------------------------------------------------------------------------------- /superset/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/__init__.py -------------------------------------------------------------------------------- /superset/views/access_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/access_requests.py -------------------------------------------------------------------------------- /superset/views/alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/alerts.py -------------------------------------------------------------------------------- /superset/views/annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/annotations.py -------------------------------------------------------------------------------- /superset/views/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/api.py -------------------------------------------------------------------------------- /superset/views/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/base.py -------------------------------------------------------------------------------- /superset/views/base_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/base_api.py -------------------------------------------------------------------------------- /superset/views/base_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/base_schemas.py -------------------------------------------------------------------------------- /superset/views/chart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/chart/__init__.py -------------------------------------------------------------------------------- /superset/views/chart/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/chart/filters.py -------------------------------------------------------------------------------- /superset/views/chart/mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/chart/mixin.py -------------------------------------------------------------------------------- /superset/views/chart/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/chart/views.py -------------------------------------------------------------------------------- /superset/views/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/core.py -------------------------------------------------------------------------------- /superset/views/css_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/css_templates.py -------------------------------------------------------------------------------- /superset/views/dashboard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/dashboard/__init__.py -------------------------------------------------------------------------------- /superset/views/dashboard/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/dashboard/filters.py -------------------------------------------------------------------------------- /superset/views/dashboard/mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/dashboard/mixin.py -------------------------------------------------------------------------------- /superset/views/dashboard/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/dashboard/views.py -------------------------------------------------------------------------------- /superset/views/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/database/__init__.py -------------------------------------------------------------------------------- /superset/views/database/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/database/filters.py -------------------------------------------------------------------------------- /superset/views/database/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/database/forms.py -------------------------------------------------------------------------------- /superset/views/database/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/database/mixins.py -------------------------------------------------------------------------------- /superset/views/database/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/database/validators.py -------------------------------------------------------------------------------- /superset/views/database/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/database/views.py -------------------------------------------------------------------------------- /superset/views/datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/datasource.py -------------------------------------------------------------------------------- /superset/views/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/filters.py -------------------------------------------------------------------------------- /superset/views/health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/health.py -------------------------------------------------------------------------------- /superset/views/key_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/key_value.py -------------------------------------------------------------------------------- /superset/views/log/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/log/__init__.py -------------------------------------------------------------------------------- /superset/views/log/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/log/api.py -------------------------------------------------------------------------------- /superset/views/log/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/log/views.py -------------------------------------------------------------------------------- /superset/views/redirects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/redirects.py -------------------------------------------------------------------------------- /superset/views/schedules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/schedules.py -------------------------------------------------------------------------------- /superset/views/sql_lab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/sql_lab.py -------------------------------------------------------------------------------- /superset/views/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/tags.py -------------------------------------------------------------------------------- /superset/views/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/views/utils.py -------------------------------------------------------------------------------- /superset/viz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/viz.py -------------------------------------------------------------------------------- /superset/viz_sip38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/superset/viz_sip38.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/access_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/access_tests.py -------------------------------------------------------------------------------- /tests/base_api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/base_api_tests.py -------------------------------------------------------------------------------- /tests/base_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/base_tests.py -------------------------------------------------------------------------------- /tests/cache_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/cache_tests.py -------------------------------------------------------------------------------- /tests/celery_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/celery_tests.py -------------------------------------------------------------------------------- /tests/charts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/charts/__init__.py -------------------------------------------------------------------------------- /tests/charts/api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/charts/api_tests.py -------------------------------------------------------------------------------- /tests/charts/schema_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/charts/schema_tests.py -------------------------------------------------------------------------------- /tests/config_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/config_tests.py -------------------------------------------------------------------------------- /tests/core_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/core_tests.py -------------------------------------------------------------------------------- /tests/dashboard_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/dashboard_tests.py -------------------------------------------------------------------------------- /tests/dashboards/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/dashboards/__init__.py -------------------------------------------------------------------------------- /tests/dashboards/api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/dashboards/api_tests.py -------------------------------------------------------------------------------- /tests/dashboards/dao_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/dashboards/dao_tests.py -------------------------------------------------------------------------------- /tests/database_api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/database_api_tests.py -------------------------------------------------------------------------------- /tests/dataframe_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/dataframe_test.py -------------------------------------------------------------------------------- /tests/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/datasets/__init__.py -------------------------------------------------------------------------------- /tests/datasets/api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/datasets/api_tests.py -------------------------------------------------------------------------------- /tests/datasource_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/datasource_tests.py -------------------------------------------------------------------------------- /tests/db_engine_specs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/db_engine_specs/__init__.py -------------------------------------------------------------------------------- /tests/db_engine_specs/athena_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/db_engine_specs/athena_tests.py -------------------------------------------------------------------------------- /tests/db_engine_specs/base_engine_spec_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/db_engine_specs/base_engine_spec_tests.py -------------------------------------------------------------------------------- /tests/db_engine_specs/base_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/db_engine_specs/base_tests.py -------------------------------------------------------------------------------- /tests/db_engine_specs/bigquery_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/db_engine_specs/bigquery_tests.py -------------------------------------------------------------------------------- /tests/db_engine_specs/clickhouse_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/db_engine_specs/clickhouse_tests.py -------------------------------------------------------------------------------- /tests/db_engine_specs/drill_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/db_engine_specs/drill_tests.py -------------------------------------------------------------------------------- /tests/db_engine_specs/druid_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/db_engine_specs/druid_tests.py -------------------------------------------------------------------------------- /tests/db_engine_specs/elasticsearch_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/db_engine_specs/elasticsearch_tests.py -------------------------------------------------------------------------------- /tests/db_engine_specs/hive_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/db_engine_specs/hive_tests.py -------------------------------------------------------------------------------- /tests/db_engine_specs/impala_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/db_engine_specs/impala_tests.py -------------------------------------------------------------------------------- /tests/db_engine_specs/kylin_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/db_engine_specs/kylin_tests.py -------------------------------------------------------------------------------- /tests/db_engine_specs/mssql_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/db_engine_specs/mssql_tests.py -------------------------------------------------------------------------------- /tests/db_engine_specs/mysql_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/db_engine_specs/mysql_tests.py -------------------------------------------------------------------------------- /tests/db_engine_specs/oracle_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/db_engine_specs/oracle_tests.py -------------------------------------------------------------------------------- /tests/db_engine_specs/pinot_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/db_engine_specs/pinot_tests.py -------------------------------------------------------------------------------- /tests/db_engine_specs/postgres_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/db_engine_specs/postgres_tests.py -------------------------------------------------------------------------------- /tests/db_engine_specs/presto_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/db_engine_specs/presto_tests.py -------------------------------------------------------------------------------- /tests/db_engine_specs/snowflake_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/db_engine_specs/snowflake_tests.py -------------------------------------------------------------------------------- /tests/db_engine_specs/sqlite_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/db_engine_specs/sqlite_tests.py -------------------------------------------------------------------------------- /tests/dict_import_export_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/dict_import_export_tests.py -------------------------------------------------------------------------------- /tests/druid_func_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/druid_func_tests.py -------------------------------------------------------------------------------- /tests/druid_func_tests_sip38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/druid_func_tests_sip38.py -------------------------------------------------------------------------------- /tests/druid_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/druid_tests.py -------------------------------------------------------------------------------- /tests/email_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/email_tests.py -------------------------------------------------------------------------------- /tests/event_logger_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/event_logger_tests.py -------------------------------------------------------------------------------- /tests/feature_flag_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/feature_flag_tests.py -------------------------------------------------------------------------------- /tests/fixtures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/fixtures/__init__.py -------------------------------------------------------------------------------- /tests/fixtures/certificates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/fixtures/certificates.py -------------------------------------------------------------------------------- /tests/fixtures/dataframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/fixtures/dataframes.py -------------------------------------------------------------------------------- /tests/fixtures/datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/fixtures/datasource.py -------------------------------------------------------------------------------- /tests/fixtures/deck_geojson_form_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/fixtures/deck_geojson_form_data.json -------------------------------------------------------------------------------- /tests/fixtures/deck_path_form_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/fixtures/deck_path_form_data.json -------------------------------------------------------------------------------- /tests/fixtures/pyodbcRow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/fixtures/pyodbcRow.py -------------------------------------------------------------------------------- /tests/fixtures/query_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/fixtures/query_context.py -------------------------------------------------------------------------------- /tests/fixtures/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/fixtures/sample.png -------------------------------------------------------------------------------- /tests/fixtures/trends.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/fixtures/trends.csv -------------------------------------------------------------------------------- /tests/form_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/form_tests.py -------------------------------------------------------------------------------- /tests/import_export_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/import_export_tests.py -------------------------------------------------------------------------------- /tests/jinja_context_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/jinja_context_tests.py -------------------------------------------------------------------------------- /tests/load_examples_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/load_examples_test.py -------------------------------------------------------------------------------- /tests/log_api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/log_api_tests.py -------------------------------------------------------------------------------- /tests/logging_configurator_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/logging_configurator_tests.py -------------------------------------------------------------------------------- /tests/migration_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/migration_tests.py -------------------------------------------------------------------------------- /tests/model_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/model_tests.py -------------------------------------------------------------------------------- /tests/pandas_postprocessing_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/pandas_postprocessing_tests.py -------------------------------------------------------------------------------- /tests/queries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/queries/__init__.py -------------------------------------------------------------------------------- /tests/queries/api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/queries/api_tests.py -------------------------------------------------------------------------------- /tests/query_context_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/query_context_tests.py -------------------------------------------------------------------------------- /tests/result_set_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/result_set_tests.py -------------------------------------------------------------------------------- /tests/schedules_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/schedules_test.py -------------------------------------------------------------------------------- /tests/security/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/security/__init__.py -------------------------------------------------------------------------------- /tests/security/analytics_db_safety_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/security/analytics_db_safety_tests.py -------------------------------------------------------------------------------- /tests/security_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/security_tests.py -------------------------------------------------------------------------------- /tests/sql_parse_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/sql_parse_tests.py -------------------------------------------------------------------------------- /tests/sql_validator_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/sql_validator_tests.py -------------------------------------------------------------------------------- /tests/sqla_models_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/sqla_models_tests.py -------------------------------------------------------------------------------- /tests/sqllab_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/sqllab_tests.py -------------------------------------------------------------------------------- /tests/stats_logger_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/stats_logger_tests.py -------------------------------------------------------------------------------- /tests/strategy_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/strategy_tests.py -------------------------------------------------------------------------------- /tests/superset_test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/superset_test_config.py -------------------------------------------------------------------------------- /tests/superset_test_config_thumbnails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/superset_test_config_thumbnails.py -------------------------------------------------------------------------------- /tests/superset_test_custom_template_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/superset_test_custom_template_processors.py -------------------------------------------------------------------------------- /tests/tagging_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/tagging_tests.py -------------------------------------------------------------------------------- /tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/test_app.py -------------------------------------------------------------------------------- /tests/thumbnails_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/thumbnails_tests.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tests/utils_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/utils_tests.py -------------------------------------------------------------------------------- /tests/viz_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tests/viz_tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudmindsRobot/superBI/HEAD/tox.ini --------------------------------------------------------------------------------