-í
¼Ï<c       sì     d  Z  
  d f  d „  ƒ  YZ  d f  d „  ƒ  YZ & d f  d „  ƒ  YZ 6 d f  d „  ƒ  YZ [ d	 f  d
 „  ƒ  YZ „ d f  d „  ƒ  YZ   d f  d „  ƒ  YZ « d f  d „  ƒ  YZ µ d f  d „  ƒ  YZ	 Æ d f  d „  ƒ  YZ
 d S(   s  NS module -- XML Namespace constants

This module contains the definitions of namespaces (and sometimes other
URI's) used by a variety of XML standards.  Each class has a short
all-uppercase name, which should follow any (emerging) convention for
how that standard is commonly used.  For example, ds is almost always
used as the namespace prefixes for items in XML Signature, so DS is the
class name.   Attributes within that class, all uppercase, define symbolic
names (hopefully evocative) for "constants" used in that standard.
s   XMLNSc      s)    d  Z    d Z  d Z  d Z RS(   s  XMLNS, Namespaces in XML

    XMLNS (14-Jan-1999) is a W3C Recommendation.  It is specified in
    http://www.w3.org/TR/REC-xml-names
        BASE -- the basic namespace defined by the specification
        XML -- the namespace for XML 1.0
        HTML -- the namespace for HTML4.0
    s   http://www.w3.org/2000/xmlns/s$   http://www.w3.org/XML/1998/namespaces   http://www.w3.org/TR/REC-html40(   s   __doc__s   BASEs   XMLs   HTML(    (    (    s9   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/ns.pys   XMLNS s   			s   XLINKc      s    d  Z  ! # d Z RS(   sŒ   XLINK, XML Linking Language

    XLink (v1.0, 27-Jun-2001) is a W3C Recommendation.  It is
    specified in http://www.w3.org/TR/xlink/
    s   http://www.w3.org/1999/xlink(   s   __doc__s   BASE(    (    (    s9   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/ns.pys   XLINK s   	s   SOAPc      s)   & d  Z  / 1 d Z 2 d Z 3 d Z RS(   sL  SOAP, the Simple Object Access Protocol

    SOAP (v1.1, 8-May-2000) is a W3C note.  It is specified in
    http://www.w3.org/TR/SOAP
        ENV -- namespace for the SOAP envelope
        ENC -- namespace for the SOAP encoding in section 5
        ACTOR_NEXT -- the URI for the "next" actor
    (Note that no BASE is defined.)
    s)   http://schemas.xmlsoap.org/soap/envelope/s)   http://schemas.xmlsoap.org/soap/encoding/s*   http://schemas.xmlsoap.org/soap/actor/next(   s   __doc__s   ENVs   ENCs
   ACTOR_NEXT(    (    (    s9   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/ns.pys   SOAP& s   				s   DSIGc      s°   6 d  Z  I K d Z L e d Z M e d Z N e d Z O e d Z P e d Z Q e d Z R e d Z S e d	 Z	 T d
 Z
 U e
 d Z V d Z W d Z X d Z RS(   sl  DSIG, XML-Signature Syntax and Processing

    DSIG (19-Apr-2001) is a W3C Candidate Recommendation.  It is specified
    in http://www.w3.org/TR/xmldsig-core/
        BASE -- the basic namespace defined by the specification
        DIGEST_SHA1 -- The SHA-1 digest method
        DIGEST_MD2 -- The MD2 digest method
        DIGEST_MD5 -- The MD5 digest method
        SIG_DSA_SHA1 -- The DSA/DHA-1 signature method
        SIG_RSA_SHA1 -- The RSA/DHA-1 signature method
        HMAC_SHA1 -- The SHA-1 HMAC method
        ENC_BASE64 -- The Base64 encoding method
        ENVELOPED -- an enveloped XML signature
        C14N  -- XML canonicalization
        C14N_COMM  -- XML canonicalization, retaining comments
        C14N_EXCL  -- XML exclusive canonicalization
        XPATH -- The identifier for an XPATH transform
        XSLT -- The identifier for an XSLT transform
    s"   http://www.w3.org/2000/09/xmldsig#s   sha1s   md2s   md5s   dsa-sha1s   rsa-sha1s	   hmac-sha1s   base64s   enveloped-signatures.   http://www.w3.org/TR/2000/CR-xml-c14n-20010315s   #WithCommentss'   http://www.w3.org/2001/10/xml-exc-c14n#s,   http://www.w3.org/TR/1999/REC-xpath-19991116s+   http://www.w3.org/TR/1999/REC-xslt-19991116(   s   __doc__s   BASEs   DIGEST_SHA1s
   DIGEST_MD2s
   DIGEST_MD5s   SIG_DSA_SHA1s   SIG_RSA_SHA1s	   HMAC_SHA1s
   ENC_BASE64s	   ENVELOPEDs   C14Ns	   C14N_COMMs	   C14N_EXCLs   XPATHs   XSLT(    (    (    s9   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/ns.pys   DSIG6 s   					s
   ENCRYPTIONc      sÚ   [ d  Z  p r d Z s e d Z t e d Z u e d Z v e d Z w e d Z x e d Z y e d Z z e d	 Z	 { e d
 Z
 | e d Z } e d Z ~ e d Z  e d Z € e d Z  e d Z RS(   s  ENCRYPTION, XML-Encryption Syntax and Processing

    ENCRYPTION (26-Jun-2001) is a W3C Working Draft.  It is specified in
    http://www.w3.org/TR/xmlenc-core/
        BASE -- the basic namespace defined by the specification
        BLOCK_3DES -- The triple-DES symmetric encryption method
        BLOCK_AES128 -- The 128-bit AES symmetric encryption method
        BLOCK_AES256 -- The 256-bit AES symmetric encryption method
        BLOCK_AES192 -- The 192-bit AES symmetric encryption method
        STREAM_ARCFOUR -- The ARCFOUR symmetric encryption method
        KT_RSA_1_5 -- The RSA v1.5 key transport method
        KT_RSA_OAEP -- The RSA OAEP key transport method
        KA_DH -- The Diffie-Hellman key agreement method
        WRAP_3DES -- The triple-DES symmetric key wrap method
        WRAP_AES128 -- The 128-bit AES symmetric key wrap method
        WRAP_AES256 -- The 256-bit AES symmetric key wrap method
        WRAP_AES192 -- The 192-bit AES symmetric key wrap method
        DIGEST_SHA256 -- The SHA-256 digest method
        DIGEST_SHA512 -- The SHA-512 digest method
        DIGEST_RIPEMD160 -- The RIPEMD-160 digest method
    s!   http://www.w3.org/2001/04/xmlenc#s   des-cbcs
   aes128-cbcs
   aes256-cbcs
   aes192-cbcs   arcfours   rsa-1_5s   rsa-oaep-mgf1ps   dhs   kw-3dess	   kw-aes128s	   kw-aes256s	   kw-aes192s   sha256s   sha512s	   ripemd160(   s   __doc__s   BASEs
   BLOCK_3DESs   BLOCK_AES128s   BLOCK_AES256s   BLOCK_AES192s   STREAM_ARCFOURs
   KT_RSA_1_5s   KT_RSA_OAEPs   KA_DHs	   WRAP_3DESs   WRAP_AES128s   WRAP_AES256s   WRAP_AES192s   DIGEST_SHA256s   DIGEST_SHA512s   DIGEST_RIPEMD160(    (    (    s9   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/ns.pys
   ENCRYPTION[ s"   		s   SCHEMAc      sq   „ d  Z  “ • d Z – d Z — d Z ˜ e e e g Z ™ d Z š d Z › d Z œ e e e g Z  e Z	 RS(   sÝ  SCHEMA, XML Schema

    XML Schema (30-Mar-2001) is a W3C candidate recommendation.  It is
    specified in http://www.w3.org/TR/xmlschema-1 (Structures) and
    http://www.w3.org/TR/xmlschema-2 (Datatypes). Schema has been under
    development for a comparitively long time, and other standards have
    at times used earlier drafts.  This class defines the most-used, and
    sets BASE to the latest.
        BASE -- the basic namespace (2001)
        XSD1, XSI1 -- schema and schema-instance for 1999
        XSD2, XSI2 -- schema and schema-instance for October 2000
        XSD3, XSI3 -- schema and schema-instance for 2001
        XSD_LIST -- a sequence of the XSDn values
        XSI_LIST -- a sequence of the XSIn values
    s    http://www.w3.org/1999/XMLSchemas#   http://www.w3.org/2000/10/XMLSchemas    http://www.w3.org/2001/XMLSchemas)   http://www.w3.org/1999/XMLSchema-instances,   http://www.w3.org/2000/10/XMLSchema-instances)   http://www.w3.org/2001/XMLSchema-instance(
   s   __doc__s   XSD1s   XSD2s   XSD3s   XSD_LISTs   XSI1s   XSI2s   XSI3s   XSI_LISTs   BASE(    (    (    s9   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/ns.pys   SCHEMA„ s   							s   XSLTc      s     d  Z  ¦ ¨ d Z RS(   sÄ   XSLT, XSL Transformations

    XSLT (16-Nov-1999) is a W3C Recommendation.  It is specified in
    http://www.w3.org/TR/xslt/
        BASE -- the basic namespace defined by this specification
    s$   http://www.w3.org/1999/XSL/Transform(   s   __doc__s   BASE(    (    (    s9   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/ns.pys   XSLT  s   	s   XPATHc      s   « d  Z  ° ² RS(   s£   XPATH, XML Path Language

    XPATH (16-Nov-1999) is a W3C Recommendation.  It is specified in
    http://www.w3.org/TR/xpath.  This class is currently empty.
    (   s   __doc__(    (    (    s9   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/ns.pys   XPATH« s   	s   WSDLc      s>   µ d  Z  ¾ À d Z Á e d Z Â e d Z Ã e d Z RS(   s[  WSDL, Web Services Description Language

    WSDL (V1.1, 15-Mar-2001) is a W3C Note.  It is specified in
    http://www.w3.org/TR/wsdl
        BASE -- the basic namespace defined by this specification
        BIND_SOAP -- SOAP binding for WSDL
        BIND_HTTP -- HTTP GET and POST binding for WSDL
        BIND_MIME -- MIME binding for WSDL
    s    http://schemas.xmlsoap.org/wsdl/s   soap/s   http/s   mime/(   s   __doc__s   BASEs	   BIND_SOAPs	   BIND_HTTPs	   BIND_MIME(    (    (    s9   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/ns.pys   WSDLµ s
   			s   RNGc      s   Æ d  Z  Ì Í d Z RS(   sô   RELAX NG, schema language for XML

    RELAX NG (03-Dec-2001) is a simple schema languge for XML,
    published under the auspices of OASIS.  The specification, tutorial,
    and other information are available from http://www.relaxng.org.
    s#   http://relaxng.org/ns/structure/1.0(   s   __doc__s   BASE(    (    (    s9   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/ns.pys   RNGÆ s   	N(   s   __doc__s   XMLNSs   XLINKs   SOAPs   DSIGs
   ENCRYPTIONs   SCHEMAs   XSLTs   XPATHs   WSDLs   RNG(
   s   SOAPs   XPATHs   XMLNSs   XSLTs
   ENCRYPTIONs   WSDLs   SCHEMAs   RNGs   XLINKs   DSIG(    (    s9   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/ns.pys   ?
 s   
%)
