pgadmin4/web
Maxim Zakharov 8005b05292 Fixes #2304, #2145 - Resolve the issue for restoring the table from the backup.
Earlier - implementation was generating the backup code like as below:
XXX/pg_restore.exe --host "x.x.x.x" --port "xxxx" --username "osboxes" --no-password --dbname "test" --data-only --verbose --table "tt.test2" "XXX-FILE.bak"

It should have been:
XXX/pg_restore.exe --host "x.x.x.x" --port "xxxx" --username "osboxes" --no-password --dbname "test" --data-only --verbose --schema "tt" --table "test2" "XXX-FILE.bak"
2017-03-31 13:16:17 +05:30
..
pgadmin Fixes #2304, #2145 - Resolve the issue for restoring the table from the backup. 2017-03-31 13:16:17 +05:30
regression Fix translation extraction for new client side translations, and update catalogs. 2017-03-28 15:21:49 -04:00
tools Add a simple tool to minimise CSS and JS files (for future use) 2017-03-25 22:04:52 -04:00
babel.cfg Fix translation extraction for new client side translations, and update catalogs. 2017-03-28 15:21:49 -04:00
config.py Disable HTMLMIN with Python 2.6 as it doesn't work on that older version. 2017-03-09 15:21:52 +00:00
karma.conf.js Move the karma config and node_modules into the web directory. 2017-03-15 17:13:55 +00:00
package.json Move the package.json file to the web/ directory 2017-03-15 17:15:16 +00:00
pgAdmin4.py Fix the issue where Import/Export was failing in linux runtime. Fixes #2166 2017-03-09 09:54:55 +00:00
pgAdmin4.wsgi Fix WSGI support. 2016-08-18 13:43:00 +01:00
setup.py Resolved quite a few file-system encoding/decoding related cases. 2017-03-07 15:31:03 +05:30