pgAdmin 4 commit: Added Macro support. Fixes #1402

From: Akshay Joshi <akshay(dot)joshi(at)enterprisedb(dot)com>
To: pgadmin-hackers(at)lists(dot)postgresql(dot)org
Subject: pgAdmin 4 commit: Added Macro support. Fixes #1402
Date: 2020-09-28 12:25:12
Message-ID: E1kMsDQ-0004YG-Kr@gothos.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Added Macro support. Fixes #1402

Branch
------
master

Details
-------
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=4616a740290b69010d1fddf59e3d8fc8e91b23f9
Author: Khushboo Vashi <khushboo(dot)vashi(at)enterprisedb(dot)com>

Modified Files
--------------
docs/en_US/release_notes_4_27.rst | 1 +
web/migrations/versions/398697dc9550_.py | 56 ++++
web/pgadmin/model/__init__.py | 25 +-
web/pgadmin/static/js/backgrid.pgadmin.js | 176 ++++++++++-
web/pgadmin/static/js/keyboard_shortcuts.js | 25 +-
web/pgadmin/static/js/sqleditor/macro.js | 325 +++++++++++++++++++++
web/pgadmin/static/js/sqleditor/macro_model.js | 224 ++++++++++++++
.../static/js/sqleditor/query_tool_actions.js | 5 +
web/pgadmin/static/scss/_backgrid.overrides.scss | 28 ++
web/pgadmin/tools/datagrid/__init__.py | 4 +
.../tools/datagrid/templates/datagrid/index.html | 28 +-
web/pgadmin/tools/sqleditor/__init__.py | 50 +++-
.../tools/sqleditor/static/css/sqleditor.css | 29 ++
web/pgadmin/tools/sqleditor/static/js/sqleditor.js | 95 +++++-
web/pgadmin/tools/sqleditor/tests/test_macros.py | 125 ++++++++
web/pgadmin/tools/sqleditor/utils/macros.py | 189 ++++++++++++
.../sqleditor/keyboard_shortcuts_spec.js | 58 +++-
17 files changed, 1429 insertions(+), 14 deletions(-)

Browse pgadmin-hackers by date

  From Date Subject
Next Message Akshay Joshi 2020-09-28 12:26:45 Re: [pgAdmin4][Patch] - RM 1402 - Macro support like pgAdmin3
Previous Message Aditya Toshniwal 2020-09-28 11:18:17 Re: [pgAdmin] Fix incorrect import in setup.py