├── .babelrc ├── .eslintrc ├── .gitignore ├── .meteor ├── .finished-upgraders ├── .gitignore ├── .id ├── packages ├── platforms ├── release └── versions ├── LICENSE ├── README.md ├── client ├── configs │ ├── context.js │ └── startup.js ├── main.js ├── modules │ ├── accounts │ │ ├── actions │ │ │ ├── accounts.js │ │ │ └── index.js │ │ ├── components │ │ │ ├── creating_user.jsx │ │ │ └── sign_in.jsx │ │ ├── configs │ │ │ └── accounts.js │ │ ├── containers │ │ │ ├── creating_user.js │ │ │ └── sign_in.js │ │ ├── index.js │ │ └── routes.jsx │ ├── admin │ │ ├── actions │ │ │ ├── admin.js │ │ │ ├── databases.js │ │ │ └── index.js │ │ ├── components │ │ │ ├── admin.import.styl │ │ │ ├── databases │ │ │ │ ├── database_form.jsx │ │ │ │ ├── database_item.jsx │ │ │ │ └── databases.jsx │ │ │ ├── dialog_delete.jsx │ │ │ ├── share_charts.jsx │ │ │ ├── share_dashboards.jsx │ │ │ ├── user_item.jsx │ │ │ └── users_list.jsx │ │ ├── containers │ │ │ ├── databases │ │ │ │ ├── database_form.js │ │ │ │ └── databases.js │ │ │ ├── share_charts.js │ │ │ ├── share_dashboards.js │ │ │ └── users_list.js │ │ ├── index.js │ │ └── routes.jsx │ ├── core │ │ ├── actions │ │ │ ├── core.js │ │ │ └── index.js │ │ ├── components │ │ │ ├── context_menu │ │ │ │ ├── color_values.jsx │ │ │ │ ├── context_menu.jsx │ │ │ │ └── format_number.jsx │ │ │ ├── core.import.styl │ │ │ ├── export_to_image │ │ │ │ ├── export_images_menu_item.jsx │ │ │ │ ├── image_renderer.jsx │ │ │ │ └── single_image_renderer.jsx │ │ │ ├── layout.jsx │ │ │ ├── material-ui-container.jsx │ │ │ ├── notifications │ │ │ │ ├── dialog_basic.jsx │ │ │ │ ├── dialog_important.jsx │ │ │ │ ├── dialog_interaction.jsx │ │ │ │ └── snackbar_message.jsx │ │ │ └── partial │ │ │ │ ├── agg_func_icon_menu.jsx │ │ │ │ ├── chart_constructor_block.jsx │ │ │ │ ├── check_role.jsx │ │ │ │ ├── database_drop_down.jsx │ │ │ │ ├── documents_button.jsx │ │ │ │ ├── drop_field.jsx │ │ │ │ ├── emptyLoading.jsx │ │ │ │ ├── generateLinks.js │ │ │ │ ├── helpdesk_button.jsx │ │ │ │ ├── loading.jsx │ │ │ │ ├── navigation.jsx │ │ │ │ └── sidebar.jsx │ │ ├── containers │ │ │ ├── check_role.js │ │ │ ├── context_menu │ │ │ │ ├── color_values.js │ │ │ │ └── format_number.js │ │ │ ├── database_drop_down.js │ │ │ ├── drop_field.js │ │ │ ├── export_to_image │ │ │ │ └── image_renderer.js │ │ │ ├── navigation.js │ │ │ ├── notifications │ │ │ │ ├── dialog_important.js │ │ │ │ ├── dialog_interaction.js │ │ │ │ └── snackbar_message.js │ │ │ └── sidebar.js │ │ └── index.js │ ├── home │ │ ├── actions │ │ │ ├── dashboard.js │ │ │ └── index.js │ │ ├── components │ │ │ ├── charts │ │ │ │ ├── handle_dashboards.jsx │ │ │ │ ├── handle_users.jsx │ │ │ │ ├── item.jsx │ │ │ │ └── list.jsx │ │ │ ├── dashboards │ │ │ │ ├── chart_footer.jsx │ │ │ │ ├── chart_header.jsx │ │ │ │ ├── dashboard.jsx │ │ │ │ ├── data_visualisation.jsx │ │ │ │ ├── handle_charts.jsx │ │ │ │ ├── item.jsx │ │ │ │ ├── list.jsx │ │ │ │ ├── presentation_mode │ │ │ │ │ ├── chart_viewer.jsx │ │ │ │ │ └── nav_button.jsx │ │ │ │ └── simple_table.jsx │ │ │ ├── handle_users │ │ │ │ ├── handle_users_menu_item.jsx │ │ │ │ └── user_menu_item.jsx │ │ │ ├── home.import.styl │ │ │ └── home.jsx │ │ ├── containers │ │ │ ├── charts │ │ │ │ ├── handle_dashboards.js │ │ │ │ ├── handle_users.js │ │ │ │ ├── handle_users_menu_item.js │ │ │ │ └── list.js │ │ │ ├── dashboards │ │ │ │ ├── chart_viewer.js │ │ │ │ ├── current_dashboard.js │ │ │ │ ├── dashboard.js │ │ │ │ ├── data_visualisation.js │ │ │ │ ├── handle_charts.js │ │ │ │ ├── handle_users_menu_item.js │ │ │ │ └── list.js │ │ │ └── home.js │ │ ├── index.js │ │ └── routes.jsx │ ├── publishing │ │ ├── components │ │ │ ├── chart.jsx │ │ │ ├── handle_publications_button.jsx │ │ │ ├── iframe_dialog.jsx │ │ │ ├── iframe_generator.jsx │ │ │ ├── publishing.import.styl │ │ │ └── share_layout.jsx │ │ ├── containers │ │ │ ├── chart.js │ │ │ └── iframe_dialog.js │ │ ├── index.js │ │ └── routes.jsx │ └── workplace │ │ ├── actions │ │ ├── charts.js │ │ ├── collection_fields.js │ │ ├── console.js │ │ ├── index.js │ │ ├── pivot.js │ │ ├── preview.js │ │ ├── tests │ │ │ └── collection_fields.js │ │ ├── workplace.js │ │ └── workplace_state.js │ │ ├── components │ │ ├── collection_fields │ │ │ ├── add_object_item.jsx │ │ │ ├── collection_fields.jsx │ │ │ ├── joining_collections.jsx │ │ │ ├── object_item.jsx │ │ │ └── object_tree.jsx │ │ ├── collection_list │ │ │ ├── collection_list.jsx │ │ │ └── collections.jsx │ │ ├── constructors │ │ │ ├── chart-constructor.jsx │ │ │ ├── constructor.jsx │ │ │ ├── constructor_block.jsx │ │ │ ├── constructor_block_field_item.jsx │ │ │ └── start_constructor.jsx │ │ ├── filters │ │ │ ├── boolean_filter.jsx │ │ │ ├── date_filter.jsx │ │ │ ├── filter.jsx │ │ │ └── filter_button.jsx │ │ ├── pivotview │ │ │ ├── pivot_table.jsx │ │ │ └── pivot_table_header.jsx │ │ ├── preview │ │ │ ├── chart_canvas.jsx │ │ │ ├── chart_sidebar.jsx │ │ │ ├── chart_type_button.jsx │ │ │ ├── data_type_menu.jsx │ │ │ ├── data_visualisation.jsx │ │ │ ├── expression_field.jsx │ │ │ ├── grouping_button.jsx │ │ │ ├── preview.jsx │ │ │ ├── preview_header.jsx │ │ │ ├── preview_header_col.jsx │ │ │ ├── preview_pagination.jsx │ │ │ ├── preview_toolbar.jsx │ │ │ ├── save_chart_form.jsx │ │ │ └── simple_table.jsx │ │ ├── sidebar │ │ │ ├── toggle_sidebar_state_tab.jsx │ │ │ └── workplace_sidebar.jsx │ │ ├── sql_editor │ │ │ ├── sql_button.jsx │ │ │ └── sql_editor.jsx │ │ ├── workplace.import.styl │ │ └── workplace.jsx │ │ ├── containers │ │ ├── collection_fields.js │ │ ├── collections_list │ │ │ ├── collections.js │ │ │ └── collections_list.js │ │ ├── constructors │ │ │ ├── chart-constructor.js │ │ │ └── constructor.js │ │ ├── joining_collections.js │ │ ├── object_tree.js │ │ ├── preview │ │ │ ├── chart_sidebar.js │ │ │ ├── data_visualisation.js │ │ │ ├── pivot_table.js │ │ │ ├── preview.js │ │ │ ├── preview_header.js │ │ │ ├── preview_toolbar.js │ │ │ └── save_chart_form.js │ │ └── workplace.js │ │ ├── index.js │ │ └── routes.jsx ├── single_components │ ├── chart_icons │ │ ├── BarIcon.jsx │ │ ├── BooleanTypeIcon.jsx │ │ ├── DoughnutIcon.jsx │ │ ├── IconWrapper.jsx │ │ ├── LineIcon.jsx │ │ ├── NumberTypeIcon.jsx │ │ ├── PieIcon.jsx │ │ ├── PolarAreaIcon.jsx │ │ ├── RadarIcon.jsx │ │ ├── SaveAsIcon.jsx │ │ ├── SaveIcon.jsx │ │ └── ScatterIcon.jsx │ ├── form_fields │ │ ├── drop_down.jsx │ │ ├── filter_field.jsx │ │ ├── formsy_multi_select.jsx │ │ ├── formsy_text_input.jsx │ │ ├── like_filter_info_btn.jsx │ │ └── text_input.jsx │ ├── get_chart.js │ └── notificator.js └── stylesheets │ ├── grid.css │ ├── main.styl │ ├── react-treeview.css │ └── stylus │ ├── general.import.styl │ ├── mixins.import.styl │ └── variables.import.styl ├── config ├── docker │ ├── README.txt │ ├── databazel │ │ └── Dockerfile │ ├── docker-compose.yml │ └── quasar │ │ └── Dockerfile ├── etc_nginx_sites-enabled_your_domain.conf ├── mup.json ├── quasar.json └── settings.json ├── databazel.sh ├── deploy-quasar.sh ├── deploy.sh ├── docs ├── OVERVIEW.md └── PRODUCTION-DEPLOYMENT.md ├── lib ├── chart_constructor.js ├── collectionHelpers │ ├── charts.js │ ├── dashboards.js │ └── users.js ├── collections.js ├── colors.js ├── common_functions.js ├── constants.js ├── data_processing.js ├── downloads.js ├── echarts_themes │ └── macarons.js ├── i18n │ ├── en.i18n.json │ └── index.js ├── schemas │ ├── charts.js │ ├── chartsLocations.js │ ├── dashboards.js │ └── index.js └── sql_parser.js ├── package.json ├── public ├── favicons │ ├── android-chrome-144x144.png │ ├── android-chrome-192x192.png │ ├── android-chrome-36x36.png │ ├── android-chrome-48x48.png │ ├── android-chrome-72x72.png │ ├── android-chrome-96x96.png │ ├── apple-touch-icon-114x114.png │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-144x144.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-57x57.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-72x72.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-194x194.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── manifest.json │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-310x310.png │ ├── mstile-70x70.png │ └── safari-pinned-tab.svg └── images │ ├── background-min.jpg │ ├── background.jpg │ ├── backgroundNew.jpg │ └── backgroundNew.svg └── server ├── configs ├── accounts.js ├── index.js └── startup.js ├── hooks ├── charts.js ├── dashboards.js └── index.js ├── lib ├── email │ ├── email_templates │ │ ├── enrolmentLetter.jsx │ │ ├── itemShareLetter.jsx │ │ └── parts │ │ │ ├── charts.jsx │ │ │ └── mainLayout.jsx │ ├── getItemShareLetterOptions.js │ └── stylesheets │ │ ├── charts.js │ │ └── mainLayout.js └── quasar.js ├── main.js ├── methods ├── accounts.js ├── charts.js ├── chartsLocations.js ├── dashboard.js ├── exportCsv.js ├── index.js ├── quasar.js └── users.js └── publications ├── charts.js ├── chartsLocations.js ├── dashboards.js ├── index.js └── users.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /node_modules 3 | .idea/ -------------------------------------------------------------------------------- /.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | dev_bundle 3 | -------------------------------------------------------------------------------- /.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/.meteor/.id -------------------------------------------------------------------------------- /.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/.meteor/packages -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.3.2.4 2 | -------------------------------------------------------------------------------- /.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/.meteor/versions -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/README.md -------------------------------------------------------------------------------- /client/configs/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/configs/context.js -------------------------------------------------------------------------------- /client/configs/startup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/configs/startup.js -------------------------------------------------------------------------------- /client/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/main.js -------------------------------------------------------------------------------- /client/modules/accounts/actions/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/accounts/actions/accounts.js -------------------------------------------------------------------------------- /client/modules/accounts/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/accounts/actions/index.js -------------------------------------------------------------------------------- /client/modules/accounts/components/creating_user.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/accounts/components/creating_user.jsx -------------------------------------------------------------------------------- /client/modules/accounts/components/sign_in.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/accounts/components/sign_in.jsx -------------------------------------------------------------------------------- /client/modules/accounts/configs/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/accounts/configs/accounts.js -------------------------------------------------------------------------------- /client/modules/accounts/containers/creating_user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/accounts/containers/creating_user.js -------------------------------------------------------------------------------- /client/modules/accounts/containers/sign_in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/accounts/containers/sign_in.js -------------------------------------------------------------------------------- /client/modules/accounts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/accounts/index.js -------------------------------------------------------------------------------- /client/modules/accounts/routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/accounts/routes.jsx -------------------------------------------------------------------------------- /client/modules/admin/actions/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/admin/actions/admin.js -------------------------------------------------------------------------------- /client/modules/admin/actions/databases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/admin/actions/databases.js -------------------------------------------------------------------------------- /client/modules/admin/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/admin/actions/index.js -------------------------------------------------------------------------------- /client/modules/admin/components/admin.import.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/admin/components/admin.import.styl -------------------------------------------------------------------------------- /client/modules/admin/components/databases/database_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/admin/components/databases/database_form.jsx -------------------------------------------------------------------------------- /client/modules/admin/components/databases/database_item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/admin/components/databases/database_item.jsx -------------------------------------------------------------------------------- /client/modules/admin/components/databases/databases.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/admin/components/databases/databases.jsx -------------------------------------------------------------------------------- /client/modules/admin/components/dialog_delete.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/admin/components/dialog_delete.jsx -------------------------------------------------------------------------------- /client/modules/admin/components/share_charts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/admin/components/share_charts.jsx -------------------------------------------------------------------------------- /client/modules/admin/components/share_dashboards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/admin/components/share_dashboards.jsx -------------------------------------------------------------------------------- /client/modules/admin/components/user_item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/admin/components/user_item.jsx -------------------------------------------------------------------------------- /client/modules/admin/components/users_list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/admin/components/users_list.jsx -------------------------------------------------------------------------------- /client/modules/admin/containers/databases/database_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/admin/containers/databases/database_form.js -------------------------------------------------------------------------------- /client/modules/admin/containers/databases/databases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/admin/containers/databases/databases.js -------------------------------------------------------------------------------- /client/modules/admin/containers/share_charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/admin/containers/share_charts.js -------------------------------------------------------------------------------- /client/modules/admin/containers/share_dashboards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/admin/containers/share_dashboards.js -------------------------------------------------------------------------------- /client/modules/admin/containers/users_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/admin/containers/users_list.js -------------------------------------------------------------------------------- /client/modules/admin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/admin/index.js -------------------------------------------------------------------------------- /client/modules/admin/routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/admin/routes.jsx -------------------------------------------------------------------------------- /client/modules/core/actions/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/actions/core.js -------------------------------------------------------------------------------- /client/modules/core/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/actions/index.js -------------------------------------------------------------------------------- /client/modules/core/components/context_menu/color_values.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/context_menu/color_values.jsx -------------------------------------------------------------------------------- /client/modules/core/components/context_menu/context_menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/context_menu/context_menu.jsx -------------------------------------------------------------------------------- /client/modules/core/components/context_menu/format_number.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/context_menu/format_number.jsx -------------------------------------------------------------------------------- /client/modules/core/components/core.import.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/core.import.styl -------------------------------------------------------------------------------- /client/modules/core/components/export_to_image/export_images_menu_item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/export_to_image/export_images_menu_item.jsx -------------------------------------------------------------------------------- /client/modules/core/components/export_to_image/image_renderer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/export_to_image/image_renderer.jsx -------------------------------------------------------------------------------- /client/modules/core/components/export_to_image/single_image_renderer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/export_to_image/single_image_renderer.jsx -------------------------------------------------------------------------------- /client/modules/core/components/layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/layout.jsx -------------------------------------------------------------------------------- /client/modules/core/components/material-ui-container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/material-ui-container.jsx -------------------------------------------------------------------------------- /client/modules/core/components/notifications/dialog_basic.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/notifications/dialog_basic.jsx -------------------------------------------------------------------------------- /client/modules/core/components/notifications/dialog_important.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/notifications/dialog_important.jsx -------------------------------------------------------------------------------- /client/modules/core/components/notifications/dialog_interaction.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/notifications/dialog_interaction.jsx -------------------------------------------------------------------------------- /client/modules/core/components/notifications/snackbar_message.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/notifications/snackbar_message.jsx -------------------------------------------------------------------------------- /client/modules/core/components/partial/agg_func_icon_menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/partial/agg_func_icon_menu.jsx -------------------------------------------------------------------------------- /client/modules/core/components/partial/chart_constructor_block.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/partial/chart_constructor_block.jsx -------------------------------------------------------------------------------- /client/modules/core/components/partial/check_role.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/partial/check_role.jsx -------------------------------------------------------------------------------- /client/modules/core/components/partial/database_drop_down.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/partial/database_drop_down.jsx -------------------------------------------------------------------------------- /client/modules/core/components/partial/documents_button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/partial/documents_button.jsx -------------------------------------------------------------------------------- /client/modules/core/components/partial/drop_field.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/partial/drop_field.jsx -------------------------------------------------------------------------------- /client/modules/core/components/partial/emptyLoading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/partial/emptyLoading.jsx -------------------------------------------------------------------------------- /client/modules/core/components/partial/generateLinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/partial/generateLinks.js -------------------------------------------------------------------------------- /client/modules/core/components/partial/helpdesk_button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/partial/helpdesk_button.jsx -------------------------------------------------------------------------------- /client/modules/core/components/partial/loading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/partial/loading.jsx -------------------------------------------------------------------------------- /client/modules/core/components/partial/navigation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/partial/navigation.jsx -------------------------------------------------------------------------------- /client/modules/core/components/partial/sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/components/partial/sidebar.jsx -------------------------------------------------------------------------------- /client/modules/core/containers/check_role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/containers/check_role.js -------------------------------------------------------------------------------- /client/modules/core/containers/context_menu/color_values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/containers/context_menu/color_values.js -------------------------------------------------------------------------------- /client/modules/core/containers/context_menu/format_number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/containers/context_menu/format_number.js -------------------------------------------------------------------------------- /client/modules/core/containers/database_drop_down.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/containers/database_drop_down.js -------------------------------------------------------------------------------- /client/modules/core/containers/drop_field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/containers/drop_field.js -------------------------------------------------------------------------------- /client/modules/core/containers/export_to_image/image_renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/containers/export_to_image/image_renderer.js -------------------------------------------------------------------------------- /client/modules/core/containers/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/containers/navigation.js -------------------------------------------------------------------------------- /client/modules/core/containers/notifications/dialog_important.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/containers/notifications/dialog_important.js -------------------------------------------------------------------------------- /client/modules/core/containers/notifications/dialog_interaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/containers/notifications/dialog_interaction.js -------------------------------------------------------------------------------- /client/modules/core/containers/notifications/snackbar_message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/containers/notifications/snackbar_message.js -------------------------------------------------------------------------------- /client/modules/core/containers/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/containers/sidebar.js -------------------------------------------------------------------------------- /client/modules/core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/core/index.js -------------------------------------------------------------------------------- /client/modules/home/actions/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/actions/dashboard.js -------------------------------------------------------------------------------- /client/modules/home/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/actions/index.js -------------------------------------------------------------------------------- /client/modules/home/components/charts/handle_dashboards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/components/charts/handle_dashboards.jsx -------------------------------------------------------------------------------- /client/modules/home/components/charts/handle_users.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/components/charts/handle_users.jsx -------------------------------------------------------------------------------- /client/modules/home/components/charts/item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/components/charts/item.jsx -------------------------------------------------------------------------------- /client/modules/home/components/charts/list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/components/charts/list.jsx -------------------------------------------------------------------------------- /client/modules/home/components/dashboards/chart_footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/components/dashboards/chart_footer.jsx -------------------------------------------------------------------------------- /client/modules/home/components/dashboards/chart_header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/components/dashboards/chart_header.jsx -------------------------------------------------------------------------------- /client/modules/home/components/dashboards/dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/components/dashboards/dashboard.jsx -------------------------------------------------------------------------------- /client/modules/home/components/dashboards/data_visualisation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/components/dashboards/data_visualisation.jsx -------------------------------------------------------------------------------- /client/modules/home/components/dashboards/handle_charts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/components/dashboards/handle_charts.jsx -------------------------------------------------------------------------------- /client/modules/home/components/dashboards/item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/components/dashboards/item.jsx -------------------------------------------------------------------------------- /client/modules/home/components/dashboards/list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/components/dashboards/list.jsx -------------------------------------------------------------------------------- /client/modules/home/components/dashboards/presentation_mode/chart_viewer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/components/dashboards/presentation_mode/chart_viewer.jsx -------------------------------------------------------------------------------- /client/modules/home/components/dashboards/presentation_mode/nav_button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/components/dashboards/presentation_mode/nav_button.jsx -------------------------------------------------------------------------------- /client/modules/home/components/dashboards/simple_table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/components/dashboards/simple_table.jsx -------------------------------------------------------------------------------- /client/modules/home/components/handle_users/handle_users_menu_item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/components/handle_users/handle_users_menu_item.jsx -------------------------------------------------------------------------------- /client/modules/home/components/handle_users/user_menu_item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/components/handle_users/user_menu_item.jsx -------------------------------------------------------------------------------- /client/modules/home/components/home.import.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/components/home.import.styl -------------------------------------------------------------------------------- /client/modules/home/components/home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/components/home.jsx -------------------------------------------------------------------------------- /client/modules/home/containers/charts/handle_dashboards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/containers/charts/handle_dashboards.js -------------------------------------------------------------------------------- /client/modules/home/containers/charts/handle_users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/containers/charts/handle_users.js -------------------------------------------------------------------------------- /client/modules/home/containers/charts/handle_users_menu_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/containers/charts/handle_users_menu_item.js -------------------------------------------------------------------------------- /client/modules/home/containers/charts/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/containers/charts/list.js -------------------------------------------------------------------------------- /client/modules/home/containers/dashboards/chart_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/containers/dashboards/chart_viewer.js -------------------------------------------------------------------------------- /client/modules/home/containers/dashboards/current_dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/containers/dashboards/current_dashboard.js -------------------------------------------------------------------------------- /client/modules/home/containers/dashboards/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/containers/dashboards/dashboard.js -------------------------------------------------------------------------------- /client/modules/home/containers/dashboards/data_visualisation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/containers/dashboards/data_visualisation.js -------------------------------------------------------------------------------- /client/modules/home/containers/dashboards/handle_charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/containers/dashboards/handle_charts.js -------------------------------------------------------------------------------- /client/modules/home/containers/dashboards/handle_users_menu_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/containers/dashboards/handle_users_menu_item.js -------------------------------------------------------------------------------- /client/modules/home/containers/dashboards/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/containers/dashboards/list.js -------------------------------------------------------------------------------- /client/modules/home/containers/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/containers/home.js -------------------------------------------------------------------------------- /client/modules/home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/index.js -------------------------------------------------------------------------------- /client/modules/home/routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/home/routes.jsx -------------------------------------------------------------------------------- /client/modules/publishing/components/chart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/publishing/components/chart.jsx -------------------------------------------------------------------------------- /client/modules/publishing/components/handle_publications_button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/publishing/components/handle_publications_button.jsx -------------------------------------------------------------------------------- /client/modules/publishing/components/iframe_dialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/publishing/components/iframe_dialog.jsx -------------------------------------------------------------------------------- /client/modules/publishing/components/iframe_generator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/publishing/components/iframe_generator.jsx -------------------------------------------------------------------------------- /client/modules/publishing/components/publishing.import.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/publishing/components/publishing.import.styl -------------------------------------------------------------------------------- /client/modules/publishing/components/share_layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/publishing/components/share_layout.jsx -------------------------------------------------------------------------------- /client/modules/publishing/containers/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/publishing/containers/chart.js -------------------------------------------------------------------------------- /client/modules/publishing/containers/iframe_dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/publishing/containers/iframe_dialog.js -------------------------------------------------------------------------------- /client/modules/publishing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/publishing/index.js -------------------------------------------------------------------------------- /client/modules/publishing/routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/publishing/routes.jsx -------------------------------------------------------------------------------- /client/modules/workplace/actions/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/actions/charts.js -------------------------------------------------------------------------------- /client/modules/workplace/actions/collection_fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/actions/collection_fields.js -------------------------------------------------------------------------------- /client/modules/workplace/actions/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/actions/console.js -------------------------------------------------------------------------------- /client/modules/workplace/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/actions/index.js -------------------------------------------------------------------------------- /client/modules/workplace/actions/pivot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/actions/pivot.js -------------------------------------------------------------------------------- /client/modules/workplace/actions/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/actions/preview.js -------------------------------------------------------------------------------- /client/modules/workplace/actions/tests/collection_fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/actions/tests/collection_fields.js -------------------------------------------------------------------------------- /client/modules/workplace/actions/workplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/actions/workplace.js -------------------------------------------------------------------------------- /client/modules/workplace/actions/workplace_state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/actions/workplace_state.js -------------------------------------------------------------------------------- /client/modules/workplace/components/collection_fields/add_object_item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/collection_fields/add_object_item.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/collection_fields/collection_fields.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/collection_fields/collection_fields.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/collection_fields/joining_collections.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/collection_fields/joining_collections.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/collection_fields/object_item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/collection_fields/object_item.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/collection_fields/object_tree.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/collection_fields/object_tree.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/collection_list/collection_list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/collection_list/collection_list.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/collection_list/collections.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/collection_list/collections.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/constructors/chart-constructor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/constructors/chart-constructor.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/constructors/constructor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/constructors/constructor.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/constructors/constructor_block.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/constructors/constructor_block.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/constructors/constructor_block_field_item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/constructors/constructor_block_field_item.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/constructors/start_constructor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/constructors/start_constructor.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/filters/boolean_filter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/filters/boolean_filter.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/filters/date_filter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/filters/date_filter.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/filters/filter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/filters/filter.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/filters/filter_button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/filters/filter_button.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/pivotview/pivot_table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/pivotview/pivot_table.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/pivotview/pivot_table_header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/pivotview/pivot_table_header.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/preview/chart_canvas.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/preview/chart_canvas.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/preview/chart_sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/preview/chart_sidebar.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/preview/chart_type_button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/preview/chart_type_button.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/preview/data_type_menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/preview/data_type_menu.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/preview/data_visualisation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/preview/data_visualisation.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/preview/expression_field.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/preview/expression_field.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/preview/grouping_button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/preview/grouping_button.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/preview/preview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/preview/preview.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/preview/preview_header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/preview/preview_header.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/preview/preview_header_col.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/preview/preview_header_col.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/preview/preview_pagination.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/preview/preview_pagination.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/preview/preview_toolbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/preview/preview_toolbar.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/preview/save_chart_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/preview/save_chart_form.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/preview/simple_table.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/preview/simple_table.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/sidebar/toggle_sidebar_state_tab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/sidebar/toggle_sidebar_state_tab.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/sidebar/workplace_sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/sidebar/workplace_sidebar.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/sql_editor/sql_button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/sql_editor/sql_button.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/sql_editor/sql_editor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/sql_editor/sql_editor.jsx -------------------------------------------------------------------------------- /client/modules/workplace/components/workplace.import.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/workplace.import.styl -------------------------------------------------------------------------------- /client/modules/workplace/components/workplace.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/components/workplace.jsx -------------------------------------------------------------------------------- /client/modules/workplace/containers/collection_fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/containers/collection_fields.js -------------------------------------------------------------------------------- /client/modules/workplace/containers/collections_list/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/containers/collections_list/collections.js -------------------------------------------------------------------------------- /client/modules/workplace/containers/collections_list/collections_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/containers/collections_list/collections_list.js -------------------------------------------------------------------------------- /client/modules/workplace/containers/constructors/chart-constructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/containers/constructors/chart-constructor.js -------------------------------------------------------------------------------- /client/modules/workplace/containers/constructors/constructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/containers/constructors/constructor.js -------------------------------------------------------------------------------- /client/modules/workplace/containers/joining_collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/containers/joining_collections.js -------------------------------------------------------------------------------- /client/modules/workplace/containers/object_tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/containers/object_tree.js -------------------------------------------------------------------------------- /client/modules/workplace/containers/preview/chart_sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/containers/preview/chart_sidebar.js -------------------------------------------------------------------------------- /client/modules/workplace/containers/preview/data_visualisation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/containers/preview/data_visualisation.js -------------------------------------------------------------------------------- /client/modules/workplace/containers/preview/pivot_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/containers/preview/pivot_table.js -------------------------------------------------------------------------------- /client/modules/workplace/containers/preview/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/containers/preview/preview.js -------------------------------------------------------------------------------- /client/modules/workplace/containers/preview/preview_header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/containers/preview/preview_header.js -------------------------------------------------------------------------------- /client/modules/workplace/containers/preview/preview_toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/containers/preview/preview_toolbar.js -------------------------------------------------------------------------------- /client/modules/workplace/containers/preview/save_chart_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/containers/preview/save_chart_form.js -------------------------------------------------------------------------------- /client/modules/workplace/containers/workplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/containers/workplace.js -------------------------------------------------------------------------------- /client/modules/workplace/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/index.js -------------------------------------------------------------------------------- /client/modules/workplace/routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/modules/workplace/routes.jsx -------------------------------------------------------------------------------- /client/single_components/chart_icons/BarIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/single_components/chart_icons/BarIcon.jsx -------------------------------------------------------------------------------- /client/single_components/chart_icons/BooleanTypeIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/single_components/chart_icons/BooleanTypeIcon.jsx -------------------------------------------------------------------------------- /client/single_components/chart_icons/DoughnutIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/single_components/chart_icons/DoughnutIcon.jsx -------------------------------------------------------------------------------- /client/single_components/chart_icons/IconWrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/single_components/chart_icons/IconWrapper.jsx -------------------------------------------------------------------------------- /client/single_components/chart_icons/LineIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/single_components/chart_icons/LineIcon.jsx -------------------------------------------------------------------------------- /client/single_components/chart_icons/NumberTypeIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/single_components/chart_icons/NumberTypeIcon.jsx -------------------------------------------------------------------------------- /client/single_components/chart_icons/PieIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/single_components/chart_icons/PieIcon.jsx -------------------------------------------------------------------------------- /client/single_components/chart_icons/PolarAreaIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/single_components/chart_icons/PolarAreaIcon.jsx -------------------------------------------------------------------------------- /client/single_components/chart_icons/RadarIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/single_components/chart_icons/RadarIcon.jsx -------------------------------------------------------------------------------- /client/single_components/chart_icons/SaveAsIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/single_components/chart_icons/SaveAsIcon.jsx -------------------------------------------------------------------------------- /client/single_components/chart_icons/SaveIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/single_components/chart_icons/SaveIcon.jsx -------------------------------------------------------------------------------- /client/single_components/chart_icons/ScatterIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/single_components/chart_icons/ScatterIcon.jsx -------------------------------------------------------------------------------- /client/single_components/form_fields/drop_down.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/single_components/form_fields/drop_down.jsx -------------------------------------------------------------------------------- /client/single_components/form_fields/filter_field.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/single_components/form_fields/filter_field.jsx -------------------------------------------------------------------------------- /client/single_components/form_fields/formsy_multi_select.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/single_components/form_fields/formsy_multi_select.jsx -------------------------------------------------------------------------------- /client/single_components/form_fields/formsy_text_input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/single_components/form_fields/formsy_text_input.jsx -------------------------------------------------------------------------------- /client/single_components/form_fields/like_filter_info_btn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/single_components/form_fields/like_filter_info_btn.jsx -------------------------------------------------------------------------------- /client/single_components/form_fields/text_input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/single_components/form_fields/text_input.jsx -------------------------------------------------------------------------------- /client/single_components/get_chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/single_components/get_chart.js -------------------------------------------------------------------------------- /client/single_components/notificator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/single_components/notificator.js -------------------------------------------------------------------------------- /client/stylesheets/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/stylesheets/grid.css -------------------------------------------------------------------------------- /client/stylesheets/main.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/stylesheets/main.styl -------------------------------------------------------------------------------- /client/stylesheets/react-treeview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/stylesheets/react-treeview.css -------------------------------------------------------------------------------- /client/stylesheets/stylus/general.import.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/client/stylesheets/stylus/general.import.styl -------------------------------------------------------------------------------- /client/stylesheets/stylus/mixins.import.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/stylesheets/stylus/variables.import.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/docker/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/config/docker/README.txt -------------------------------------------------------------------------------- /config/docker/databazel/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/config/docker/databazel/Dockerfile -------------------------------------------------------------------------------- /config/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/config/docker/docker-compose.yml -------------------------------------------------------------------------------- /config/docker/quasar/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/config/docker/quasar/Dockerfile -------------------------------------------------------------------------------- /config/etc_nginx_sites-enabled_your_domain.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/config/etc_nginx_sites-enabled_your_domain.conf -------------------------------------------------------------------------------- /config/mup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/config/mup.json -------------------------------------------------------------------------------- /config/quasar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/config/quasar.json -------------------------------------------------------------------------------- /config/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/config/settings.json -------------------------------------------------------------------------------- /databazel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/databazel.sh -------------------------------------------------------------------------------- /deploy-quasar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/deploy-quasar.sh -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/deploy.sh -------------------------------------------------------------------------------- /docs/OVERVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/docs/OVERVIEW.md -------------------------------------------------------------------------------- /docs/PRODUCTION-DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/docs/PRODUCTION-DEPLOYMENT.md -------------------------------------------------------------------------------- /lib/chart_constructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/lib/chart_constructor.js -------------------------------------------------------------------------------- /lib/collectionHelpers/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/lib/collectionHelpers/charts.js -------------------------------------------------------------------------------- /lib/collectionHelpers/dashboards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/lib/collectionHelpers/dashboards.js -------------------------------------------------------------------------------- /lib/collectionHelpers/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/lib/collectionHelpers/users.js -------------------------------------------------------------------------------- /lib/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/lib/collections.js -------------------------------------------------------------------------------- /lib/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/lib/colors.js -------------------------------------------------------------------------------- /lib/common_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/lib/common_functions.js -------------------------------------------------------------------------------- /lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/lib/constants.js -------------------------------------------------------------------------------- /lib/data_processing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/lib/data_processing.js -------------------------------------------------------------------------------- /lib/downloads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/lib/downloads.js -------------------------------------------------------------------------------- /lib/echarts_themes/macarons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/lib/echarts_themes/macarons.js -------------------------------------------------------------------------------- /lib/i18n/en.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/lib/i18n/en.i18n.json -------------------------------------------------------------------------------- /lib/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/lib/i18n/index.js -------------------------------------------------------------------------------- /lib/schemas/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/lib/schemas/charts.js -------------------------------------------------------------------------------- /lib/schemas/chartsLocations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/lib/schemas/chartsLocations.js -------------------------------------------------------------------------------- /lib/schemas/dashboards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/lib/schemas/dashboards.js -------------------------------------------------------------------------------- /lib/schemas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/lib/schemas/index.js -------------------------------------------------------------------------------- /lib/sql_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/lib/sql_parser.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/package.json -------------------------------------------------------------------------------- /public/favicons/android-chrome-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/android-chrome-144x144.png -------------------------------------------------------------------------------- /public/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/favicons/android-chrome-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/android-chrome-36x36.png -------------------------------------------------------------------------------- /public/favicons/android-chrome-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/android-chrome-48x48.png -------------------------------------------------------------------------------- /public/favicons/android-chrome-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/android-chrome-72x72.png -------------------------------------------------------------------------------- /public/favicons/android-chrome-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/android-chrome-96x96.png -------------------------------------------------------------------------------- /public/favicons/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /public/favicons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /public/favicons/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /public/favicons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /public/favicons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /public/favicons/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /public/favicons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /public/favicons/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /public/favicons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /public/favicons/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /public/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/browserconfig.xml -------------------------------------------------------------------------------- /public/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicons/favicon-194x194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/favicon-194x194.png -------------------------------------------------------------------------------- /public/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/favicon-96x96.png -------------------------------------------------------------------------------- /public/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/favicon.ico -------------------------------------------------------------------------------- /public/favicons/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/manifest.json -------------------------------------------------------------------------------- /public/favicons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/mstile-144x144.png -------------------------------------------------------------------------------- /public/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /public/favicons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/mstile-310x150.png -------------------------------------------------------------------------------- /public/favicons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/mstile-310x310.png -------------------------------------------------------------------------------- /public/favicons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/mstile-70x70.png -------------------------------------------------------------------------------- /public/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/images/background-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/images/background-min.jpg -------------------------------------------------------------------------------- /public/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/images/background.jpg -------------------------------------------------------------------------------- /public/images/backgroundNew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/images/backgroundNew.jpg -------------------------------------------------------------------------------- /public/images/backgroundNew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/public/images/backgroundNew.svg -------------------------------------------------------------------------------- /server/configs/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/configs/accounts.js -------------------------------------------------------------------------------- /server/configs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/configs/index.js -------------------------------------------------------------------------------- /server/configs/startup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/configs/startup.js -------------------------------------------------------------------------------- /server/hooks/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/hooks/charts.js -------------------------------------------------------------------------------- /server/hooks/dashboards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/hooks/dashboards.js -------------------------------------------------------------------------------- /server/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/hooks/index.js -------------------------------------------------------------------------------- /server/lib/email/email_templates/enrolmentLetter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/lib/email/email_templates/enrolmentLetter.jsx -------------------------------------------------------------------------------- /server/lib/email/email_templates/itemShareLetter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/lib/email/email_templates/itemShareLetter.jsx -------------------------------------------------------------------------------- /server/lib/email/email_templates/parts/charts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/lib/email/email_templates/parts/charts.jsx -------------------------------------------------------------------------------- /server/lib/email/email_templates/parts/mainLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/lib/email/email_templates/parts/mainLayout.jsx -------------------------------------------------------------------------------- /server/lib/email/getItemShareLetterOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/lib/email/getItemShareLetterOptions.js -------------------------------------------------------------------------------- /server/lib/email/stylesheets/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/lib/email/stylesheets/charts.js -------------------------------------------------------------------------------- /server/lib/email/stylesheets/mainLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/lib/email/stylesheets/mainLayout.js -------------------------------------------------------------------------------- /server/lib/quasar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/lib/quasar.js -------------------------------------------------------------------------------- /server/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/main.js -------------------------------------------------------------------------------- /server/methods/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/methods/accounts.js -------------------------------------------------------------------------------- /server/methods/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/methods/charts.js -------------------------------------------------------------------------------- /server/methods/chartsLocations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/methods/chartsLocations.js -------------------------------------------------------------------------------- /server/methods/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/methods/dashboard.js -------------------------------------------------------------------------------- /server/methods/exportCsv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/methods/exportCsv.js -------------------------------------------------------------------------------- /server/methods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/methods/index.js -------------------------------------------------------------------------------- /server/methods/quasar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/methods/quasar.js -------------------------------------------------------------------------------- /server/methods/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/methods/users.js -------------------------------------------------------------------------------- /server/publications/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/publications/charts.js -------------------------------------------------------------------------------- /server/publications/chartsLocations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/publications/chartsLocations.js -------------------------------------------------------------------------------- /server/publications/dashboards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/publications/dashboards.js -------------------------------------------------------------------------------- /server/publications/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/publications/index.js -------------------------------------------------------------------------------- /server/publications/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiko-dev/Databazel/HEAD/server/publications/users.js --------------------------------------------------------------------------------