PHP 8.2.30
Preview: plistlib.py Size: 14.43 KB
/opt/alt/python33/lib64/python3.3/plistlib.py

r"""plistlib.py -- a tool to generate and parse MacOSX .plist files.

The property list (.plist) file format is a simple XML pickle supporting
basic object types, like dictionaries, lists, numbers and strings.
Usually the top level object is a dictionary.

To write out a plist file, use the writePlist(rootObject, pathOrFile)
function. 'rootObject' is the top level object, 'pathOrFile' is a
filename or a (writable) file object.

To parse a plist from a file, use the readPlist(pathOrFile) function,
with a file name or a (readable) file object as the only argument. It
returns the top level object (again, usually a dictionary).

To work with plist data in bytes objects, you can use readPlistFromBytes()
and writePlistToBytes().

Values can be strings, integers, floats, booleans, tuples, lists,
dictionaries (but only with string keys), Data or datetime.datetime objects.
String values (including dictionary keys) have to be unicode strings -- they
will be written out as UTF-8.

The <data> plist type is supported through the Data class. This is a
thin wrapper around a Python bytes object. Use 'Data' if your strings
contain control characters.

Generate Plist example:

    pl = dict(
        aString = "Doodah",
        aList = ["A", "B", 12, 32.1, [1, 2, 3]],
        aFloat = 0.1,
        anInt = 728,
        aDict = dict(
            anotherString = "<hello & hi there!>",
            aUnicodeValue = "M\xe4ssig, Ma\xdf",
            aTrueValue = True,
            aFalseValue = False,
        ),
        someData = Data(b"<binary gunk>"),
        someMoreData = Data(b"<lots of binary gunk>" * 10),
        aDate = datetime.datetime.fromtimestamp(time.mktime(time.gmtime())),
    )
    writePlist(pl, fileName)

Parse Plist example:

    pl = readPlist(pathOrFile)
    print pl["aKey"]
"""


__all__ = [
    "readPlist", "writePlist", "readPlistFromBytes", "writePlistToBytes",
    "Plist", "Data", "Dict"
]
# Note: the Plist and Dict classes have been deprecated.

import binascii
import datetime
from io import BytesIO
import re


def readPlist(pathOrFile):
    """Read a .plist file. 'pathOrFile' may either be a file name or a
    (readable) file object. Return the unpacked root object (which
    usually is a dictionary).
    """
    didOpen = False
    try:
        if isinstance(pathOrFile, str):
            pathOrFile = open(pathOrFile, 'rb')
            didOpen = True
        p = PlistParser()
        rootObject = p.parse(pathOrFile)
    finally:
        if didOpen:
            pathOrFile.close()
    return rootObject


def writePlist(rootObject, pathOrFile):
    """Write 'rootObject' to a .plist file. 'pathOrFile' may either be a
    file name or a (writable) file object.
    """
    didOpen = False
    try:
        if isinstance(pathOrFile, str):
            pathOrFile = open(pathOrFile, 'wb')
            didOpen = True
        writer = PlistWriter(pathOrFile)
        writer.writeln("<plist version=\"1.0\">")
        writer.writeValue(rootObject)
        writer.writeln("</plist>")
    finally:
        if didOpen:
            pathOrFile.close()


def readPlistFromBytes(data):
    """Read a plist data from a bytes object. Return the root object.
    """
    return readPlist(BytesIO(data))


def writePlistToBytes(rootObject):
    """Return 'rootObject' as a plist-formatted bytes object.
    """
    f = BytesIO()
    writePlist(rootObject, f)
    return f.getvalue()


class DumbXMLWriter:
    def __init__(self, file, indentLevel=0, indent="\t"):
        self.file = file
        self.stack = []
        self.indentLevel = indentLevel
        self.indent = indent

    def beginElement(self, element):
        self.stack.append(element)
        self.writeln("<%s>" % element)
        self.indentLevel += 1

    def endElement(self, element):
        assert self.indentLevel > 0
        assert self.stack.pop() == element
        self.indentLevel -= 1
        self.writeln("</%s>" % element)

    def simpleElement(self, element, value=None):
        if value is not None:
            value = _escape(value)
            self.writeln("<%s>%s</%s>" % (element, value, element))
        else:
            self.writeln("<%s/>" % element)

    def writeln(self, line):
        if line:
            # plist has fixed encoding of utf-8
            if isinstance(line, str):
                line = line.encode('utf-8')
            self.file.write(self.indentLevel * self.indent)
            self.file.write(line)
        self.file.write(b'\n')


# Contents should conform to a subset of ISO 8601
# (in particular, YYYY '-' MM '-' DD 'T' HH ':' MM ':' SS 'Z'.  Smaller units may be omitted with
#  a loss of precision)
_dateParser = re.compile(r"(?P<year>\d\d\d\d)(?:-(?P<month>\d\d)(?:-(?P<day>\d\d)(?:T(?P<hour>\d\d)(?::(?P<minute>\d\d)(?::(?P<second>\d\d))?)?)?)?)?Z", re.ASCII)

def _dateFromString(s):
    order = ('year', 'month', 'day', 'hour', 'minute', 'second')
    gd = _dateParser.match(s).groupdict()
    lst = []
    for key in order:
        val = gd[key]
        if val is None:
            break
        lst.append(int(val))
    return datetime.datetime(*lst)

def _dateToString(d):
    return '%04d-%02d-%02dT%02d:%02d:%02dZ' % (
        d.year, d.month, d.day,
        d.hour, d.minute, d.second
    )


# Regex to find any control chars, except for \t \n and \r
_controlCharPat = re.compile(
    r"[\x00\x01\x02\x03\x04\x05\x06\x07\x08\x0b\x0c\x0e\x0f"
    r"\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f]")

def _escape(text):
    m = _controlCharPat.search(text)
    if m is not None:
        raise ValueError("strings can't contains control characters; "
                         "use plistlib.Data instead")
    text = text.replace("\r\n", "\n")       # convert DOS line endings
    text = text.replace("\r", "\n")         # convert Mac line endings
    text = text.replace("&", "&amp;")       # escape '&'
    text = text.replace("<", "&lt;")        # escape '<'
    text = text.replace(">", "&gt;")        # escape '>'
    return text


PLISTHEADER = b"""\
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
"""

class PlistWriter(DumbXMLWriter):

    def __init__(self, file, indentLevel=0, indent=b"\t", writeHeader=1):
        if writeHeader:
            file.write(PLISTHEADER)
        DumbXMLWriter.__init__(self, file, indentLevel, indent)

    def writeValue(self, value):
        if isinstance(value, str):
            self.simpleElement("string", value)
        elif isinstance(value, bool):
            # must switch for bool before int, as bool is a
            # subclass of int...
            if value:
                self.simpleElement("true")
            else:
                self.simpleElement("false")
        elif isinstance(value, int):
            self.simpleElement("integer", "%d" % value)
        elif isinstance(value, float):
            self.simpleElement("real", repr(value))
        elif isinstance(value, dict):
            self.writeDict(value)
        elif isinstance(value, Data):
            self.writeData(value)
        elif isinstance(value, datetime.datetime):
            self.simpleElement("date", _dateToString(value))
        elif isinstance(value, (tuple, list)):
            self.writeArray(value)
        else:
            raise TypeError("unsupported type: %s" % type(value))

    def writeData(self, data):
        self.beginElement("data")
        self.indentLevel -= 1
        maxlinelength = max(16, 76 - len(self.indent.replace(b"\t", b" " * 8) *
                                 self.indentLevel))
        for line in data.asBase64(maxlinelength).split(b"\n"):
            if line:
                self.writeln(line)
        self.indentLevel += 1
        self.endElement("data")

    def writeDict(self, d):
        if d:
            self.beginElement("dict")
            items = sorted(d.items())
            for key, value in items:
                if not isinstance(key, str):
                    raise TypeError("keys must be strings")
                self.simpleElement("key", key)
                self.writeValue(value)
            self.endElement("dict")
        else:
            self.simpleElement("dict")

    def writeArray(self, array):
        if array:
            self.beginElement("array")
            for value in array:
                self.writeValue(value)
            self.endElement("array")
        else:
            self.simpleElement("array")


class _InternalDict(dict):

    # This class is needed while Dict is scheduled for deprecation:
    # we only need to warn when a *user* instantiates Dict or when
    # the "attribute notation for dict keys" is used.

    def __getattr__(self, attr):
        try:
            value = self[attr]
        except KeyError:
            raise AttributeError(attr)
        from warnings import warn
        warn("Attribute access from plist dicts is deprecated, use d[key] "
             "notation instead", DeprecationWarning, 2)
        return value

    def __setattr__(self, attr, value):
        from warnings import warn
        warn("Attribute access from plist dicts is deprecated, use d[key] "
             "notation instead", DeprecationWarning, 2)
        self[attr] = value

    def __delattr__(self, attr):
        try:
            del self[attr]
        except KeyError:
            raise AttributeError(attr)
        from warnings import warn
        warn("Attribute access from plist dicts is deprecated, use d[key] "
             "notation instead", DeprecationWarning, 2)

class Dict(_InternalDict):

    def __init__(self, **kwargs):
        from warnings import warn
        warn("The plistlib.Dict class is deprecated, use builtin dict instead",
             DeprecationWarning, 2)
        super().__init__(**kwargs)


class Plist(_InternalDict):

    """This class has been deprecated. Use readPlist() and writePlist()
    functions instead, together with regular dict objects.
    """

    def __init__(self, **kwargs):
        from warnings import warn
        warn("The Plist class is deprecated, use the readPlist() and "
             "writePlist() functions instead", DeprecationWarning, 2)
        super().__init__(**kwargs)

    def fromFile(cls, pathOrFile):
        """Deprecated. Use the readPlist() function instead."""
        rootObject = readPlist(pathOrFile)
        plist = cls()
        plist.update(rootObject)
        return plist
    fromFile = classmethod(fromFile)

    def write(self, pathOrFile):
        """Deprecated. Use the writePlist() function instead."""
        writePlist(self, pathOrFile)


def _encodeBase64(s, maxlinelength=76):
    # copied from base64.encodebytes(), with added maxlinelength argument
    maxbinsize = (maxlinelength//4)*3
    pieces = []
    for i in range(0, len(s), maxbinsize):
        chunk = s[i : i + maxbinsize]
        pieces.append(binascii.b2a_base64(chunk))
    return b''.join(pieces)

class Data:

    """Wrapper for binary data."""

    def __init__(self, data):
        if not isinstance(data, bytes):
            raise TypeError("data must be as bytes")
        self.data = data

    @classmethod
    def fromBase64(cls, data):
        # base64.decodebytes just calls binascii.a2b_base64;
        # it seems overkill to use both base64 and binascii.
        return cls(binascii.a2b_base64(data))

    def asBase64(self, maxlinelength=76):
        return _encodeBase64(self.data, maxlinelength)

    def __eq__(self, other):
        if isinstance(other, self.__class__):
            return self.data == other.data
        elif isinstance(other, str):
            return self.data == other
        else:
            return id(self) == id(other)

    def __repr__(self):
        return "%s(%s)" % (self.__class__.__name__, repr(self.data))

class PlistParser:

    def __init__(self):
        self.stack = []
        self.currentKey = None
        self.root = None

    def parse(self, fileobj):
        from xml.parsers.expat import ParserCreate
        self.parser = ParserCreate()
        self.parser.StartElementHandler = self.handleBeginElement
        self.parser.EndElementHandler = self.handleEndElement
        self.parser.CharacterDataHandler = self.handleData
        self.parser.ParseFile(fileobj)
        return self.root

    def handleBeginElement(self, element, attrs):
        self.data = []
        handler = getattr(self, "begin_" + element, None)
        if handler is not None:
            handler(attrs)

    def handleEndElement(self, element):
        handler = getattr(self, "end_" + element, None)
        if handler is not None:
            handler()

    def handleData(self, data):
        self.data.append(data)

    def addObject(self, value):
        if self.currentKey is not None:
            if not isinstance(self.stack[-1], type({})):
                raise ValueError("unexpected element at line %d" %
                                 self.parser.CurrentLineNumber)
            self.stack[-1][self.currentKey] = value
            self.currentKey = None
        elif not self.stack:
            # this is the root object
            self.root = value
        else:
            if not isinstance(self.stack[-1], type([])):
                raise ValueError("unexpected element at line %d" %
                                 self.parser.CurrentLineNumber)
            self.stack[-1].append(value)

    def getData(self):
        data = ''.join(self.data)
        self.data = []
        return data

    # element handlers

    def begin_dict(self, attrs):
        d = _InternalDict()
        self.addObject(d)
        self.stack.append(d)
    def end_dict(self):
        if self.currentKey:
            raise ValueError("missing value for key '%s' at line %d" %
                             (self.currentKey,self.parser.CurrentLineNumber))
        self.stack.pop()

    def end_key(self):
        if self.currentKey or not isinstance(self.stack[-1], type({})):
            raise ValueError("unexpected key at line %d" %
                             self.parser.CurrentLineNumber)
        self.currentKey = self.getData()

    def begin_array(self, attrs):
        a = []
        self.addObject(a)
        self.stack.append(a)
    def end_array(self):
        self.stack.pop()

    def end_true(self):
        self.addObject(True)
    def end_false(self):
        self.addObject(False)
    def end_integer(self):
        self.addObject(int(self.getData()))
    def end_real(self):
        self.addObject(float(self.getData()))
    def end_string(self):
        self.addObject(self.getData())
    def end_data(self):
        self.addObject(Data.fromBase64(self.getData().encode("utf-8")))
    def end_date(self):
        self.addObject(_dateFromString(self.getData()))

Directory Contents

Dirs: 30 × Files: 155

Name Size Perms Modified Actions
- drwxr-xr-x 2024-05-23 07:03:27
Edit Download
- drwxr-xr-x 2024-05-23 07:03:27
Edit Download
- drwxr-xr-x 2024-05-23 07:10:53
Edit Download
ctypes DIR
- drwxr-xr-x 2024-05-23 07:03:27
Edit Download
curses DIR
- drwxr-xr-x 2024-05-23 07:03:27
Edit Download
dbm DIR
- drwxr-xr-x 2024-05-23 07:03:27
Edit Download
distutils DIR
- drwxr-xr-x 2024-05-23 07:03:27
Edit Download
email DIR
- drwxr-xr-x 2024-05-23 07:03:27
Edit Download
encodings DIR
- drwxr-xr-x 2024-05-23 07:03:28
Edit Download
html DIR
- drwxr-xr-x 2024-05-23 07:03:28
Edit Download
http DIR
- drwxr-xr-x 2024-05-23 07:03:28
Edit Download
idlelib DIR
- drwxr-xr-x 2024-05-23 07:03:28
Edit Download
importlib DIR
- drwxr-xr-x 2024-05-23 07:03:28
Edit Download
json DIR
- drwxr-xr-x 2024-05-23 07:03:28
Edit Download
- drwxr-xr-x 2024-05-23 07:03:28
Edit Download
lib2to3 DIR
- drwxr-xr-x 2024-05-23 07:03:28
Edit Download
logging DIR
- drwxr-xr-x 2024-05-23 07:03:28
Edit Download
- drwxr-xr-x 2024-05-23 07:03:28
Edit Download
- drwxr-xr-x 2024-05-23 07:03:28
Edit Download
- drwxr-xr-x 2024-05-23 07:03:28
Edit Download
- drwxr-xr-x 2024-05-23 07:03:28
Edit Download
sqlite3 DIR
- drwxr-xr-x 2024-05-23 07:03:28
Edit Download
test DIR
- drwxr-xr-x 2024-05-23 07:03:28
Edit Download
unittest DIR
- drwxr-xr-x 2024-05-23 07:03:28
Edit Download
urllib DIR
- drwxr-xr-x 2024-05-23 07:03:28
Edit Download
venv DIR
- drwxr-xr-x 2024-05-23 07:03:28
Edit Download
wsgiref DIR
- drwxr-xr-x 2024-05-23 07:03:28
Edit Download
xml DIR
- drwxr-xr-x 2024-05-23 07:03:28
Edit Download
xmlrpc DIR
- drwxr-xr-x 2024-05-23 07:03:28
Edit Download
- drwxr-xr-x 2024-05-23 07:03:27
Edit Download
7.87 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
30.33 KB lrw-r--r-- 2024-04-17 16:58:21
Edit Download
475 B lrw-r--r-- 2024-04-17 16:58:16
Edit Download
86.98 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
11.86 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
11.32 KB lrw-r--r-- 2024-04-17 16:58:19
Edit Download
20.27 KB lrw-r--r-- 2024-04-17 16:58:21
Edit Download
13.66 KB lrwxr-xr-x 2024-04-17 16:58:17
Edit Download
21.38 KB lrw-r--r-- 2024-04-17 16:58:19
Edit Download
13.39 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
2.53 KB lrw-r--r-- 2024-04-17 16:58:13
Edit Download
18.04 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
22.40 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
34.72 KB lrwxr-xr-x 2024-04-17 16:58:20
Edit Download
11.76 KB lrw-r--r-- 2024-04-17 16:58:21
Edit Download
5.25 KB lrw-r--r-- 2024-04-17 16:58:17
Edit Download
14.51 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
9.79 KB lrw-r--r-- 2024-04-17 16:58:16
Edit Download
35.11 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
5.85 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
3.60 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
9.51 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
48.28 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
8.91 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
8.78 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
6.46 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
6.21 KB lrwxr-xr-x 2024-04-17 16:58:14
Edit Download
1.83 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
15.81 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
73.20 KB lrw-r--r-- 2024-04-17 16:58:21
Edit Download
223.20 KB lrw-r--r-- 2024-04-17 16:58:19
Edit Download
80.58 KB lrw-r--r-- 2024-04-17 16:58:17
Edit Download
9.90 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
100.52 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
2.75 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
9.37 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
13.92 KB lrw-r--r-- 2024-04-17 16:58:17
Edit Download
3.09 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
14.58 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
22.49 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
39.31 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
13.28 KB lrw-r--r-- 2024-04-17 16:58:21
Edit Download
3.02 KB lrw-r--r-- 2024-04-17 16:58:21
Edit Download
7.31 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
5.66 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
20.15 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
2.77 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
23.83 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
6.05 KB lrw-r--r-- 2024-04-17 16:58:21
Edit Download
17.58 KB lrw-r--r-- 2024-04-17 16:58:13
Edit Download
4.34 KB lrw-r--r-- 2024-04-17 16:58:17
Edit Download
48.94 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
3.45 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
9.50 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
77.11 KB lrw-r--r-- 2024-04-17 16:58:19
Edit Download
3.20 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
68.66 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
2.01 KB lrwxr-xr-x 2024-04-17 16:58:20
Edit Download
3.77 KB lrw-r--r-- 2024-04-17 16:58:16
Edit Download
91.03 KB lrw-r--r-- 2024-04-17 16:58:19
Edit Download
17.04 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
5.49 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
2.67 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
77.24 KB lrw-r--r-- 2024-04-17 16:58:19
Edit Download
7.26 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
20.25 KB lrw-r--r-- 2024-04-17 16:58:19
Edit Download
22.65 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
5.61 KB lrw-r--r-- 2024-04-17 16:58:17
Edit Download
41.78 KB lrw-r--r-- 2024-04-17 16:58:13
Edit Download
19.96 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
2.34 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
10.15 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
4.98 KB lrw-r--r-- 2024-04-17 16:58:21
Edit Download
58.93 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
33.96 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
4.55 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
59.23 KB lrwxr-xr-x 2024-04-17 16:58:16
Edit Download
46.74 KB lrw-r--r-- 2024-04-17 16:58:17
Edit Download
79.44 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
8.71 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
21.03 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
49.55 KB lrwxr-xr-x 2024-04-17 16:58:15
Edit Download
14.43 KB lrw-r--r-- 2024-04-17 16:58:13
Edit Download
11.11 KB lrw-r--r-- 2024-04-17 16:58:13
Edit Download
13.92 KB lrw-r--r-- 2024-04-17 16:58:16
Edit Download
12.40 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
20.95 KB lrwxr-xr-x 2024-04-17 16:58:17
Edit Download
25.75 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
4.94 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
13.12 KB lrw-r--r-- 2024-04-17 16:58:13
Edit Download
99.26 KB lrwxr-xr-x 2024-04-17 16:58:15
Edit Download
6.56 KB lrw-r--r-- 2024-04-17 16:58:19
Edit Download
8.63 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
7.14 KB lrwxr-xr-x 2024-04-17 16:58:20
Edit Download
25.06 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
14.62 KB lrw-r--r-- 2024-04-17 16:58:17
Edit Download
4.99 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
5.40 KB lrw-r--r-- 2024-04-17 16:58:21
Edit Download
10.17 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
6.25 KB lrw-r--r-- 2024-04-17 16:58:19
Edit Download
8.05 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
11.23 KB lrw-r--r-- 2024-04-17 16:58:21
Edit Download
38.23 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
21.46 KB lrw-r--r-- 2024-04-17 16:58:19
Edit Download
29.50 KB lrwxr-xr-x 2024-04-17 16:58:16
Edit Download
37.13 KB lrwxr-xr-x 2024-04-17 16:58:14
Edit Download
6.07 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
14.56 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
23.63 KB lrw-r--r-- 2024-04-17 16:58:21
Edit Download
15.96 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
7.06 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
29.50 KB lrw-r--r-- 2024-04-17 16:58:16
Edit Download
23.90 KB lrw-r--r-- 2024-04-17 16:58:19
Edit Download
4.20 KB lrw-r--r-- 2024-04-17 16:58:19
Edit Download
9.19 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
12.61 KB lrw-r--r-- 2024-04-17 16:58:17
Edit Download
238 B lrw-r--r-- 2024-04-17 16:58:16
Edit Download
65.99 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
17.11 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
2.00 KB lrwxr-xr-x 2024-04-17 16:58:14
Edit Download
7.21 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
24.58 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
11.14 KB lrwxr-xr-x 2024-04-17 16:58:20
Edit Download
86.78 KB lrwxr-xr-x 2024-04-17 16:58:15
Edit Download
26.71 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
22.47 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
16.10 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
1003 B lrw-r--r-- 2024-04-17 16:58:17
Edit Download
44.57 KB lrw-r--r-- 2024-04-17 16:58:19
Edit Download
12.10 KB lrwxr-xr-x 2024-04-17 16:58:15
Edit Download
2.96 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
24.29 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
30.75 KB lrwxr-xr-x 2024-04-17 16:58:13
Edit Download
11.70 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
879 B lrw-r--r-- 2024-04-17 16:58:13
Edit Download
3.09 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
6.61 KB lrwxr-xr-x 2024-04-17 16:58:14
Edit Download
21.83 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
13.50 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
18.14 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
11.23 KB lrw-r--r-- 2024-04-17 16:58:19
Edit Download
22.38 KB lrwxr-xr-x 2024-04-17 16:58:20
Edit Download
5.25 KB lrw-r--r-- 2024-04-17 16:58:21
Edit Download
64.87 KB lrw-r--r-- 2024-04-17 16:58:21
Edit Download
4.24 KB lrw-r--r-- 2024-04-17 16:58:19
Edit Download
4.66 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
14.26 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
18.41 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
71.20 KB lrw-r--r-- 2024-04-17 16:58:17
Edit Download
21.17 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
22.31 KB lrw-r--r-- 2024-04-17 16:58:20
Edit Download
7.24 KB lrw-r--r-- 2024-04-17 16:58:15
Edit Download
5.57 KB lrw-r--r-- 2024-04-17 16:58:14
Edit Download
4.48 KB lrw-r--r-- 2024-04-17 16:58:21
Edit Download
64 B lrw-r--r-- 2024-04-17 16:58:20
Edit Download

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