-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(addon): Require https for minemeld feeds. Update AOB 4.1.2 (#287)
PR #287
- Loading branch information
1 parent
b669220
commit def1d03
Showing
1,409 changed files
with
172,976 additions
and
21,837 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
1 change: 1 addition & 0 deletions
1
Splunk_TA_paloalto/bin/splunk_ta_paloalto/aob_py3/Jinja2-2.11.3.dist-info/INSTALLER
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 @@ | ||
pip |
28 changes: 28 additions & 0 deletions
28
..._TA_paloalto/bin/splunk_ta_paloalto/aob_py3/Jinja2-2.11.3.dist-info/LICENSE.rst
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,28 @@ | ||
Copyright 2007 Pallets | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are | ||
met: | ||
|
||
1. Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
|
||
3. Neither the name of the copyright holder nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | ||
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | ||
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | ||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
106 changes: 106 additions & 0 deletions
106
Splunk_TA_paloalto/bin/splunk_ta_paloalto/aob_py3/Jinja2-2.11.3.dist-info/METADATA
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,106 @@ | ||
Metadata-Version: 2.1 | ||
Name: Jinja2 | ||
Version: 2.11.3 | ||
Summary: A very fast and expressive template engine. | ||
Home-page: https://palletsprojects.com/p/jinja/ | ||
Author: Armin Ronacher | ||
Author-email: [email protected] | ||
Maintainer: Pallets | ||
Maintainer-email: [email protected] | ||
License: BSD-3-Clause | ||
Project-URL: Documentation, https://jinja.palletsprojects.com/ | ||
Project-URL: Code, https://github.com/pallets/jinja | ||
Project-URL: Issue tracker, https://github.com/pallets/jinja/issues | ||
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.5 | ||
Classifier: Programming Language :: Python :: 3.6 | ||
Classifier: Programming Language :: Python :: 3.7 | ||
Classifier: Programming Language :: Python :: 3.8 | ||
Classifier: Programming Language :: Python :: Implementation :: CPython | ||
Classifier: Programming Language :: Python :: Implementation :: PyPy | ||
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.*, !=3.4.* | ||
Description-Content-Type: text/x-rst | ||
Requires-Dist: MarkupSafe (>=0.23) | ||
Provides-Extra: i18n | ||
Requires-Dist: Babel (>=0.8) ; extra == 'i18n' | ||
|
||
Jinja | ||
===== | ||
|
||
Jinja is a fast, expressive, extensible templating engine. Special | ||
placeholders in the template allow writing code similar to Python | ||
syntax. Then the template is passed data to render the final document. | ||
|
||
It includes: | ||
|
||
- Template inheritance and inclusion. | ||
- Define and import macros within templates. | ||
- HTML templates can use autoescaping to prevent XSS from untrusted | ||
user input. | ||
- A sandboxed environment can safely render untrusted templates. | ||
- AsyncIO support for generating templates and calling async | ||
functions. | ||
- I18N support with Babel. | ||
- Templates are compiled to optimized Python code just-in-time and | ||
cached, or can be compiled ahead-of-time. | ||
- Exceptions point to the correct line in templates to make debugging | ||
easier. | ||
- Extensible filters, tests, functions, and even syntax. | ||
|
||
Jinja's philosophy is that while application logic belongs in Python if | ||
possible, it shouldn't make the template designer's job difficult by | ||
restricting functionality too much. | ||
|
||
|
||
Installing | ||
---------- | ||
|
||
Install and update using `pip`_: | ||
|
||
.. code-block:: text | ||
|
||
$ pip install -U Jinja2 | ||
|
||
.. _pip: https://pip.pypa.io/en/stable/quickstart/ | ||
|
||
|
||
In A Nutshell | ||
------------- | ||
|
||
.. code-block:: jinja | ||
|
||
{% extends "base.html" %} | ||
{% block title %}Members{% endblock %} | ||
{% block content %} | ||
<ul> | ||
{% for user in users %} | ||
<li><a href="{{ user.url }}">{{ user.username }}</a></li> | ||
{% endfor %} | ||
</ul> | ||
{% endblock %} | ||
|
||
|
||
Links | ||
----- | ||
|
||
- Website: https://palletsprojects.com/p/jinja/ | ||
- Documentation: https://jinja.palletsprojects.com/ | ||
- Releases: https://pypi.org/project/Jinja2/ | ||
- Code: https://github.com/pallets/jinja | ||
- Issue tracker: https://github.com/pallets/jinja/issues | ||
- Test status: https://dev.azure.com/pallets/jinja/_build | ||
- Official chat: https://discord.gg/t6rrQZH | ||
|
||
|
35 changes: 35 additions & 0 deletions
35
Splunk_TA_paloalto/bin/splunk_ta_paloalto/aob_py3/Jinja2-2.11.3.dist-info/RECORD
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,35 @@ | ||
Jinja2-2.11.3.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 | ||
Jinja2-2.11.3.dist-info/LICENSE.rst,sha256=O0nc7kEF6ze6wQ-vG-JgQI_oXSUrjp3y4JefweCUQ3s,1475 | ||
Jinja2-2.11.3.dist-info/METADATA,sha256=PscpJ1C3RSp8xcjV3fAuTz13rKbGxmzJXnMQFH-WKhs,3535 | ||
Jinja2-2.11.3.dist-info/RECORD,, | ||
Jinja2-2.11.3.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 | ||
Jinja2-2.11.3.dist-info/WHEEL,sha256=Z-nyYpwrcSqxfdux5Mbn_DQ525iP7J2DG3JgGvOYyTQ,110 | ||
Jinja2-2.11.3.dist-info/entry_points.txt,sha256=Qy_DkVo6Xj_zzOtmErrATe8lHZhOqdjpt3e4JJAGyi8,61 | ||
Jinja2-2.11.3.dist-info/top_level.txt,sha256=PkeVWtLb3-CqjWi1fO29OCbj55EhX_chhKrCdrVe_zs,7 | ||
jinja2/__init__.py,sha256=LZUXmxJc2GIchfSAeMWsxCWiQYO-w1-736f2Q3I8ms8,1549 | ||
jinja2/_compat.py,sha256=B6Se8HjnXVpzz9-vfHejn-DV2NjaVK-Iewupc5kKlu8,3191 | ||
jinja2/_identifier.py,sha256=EdgGJKi7O1yvr4yFlvqPNEqV6M1qHyQr8Gt8GmVTKVM,1775 | ||
jinja2/asyncfilters.py,sha256=XJtYXTxFvcJ5xwk6SaDL4S0oNnT0wPYvXBCSzc482fI,4250 | ||
jinja2/asyncsupport.py,sha256=ZBFsDLuq3Gtji3Ia87lcyuDbqaHZJRdtShZcqwpFnSQ,7209 | ||
jinja2/bccache.py,sha256=3Pmp4jo65M9FQuIxdxoDBbEDFwe4acDMQf77nEJfrHA,12139 | ||
jinja2/compiler.py,sha256=Ta9W1Lit542wItAHXlDcg0sEOsFDMirCdlFPHAurg4o,66284 | ||
jinja2/constants.py,sha256=RR1sTzNzUmKco6aZicw4JpQpJGCuPuqm1h1YmCNUEFY,1458 | ||
jinja2/debug.py,sha256=neR7GIGGjZH3_ILJGVUYy3eLQCCaWJMXOb7o0kGInWc,8529 | ||
jinja2/defaults.py,sha256=85B6YUUCyWPSdrSeVhcqFVuu_bHUAQXeey--FIwSeVQ,1126 | ||
jinja2/environment.py,sha256=XDSLKc4SqNLMOwTSq3TbWEyA5WyXfuLuVD0wAVjEFwM,50629 | ||
jinja2/exceptions.py,sha256=VjNLawcmf2ODffqVMCQK1cRmvFaUfQWF4u8ouP3QPcE,5425 | ||
jinja2/ext.py,sha256=AtwL5O5enT_L3HR9-oBvhGyUTdGoyaqG_ICtnR_EVd4,26441 | ||
jinja2/filters.py,sha256=9ORilsZrUoydSI9upz8_qGy7gozDWLYoFmlIBFSVRnQ,41439 | ||
jinja2/idtracking.py,sha256=J3O4VHsrbf3wzwiBc7Cro26kHb6_5kbULeIOzocchIU,9211 | ||
jinja2/lexer.py,sha256=nUFLRKhhKmmEWkLI65nQePgcQs7qsRdjVYZETMt_v0g,30331 | ||
jinja2/loaders.py,sha256=C-fST_dmFjgWkp0ZuCkrgICAoOsoSIF28wfAFink0oU,17666 | ||
jinja2/meta.py,sha256=QjyYhfNRD3QCXjBJpiPl9KgkEkGXJbAkCUq4-Ur10EQ,4131 | ||
jinja2/nativetypes.py,sha256=Ul__gtVw4xH-0qvUvnCNHedQeNDwmEuyLJztzzSPeRg,2753 | ||
jinja2/nodes.py,sha256=Mk1oJPVgIjnQw9WOqILvcu3rLepcFZ0ahxQm2mbwDwc,31095 | ||
jinja2/optimizer.py,sha256=gQLlMYzvQhluhzmAIFA1tXS0cwgWYOjprN-gTRcHVsc,1457 | ||
jinja2/parser.py,sha256=fcfdqePNTNyvosIvczbytVA332qpsURvYnCGcjDHSkA,35660 | ||
jinja2/runtime.py,sha256=0y-BRyIEZ9ltByL2Id6GpHe1oDRQAwNeQvI0SKobNMw,30618 | ||
jinja2/sandbox.py,sha256=knayyUvXsZ-F0mk15mO2-ehK9gsw04UhB8td-iUOtLc,17127 | ||
jinja2/tests.py,sha256=iO_Y-9Vo60zrVe1lMpSl5sKHqAxe2leZHC08OoZ8K24,4799 | ||
jinja2/utils.py,sha256=Wy4yC3IByqUWwnKln6SdaixdzgK74P6F5nf-gQZrYnU,22436 | ||
jinja2/visitor.py,sha256=DUHupl0a4PGp7nxRtZFttUzAi1ccxzqc2hzetPYUz8U,3240 |
Empty file.
6 changes: 6 additions & 0 deletions
6
Splunk_TA_paloalto/bin/splunk_ta_paloalto/aob_py3/Jinja2-2.11.3.dist-info/WHEEL
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,6 @@ | ||
Wheel-Version: 1.0 | ||
Generator: bdist_wheel (0.36.2) | ||
Root-Is-Purelib: true | ||
Tag: py2-none-any | ||
Tag: py3-none-any | ||
|
3 changes: 3 additions & 0 deletions
3
Splunk_TA_paloalto/bin/splunk_ta_paloalto/aob_py3/Jinja2-2.11.3.dist-info/entry_points.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,3 @@ | ||
[babel.extractors] | ||
jinja2 = jinja2.ext:babel_extract [i18n] | ||
|
1 change: 1 addition & 0 deletions
1
Splunk_TA_paloalto/bin/splunk_ta_paloalto/aob_py3/Jinja2-2.11.3.dist-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 @@ | ||
jinja2 |
13 changes: 13 additions & 0 deletions
13
Splunk_TA_paloalto/bin/splunk_ta_paloalto/aob_py3/Mako-1.1.0.dist-info/AUTHORS
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,13 @@ | ||
Mako was created by Michael Bayer. | ||
|
||
Major contributing authors include: | ||
|
||
- Michael Bayer <[email protected]> | ||
- Geoffrey T. Dairiki <[email protected]> | ||
- Philip Jenvey <[email protected]> | ||
- David Peckam | ||
- Armin Ronacher | ||
- Ben Bangert <[email protected]> | ||
- Ben Trofatter | ||
|
||
|
1 change: 1 addition & 0 deletions
1
Splunk_TA_paloalto/bin/splunk_ta_paloalto/aob_py3/Mako-1.1.0.dist-info/INSTALLER
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 @@ | ||
pip |
19 changes: 19 additions & 0 deletions
19
Splunk_TA_paloalto/bin/splunk_ta_paloalto/aob_py3/Mako-1.1.0.dist-info/LICENSE
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,19 @@ | ||
Copyright 2006-2019 the Mako authors and contributors <see AUTHORS file>. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
this software and associated documentation files (the "Software"), to deal in | ||
the Software without restriction, including without limitation the rights to | ||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | ||
of the Software, and to permit persons to whom the Software is furnished to do | ||
so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
80 changes: 80 additions & 0 deletions
80
Splunk_TA_paloalto/bin/splunk_ta_paloalto/aob_py3/Mako-1.1.0.dist-info/METADATA
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,80 @@ | ||
Metadata-Version: 2.1 | ||
Name: Mako | ||
Version: 1.1.0 | ||
Summary: A super-fast templating language that borrows the best ideas from the existing templating languages. | ||
Home-page: https://www.makotemplates.org/ | ||
Author: Mike Bayer | ||
Author-email: [email protected] | ||
License: MIT | ||
Project-URL: Documentation, https://docs.makotemplates.org | ||
Project-URL: Issue Tracker, https://github.com/sqlalchemy/mako | ||
Keywords: templates | ||
Platform: UNKNOWN | ||
Classifier: Development Status :: 5 - Production/Stable | ||
Classifier: License :: OSI Approved :: MIT License | ||
Classifier: Environment :: Web Environment | ||
Classifier: Intended Audience :: Developers | ||
Classifier: Programming Language :: Python | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: Programming Language :: Python :: Implementation :: CPython | ||
Classifier: Programming Language :: Python :: Implementation :: PyPy | ||
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content | ||
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.* | ||
License-File: LICENSE | ||
License-File: AUTHORS | ||
Requires-Dist: MarkupSafe (>=0.9.2) | ||
|
||
========================= | ||
Mako Templates for Python | ||
========================= | ||
|
||
Mako is a template library written in Python. It provides a familiar, non-XML | ||
syntax which compiles into Python modules for maximum performance. Mako's | ||
syntax and API borrows from the best ideas of many others, including Django | ||
templates, Cheetah, Myghty, and Genshi. Conceptually, Mako is an embedded | ||
Python (i.e. Python Server Page) language, which refines the familiar ideas | ||
of componentized layout and inheritance to produce one of the most | ||
straightforward and flexible models available, while also maintaining close | ||
ties to Python calling and scoping semantics. | ||
|
||
Nutshell | ||
======== | ||
|
||
:: | ||
|
||
<%inherit file="base.html"/> | ||
<% | ||
rows = [[v for v in range(0,10)] for row in range(0,10)] | ||
%> | ||
<table> | ||
% for row in rows: | ||
${makerow(row)} | ||
% endfor | ||
</table> | ||
|
||
<%def name="makerow(row)"> | ||
<tr> | ||
% for name in row: | ||
<td>${name}</td>\ | ||
% endfor | ||
</tr> | ||
</%def> | ||
|
||
Philosophy | ||
=========== | ||
|
||
Python is a great scripting language. Don't reinvent the wheel...your templates can handle it ! | ||
|
||
Documentation | ||
============== | ||
|
||
See documentation for Mako at https://docs.makotemplates.org/en/latest/ | ||
|
||
License | ||
======== | ||
|
||
Mako is licensed under an MIT-style license (see LICENSE). | ||
Other incorporated projects may be licensed under different licenses. | ||
All licenses allow for non-commercial and commercial use. | ||
|
||
|
Oops, something went wrong.