pgAdmin 4 commit: Add support for Packages on EPAS.

Поиск
Список
Период
Сортировка
От Dave Page
Тема pgAdmin 4 commit: Add support for Packages on EPAS.
Дата
Msg-id E1bbnQq-0002Tl-G3@gothos.postgresql.org
обсуждение исходный текст
Список pgadmin-hackers
Add support for Packages on EPAS.

Branch
------
master

Details
-------
http://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=cf1be2a32040d6978ad6d9b20f63accaf6ba4a9d
Author: Harshal Dhumal <harshal.dhumal@enterprisedb.com>

Modified Files
--------------
.../js/catalog_object_column.js                    |   1 +
.../templates/catalog_object/js/catalog_object.js  |   1 +
.../servers/databases/schemas/packages/__init__.py | 677 +++++++++++++++++++++
.../schemas/packages/edbfuncs/__init__.py          | 664 ++++++++++++++++++++
.../packages/edbfuncs/static/img/coll-edbfunc.png  | Bin 0 -> 349 bytes
.../packages/edbfuncs/static/img/coll-edbproc.png  | Bin 0 -> 337 bytes
.../packages/edbfuncs/static/img/edbfunc.png       | Bin 0 -> 325 bytes
.../packages/edbfuncs/static/img/edbproc.png       | Bin 0 -> 322 bytes
.../edbfuncs/templates/edbfunc/css/edbfunc.css     |   3 +
.../edbfuncs/templates/edbfunc/js/edbfunc.js       | 112 ++++
.../templates/edbfunc/ppas/9.1_plus/get_body.sql   |   5 +
.../templates/edbfunc/ppas/9.1_plus/get_name.sql   |   3 +
.../templates/edbfunc/ppas/9.1_plus/get_oid.sql    |  17 +
.../templates/edbfunc/ppas/9.1_plus/get_schema.sql |   6 +
.../templates/edbfunc/ppas/9.1_plus/node.sql       |   6 +
.../templates/edbfunc/ppas/9.1_plus/properties.sql |  27 +
.../templates/edbfunc/ppas/9.1_plus/stats.sql      |   8 +
.../templates/edbfunc/ppas/9.2_plus/get_body.sql   |   6 +
.../templates/edbfunc/ppas/9.2_plus/get_name.sql   |   3 +
.../templates/edbfunc/ppas/9.2_plus/get_oid.sql    |  17 +
.../templates/edbfunc/ppas/9.2_plus/get_schema.sql |   6 +
.../templates/edbfunc/ppas/9.2_plus/node.sql       |   6 +
.../templates/edbfunc/ppas/9.2_plus/properties.sql |  27 +
.../templates/edbfunc/ppas/9.2_plus/stats.sql      |   8 +
.../edbfuncs/templates/edbproc/js/edbproc.js       |  65 ++
.../templates/edbproc/ppas/9.1_plus/get_body.sql   |   5 +
.../templates/edbproc/ppas/9.1_plus/get_name.sql   |   3 +
.../templates/edbproc/ppas/9.1_plus/get_oid.sql    |  17 +
.../templates/edbproc/ppas/9.1_plus/get_schema.sql |   6 +
.../templates/edbproc/ppas/9.1_plus/node.sql       |   6 +
.../templates/edbproc/ppas/9.1_plus/properties.sql |  27 +
.../templates/edbproc/ppas/9.1_plus/stats.sql      |   8 +
.../templates/edbproc/ppas/9.2_plus/get_body.sql   |   6 +
.../templates/edbproc/ppas/9.2_plus/get_name.sql   |   3 +
.../templates/edbproc/ppas/9.2_plus/get_oid.sql    |  17 +
.../templates/edbproc/ppas/9.2_plus/get_schema.sql |   6 +
.../templates/edbproc/ppas/9.2_plus/node.sql       |   6 +
.../templates/edbproc/ppas/9.2_plus/properties.sql |  27 +
.../templates/edbproc/ppas/9.2_plus/stats.sql      |   8 +
.../databases/schemas/packages/edbvars/__init__.py | 326 ++++++++++
.../packages/edbvars/static/img/coll-edbvar.png    | Bin 0 -> 350 bytes
.../schemas/packages/edbvars/static/img/edbvar.png | Bin 0 -> 311 bytes
.../packages/edbvars/templates/edbvar/js/edbvar.js |  70 +++
.../edbvars/templates/edbvar/ppas/node.sql         |   5 +
.../edbvars/templates/edbvar/ppas/properties.sql   |  13 +
.../schemas/packages/static/img/coll-package.png   | Bin 0 -> 557 bytes
.../schemas/packages/static/img/package.png        | Bin 0 -> 673 bytes
.../packages/templates/package/js/package.js       | 169 +++++
.../templates/package/ppas/9.1_plus/acl.sql        |  33 +
.../templates/package/ppas/9.1_plus/create.sql     |  24 +
.../templates/package/ppas/9.1_plus/delete.sql     |   1 +
.../templates/package/ppas/9.1_plus/get_oid.sql    |   4 +
.../templates/package/ppas/9.1_plus/get_schema.sql |   6 +
.../templates/package/ppas/9.1_plus/grant.sql      |  26 +
.../templates/package/ppas/9.1_plus/nodes.sql      |   6 +
.../templates/package/ppas/9.1_plus/properties.sql |  17 +
.../templates/package/ppas/9.1_plus/update.sql     |  44 ++
.../templates/package/ppas/9.2_plus/acl.sql        |  35 ++
.../templates/package/ppas/9.2_plus/create.sql     |  24 +
.../templates/package/ppas/9.2_plus/delete.sql     |   1 +
.../templates/package/ppas/9.2_plus/get_oid.sql    |   5 +
.../templates/package/ppas/9.2_plus/get_schema.sql |   6 +
.../templates/package/ppas/9.2_plus/grant.sql      |  26 +
.../templates/package/ppas/9.2_plus/nodes.sql      |   5 +
.../templates/package/ppas/9.2_plus/properties.sql |  18 +
.../templates/package/ppas/9.2_plus/update.sql     |  44 ++
web/pgadmin/browser/server_groups/servers/utils.py |   4 +-
web/pgadmin/browser/templates/browser/js/node.js   |  41 +-
68 files changed, 2749 insertions(+), 17 deletions(-)


В списке pgadmin-hackers по дате отправления:

Предыдущее
От: Dave Page
Дата:
Сообщение: Re: [pgAdmin4][Patch]: RM1569 - Right-clicking an disconnected EPAS server shows "Create Resource Group" option
Следующее
От: Dave Page
Дата:
Сообщение: Re: [pgadmin4] Edb package support.