pgadmin4/web/pgadmin/utils/html.py
2023-01-02 11:53:55 +05:30

29 lines
706 B
Python

##########################################################################
#
# pgAdmin 4 - PostgreSQL Tools
#
# Copyright (C) 2013 - 2023, The pgAdmin Development Team
# This software is released under the PostgreSQL Licence
#
#########################################################################
"""Utilities for HTML"""
from html import escape as html_escape
def safe_str(x):
try:
# 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
x = x.decode('utf-8')
except Exception:
pass
return html_escape(x, False)