forked from Floorp-Projects/Floorp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1731145: Don't ignore vendored package
*.egg-info
directories r…
…=ahal The `*.egg-info` directories are needed for the packages to show up as "distributions" to `pip` and other environment-checking logic. We know that `*.egg-info` directories are cross-platform because they exist in the globally-usable `tar.gz` releases of packages. Differential Revision: https://phabricator.services.mozilla.com/D125909
- Loading branch information
Mitchell Hentges
committed
Sep 28, 2021
1 parent
bb975a3
commit 329df86
Showing
86 changed files
with
5,832 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
101 changes: 101 additions & 0 deletions
101
third_party/python/MarkupSafe/src/MarkupSafe.egg-info/PKG-INFO
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
Metadata-Version: 1.2 | ||
Name: MarkupSafe | ||
Version: 1.1.1 | ||
Summary: Safely add untrusted strings to HTML/XML markup. | ||
Home-page: https://palletsprojects.com/p/markupsafe/ | ||
Author: Armin Ronacher | ||
Author-email: armin.ronacher@active-4.com | ||
Maintainer: The Pallets Team | ||
Maintainer-email: contact@palletsprojects.com | ||
License: BSD-3-Clause | ||
Project-URL: Documentation, https://markupsafe.palletsprojects.com/ | ||
Project-URL: Code, https://github.com/pallets/markupsafe | ||
Project-URL: Issue tracker, https://github.com/pallets/markupsafe/issues | ||
Description: MarkupSafe | ||
========== | ||
|
||
MarkupSafe implements a text object that escapes characters so it is | ||
safe to use in HTML and XML. Characters that have special meanings are | ||
replaced so that they display as the actual characters. This mitigates | ||
injection attacks, meaning untrusted user input can safely be displayed | ||
on a page. | ||
|
||
|
||
Installing | ||
---------- | ||
|
||
Install and update using `pip`_: | ||
|
||
.. code-block:: text | ||
|
||
pip install -U MarkupSafe | ||
|
||
.. _pip: https://pip.pypa.io/en/stable/quickstart/ | ||
|
||
|
||
Examples | ||
-------- | ||
|
||
.. code-block:: pycon | ||
|
||
>>> from markupsafe import Markup, escape | ||
>>> # escape replaces special characters and wraps in Markup | ||
>>> escape('<script>alert(document.cookie);</script>') | ||
Markup(u'<script>alert(document.cookie);</script>') | ||
>>> # wrap in Markup to mark text "safe" and prevent escaping | ||
>>> Markup('<strong>Hello</strong>') | ||
Markup('<strong>hello</strong>') | ||
>>> escape(Markup('<strong>Hello</strong>')) | ||
Markup('<strong>hello</strong>') | ||
>>> # Markup is a text subclass (str on Python 3, unicode on Python 2) | ||
>>> # methods and operators escape their arguments | ||
>>> template = Markup("Hello <em>%s</em>") | ||
>>> template % '"World"' | ||
Markup('Hello <em>"World"</em>') | ||
|
||
|
||
Donate | ||
------ | ||
|
||
The Pallets organization develops and supports MarkupSafe and other | ||
libraries that use it. In order to grow the community of contributors | ||
and users, and allow the maintainers to devote more time to the | ||
projects, `please donate today`_. | ||
|
||
.. _please donate today: https://palletsprojects.com/donate | ||
|
||
|
||
Links | ||
----- | ||
|
||
* Website: https://palletsprojects.com/p/markupsafe/ | ||
* Documentation: https://markupsafe.palletsprojects.com/ | ||
* License: `BSD-3-Clause <https://github.com/pallets/markupsafe/blob/master/LICENSE.rst>`_ | ||
* Releases: https://pypi.org/project/MarkupSafe/ | ||
* Code: https://github.com/pallets/markupsafe | ||
* Issue tracker: https://github.com/pallets/markupsafe/issues | ||
* Test status: | ||
|
||
* Linux, Mac: https://travis-ci.org/pallets/markupsafe | ||
* Windows: https://ci.appveyor.com/project/pallets/markupsafe | ||
|
||
* Test coverage: https://codecov.io/gh/pallets/markupsafe | ||
|
||
Platform: UNKNOWN | ||
Classifier: Development Status :: 5 - Production/Stable | ||
Classifier: Environment :: Web Environment | ||
Classifier: Intended Audience :: Developers | ||
Classifier: License :: OSI Approved :: BSD License | ||
Classifier: Operating System :: OS Independent | ||
Classifier: Programming Language :: Python | ||
Classifier: Programming Language :: Python :: 2 | ||
Classifier: Programming Language :: Python :: 2.7 | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: Programming Language :: Python :: 3.4 | ||
Classifier: Programming Language :: Python :: 3.5 | ||
Classifier: Programming Language :: Python :: 3.6 | ||
Classifier: Programming Language :: Python :: 3.7 | ||
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content | ||
Classifier: Topic :: Software Development :: Libraries :: Python Modules | ||
Classifier: Topic :: Text Processing :: Markup :: HTML | ||
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.* |
31 changes: 31 additions & 0 deletions
31
third_party/python/MarkupSafe/src/MarkupSafe.egg-info/SOURCES.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
CHANGES.rst | ||
LICENSE.rst | ||
MANIFEST.in | ||
README.rst | ||
setup.cfg | ||
setup.py | ||
tox.ini | ||
docs/Makefile | ||
docs/changes.rst | ||
docs/conf.py | ||
docs/escaping.rst | ||
docs/formatting.rst | ||
docs/html.rst | ||
docs/index.rst | ||
docs/license.rst | ||
docs/make.bat | ||
docs/requirements.txt | ||
src/MarkupSafe.egg-info/PKG-INFO | ||
src/MarkupSafe.egg-info/SOURCES.txt | ||
src/MarkupSafe.egg-info/dependency_links.txt | ||
src/MarkupSafe.egg-info/top_level.txt | ||
src/markupsafe/__init__.py | ||
src/markupsafe/_compat.py | ||
src/markupsafe/_constants.py | ||
src/markupsafe/_native.py | ||
src/markupsafe/_speedups.c | ||
tests/conftest.py | ||
tests/test_escape.py | ||
tests/test_exception_custom_html.py | ||
tests/test_leak.py | ||
tests/test_markupsafe.py |
1 change: 1 addition & 0 deletions
1
third_party/python/MarkupSafe/src/MarkupSafe.egg-info/dependency_links.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
1 change: 1 addition & 0 deletions
1
third_party/python/MarkupSafe/src/MarkupSafe.egg-info/top_level.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
markupsafe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
Metadata-Version: 1.2 | ||
Name: PyYAML | ||
Version: 5.4.1 | ||
Summary: YAML parser and emitter for Python | ||
Home-page: https://pyyaml.org/ | ||
Author: Kirill Simonov | ||
Author-email: xi@resolvent.net | ||
License: MIT | ||
Download-URL: https://pypi.org/project/PyYAML/ | ||
Project-URL: Bug Tracker, https://github.com/yaml/pyyaml/issues | ||
Project-URL: CI, https://github.com/yaml/pyyaml/actions | ||
Project-URL: Documentation, https://pyyaml.org/wiki/PyYAMLDocumentation | ||
Project-URL: Mailing lists, http://lists.sourceforge.net/lists/listinfo/yaml-core | ||
Project-URL: Source Code, https://github.com/yaml/pyyaml | ||
Description: YAML is a data serialization format designed for human readability | ||
and interaction with scripting languages. PyYAML is a YAML parser | ||
and emitter for Python. | ||
|
||
PyYAML features a complete YAML 1.1 parser, Unicode support, pickle | ||
support, capable extension API, and sensible error messages. PyYAML | ||
supports standard YAML tags and provides Python-specific tags that | ||
allow to represent an arbitrary Python object. | ||
|
||
PyYAML is applicable for a broad range of tasks from complex | ||
configuration files to object serialization and persistence. | ||
Platform: Any | ||
Classifier: Development Status :: 5 - Production/Stable | ||
Classifier: Intended Audience :: Developers | ||
Classifier: License :: OSI Approved :: MIT License | ||
Classifier: Operating System :: OS Independent | ||
Classifier: Programming Language :: Cython | ||
Classifier: Programming Language :: Python | ||
Classifier: Programming Language :: Python :: 2 | ||
Classifier: Programming Language :: Python :: 2.7 | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: Programming Language :: Python :: 3.6 | ||
Classifier: Programming Language :: Python :: 3.7 | ||
Classifier: Programming Language :: Python :: 3.8 | ||
Classifier: Programming Language :: Python :: 3.9 | ||
Classifier: Programming Language :: Python :: Implementation :: CPython | ||
Classifier: Programming Language :: Python :: Implementation :: PyPy | ||
Classifier: Topic :: Software Development :: Libraries :: Python Modules | ||
Classifier: Topic :: Text Processing :: Markup | ||
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.* |
Oops, something went wrong.