£Á°èZ¨Ä…–K§‚«“ô4“ÒÙ´dîfUÙÃÅ WKbyÊ¦•êŽ…È®FÒ¿ÊÎóCozá¬S@6{Í:›œêZÌ:Š•_%:¢¾¾~;‘Ã~èŠ©ÊÇí`ÔÑ©úë™µ'5I¿fš×WO%ø9¾«¾DK|€ùÍD”Ýs]nHÕ¶ê×Ó¼ãžªéUWŸÈË%DÒÕ¬ï‘]/Åcx  ‰ï2ß]ä6G[]S£ÔÏ¯rs{úëóµmÒï#UQxo·õÞCe]"±/aÙ&Eã4ú9Jé_ÞåëdãöKë)AÞ                  ¯¹ægƒÛowÐø^d™ý½ßB7áyMä9ÜÖUã
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
<html>
a
    Re=                     @   sz  d dl mZmZmZ d dlmZ d dlZd dlmZm	Z	 ddl
mZmZmZ ddl
mZmZmZ ddlmZmZ d d	lmZ d
ed Zede d Zede d Zi ZeddkZee D ]n\Z Z!eree!dksesee!dkrqe!dkree!dkre"e!Z!ne#e!Z!e!evs0e $ re ee!< qdd Z%ede% dddZ&G dd de'Z(G dd de)Z*dS )    )absolute_importdivisionunicode_literals)	text_typeN)register_errorxmlcharrefreplace_errors   )voidElementsbooleanAttributesspaceCharacters)rcdataElementsentitiesxmlEntities)treewalkers_utils)escape z"'=<>`[]u_    	
 /`  ᠎᠏               　]u   􏿿   &c           
   	   C   s  t | ttfrg }g }d}t| j| j| j D ]n\}}|rDd}q2|| j }t| j|t	| j|d g rt
| j||d  }d}nt|}|| q2|D ]V}t|}	|	r|d ||	 |	ds|d q|dt|dd    qd|| jfS t| S d S )NFr   Tr   ;z&#x%s;r   )
isinstanceUnicodeEncodeErrorUnicodeTranslateError	enumerateobjectstartendr   isSurrogatePairminsurrogatePairToCodepointordappend_encode_entity_mapgetendswithhexjoinr   )
excres
codepointsskipicindex	codepointcpe r3   /builddir/build/BUILDROOT/alt-python39-pip-21.3.1-2.el8.x86_64/opt/alt/python39/lib/python3.9/site-packages/pip/_vendor/html5lib/serializer.pyhtmlentityreplace_errors*   s0    
"



r5   htmlentityreplaceetreec                 K   s(   t |}tf i |}||| |S )a  Serializes the input token stream using the specified treewalker

    :arg input: the token stream to serialize

    :arg tree: the treewalker to use

    :arg encoding: the encoding to use

    :arg serializer_opts: any options to pass to the
        :py:class:`html5lib.serializer.HTMLSerializer` that gets created

    :returns: the tree serialized as a string

    Example:

    >>> from html5lib.html5parser import parse
    >>> from html5lib.serializer import serialize
    >>> token_stream = parse('<html><body><p>Hi!</p></body></html>')
    >>> serialize(token_stream, omit_optional_tags=False)
    '<html><head></head><body><p>Hi!</p></body></html>'

    )r   getTreeWalkerHTMLSerializerrender)inputtreeencodingserializer_optswalkersr3   r3   r4   	serializeK   s    
rA   c                   @   s~   e Zd ZdZdZdZdZdZdZdZ	dZ
dZdZdZdZdZdZdZdd Zdd	 Zd
d ZdddZdddZdddZdS )r9   legacy"TF)quote_attr_values
quote_charuse_best_quote_charomit_optional_tagsminimize_boolean_attributesuse_trailing_solidusspace_before_trailing_solidusescape_lt_in_attrsescape_rcdataresolve_entitiesalphabetical_attributesinject_meta_charsetstrip_whitespacesanitizec              
   K   sv   t |t | j }t|dkr2tdtt| d|v r@d| _| jD ]}t| |||t	| | qFg | _
d| _dS )aB
  Initialize HTMLSerializer

        :arg inject_meta_charset: Whether or not to inject the meta charset.

            Defaults to ``True``.

        :arg quote_attr_values: Whether to quote attribute values that don't
            require quoting per legacy browser behavior (``"legacy"``), when
            required by the standard (``"spec"``), or always (``"always"``).

            Defaults to ``"legacy"``.

        :arg quote_char: Use given quote character for attribute quoting.

            Defaults to ``"`` which will use double quotes unless attribute
            value contains a double quote, in which case single quotes are
            used.

        :arg escape_lt_in_attrs: Whether or not to escape ``<`` in attribute
            values.

            Defaults to ``False``.

        :arg escape_rcdata: Whether to escape characters that need to be
            escaped within normal elements within rcdata elements such as
            style.

            Defaults to ``False``.

        :arg resolve_entities: Whether to resolve named character entities that
            appear in the source tree. The XML predefined entities &lt; &gt;
            &amp; &quot; &apos; are unaffected by this setting.

            Defaults to ``True``.

        :arg strip_whitespace: Whether to remove semantically meaningless
            whitespace. (This compresses all whitespace to a single space
            except within ``pre``.)

            Defaults to ``False``.

        :arg minimize_boolean_attributes: Shortens boolean attributes to give
            just the attribute value, for example::

              <input disabled="disabled">

            becomes::

              <input disabled>

            Defaults to ``True``.

        :arg use_trailing_solidus: Includes a close-tag slash at the end of the
            start tag of void elements (empty elements whose end tag is
            forbidden). E.g. ``<hr/>``.

            Defaults to ``False``.

        :arg space_before_trailing_solidus: Places a space immediately before
            the closing slash in a tag using a trailing solidus. E.g.
            ``<hr />``. Requires ``use_trailing_solidus=True``.

            Defaults to ``True``.

        :arg sanitize: Strip all unsafe or unknown constructs from output.
            See :py:class:`html5lib.filters.sanitizer.Filter`.

            Defaults to ``False``.

        :arg omit_optional_tags: Omit start/end tags that are optional.

            Defaults to ``True``.

        :arg alphabetical_attributes: Reorder attributes to be in alphabetical order.

            Defaults to ``False``.

        r   z2__init__() got an unexpected keyword argument '%s'rE   FN)	frozensetoptionslen	TypeErrornextiterrF   setattrr%   getattrerrorsstrict)selfkwargsunexpected_argsattrr3   r3   r4   __init__   s    O
zHTMLSerializer.__init__c                 C   s*   t |tsJ | jr"|| jdS |S d S )Nr6   r   r   r=   encoder\   stringr3   r3   r4   rb      s    zHTMLSerializer.encodec                 C   s*   t |tsJ | jr"|| jdS |S d S )Nr[   ra   rc   r3   r3   r4   encodeStrict   s    zHTMLSerializer.encodeStrictNc                 c   s  || _ d}g | _|r0| jr0ddlm} |||}| jrJddlm} ||}| jrdddlm} ||}| j	r~ddl
m} ||}| jrddlm} ||}|D ]>}|d }|dkr\d|d  }|d r|d	|d  7 }n|d
 r|d7 }|d
 rF|d
 ddkr,|d
 ddkr&| d d}nd}|d||d
 |f 7 }|d7 }| |V  q|dv r|dksv|r|r|d ddkr| d | |d V  n| t|d V  q|dv r|d }	| d|	 V  |	tv r| jsd}n|r| d |d  D ]\\}
}}|}|}| dV  | |V  | jrv|t|	t vr|tdt vr| dV  | jdkst|dkrd}n@| jdkrt|d u}n$| jd krt|d u}ntd!|d"d#}| j r|d$d%}|r| j!}| j"rHd|v r0d|vr0d}nd|v rHd|vrHd}|dkr`|dd&}n|dd'}| |V  | |V  | |V  n| |V  q|	t#v r| j$r| j%r| d(V  n| d)V  | dV  q|d*kr(|d }	|	tv rd}n|r| d | d+|	 V  q|d,krj|d }|d-dkrT| d. | d/|d  V  q|d0kr|d }	|	d1 }|t&vr| d2|	  | j'r|t(vrt&| }nd3|	 }| |V  q| |d  qd S )4NFr   )FiltertypeDoctypez<!DOCTYPE %snamepublicIdz PUBLIC "%s"systemIdz SYSTEMrC   r   'zBSystem identifier contains both single and double quote charactersz %s%s%s>)
CharactersSpaceCharactersro   dataz</zUnexpected </ in CDATA)StartTagEmptyTagz<%sTz+Unexpected child element of a CDATA element r   =alwaysspecrB   z?quote_attr_values must be one of: 'always', 'spec', or 'legacy'r   z&amp;<z&lt;z&#39;z&quot;z //EndTagz</%s>Commentz--zComment contains --z	<!--%s-->Entityr   zEntity %s not recognizedz&%s;))r=   rZ   rO   filters.inject_meta_charsetrf   rN   filters.alphabeticalattributesrP   filters.whitespacerQ   filters.sanitizerrG   filters.optionaltagsfindserializeErrorre   rb   r   r   rL   itemsrH   r
   r%   tuplerD   rT   _quoteAttributeSpecsearch_quoteAttributeLegacy
ValueErrorreplacerK   rE   rF   r	   rI   rJ   r   rM   r   )r\   
treewalkerr=   in_cdatarf   tokenrg   doctyperE   ri   _	attr_name
attr_valuekv
quote_attrrp   keyr3   r3   r4   rA      s    


















zHTMLSerializer.serializec                 C   s2   |rd t| ||S d t| |S dS )an  Serializes the stream from the treewalker into a string

        :arg treewalker: the treewalker to serialize

        :arg encoding: the string encoding to use

        :returns: the serialized tree

        Example:

        >>> from html5lib import parse, getTreeWalker
        >>> from html5lib.serializer import HTMLSerializer
        >>> token_stream = parse('<html><body>Hi!</body></html>')
        >>> walker = getTreeWalker('etree')
        >>> serializer = HTMLSerializer(omit_optional_tags=False)
        >>> serializer.render(walker(token_stream))
        '<html><head></head><body>Hi!</body></html>'

            r   N)r(   listrA   )r\   r   r=   r3   r3   r4   r:   w  s    zHTMLSerializer.renderXXX ERROR MESSAGE NEEDEDc                 C   s   | j | | jrtd S )N)rZ   r#   r[   SerializeError)r\   rp   r3   r3   r4   r     s    zHTMLSerializer.serializeError)N)N)r   )__name__
__module____qualname__rD   rE   rF   rG   rH   rI   rJ   rK   rL   rM   rN   rO   rP   rQ   rS   r`   rb   re   rA   r:   r   r3   r3   r3   r4   r9   h   s,   Y
 

r9   c                   @   s   e Zd ZdZdS )r   zError in serialized treeN)r   r   r   __doc__r3   r3   r3   r4   r     s   r   )r7   N)+
__future__r   r   r   Zpip._vendor.sixr   recodecsr   r   	constantsr	   r
   r   r   r   r   r   r   r   xml.sax.saxutilsr   r(   _quoteAttributeSpecCharscompiler   r   r$   rT   _is_ucs4r   r   r   r   r!   r"   islowerr5   rA   r   r9   	Exceptionr   r3   r3   r3   r4   <module>   sD   





  1