*ë
2Û;c       sî     d  Z  % ' h  d d <d d <d d <d d <d	 d
 <d d <d d <d d <Z 8 y 9 e d i d ƒ d Z Wn : ; d Z n XE d k Z K d „  Z S d e i i f d „  ƒ  YZ … d e i i	 f d „  ƒ  YZ
 d S(   s:  Raw (pass-through) docstring converter.

    This converter does not modify its inputs in any way.

    This is most useful for internal calls in a formatter.  For
    instance, if a formatter calls self.writeText() and passes text
    that it has produced, it can use "RawText" as the 'textFormat'
    argument.

s"   $RCSfile: docstring_RawText.py,v $s   module_namesF   $Id: docstring_RawText.py,v 1.2 2001/10/27 19:59:46 doughellmann Exp $s   rcs_ids(   Doug Hellmann <DougHellmann@bigfoot.com>s   creators   UNSPECIFIEDs   projects   Wed, 26-Sep-2001 09:52:01 EDTs   createds   $Author: doughellmann $s   authors   $Revision: 1.2 $s   versions   $Date: 2001/10/27 19:59:46 $s   dates    i   s   0.0Nc      s,   K L M h  d d <t  d <g  d <Sd S(   s;   Return information about this module to the dynamic loader.s   RawTexts   names   factorys   filenamePatternListN(   s   RawTextConverter(    (    (    se   /home/dhellmann/Personal/Devel/HappyDoc/dist/HappyDoc-r2_0/happydoclib/docstring/docstring_RawText.pys
   entryPointK s   s   RawTextConverterc      s&   S d  Z  ] _ d „  Z p d „  Z RS(   s=  Raw (pass-through) docstring converter.

    This is most useful for internal calls in a formatter.  For
    instance, if a formatter calls self.writeText() and passes text
    that it has produced, it can use "RawText" as the 'textFormat'
    argument.

    This converter is not recommended for most uses.
    
    c    s   _ m n | Sd S(   s  Returns the 'inputText' data translated into the 'outputFormat'.

        Parameters:

          'inputText' -- String or other sequence of characters to be
          converted.  This string should be in the format advertised
          by the docstring converter.

          'outputFormat' -- String defined by the docstring converter
          class to represent a supported output scheme.  This value is
          converter-specific, and not all converters will support the
          same output formats.
        
        N(   s	   inputText(   s   selfs	   inputTexts   outputFormats   argss	   namedArgs(    (    se   /home/dhellmann/Personal/Devel/HappyDoc/dist/HappyDoc-r2_0/happydoclib/docstring/docstring_RawText.pys   convert_ s   c    s   p ‚ ƒ | Sd S(   s³  Returns the 'inputText' quoted in a way that special characters are escaped.

        Parameters:

          'inputText' -- String or other sequence of characters to be
          converted.  This string should be in the format advertised
          by the docstring converter.

          'outputFormat' -- String defined by the docstring converter
          class to represent a supported output scheme.  This value is
          converter-specific, and not all converters will support the
          same output formats.

          '*args' -- Additional, converter-specific, positional arguments.

          '**namedArgs' -- Additional, converter-specific, named arguments.
          
        N(   s	   inputText(   s   selfs	   inputTexts   outputFormats   argss	   namedArgs(    (    se   /home/dhellmann/Personal/Devel/HappyDoc/dist/HappyDoc-r2_0/happydoclib/docstring/docstring_RawText.pys   quotep s   (   s   __doc__s   converts   quote(    (    (    se   /home/dhellmann/Personal/Devel/HappyDoc/dist/HappyDoc-r2_0/happydoclib/docstring/docstring_RawText.pys   RawTextConverterS s   	
s   RawTextUnitTestc      s   … ‡ d „  Z  ‘ d „  Z RS(   Nc    s9   ‡ ˆ d } Œ |  i | d d  | Ž d ƒ  d  Sd  S(   NsD   This is some text.

        It includes several paragraphs.
        s   RawTexts   htmls   RawText conversion failed.(   s   conversion_texts   selfs   _testConversion(   s   selfs   conversion_text(    (    se   /home/dhellmann/Personal/Devel/HappyDoc/dist/HappyDoc-r2_0/happydoclib/docstring/docstring_RawText.pys   testConvertRaw‡ s
   	
c    s9   ‘ ’ d } “ |  i | d d ” | • d ƒ — d  Sd  S(   NsH   <html><head><title>Title</title></head><body>Hi&nbsp;there</body></html>s   RawTexts   htmls   RawText quote failed.(   s
   quote_texts   selfs
   _testQuote(   s   selfs
   quote_text(    (    se   /home/dhellmann/Personal/Devel/HappyDoc/dist/HappyDoc-r2_0/happydoclib/docstring/docstring_RawText.pys   testQuoteRaw‘ s
   	
(   s   testConvertRaws   testQuoteRaw(    (    (    se   /home/dhellmann/Personal/Devel/HappyDoc/dist/HappyDoc-r2_0/happydoclib/docstring/docstring_RawText.pys   RawTextUnitTest… s   
(   s   __doc__s   __rcs_info__s   splits   __version__s   happydoclibs
   entryPoints   happydocstrings   HappyDocStringConverterBases   RawTextConverters   DocStringConverterTests   RawTextUnitTest(   s   __rcs_info__s   happydoclibs   __version__s   RawTextUnitTests   RawTextConverters
   entryPoint(    (    se   /home/dhellmann/Personal/Devel/HappyDoc/dist/HappyDoc-r2_0/happydoclib/docstring/docstring_RawText.pys   ?% s   Q
2