???<!-- GIF89;a -->
123123123123
.....................................................................................................................................???<!-- GIF89;a -->
123123123123
.....................................................................................................................................ó
¿œ^c           @   s‡   d  Z  d d l Z d d l m Z m Z m Z d e j f d „  ƒ  YZ e d k rƒ e ƒ  Z	 e	 j
 e ƒ  ƒ e	 j e j d ƒ n  d S(   ss   
A simple demo that reads in an XML document and spits out an equivalent,
but not necessarily identical, document.
iÿÿÿÿN(   t   saxutilst   handlert   make_parsert   ContentGeneratorc           B   sM   e  Z e j d  „ Z d „  Z d „  Z d „  Z d „  Z d „  Z	 d „  Z
 RS(   c         C   s   t  j j |  ƒ | |  _ d  S(   N(   R   t   ContentHandlert   __init__t   _out(   t   selft   out(    (    s*   /usr/lib64/python2.7/Demo/xml/roundtrip.pyR      s    c         C   s   |  j  j d ƒ d  S(   Ns,   <?xml version="1.0" encoding="iso-8859-1"?>
(   R   t   write(   R   (    (    s*   /usr/lib64/python2.7/Demo/xml/roundtrip.pyt   startDocument   s    c         C   sh   |  j  j d | ƒ x= | j ƒ  D]/ \ } } |  j  j d | t j | ƒ f ƒ q! W|  j  j d ƒ d  S(   Nt   <s    %s="%s"t   >(   R   R	   t   itemsR    t   escape(   R   t   namet   attrst   value(    (    s*   /usr/lib64/python2.7/Demo/xml/roundtrip.pyt   startElement   s    'c         C   s   |  j  j d | ƒ d  S(   Ns   </%s>(   R   R	   (   R   R   (    (    s*   /usr/lib64/python2.7/Demo/xml/roundtrip.pyt
   endElement   s    c         C   s   |  j  j t j | ƒ ƒ d  S(   N(   R   R	   R    R   (   R   t   content(    (    s*   /usr/lib64/python2.7/Demo/xml/roundtrip.pyt
   characters    s    c         C   s   |  j  j | ƒ d  S(   N(   R   R	   (   R   R   (    (    s*   /usr/lib64/python2.7/Demo/xml/roundtrip.pyt   ignorableWhitespace#   s    c         C   s   |  j  j d | | f ƒ d  S(   Ns	   <?%s %s?>(   R   R	   (   R   t   targett   data(    (    s*   /usr/lib64/python2.7/Demo/xml/roundtrip.pyt   processingInstruction&   s    (   t   __name__t
   __module__t   syst   stdoutR   R
   R   R   R   R   R   (    (    (    s*   /usr/lib64/python2.7/Demo/xml/roundtrip.pyR      s   					t   __main__i   (   t   __doc__R   t   xml.saxR    R   R   R   R   R   t   parsert   setContentHandlert   parset   argv(    (    (    s*   /usr/lib64/python2.7/Demo/xml/roundtrip.pyt   <module>   s   	