[pgAdmin] : Issue with Alert-box on login page
Hi Hackers, Attached is the small patch to fix the cross button of alert-box, which wasn't working on the login page (server mode). Please review. PFA. -- Regards, Yogesh Jain 8982696654 diff --git a/web/pgadmin/templates/security/messages.html b/web/pgadmin/templates/security/messages.html index 6c66267..6fc11e0 100644 --- a/web/pgadmin/templates/security/messages.html +++ b/web/pgadmin/templates/security/messages.html @@ -2,12 +2,17 @@ {% if messages %} {% for category, message in messages %} - + {{ message }} -× {% endfor %} + +function hide(){ +document.getElementById("alertbox").classList.remove("show"); +} + {% endif %} {%- endwith %}
Re: [pgAdmin] : Issue with Alert-box on login page
Hi Hackers, Created a new RM*#5509 *regarding the same. On Tue, May 12, 2020 at 12:33 PM Yogesh Jain wrote: > Hi Hackers, > > Attached is the small patch to fix the cross button of alert-box, which > wasn't working on the login page (server mode). > > Please review. > PFA. > > -- > Regards, > Yogesh Jain > 8982696654 > -- Regards, Yogesh Jain 8982696654
[pgAdmin] : Patch fixing Feature Test failures.
Hi, Please find the attached patch which fixes feature tests failure on chrome caused due to selenium grid implementation changes. Thanks, Yogesh Mahajan QA - Team EnterpriseDB Corporation Phone: +91-9741705709 fix_selenium_grid_implementation_v1.0.patch Description: Binary data
pgAdmin 4 commit: Fixed feature tests failure on chrome caused due to s
Fixed feature tests failure on chrome caused due to selenium grid implementation changes. Branch -- master Details --- https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=8ec1d4c9eb9ba2465694e5124423f91baad1d28d Author: Yogesh Mahajan Modified Files -- web/regression/feature_utils/pgadmin_page.py | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-)
pgAdmin 4 commit: Fixed Unicode decode error 'utf-8' codec can't decode
Fixed Unicode decode error 'utf-8' codec can't decode byte. Fixes #5510 It's a regression of commit id: 04d6d4e2ccc129baa698471ce0680ccabe2282be Branch -- master Details --- https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=46e9924ebbdf3caaf2ce8487f26f36f050bc2da2 Modified Files -- docs/en_US/release_notes_4_22.rst | 3 ++- web/pgadmin/utils/driver/psycopg2/server_manager.py | 11 +-- 2 files changed, 11 insertions(+), 3 deletions(-)
pgAdmin 4 commit: Fixed an issue where clicking on the cross button of
Fixed an issue where clicking on the cross button of the alert box on the login page is not working. Fixes #4033 Branch -- master Details --- https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=dba5761ad003cffc6dab178a7780c545d037f472 Author: Yogesh Jain Modified Files -- docs/en_US/release_notes_4_22.rst| 1 + web/pgadmin/templates/security/messages.html | 9 +++-- 2 files changed, 8 insertions(+), 2 deletions(-)
pgAdmin 4 commit: Ensure that pgAdmin4 should be compiled with older OS
Ensure that pgAdmin4 should be compiled with older OSX SDK's. Branch -- master Details --- https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=8a06a836f41d4e7dc932fe4bbbdb5e746c27bd7e Modified Files -- runtime/macos.mm | 5 + 1 file changed, 5 insertions(+)
Re: [pgAdmin] : Issue with Alert-box on login page
Thanks, patch applied. On Tue, May 12, 2020 at 2:03 PM Yogesh Jain wrote: > Hi Hackers, > > Created a new RM*#5509 *regarding the same. > > On Tue, May 12, 2020 at 12:33 PM Yogesh Jain > wrote: > >> Hi Hackers, >> >> Attached is the small patch to fix the cross button of alert-box, which >> wasn't working on the login page (server mode). >> >> Please review. >> PFA. >> >> -- >> Regards, >> Yogesh Jain >> 8982696654 >> > > > -- > Regards, > Yogesh Jain > 8982696654 > -- *Thanks & Regards* *Akshay Joshi* *Sr. Software Architect* *EnterpriseDB Software India Private Limited* *Mobile: +91 976-788-8246*
Re: [pgAdmin] : Patch fixing Feature Test failures.
Thanks, patch applied. On Tue, May 12, 2020 at 2:12 PM Yogesh Mahajan < yogesh.maha...@enterprisedb.com> wrote: > Hi, > > Please find the attached patch which fixes feature tests failure on > chrome caused due to selenium grid implementation changes. > > > Thanks, > Yogesh Mahajan > QA - Team > EnterpriseDB Corporation > > Phone: +91-9741705709 > -- *Thanks & Regards* *Akshay Joshi* *Sr. Software Architect* *EnterpriseDB Software India Private Limited* *Mobile: +91 976-788-8246*
[pgAdmin4][Patch] - Add compatibility for Flask-Security-Too==3.2
Hi, Added compatibility for Flask-Security-Too==3.2. Thanks, Khushboo flask_security_fix.patch Description: Binary data