mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Set PSQLRC and PSQL_HISTORY env vars to apt. user storage path in the server mode. Fixes #6691
This commit is contained in:
parent
c64eb3507c
commit
fbc6c30b62
@ -10,6 +10,7 @@ New features
|
||||
************
|
||||
|
||||
| `Issue #4264 <https://redmine.postgresql.org/issues/4264>`_ - Make code folding case insensitive in the code mirror.
|
||||
| `Issue #6691 <https://redmine.postgresql.org/issues/6691>`_ - Set PSQLRC and PSQL_HISTORY env vars to apt. user storage path in the server mode.
|
||||
|
||||
Housekeeping
|
||||
************
|
||||
|
@ -109,6 +109,13 @@ def panel(trans_id):
|
||||
# Set TERM env for xterm.
|
||||
os.environ['TERM'] = 'xterm'
|
||||
|
||||
# If psql is enabled in server mode, set psqlrc and hist paths
|
||||
# to individual user storage.
|
||||
if config.ENABLE_PSQL and config.SERVER_MODE:
|
||||
os.environ['PSQLRC'] = get_complete_file_path('.psqlrc', False)
|
||||
os.environ['PSQL_HISTORY'] = \
|
||||
get_complete_file_path('.psql_history', False)
|
||||
|
||||
o_db_name = _get_database(params['sid'], params['did'])
|
||||
|
||||
return render_template('editor_template.html',
|
||||
|
@ -241,7 +241,7 @@ else:
|
||||
return os.path.realpath(os.path.expanduser('~/'))
|
||||
|
||||
|
||||
def get_complete_file_path(file):
|
||||
def get_complete_file_path(file, validate=True):
|
||||
"""
|
||||
Args:
|
||||
file: File returned by file manager
|
||||
@ -266,7 +266,10 @@ def get_complete_file_path(file):
|
||||
file = file.replace('\\', '/')
|
||||
file = fs_short_path(file)
|
||||
|
||||
if validate:
|
||||
return file if os.path.isfile(file) else None
|
||||
else:
|
||||
return file
|
||||
|
||||
|
||||
def does_utility_exist(file):
|
||||
|
Loading…
Reference in New Issue
Block a user