├── .dockerignore ├── .gitignore ├── AUTHORS.md ├── BUILD.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEVELOPMENT.MD ├── LICENSE ├── README-OmniDB.md ├── README.md ├── artwork ├── logo.svg ├── logo_gears.svg ├── logo_small.svg ├── logo_small2.svg ├── pgmanage_128.png ├── pgmanage_16.png ├── pgmanage_24.png ├── pgmanage_256.png ├── pgmanage_32.png ├── pgmanage_48.png ├── pgmanage_512.png ├── pgmanage_64.png ├── pgmanage_96.png ├── readme_banner.png └── showcase.gif ├── deploy ├── app │ ├── index.html │ ├── package.json │ ├── pgmanage.desktop │ └── pgmanage_icon.png ├── linux │ ├── build_images.sh │ ├── deploy.sh │ ├── pkgbuild │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ └── icons.tar.gz │ └── tarbuild │ │ ├── Dockerfile │ │ └── entrypoint.sh ├── macosx │ ├── README.md │ ├── deploy.sh │ ├── mac-icon.icns │ └── settings.py └── windows │ ├── deploy.sh │ ├── install_header.bmp │ ├── install_script.nsi │ ├── license.txt │ └── win-icon.ico ├── pgmanage ├── app │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── bgjob │ │ ├── __init__.py │ │ ├── jobs.py │ │ └── process_executor.py │ ├── client_manager │ │ ├── __init__.py │ │ └── client_manager.py │ ├── converters.py │ ├── file_manager │ │ ├── __init__.py │ │ └── file_manager.py │ ├── include │ │ ├── OmniDatabase │ │ │ ├── MSSQL.py │ │ │ ├── MariaDB.py │ │ │ ├── MySQL.py │ │ │ ├── Oracle.py │ │ │ ├── PostgreSQL.py │ │ │ ├── SQLite.py │ │ │ ├── __init__.py │ │ │ └── sql_templates │ │ │ │ ├── __init__.py │ │ │ │ ├── mariadb.py │ │ │ │ ├── mssql.py │ │ │ │ ├── mysql.py │ │ │ │ ├── oracle.py │ │ │ │ ├── postgres.py │ │ │ │ └── sqlite.py │ │ ├── Session.py │ │ ├── Spartacus │ │ │ ├── Database.py │ │ │ ├── Utils.py │ │ │ └── __init__.py │ │ ├── __init__.py │ │ └── custom_paramiko_expect.py │ ├── middleware.py │ ├── migrations │ │ ├── 0001_3_0_0.py │ │ ├── 0002_3_0_1.py │ │ ├── 0003_userdetails_masterpass_check.py │ │ ├── 0004_confighistory.py │ │ ├── 0005_job.py │ │ ├── 0006_userdetails_binary_path.py │ │ ├── 0007_connection_connection_params.py │ │ ├── 0008_userdetails_date_format.py │ │ ├── 0009_tab_database.py │ │ ├── 0010_connection_last_used_database.py │ │ ├── 0011_userdetails_pigz_path.py │ │ ├── 0012_userdetails_autocomplete.py │ │ ├── 0013_connection_last_access_date.py │ │ ├── 0014_auto_20231222_1353.py │ │ ├── 0015_query_and_console_history_database.py │ │ ├── 0015_rename_monunits_and_monunitsconnections.py │ │ ├── 0016_replace_is_default_with_editable.py │ │ ├── 0017_merge_20240209_1300.py │ │ ├── 0018_userdetails_restore_tabs.py │ │ ├── 0019_userdetails_scroll_tree.py │ │ ├── 0020_connection_color_label.py │ │ ├── 0021_group_unique_user_group_name.py │ │ ├── 0022_alter_userdetails_csv_delimiter.py │ │ ├── 0023_remove_userdetails_welcome_closed.py │ │ ├── 0024_drop_old_dashboard_settings.py │ │ ├── 0025_monwidgetsconnections_position_and_more.py │ │ ├── 0026_alter_monwidgets_script_chart.py │ │ ├── 0026_connection_pinned_databases.py │ │ ├── 0027_erdlayout.py │ │ ├── 0028_merge_20250821_0702.py │ │ ├── 0029_auto_20250904_1353.py │ │ ├── 0030_populate_mssql-technology.py │ │ └── __init__.py │ ├── models.py │ ├── models │ │ ├── __init__.py │ │ └── main.py │ ├── plugins │ │ ├── .gitkeep │ │ └── temp_loaded │ │ │ └── .gitkeep │ ├── serializers.py │ ├── static │ │ ├── pgmanage_frontend │ │ │ ├── .gitignore │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── vite.svg │ │ │ ├── src │ │ │ │ ├── App.vue │ │ │ │ ├── ace_extras │ │ │ │ │ ├── ext-hoverlink.js │ │ │ │ │ ├── mode-mysql-extended.js │ │ │ │ │ ├── mode-pgsql-extended.js │ │ │ │ │ ├── plugins.js │ │ │ │ │ └── themes │ │ │ │ │ │ ├── theme-omnidb.js │ │ │ │ │ │ └── theme-omnidb_dark.js │ │ │ │ ├── ajax_control.js │ │ │ │ ├── assets │ │ │ │ │ ├── css │ │ │ │ │ │ ├── font-poppins.css │ │ │ │ │ │ └── font-ubuntu-mono.css │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── Poppins │ │ │ │ │ │ │ ├── poppins-v20-latin-500.woff │ │ │ │ │ │ │ ├── poppins-v20-latin-500.woff2 │ │ │ │ │ │ │ ├── poppins-v20-latin-700.woff │ │ │ │ │ │ │ ├── poppins-v20-latin-700.woff2 │ │ │ │ │ │ │ ├── poppins-v20-latin-regular.woff │ │ │ │ │ │ │ └── poppins-v20-latin-regular.woff2 │ │ │ │ │ │ ├── Roboto │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ ├── Roboto-Black.ttf │ │ │ │ │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ │ │ │ │ ├── Roboto-Italic.ttf │ │ │ │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ │ │ │ ├── Roboto-LightItalic.ttf │ │ │ │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ │ │ │ ├── Roboto-Thin.ttf │ │ │ │ │ │ │ └── Roboto-ThinItalic.ttf │ │ │ │ │ │ ├── RobotoMono │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ ├── RobotoMono-Bold.ttf │ │ │ │ │ │ │ ├── RobotoMono-BoldItalic.ttf │ │ │ │ │ │ │ ├── RobotoMono-Italic.ttf │ │ │ │ │ │ │ ├── RobotoMono-Light.ttf │ │ │ │ │ │ │ ├── RobotoMono-LightItalic.ttf │ │ │ │ │ │ │ ├── RobotoMono-Medium.ttf │ │ │ │ │ │ │ ├── RobotoMono-MediumItalic.ttf │ │ │ │ │ │ │ ├── RobotoMono-Regular.ttf │ │ │ │ │ │ │ ├── RobotoMono-Thin.ttf │ │ │ │ │ │ │ └── RobotoMono-ThinItalic.ttf │ │ │ │ │ │ └── UbuntuMono │ │ │ │ │ │ │ ├── ubuntumono-regular-webfont.woff │ │ │ │ │ │ │ └── ubuntumono-regular-webfont.woff2 │ │ │ │ │ ├── images │ │ │ │ │ │ ├── .directory │ │ │ │ │ │ ├── db_icons │ │ │ │ │ │ │ ├── mariadb.svg │ │ │ │ │ │ │ ├── mariadb_large.png │ │ │ │ │ │ │ ├── mariadb_medium.png │ │ │ │ │ │ │ ├── mssql.svg │ │ │ │ │ │ │ ├── mssql_large.png │ │ │ │ │ │ │ ├── mysql.svg │ │ │ │ │ │ │ ├── mysql_large.png │ │ │ │ │ │ │ ├── mysql_medium.png │ │ │ │ │ │ │ ├── oracle.svg │ │ │ │ │ │ │ ├── oracle_large.png │ │ │ │ │ │ │ ├── oracle_medium.png │ │ │ │ │ │ │ ├── postgresql.svg │ │ │ │ │ │ │ ├── postgresql_large.png │ │ │ │ │ │ │ ├── postgresql_medium.png │ │ │ │ │ │ │ ├── sqlite.svg │ │ │ │ │ │ │ ├── sqlite_large.png │ │ │ │ │ │ │ ├── sqlite_medium.png │ │ │ │ │ │ │ └── terminal.svg │ │ │ │ │ │ ├── gears.svg │ │ │ │ │ │ ├── logo.svg │ │ │ │ │ │ ├── logo_small2.svg │ │ │ │ │ │ ├── mariadb.svg │ │ │ │ │ │ ├── mssql.svg │ │ │ │ │ │ ├── mysql.svg │ │ │ │ │ │ ├── oracle.svg │ │ │ │ │ │ ├── pgmanage_16.png │ │ │ │ │ │ ├── postgresql.svg │ │ │ │ │ │ ├── right.png │ │ │ │ │ │ ├── sqlite.svg │ │ │ │ │ │ └── supporters │ │ │ │ │ │ │ └── command_prompt_inc.png │ │ │ │ │ └── scss │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── themes.scss │ │ │ │ │ │ ├── typography.scss │ │ │ │ │ │ ├── ui-elements.scss │ │ │ │ │ │ └── variables.scss │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── accordion.scss │ │ │ │ │ │ ├── bootstrap-tooltips.scss │ │ │ │ │ │ ├── button.scss │ │ │ │ │ │ ├── card.scss │ │ │ │ │ │ ├── data-editor-tab.scss │ │ │ │ │ │ ├── dropdown.scss │ │ │ │ │ │ ├── floating-toolbar.scss │ │ │ │ │ │ ├── input.scss │ │ │ │ │ │ ├── list-group.scss │ │ │ │ │ │ ├── modal.scss │ │ │ │ │ │ ├── pagination.scss │ │ │ │ │ │ ├── schema-editor.scss │ │ │ │ │ │ ├── search-modal.scss │ │ │ │ │ │ ├── snippets.scss │ │ │ │ │ │ ├── tables.scss │ │ │ │ │ │ ├── tabs.scss │ │ │ │ │ │ └── welcome-screen.scss │ │ │ │ │ │ ├── interface-icon.scss │ │ │ │ │ │ ├── libs │ │ │ │ │ │ ├── alert.scss │ │ │ │ │ │ ├── color-labels.scss │ │ │ │ │ │ ├── context-menu-pgmanage.scss │ │ │ │ │ │ ├── cron-light.scss │ │ │ │ │ │ ├── daterangepicker.scss │ │ │ │ │ │ ├── erd-card.scss │ │ │ │ │ │ ├── pev2 │ │ │ │ │ │ │ ├── base.scss │ │ │ │ │ │ │ ├── copy-button.scss │ │ │ │ │ │ │ ├── pev2-tables.scss │ │ │ │ │ │ │ ├── pev2.scss │ │ │ │ │ │ │ ├── plan-diagram.scss │ │ │ │ │ │ │ ├── plan-grid.scss │ │ │ │ │ │ │ ├── plan-node.scss │ │ │ │ │ │ │ ├── plan.scss │ │ │ │ │ │ │ ├── tippy.scss │ │ │ │ │ │ │ ├── tweaks.scss │ │ │ │ │ │ │ └── variables.scss │ │ │ │ │ │ ├── splitpanes.scss │ │ │ │ │ │ ├── tabulator.scss │ │ │ │ │ │ ├── toasts.scss │ │ │ │ │ │ └── vue-power-tree.scss │ │ │ │ │ │ ├── login.scss │ │ │ │ │ │ ├── node-icon.scss │ │ │ │ │ │ ├── omnidb.scss │ │ │ │ │ │ ├── pgmanage.scss │ │ │ │ │ │ └── themes │ │ │ │ │ │ ├── dark.scss │ │ │ │ │ │ └── light.scss │ │ │ │ ├── components │ │ │ │ │ ├── AboutModal.vue │ │ │ │ │ ├── BackupTab.vue │ │ │ │ │ ├── BlockSizeSelector.vue │ │ │ │ │ ├── CancelSQLButton.vue │ │ │ │ │ ├── CellDataModal.vue │ │ │ │ │ ├── CommandsHistoryModal.vue │ │ │ │ │ ├── ConfigTab.vue │ │ │ │ │ ├── ConfigTabGroup.vue │ │ │ │ │ ├── ConfigTabGroupItemInput.vue │ │ │ │ │ ├── ConfirmableButton.vue │ │ │ │ │ ├── ConnectionTab.vue │ │ │ │ │ ├── ConnectionsModal.vue │ │ │ │ │ ├── ConnectionsModalConnectionForm.vue │ │ │ │ │ ├── ConnectionsModalGroupForm.vue │ │ │ │ │ ├── ConsoleTab.vue │ │ │ │ │ ├── DataEditorTab.vue │ │ │ │ │ ├── DataEditorTabFilterItem.vue │ │ │ │ │ ├── DataEditorTabFilterList.vue │ │ │ │ │ ├── DatabaseTabs.vue │ │ │ │ │ ├── ERDTab.vue │ │ │ │ │ ├── ExplainTabContent.vue │ │ │ │ │ ├── ExtensionModal.vue │ │ │ │ │ ├── FileManager.vue │ │ │ │ │ ├── FileManagerActionsModal.vue │ │ │ │ │ ├── GenericMessageModal.vue │ │ │ │ │ ├── MasterPasswordModal.vue │ │ │ │ │ ├── MonitoringDashboard.vue │ │ │ │ │ ├── MonitoringTab.vue │ │ │ │ │ ├── MonitoringTabLogs.vue │ │ │ │ │ ├── MonitoringWidget.vue │ │ │ │ │ ├── MonitoringWidgetEditModal.vue │ │ │ │ │ ├── MonitoringWidgetsModal.vue │ │ │ │ │ ├── PasswordModal.vue │ │ │ │ │ ├── PgCronModal.vue │ │ │ │ │ ├── PreviewBox.vue │ │ │ │ │ ├── QueryEditor.vue │ │ │ │ │ ├── QueryEditorSearchButton.vue │ │ │ │ │ ├── QueryResultTabs.vue │ │ │ │ │ ├── QueryTab.vue │ │ │ │ │ ├── RestoreTab.vue │ │ │ │ │ ├── RoleModal.vue │ │ │ │ │ ├── SchemaEditorColumnList.vue │ │ │ │ │ ├── SchemaEditorFksList.vue │ │ │ │ │ ├── SchemaEditorIndexesList.vue │ │ │ │ │ ├── SchemaEditorTab.vue │ │ │ │ │ ├── SearchModal.vue │ │ │ │ │ ├── SearchableDropdown.vue │ │ │ │ │ ├── SettingsModal.vue │ │ │ │ │ ├── SideBarTabs.vue │ │ │ │ │ ├── SnippetPanel.vue │ │ │ │ │ ├── SnippetTab.vue │ │ │ │ │ ├── TabStatusIndicator.vue │ │ │ │ │ ├── TerminalTab.vue │ │ │ │ │ ├── TreeMariaDB.vue │ │ │ │ │ ├── TreeMssql.vue │ │ │ │ │ ├── TreeMysql.vue │ │ │ │ │ ├── TreeOracle.vue │ │ │ │ │ ├── TreePostgresql.vue │ │ │ │ │ ├── TreePropertiesDDL.vue │ │ │ │ │ ├── TreeSnippets.vue │ │ │ │ │ ├── TreeSqlite.vue │ │ │ │ │ ├── UtilitiesMenu.vue │ │ │ │ │ ├── UtilityJobs.vue │ │ │ │ │ ├── UtilityJobsJobDetail.vue │ │ │ │ │ ├── WelcomeScreen.vue │ │ │ │ │ ├── dialect-data.js │ │ │ │ │ └── postgresql_modals.js │ │ │ │ ├── constants.js │ │ │ │ ├── debug.js │ │ │ │ ├── emitter.js │ │ │ │ ├── index.js │ │ │ │ ├── logging │ │ │ │ │ ├── logger_setup.js │ │ │ │ │ ├── service.js │ │ │ │ │ └── utils.js │ │ │ │ ├── login.js │ │ │ │ ├── long_polling.js │ │ │ │ ├── main.js │ │ │ │ ├── mixins │ │ │ │ │ ├── file_input_mixin.js │ │ │ │ │ ├── humanize_duration_mixin.js │ │ │ │ │ ├── power_tree.js │ │ │ │ │ ├── power_tree_drop_db_object_mixin.js │ │ │ │ │ ├── power_tree_pin_database_mixin.js │ │ │ │ │ ├── sidebar_title_update_mixin.js │ │ │ │ │ ├── table_clipboard_copy_mixin.js │ │ │ │ │ └── tabs_utils_mixin.js │ │ │ │ ├── notification_control.js │ │ │ │ ├── omnis-control.js │ │ │ │ ├── shortcuts.js │ │ │ │ ├── stores │ │ │ │ │ ├── celldata_modal.js │ │ │ │ │ ├── commands_history.js │ │ │ │ │ ├── connections.js │ │ │ │ │ ├── db_metadata.js │ │ │ │ │ ├── file_manager.js │ │ │ │ │ ├── message_modal.js │ │ │ │ │ ├── settings.js │ │ │ │ │ ├── snippets.js │ │ │ │ │ ├── stores_initializer.js │ │ │ │ │ ├── tabs.js │ │ │ │ │ ├── utilities_menu.js │ │ │ │ │ └── utility_jobs.js │ │ │ │ ├── tab_functions │ │ │ │ │ └── inner_debugger_tab.js │ │ │ │ ├── tree_context_functions │ │ │ │ │ ├── tree_mariadb.js │ │ │ │ │ ├── tree_mssql.js │ │ │ │ │ ├── tree_mysql.js │ │ │ │ │ ├── tree_oracle.js │ │ │ │ │ ├── tree_postgresql.js │ │ │ │ │ ├── tree_snippets.js │ │ │ │ │ └── tree_sqlite.js │ │ │ │ ├── tutorial.js │ │ │ │ ├── utils.js │ │ │ │ └── workspace.js │ │ │ ├── test │ │ │ │ ├── components │ │ │ │ │ ├── AboutModal.test.js │ │ │ │ │ ├── BackupTab.test.js │ │ │ │ │ ├── BlockSizeSelector.test.js │ │ │ │ │ ├── CancelSQLButton.test.js │ │ │ │ │ ├── CellDataModal.test.js │ │ │ │ │ ├── ConfigTab.test.js │ │ │ │ │ ├── ConfigTabGroup.test.js │ │ │ │ │ ├── ConfigTabGroupItemInput.test.js │ │ │ │ │ ├── ConfirmableButton.test.js │ │ │ │ │ ├── DataEditorTabFilterItem.test.js │ │ │ │ │ ├── DataEditorTabFilterList.test.js │ │ │ │ │ ├── DatabaseTabs.test.js │ │ │ │ │ ├── ExplainTabContent.test.js │ │ │ │ │ ├── ExtensionModal.test.js │ │ │ │ │ ├── FileManager.test.js │ │ │ │ │ ├── FileManagerActionsModal.test.js │ │ │ │ │ ├── GenericMessageModal.spec.js │ │ │ │ │ ├── MasterPasswordModal.test.js │ │ │ │ │ ├── MonitoringDashboard.test.js │ │ │ │ │ ├── MonitoringTab.test.js │ │ │ │ │ ├── MonitoringTabLogs.test.js │ │ │ │ │ ├── MonitoringWidget.test.js │ │ │ │ │ ├── MonitoringWidgetEditModal.test.js │ │ │ │ │ ├── MonitoringWidgetsModal.test.js │ │ │ │ │ ├── PgCronModal.test.js │ │ │ │ │ ├── RestoreTab.test.js │ │ │ │ │ ├── SearchableDropdown.test.js │ │ │ │ │ ├── SettingsModal.test.js │ │ │ │ │ ├── SideBarTabs.test.js │ │ │ │ │ ├── SnippetPanel.test.js │ │ │ │ │ ├── SnippetTab.test.js │ │ │ │ │ ├── TabStatusIndicator.test.js │ │ │ │ │ ├── TreePropertiesDDL.test.js │ │ │ │ │ ├── UtilitiesMenu.test.js │ │ │ │ │ ├── UtilityJobs.test.js │ │ │ │ │ └── UtilityJobsJobDetail.test.js │ │ │ │ ├── global_setup.js │ │ │ │ ├── logging │ │ │ │ │ └── service.test.js │ │ │ │ ├── mixins │ │ │ │ │ └── file_input_mixin.test.js │ │ │ │ ├── stores │ │ │ │ │ ├── celldata_modal.test.js │ │ │ │ │ ├── commands_history.test.js │ │ │ │ │ ├── connections.test.js │ │ │ │ │ ├── db_metadata.test.js │ │ │ │ │ ├── file_manager.test.js │ │ │ │ │ ├── message_modal.test.js │ │ │ │ │ ├── settings.test.js │ │ │ │ │ ├── snippets.test.js │ │ │ │ │ ├── tabs.test.js │ │ │ │ │ ├── utilities_menu.test.js │ │ │ │ │ └── utitlity_jobs.test.js │ │ │ │ └── tree_context_functions │ │ │ │ │ ├── tree_mariadb.test.js │ │ │ │ │ ├── tree_mysql.test.js │ │ │ │ │ ├── tree_oracle.test.js │ │ │ │ │ ├── tree_postgresql.test.js │ │ │ │ │ ├── tree_snippets.test.js │ │ │ │ │ └── tree_sqlite.test.js │ │ │ └── vite.config.js │ │ ├── plugins │ │ │ ├── .gitkeep │ │ │ └── temp_loaded │ │ │ │ └── .gitkeep │ │ └── temp │ │ │ └── .gitkeep │ ├── templates │ │ └── app │ │ │ ├── animated_assets │ │ │ └── animated_logo_pgmanage.svg │ │ │ ├── login.html │ │ │ └── workspace.html │ ├── tests.old │ │ ├── README.md │ │ ├── __init__.py │ │ ├── bak_test_views.py │ │ ├── mariadb │ │ │ └── README.md │ │ ├── mysql │ │ │ └── README.md │ │ ├── notready_test_selenium.py │ │ ├── oracle │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── listener.ora │ │ │ ├── oracle-xe-18c.conf.tmpl │ │ │ └── tnsnames.ora │ │ ├── postgresql │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── dellstore2-normal-1.0.tar.gz │ │ │ └── restore.sh │ │ ├── test_postgresql10.py │ │ ├── test_postgresql94.py │ │ ├── test_postgresql95.py │ │ ├── test_postgresql96.py │ │ ├── test_views.py │ │ ├── utils_testing.py │ │ ├── vagrant │ │ │ ├── pglogical-2-postgresql-10-2nodes │ │ │ │ ├── Vagrantfile │ │ │ │ └── bootstrap.sh │ │ │ ├── postgresql-10-2nodes │ │ │ │ ├── Vagrantfile │ │ │ │ └── bootstrap.sh │ │ │ ├── postgresql-bdr-9.4-2nodes │ │ │ │ ├── Vagrantfile │ │ │ │ └── bootstrap.sh │ │ │ ├── xl-10 │ │ │ │ ├── README.md │ │ │ │ ├── Vagrantfile │ │ │ │ ├── init.sh │ │ │ │ ├── install.sh │ │ │ │ ├── setup.sh │ │ │ │ └── start.sh │ │ │ └── xl-9.5 │ │ │ │ ├── README.md │ │ │ │ ├── Vagrantfile │ │ │ │ ├── init.sh │ │ │ │ ├── install.sh │ │ │ │ ├── setup.sh │ │ │ │ └── start.sh │ │ └── webdrivers │ │ │ └── geckodriver │ ├── tests │ │ ├── __init__.py │ │ ├── dellstore2-normal-1.0.sql │ │ ├── docker-compose.yml │ │ ├── test-db.sh │ │ ├── test_bgjob.py │ │ ├── test_commands_history.py │ │ ├── test_configuration.py │ │ ├── test_connection.py │ │ ├── test_file_manager.py │ │ ├── test_models.py │ │ ├── test_monitoring_dashboard.py │ │ ├── test_pgextras.py │ │ ├── test_postgresql12.py │ │ ├── test_tree_snippets.py │ │ ├── test_views.py │ │ └── utils_testing.py │ ├── urls.py │ ├── utils │ │ ├── __init__.py │ │ ├── conf.py │ │ ├── crypto.py │ │ ├── decorators.py │ │ ├── key_manager.py │ │ ├── master_password.py │ │ └── postgresql_utilities.py │ └── views │ │ ├── __init__.py │ │ ├── backup.py │ │ ├── bgjob.py │ │ ├── commands_history.py │ │ ├── configuration.py │ │ ├── connections.py │ │ ├── file_manager.py │ │ ├── logging.py │ │ ├── login.py │ │ ├── monitoring_dashboard.py │ │ ├── monitoring_widgets │ │ ├── mysql.py │ │ └── postgresql.py │ │ ├── pgextras.py │ │ ├── plugins.py │ │ ├── polling.py │ │ ├── restore.py │ │ ├── tree_mariadb.py │ │ ├── tree_mssql.py │ │ ├── tree_mysql.py │ │ ├── tree_oracle.py │ │ ├── tree_postgresql.py │ │ ├── tree_snippets.py │ │ ├── tree_sqlite.py │ │ └── workspace.py ├── config.py ├── deploy.old │ ├── app_centos7 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── build.sh │ │ └── clone.sh │ ├── app_debian8 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── build.sh │ │ └── clone.sh │ ├── lib │ │ ├── libXss.so.1 │ │ └── libnss3.so │ ├── plugin_centos6 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── build.sh │ │ └── clone.sh │ ├── plugin_centos7 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── build.sh │ │ └── clone.sh │ ├── plugin_debian8 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── build.sh │ │ └── clone.sh │ ├── plugin_freebsd │ │ ├── Vagrantfile │ │ ├── compile_instructions.txt │ │ └── test_instructions.txt │ ├── server_centos6 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── build.sh │ │ └── clone.sh │ ├── server_centos7 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── build.sh │ │ └── clone.sh │ └── server_debian8 │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── build.sh │ │ └── clone.sh ├── manage.py ├── pgmanage-lin.spec ├── pgmanage-mac.spec ├── pgmanage-server.py ├── pgmanage-win.spec ├── pgmanage │ ├── __init__.py │ ├── custom_settings.py │ ├── logging_filter.py │ ├── settings.py │ ├── startup.py │ ├── urls.py │ └── wsgi.py ├── process_executor-lin.spec ├── process_executor-mac.spec └── process_executor-win.spec ├── poetry.lock ├── pyproject.toml ├── requirements.txt └── tests └── uat ├── README.md ├── centos6 └── Vagrantfile ├── centos7 └── Vagrantfile ├── centos8 └── Vagrantfile ├── debian10 └── Vagrantfile ├── debian9 └── Vagrantfile ├── fedora31 └── Vagrantfile ├── opensuse └── Vagrantfile ├── redhat7 └── Vagrantfile ├── ubuntu16 └── Vagrantfile └── ubuntu18 └── Vagrantfile /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/BUILD.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPMENT.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/DEVELOPMENT.MD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/LICENSE -------------------------------------------------------------------------------- /README-OmniDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/README-OmniDB.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/README.md -------------------------------------------------------------------------------- /artwork/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/artwork/logo.svg -------------------------------------------------------------------------------- /artwork/logo_gears.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/artwork/logo_gears.svg -------------------------------------------------------------------------------- /artwork/logo_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/artwork/logo_small.svg -------------------------------------------------------------------------------- /artwork/logo_small2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/artwork/logo_small2.svg -------------------------------------------------------------------------------- /artwork/pgmanage_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/artwork/pgmanage_128.png -------------------------------------------------------------------------------- /artwork/pgmanage_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/artwork/pgmanage_16.png -------------------------------------------------------------------------------- /artwork/pgmanage_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/artwork/pgmanage_24.png -------------------------------------------------------------------------------- /artwork/pgmanage_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/artwork/pgmanage_256.png -------------------------------------------------------------------------------- /artwork/pgmanage_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/artwork/pgmanage_32.png -------------------------------------------------------------------------------- /artwork/pgmanage_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/artwork/pgmanage_48.png -------------------------------------------------------------------------------- /artwork/pgmanage_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/artwork/pgmanage_512.png -------------------------------------------------------------------------------- /artwork/pgmanage_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/artwork/pgmanage_64.png -------------------------------------------------------------------------------- /artwork/pgmanage_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/artwork/pgmanage_96.png -------------------------------------------------------------------------------- /artwork/readme_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/artwork/readme_banner.png -------------------------------------------------------------------------------- /artwork/showcase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/artwork/showcase.gif -------------------------------------------------------------------------------- /deploy/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/deploy/app/index.html -------------------------------------------------------------------------------- /deploy/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/deploy/app/package.json -------------------------------------------------------------------------------- /deploy/app/pgmanage.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/deploy/app/pgmanage.desktop -------------------------------------------------------------------------------- /deploy/app/pgmanage_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/deploy/app/pgmanage_icon.png -------------------------------------------------------------------------------- /deploy/linux/build_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/deploy/linux/build_images.sh -------------------------------------------------------------------------------- /deploy/linux/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/deploy/linux/deploy.sh -------------------------------------------------------------------------------- /deploy/linux/pkgbuild/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/deploy/linux/pkgbuild/Dockerfile -------------------------------------------------------------------------------- /deploy/linux/pkgbuild/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/deploy/linux/pkgbuild/entrypoint.sh -------------------------------------------------------------------------------- /deploy/linux/pkgbuild/icons.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/deploy/linux/pkgbuild/icons.tar.gz -------------------------------------------------------------------------------- /deploy/linux/tarbuild/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/deploy/linux/tarbuild/Dockerfile -------------------------------------------------------------------------------- /deploy/linux/tarbuild/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/deploy/linux/tarbuild/entrypoint.sh -------------------------------------------------------------------------------- /deploy/macosx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/deploy/macosx/README.md -------------------------------------------------------------------------------- /deploy/macosx/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/deploy/macosx/deploy.sh -------------------------------------------------------------------------------- /deploy/macosx/mac-icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/deploy/macosx/mac-icon.icns -------------------------------------------------------------------------------- /deploy/macosx/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/deploy/macosx/settings.py -------------------------------------------------------------------------------- /deploy/windows/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/deploy/windows/deploy.sh -------------------------------------------------------------------------------- /deploy/windows/install_header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/deploy/windows/install_header.bmp -------------------------------------------------------------------------------- /deploy/windows/install_script.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/deploy/windows/install_script.nsi -------------------------------------------------------------------------------- /deploy/windows/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/deploy/windows/license.txt -------------------------------------------------------------------------------- /deploy/windows/win-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/deploy/windows/win-icon.ico -------------------------------------------------------------------------------- /pgmanage/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pgmanage/app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/admin.py -------------------------------------------------------------------------------- /pgmanage/app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/apps.py -------------------------------------------------------------------------------- /pgmanage/app/bgjob/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pgmanage/app/bgjob/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/bgjob/jobs.py -------------------------------------------------------------------------------- /pgmanage/app/bgjob/process_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/bgjob/process_executor.py -------------------------------------------------------------------------------- /pgmanage/app/client_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/client_manager/__init__.py -------------------------------------------------------------------------------- /pgmanage/app/client_manager/client_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/client_manager/client_manager.py -------------------------------------------------------------------------------- /pgmanage/app/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/converters.py -------------------------------------------------------------------------------- /pgmanage/app/file_manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pgmanage/app/file_manager/file_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/file_manager/file_manager.py -------------------------------------------------------------------------------- /pgmanage/app/include/OmniDatabase/MSSQL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/include/OmniDatabase/MSSQL.py -------------------------------------------------------------------------------- /pgmanage/app/include/OmniDatabase/MariaDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/include/OmniDatabase/MariaDB.py -------------------------------------------------------------------------------- /pgmanage/app/include/OmniDatabase/MySQL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/include/OmniDatabase/MySQL.py -------------------------------------------------------------------------------- /pgmanage/app/include/OmniDatabase/Oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/include/OmniDatabase/Oracle.py -------------------------------------------------------------------------------- /pgmanage/app/include/OmniDatabase/PostgreSQL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/include/OmniDatabase/PostgreSQL.py -------------------------------------------------------------------------------- /pgmanage/app/include/OmniDatabase/SQLite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/include/OmniDatabase/SQLite.py -------------------------------------------------------------------------------- /pgmanage/app/include/OmniDatabase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/include/OmniDatabase/__init__.py -------------------------------------------------------------------------------- /pgmanage/app/include/OmniDatabase/sql_templates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/include/OmniDatabase/sql_templates/__init__.py -------------------------------------------------------------------------------- /pgmanage/app/include/OmniDatabase/sql_templates/mariadb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/include/OmniDatabase/sql_templates/mariadb.py -------------------------------------------------------------------------------- /pgmanage/app/include/OmniDatabase/sql_templates/mssql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/include/OmniDatabase/sql_templates/mssql.py -------------------------------------------------------------------------------- /pgmanage/app/include/OmniDatabase/sql_templates/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/include/OmniDatabase/sql_templates/mysql.py -------------------------------------------------------------------------------- /pgmanage/app/include/OmniDatabase/sql_templates/oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/include/OmniDatabase/sql_templates/oracle.py -------------------------------------------------------------------------------- /pgmanage/app/include/OmniDatabase/sql_templates/postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/include/OmniDatabase/sql_templates/postgres.py -------------------------------------------------------------------------------- /pgmanage/app/include/OmniDatabase/sql_templates/sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/include/OmniDatabase/sql_templates/sqlite.py -------------------------------------------------------------------------------- /pgmanage/app/include/Session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/include/Session.py -------------------------------------------------------------------------------- /pgmanage/app/include/Spartacus/Database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/include/Spartacus/Database.py -------------------------------------------------------------------------------- /pgmanage/app/include/Spartacus/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/include/Spartacus/Utils.py -------------------------------------------------------------------------------- /pgmanage/app/include/Spartacus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pgmanage/app/include/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pgmanage/app/include/custom_paramiko_expect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/include/custom_paramiko_expect.py -------------------------------------------------------------------------------- /pgmanage/app/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/middleware.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0001_3_0_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0001_3_0_0.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0002_3_0_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0002_3_0_1.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0003_userdetails_masterpass_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0003_userdetails_masterpass_check.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0004_confighistory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0004_confighistory.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0005_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0005_job.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0006_userdetails_binary_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0006_userdetails_binary_path.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0007_connection_connection_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0007_connection_connection_params.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0008_userdetails_date_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0008_userdetails_date_format.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0009_tab_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0009_tab_database.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0010_connection_last_used_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0010_connection_last_used_database.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0011_userdetails_pigz_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0011_userdetails_pigz_path.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0012_userdetails_autocomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0012_userdetails_autocomplete.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0013_connection_last_access_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0013_connection_last_access_date.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0014_auto_20231222_1353.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0014_auto_20231222_1353.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0015_query_and_console_history_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0015_query_and_console_history_database.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0015_rename_monunits_and_monunitsconnections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0015_rename_monunits_and_monunitsconnections.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0016_replace_is_default_with_editable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0016_replace_is_default_with_editable.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0017_merge_20240209_1300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0017_merge_20240209_1300.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0018_userdetails_restore_tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0018_userdetails_restore_tabs.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0019_userdetails_scroll_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0019_userdetails_scroll_tree.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0020_connection_color_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0020_connection_color_label.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0021_group_unique_user_group_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0021_group_unique_user_group_name.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0022_alter_userdetails_csv_delimiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0022_alter_userdetails_csv_delimiter.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0023_remove_userdetails_welcome_closed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0023_remove_userdetails_welcome_closed.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0024_drop_old_dashboard_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0024_drop_old_dashboard_settings.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0025_monwidgetsconnections_position_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0025_monwidgetsconnections_position_and_more.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0026_alter_monwidgets_script_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0026_alter_monwidgets_script_chart.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0026_connection_pinned_databases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0026_connection_pinned_databases.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0027_erdlayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0027_erdlayout.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0028_merge_20250821_0702.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0028_merge_20250821_0702.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0029_auto_20250904_1353.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0029_auto_20250904_1353.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/0030_populate_mssql-technology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/migrations/0030_populate_mssql-technology.py -------------------------------------------------------------------------------- /pgmanage/app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pgmanage/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/models.py -------------------------------------------------------------------------------- /pgmanage/app/models/__init__.py: -------------------------------------------------------------------------------- 1 | from .main import * 2 | -------------------------------------------------------------------------------- /pgmanage/app/models/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/models/main.py -------------------------------------------------------------------------------- /pgmanage/app/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pgmanage/app/plugins/temp_loaded/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pgmanage/app/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/serializers.py -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/.gitignore -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/package-lock.json -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/package.json -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/public/vite.svg -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/App.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/ace_extras/ext-hoverlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/ace_extras/ext-hoverlink.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/ace_extras/mode-mysql-extended.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/ace_extras/mode-mysql-extended.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/ace_extras/mode-pgsql-extended.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/ace_extras/mode-pgsql-extended.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/ace_extras/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/ace_extras/plugins.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/ace_extras/themes/theme-omnidb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/ace_extras/themes/theme-omnidb.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/ace_extras/themes/theme-omnidb_dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/ace_extras/themes/theme-omnidb_dark.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/ajax_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/ajax_control.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/css/font-poppins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/css/font-poppins.css -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/css/font-ubuntu-mono.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/css/font-ubuntu-mono.css -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Poppins/poppins-v20-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Poppins/poppins-v20-latin-500.woff -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Poppins/poppins-v20-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Poppins/poppins-v20-latin-500.woff2 -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Poppins/poppins-v20-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Poppins/poppins-v20-latin-700.woff -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Poppins/poppins-v20-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Poppins/poppins-v20-latin-700.woff2 -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Poppins/poppins-v20-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Poppins/poppins-v20-latin-regular.woff -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Poppins/poppins-v20-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Poppins/poppins-v20-latin-regular.woff2 -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/LICENSE.txt -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/Roboto/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/LICENSE.txt -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/RobotoMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/RobotoMono-BoldItalic.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/RobotoMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/RobotoMono-Italic.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/RobotoMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/RobotoMono-Light.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/RobotoMono-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/RobotoMono-LightItalic.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/RobotoMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/RobotoMono-Medium.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/RobotoMono-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/RobotoMono-MediumItalic.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/RobotoMono-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/RobotoMono-Thin.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/RobotoMono-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/RobotoMono/RobotoMono-ThinItalic.ttf -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/UbuntuMono/ubuntumono-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/UbuntuMono/ubuntumono-regular-webfont.woff -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/fonts/UbuntuMono/ubuntumono-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/fonts/UbuntuMono/ubuntumono-regular-webfont.woff2 -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2018,5,24,13,57,28 4 | Version=4 5 | -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/mariadb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/mariadb.svg -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/mariadb_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/mariadb_large.png -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/mariadb_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/mariadb_medium.png -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/mssql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/mssql.svg -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/mssql_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/mssql_large.png -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/mysql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/mysql.svg -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/mysql_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/mysql_large.png -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/mysql_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/mysql_medium.png -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/oracle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/oracle.svg -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/oracle_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/oracle_large.png -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/oracle_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/oracle_medium.png -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/postgresql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/postgresql.svg -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/postgresql_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/postgresql_large.png -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/postgresql_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/postgresql_medium.png -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/sqlite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/sqlite.svg -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/sqlite_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/sqlite_large.png -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/sqlite_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/sqlite_medium.png -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/db_icons/terminal.svg -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/gears.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/gears.svg -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/logo.svg -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/logo_small2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/logo_small2.svg -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/mariadb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/mariadb.svg -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/mssql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/mssql.svg -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/mysql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/mysql.svg -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/oracle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/oracle.svg -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/pgmanage_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/pgmanage_16.png -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/postgresql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/postgresql.svg -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/right.png -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/sqlite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/sqlite.svg -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/images/supporters/command_prompt_inc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/images/supporters/command_prompt_inc.png -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/common/themes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/common/themes.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/common/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/common/typography.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/common/ui-elements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/common/ui-elements.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/common/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/common/variables.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/accordion.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/bootstrap-tooltips.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/bootstrap-tooltips.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/button.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/card.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/data-editor-tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/data-editor-tab.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/dropdown.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/floating-toolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/floating-toolbar.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/input.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/list-group.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/modal.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/pagination.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/schema-editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/schema-editor.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/search-modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/search-modal.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/snippets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/snippets.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/tables.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/tabs.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/welcome-screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/components/welcome-screen.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/interface-icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/interface-icon.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/alert.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/color-labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/color-labels.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/context-menu-pgmanage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/context-menu-pgmanage.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/cron-light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/cron-light.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/daterangepicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/daterangepicker.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/erd-card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/erd-card.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/base.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/copy-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/copy-button.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/pev2-tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/pev2-tables.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/pev2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/pev2.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/plan-diagram.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/plan-diagram.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/plan-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/plan-grid.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/plan-node.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/plan-node.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/plan.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/plan.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/tippy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/tippy.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/tweaks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/tweaks.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/pev2/variables.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/splitpanes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/splitpanes.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/tabulator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/tabulator.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/toasts.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/vue-power-tree.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/libs/vue-power-tree.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/login.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/node-icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/node-icon.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/omnidb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/omnidb.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/pgmanage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/pgmanage.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/themes/dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/themes/dark.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/assets/scss/themes/light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/assets/scss/themes/light.scss -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/AboutModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/AboutModal.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/BackupTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/BackupTab.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/BlockSizeSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/BlockSizeSelector.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/CancelSQLButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/CancelSQLButton.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/CellDataModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/CellDataModal.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/CommandsHistoryModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/CommandsHistoryModal.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/ConfigTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/ConfigTab.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/ConfigTabGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/ConfigTabGroup.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/ConfigTabGroupItemInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/ConfigTabGroupItemInput.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/ConfirmableButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/ConfirmableButton.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/ConnectionTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/ConnectionTab.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/ConnectionsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/ConnectionsModal.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/ConnectionsModalConnectionForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/ConnectionsModalConnectionForm.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/ConnectionsModalGroupForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/ConnectionsModalGroupForm.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/ConsoleTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/ConsoleTab.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/DataEditorTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/DataEditorTab.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/DataEditorTabFilterItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/DataEditorTabFilterItem.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/DataEditorTabFilterList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/DataEditorTabFilterList.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/DatabaseTabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/DatabaseTabs.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/ERDTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/ERDTab.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/ExplainTabContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/ExplainTabContent.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/ExtensionModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/ExtensionModal.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/FileManager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/FileManager.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/FileManagerActionsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/FileManagerActionsModal.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/GenericMessageModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/GenericMessageModal.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/MasterPasswordModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/MasterPasswordModal.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/MonitoringDashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/MonitoringDashboard.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/MonitoringTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/MonitoringTab.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/MonitoringTabLogs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/MonitoringTabLogs.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/MonitoringWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/MonitoringWidget.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/MonitoringWidgetEditModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/MonitoringWidgetEditModal.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/MonitoringWidgetsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/MonitoringWidgetsModal.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/PasswordModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/PasswordModal.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/PgCronModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/PgCronModal.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/PreviewBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/PreviewBox.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/QueryEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/QueryEditor.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/QueryEditorSearchButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/QueryEditorSearchButton.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/QueryResultTabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/QueryResultTabs.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/QueryTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/QueryTab.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/RestoreTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/RestoreTab.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/RoleModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/RoleModal.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/SchemaEditorColumnList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/SchemaEditorColumnList.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/SchemaEditorFksList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/SchemaEditorFksList.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/SchemaEditorIndexesList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/SchemaEditorIndexesList.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/SchemaEditorTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/SchemaEditorTab.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/SearchModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/SearchModal.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/SearchableDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/SearchableDropdown.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/SettingsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/SettingsModal.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/SideBarTabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/SideBarTabs.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/SnippetPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/SnippetPanel.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/SnippetTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/SnippetTab.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/TabStatusIndicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/TabStatusIndicator.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/TerminalTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/TerminalTab.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/TreeMariaDB.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/TreeMariaDB.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/TreeMssql.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/TreeMssql.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/TreeMysql.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/TreeMysql.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/TreeOracle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/TreeOracle.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/TreePostgresql.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/TreePostgresql.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/TreePropertiesDDL.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/TreePropertiesDDL.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/TreeSnippets.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/TreeSnippets.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/TreeSqlite.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/TreeSqlite.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/UtilitiesMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/UtilitiesMenu.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/UtilityJobs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/UtilityJobs.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/UtilityJobsJobDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/UtilityJobsJobDetail.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/WelcomeScreen.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/WelcomeScreen.vue -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/dialect-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/dialect-data.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/components/postgresql_modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/components/postgresql_modals.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/constants.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/debug.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/emitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/emitter.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/index.js: -------------------------------------------------------------------------------- 1 | // template file -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/logging/logger_setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/logging/logger_setup.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/logging/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/logging/service.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/logging/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/logging/utils.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/login.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/long_polling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/long_polling.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/main.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/mixins/file_input_mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/mixins/file_input_mixin.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/mixins/humanize_duration_mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/mixins/humanize_duration_mixin.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/mixins/power_tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/mixins/power_tree.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/mixins/power_tree_drop_db_object_mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/mixins/power_tree_drop_db_object_mixin.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/mixins/power_tree_pin_database_mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/mixins/power_tree_pin_database_mixin.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/mixins/sidebar_title_update_mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/mixins/sidebar_title_update_mixin.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/mixins/table_clipboard_copy_mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/mixins/table_clipboard_copy_mixin.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/mixins/tabs_utils_mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/mixins/tabs_utils_mixin.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/notification_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/notification_control.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/omnis-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/omnis-control.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/shortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/shortcuts.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/stores/celldata_modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/stores/celldata_modal.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/stores/commands_history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/stores/commands_history.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/stores/connections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/stores/connections.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/stores/db_metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/stores/db_metadata.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/stores/file_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/stores/file_manager.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/stores/message_modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/stores/message_modal.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/stores/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/stores/settings.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/stores/snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/stores/snippets.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/stores/stores_initializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/stores/stores_initializer.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/stores/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/stores/tabs.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/stores/utilities_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/stores/utilities_menu.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/stores/utility_jobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/stores/utility_jobs.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/tab_functions/inner_debugger_tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/tab_functions/inner_debugger_tab.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/tree_context_functions/tree_mariadb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/tree_context_functions/tree_mariadb.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/tree_context_functions/tree_mssql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/tree_context_functions/tree_mssql.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/tree_context_functions/tree_mysql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/tree_context_functions/tree_mysql.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/tree_context_functions/tree_oracle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/tree_context_functions/tree_oracle.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/tree_context_functions/tree_postgresql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/tree_context_functions/tree_postgresql.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/tree_context_functions/tree_snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/tree_context_functions/tree_snippets.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/tree_context_functions/tree_sqlite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/tree_context_functions/tree_sqlite.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/tutorial.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/utils.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/src/workspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/src/workspace.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/AboutModal.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/AboutModal.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/BackupTab.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/BackupTab.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/BlockSizeSelector.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/BlockSizeSelector.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/CancelSQLButton.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/CancelSQLButton.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/CellDataModal.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/CellDataModal.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/ConfigTab.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/ConfigTab.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/ConfigTabGroup.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/ConfigTabGroup.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/ConfigTabGroupItemInput.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/ConfigTabGroupItemInput.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/ConfirmableButton.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/ConfirmableButton.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/DataEditorTabFilterItem.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/DataEditorTabFilterItem.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/DataEditorTabFilterList.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/DataEditorTabFilterList.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/DatabaseTabs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/DatabaseTabs.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/ExplainTabContent.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/ExplainTabContent.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/ExtensionModal.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/ExtensionModal.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/FileManager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/FileManager.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/FileManagerActionsModal.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/FileManagerActionsModal.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/GenericMessageModal.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/GenericMessageModal.spec.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/MasterPasswordModal.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/MasterPasswordModal.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/MonitoringDashboard.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/MonitoringDashboard.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/MonitoringTab.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/MonitoringTab.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/MonitoringTabLogs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/MonitoringTabLogs.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/MonitoringWidget.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/MonitoringWidget.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/MonitoringWidgetEditModal.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/MonitoringWidgetEditModal.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/MonitoringWidgetsModal.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/MonitoringWidgetsModal.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/PgCronModal.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/PgCronModal.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/RestoreTab.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/RestoreTab.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/SearchableDropdown.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/SearchableDropdown.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/SettingsModal.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/SettingsModal.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/SideBarTabs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/SideBarTabs.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/SnippetPanel.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/SnippetPanel.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/SnippetTab.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/SnippetTab.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/TabStatusIndicator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/TabStatusIndicator.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/TreePropertiesDDL.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/TreePropertiesDDL.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/UtilitiesMenu.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/UtilitiesMenu.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/UtilityJobs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/UtilityJobs.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/components/UtilityJobsJobDetail.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/components/UtilityJobsJobDetail.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/global_setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/global_setup.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/logging/service.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/logging/service.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/mixins/file_input_mixin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/mixins/file_input_mixin.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/stores/celldata_modal.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/stores/celldata_modal.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/stores/commands_history.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/stores/commands_history.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/stores/connections.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/stores/connections.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/stores/db_metadata.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/stores/db_metadata.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/stores/file_manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/stores/file_manager.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/stores/message_modal.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/stores/message_modal.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/stores/settings.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/stores/settings.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/stores/snippets.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/stores/snippets.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/stores/tabs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/stores/tabs.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/stores/utilities_menu.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/stores/utilities_menu.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/stores/utitlity_jobs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/stores/utitlity_jobs.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/tree_context_functions/tree_mariadb.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/tree_context_functions/tree_mariadb.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/tree_context_functions/tree_mysql.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/tree_context_functions/tree_mysql.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/tree_context_functions/tree_oracle.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/tree_context_functions/tree_oracle.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/tree_context_functions/tree_postgresql.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/tree_context_functions/tree_postgresql.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/tree_context_functions/tree_snippets.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/tree_context_functions/tree_snippets.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/test/tree_context_functions/tree_sqlite.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/test/tree_context_functions/tree_sqlite.test.js -------------------------------------------------------------------------------- /pgmanage/app/static/pgmanage_frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/static/pgmanage_frontend/vite.config.js -------------------------------------------------------------------------------- /pgmanage/app/static/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pgmanage/app/static/plugins/temp_loaded/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pgmanage/app/static/temp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pgmanage/app/templates/app/animated_assets/animated_logo_pgmanage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/templates/app/animated_assets/animated_logo_pgmanage.svg -------------------------------------------------------------------------------- /pgmanage/app/templates/app/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/templates/app/login.html -------------------------------------------------------------------------------- /pgmanage/app/templates/app/workspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/templates/app/workspace.html -------------------------------------------------------------------------------- /pgmanage/app/tests.old/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/README.md -------------------------------------------------------------------------------- /pgmanage/app/tests.old/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/__init__.py -------------------------------------------------------------------------------- /pgmanage/app/tests.old/bak_test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/bak_test_views.py -------------------------------------------------------------------------------- /pgmanage/app/tests.old/mariadb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/mariadb/README.md -------------------------------------------------------------------------------- /pgmanage/app/tests.old/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/mysql/README.md -------------------------------------------------------------------------------- /pgmanage/app/tests.old/notready_test_selenium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/notready_test_selenium.py -------------------------------------------------------------------------------- /pgmanage/app/tests.old/oracle/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/oracle/Dockerfile -------------------------------------------------------------------------------- /pgmanage/app/tests.old/oracle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/oracle/README.md -------------------------------------------------------------------------------- /pgmanage/app/tests.old/oracle/listener.ora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/oracle/listener.ora -------------------------------------------------------------------------------- /pgmanage/app/tests.old/oracle/oracle-xe-18c.conf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/oracle/oracle-xe-18c.conf.tmpl -------------------------------------------------------------------------------- /pgmanage/app/tests.old/oracle/tnsnames.ora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/oracle/tnsnames.ora -------------------------------------------------------------------------------- /pgmanage/app/tests.old/postgresql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/postgresql/Dockerfile -------------------------------------------------------------------------------- /pgmanage/app/tests.old/postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/postgresql/README.md -------------------------------------------------------------------------------- /pgmanage/app/tests.old/postgresql/dellstore2-normal-1.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/postgresql/dellstore2-normal-1.0.tar.gz -------------------------------------------------------------------------------- /pgmanage/app/tests.old/postgresql/restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/postgresql/restore.sh -------------------------------------------------------------------------------- /pgmanage/app/tests.old/test_postgresql10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/test_postgresql10.py -------------------------------------------------------------------------------- /pgmanage/app/tests.old/test_postgresql94.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/test_postgresql94.py -------------------------------------------------------------------------------- /pgmanage/app/tests.old/test_postgresql95.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/test_postgresql95.py -------------------------------------------------------------------------------- /pgmanage/app/tests.old/test_postgresql96.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/test_postgresql96.py -------------------------------------------------------------------------------- /pgmanage/app/tests.old/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/test_views.py -------------------------------------------------------------------------------- /pgmanage/app/tests.old/utils_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/utils_testing.py -------------------------------------------------------------------------------- /pgmanage/app/tests.old/vagrant/pglogical-2-postgresql-10-2nodes/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/vagrant/pglogical-2-postgresql-10-2nodes/Vagrantfile -------------------------------------------------------------------------------- /pgmanage/app/tests.old/vagrant/pglogical-2-postgresql-10-2nodes/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/vagrant/pglogical-2-postgresql-10-2nodes/bootstrap.sh -------------------------------------------------------------------------------- /pgmanage/app/tests.old/vagrant/postgresql-10-2nodes/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/vagrant/postgresql-10-2nodes/Vagrantfile -------------------------------------------------------------------------------- /pgmanage/app/tests.old/vagrant/postgresql-10-2nodes/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/vagrant/postgresql-10-2nodes/bootstrap.sh -------------------------------------------------------------------------------- /pgmanage/app/tests.old/vagrant/postgresql-bdr-9.4-2nodes/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/vagrant/postgresql-bdr-9.4-2nodes/Vagrantfile -------------------------------------------------------------------------------- /pgmanage/app/tests.old/vagrant/postgresql-bdr-9.4-2nodes/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/vagrant/postgresql-bdr-9.4-2nodes/bootstrap.sh -------------------------------------------------------------------------------- /pgmanage/app/tests.old/vagrant/xl-10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/vagrant/xl-10/README.md -------------------------------------------------------------------------------- /pgmanage/app/tests.old/vagrant/xl-10/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/vagrant/xl-10/Vagrantfile -------------------------------------------------------------------------------- /pgmanage/app/tests.old/vagrant/xl-10/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/vagrant/xl-10/init.sh -------------------------------------------------------------------------------- /pgmanage/app/tests.old/vagrant/xl-10/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/vagrant/xl-10/install.sh -------------------------------------------------------------------------------- /pgmanage/app/tests.old/vagrant/xl-10/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/vagrant/xl-10/setup.sh -------------------------------------------------------------------------------- /pgmanage/app/tests.old/vagrant/xl-10/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/vagrant/xl-10/start.sh -------------------------------------------------------------------------------- /pgmanage/app/tests.old/vagrant/xl-9.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/vagrant/xl-9.5/README.md -------------------------------------------------------------------------------- /pgmanage/app/tests.old/vagrant/xl-9.5/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/vagrant/xl-9.5/Vagrantfile -------------------------------------------------------------------------------- /pgmanage/app/tests.old/vagrant/xl-9.5/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/vagrant/xl-9.5/init.sh -------------------------------------------------------------------------------- /pgmanage/app/tests.old/vagrant/xl-9.5/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/vagrant/xl-9.5/install.sh -------------------------------------------------------------------------------- /pgmanage/app/tests.old/vagrant/xl-9.5/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/vagrant/xl-9.5/setup.sh -------------------------------------------------------------------------------- /pgmanage/app/tests.old/vagrant/xl-9.5/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/vagrant/xl-9.5/start.sh -------------------------------------------------------------------------------- /pgmanage/app/tests.old/webdrivers/geckodriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests.old/webdrivers/geckodriver -------------------------------------------------------------------------------- /pgmanage/app/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests/__init__.py -------------------------------------------------------------------------------- /pgmanage/app/tests/dellstore2-normal-1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests/dellstore2-normal-1.0.sql -------------------------------------------------------------------------------- /pgmanage/app/tests/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests/docker-compose.yml -------------------------------------------------------------------------------- /pgmanage/app/tests/test-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests/test-db.sh -------------------------------------------------------------------------------- /pgmanage/app/tests/test_bgjob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests/test_bgjob.py -------------------------------------------------------------------------------- /pgmanage/app/tests/test_commands_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests/test_commands_history.py -------------------------------------------------------------------------------- /pgmanage/app/tests/test_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests/test_configuration.py -------------------------------------------------------------------------------- /pgmanage/app/tests/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests/test_connection.py -------------------------------------------------------------------------------- /pgmanage/app/tests/test_file_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests/test_file_manager.py -------------------------------------------------------------------------------- /pgmanage/app/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests/test_models.py -------------------------------------------------------------------------------- /pgmanage/app/tests/test_monitoring_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests/test_monitoring_dashboard.py -------------------------------------------------------------------------------- /pgmanage/app/tests/test_pgextras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests/test_pgextras.py -------------------------------------------------------------------------------- /pgmanage/app/tests/test_postgresql12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests/test_postgresql12.py -------------------------------------------------------------------------------- /pgmanage/app/tests/test_tree_snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests/test_tree_snippets.py -------------------------------------------------------------------------------- /pgmanage/app/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests/test_views.py -------------------------------------------------------------------------------- /pgmanage/app/tests/utils_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/tests/utils_testing.py -------------------------------------------------------------------------------- /pgmanage/app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/urls.py -------------------------------------------------------------------------------- /pgmanage/app/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pgmanage/app/utils/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/utils/conf.py -------------------------------------------------------------------------------- /pgmanage/app/utils/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/utils/crypto.py -------------------------------------------------------------------------------- /pgmanage/app/utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/utils/decorators.py -------------------------------------------------------------------------------- /pgmanage/app/utils/key_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/utils/key_manager.py -------------------------------------------------------------------------------- /pgmanage/app/utils/master_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/utils/master_password.py -------------------------------------------------------------------------------- /pgmanage/app/utils/postgresql_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/utils/postgresql_utilities.py -------------------------------------------------------------------------------- /pgmanage/app/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/__init__.py -------------------------------------------------------------------------------- /pgmanage/app/views/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/backup.py -------------------------------------------------------------------------------- /pgmanage/app/views/bgjob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/bgjob.py -------------------------------------------------------------------------------- /pgmanage/app/views/commands_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/commands_history.py -------------------------------------------------------------------------------- /pgmanage/app/views/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/configuration.py -------------------------------------------------------------------------------- /pgmanage/app/views/connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/connections.py -------------------------------------------------------------------------------- /pgmanage/app/views/file_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/file_manager.py -------------------------------------------------------------------------------- /pgmanage/app/views/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/logging.py -------------------------------------------------------------------------------- /pgmanage/app/views/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/login.py -------------------------------------------------------------------------------- /pgmanage/app/views/monitoring_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/monitoring_dashboard.py -------------------------------------------------------------------------------- /pgmanage/app/views/monitoring_widgets/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/monitoring_widgets/mysql.py -------------------------------------------------------------------------------- /pgmanage/app/views/monitoring_widgets/postgresql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/monitoring_widgets/postgresql.py -------------------------------------------------------------------------------- /pgmanage/app/views/pgextras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/pgextras.py -------------------------------------------------------------------------------- /pgmanage/app/views/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/plugins.py -------------------------------------------------------------------------------- /pgmanage/app/views/polling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/polling.py -------------------------------------------------------------------------------- /pgmanage/app/views/restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/restore.py -------------------------------------------------------------------------------- /pgmanage/app/views/tree_mariadb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/tree_mariadb.py -------------------------------------------------------------------------------- /pgmanage/app/views/tree_mssql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/tree_mssql.py -------------------------------------------------------------------------------- /pgmanage/app/views/tree_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/tree_mysql.py -------------------------------------------------------------------------------- /pgmanage/app/views/tree_oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/tree_oracle.py -------------------------------------------------------------------------------- /pgmanage/app/views/tree_postgresql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/tree_postgresql.py -------------------------------------------------------------------------------- /pgmanage/app/views/tree_snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/tree_snippets.py -------------------------------------------------------------------------------- /pgmanage/app/views/tree_sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/tree_sqlite.py -------------------------------------------------------------------------------- /pgmanage/app/views/workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/app/views/workspace.py -------------------------------------------------------------------------------- /pgmanage/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/config.py -------------------------------------------------------------------------------- /pgmanage/deploy.old/app_centos7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/app_centos7/Dockerfile -------------------------------------------------------------------------------- /pgmanage/deploy.old/app_centos7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/app_centos7/README.md -------------------------------------------------------------------------------- /pgmanage/deploy.old/app_centos7/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/app_centos7/build.sh -------------------------------------------------------------------------------- /pgmanage/deploy.old/app_centos7/clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/app_centos7/clone.sh -------------------------------------------------------------------------------- /pgmanage/deploy.old/app_debian8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/app_debian8/Dockerfile -------------------------------------------------------------------------------- /pgmanage/deploy.old/app_debian8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/app_debian8/README.md -------------------------------------------------------------------------------- /pgmanage/deploy.old/app_debian8/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/app_debian8/build.sh -------------------------------------------------------------------------------- /pgmanage/deploy.old/app_debian8/clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/app_debian8/clone.sh -------------------------------------------------------------------------------- /pgmanage/deploy.old/lib/libXss.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/lib/libXss.so.1 -------------------------------------------------------------------------------- /pgmanage/deploy.old/lib/libnss3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/lib/libnss3.so -------------------------------------------------------------------------------- /pgmanage/deploy.old/plugin_centos6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/plugin_centos6/Dockerfile -------------------------------------------------------------------------------- /pgmanage/deploy.old/plugin_centos6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/plugin_centos6/README.md -------------------------------------------------------------------------------- /pgmanage/deploy.old/plugin_centos6/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/plugin_centos6/build.sh -------------------------------------------------------------------------------- /pgmanage/deploy.old/plugin_centos6/clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/plugin_centos6/clone.sh -------------------------------------------------------------------------------- /pgmanage/deploy.old/plugin_centos7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/plugin_centos7/Dockerfile -------------------------------------------------------------------------------- /pgmanage/deploy.old/plugin_centos7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/plugin_centos7/README.md -------------------------------------------------------------------------------- /pgmanage/deploy.old/plugin_centos7/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/plugin_centos7/build.sh -------------------------------------------------------------------------------- /pgmanage/deploy.old/plugin_centos7/clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/plugin_centos7/clone.sh -------------------------------------------------------------------------------- /pgmanage/deploy.old/plugin_debian8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/plugin_debian8/Dockerfile -------------------------------------------------------------------------------- /pgmanage/deploy.old/plugin_debian8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/plugin_debian8/README.md -------------------------------------------------------------------------------- /pgmanage/deploy.old/plugin_debian8/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/plugin_debian8/build.sh -------------------------------------------------------------------------------- /pgmanage/deploy.old/plugin_debian8/clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/plugin_debian8/clone.sh -------------------------------------------------------------------------------- /pgmanage/deploy.old/plugin_freebsd/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/plugin_freebsd/Vagrantfile -------------------------------------------------------------------------------- /pgmanage/deploy.old/plugin_freebsd/compile_instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/plugin_freebsd/compile_instructions.txt -------------------------------------------------------------------------------- /pgmanage/deploy.old/plugin_freebsd/test_instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/plugin_freebsd/test_instructions.txt -------------------------------------------------------------------------------- /pgmanage/deploy.old/server_centos6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/server_centos6/Dockerfile -------------------------------------------------------------------------------- /pgmanage/deploy.old/server_centos6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/server_centos6/README.md -------------------------------------------------------------------------------- /pgmanage/deploy.old/server_centos6/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/server_centos6/build.sh -------------------------------------------------------------------------------- /pgmanage/deploy.old/server_centos6/clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/server_centos6/clone.sh -------------------------------------------------------------------------------- /pgmanage/deploy.old/server_centos7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/server_centos7/Dockerfile -------------------------------------------------------------------------------- /pgmanage/deploy.old/server_centos7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/server_centos7/README.md -------------------------------------------------------------------------------- /pgmanage/deploy.old/server_centos7/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/server_centos7/build.sh -------------------------------------------------------------------------------- /pgmanage/deploy.old/server_centos7/clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/server_centos7/clone.sh -------------------------------------------------------------------------------- /pgmanage/deploy.old/server_debian8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/server_debian8/Dockerfile -------------------------------------------------------------------------------- /pgmanage/deploy.old/server_debian8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/server_debian8/README.md -------------------------------------------------------------------------------- /pgmanage/deploy.old/server_debian8/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/server_debian8/build.sh -------------------------------------------------------------------------------- /pgmanage/deploy.old/server_debian8/clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/deploy.old/server_debian8/clone.sh -------------------------------------------------------------------------------- /pgmanage/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/manage.py -------------------------------------------------------------------------------- /pgmanage/pgmanage-lin.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/pgmanage-lin.spec -------------------------------------------------------------------------------- /pgmanage/pgmanage-mac.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/pgmanage-mac.spec -------------------------------------------------------------------------------- /pgmanage/pgmanage-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/pgmanage-server.py -------------------------------------------------------------------------------- /pgmanage/pgmanage-win.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/pgmanage-win.spec -------------------------------------------------------------------------------- /pgmanage/pgmanage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pgmanage/pgmanage/custom_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/pgmanage/custom_settings.py -------------------------------------------------------------------------------- /pgmanage/pgmanage/logging_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/pgmanage/logging_filter.py -------------------------------------------------------------------------------- /pgmanage/pgmanage/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/pgmanage/settings.py -------------------------------------------------------------------------------- /pgmanage/pgmanage/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/pgmanage/startup.py -------------------------------------------------------------------------------- /pgmanage/pgmanage/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/pgmanage/urls.py -------------------------------------------------------------------------------- /pgmanage/pgmanage/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/pgmanage/wsgi.py -------------------------------------------------------------------------------- /pgmanage/process_executor-lin.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/process_executor-lin.spec -------------------------------------------------------------------------------- /pgmanage/process_executor-mac.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/process_executor-mac.spec -------------------------------------------------------------------------------- /pgmanage/process_executor-win.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pgmanage/process_executor-win.spec -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/uat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/tests/uat/README.md -------------------------------------------------------------------------------- /tests/uat/centos6/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/tests/uat/centos6/Vagrantfile -------------------------------------------------------------------------------- /tests/uat/centos7/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/tests/uat/centos7/Vagrantfile -------------------------------------------------------------------------------- /tests/uat/centos8/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/tests/uat/centos8/Vagrantfile -------------------------------------------------------------------------------- /tests/uat/debian10/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/tests/uat/debian10/Vagrantfile -------------------------------------------------------------------------------- /tests/uat/debian9/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/tests/uat/debian9/Vagrantfile -------------------------------------------------------------------------------- /tests/uat/fedora31/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/tests/uat/fedora31/Vagrantfile -------------------------------------------------------------------------------- /tests/uat/opensuse/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/tests/uat/opensuse/Vagrantfile -------------------------------------------------------------------------------- /tests/uat/redhat7/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/tests/uat/redhat7/Vagrantfile -------------------------------------------------------------------------------- /tests/uat/ubuntu16/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/tests/uat/ubuntu16/Vagrantfile -------------------------------------------------------------------------------- /tests/uat/ubuntu18/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandprompt/pgmanage/HEAD/tests/uat/ubuntu18/Vagrantfile --------------------------------------------------------------------------------