GRAYBYTE WORDPRESS FILE MANAGER8318

Server IP : 198.54.121.189 / Your IP : 216.73.216.140
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /usr/lib64/python2.7/distutils/command/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /usr/lib64/python2.7/distutils/command//check.py
"""distutils.command.check

Implements the Distutils 'check' command.
"""
__revision__ = "$Id$"

from distutils.core import Command
from distutils.dist import PKG_INFO_ENCODING
from distutils.errors import DistutilsSetupError

try:
    # docutils is installed
    from docutils.utils import Reporter
    from docutils.parsers.rst import Parser
    from docutils import frontend
    from docutils import nodes
    from StringIO import StringIO

    class SilentReporter(Reporter):

        def __init__(self, source, report_level, halt_level, stream=None,
                     debug=0, encoding='ascii', error_handler='replace'):
            self.messages = []
            Reporter.__init__(self, source, report_level, halt_level, stream,
                              debug, encoding, error_handler)

        def system_message(self, level, message, *children, **kwargs):
            self.messages.append((level, message, children, kwargs))
            return nodes.system_message(message, level=level,
                                        type=self.levels[level],
                                        *children, **kwargs)

    HAS_DOCUTILS = True
except ImportError:
    # docutils is not installed
    HAS_DOCUTILS = False

class check(Command):
    """This command checks the meta-data of the package.
    """
    description = ("perform some checks on the package")
    user_options = [('metadata', 'm', 'Verify meta-data'),
                    ('restructuredtext', 'r',
                     ('Checks if long string meta-data syntax '
                      'are reStructuredText-compliant')),
                    ('strict', 's',
                     'Will exit with an error if a check fails')]

    boolean_options = ['metadata', 'restructuredtext', 'strict']

    def initialize_options(self):
        """Sets default values for options."""
        self.restructuredtext = 0
        self.metadata = 1
        self.strict = 0
        self._warnings = 0

    def finalize_options(self):
        pass

    def warn(self, msg):
        """Counts the number of warnings that occurs."""
        self._warnings += 1
        return Command.warn(self, msg)

    def run(self):
        """Runs the command."""
        # perform the various tests
        if self.metadata:
            self.check_metadata()
        if self.restructuredtext:
            if HAS_DOCUTILS:
                self.check_restructuredtext()
            elif self.strict:
                raise DistutilsSetupError('The docutils package is needed.')

        # let's raise an error in strict mode, if we have at least
        # one warning
        if self.strict and self._warnings > 0:
            raise DistutilsSetupError('Please correct your package.')

    def check_metadata(self):
        """Ensures that all required elements of meta-data are supplied.

        name, version, URL, (author and author_email) or
        (maintainer and maintainer_email)).

        Warns if any are missing.
        """
        metadata = self.distribution.metadata

        missing = []
        for attr in ('name', 'version', 'url'):
            if not (hasattr(metadata, attr) and getattr(metadata, attr)):
                missing.append(attr)

        if missing:
            self.warn("missing required meta-data: %s"  % ', '.join(missing))
        if metadata.author:
            if not metadata.author_email:
                self.warn("missing meta-data: if 'author' supplied, " +
                          "'author_email' must be supplied too")
        elif metadata.maintainer:
            if not metadata.maintainer_email:
                self.warn("missing meta-data: if 'maintainer' supplied, " +
                          "'maintainer_email' must be supplied too")
        else:
            self.warn("missing meta-data: either (author and author_email) " +
                      "or (maintainer and maintainer_email) " +
                      "must be supplied")

    def check_restructuredtext(self):
        """Checks if the long string fields are reST-compliant."""
        data = self.distribution.get_long_description()
        if not isinstance(data, unicode):
            data = data.decode(PKG_INFO_ENCODING)
        for warning in self._check_rst_data(data):
            line = warning[-1].get('line')
            if line is None:
                warning = warning[1]
            else:
                warning = '%s (line %s)' % (warning[1], line)
            self.warn(warning)

    def _check_rst_data(self, data):
        """Returns warnings when the provided data doesn't compile."""
        # the include and csv_table directives need this to be a path
        source_path = self.distribution.script_name or 'setup.py'
        parser = Parser()
        settings = frontend.OptionParser(components=(Parser,)).get_default_values()
        settings.tab_width = 4
        settings.pep_references = None
        settings.rfc_references = None
        reporter = SilentReporter(source_path,
                          settings.report_level,
                          settings.halt_level,
                          stream=settings.warning_stream,
                          debug=settings.debug,
                          encoding=settings.error_encoding,
                          error_handler=settings.error_encoding_error_handler)

        document = nodes.document(settings, reporter, source=source_path)
        document.note_source(source_path, -1)
        try:
            parser.parse(data, document)
        except AttributeError as e:
            reporter.messages.append(
                (-1, 'Could not finish the parsing: %s.' % e, '', {}))

        return reporter.messages

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
June 15 2024 08:34:30
root / root
0755
__init__.py
0.803 KB
April 10 2024 04:58:35
root / root
0644
__init__.pyc
0.649 KB
April 10 2024 04:58:46
root / root
0644
__init__.pyo
0.649 KB
April 10 2024 04:58:46
root / root
0644
bdist.py
5.465 KB
April 10 2024 04:58:35
root / root
0644
bdist.pyc
5.048 KB
April 10 2024 04:58:46
root / root
0644
bdist.pyo
5.048 KB
April 10 2024 04:58:46
root / root
0644
bdist_dumb.py
5.074 KB
April 10 2024 04:58:35
root / root
0644
bdist_dumb.pyc
4.866 KB
April 10 2024 04:58:46
root / root
0644
bdist_dumb.pyo
4.866 KB
April 10 2024 04:58:46
root / root
0644
bdist_msi.py
34.368 KB
April 10 2024 04:58:35
root / root
0644
bdist_msi.pyc
23.399 KB
April 10 2024 04:58:46
root / root
0644
bdist_msi.pyo
23.295 KB
April 10 2024 04:58:43
root / root
0644
bdist_rpm.py
20.556 KB
April 10 2024 04:58:35
root / root
0644
bdist_rpm.pyc
17.195 KB
April 10 2024 04:58:46
root / root
0644
bdist_rpm.pyo
17.113 KB
April 10 2024 04:58:43
root / root
0644
bdist_wininst.py
14.647 KB
April 10 2024 04:58:35
root / root
0644
bdist_wininst.pyc
10.474 KB
April 10 2024 04:58:46
root / root
0644
bdist_wininst.pyo
10.396 KB
April 10 2024 04:58:43
root / root
0644
build.py
5.328 KB
April 10 2024 04:58:35
root / root
0644
build.pyc
5.025 KB
April 10 2024 04:58:46
root / root
0644
build.pyo
5.025 KB
April 10 2024 04:58:46
root / root
0644
build_clib.py
7.94 KB
April 10 2024 04:58:35
root / root
0644
build_clib.pyc
6.198 KB
April 10 2024 04:58:46
root / root
0644
build_clib.pyo
6.198 KB
April 10 2024 04:58:46
root / root
0644
build_ext.py
31.749 KB
April 10 2024 04:58:35
root / root
0644
build_ext.py.debug-build
31.514 KB
April 10 2024 04:58:35
root / root
0644
build_ext.pyc
18.891 KB
April 10 2024 04:58:46
root / root
0644
build_ext.pyo
18.891 KB
April 10 2024 04:58:46
root / root
0644
build_py.py
15.955 KB
April 10 2024 04:58:35
root / root
0644
build_py.pyc
11.224 KB
April 10 2024 04:58:46
root / root
0644
build_py.pyo
11.153 KB
April 10 2024 04:58:43
root / root
0644
build_scripts.py
4.49 KB
April 10 2024 04:58:35
root / root
0644
build_scripts.pyc
4.372 KB
April 10 2024 04:58:46
root / root
0644
build_scripts.pyo
4.372 KB
April 10 2024 04:58:46
root / root
0644
check.py
5.539 KB
April 10 2024 04:58:35
root / root
0644
check.pyc
6.115 KB
April 10 2024 04:58:46
root / root
0644
check.pyo
6.115 KB
April 10 2024 04:58:46
root / root
0644
clean.py
2.748 KB
April 10 2024 04:58:35
root / root
0644
clean.pyc
2.997 KB
April 10 2024 04:58:46
root / root
0644
clean.pyo
2.997 KB
April 10 2024 04:58:46
root / root
0644
command_template
0.702 KB
April 10 2024 04:58:35
root / root
0644
config.py
12.822 KB
April 10 2024 04:58:35
root / root
0644
config.pyc
12.388 KB
April 10 2024 04:58:46
root / root
0644
config.pyo
12.388 KB
April 10 2024 04:58:46
root / root
0644
install.py
25.648 KB
April 10 2024 04:58:35
root / root
0644
install.pyc
16.424 KB
April 10 2024 04:58:46
root / root
0644
install.pyo
16.424 KB
April 10 2024 04:58:46
root / root
0644
install_data.py
2.778 KB
April 10 2024 04:58:35
root / root
0644
install_data.pyc
3.045 KB
April 10 2024 04:58:46
root / root
0644
install_data.pyo
3.045 KB
April 10 2024 04:58:46
root / root
0644
install_egg_info.py
2.526 KB
April 10 2024 04:58:35
root / root
0644
install_egg_info.pyc
3.656 KB
April 10 2024 04:58:46
root / root
0644
install_egg_info.pyo
3.656 KB
April 10 2024 04:58:46
root / root
0644
install_headers.py
1.314 KB
April 10 2024 04:58:35
root / root
0644
install_headers.pyc
2.202 KB
April 10 2024 04:58:46
root / root
0644
install_headers.pyo
2.202 KB
April 10 2024 04:58:46
root / root
0644
install_lib.py
8.143 KB
April 10 2024 04:58:35
root / root
0644
install_lib.pyc
6.524 KB
April 10 2024 04:58:46
root / root
0644
install_lib.pyo
6.524 KB
April 10 2024 04:58:46
root / root
0644
install_scripts.py
2.02 KB
April 10 2024 04:58:35
root / root
0644
install_scripts.pyc
2.859 KB
April 10 2024 04:58:46
root / root
0644
install_scripts.pyo
2.859 KB
April 10 2024 04:58:46
root / root
0644
register.py
11.562 KB
April 10 2024 04:58:35
root / root
0644
register.pyc
9.969 KB
April 10 2024 04:58:46
root / root
0644
register.pyo
9.969 KB
April 10 2024 04:58:46
root / root
0644
sdist.py
18.122 KB
April 10 2024 04:58:35
root / root
0644
sdist.pyc
16.305 KB
April 10 2024 04:58:46
root / root
0644
sdist.pyo
16.305 KB
April 10 2024 04:58:46
root / root
0644
upload.py
6.836 KB
April 10 2024 04:58:35
root / root
0644
upload.pyc
6.16 KB
April 10 2024 04:58:46
root / root
0644
upload.pyo
6.16 KB
April 10 2024 04:58:46
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF