PHP 8.1.33
Preview: string.py Size: 11.52 KB
/usr/lib64/python3.6/string.py

"""A collection of string constants.

Public module variables:

whitespace -- a string containing all ASCII whitespace
ascii_lowercase -- a string containing all ASCII lowercase letters
ascii_uppercase -- a string containing all ASCII uppercase letters
ascii_letters -- a string containing all ASCII letters
digits -- a string containing all ASCII decimal digits
hexdigits -- a string containing all ASCII hexadecimal digits
octdigits -- a string containing all ASCII octal digits
punctuation -- a string containing all ASCII punctuation characters
printable -- a string containing all ASCII characters considered printable

"""

__all__ = ["ascii_letters", "ascii_lowercase", "ascii_uppercase", "capwords",
           "digits", "hexdigits", "octdigits", "printable", "punctuation",
           "whitespace", "Formatter", "Template"]

import _string

# Some strings for ctype-style character classification
whitespace = ' \t\n\r\v\f'
ascii_lowercase = 'abcdefghijklmnopqrstuvwxyz'
ascii_uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
ascii_letters = ascii_lowercase + ascii_uppercase
digits = '0123456789'
hexdigits = digits + 'abcdef' + 'ABCDEF'
octdigits = '01234567'
punctuation = r"""!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~"""
printable = digits + ascii_letters + punctuation + whitespace

# Functions which aren't available as string methods.

# Capitalize the words in a string, e.g. " aBc  dEf " -> "Abc Def".
def capwords(s, sep=None):
    """capwords(s [,sep]) -> string

    Split the argument into words using split, capitalize each
    word using capitalize, and join the capitalized words using
    join.  If the optional second argument sep is absent or None,
    runs of whitespace characters are replaced by a single space
    and leading and trailing whitespace are removed, otherwise
    sep is used to split and join the words.

    """
    return (sep or ' ').join(x.capitalize() for x in s.split(sep))


####################################################################
import re as _re
from collections import ChainMap as _ChainMap

class _TemplateMetaclass(type):
    pattern = r"""
    %(delim)s(?:
      (?P<escaped>%(delim)s) |   # Escape sequence of two delimiters
      (?P<named>%(id)s)      |   # delimiter and a Python identifier
      {(?P<braced>%(id)s)}   |   # delimiter and a braced identifier
      (?P<invalid>)              # Other ill-formed delimiter exprs
    )
    """

    def __init__(cls, name, bases, dct):
        super(_TemplateMetaclass, cls).__init__(name, bases, dct)
        if 'pattern' in dct:
            pattern = cls.pattern
        else:
            pattern = _TemplateMetaclass.pattern % {
                'delim' : _re.escape(cls.delimiter),
                'id'    : cls.idpattern,
                }
        cls.pattern = _re.compile(pattern, cls.flags | _re.VERBOSE)


class Template(metaclass=_TemplateMetaclass):
    """A string class for supporting $-substitutions."""

    delimiter = '$'
    # r'[a-z]' matches to non-ASCII letters when used with IGNORECASE,
    # but without ASCII flag.  We can't add re.ASCII to flags because of
    # backward compatibility.  So we use local -i flag and [a-zA-Z] pattern.
    # See https://bugs.python.org/issue31672
    idpattern = r'(?-i:[_a-zA-Z][_a-zA-Z0-9]*)'
    flags = _re.IGNORECASE

    def __init__(self, template):
        self.template = template

    # Search for $$, $identifier, ${identifier}, and any bare $'s

    def _invalid(self, mo):
        i = mo.start('invalid')
        lines = self.template[:i].splitlines(keepends=True)
        if not lines:
            colno = 1
            lineno = 1
        else:
            colno = i - len(''.join(lines[:-1]))
            lineno = len(lines)
        raise ValueError('Invalid placeholder in string: line %d, col %d' %
                         (lineno, colno))

    def substitute(*args, **kws):
        if not args:
            raise TypeError("descriptor 'substitute' of 'Template' object "
                            "needs an argument")
        self, *args = args  # allow the "self" keyword be passed
        if len(args) > 1:
            raise TypeError('Too many positional arguments')
        if not args:
            mapping = kws
        elif kws:
            mapping = _ChainMap(kws, args[0])
        else:
            mapping = args[0]
        # Helper function for .sub()
        def convert(mo):
            # Check the most common path first.
            named = mo.group('named') or mo.group('braced')
            if named is not None:
                return str(mapping[named])
            if mo.group('escaped') is not None:
                return self.delimiter
            if mo.group('invalid') is not None:
                self._invalid(mo)
            raise ValueError('Unrecognized named group in pattern',
                             self.pattern)
        return self.pattern.sub(convert, self.template)

    def safe_substitute(*args, **kws):
        if not args:
            raise TypeError("descriptor 'safe_substitute' of 'Template' object "
                            "needs an argument")
        self, *args = args  # allow the "self" keyword be passed
        if len(args) > 1:
            raise TypeError('Too many positional arguments')
        if not args:
            mapping = kws
        elif kws:
            mapping = _ChainMap(kws, args[0])
        else:
            mapping = args[0]
        # Helper function for .sub()
        def convert(mo):
            named = mo.group('named') or mo.group('braced')
            if named is not None:
                try:
                    return str(mapping[named])
                except KeyError:
                    return mo.group()
            if mo.group('escaped') is not None:
                return self.delimiter
            if mo.group('invalid') is not None:
                return mo.group()
            raise ValueError('Unrecognized named group in pattern',
                             self.pattern)
        return self.pattern.sub(convert, self.template)



########################################################################
# the Formatter class
# see PEP 3101 for details and purpose of this class

# The hard parts are reused from the C implementation.  They're exposed as "_"
# prefixed methods of str.

# The overall parser is implemented in _string.formatter_parser.
# The field name parser is implemented in _string.formatter_field_name_split

class Formatter:
    def format(*args, **kwargs):
        if not args:
            raise TypeError("descriptor 'format' of 'Formatter' object "
                            "needs an argument")
        self, *args = args  # allow the "self" keyword be passed
        try:
            format_string, *args = args # allow the "format_string" keyword be passed
        except ValueError:
            if 'format_string' in kwargs:
                format_string = kwargs.pop('format_string')
                import warnings
                warnings.warn("Passing 'format_string' as keyword argument is "
                              "deprecated", DeprecationWarning, stacklevel=2)
            else:
                raise TypeError("format() missing 1 required positional "
                                "argument: 'format_string'") from None
        return self.vformat(format_string, args, kwargs)

    def vformat(self, format_string, args, kwargs):
        used_args = set()
        result, _ = self._vformat(format_string, args, kwargs, used_args, 2)
        self.check_unused_args(used_args, args, kwargs)
        return result

    def _vformat(self, format_string, args, kwargs, used_args, recursion_depth,
                 auto_arg_index=0):
        if recursion_depth < 0:
            raise ValueError('Max string recursion exceeded')
        result = []
        for literal_text, field_name, format_spec, conversion in \
                self.parse(format_string):

            # output the literal text
            if literal_text:
                result.append(literal_text)

            # if there's a field, output it
            if field_name is not None:
                # this is some markup, find the object and do
                #  the formatting

                # handle arg indexing when empty field_names are given.
                if field_name == '':
                    if auto_arg_index is False:
                        raise ValueError('cannot switch from manual field '
                                         'specification to automatic field '
                                         'numbering')
                    field_name = str(auto_arg_index)
                    auto_arg_index += 1
                elif field_name.isdigit():
                    if auto_arg_index:
                        raise ValueError('cannot switch from manual field '
                                         'specification to automatic field '
                                         'numbering')
                    # disable auto arg incrementing, if it gets
                    # used later on, then an exception will be raised
                    auto_arg_index = False

                # given the field_name, find the object it references
                #  and the argument it came from
                obj, arg_used = self.get_field(field_name, args, kwargs)
                used_args.add(arg_used)

                # do any conversion on the resulting object
                obj = self.convert_field(obj, conversion)

                # expand the format spec, if needed
                format_spec, auto_arg_index = self._vformat(
                    format_spec, args, kwargs,
                    used_args, recursion_depth-1,
                    auto_arg_index=auto_arg_index)

                # format the object and append to the result
                result.append(self.format_field(obj, format_spec))

        return ''.join(result), auto_arg_index


    def get_value(self, key, args, kwargs):
        if isinstance(key, int):
            return args[key]
        else:
            return kwargs[key]


    def check_unused_args(self, used_args, args, kwargs):
        pass


    def format_field(self, value, format_spec):
        return format(value, format_spec)


    def convert_field(self, value, conversion):
        # do any conversion on the resulting object
        if conversion is None:
            return value
        elif conversion == 's':
            return str(value)
        elif conversion == 'r':
            return repr(value)
        elif conversion == 'a':
            return ascii(value)
        raise ValueError("Unknown conversion specifier {0!s}".format(conversion))


    # returns an iterable that contains tuples of the form:
    # (literal_text, field_name, format_spec, conversion)
    # literal_text can be zero length
    # field_name can be None, in which case there's no
    #  object to format and output
    # if field_name is not None, it is looked up, formatted
    #  with format_spec and conversion and then used
    def parse(self, format_string):
        return _string.formatter_parser(format_string)


    # given a field_name, find the object it references.
    #  field_name:   the field being looked up, e.g. "0.name"
    #                 or "lookup[3]"
    #  used_args:    a set of which args have been used
    #  args, kwargs: as passed in to vformat
    def get_field(self, field_name, args, kwargs):
        first, rest = _string.formatter_field_name_split(field_name)

        obj = self.get_value(first, args, kwargs)

        # loop through the rest of the field_name, doing
        #  getattr or getitem as needed
        for is_attr, i in rest:
            if is_attr:
                obj = getattr(obj, i)
            else:
                obj = obj[i]

        return obj, first

Directory Contents

Dirs: 30 × Files: 170

Name Size Perms Modified Actions
asyncio DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
- drwxr-xr-x 2025-08-29 08:32:23
Edit Download
ctypes DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
curses DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
dbm DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
distutils DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
email DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
encodings DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
ensurepip DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
html DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
http DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
importlib DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
json DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
lib2to3 DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
logging DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
- drwxr-xr-x 2025-10-31 08:30:39
Edit Download
sqlite3 DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
test DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
unittest DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
urllib DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
venv DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
wsgiref DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
xml DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
xmlrpc DIR
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
- drwxr-xr-x 2025-08-29 08:32:10
Edit Download
8.52 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
31.69 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
477 B lrw-r--r-- 2018-12-23 21:37:14
Edit Download
88.25 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
11.88 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
11.06 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
19.69 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
19.91 KB lrwxr-xr-x 2018-12-23 21:37:14
Edit Download
23.00 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
13.63 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
2.53 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
12.19 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
22.67 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
36.35 KB lrwxr-xr-x 2025-08-26 08:58:55
Edit Download
11.74 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
5.30 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
14.51 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
10.37 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
35.43 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
5.85 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
3.97 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
11.84 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
52.34 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
12.85 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
8.61 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
6.84 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
5.25 KB lrwxr-xr-x 2018-12-23 21:37:14
Edit Download
1.82 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
15.80 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
80.11 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
320 B lrw-r--r-- 2018-12-23 21:37:14
Edit Download
82.40 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
17.71 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
101.94 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
2.75 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
32.82 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
9.60 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
14.13 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
3.09 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
14.79 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
23.08 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
34.78 KB lrw-r--r-- 2025-08-26 08:58:55
Edit Download
30.61 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
4.91 KB lrw-r--r-- 2025-08-26 08:58:55
Edit Download
7.31 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
5.85 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
21.03 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
5.51 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
19.86 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
8.59 KB lrw-r--r-- 2025-08-26 08:58:55
Edit Download
22.39 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
6.23 KB lrw-r--r-- 2025-08-26 08:58:55
Edit Download
52.05 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
3.71 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
10.42 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
114.22 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
3.43 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
75.99 KB lrw-r--r-- 2025-08-26 08:58:55
Edit Download
2.17 KB lrwxr-xr-x 2018-12-23 21:37:14
Edit Download
5.19 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
75.49 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
12.68 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
5.83 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
2.67 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
76.78 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
8.85 KB lrw-r--r-- 2025-08-26 08:58:55
Edit Download
20.55 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
22.49 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
5.55 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
42.07 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
22.55 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
2.39 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
10.00 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
5.69 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
10.61 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
58.96 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
36.65 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
45.15 KB lrw-r--r-- 2025-08-26 08:58:55
Edit Download
59.88 KB lrwxr-xr-x 2018-12-23 21:37:14
Edit Download
54.39 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
89.62 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
8.71 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
20.82 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
46.11 KB lrwxr-xr-x 2025-08-26 08:58:55
Edit Download
31.53 KB lrw-r--r-- 2025-08-26 08:58:55
Edit Download
14.61 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
15.94 KB lrw-r--r-- 2025-08-26 08:58:55
Edit Download
20.37 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
21.51 KB lrwxr-xr-x 2018-12-23 21:37:14
Edit Download
25.94 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
4.65 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
13.24 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
101.08 KB lrw-r--r-- 2025-08-26 09:08:09
Edit Download
7.01 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
8.57 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
7.09 KB lrwxr-xr-x 2018-12-23 21:37:14
Edit Download
26.80 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
15.19 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
5.21 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
6.93 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
11.68 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
6.36 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
1.99 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
18.98 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
8.32 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
12.65 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
39.87 KB lrw-r--r-- 2025-08-26 08:58:55
Edit Download
2.07 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
20.77 KB lrw-r--r-- 2025-08-26 08:58:55
Edit Download
33.91 KB lrwxr-xr-x 2018-12-23 21:37:14
Edit Download
43.18 KB lrwxr-xr-x 2018-12-23 21:37:14
Edit Download
6.92 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
26.80 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
26.38 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
18.88 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
6.66 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
35.68 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
43.47 KB lrw-r--r-- 2025-08-26 08:58:55
Edit Download
4.92 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
20.19 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
11.52 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
12.61 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
257 B lrw-r--r-- 2018-12-23 21:37:14
Edit Download
60.88 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
17.67 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
2.07 KB lrwxr-xr-x 2018-12-23 21:37:14
Edit Download
7.11 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
24.29 KB lrw-r--r-- 2025-08-26 09:08:08
Edit Download
11.14 KB lrwxr-xr-x 2018-12-23 21:37:14
Edit Download
109.02 KB lrwxr-xr-x 2025-08-26 08:58:55
Edit Download
22.59 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
27.41 KB lrw-r--r-- 2025-08-26 08:58:55
Edit Download
19.10 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
1003 B lrw-r--r-- 2018-12-23 21:37:14
Edit Download
48.96 KB lrw-r--r-- 2025-08-26 08:58:55
Edit Download
13.03 KB lrwxr-xr-x 2018-12-23 21:37:14
Edit Download
3.00 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
28.80 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
28.06 KB lrwxr-xr-x 2018-12-23 21:37:14
Edit Download
22.91 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
16.27 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
879 B lrw-r--r-- 2018-12-23 21:37:14
Edit Download
8.66 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
78.39 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
6.60 KB lrwxr-xr-x 2018-12-23 21:37:14
Edit Download
23.46 KB lrw-r--r-- 2025-08-26 08:58:55
Edit Download
18.05 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
17.29 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
19.99 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
21.26 KB lrwxr-xr-x 2018-12-23 21:37:14
Edit Download
5.77 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
6.99 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
78.05 KB lrw-r--r-- 2025-08-26 08:58:55
Edit Download
1.27 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
25.77 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
8.54 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
5.21 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
5.00 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
14.26 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
18.69 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
224.83 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
86.03 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
3.04 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
24.17 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
29.48 KB lrw-r--r-- 2025-08-26 09:00:17
Edit Download
29.66 KB lrw-r--r-- 2025-08-26 09:06:58
Edit Download
7.04 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
5.57 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
4.73 KB lrw-r--r-- 2018-12-23 21:37:14
Edit Download
64 B lrw-r--r-- 2018-12-23 21:37:14
Edit Download

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