Файловый менеджер - Редактировать - /home/skymarketplace/public_html/uploads/html.zip
Назад
PK <z�Z�ù�� � __init__.pynu �[��� from __future__ import absolute_import from future.utils import PY3 __future_module__ = True if PY3: from html import * else: # cgi.escape isn't good enough for the single Py3.3 html test to pass. # Define it inline here instead. From the Py3.4 stdlib. Note that the # html.escape() function from the Py3.3 stdlib is not suitable for use on # Py2.x. """ General functions for HTML manipulation. """ def escape(s, quote=True): """ Replace special characters "&", "<" and ">" to HTML-safe sequences. If the optional flag quote is true (the default), the quotation mark characters, both double quote (") and single quote (') characters are also translated. """ s = s.replace("&", "&") # Must be done first! s = s.replace("<", "<") s = s.replace(">", ">") if quote: s = s.replace('"', """) s = s.replace('\'', "'") return s __all__ = ['escape'] PK <z�Z��Y� � $ __pycache__/__init__.cpython-311.pycnu �[��� � ��bg� � �B � d dl mZ d dlmZ dZerd dlT dS dd�ZdgZdS ) � )�absolute_import)�PY3T)�*c �� � | � dd� � } | � dd� � } | � dd� � } |r,| � dd� � } | � d d � � } | S )a Replace special characters "&", "<" and ">" to HTML-safe sequences. If the optional flag quote is true (the default), the quotation mark characters, both double quote (") and single quote (') characters are also translated. �&z&�<z<�>z>�"z"�'z')�replace)�s�quotes �k/builddir/build/BUILD/cloudlinux-venv-1.0.7/venv/lib/python3.11/site-packages/future/moves/html/__init__.py�escaper sp � � �I�I�c�7�#�#�� �I�I�c�6�"�"�� �I�I�c�6�"�"��� *�� � �#�x�(�(�A�� � �$��)�)�A��� r N)T)� __future__r �future.utilsr �__future_module__�htmlr �__all__� r r �<module>r so �� &� &� &� &� &� &� � � � � � �� �� �������� � � � � �j�G�G�Gr PK <z�ZZ1P�� � $ __pycache__/entities.cpython-311.pycnu �[��� � ��bg� � �: � d dl mZ d dlmZ erd dlT dS dZd dlT dS )� )�absolute_import)�PY3)�*TN)� __future__r �future.utilsr � html.entities�__future_module__�htmlentitydefs� � �k/builddir/build/BUILD/cloudlinux-venv-1.0.7/venv/lib/python3.11/site-packages/future/moves/html/entities.py�<module>r s[ �� &� &� &� &� &� &� � � � � � �� !��������� � � � � � r PK <z�Z�k� � "