public inbox for [email protected]  
help / color / mirror / Atom feed
pgAdmin 4 v3.1 Released
14+ messages / 4 participants
[nested] [flat]

* pgAdmin 4 v3.1 Released
@ 2018-06-28 09:56 Dave Page <[email protected]>
  2018-06-28 10:43 ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  0 siblings, 1 reply; 14+ messages in thread

From: Dave Page @ 2018-06-28 09:56 UTC (permalink / raw)
  To: pgadmin-hackers; pgAdmin Support <[email protected]>

The pgAdmin Development Team are pleased to announce pgAdmin 4 version 3.1.
This release of pgAdmin 4 includes over 30 bug fixes and new features. For
more details please see the release notes at:

    https://www.pgadmin.org/docs/pgadmin4/dev/release_notes_3_1.html.

pgAdmin is the leading Open Source graphical management tool for
PostgreSQL. For more information, please see:

    https://www.pgadmin.org/

Notable changes in this release include:

* Add support for SSH tunneled connections.
* Various fixes for handling data in SQL_ASCII databases.
* Add support for LISTEN/NOTIFY in the Query Tool.
* Function/Procedure support for PostgreSQL 11.
* Various fixes and enhancements to the Greenplum support.

Builds for Windows and macOS are available now, along with a Python Wheel,
Docker Container and source code tarball from:

    https://www.pgadmin.org/download/

RPM and DEB packages are expected to be available on the postgresql.org
repositories within the next few days.

-- 
Dave Page
pgAdmin Project Lead


^ permalink  raw  reply  [nested|flat] 14+ messages in thread

* Re: pgAdmin 4 v3.1 Released
  2018-06-28 09:56 pgAdmin 4 v3.1 Released Dave Page <[email protected]>
@ 2018-06-28 10:43 ` Isaias Sanchez <[email protected]>
  2018-06-28 10:48   ` Re: pgAdmin 4 v3.1 Released Khushboo Vashi <[email protected]>
  2018-06-28 10:52   ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  0 siblings, 2 replies; 14+ messages in thread

From: Isaias Sanchez @ 2018-06-28 10:43 UTC (permalink / raw)
  To: [email protected]

I just installed the Python Wheel 3.1 version on a centos 6 server and 
the app doesn't start, the error is this:

2018-06-28 10:37:23,668: ERROR  werkzeug:       Error on request:
Traceback (most recent call last):
   File "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py", 
line 177, in run_wsgi
     execute(self.server.app)
   File "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py", 
line 165, in execute
     application_iter = app(environ, start_response)
   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 
1997, in __call__
     return self.wsgi_app(environ, start_response)
   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 
1985, in wsgi_app
     response = self.handle_exception(e)
   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 
1540, in handle_exception
     reraise(exc_type, exc_value, tb)
   File "/usr/local/lib/python3.6/site-packages/flask/_compat.py", line 
33, in reraise
     raise value
   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 
1982, in wsgi_app
     response = self.full_dispatch_request()
   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 
1615, in full_dispatch_request
     return self.finalize_request(rv)
   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 
1632, in finalize_request
     response = self.process_response(response)
   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 
1856, in process_response
     response = handler(response)
   File "/usr/local/lib/python3.6/site-packages/flask_htmlmin.py", line 
35, in response_minify
     self.html_minify.minify(response.get_data(as_text=True))
   File "/usr/local/lib/python3.6/site-packages/htmlmin/main.py", line 
152, in minify
     self.input(*input)
   File "/usr/local/lib/python3.6/site-packages/htmlmin/main.py", line 
164, in input
     self._parser.feed(i)
   File "/usr/local/lib/python3.6/html/parser.py", line 111, in feed
     self.goahead(0)
   File "/usr/local/lib/python3.6/html/parser.py", line 171, in goahead
     k = self.parse_starttag(i)
   File "/usr/local/lib/python3.6/html/parser.py", line 345, in 
parse_starttag
     self.handle_starttag(tag, attrs)
   File "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py", line 
222, in handle_starttag
     self._in_pre_tag -= self._close_tags_up_to(in_tag[0])
   File "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py", line 
189, in _close_tags_up_to
     raise OpenTagNotFoundError()
htmlmin.parser.OpenTagNotFoundError




On 28/06/18 09:56, Dave Page wrote:
> The pgAdmin Development Team are pleased to announce pgAdmin 4 version 
> 3.1. This release of pgAdmin 4 includes over 30 bug fixes and new 
> features. For more details please see the release notes at:
>
> https://www.pgadmin.org/docs/pgadmin4/dev/release_notes_3_1.html.
>
> pgAdmin is the leading Open Source graphical management tool for 
> PostgreSQL. For more information, please see:
>
> https://www.pgadmin.org/
>
> Notable changes in this release include:
>
> * Add support for SSH tunneled connections.
> * Various fixes for handling data in SQL_ASCII databases.
> * Add support for LISTEN/NOTIFY in the Query Tool.
> * Function/Procedure support for PostgreSQL 11.
> * Various fixes and enhancements to the Greenplum support.
>
> Builds for Windows and macOS are available now, along with a Python 
> Wheel, Docker Container and source code tarball from:
>
> https://www.pgadmin.org/download/
>
> RPM and DEB packages are expected to be available on the 
> postgresql.org <http://postgresql.org; repositories within the next 
> few days.
>
> -- 
> Dave Page
> pgAdmin Project Lead
>



^ permalink  raw  reply  [nested|flat] 14+ messages in thread

* Re: pgAdmin 4 v3.1 Released
  2018-06-28 09:56 pgAdmin 4 v3.1 Released Dave Page <[email protected]>
  2018-06-28 10:43 ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
@ 2018-06-28 10:48   ` Khushboo Vashi <[email protected]>
  1 sibling, 0 replies; 14+ messages in thread

From: Khushboo Vashi @ 2018-06-28 10:48 UTC (permalink / raw)
  To: Isaias Sanchez <[email protected]>; +Cc: [email protected]

Can you please provide the output of  the below command?

pip freeze

On Thu, Jun 28, 2018 at 4:13 PM, Isaias Sanchez <[email protected]>
wrote:

> I just installed the Python Wheel 3.1 version on a centos 6 server and the
> app doesn't start, the error is this:
>
> 2018-06-28 10:37:23,668: ERROR  werkzeug:       Error on request:
> Traceback (most recent call last):
>   File "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py", line
> 177, in run_wsgi
>     execute(self.server.app)
>   File "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py", line
> 165, in execute
>     application_iter = app(environ, start_response)
>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1997,
> in __call__
>     return self.wsgi_app(environ, start_response)
>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1985,
> in wsgi_app
>     response = self.handle_exception(e)
>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1540,
> in handle_exception
>     reraise(exc_type, exc_value, tb)
>   File "/usr/local/lib/python3.6/site-packages/flask/_compat.py", line
> 33, in reraise
>     raise value
>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1982,
> in wsgi_app
>     response = self.full_dispatch_request()
>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1615,
> in full_dispatch_request
>     return self.finalize_request(rv)
>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1632,
> in finalize_request
>     response = self.process_response(response)
>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1856,
> in process_response
>     response = handler(response)
>   File "/usr/local/lib/python3.6/site-packages/flask_htmlmin.py", line
> 35, in response_minify
>     self.html_minify.minify(response.get_data(as_text=True))
>   File "/usr/local/lib/python3.6/site-packages/htmlmin/main.py", line
> 152, in minify
>     self.input(*input)
>   File "/usr/local/lib/python3.6/site-packages/htmlmin/main.py", line
> 164, in input
>     self._parser.feed(i)
>   File "/usr/local/lib/python3.6/html/parser.py", line 111, in feed
>     self.goahead(0)
>   File "/usr/local/lib/python3.6/html/parser.py", line 171, in goahead
>     k = self.parse_starttag(i)
>   File "/usr/local/lib/python3.6/html/parser.py", line 345, in
> parse_starttag
>     self.handle_starttag(tag, attrs)
>   File "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py", line
> 222, in handle_starttag
>     self._in_pre_tag -= self._close_tags_up_to(in_tag[0])
>   File "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py", line
> 189, in _close_tags_up_to
>     raise OpenTagNotFoundError()
> htmlmin.parser.OpenTagNotFoundError
>
>
>
> On 28/06/18 09:56, Dave Page wrote:
>
> The pgAdmin Development Team are pleased to announce pgAdmin 4 version
> 3.1. This release of pgAdmin 4 includes over 30 bug fixes and new features.
> For more details please see the release notes at:
>
>     https://www.pgadmin.org/docs/pgadmin4/dev/release_notes_3_1.html.
>
> pgAdmin is the leading Open Source graphical management tool for
> PostgreSQL. For more information, please see:
>
>     https://www.pgadmin.org/
>
> Notable changes in this release include:
>
> * Add support for SSH tunneled connections.
> * Various fixes for handling data in SQL_ASCII databases.
> * Add support for LISTEN/NOTIFY in the Query Tool.
> * Function/Procedure support for PostgreSQL 11.
> * Various fixes and enhancements to the Greenplum support.
>
> Builds for Windows and macOS are available now, along with a Python Wheel,
> Docker Container and source code tarball from:
>
>     https://www.pgadmin.org/download/
>
> RPM and DEB packages are expected to be available on the postgresql.org
> repositories within the next few days.
>
> --
> Dave Page
> pgAdmin Project Lead
>
>
>


^ permalink  raw  reply  [nested|flat] 14+ messages in thread

* Re: pgAdmin 4 v3.1 Released
  2018-06-28 09:56 pgAdmin 4 v3.1 Released Dave Page <[email protected]>
  2018-06-28 10:43 ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
@ 2018-06-28 10:52   ` Murtuza Zabuawala <[email protected]>
  2018-06-28 11:05     ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  1 sibling, 1 reply; 14+ messages in thread

From: Murtuza Zabuawala @ 2018-06-28 10:52 UTC (permalink / raw)
  To: Isaias Sanchez <[email protected]>; +Cc: [email protected]

Looks like you have an older version of htmlmin module (< 0.1.12).

Please install/update htmlmin to version 0.1.12, let us know if that solves
the issue.

--
Regards,
Murtuza Zabuawala
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


On Thu, Jun 28, 2018 at 4:13 PM, Isaias Sanchez <[email protected]>
wrote:

> I just installed the Python Wheel 3.1 version on a centos 6 server and the
> app doesn't start, the error is this:
>
> 2018-06-28 10:37:23,668: ERROR  werkzeug:       Error on request:
> Traceback (most recent call last):
>   File "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py", line
> 177, in run_wsgi
>     execute(self.server.app)
>   File "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py", line
> 165, in execute
>     application_iter = app(environ, start_response)
>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1997,
> in __call__
>     return self.wsgi_app(environ, start_response)
>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1985,
> in wsgi_app
>     response = self.handle_exception(e)
>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1540,
> in handle_exception
>     reraise(exc_type, exc_value, tb)
>   File "/usr/local/lib/python3.6/site-packages/flask/_compat.py", line
> 33, in reraise
>     raise value
>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1982,
> in wsgi_app
>     response = self.full_dispatch_request()
>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1615,
> in full_dispatch_request
>     return self.finalize_request(rv)
>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1632,
> in finalize_request
>     response = self.process_response(response)
>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1856,
> in process_response
>     response = handler(response)
>   File "/usr/local/lib/python3.6/site-packages/flask_htmlmin.py", line
> 35, in response_minify
>     self.html_minify.minify(response.get_data(as_text=True))
>   File "/usr/local/lib/python3.6/site-packages/htmlmin/main.py", line
> 152, in minify
>     self.input(*input)
>   File "/usr/local/lib/python3.6/site-packages/htmlmin/main.py", line
> 164, in input
>     self._parser.feed(i)
>   File "/usr/local/lib/python3.6/html/parser.py", line 111, in feed
>     self.goahead(0)
>   File "/usr/local/lib/python3.6/html/parser.py", line 171, in goahead
>     k = self.parse_starttag(i)
>   File "/usr/local/lib/python3.6/html/parser.py", line 345, in
> parse_starttag
>     self.handle_starttag(tag, attrs)
>   File "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py", line
> 222, in handle_starttag
>     self._in_pre_tag -= self._close_tags_up_to(in_tag[0])
>   File "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py", line
> 189, in _close_tags_up_to
>     raise OpenTagNotFoundError()
> htmlmin.parser.OpenTagNotFoundError
>
>
>
> On 28/06/18 09:56, Dave Page wrote:
>
> The pgAdmin Development Team are pleased to announce pgAdmin 4 version
> 3.1. This release of pgAdmin 4 includes over 30 bug fixes and new features.
> For more details please see the release notes at:
>
>     https://www.pgadmin.org/docs/pgadmin4/dev/release_notes_3_1.html.
>
> pgAdmin is the leading Open Source graphical management tool for
> PostgreSQL. For more information, please see:
>
>     https://www.pgadmin.org/
>
> Notable changes in this release include:
>
> * Add support for SSH tunneled connections.
> * Various fixes for handling data in SQL_ASCII databases.
> * Add support for LISTEN/NOTIFY in the Query Tool.
> * Function/Procedure support for PostgreSQL 11.
> * Various fixes and enhancements to the Greenplum support.
>
> Builds for Windows and macOS are available now, along with a Python Wheel,
> Docker Container and source code tarball from:
>
>     https://www.pgadmin.org/download/
>
> RPM and DEB packages are expected to be available on the postgresql.org
> repositories within the next few days.
>
> --
> Dave Page
> pgAdmin Project Lead
>
>
>


^ permalink  raw  reply  [nested|flat] 14+ messages in thread

* Re: pgAdmin 4 v3.1 Released
  2018-06-28 09:56 pgAdmin 4 v3.1 Released Dave Page <[email protected]>
  2018-06-28 10:43 ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 10:52   ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
@ 2018-06-28 11:05     ` Isaias Sanchez <[email protected]>
  2018-06-28 11:15       ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  0 siblings, 1 reply; 14+ messages in thread

From: Isaias Sanchez @ 2018-06-28 11:05 UTC (permalink / raw)
  To: ; +Cc: [email protected]

This help a bit, I can log in, but the web is like only text, probably 
is necessary to update another:

# pip3 freeze
alembic==0.9.2
asn1crypto==0.24.0
Babel==2.3.4
bcrypt==3.1.4
beautifulsoup4==4.4.1
blinker==1.4
cffi==1.11.5
click==6.6
cryptography==2.2.2
extras==1.0.0
fixtures==3.0.0
Flask==0.12.2
Flask-Babel==0.11.1
Flask-BabelEx==0.9.3
Flask-Gravatar==0.5.0
Flask-HTMLmin==1.3.2
Flask-Login==0.3.2
Flask-Mail==0.9.1
Flask-Migrate==2.1.1
Flask-Paranoid==0.2.0
Flask-Principal==0.4.0
Flask-Script==2.0.5
Flask-Security==3.0.0
Flask-SQLAlchemy==2.3.2
Flask-WTF==0.14.2
html5lib==1.0.1
htmlmin==0.1.12
idna==2.7
itsdangerous==0.24
Jinja2==2.7.3
linecache2==1.0.0
Mako==1.0.6
MarkupSafe==0.23
paramiko==2.4.1
passlib==1.7.1
pbr==3.1.1
pgadmin4==3.1
psycopg2==2.7.5
psycopg2-binary==2.7.5
pyasn1==0.4.3
pycparser==2.18
pycrypto==2.6.1
PyNaCl==1.2.1
pyrsistent==0.14.2
python-dateutil==2.7.2
python-editor==1.0.3
python-mimeparse==1.6.0
pytz==2018.3
simplejson==3.13.2
six==1.11.0
speaklater==1.3
SQLAlchemy==1.2.6
sqlparse==0.2.4
sshtunnel==0.1.4
testtools==2.3.0
traceback2==1.4.0
unittest2==1.1.0
webencodings==0.5.1
Werkzeug==0.9.6
WTForms==2.1


On 28/06/18 10:52, Murtuza Zabuawala wrote:
> Looks like you have an older version of htmlmin module (< 0.1.12).
>
> Please install/update htmlmin to version 0.1.12, let us know if that 
> solves the issue.
>
> -- 
> Regards,
> Murtuza Zabuawala
> EnterpriseDB: http://www.enterprisedb.com <http://www.enterprisedb.com/;
> The Enterprise PostgreSQL Company
>
>
> On Thu, Jun 28, 2018 at 4:13 PM, Isaias Sanchez 
> <[email protected] <mailto:[email protected]>> wrote:
>
>     I just installed the Python Wheel 3.1 version on a centos 6 server
>     and the app doesn't start, the error is this:
>
>     2018-06-28 10:37:23,668: ERROR  werkzeug:       Error on request:
>     Traceback (most recent call last):
>       File
>     "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py", line
>     177, in run_wsgi
>         execute(self.server.app)
>       File
>     "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py", line
>     165, in execute
>         application_iter = app(environ, start_response)
>       File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>     1997, in __call__
>         return self.wsgi_app(environ, start_response)
>       File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>     1985, in wsgi_app
>         response = self.handle_exception(e)
>       File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>     1540, in handle_exception
>         reraise(exc_type, exc_value, tb)
>       File "/usr/local/lib/python3.6/site-packages/flask/_compat.py",
>     line 33, in reraise
>         raise value
>       File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>     1982, in wsgi_app
>         response = self.full_dispatch_request()
>       File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>     1615, in full_dispatch_request
>         return self.finalize_request(rv)
>       File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>     1632, in finalize_request
>         response = self.process_response(response)
>       File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>     1856, in process_response
>         response = handler(response)
>       File "/usr/local/lib/python3.6/site-packages/flask_htmlmin.py",
>     line 35, in response_minify
>         self.html_minify.minify(response.get_data(as_text=True))
>       File "/usr/local/lib/python3.6/site-packages/htmlmin/main.py",
>     line 152, in minify
>         self.input(*input)
>       File "/usr/local/lib/python3.6/site-packages/htmlmin/main.py",
>     line 164, in input
>         self._parser.feed(i)
>       File "/usr/local/lib/python3.6/html/parser.py", line 111, in feed
>         self.goahead(0)
>       File "/usr/local/lib/python3.6/html/parser.py", line 171, in goahead
>         k = self.parse_starttag(i)
>       File "/usr/local/lib/python3.6/html/parser.py", line 345, in
>     parse_starttag
>         self.handle_starttag(tag, attrs)
>       File "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py",
>     line 222, in handle_starttag
>         self._in_pre_tag -= self._close_tags_up_to(in_tag[0])
>       File "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py",
>     line 189, in _close_tags_up_to
>         raise OpenTagNotFoundError()
>     htmlmin.parser.OpenTagNotFoundError
>
>
>
>
>     On 28/06/18 09:56, Dave Page wrote:
>>     The pgAdmin Development Team are pleased to announce pgAdmin 4
>>     version 3.1. This release of pgAdmin 4 includes over 30 bug fixes
>>     and new features. For more details please see the release notes at:
>>
>>     https://www.pgadmin.org/docs/pgadmin4/dev/release_notes_3_1.html
>>     <https://www.pgadmin.org/docs/pgadmin4/dev/release_notes_3_1.html;.
>>
>>     pgAdmin is the leading Open Source graphical management tool for
>>     PostgreSQL. For more information, please see:
>>
>>     https://www.pgadmin.org/
>>
>>     Notable changes in this release include:
>>
>>     * Add support for SSH tunneled connections.
>>     * Various fixes for handling data in SQL_ASCII databases.
>>     * Add support for LISTEN/NOTIFY in the Query Tool.
>>     * Function/Procedure support for PostgreSQL 11.
>>     * Various fixes and enhancements to the Greenplum support.
>>
>>     Builds for Windows and macOS are available now, along with a
>>     Python Wheel, Docker Container and source code tarball from:
>>
>>     https://www.pgadmin.org/download/ <https://www.pgadmin.org/download/;
>>
>>     RPM and DEB packages are expected to be available on the
>>     postgresql.org <http://postgresql.org; repositories within the
>>     next few days.
>>
>>     -- 
>>     Dave Page
>>     pgAdmin Project Lead
>>
>
>



^ permalink  raw  reply  [nested|flat] 14+ messages in thread

* Re: pgAdmin 4 v3.1 Released
  2018-06-28 09:56 pgAdmin 4 v3.1 Released Dave Page <[email protected]>
  2018-06-28 10:43 ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 10:52   ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 11:05     ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
@ 2018-06-28 11:15       ` Murtuza Zabuawala <[email protected]>
  2018-06-28 11:20         ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  0 siblings, 1 reply; 14+ messages in thread

From: Murtuza Zabuawala @ 2018-06-28 11:15 UTC (permalink / raw)
  To: Isaias Sanchez <[email protected]>; +Cc: [email protected]

Sorry, ​I didn't get you, what do mean when you say 'web is like only
text'? ​


On Thu, Jun 28, 2018 at 4:35 PM, Isaias Sanchez <[email protected]>
wrote:

> This help a bit, I can log in, but the web is like only text, probably is
> necessary to update another:
>
> # pip3 freeze
> alembic==0.9.2
> asn1crypto==0.24.0
> Babel==2.3.4
> bcrypt==3.1.4
> beautifulsoup4==4.4.1
> blinker==1.4
> cffi==1.11.5
> click==6.6
> cryptography==2.2.2
> extras==1.0.0
> fixtures==3.0.0
> Flask==0.12.2
> Flask-Babel==0.11.1
> Flask-BabelEx==0.9.3
> Flask-Gravatar==0.5.0
> Flask-HTMLmin==1.3.2
> Flask-Login==0.3.2
> Flask-Mail==0.9.1
> Flask-Migrate==2.1.1
> Flask-Paranoid==0.2.0
> Flask-Principal==0.4.0
> Flask-Script==2.0.5
> Flask-Security==3.0.0
> Flask-SQLAlchemy==2.3.2
> Flask-WTF==0.14.2
> html5lib==1.0.1
> htmlmin==0.1.12
> idna==2.7
> itsdangerous==0.24
> Jinja2==2.7.3
> linecache2==1.0.0
> Mako==1.0.6
> MarkupSafe==0.23
> paramiko==2.4.1
> passlib==1.7.1
> pbr==3.1.1
> pgadmin4==3.1
> psycopg2==2.7.5
> psycopg2-binary==2.7.5
> pyasn1==0.4.3
> pycparser==2.18
> pycrypto==2.6.1
> PyNaCl==1.2.1
> pyrsistent==0.14.2
> python-dateutil==2.7.2
> python-editor==1.0.3
> python-mimeparse==1.6.0
> pytz==2018.3
> simplejson==3.13.2
> six==1.11.0
> speaklater==1.3
> SQLAlchemy==1.2.6
> sqlparse==0.2.4
> sshtunnel==0.1.4
> testtools==2.3.0
> traceback2==1.4.0
> unittest2==1.1.0
> webencodings==0.5.1
> Werkzeug==0.9.6
> WTForms==2.1
>
>
> On 28/06/18 10:52, Murtuza Zabuawala wrote:
>
> Looks like you have an older version of htmlmin module (< 0.1.12).
>
> Please install/update htmlmin to version 0.1.12, let us know if that
> solves the issue.
>
> --
> Regards,
> Murtuza Zabuawala
> EnterpriseDB: http://www.enterprisedb.com
> The Enterprise PostgreSQL Company
>
>
> On Thu, Jun 28, 2018 at 4:13 PM, Isaias Sanchez <
> [email protected]> wrote:
>
>> I just installed the Python Wheel 3.1 version on a centos 6 server and
>> the app doesn't start, the error is this:
>>
>> 2018-06-28 10:37:23,668: ERROR  werkzeug:       Error on request:
>> Traceback (most recent call last):
>>   File "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py",
>> line 177, in run_wsgi
>>     execute(self.server.app)
>>   File "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py",
>> line 165, in execute
>>     application_iter = app(environ, start_response)
>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1997,
>> in __call__
>>     return self.wsgi_app(environ, start_response)
>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1985,
>> in wsgi_app
>>     response = self.handle_exception(e)
>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1540,
>> in handle_exception
>>     reraise(exc_type, exc_value, tb)
>>   File "/usr/local/lib/python3.6/site-packages/flask/_compat.py", line
>> 33, in reraise
>>     raise value
>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1982,
>> in wsgi_app
>>     response = self.full_dispatch_request()
>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1615,
>> in full_dispatch_request
>>     return self.finalize_request(rv)
>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1632,
>> in finalize_request
>>     response = self.process_response(response)
>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line 1856,
>> in process_response
>>     response = handler(response)
>>   File "/usr/local/lib/python3.6/site-packages/flask_htmlmin.py", line
>> 35, in response_minify
>>     self.html_minify.minify(response.get_data(as_text=True))
>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/main.py", line
>> 152, in minify
>>     self.input(*input)
>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/main.py", line
>> 164, in input
>>     self._parser.feed(i)
>>   File "/usr/local/lib/python3.6/html/parser.py", line 111, in feed
>>     self.goahead(0)
>>   File "/usr/local/lib/python3.6/html/parser.py", line 171, in goahead
>>     k = self.parse_starttag(i)
>>   File "/usr/local/lib/python3.6/html/parser.py", line 345, in
>> parse_starttag
>>     self.handle_starttag(tag, attrs)
>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py", line
>> 222, in handle_starttag
>>     self._in_pre_tag -= self._close_tags_up_to(in_tag[0])
>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py", line
>> 189, in _close_tags_up_to
>>     raise OpenTagNotFoundError()
>> htmlmin.parser.OpenTagNotFoundError
>>
>>
>>
>> On 28/06/18 09:56, Dave Page wrote:
>>
>> The pgAdmin Development Team are pleased to announce pgAdmin 4 version
>> 3.1. This release of pgAdmin 4 includes over 30 bug fixes and new features.
>> For more details please see the release notes at:
>>
>>     https://www.pgadmin.org/docs/pgadmin4/dev/release_notes_3_1.html.
>>
>> pgAdmin is the leading Open Source graphical management tool for
>> PostgreSQL. For more information, please see:
>>
>>     https://www.pgadmin.org/
>>
>> Notable changes in this release include:
>>
>> * Add support for SSH tunneled connections.
>> * Various fixes for handling data in SQL_ASCII databases.
>> * Add support for LISTEN/NOTIFY in the Query Tool.
>> * Function/Procedure support for PostgreSQL 11.
>> * Various fixes and enhancements to the Greenplum support.
>>
>> Builds for Windows and macOS are available now, along with a Python
>> Wheel, Docker Container and source code tarball from:
>>
>>     https://www.pgadmin.org/download/
>>
>> RPM and DEB packages are expected to be available on the postgresql.org
>> repositories within the next few days.
>>
>> --
>> Dave Page
>> pgAdmin Project Lead
>>
>>
>>
>
>


^ permalink  raw  reply  [nested|flat] 14+ messages in thread

* Re: pgAdmin 4 v3.1 Released
  2018-06-28 09:56 pgAdmin 4 v3.1 Released Dave Page <[email protected]>
  2018-06-28 10:43 ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 10:52   ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 11:05     ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 11:15       ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
@ 2018-06-28 11:20         ` Isaias Sanchez <[email protected]>
  2018-06-28 11:33           ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  0 siblings, 1 reply; 14+ messages in thread

From: Isaias Sanchez @ 2018-06-28 11:20 UTC (permalink / raw)
  To: ; +Cc: [email protected]

look at the screenshots:

scren1
screen2

On 28/06/18 11:15, Murtuza Zabuawala wrote:
> Sorry, ​I didn't get you, what do mean when you say 'web is like only 
> text'? ​
>
>
> On Thu, Jun 28, 2018 at 4:35 PM, Isaias Sanchez 
> <[email protected] <mailto:[email protected]>> wrote:
>
>     This help a bit, I can log in, but the web is like only text,
>     probably is necessary to update another:
>
>     # pip3 freeze
>     alembic==0.9.2
>     asn1crypto==0.24.0
>     Babel==2.3.4
>     bcrypt==3.1.4
>     beautifulsoup4==4.4.1
>     blinker==1.4
>     cffi==1.11.5
>     click==6.6
>     cryptography==2.2.2
>     extras==1.0.0
>     fixtures==3.0.0
>     Flask==0.12.2
>     Flask-Babel==0.11.1
>     Flask-BabelEx==0.9.3
>     Flask-Gravatar==0.5.0
>     Flask-HTMLmin==1.3.2
>     Flask-Login==0.3.2
>     Flask-Mail==0.9.1
>     Flask-Migrate==2.1.1
>     Flask-Paranoid==0.2.0
>     Flask-Principal==0.4.0
>     Flask-Script==2.0.5
>     Flask-Security==3.0.0
>     Flask-SQLAlchemy==2.3.2
>     Flask-WTF==0.14.2
>     html5lib==1.0.1
>     htmlmin==0.1.12
>     idna==2.7
>     itsdangerous==0.24
>     Jinja2==2.7.3
>     linecache2==1.0.0
>     Mako==1.0.6
>     MarkupSafe==0.23
>     paramiko==2.4.1
>     passlib==1.7.1
>     pbr==3.1.1
>     pgadmin4==3.1
>     psycopg2==2.7.5
>     psycopg2-binary==2.7.5
>     pyasn1==0.4.3
>     pycparser==2.18
>     pycrypto==2.6.1
>     PyNaCl==1.2.1
>     pyrsistent==0.14.2
>     python-dateutil==2.7.2
>     python-editor==1.0.3
>     python-mimeparse==1.6.0
>     pytz==2018.3
>     simplejson==3.13.2
>     six==1.11.0
>     speaklater==1.3
>     SQLAlchemy==1.2.6
>     sqlparse==0.2.4
>     sshtunnel==0.1.4
>     testtools==2.3.0
>     traceback2==1.4.0
>     unittest2==1.1.0
>     webencodings==0.5.1
>     Werkzeug==0.9.6
>     WTForms==2.1
>
>
>     On 28/06/18 10:52, Murtuza Zabuawala wrote:
>>     Looks like you have an older version of htmlmin module (< 0.1.12).
>>
>>     Please install/update htmlmin to version 0.1.12, let us know if
>>     that solves the issue.
>>
>>     -- 
>>     Regards,
>>     Murtuza Zabuawala
>>     EnterpriseDB: http://www.enterprisedb.com
>>     <http://www.enterprisedb.com/;
>>     The Enterprise PostgreSQL Company
>>
>>
>>     On Thu, Jun 28, 2018 at 4:13 PM, Isaias Sanchez
>>     <[email protected] <mailto:[email protected]>>
>>     wrote:
>>
>>         I just installed the Python Wheel 3.1 version on a centos 6
>>         server and the app doesn't start, the error is this:
>>
>>         2018-06-28 10:37:23,668: ERROR werkzeug:       Error on request:
>>         Traceback (most recent call last):
>>           File
>>         "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py",
>>         line 177, in run_wsgi
>>             execute(self.server.app)
>>           File
>>         "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py",
>>         line 165, in execute
>>             application_iter = app(environ, start_response)
>>           File "/usr/local/lib/python3.6/site-packages/flask/app.py",
>>         line 1997, in __call__
>>             return self.wsgi_app(environ, start_response)
>>           File "/usr/local/lib/python3.6/site-packages/flask/app.py",
>>         line 1985, in wsgi_app
>>             response = self.handle_exception(e)
>>           File "/usr/local/lib/python3.6/site-packages/flask/app.py",
>>         line 1540, in handle_exception
>>             reraise(exc_type, exc_value, tb)
>>           File
>>         "/usr/local/lib/python3.6/site-packages/flask/_compat.py",
>>         line 33, in reraise
>>             raise value
>>           File "/usr/local/lib/python3.6/site-packages/flask/app.py",
>>         line 1982, in wsgi_app
>>             response = self.full_dispatch_request()
>>           File "/usr/local/lib/python3.6/site-packages/flask/app.py",
>>         line 1615, in full_dispatch_request
>>             return self.finalize_request(rv)
>>           File "/usr/local/lib/python3.6/site-packages/flask/app.py",
>>         line 1632, in finalize_request
>>             response = self.process_response(response)
>>           File "/usr/local/lib/python3.6/site-packages/flask/app.py",
>>         line 1856, in process_response
>>             response = handler(response)
>>           File
>>         "/usr/local/lib/python3.6/site-packages/flask_htmlmin.py",
>>         line 35, in response_minify
>>             self.html_minify.minify(response.get_data(as_text=True))
>>           File
>>         "/usr/local/lib/python3.6/site-packages/htmlmin/main.py",
>>         line 152, in minify
>>             self.input(*input)
>>           File
>>         "/usr/local/lib/python3.6/site-packages/htmlmin/main.py",
>>         line 164, in input
>>             self._parser.feed(i)
>>           File "/usr/local/lib/python3.6/html/parser.py", line 111,
>>         in feed
>>             self.goahead(0)
>>           File "/usr/local/lib/python3.6/html/parser.py", line 171,
>>         in goahead
>>             k = self.parse_starttag(i)
>>           File "/usr/local/lib/python3.6/html/parser.py", line 345,
>>         in parse_starttag
>>             self.handle_starttag(tag, attrs)
>>           File
>>         "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py",
>>         line 222, in handle_starttag
>>             self._in_pre_tag -= self._close_tags_up_to(in_tag[0])
>>           File
>>         "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py",
>>         line 189, in _close_tags_up_to
>>             raise OpenTagNotFoundError()
>>         htmlmin.parser.OpenTagNotFoundError
>>
>>
>>
>>
>>         On 28/06/18 09:56, Dave Page wrote:
>>>         The pgAdmin Development Team are pleased to announce pgAdmin
>>>         4 version 3.1. This release of pgAdmin 4 includes over 30
>>>         bug fixes and new features. For more details please see the
>>>         release notes at:
>>>
>>>         https://www.pgadmin.org/docs/pgadmin4/dev/release_notes_3_1.html
>>>         <https://www.pgadmin.org/docs/pgadmin4/dev/release_notes_3_1.html;.
>>>
>>>         pgAdmin is the leading Open Source graphical management tool
>>>         for PostgreSQL. For more information, please see:
>>>
>>>         https://www.pgadmin.org/
>>>
>>>         Notable changes in this release include:
>>>
>>>         * Add support for SSH tunneled connections.
>>>         * Various fixes for handling data in SQL_ASCII databases.
>>>         * Add support for LISTEN/NOTIFY in the Query Tool.
>>>         * Function/Procedure support for PostgreSQL 11.
>>>         * Various fixes and enhancements to the Greenplum support.
>>>
>>>         Builds for Windows and macOS are available now, along with a
>>>         Python Wheel, Docker Container and source code tarball from:
>>>
>>>         https://www.pgadmin.org/download/
>>>         <https://www.pgadmin.org/download/;
>>>
>>>         RPM and DEB packages are expected to be available on the
>>>         postgresql.org <http://postgresql.org; repositories within
>>>         the next few days.
>>>
>>>         -- 
>>>         Dave Page
>>>         pgAdmin Project Lead
>>>
>>
>>
>
>



Attachments:

  [image/png] pgadmin4_screenshot.png (13.9K, 3-pgadmin4_screenshot.png)
  download | view image

  [image/png] pgadmin4_screenshot2.png (16.6K, 4-pgadmin4_screenshot2.png)
  download | view image

^ permalink  raw  reply  [nested|flat] 14+ messages in thread

* Re: pgAdmin 4 v3.1 Released
  2018-06-28 09:56 pgAdmin 4 v3.1 Released Dave Page <[email protected]>
  2018-06-28 10:43 ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 10:52   ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 11:05     ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 11:15       ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 11:20         ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
@ 2018-06-28 11:33           ` Murtuza Zabuawala <[email protected]>
  2018-06-28 11:47             ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  0 siblings, 1 reply; 14+ messages in thread

From: Murtuza Zabuawala @ 2018-06-28 11:33 UTC (permalink / raw)
  To: Isaias Sanchez <[email protected]>; +Cc: [email protected]

What is your browser and its version?
Do you see any errors on browser console
<https://developers.google.com/web/tools/chrome-devtools/console/;?

On Thu, Jun 28, 2018 at 4:50 PM, Isaias Sanchez <[email protected]>
wrote:

> look at the screenshots:
> [image: scren1]
> [image: screen2]
>
> On 28/06/18 11:15, Murtuza Zabuawala wrote:
>
> Sorry, ​I didn't get you, what do mean when you say 'web is like only
> text'? ​
>
>
> On Thu, Jun 28, 2018 at 4:35 PM, Isaias Sanchez <
> [email protected]> wrote:
>
>> This help a bit, I can log in, but the web is like only text, probably is
>> necessary to update another:
>>
>> # pip3 freeze
>> alembic==0.9.2
>> asn1crypto==0.24.0
>> Babel==2.3.4
>> bcrypt==3.1.4
>> beautifulsoup4==4.4.1
>> blinker==1.4
>> cffi==1.11.5
>> click==6.6
>> cryptography==2.2.2
>> extras==1.0.0
>> fixtures==3.0.0
>> Flask==0.12.2
>> Flask-Babel==0.11.1
>> Flask-BabelEx==0.9.3
>> Flask-Gravatar==0.5.0
>> Flask-HTMLmin==1.3.2
>> Flask-Login==0.3.2
>> Flask-Mail==0.9.1
>> Flask-Migrate==2.1.1
>> Flask-Paranoid==0.2.0
>> Flask-Principal==0.4.0
>> Flask-Script==2.0.5
>> Flask-Security==3.0.0
>> Flask-SQLAlchemy==2.3.2
>> Flask-WTF==0.14.2
>> html5lib==1.0.1
>> htmlmin==0.1.12
>> idna==2.7
>> itsdangerous==0.24
>> Jinja2==2.7.3
>> linecache2==1.0.0
>> Mako==1.0.6
>> MarkupSafe==0.23
>> paramiko==2.4.1
>> passlib==1.7.1
>> pbr==3.1.1
>> pgadmin4==3.1
>> psycopg2==2.7.5
>> psycopg2-binary==2.7.5
>> pyasn1==0.4.3
>> pycparser==2.18
>> pycrypto==2.6.1
>> PyNaCl==1.2.1
>> pyrsistent==0.14.2
>> python-dateutil==2.7.2
>> python-editor==1.0.3
>> python-mimeparse==1.6.0
>> pytz==2018.3
>> simplejson==3.13.2
>> six==1.11.0
>> speaklater==1.3
>> SQLAlchemy==1.2.6
>> sqlparse==0.2.4
>> sshtunnel==0.1.4
>> testtools==2.3.0
>> traceback2==1.4.0
>> unittest2==1.1.0
>> webencodings==0.5.1
>> Werkzeug==0.9.6
>> WTForms==2.1
>>
>>
>> On 28/06/18 10:52, Murtuza Zabuawala wrote:
>>
>> Looks like you have an older version of htmlmin module (< 0.1.12).
>>
>> Please install/update htmlmin to version 0.1.12, let us know if that
>> solves the issue.
>>
>> --
>> Regards,
>> Murtuza Zabuawala
>> EnterpriseDB: http://www.enterprisedb.com
>> The Enterprise PostgreSQL Company
>>
>>
>> On Thu, Jun 28, 2018 at 4:13 PM, Isaias Sanchez <
>> [email protected]> wrote:
>>
>>> I just installed the Python Wheel 3.1 version on a centos 6 server and
>>> the app doesn't start, the error is this:
>>>
>>> 2018-06-28 10:37:23,668: ERROR  werkzeug:       Error on request:
>>> Traceback (most recent call last):
>>>   File "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py",
>>> line 177, in run_wsgi
>>>     execute(self.server.app)
>>>   File "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py",
>>> line 165, in execute
>>>     application_iter = app(environ, start_response)
>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>> 1997, in __call__
>>>     return self.wsgi_app(environ, start_response)
>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>> 1985, in wsgi_app
>>>     response = self.handle_exception(e)
>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>> 1540, in handle_exception
>>>     reraise(exc_type, exc_value, tb)
>>>   File "/usr/local/lib/python3.6/site-packages/flask/_compat.py", line
>>> 33, in reraise
>>>     raise value
>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>> 1982, in wsgi_app
>>>     response = self.full_dispatch_request()
>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>> 1615, in full_dispatch_request
>>>     return self.finalize_request(rv)
>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>> 1632, in finalize_request
>>>     response = self.process_response(response)
>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>> 1856, in process_response
>>>     response = handler(response)
>>>   File "/usr/local/lib/python3.6/site-packages/flask_htmlmin.py", line
>>> 35, in response_minify
>>>     self.html_minify.minify(response.get_data(as_text=True))
>>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/main.py", line
>>> 152, in minify
>>>     self.input(*input)
>>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/main.py", line
>>> 164, in input
>>>     self._parser.feed(i)
>>>   File "/usr/local/lib/python3.6/html/parser.py", line 111, in feed
>>>     self.goahead(0)
>>>   File "/usr/local/lib/python3.6/html/parser.py", line 171, in goahead
>>>     k = self.parse_starttag(i)
>>>   File "/usr/local/lib/python3.6/html/parser.py", line 345, in
>>> parse_starttag
>>>     self.handle_starttag(tag, attrs)
>>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py", line
>>> 222, in handle_starttag
>>>     self._in_pre_tag -= self._close_tags_up_to(in_tag[0])
>>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py", line
>>> 189, in _close_tags_up_to
>>>     raise OpenTagNotFoundError()
>>> htmlmin.parser.OpenTagNotFoundError
>>>
>>>
>>>
>>> On 28/06/18 09:56, Dave Page wrote:
>>>
>>> The pgAdmin Development Team are pleased to announce pgAdmin 4 version
>>> 3.1. This release of pgAdmin 4 includes over 30 bug fixes and new features.
>>> For more details please see the release notes at:
>>>
>>>     https://www.pgadmin.org/docs/pgadmin4/dev/release_notes_3_1.html.
>>>
>>> pgAdmin is the leading Open Source graphical management tool for
>>> PostgreSQL. For more information, please see:
>>>
>>>     https://www.pgadmin.org/
>>>
>>> Notable changes in this release include:
>>>
>>> * Add support for SSH tunneled connections.
>>> * Various fixes for handling data in SQL_ASCII databases.
>>> * Add support for LISTEN/NOTIFY in the Query Tool.
>>> * Function/Procedure support for PostgreSQL 11.
>>> * Various fixes and enhancements to the Greenplum support.
>>>
>>> Builds for Windows and macOS are available now, along with a Python
>>> Wheel, Docker Container and source code tarball from:
>>>
>>>     https://www.pgadmin.org/download/
>>>
>>> RPM and DEB packages are expected to be available on the postgresql.org
>>> repositories within the next few days.
>>>
>>> --
>>> Dave Page
>>> pgAdmin Project Lead
>>>
>>>
>>>
>>
>>
>
>


Attachments:

  [image/png] pgadmin4_screenshot2.png (16.6K, 3-pgadmin4_screenshot2.png)
  download | view image

  [image/png] pgadmin4_screenshot.png (13.9K, 4-pgadmin4_screenshot.png)
  download | view image

^ permalink  raw  reply  [nested|flat] 14+ messages in thread

* Re: pgAdmin 4 v3.1 Released
  2018-06-28 09:56 pgAdmin 4 v3.1 Released Dave Page <[email protected]>
  2018-06-28 10:43 ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 10:52   ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 11:05     ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 11:15       ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 11:20         ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 11:33           ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
@ 2018-06-28 11:47             ` Isaias Sanchez <[email protected]>
  2018-06-28 12:04               ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  0 siblings, 1 reply; 14+ messages in thread

From: Isaias Sanchez @ 2018-06-28 11:47 UTC (permalink / raw)
  To: ; +Cc: [email protected]

Browsers:

Firefox 60.0.2

Chromium: 66.0.3359.181

The error in Firefox console is:

The stylesheet http://localhost:5050/login?next=%2Fbrowser%2Fbrowser.css 
was not loaded because its MIME type, “text/html”, is not “text/css”.

In Chormium:

style.css, pgadmin_commons.js and vendor.js NOT FOUND, the MIME in 
browser.css is just a Warning.

Regards,

Isaias S.

On 28/06/18 11:33, Murtuza Zabuawala wrote:
> What is your browser and its version?
> Do you see any errors on browser console 
> <https://developers.google.com/web/tools/chrome-devtools/console/;?
>
> On Thu, Jun 28, 2018 at 4:50 PM, Isaias Sanchez 
> <[email protected] <mailto:[email protected]>> wrote:
>
>     look at the screenshots:
>
>
>
>     On 28/06/18 11:15, Murtuza Zabuawala wrote:
>>     Sorry, ​I didn't get you, what do mean when you say 'web is like
>>     only text'? ​
>>
>>
>>     On Thu, Jun 28, 2018 at 4:35 PM, Isaias Sanchez
>>     <[email protected] <mailto:[email protected]>>
>>     wrote:
>>
>>         This help a bit, I can log in, but the web is like only text,
>>         probably is necessary to update another:
>>
>>         # pip3 freeze
>>         alembic==0.9.2
>>         asn1crypto==0.24.0
>>         Babel==2.3.4
>>         bcrypt==3.1.4
>>         beautifulsoup4==4.4.1
>>         blinker==1.4
>>         cffi==1.11.5
>>         click==6.6
>>         cryptography==2.2.2
>>         extras==1.0.0
>>         fixtures==3.0.0
>>         Flask==0.12.2
>>         Flask-Babel==0.11.1
>>         Flask-BabelEx==0.9.3
>>         Flask-Gravatar==0.5.0
>>         Flask-HTMLmin==1.3.2
>>         Flask-Login==0.3.2
>>         Flask-Mail==0.9.1
>>         Flask-Migrate==2.1.1
>>         Flask-Paranoid==0.2.0
>>         Flask-Principal==0.4.0
>>         Flask-Script==2.0.5
>>         Flask-Security==3.0.0
>>         Flask-SQLAlchemy==2.3.2
>>         Flask-WTF==0.14.2
>>         html5lib==1.0.1
>>         htmlmin==0.1.12
>>         idna==2.7
>>         itsdangerous==0.24
>>         Jinja2==2.7.3
>>         linecache2==1.0.0
>>         Mako==1.0.6
>>         MarkupSafe==0.23
>>         paramiko==2.4.1
>>         passlib==1.7.1
>>         pbr==3.1.1
>>         pgadmin4==3.1
>>         psycopg2==2.7.5
>>         psycopg2-binary==2.7.5
>>         pyasn1==0.4.3
>>         pycparser==2.18
>>         pycrypto==2.6.1
>>         PyNaCl==1.2.1
>>         pyrsistent==0.14.2
>>         python-dateutil==2.7.2
>>         python-editor==1.0.3
>>         python-mimeparse==1.6.0
>>         pytz==2018.3
>>         simplejson==3.13.2
>>         six==1.11.0
>>         speaklater==1.3
>>         SQLAlchemy==1.2.6
>>         sqlparse==0.2.4
>>         sshtunnel==0.1.4
>>         testtools==2.3.0
>>         traceback2==1.4.0
>>         unittest2==1.1.0
>>         webencodings==0.5.1
>>         Werkzeug==0.9.6
>>         WTForms==2.1
>>
>>
>>         On 28/06/18 10:52, Murtuza Zabuawala wrote:
>>>         Looks like you have an older version of htmlmin module (<
>>>         0.1.12).
>>>
>>>         Please install/update htmlmin to version 0.1.12, let us know
>>>         if that solves the issue.
>>>
>>>         -- 
>>>         Regards,
>>>         Murtuza Zabuawala
>>>         EnterpriseDB: http://www.enterprisedb.com
>>>         <http://www.enterprisedb.com/;
>>>         The Enterprise PostgreSQL Company
>>>
>>>
>>>         On Thu, Jun 28, 2018 at 4:13 PM, Isaias Sanchez
>>>         <[email protected]
>>>         <mailto:[email protected]>> wrote:
>>>
>>>             I just installed the Python Wheel 3.1 version on a
>>>             centos 6 server and the app doesn't start, the error is
>>>             this:
>>>
>>>             2018-06-28 10:37:23,668: ERROR werkzeug:       Error on
>>>             request:
>>>             Traceback (most recent call last):
>>>               File
>>>             "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py",
>>>             line 177, in run_wsgi
>>>                 execute(self.server.app)
>>>               File
>>>             "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py",
>>>             line 165, in execute
>>>                 application_iter = app(environ, start_response)
>>>               File
>>>             "/usr/local/lib/python3.6/site-packages/flask/app.py",
>>>             line 1997, in __call__
>>>                 return self.wsgi_app(environ, start_response)
>>>               File
>>>             "/usr/local/lib/python3.6/site-packages/flask/app.py",
>>>             line 1985, in wsgi_app
>>>                 response = self.handle_exception(e)
>>>               File
>>>             "/usr/local/lib/python3.6/site-packages/flask/app.py",
>>>             line 1540, in handle_exception
>>>                 reraise(exc_type, exc_value, tb)
>>>               File
>>>             "/usr/local/lib/python3.6/site-packages/flask/_compat.py",
>>>             line 33, in reraise
>>>                 raise value
>>>               File
>>>             "/usr/local/lib/python3.6/site-packages/flask/app.py",
>>>             line 1982, in wsgi_app
>>>                 response = self.full_dispatch_request()
>>>               File
>>>             "/usr/local/lib/python3.6/site-packages/flask/app.py",
>>>             line 1615, in full_dispatch_request
>>>                 return self.finalize_request(rv)
>>>               File
>>>             "/usr/local/lib/python3.6/site-packages/flask/app.py",
>>>             line 1632, in finalize_request
>>>                 response = self.process_response(response)
>>>               File
>>>             "/usr/local/lib/python3.6/site-packages/flask/app.py",
>>>             line 1856, in process_response
>>>                 response = handler(response)
>>>               File
>>>             "/usr/local/lib/python3.6/site-packages/flask_htmlmin.py",
>>>             line 35, in response_minify
>>>             self.html_minify.minify(response.get_data(as_text=True))
>>>               File
>>>             "/usr/local/lib/python3.6/site-packages/htmlmin/main.py",
>>>             line 152, in minify
>>>                 self.input(*input)
>>>               File
>>>             "/usr/local/lib/python3.6/site-packages/htmlmin/main.py",
>>>             line 164, in input
>>>                 self._parser.feed(i)
>>>               File "/usr/local/lib/python3.6/html/parser.py", line
>>>             111, in feed
>>>                 self.goahead(0)
>>>               File "/usr/local/lib/python3.6/html/parser.py", line
>>>             171, in goahead
>>>                 k = self.parse_starttag(i)
>>>               File "/usr/local/lib/python3.6/html/parser.py", line
>>>             345, in parse_starttag
>>>                 self.handle_starttag(tag, attrs)
>>>               File
>>>             "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py",
>>>             line 222, in handle_starttag
>>>                 self._in_pre_tag -= self._close_tags_up_to(in_tag[0])
>>>               File
>>>             "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py",
>>>             line 189, in _close_tags_up_to
>>>                 raise OpenTagNotFoundError()
>>>             htmlmin.parser.OpenTagNotFoundError
>>>
>>>
>>>
>>>
>>>             On 28/06/18 09:56, Dave Page wrote:
>>>>             The pgAdmin Development Team are pleased to announce
>>>>             pgAdmin 4 version 3.1. This release of pgAdmin 4
>>>>             includes over 30 bug fixes and new features. For more
>>>>             details please see the release notes at:
>>>>
>>>>             https://www.pgadmin.org/docs/pgadmin4/dev/release_notes_3_1.html
>>>>             <https://www.pgadmin.org/docs/pgadmin4/dev/release_notes_3_1.html;.
>>>>
>>>>             pgAdmin is the leading Open Source graphical management
>>>>             tool for PostgreSQL. For more information, please see:
>>>>
>>>>             https://www.pgadmin.org/
>>>>
>>>>             Notable changes in this release include:
>>>>
>>>>             * Add support for SSH tunneled connections.
>>>>             * Various fixes for handling data in SQL_ASCII databases.
>>>>             * Add support for LISTEN/NOTIFY in the Query Tool.
>>>>             * Function/Procedure support for PostgreSQL 11.
>>>>             * Various fixes and enhancements to the Greenplum support.
>>>>
>>>>             Builds for Windows and macOS are available now, along
>>>>             with a Python Wheel, Docker Container and source code
>>>>             tarball from:
>>>>
>>>>             https://www.pgadmin.org/download/
>>>>             <https://www.pgadmin.org/download/;
>>>>
>>>>             RPM and DEB packages are expected to be available on
>>>>             the postgresql.org <http://postgresql.org; repositories
>>>>             within the next few days.
>>>>
>>>>             -- 
>>>>             Dave Page
>>>>             pgAdmin Project Lead
>>>>
>>>
>>>
>>
>>
>
>



^ permalink  raw  reply  [nested|flat] 14+ messages in thread

* Re: pgAdmin 4 v3.1 Released
  2018-06-28 09:56 pgAdmin 4 v3.1 Released Dave Page <[email protected]>
  2018-06-28 10:43 ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 10:52   ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 11:05     ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 11:15       ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 11:20         ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 11:33           ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 11:47             ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
@ 2018-06-28 12:04               ` Murtuza Zabuawala <[email protected]>
  2018-06-28 12:08                 ` Re: pgAdmin 4 v3.1 Released Dave Page <[email protected]>
  0 siblings, 1 reply; 14+ messages in thread

From: Murtuza Zabuawala @ 2018-06-28 12:04 UTC (permalink / raw)
  To: Isaias Sanchez <[email protected]>; +Cc: [email protected]

Do you have any web server installed?
If yes then I suspect it is causing the issue because I can see in the code
that we are sending MIME headers properly as *{'Content-Type': 'text/css'}* for
browser.css


On Thu, Jun 28, 2018 at 5:17 PM, Isaias Sanchez <[email protected]>
wrote:

> Browsers:
>
> Firefox 60.0.2
>
> Chromium: 66.0.3359.181
>
> The error in Firefox console is:
>
> The stylesheet http://localhost:5050/login?next=%2Fbrowser%2Fbrowser.css
> was not loaded because its MIME type, “text/html”, is not “text/css”.
>
> In Chormium:
>
> style.css, pgadmin_commons.js and vendor.js NOT FOUND, the MIME in
> browser.css is just a Warning.
> Regards,
>
> Isaias S.
>
> On 28/06/18 11:33, Murtuza Zabuawala wrote:
>
> What is your browser and its version?
> Do you see any errors on browser console
> <https://developers.google.com/web/tools/chrome-devtools/console/;?
>
> On Thu, Jun 28, 2018 at 4:50 PM, Isaias Sanchez <
> [email protected]> wrote:
>
>> look at the screenshots:
>>
>>
>> On 28/06/18 11:15, Murtuza Zabuawala wrote:
>>
>> Sorry, ​I didn't get you, what do mean when you say 'web is like only
>> text'? ​
>>
>>
>> On Thu, Jun 28, 2018 at 4:35 PM, Isaias Sanchez <
>> [email protected]> wrote:
>>
>>> This help a bit, I can log in, but the web is like only text, probably
>>> is necessary to update another:
>>>
>>> # pip3 freeze
>>> alembic==0.9.2
>>> asn1crypto==0.24.0
>>> Babel==2.3.4
>>> bcrypt==3.1.4
>>> beautifulsoup4==4.4.1
>>> blinker==1.4
>>> cffi==1.11.5
>>> click==6.6
>>> cryptography==2.2.2
>>> extras==1.0.0
>>> fixtures==3.0.0
>>> Flask==0.12.2
>>> Flask-Babel==0.11.1
>>> Flask-BabelEx==0.9.3
>>> Flask-Gravatar==0.5.0
>>> Flask-HTMLmin==1.3.2
>>> Flask-Login==0.3.2
>>> Flask-Mail==0.9.1
>>> Flask-Migrate==2.1.1
>>> Flask-Paranoid==0.2.0
>>> Flask-Principal==0.4.0
>>> Flask-Script==2.0.5
>>> Flask-Security==3.0.0
>>> Flask-SQLAlchemy==2.3.2
>>> Flask-WTF==0.14.2
>>> html5lib==1.0.1
>>> htmlmin==0.1.12
>>> idna==2.7
>>> itsdangerous==0.24
>>> Jinja2==2.7.3
>>> linecache2==1.0.0
>>> Mako==1.0.6
>>> MarkupSafe==0.23
>>> paramiko==2.4.1
>>> passlib==1.7.1
>>> pbr==3.1.1
>>> pgadmin4==3.1
>>> psycopg2==2.7.5
>>> psycopg2-binary==2.7.5
>>> pyasn1==0.4.3
>>> pycparser==2.18
>>> pycrypto==2.6.1
>>> PyNaCl==1.2.1
>>> pyrsistent==0.14.2
>>> python-dateutil==2.7.2
>>> python-editor==1.0.3
>>> python-mimeparse==1.6.0
>>> pytz==2018.3
>>> simplejson==3.13.2
>>> six==1.11.0
>>> speaklater==1.3
>>> SQLAlchemy==1.2.6
>>> sqlparse==0.2.4
>>> sshtunnel==0.1.4
>>> testtools==2.3.0
>>> traceback2==1.4.0
>>> unittest2==1.1.0
>>> webencodings==0.5.1
>>> Werkzeug==0.9.6
>>> WTForms==2.1
>>>
>>>
>>> On 28/06/18 10:52, Murtuza Zabuawala wrote:
>>>
>>> Looks like you have an older version of htmlmin module (< 0.1.12).
>>>
>>> Please install/update htmlmin to version 0.1.12, let us know if that
>>> solves the issue.
>>>
>>> --
>>> Regards,
>>> Murtuza Zabuawala
>>> EnterpriseDB: http://www.enterprisedb.com
>>> The Enterprise PostgreSQL Company
>>>
>>>
>>> On Thu, Jun 28, 2018 at 4:13 PM, Isaias Sanchez <
>>> [email protected]> wrote:
>>>
>>>> I just installed the Python Wheel 3.1 version on a centos 6 server and
>>>> the app doesn't start, the error is this:
>>>>
>>>> 2018-06-28 10:37:23,668: ERROR  werkzeug:       Error on request:
>>>> Traceback (most recent call last):
>>>>   File "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py",
>>>> line 177, in run_wsgi
>>>>     execute(self.server.app)
>>>>   File "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py",
>>>> line 165, in execute
>>>>     application_iter = app(environ, start_response)
>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>> 1997, in __call__
>>>>     return self.wsgi_app(environ, start_response)
>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>> 1985, in wsgi_app
>>>>     response = self.handle_exception(e)
>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>> 1540, in handle_exception
>>>>     reraise(exc_type, exc_value, tb)
>>>>   File "/usr/local/lib/python3.6/site-packages/flask/_compat.py", line
>>>> 33, in reraise
>>>>     raise value
>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>> 1982, in wsgi_app
>>>>     response = self.full_dispatch_request()
>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>> 1615, in full_dispatch_request
>>>>     return self.finalize_request(rv)
>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>> 1632, in finalize_request
>>>>     response = self.process_response(response)
>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>> 1856, in process_response
>>>>     response = handler(response)
>>>>   File "/usr/local/lib/python3.6/site-packages/flask_htmlmin.py", line
>>>> 35, in response_minify
>>>>     self.html_minify.minify(response.get_data(as_text=True))
>>>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/main.py", line
>>>> 152, in minify
>>>>     self.input(*input)
>>>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/main.py", line
>>>> 164, in input
>>>>     self._parser.feed(i)
>>>>   File "/usr/local/lib/python3.6/html/parser.py", line 111, in feed
>>>>     self.goahead(0)
>>>>   File "/usr/local/lib/python3.6/html/parser.py", line 171, in goahead
>>>>     k = self.parse_starttag(i)
>>>>   File "/usr/local/lib/python3.6/html/parser.py", line 345, in
>>>> parse_starttag
>>>>     self.handle_starttag(tag, attrs)
>>>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py",
>>>> line 222, in handle_starttag
>>>>     self._in_pre_tag -= self._close_tags_up_to(in_tag[0])
>>>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py",
>>>> line 189, in _close_tags_up_to
>>>>     raise OpenTagNotFoundError()
>>>> htmlmin.parser.OpenTagNotFoundError
>>>>
>>>>
>>>>
>>>> On 28/06/18 09:56, Dave Page wrote:
>>>>
>>>> The pgAdmin Development Team are pleased to announce pgAdmin 4 version
>>>> 3.1. This release of pgAdmin 4 includes over 30 bug fixes and new features.
>>>> For more details please see the release notes at:
>>>>
>>>>     https://www.pgadmin.org/docs/pgadmin4/dev/release_notes_3_1.html.
>>>>
>>>> pgAdmin is the leading Open Source graphical management tool for
>>>> PostgreSQL. For more information, please see:
>>>>
>>>>     https://www.pgadmin.org/
>>>>
>>>> Notable changes in this release include:
>>>>
>>>> * Add support for SSH tunneled connections.
>>>> * Various fixes for handling data in SQL_ASCII databases.
>>>> * Add support for LISTEN/NOTIFY in the Query Tool.
>>>> * Function/Procedure support for PostgreSQL 11.
>>>> * Various fixes and enhancements to the Greenplum support.
>>>>
>>>> Builds for Windows and macOS are available now, along with a Python
>>>> Wheel, Docker Container and source code tarball from:
>>>>
>>>>     https://www.pgadmin.org/download/
>>>>
>>>> RPM and DEB packages are expected to be available on the postgresql.org
>>>> repositories within the next few days.
>>>>
>>>> --
>>>> Dave Page
>>>> pgAdmin Project Lead
>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>


^ permalink  raw  reply  [nested|flat] 14+ messages in thread

* Re: pgAdmin 4 v3.1 Released
  2018-06-28 09:56 pgAdmin 4 v3.1 Released Dave Page <[email protected]>
  2018-06-28 10:43 ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 10:52   ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 11:05     ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 11:15       ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 11:20         ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 11:33           ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 11:47             ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 12:04               ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
@ 2018-06-28 12:08                 ` Dave Page <[email protected]>
  2018-06-28 12:26                   ` Re: pgAdmin 4 v3.1 Released Dave Page <[email protected]>
  0 siblings, 1 reply; 14+ messages in thread

From: Dave Page @ 2018-06-28 12:08 UTC (permalink / raw)
  To: Murtuza Zabuawala <[email protected]>; +Cc: Isaias Sanchez <[email protected]>; pgadmin-support lists.postgresql.org <[email protected]>

I've found the issue. Working on the fix...

On Thu, Jun 28, 2018 at 1:04 PM, Murtuza Zabuawala <
[email protected]> wrote:

> Do you have any web server installed?
> If yes then I suspect it is causing the issue because I can see in the
> code that we are sending MIME headers properly as *{'Content-Type':
> 'text/css'}* for browser.css
>
>
> On Thu, Jun 28, 2018 at 5:17 PM, Isaias Sanchez <
> [email protected]> wrote:
>
>> Browsers:
>>
>> Firefox 60.0.2
>>
>> Chromium: 66.0.3359.181
>>
>> The error in Firefox console is:
>>
>> The stylesheet http://localhost:5050/login?next=%2Fbrowser%2Fbrowser.css
>> was not loaded because its MIME type, “text/html”, is not “text/css”.
>>
>> In Chormium:
>>
>> style.css, pgadmin_commons.js and vendor.js NOT FOUND, the MIME in
>> browser.css is just a Warning.
>> Regards,
>>
>> Isaias S.
>>
>> On 28/06/18 11:33, Murtuza Zabuawala wrote:
>>
>> What is your browser and its version?
>> Do you see any errors on browser console
>> <https://developers.google.com/web/tools/chrome-devtools/console/;?
>>
>> On Thu, Jun 28, 2018 at 4:50 PM, Isaias Sanchez <
>> [email protected]> wrote:
>>
>>> look at the screenshots:
>>>
>>>
>>> On 28/06/18 11:15, Murtuza Zabuawala wrote:
>>>
>>> Sorry, ​I didn't get you, what do mean when you say 'web is like only
>>> text'? ​
>>>
>>>
>>> On Thu, Jun 28, 2018 at 4:35 PM, Isaias Sanchez <
>>> [email protected]> wrote:
>>>
>>>> This help a bit, I can log in, but the web is like only text, probably
>>>> is necessary to update another:
>>>>
>>>> # pip3 freeze
>>>> alembic==0.9.2
>>>> asn1crypto==0.24.0
>>>> Babel==2.3.4
>>>> bcrypt==3.1.4
>>>> beautifulsoup4==4.4.1
>>>> blinker==1.4
>>>> cffi==1.11.5
>>>> click==6.6
>>>> cryptography==2.2.2
>>>> extras==1.0.0
>>>> fixtures==3.0.0
>>>> Flask==0.12.2
>>>> Flask-Babel==0.11.1
>>>> Flask-BabelEx==0.9.3
>>>> Flask-Gravatar==0.5.0
>>>> Flask-HTMLmin==1.3.2
>>>> Flask-Login==0.3.2
>>>> Flask-Mail==0.9.1
>>>> Flask-Migrate==2.1.1
>>>> Flask-Paranoid==0.2.0
>>>> Flask-Principal==0.4.0
>>>> Flask-Script==2.0.5
>>>> Flask-Security==3.0.0
>>>> Flask-SQLAlchemy==2.3.2
>>>> Flask-WTF==0.14.2
>>>> html5lib==1.0.1
>>>> htmlmin==0.1.12
>>>> idna==2.7
>>>> itsdangerous==0.24
>>>> Jinja2==2.7.3
>>>> linecache2==1.0.0
>>>> Mako==1.0.6
>>>> MarkupSafe==0.23
>>>> paramiko==2.4.1
>>>> passlib==1.7.1
>>>> pbr==3.1.1
>>>> pgadmin4==3.1
>>>> psycopg2==2.7.5
>>>> psycopg2-binary==2.7.5
>>>> pyasn1==0.4.3
>>>> pycparser==2.18
>>>> pycrypto==2.6.1
>>>> PyNaCl==1.2.1
>>>> pyrsistent==0.14.2
>>>> python-dateutil==2.7.2
>>>> python-editor==1.0.3
>>>> python-mimeparse==1.6.0
>>>> pytz==2018.3
>>>> simplejson==3.13.2
>>>> six==1.11.0
>>>> speaklater==1.3
>>>> SQLAlchemy==1.2.6
>>>> sqlparse==0.2.4
>>>> sshtunnel==0.1.4
>>>> testtools==2.3.0
>>>> traceback2==1.4.0
>>>> unittest2==1.1.0
>>>> webencodings==0.5.1
>>>> Werkzeug==0.9.6
>>>> WTForms==2.1
>>>>
>>>>
>>>> On 28/06/18 10:52, Murtuza Zabuawala wrote:
>>>>
>>>> Looks like you have an older version of htmlmin module (< 0.1.12).
>>>>
>>>> Please install/update htmlmin to version 0.1.12, let us know if that
>>>> solves the issue.
>>>>
>>>> --
>>>> Regards,
>>>> Murtuza Zabuawala
>>>> EnterpriseDB: http://www.enterprisedb.com
>>>> The Enterprise PostgreSQL Company
>>>>
>>>>
>>>> On Thu, Jun 28, 2018 at 4:13 PM, Isaias Sanchez <
>>>> [email protected]> wrote:
>>>>
>>>>> I just installed the Python Wheel 3.1 version on a centos 6 server and
>>>>> the app doesn't start, the error is this:
>>>>>
>>>>> 2018-06-28 10:37:23,668: ERROR  werkzeug:       Error on request:
>>>>> Traceback (most recent call last):
>>>>>   File "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py",
>>>>> line 177, in run_wsgi
>>>>>     execute(self.server.app)
>>>>>   File "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py",
>>>>> line 165, in execute
>>>>>     application_iter = app(environ, start_response)
>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>>> 1997, in __call__
>>>>>     return self.wsgi_app(environ, start_response)
>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>>> 1985, in wsgi_app
>>>>>     response = self.handle_exception(e)
>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>>> 1540, in handle_exception
>>>>>     reraise(exc_type, exc_value, tb)
>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/_compat.py",
>>>>> line 33, in reraise
>>>>>     raise value
>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>>> 1982, in wsgi_app
>>>>>     response = self.full_dispatch_request()
>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>>> 1615, in full_dispatch_request
>>>>>     return self.finalize_request(rv)
>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>>> 1632, in finalize_request
>>>>>     response = self.process_response(response)
>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>>> 1856, in process_response
>>>>>     response = handler(response)
>>>>>   File "/usr/local/lib/python3.6/site-packages/flask_htmlmin.py",
>>>>> line 35, in response_minify
>>>>>     self.html_minify.minify(response.get_data(as_text=True))
>>>>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/main.py", line
>>>>> 152, in minify
>>>>>     self.input(*input)
>>>>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/main.py", line
>>>>> 164, in input
>>>>>     self._parser.feed(i)
>>>>>   File "/usr/local/lib/python3.6/html/parser.py", line 111, in feed
>>>>>     self.goahead(0)
>>>>>   File "/usr/local/lib/python3.6/html/parser.py", line 171, in goahead
>>>>>     k = self.parse_starttag(i)
>>>>>   File "/usr/local/lib/python3.6/html/parser.py", line 345, in
>>>>> parse_starttag
>>>>>     self.handle_starttag(tag, attrs)
>>>>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py",
>>>>> line 222, in handle_starttag
>>>>>     self._in_pre_tag -= self._close_tags_up_to(in_tag[0])
>>>>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py",
>>>>> line 189, in _close_tags_up_to
>>>>>     raise OpenTagNotFoundError()
>>>>> htmlmin.parser.OpenTagNotFoundError
>>>>>
>>>>>
>>>>>
>>>>> On 28/06/18 09:56, Dave Page wrote:
>>>>>
>>>>> The pgAdmin Development Team are pleased to announce pgAdmin 4 version
>>>>> 3.1. This release of pgAdmin 4 includes over 30 bug fixes and new features.
>>>>> For more details please see the release notes at:
>>>>>
>>>>>     https://www.pgadmin.org/docs/pgadmin4/dev/release_notes_3_1.html.
>>>>>
>>>>> pgAdmin is the leading Open Source graphical management tool for
>>>>> PostgreSQL. For more information, please see:
>>>>>
>>>>>     https://www.pgadmin.org/
>>>>>
>>>>> Notable changes in this release include:
>>>>>
>>>>> * Add support for SSH tunneled connections.
>>>>> * Various fixes for handling data in SQL_ASCII databases.
>>>>> * Add support for LISTEN/NOTIFY in the Query Tool.
>>>>> * Function/Procedure support for PostgreSQL 11.
>>>>> * Various fixes and enhancements to the Greenplum support.
>>>>>
>>>>> Builds for Windows and macOS are available now, along with a Python
>>>>> Wheel, Docker Container and source code tarball from:
>>>>>
>>>>>     https://www.pgadmin.org/download/
>>>>>
>>>>> RPM and DEB packages are expected to be available on the
>>>>> postgresql.org repositories within the next few days.
>>>>>
>>>>> --
>>>>> Dave Page
>>>>> pgAdmin Project Lead
>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>


-- 
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


^ permalink  raw  reply  [nested|flat] 14+ messages in thread

* Re: pgAdmin 4 v3.1 Released
  2018-06-28 09:56 pgAdmin 4 v3.1 Released Dave Page <[email protected]>
  2018-06-28 10:43 ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 10:52   ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 11:05     ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 11:15       ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 11:20         ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 11:33           ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 11:47             ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 12:04               ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 12:08                 ` Re: pgAdmin 4 v3.1 Released Dave Page <[email protected]>
@ 2018-06-28 12:26                   ` Dave Page <[email protected]>
  2018-06-28 13:27                     ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  0 siblings, 1 reply; 14+ messages in thread

From: Dave Page @ 2018-06-28 12:26 UTC (permalink / raw)
  To: Murtuza Zabuawala <[email protected]>; +Cc: Isaias Sanchez <[email protected]>; pgadmin-support lists.postgresql.org <[email protected]>

OK, please go grab the wheel again, from thttps://www.postgresql.org/
ftp/pgadmin/pgadmin4/v3.1/pip/. The MD5 checksum should be:

1af9eb551f729958101e55b9a0eeae8d  pgadmin4-3.1-py2.py3-none-any.whl

This should contain the missing files and fixes to the wheel requirements.

Sorry about that - stupid case-sensitivity bug in a script :-(


On Thu, Jun 28, 2018 at 1:08 PM, Dave Page <[email protected]> wrote:

> I've found the issue. Working on the fix...
>
> On Thu, Jun 28, 2018 at 1:04 PM, Murtuza Zabuawala <murtuza.zabuawala@
> enterprisedb.com> wrote:
>
>> Do you have any web server installed?
>> If yes then I suspect it is causing the issue because I can see in the
>> code that we are sending MIME headers properly as *{'Content-Type':
>> 'text/css'}* for browser.css
>>
>>
>> On Thu, Jun 28, 2018 at 5:17 PM, Isaias Sanchez <
>> [email protected]> wrote:
>>
>>> Browsers:
>>>
>>> Firefox 60.0.2
>>>
>>> Chromium: 66.0.3359.181
>>>
>>> The error in Firefox console is:
>>>
>>> The stylesheet http://localhost:5050/login?next=%2Fbrowser%2Fbrowser.css
>>> was not loaded because its MIME type, “text/html”, is not “text/css”.
>>>
>>> In Chormium:
>>>
>>> style.css, pgadmin_commons.js and vendor.js NOT FOUND, the MIME in
>>> browser.css is just a Warning.
>>> Regards,
>>>
>>> Isaias S.
>>>
>>> On 28/06/18 11:33, Murtuza Zabuawala wrote:
>>>
>>> What is your browser and its version?
>>> Do you see any errors on browser console
>>> <https://developers.google.com/web/tools/chrome-devtools/console/;?
>>>
>>> On Thu, Jun 28, 2018 at 4:50 PM, Isaias Sanchez <
>>> [email protected]> wrote:
>>>
>>>> look at the screenshots:
>>>>
>>>>
>>>> On 28/06/18 11:15, Murtuza Zabuawala wrote:
>>>>
>>>> Sorry, ​I didn't get you, what do mean when you say 'web is like only
>>>> text'? ​
>>>>
>>>>
>>>> On Thu, Jun 28, 2018 at 4:35 PM, Isaias Sanchez <
>>>> [email protected]> wrote:
>>>>
>>>>> This help a bit, I can log in, but the web is like only text, probably
>>>>> is necessary to update another:
>>>>>
>>>>> # pip3 freeze
>>>>> alembic==0.9.2
>>>>> asn1crypto==0.24.0
>>>>> Babel==2.3.4
>>>>> bcrypt==3.1.4
>>>>> beautifulsoup4==4.4.1
>>>>> blinker==1.4
>>>>> cffi==1.11.5
>>>>> click==6.6
>>>>> cryptography==2.2.2
>>>>> extras==1.0.0
>>>>> fixtures==3.0.0
>>>>> Flask==0.12.2
>>>>> Flask-Babel==0.11.1
>>>>> Flask-BabelEx==0.9.3
>>>>> Flask-Gravatar==0.5.0
>>>>> Flask-HTMLmin==1.3.2
>>>>> Flask-Login==0.3.2
>>>>> Flask-Mail==0.9.1
>>>>> Flask-Migrate==2.1.1
>>>>> Flask-Paranoid==0.2.0
>>>>> Flask-Principal==0.4.0
>>>>> Flask-Script==2.0.5
>>>>> Flask-Security==3.0.0
>>>>> Flask-SQLAlchemy==2.3.2
>>>>> Flask-WTF==0.14.2
>>>>> html5lib==1.0.1
>>>>> htmlmin==0.1.12
>>>>> idna==2.7
>>>>> itsdangerous==0.24
>>>>> Jinja2==2.7.3
>>>>> linecache2==1.0.0
>>>>> Mako==1.0.6
>>>>> MarkupSafe==0.23
>>>>> paramiko==2.4.1
>>>>> passlib==1.7.1
>>>>> pbr==3.1.1
>>>>> pgadmin4==3.1
>>>>> psycopg2==2.7.5
>>>>> psycopg2-binary==2.7.5
>>>>> pyasn1==0.4.3
>>>>> pycparser==2.18
>>>>> pycrypto==2.6.1
>>>>> PyNaCl==1.2.1
>>>>> pyrsistent==0.14.2
>>>>> python-dateutil==2.7.2
>>>>> python-editor==1.0.3
>>>>> python-mimeparse==1.6.0
>>>>> pytz==2018.3
>>>>> simplejson==3.13.2
>>>>> six==1.11.0
>>>>> speaklater==1.3
>>>>> SQLAlchemy==1.2.6
>>>>> sqlparse==0.2.4
>>>>> sshtunnel==0.1.4
>>>>> testtools==2.3.0
>>>>> traceback2==1.4.0
>>>>> unittest2==1.1.0
>>>>> webencodings==0.5.1
>>>>> Werkzeug==0.9.6
>>>>> WTForms==2.1
>>>>>
>>>>>
>>>>> On 28/06/18 10:52, Murtuza Zabuawala wrote:
>>>>>
>>>>> Looks like you have an older version of htmlmin module (< 0.1.12).
>>>>>
>>>>> Please install/update htmlmin to version 0.1.12, let us know if that
>>>>> solves the issue.
>>>>>
>>>>> --
>>>>> Regards,
>>>>> Murtuza Zabuawala
>>>>> EnterpriseDB: http://www.enterprisedb.com
>>>>> The Enterprise PostgreSQL Company
>>>>>
>>>>>
>>>>> On Thu, Jun 28, 2018 at 4:13 PM, Isaias Sanchez <
>>>>> [email protected]> wrote:
>>>>>
>>>>>> I just installed the Python Wheel 3.1 version on a centos 6 server
>>>>>> and the app doesn't start, the error is this:
>>>>>>
>>>>>> 2018-06-28 10:37:23,668: ERROR  werkzeug:       Error on request:
>>>>>> Traceback (most recent call last):
>>>>>>   File "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py",
>>>>>> line 177, in run_wsgi
>>>>>>     execute(self.server.app)
>>>>>>   File "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py",
>>>>>> line 165, in execute
>>>>>>     application_iter = app(environ, start_response)
>>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>>>> 1997, in __call__
>>>>>>     return self.wsgi_app(environ, start_response)
>>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>>>> 1985, in wsgi_app
>>>>>>     response = self.handle_exception(e)
>>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>>>> 1540, in handle_exception
>>>>>>     reraise(exc_type, exc_value, tb)
>>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/_compat.py",
>>>>>> line 33, in reraise
>>>>>>     raise value
>>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>>>> 1982, in wsgi_app
>>>>>>     response = self.full_dispatch_request()
>>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>>>> 1615, in full_dispatch_request
>>>>>>     return self.finalize_request(rv)
>>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>>>> 1632, in finalize_request
>>>>>>     response = self.process_response(response)
>>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>>>> 1856, in process_response
>>>>>>     response = handler(response)
>>>>>>   File "/usr/local/lib/python3.6/site-packages/flask_htmlmin.py",
>>>>>> line 35, in response_minify
>>>>>>     self.html_minify.minify(response.get_data(as_text=True))
>>>>>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/main.py",
>>>>>> line 152, in minify
>>>>>>     self.input(*input)
>>>>>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/main.py",
>>>>>> line 164, in input
>>>>>>     self._parser.feed(i)
>>>>>>   File "/usr/local/lib/python3.6/html/parser.py", line 111, in feed
>>>>>>     self.goahead(0)
>>>>>>   File "/usr/local/lib/python3.6/html/parser.py", line 171, in
>>>>>> goahead
>>>>>>     k = self.parse_starttag(i)
>>>>>>   File "/usr/local/lib/python3.6/html/parser.py", line 345, in
>>>>>> parse_starttag
>>>>>>     self.handle_starttag(tag, attrs)
>>>>>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py",
>>>>>> line 222, in handle_starttag
>>>>>>     self._in_pre_tag -= self._close_tags_up_to(in_tag[0])
>>>>>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py",
>>>>>> line 189, in _close_tags_up_to
>>>>>>     raise OpenTagNotFoundError()
>>>>>> htmlmin.parser.OpenTagNotFoundError
>>>>>>
>>>>>>
>>>>>>
>>>>>> On 28/06/18 09:56, Dave Page wrote:
>>>>>>
>>>>>> The pgAdmin Development Team are pleased to announce pgAdmin 4
>>>>>> version 3.1. This release of pgAdmin 4 includes over 30 bug fixes and new
>>>>>> features. For more details please see the release notes at:
>>>>>>
>>>>>>     https://www.pgadmin.org/docs/pgadmin4/dev/release_notes_3_1.html.
>>>>>>
>>>>>> pgAdmin is the leading Open Source graphical management tool for
>>>>>> PostgreSQL. For more information, please see:
>>>>>>
>>>>>>     https://www.pgadmin.org/
>>>>>>
>>>>>> Notable changes in this release include:
>>>>>>
>>>>>> * Add support for SSH tunneled connections.
>>>>>> * Various fixes for handling data in SQL_ASCII databases.
>>>>>> * Add support for LISTEN/NOTIFY in the Query Tool.
>>>>>> * Function/Procedure support for PostgreSQL 11.
>>>>>> * Various fixes and enhancements to the Greenplum support.
>>>>>>
>>>>>> Builds for Windows and macOS are available now, along with a Python
>>>>>> Wheel, Docker Container and source code tarball from:
>>>>>>
>>>>>>     https://www.pgadmin.org/download/
>>>>>>
>>>>>> RPM and DEB packages are expected to be available on the
>>>>>> postgresql.org repositories within the next few days.
>>>>>>
>>>>>> --
>>>>>> Dave Page
>>>>>> pgAdmin Project Lead
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>
>
>
> --
> Dave Page
> Blog: http://pgsnake.blogspot.com
> Twitter: @pgsnake
>
> EnterpriseDB UK: http://www.enterprisedb.com
> The Enterprise PostgreSQL Company
>



-- 
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


^ permalink  raw  reply  [nested|flat] 14+ messages in thread

* Re: pgAdmin 4 v3.1 Released
  2018-06-28 09:56 pgAdmin 4 v3.1 Released Dave Page <[email protected]>
  2018-06-28 10:43 ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 10:52   ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 11:05     ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 11:15       ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 11:20         ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 11:33           ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 11:47             ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 12:04               ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 12:08                 ` Re: pgAdmin 4 v3.1 Released Dave Page <[email protected]>
  2018-06-28 12:26                   ` Re: pgAdmin 4 v3.1 Released Dave Page <[email protected]>
@ 2018-06-28 13:27                     ` Isaias Sanchez <[email protected]>
  2018-06-28 13:57                       ` Re: pgAdmin 4 v3.1 Released Dave Page <[email protected]>
  0 siblings, 1 reply; 14+ messages in thread

From: Isaias Sanchez @ 2018-06-28 13:27 UTC (permalink / raw)
  To: pgadmin-support lists.postgresql.org <[email protected]>

it works like a charm!

Thanks Dave,

Isaias S.

Note: I'll try to help you guys with Spanish Translation, I'm taking a 
look to the documentation.

On 28/06/18 12:26, Dave Page wrote:
> OK, please go grab the wheel again, from 
> thttps://www.postgresql.org/ftp/pgadmin/pgadmin4/v3.1/pip/ 
> <http://www.postgresql.org/ftp/pgadmin/pgadmin4/v3.1/pip/;. The MD5 
> checksum should be:
>
> 1af9eb551f729958101e55b9a0eeae8d pgadmin4-3.1-py2.py3-none-any.whl
>
> This should contain the missing files and fixes to the wheel requirements.
>
> Sorry about that - stupid case-sensitivity bug in a script :-(
>
>
> On Thu, Jun 28, 2018 at 1:08 PM, Dave Page <[email protected] 
> <mailto:[email protected]>> wrote:
>
>     I've found the issue. Working on the fix...
>
>     On Thu, Jun 28, 2018 at 1:04 PM, Murtuza Zabuawala
>     <[email protected]
>     <mailto:[email protected]>> wrote:
>
>         Do you have any web server installed?
>         If yes then I suspect it is causing the issue because I can
>         see in the code that we are sending MIME headers properly as
>         /{'Content-Type': 'text/css'}/ for browser.css
>
>
>         On Thu, Jun 28, 2018 at 5:17 PM, Isaias Sanchez
>         <[email protected]
>         <mailto:[email protected]>> wrote:
>
>             Browsers:
>
>             Firefox 60.0.2
>
>             Chromium: 66.0.3359.181
>
>             The error in Firefox console is:
>
>             The stylesheet
>             http://localhost:5050/login?next=%2Fbrowser%2Fbrowser.css
>             <http://localhost:5050/login?next=%2Fbrowser%2Fbrowser.css;
>             was not loaded because its MIME type, “text/html”, is not
>             “text/css”.
>
>             In Chormium:
>
>             style.css, pgadmin_commons.js and vendor.js NOT FOUND, the
>             MIME in browser.css is just a Warning.
>
>             Regards,
>
>             Isaias S.
>
>             On 28/06/18 11:33, Murtuza Zabuawala wrote:
>>             What is your browser and its version?
>>             Do you see any errors on browser console
>>             <https://developers.google.com/web/tools/chrome-devtools/console/;?
>>
>>             On Thu, Jun 28, 2018 at 4:50 PM, Isaias Sanchez
>>             <[email protected]
>>             <mailto:[email protected]>> wrote:
>>
>>                 look at the screenshots:
>>
>>
>>
>>                 On 28/06/18 11:15, Murtuza Zabuawala wrote:
>>>                 Sorry, ​I didn't get you, what do mean when you say
>>>                 'web is like only text'? ​
>>>
>>>
>>>                 On Thu, Jun 28, 2018 at 4:35 PM, Isaias Sanchez
>>>                 <[email protected]
>>>                 <mailto:[email protected]>> wrote:
>>>
>>>                     This help a bit, I can log in, but the web is
>>>                     like only text, probably is necessary to update
>>>                     another:
>>>
>>>                     # pip3 freeze
>>>                     alembic==0.9.2
>>>                     asn1crypto==0.24.0
>>>                     Babel==2.3.4
>>>                     bcrypt==3.1.4
>>>                     beautifulsoup4==4.4.1
>>>                     blinker==1.4
>>>                     cffi==1.11.5
>>>                     click==6.6
>>>                     cryptography==2.2.2
>>>                     extras==1.0.0
>>>                     fixtures==3.0.0
>>>                     Flask==0.12.2
>>>                     Flask-Babel==0.11.1
>>>                     Flask-BabelEx==0.9.3
>>>                     Flask-Gravatar==0.5.0
>>>                     Flask-HTMLmin==1.3.2
>>>                     Flask-Login==0.3.2
>>>                     Flask-Mail==0.9.1
>>>                     Flask-Migrate==2.1.1
>>>                     Flask-Paranoid==0.2.0
>>>                     Flask-Principal==0.4.0
>>>                     Flask-Script==2.0.5
>>>                     Flask-Security==3.0.0
>>>                     Flask-SQLAlchemy==2.3.2
>>>                     Flask-WTF==0.14.2
>>>                     html5lib==1.0.1
>>>                     htmlmin==0.1.12
>>>                     idna==2.7
>>>                     itsdangerous==0.24
>>>                     Jinja2==2.7.3
>>>                     linecache2==1.0.0
>>>                     Mako==1.0.6
>>>                     MarkupSafe==0.23
>>>                     paramiko==2.4.1
>>>                     passlib==1.7.1
>>>                     pbr==3.1.1
>>>                     pgadmin4==3.1
>>>                     psycopg2==2.7.5
>>>                     psycopg2-binary==2.7.5
>>>                     pyasn1==0.4.3
>>>                     pycparser==2.18
>>>                     pycrypto==2.6.1
>>>                     PyNaCl==1.2.1
>>>                     pyrsistent==0.14.2
>>>                     python-dateutil==2.7.2
>>>                     python-editor==1.0.3
>>>                     python-mimeparse==1.6.0
>>>                     pytz==2018.3
>>>                     simplejson==3.13.2
>>>                     six==1.11.0
>>>                     speaklater==1.3
>>>                     SQLAlchemy==1.2.6
>>>                     sqlparse==0.2.4
>>>                     sshtunnel==0.1.4
>>>                     testtools==2.3.0
>>>                     traceback2==1.4.0
>>>                     unittest2==1.1.0
>>>                     webencodings==0.5.1
>>>                     Werkzeug==0.9.6
>>>                     WTForms==2.1
>>>
>>>
>>>                     On 28/06/18 10:52, Murtuza Zabuawala wrote:
>>>>                     Looks like you have an older version
>>>>                     of htmlmin module (< 0.1.12).
>>>>
>>>>                     Please install/update htmlmin to version
>>>>                     0.1.12, let us know if that solves the issue.
>>>>
>>>>                     -- 
>>>>                     Regards,
>>>>                     Murtuza Zabuawala
>>>>                     EnterpriseDB: http://www.enterprisedb.com
>>>>                     <http://www.enterprisedb.com/;
>>>>                     The Enterprise PostgreSQL Company
>>>>
>>>>
>>>>                     On Thu, Jun 28, 2018 at 4:13 PM, Isaias Sanchez
>>>>                     <[email protected]
>>>>                     <mailto:[email protected]>> wrote:
>>>>
>>>>                         I just installed the Python Wheel 3.1
>>>>                         version on a centos 6 server and the app
>>>>                         doesn't start, the error is this:
>>>>
>>>>                         2018-06-28 10:37:23,668: ERROR werkzeug:
>>>>                         Error on request:
>>>>                         Traceback (most recent call last):
>>>>                           File
>>>>                         "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py",
>>>>                         line 177, in run_wsgi
>>>>                         execute(self.server.app)
>>>>                           File
>>>>                         "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py",
>>>>                         line 165, in execute
>>>>                         application_iter = app(environ, start_response)
>>>>                           File
>>>>                         "/usr/local/lib/python3.6/site-packages/flask/app.py",
>>>>                         line 1997, in __call__
>>>>                             return self.wsgi_app(environ,
>>>>                         start_response)
>>>>                           File
>>>>                         "/usr/local/lib/python3.6/site-packages/flask/app.py",
>>>>                         line 1985, in wsgi_app
>>>>                             response = self.handle_exception(e)
>>>>                           File
>>>>                         "/usr/local/lib/python3.6/site-packages/flask/app.py",
>>>>                         line 1540, in handle_exception
>>>>                         reraise(exc_type, exc_value, tb)
>>>>                           File
>>>>                         "/usr/local/lib/python3.6/site-packages/flask/_compat.py",
>>>>                         line 33, in reraise
>>>>                             raise value
>>>>                           File
>>>>                         "/usr/local/lib/python3.6/site-packages/flask/app.py",
>>>>                         line 1982, in wsgi_app
>>>>                             response = self.full_dispatch_request()
>>>>                           File
>>>>                         "/usr/local/lib/python3.6/site-packages/flask/app.py",
>>>>                         line 1615, in full_dispatch_request
>>>>                             return self.finalize_request(rv)
>>>>                           File
>>>>                         "/usr/local/lib/python3.6/site-packages/flask/app.py",
>>>>                         line 1632, in finalize_request
>>>>                             response = self.process_response(response)
>>>>                           File
>>>>                         "/usr/local/lib/python3.6/site-packages/flask/app.py",
>>>>                         line 1856, in process_response
>>>>                             response = handler(response)
>>>>                           File
>>>>                         "/usr/local/lib/python3.6/site-packages/flask_htmlmin.py",
>>>>                         line 35, in response_minify
>>>>                         self.html_minify.minify(response.get_data(as_text=True))
>>>>                           File
>>>>                         "/usr/local/lib/python3.6/site-packages/htmlmin/main.py",
>>>>                         line 152, in minify
>>>>                         self.input(*input)
>>>>                           File
>>>>                         "/usr/local/lib/python3.6/site-packages/htmlmin/main.py",
>>>>                         line 164, in input
>>>>                         self._parser.feed(i)
>>>>                           File
>>>>                         "/usr/local/lib/python3.6/html/parser.py",
>>>>                         line 111, in feed
>>>>                         self.goahead(0)
>>>>                           File
>>>>                         "/usr/local/lib/python3.6/html/parser.py",
>>>>                         line 171, in goahead
>>>>                             k = self.parse_starttag(i)
>>>>                           File
>>>>                         "/usr/local/lib/python3.6/html/parser.py",
>>>>                         line 345, in parse_starttag
>>>>                         self.handle_starttag(tag, attrs)
>>>>                           File
>>>>                         "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py",
>>>>                         line 222, in handle_starttag
>>>>                         self._in_pre_tag -=
>>>>                         self._close_tags_up_to(in_tag[0])
>>>>                           File
>>>>                         "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py",
>>>>                         line 189, in _close_tags_up_to
>>>>                             raise OpenTagNotFoundError()
>>>>                         htmlmin.parser.OpenTagNotFoundError
>>>>
>>>>
>>>>
>>>>
>>>>                         On 28/06/18 09:56, Dave Page wrote:
>>>>>                         The pgAdmin Development Team are pleased
>>>>>                         to announce pgAdmin 4 version 3.1. This
>>>>>                         release of pgAdmin 4 includes over 30 bug
>>>>>                         fixes and new features. For more details
>>>>>                         please see the release notes at:
>>>>>
>>>>>                         https://www.pgadmin.org/docs/pgadmin4/dev/release_notes_3_1.html
>>>>>                         <https://www.pgadmin.org/docs/pgadmin4/dev/release_notes_3_1.html;.
>>>>>
>>>>>                         pgAdmin is the leading Open Source
>>>>>                         graphical management tool for PostgreSQL.
>>>>>                         For more information, please see:
>>>>>
>>>>>                         https://www.pgadmin.org/
>>>>>
>>>>>                         Notable changes in this release include:
>>>>>
>>>>>                         * Add support for SSH tunneled connections.
>>>>>                         * Various fixes for handling data in
>>>>>                         SQL_ASCII databases.
>>>>>                         * Add support for LISTEN/NOTIFY in the
>>>>>                         Query Tool.
>>>>>                         * Function/Procedure support for
>>>>>                         PostgreSQL 11.
>>>>>                         * Various fixes and enhancements to the
>>>>>                         Greenplum support.
>>>>>
>>>>>                         Builds for Windows and macOS are available
>>>>>                         now, along with a Python Wheel, Docker
>>>>>                         Container and source code tarball from:
>>>>>
>>>>>                         https://www.pgadmin.org/download/
>>>>>                         <https://www.pgadmin.org/download/;
>>>>>
>>>>>                         RPM and DEB packages are expected to be
>>>>>                         available on the postgresql.org
>>>>>                         <http://postgresql.org; repositories
>>>>>                         within the next few days.
>>>>>
>>>>>                         -- 
>>>>>                         Dave Page
>>>>>                         pgAdmin Project Lead
>>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>
>
>
>
>     -- 
>     Dave Page
>     Blog: http://pgsnake.blogspot.com
>     Twitter: @pgsnake
>
>     EnterpriseDB UK: http://www.enterprisedb.com
>     The Enterprise PostgreSQL Company
>
>
>
>
> -- 
> Dave Page
> Blog: http://pgsnake.blogspot.com
> Twitter: @pgsnake
>
> EnterpriseDB UK: http://www.enterprisedb.com
> The Enterprise PostgreSQL Company



^ permalink  raw  reply  [nested|flat] 14+ messages in thread

* Re: pgAdmin 4 v3.1 Released
  2018-06-28 09:56 pgAdmin 4 v3.1 Released Dave Page <[email protected]>
  2018-06-28 10:43 ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 10:52   ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 11:05     ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 11:15       ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 11:20         ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 11:33           ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 11:47             ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
  2018-06-28 12:04               ` Re: pgAdmin 4 v3.1 Released Murtuza Zabuawala <[email protected]>
  2018-06-28 12:08                 ` Re: pgAdmin 4 v3.1 Released Dave Page <[email protected]>
  2018-06-28 12:26                   ` Re: pgAdmin 4 v3.1 Released Dave Page <[email protected]>
  2018-06-28 13:27                     ` Re: pgAdmin 4 v3.1 Released Isaias Sanchez <[email protected]>
@ 2018-06-28 13:57                       ` Dave Page <[email protected]>
  0 siblings, 0 replies; 14+ messages in thread

From: Dave Page @ 2018-06-28 13:57 UTC (permalink / raw)
  To: Isaias Sanchez <[email protected]>; +Cc: pgadmin-support lists.postgresql.org <[email protected]>

On Thu, Jun 28, 2018 at 2:27 PM, Isaias Sanchez <[email protected]>
wrote:

> it works like a charm!
>
\o/

> Thanks Dave,
>
You're welcome - sorry for the inconvenience.

> Isaias S.
> Note: I'll try to help you guys with Spanish Translation, I'm taking a
> look to the documentation.
>

Cool, thanks. It's pretty simple actually; choose a PO file editor, grab a
copy of the template (
https://git.postgresql.org/gitweb/?p=pgadmin4.git;a=blob_plain;f=web/pgadmin/messages.pot),
and create the PO file from that. When you're done, send us the PO file and
we can add it.

Thanks again!


>
>
> On 28/06/18 12:26, Dave Page wrote:
>
> OK, please go grab the wheel again, from thttps://www.postgresql.org/ft
> p/pgadmin/pgadmin4/v3.1/pip/. The MD5 checksum should be:
>
> 1af9eb551f729958101e55b9a0eeae8d  pgadmin4-3.1-py2.py3-none-any.whl
>
> This should contain the missing files and fixes to the wheel requirements.
>
> Sorry about that - stupid case-sensitivity bug in a script :-(
>
>
> On Thu, Jun 28, 2018 at 1:08 PM, Dave Page <[email protected]> wrote:
>
>> I've found the issue. Working on the fix...
>>
>> On Thu, Jun 28, 2018 at 1:04 PM, Murtuza Zabuawala <
>> [email protected]> wrote:
>>
>>> Do you have any web server installed?
>>> If yes then I suspect it is causing the issue because I can see in the
>>> code that we are sending MIME headers properly as *{'Content-Type':
>>> 'text/css'}* for browser.css
>>>
>>>
>>> On Thu, Jun 28, 2018 at 5:17 PM, Isaias Sanchez <
>>> [email protected]> wrote:
>>>
>>>> Browsers:
>>>>
>>>> Firefox 60.0.2
>>>>
>>>> Chromium: 66.0.3359.181
>>>>
>>>> The error in Firefox console is:
>>>>
>>>> The stylesheet http://localhost:5050/login?ne
>>>> xt=%2Fbrowser%2Fbrowser.css was not loaded because its MIME type,
>>>> “text/html”, is not “text/css”.
>>>>
>>>> In Chormium:
>>>>
>>>> style.css, pgadmin_commons.js and vendor.js NOT FOUND, the MIME in
>>>> browser.css is just a Warning.
>>>> Regards,
>>>>
>>>> Isaias S.
>>>>
>>>> On 28/06/18 11:33, Murtuza Zabuawala wrote:
>>>>
>>>> What is your browser and its version?
>>>> Do you see any errors on browser console
>>>> <https://developers.google.com/web/tools/chrome-devtools/console/;?
>>>>
>>>> On Thu, Jun 28, 2018 at 4:50 PM, Isaias Sanchez <
>>>> [email protected]> wrote:
>>>>
>>>>> look at the screenshots:
>>>>>
>>>>>
>>>>> On 28/06/18 11:15, Murtuza Zabuawala wrote:
>>>>>
>>>>> Sorry, ​I didn't get you, what do mean when you say 'web is like only
>>>>> text'? ​
>>>>>
>>>>>
>>>>> On Thu, Jun 28, 2018 at 4:35 PM, Isaias Sanchez <
>>>>> [email protected]> wrote:
>>>>>
>>>>>> This help a bit, I can log in, but the web is like only text,
>>>>>> probably is necessary to update another:
>>>>>>
>>>>>> # pip3 freeze
>>>>>> alembic==0.9.2
>>>>>> asn1crypto==0.24.0
>>>>>> Babel==2.3.4
>>>>>> bcrypt==3.1.4
>>>>>> beautifulsoup4==4.4.1
>>>>>> blinker==1.4
>>>>>> cffi==1.11.5
>>>>>> click==6.6
>>>>>> cryptography==2.2.2
>>>>>> extras==1.0.0
>>>>>> fixtures==3.0.0
>>>>>> Flask==0.12.2
>>>>>> Flask-Babel==0.11.1
>>>>>> Flask-BabelEx==0.9.3
>>>>>> Flask-Gravatar==0.5.0
>>>>>> Flask-HTMLmin==1.3.2
>>>>>> Flask-Login==0.3.2
>>>>>> Flask-Mail==0.9.1
>>>>>> Flask-Migrate==2.1.1
>>>>>> Flask-Paranoid==0.2.0
>>>>>> Flask-Principal==0.4.0
>>>>>> Flask-Script==2.0.5
>>>>>> Flask-Security==3.0.0
>>>>>> Flask-SQLAlchemy==2.3.2
>>>>>> Flask-WTF==0.14.2
>>>>>> html5lib==1.0.1
>>>>>> htmlmin==0.1.12
>>>>>> idna==2.7
>>>>>> itsdangerous==0.24
>>>>>> Jinja2==2.7.3
>>>>>> linecache2==1.0.0
>>>>>> Mako==1.0.6
>>>>>> MarkupSafe==0.23
>>>>>> paramiko==2.4.1
>>>>>> passlib==1.7.1
>>>>>> pbr==3.1.1
>>>>>> pgadmin4==3.1
>>>>>> psycopg2==2.7.5
>>>>>> psycopg2-binary==2.7.5
>>>>>> pyasn1==0.4.3
>>>>>> pycparser==2.18
>>>>>> pycrypto==2.6.1
>>>>>> PyNaCl==1.2.1
>>>>>> pyrsistent==0.14.2
>>>>>> python-dateutil==2.7.2
>>>>>> python-editor==1.0.3
>>>>>> python-mimeparse==1.6.0
>>>>>> pytz==2018.3
>>>>>> simplejson==3.13.2
>>>>>> six==1.11.0
>>>>>> speaklater==1.3
>>>>>> SQLAlchemy==1.2.6
>>>>>> sqlparse==0.2.4
>>>>>> sshtunnel==0.1.4
>>>>>> testtools==2.3.0
>>>>>> traceback2==1.4.0
>>>>>> unittest2==1.1.0
>>>>>> webencodings==0.5.1
>>>>>> Werkzeug==0.9.6
>>>>>> WTForms==2.1
>>>>>>
>>>>>>
>>>>>> On 28/06/18 10:52, Murtuza Zabuawala wrote:
>>>>>>
>>>>>> Looks like you have an older version of htmlmin module (< 0.1.12).
>>>>>>
>>>>>> Please install/update htmlmin to version 0.1.12, let us know if that
>>>>>> solves the issue.
>>>>>>
>>>>>> --
>>>>>> Regards,
>>>>>> Murtuza Zabuawala
>>>>>> EnterpriseDB: http://www.enterprisedb.com
>>>>>> The Enterprise PostgreSQL Company
>>>>>>
>>>>>>
>>>>>> On Thu, Jun 28, 2018 at 4:13 PM, Isaias Sanchez <
>>>>>> [email protected]> wrote:
>>>>>>
>>>>>>> I just installed the Python Wheel 3.1 version on a centos 6 server
>>>>>>> and the app doesn't start, the error is this:
>>>>>>>
>>>>>>> 2018-06-28 10:37:23,668: ERROR  werkzeug:       Error on request:
>>>>>>> Traceback (most recent call last):
>>>>>>>   File "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py",
>>>>>>> line 177, in run_wsgi
>>>>>>>     execute(self.server.app)
>>>>>>>   File "/usr/local/lib/python3.6/site-packages/werkzeug/serving.py",
>>>>>>> line 165, in execute
>>>>>>>     application_iter = app(environ, start_response)
>>>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>>>>> 1997, in __call__
>>>>>>>     return self.wsgi_app(environ, start_response)
>>>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>>>>> 1985, in wsgi_app
>>>>>>>     response = self.handle_exception(e)
>>>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>>>>> 1540, in handle_exception
>>>>>>>     reraise(exc_type, exc_value, tb)
>>>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/_compat.py",
>>>>>>> line 33, in reraise
>>>>>>>     raise value
>>>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>>>>> 1982, in wsgi_app
>>>>>>>     response = self.full_dispatch_request()
>>>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>>>>> 1615, in full_dispatch_request
>>>>>>>     return self.finalize_request(rv)
>>>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>>>>> 1632, in finalize_request
>>>>>>>     response = self.process_response(response)
>>>>>>>   File "/usr/local/lib/python3.6/site-packages/flask/app.py", line
>>>>>>> 1856, in process_response
>>>>>>>     response = handler(response)
>>>>>>>   File "/usr/local/lib/python3.6/site-packages/flask_htmlmin.py",
>>>>>>> line 35, in response_minify
>>>>>>>     self.html_minify.minify(response.get_data(as_text=True))
>>>>>>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/main.py",
>>>>>>> line 152, in minify
>>>>>>>     self.input(*input)
>>>>>>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/main.py",
>>>>>>> line 164, in input
>>>>>>>     self._parser.feed(i)
>>>>>>>   File "/usr/local/lib/python3.6/html/parser.py", line 111, in feed
>>>>>>>     self.goahead(0)
>>>>>>>   File "/usr/local/lib/python3.6/html/parser.py", line 171, in
>>>>>>> goahead
>>>>>>>     k = self.parse_starttag(i)
>>>>>>>   File "/usr/local/lib/python3.6/html/parser.py", line 345, in
>>>>>>> parse_starttag
>>>>>>>     self.handle_starttag(tag, attrs)
>>>>>>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py",
>>>>>>> line 222, in handle_starttag
>>>>>>>     self._in_pre_tag -= self._close_tags_up_to(in_tag[0])
>>>>>>>   File "/usr/local/lib/python3.6/site-packages/htmlmin/parser.py",
>>>>>>> line 189, in _close_tags_up_to
>>>>>>>     raise OpenTagNotFoundError()
>>>>>>> htmlmin.parser.OpenTagNotFoundError
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> On 28/06/18 09:56, Dave Page wrote:
>>>>>>>
>>>>>>> The pgAdmin Development Team are pleased to announce pgAdmin 4
>>>>>>> version 3.1. This release of pgAdmin 4 includes over 30 bug fixes and new
>>>>>>> features. For more details please see the release notes at:
>>>>>>>
>>>>>>>     https://www.pgadmin.org/docs/pgadmin4/dev/release_notes_3_1.html
>>>>>>> .
>>>>>>>
>>>>>>> pgAdmin is the leading Open Source graphical management tool for
>>>>>>> PostgreSQL. For more information, please see:
>>>>>>>
>>>>>>>     https://www.pgadmin.org/
>>>>>>>
>>>>>>> Notable changes in this release include:
>>>>>>>
>>>>>>> * Add support for SSH tunneled connections.
>>>>>>> * Various fixes for handling data in SQL_ASCII databases.
>>>>>>> * Add support for LISTEN/NOTIFY in the Query Tool.
>>>>>>> * Function/Procedure support for PostgreSQL 11.
>>>>>>> * Various fixes and enhancements to the Greenplum support.
>>>>>>>
>>>>>>> Builds for Windows and macOS are available now, along with a Python
>>>>>>> Wheel, Docker Container and source code tarball from:
>>>>>>>
>>>>>>>     https://www.pgadmin.org/download/
>>>>>>>
>>>>>>> RPM and DEB packages are expected to be available on the
>>>>>>> postgresql.org repositories within the next few days.
>>>>>>>
>>>>>>> --
>>>>>>> Dave Page
>>>>>>> pgAdmin Project Lead
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>
>>
>> --
>> Dave Page
>> Blog: http://pgsnake.blogspot.com
>> Twitter: @pgsnake
>>
>> EnterpriseDB UK: http://www.enterprisedb.com
>> The Enterprise PostgreSQL Company
>>
>
>
>
> --
> Dave Page
> Blog: http://pgsnake.blogspot.com
> Twitter: @pgsnake
>
> EnterpriseDB UK: http://www.enterprisedb.com
> The Enterprise PostgreSQL Company
>
>
>


-- 
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


^ permalink  raw  reply  [nested|flat] 14+ messages in thread


end of thread, other threads:[~2018-06-28 13:57 UTC | newest]

Thread overview: 14+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2018-06-28 09:56 pgAdmin 4 v3.1 Released Dave Page <[email protected]>
2018-06-28 10:43 ` Isaias Sanchez <[email protected]>
2018-06-28 10:48   ` Khushboo Vashi <[email protected]>
2018-06-28 10:52   ` Murtuza Zabuawala <[email protected]>
2018-06-28 11:05     ` Isaias Sanchez <[email protected]>
2018-06-28 11:15       ` Murtuza Zabuawala <[email protected]>
2018-06-28 11:20         ` Isaias Sanchez <[email protected]>
2018-06-28 11:33           ` Murtuza Zabuawala <[email protected]>
2018-06-28 11:47             ` Isaias Sanchez <[email protected]>
2018-06-28 12:04               ` Murtuza Zabuawala <[email protected]>
2018-06-28 12:08                 ` Dave Page <[email protected]>
2018-06-28 12:26                   ` Dave Page <[email protected]>
2018-06-28 13:27                     ` Isaias Sanchez <[email protected]>
2018-06-28 13:57                       ` Dave Page <[email protected]>

This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox