Sha256: b968562fc26cc33b9ce65f993a09cc83cbfb211d35cae514370e283e0955ac81
Contents?: true
Size: 982 Bytes
Versions: 2
Compression:
Stored size: 982 Bytes
Contents
# # Trivial bookmarklet/escaped script detector for the javascript beautifier # written by Einar Lielmanis <einar@jsbeautifier.org> # rewritten in Python by Stefano Sanfilippo <a.little.coder@gmail.com> # # Will always return valid javascript: if `detect()` is false, `code` is # returned, unmodified. # # usage: # # some_string = urlencode.unpack(some_string) # """Bookmarklet/escaped script unpacker.""" # Python 2 retrocompatibility # pylint: disable=F0401 # pylint: disable=E0611 try: from urllib import unquote_plus except ImportError: from urllib.parse import unquote_plus PRIORITY = 0 def detect(code): """Detects if a scriptlet is urlencoded.""" # the fact that script doesn't contain any space, but has %20 instead # should be sufficient check for now. return ' ' not in code and ('%20' in code or code.count('%') > 3) def unpack(code): """URL decode `code` source string.""" return unquote_plus(code) if detect(code) else code
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
js-beautify-0.1.8 | js-beautify-copy/python/jsbeautifier/unpackers/urlencode.py |
js-beautify-0.1.7 | js-beautify-copy/python/jsbeautifier/unpackers/urlencode.py |