PHP 8.0.30
Preview: quoting.py Size: 2.42 KB
//opt/alt/python37/lib/python3.7/site-packages/paste/util/quoting.py

# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php

import cgi
import htmlentitydefs
import urllib
import re

__all__ = ['html_quote', 'html_unquote', 'url_quote', 'url_unquote',
           'strip_html']

default_encoding = 'UTF-8'

def html_quote(v, encoding=None):
    r"""
    Quote the value (turned to a string) as HTML.  This quotes <, >,
    and quotes:

    >>> html_quote(1)
    '1'
    >>> html_quote(None)
    ''
    >>> html_quote('<hey!>')
    '&lt;hey!&gt;'
    >>> html_quote(u'\u1029')
    '\xe1\x80\xa9'
    """
    encoding = encoding or default_encoding
    if v is None:
        return ''
    elif isinstance(v, str):
        return cgi.escape(v, 1)
    elif isinstance(v, unicode):
        return cgi.escape(v.encode(encoding), 1)
    else:
        return cgi.escape(unicode(v).encode(encoding), 1)

_unquote_re = re.compile(r'&([a-zA-Z]+);')
def _entity_subber(match, name2c=htmlentitydefs.name2codepoint):
    code = name2c.get(match.group(1))
    if code:
        return unichr(code)
    else:
        return match.group(0)

def html_unquote(s, encoding=None):
    r"""
    Decode the value.

    >>> html_unquote('&lt;hey&nbsp;you&gt;')
    u'<hey\xa0you>'
    >>> html_unquote('')
    u''
    >>> html_unquote('&blahblah;')
    u'&blahblah;'
    >>> html_unquote('\xe1\x80\xa9')
    u'\u1029'
    """
    if isinstance(s, str):
        if s == '':
            # workaround re.sub('', '', u'') returning '' < 2.5.2
            # instead of u'' >= 2.5.2
            return u''
        s = s.decode(encoding or default_encoding)
    return _unquote_re.sub(_entity_subber, s)

def strip_html(s):
    # should this use html_unquote?
    s = re.sub('<.*?>', '', s)
    s = html_unquote(s)
    return s

def no_quote(s):
    """
    Quoting that doesn't do anything
    """
    return s

_comment_quote_re = re.compile(r'\-\s*\>')
# Everything but \r, \n, \t:
_bad_chars_re = re.compile('[\x00-\x08\x0b-\x0c\x0e-\x1f]')
def comment_quote(s):
    """
    Quote that makes sure text can't escape a comment
    """
    comment = str(s)
    #comment = _bad_chars_re.sub('', comment)
    #print 'in ', repr(str(s))
    #print 'out', repr(comment)
    comment = _comment_quote_re.sub('-&gt;', comment)
    return comment

url_quote = urllib.quote
url_unquote = urllib.unquote

if __name__ == '__main__':
    import doctest
    doctest.testmod()

Directory Contents

Dirs: 3 × Files: 25

Name Size Perms Modified Actions
looper DIR
- drwxr-xr-x 2021-10-11 07:57:11
Edit Download
template DIR
- drwxr-xr-x 2021-10-11 07:57:11
Edit Download
- drwxr-xr-x 2021-10-11 07:57:11
Edit Download
1.81 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
1.34 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
863 B lrw-r--r-- 2011-12-21 17:12:02
Edit Download
2.36 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
10.91 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
97.09 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
1.40 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
3.75 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
786 B lrw-r--r-- 2011-12-21 17:12:02
Edit Download
3.04 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
18.68 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
9.05 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
1.20 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
3.88 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
6.44 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
11.14 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
83.85 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
2.42 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
5.50 KB lrw-r--r-- 2019-12-10 18:23:38
Edit Download
16.35 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
23.73 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
8.02 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
1.45 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
5.39 KB lrw-r--r-- 2011-12-21 17:12:02
Edit Download
86 B lrw-r--r-- 2011-12-21 17:12:02
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).