mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-27 11:10:19 -06:00
36 lines
902 B
Python
36 lines
902 B
Python
##########################################################################
|
|
#
|
|
# pgAdmin 4 - PostgreSQL Tools
|
|
#
|
|
# Copyright (C) 2013 - 2019, The pgAdmin Development Team
|
|
# This software is released under the PostgreSQL Licence
|
|
#
|
|
#########################################################################
|
|
|
|
"""Utilities for HTML"""
|
|
|
|
import cgi
|
|
from pgadmin.utils import IS_PY2
|
|
|
|
|
|
def safe_str(x):
|
|
try:
|
|
# For Python2, it can be int, long, float
|
|
if IS_PY2:
|
|
if isinstance(x, (int, long, float)):
|
|
x = str(x)
|
|
else:
|
|
# For Python3, it can be int, float
|
|
if isinstance(x, (int, float)):
|
|
x = str(x)
|
|
|
|
x = x.encode(
|
|
'ascii', 'xmlcharrefreplace'
|
|
) if hasattr(x, 'encode') else x
|
|
|
|
if not IS_PY2:
|
|
x = x.decode('utf-8')
|
|
except Exception:
|
|
pass
|
|
return cgi.escape(x)
|