Murtuza Zabuawala
fe1c86cbbe
Fix SSL mode selection. Fixes #1144
2016-06-14 12:26:07 +01:00
Dave Page
0f12defd20
Tell the user where the app server is running.
2016-06-14 12:00:06 +01:00
Susan Douglas
d87a6a15ac
More doc updates.
2016-06-14 10:26:56 +01:00
Surinder Kumar
677008af10
Fix file type detection for Python 2.6. Fixes #1330
...
To find out the type of file selected using FileManager in query tool, we use bitwise OR( | ) on two sets which is not working on python-2.6.9 version.
Now we took list of elements instead of sets to fix the issue.
2016-06-13 16:35:11 +01:00
Sebastiaan van Stijn
8b770ae479
Fix "global name 'execfile' not defined".
...
execfile was removed in Python 3.0. This
uses 'exec(open(filename).read())' as an
alternative, which works on all Python
versions.
2016-06-13 16:24:54 +01:00
Murtuza Zabuawala
1f9d0ffc54
Fix comment removal for various nodes. Fixes #1331
2016-06-13 16:22:50 +01:00
Dave Page
970d3aafbf
Help buttons for various dialogues.
2016-06-13 16:17:36 +01:00
Leonard Hecker
702609517f
This quite trivial patch adds support for HiDPI (i.e. "retina") displays on OS X.
...
The reason for this issue is that you guys use a heavily trimmed down Info.plist
file, which among others doesn't contain the NSPrincipalClass key.
Without that key an OS X application is treated as a legacy one and thus won't
support many "new" features including HiDPI displays.
By adding the key back, you a) follow the recommended Info.plist style and
b) get HiDPI support for free!
Apart from that I _really_ recommend adding the following keys too (mostly
keys added by default by Xcode - I've guessed the values):
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>pgAdmin 4</string>
<key>CFBundleShortVersionString</key>
<string>1.0.0</string>
<key>CFBundleVersion</key>
<string>1.0.0</string>
<key>LSMinimumSystemVersion</key>
<string>10.9</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2016 The pgAdmin Development Team. All rights reserved.</string>
2016-06-11 18:14:47 +01:00
Dave Page
f5dde481c0
Auto complete is not based on psql.
2016-06-10 17:23:39 +01:00
Surinder Kumar
c331b514a9
Auto-close the date picker when selecting a role expiry date. Fixes #1327
2016-06-10 17:13:06 +01:00
Surinder Kumar
1783e040e6
Fix re-display of privileges on the grant wizard if the back button is used. Fixes #1324
...
This issue was regression of commit id: 47d7e24bb9
Shouldn't have return statement in view object because it is called by render of wizard object class to render the page in wizard.
2016-06-10 17:08:48 +01:00
Surinder Kumar
9e8e3fc787
Fix file selection on Windows. Fixes #1319
...
1) Unable to select sql file through query tool on windows OS. In file_manager.js, we are stripping initial slash '/' from the path obtained, but we should not strip if it is full path like 'c:/path/to/dir/filename.ext'
2) Handle directory path if STORAGE_DIR is None. Proper checks are added.
2016-06-10 17:06:22 +01:00
Murtuza Zabuawala
d9804ae2a2
Add a menu option to reset the layout. Fixes #1248
2016-06-10 16:55:58 +01:00
Susan Douglas
6b84dc832a
More doc updates - query tool
2016-06-10 16:23:57 +01:00
Harshal Dhumal
6cfa022e35
Validate email addresses when creating the config DB.
2016-06-10 16:19:46 +01:00
Murtuza Zabuawala
fcd33162a9
Fix role valid until date handling. Fixes #1107
2016-06-10 16:12:51 +01:00
Sanket Mehta
d5a91c969c
Ensure the properties dialogues create objects in a single transaction/statement. Fixes #1107
2016-06-10 16:07:24 +01:00
Surinder Kumar
085f8e198e
Make the Grant Wizard non-modal.
2016-06-08 16:57:03 +01:00
Dave Page
f46227c3df
Exclude config_local.py from PIP wheels.
2016-06-08 15:37:02 +01:00
Surinder Kumar
47d7e24bb9
Add a Help button to the bottom left of the Wizard framework
2016-06-08 14:08:12 +01:00
Paresh More
d8cbbae3a4
Cleanup a couple of issues missed when the Windows installer patch was committed.
2016-06-08 13:38:54 +01:00
Surinder Kumar
802840fd7f
Fix various cosmetic issues with preference dialog
...
1. Foreign keys listed twice
The label for Exclusion constraint was set to 'Foreign keys'. fixed it.
2. Trigger function, Unique constraint, Primary key should be in title case
3. if user click outside of Preferences window it disappear (it should not disappear)
set preference alertify dialog option closableByDimmer to false.
4. Columns node settings listed twice
Override the register_preferences method in Columns CatalogObjectColumnsModule class
because there are two types of columns node, catalogs columns and tables columns.
so the settings for table columns should also work for catalog columns. Thats why we are not showing preference option for catalogs column node.
Ashesh fixed this issue.
2016-06-08 13:29:49 +01:00
Neel Patel
17fa6dcc40
Properly quote function names when starting the debugger. Fixes #1225
2016-06-08 13:22:03 +01:00
Surinder Kumar
8eb0742076
Add the Query Tool to the context menu, and improve prioritisation. Fixes #1256
2016-06-08 13:18:59 +01:00
Murtuza Zabuawala
d7f5e95b2b
Fix unwanted space indentation issue in Database node.
2016-06-08 12:56:56 +01:00
Murtuza Zabuawala
47007076cc
Fix validation issue causing statistics tab to break if no node is selected on browser tree and user clicks on statistics tab.
2016-06-08 12:48:34 +01:00
Surinder Kumar
a871b15fe9
When any of the docked tab(statistics, dependents & dependencies)
...
are clicked without selecting any tree node. it gives error in browser
console panel.
Because the node passed is undefined. and check is missing. This is now
fixed by adding check for node passed.
2016-06-08 12:46:30 +01:00
Paresh More
47dccec915
Windows installer!
2016-06-08 12:29:21 +01:00
Neel Patel
d1a0a9bab2
Icon for the Windows runtime executable. Fixes #1310
2016-06-08 10:54:28 +01:00
Susan Douglas
c7862cadad
More doc updates.
2016-06-08 10:23:12 +01:00
Dave Page
615882e1ee
Proper doc styling.
2016-06-08 10:21:30 +01:00
Dave Page
b9caf41054
Cleanup the Python requirements.
2016-06-08 10:17:14 +01:00
Murtuza Zabuawala
61037d4f60
Fix styling of statistics table. Fixes #1315
2016-06-08 09:30:53 +01:00
Dave Page
8a571df248
Revert "Fix appicon font styling."
...
This doesn't actually work - there seems to be something funky about
the way the runtime renders mfizz icons on Windows.
This reverts commit 5bbaf7841e
.
2016-06-07 14:55:38 +01:00
Dave Page
5bbaf7841e
Fix appicon font styling.
2016-06-07 14:08:37 +01:00
Murtuza Zabuawala
4ace8bb5b6
Statistics support remaining object types that support them.
2016-06-07 13:16:12 +01:00
Murtuza Zabuawala
ac2612264c
Fix validation of object before using it
2016-06-07 12:37:58 +01:00
Murtuza Zabuawala
20a22731e0
Fix incorrect condition checking for privileges.
2016-06-07 12:37:02 +01:00
Dave Page
4380c6714e
Fix venv search path on Mac.
2016-06-07 12:12:39 +01:00
Harshal Dhumal
f3fae9d238
Fix email validation and mouse pointer over the Users option.
2016-06-07 09:24:44 +01:00
Harshal Dhumal
e4f21568ad
Fix styling of Alertify buttons
2016-06-07 09:23:58 +01:00
Dave Page
124f49869e
Fix typo per Susan.
2016-06-07 09:06:29 +01:00
Susan Douglas
b0a901e90e
More doc updates.
2016-06-07 09:04:58 +01:00
Dave Page
14ced20db0
Remove and ignore code_snippets.rst as it's auto-generated.
2016-06-07 09:00:15 +01:00
Ashesh Vashi
7d08e42bbe
During encryption password is converted to buffer (instead of
...
bytearray), and that is causing the issue in Python 2.
This was regress of commit-id: 37e2e1d24b
2016-06-07 13:26:43 +05:30
Ashesh Vashi
37e2e1d24b
Fixing the decryption issue during restoring the connection on restart.
...
As we convert the binary password to string during storing the
connection information, we also need to convert it back to byte-arrays
during restoring the connections.
Hence - decode the passowrd using 'utf-8' encoding during storing the
connection information, and encode it during restoring the connections.
2016-06-06 22:48:53 +05:30
Harshal Dhumal
7f1e57c2a6
Remove the header controls of subnode control properly, when removing it
...
from the VariableControl, and the customized TokenControl in the
fts_configuration javascript module during clean up process.
2016-06-06 18:53:19 +05:30
Murtuza Zabuawala
9ed2530b1f
Fixes #1110 - Proper validation for the security labels.
2016-06-06 18:07:13 +05:30
Harshal Dhumal
e3ab4501d5
User management.
2016-06-06 13:34:08 +01:00
Dave Page
4398d1d869
Fix mouse cursor on dashboard quick links. Fixes #1163
2016-06-03 13:10:49 +01:00