Skip to content
This repository was archived by the owner on Dec 14, 2024. It is now read-only.

Commit ae653b3

Browse files
paulmnguyenPaul Nguyen
andauthored
perf(Add-On): Update AOB to 4.2.0
* perf(Add-On): Update AOB to 4.2.0 Closes #331 --------- Co-authored-by: Paul Nguyen <[email protected]>
1 parent 1f28105 commit ae653b3

File tree

386 files changed

+14068
-48662
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

386 files changed

+14068
-48662
lines changed

Splunk_TA_paloalto/appserver/templates/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
~ Copyright 2021 Splunk Inc.
2+
~ Copyright 2024 Splunk Inc.
33
~
44
~ Licensed under the Apache License, Version 2.0 (the "License");
55
~ you may not use this file except in compliance with the License.

Splunk_TA_paloalto/bin/aperture.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import json
88

99
import modinput_wrapper.base_modinput
10-
from solnlib.packages.splunklib import modularinput as smi
10+
from splunklib import modularinput as smi
1111

1212

1313

Splunk_TA_paloalto/bin/autofocus_export.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
import json
88

99
import modinput_wrapper.base_modinput
10-
from solnlib.packages.splunklib import modularinput as smi
11-
10+
from splunklib import modularinput as smi
1211

1312

1413
import input_module_autofocus_export as input_module

Splunk_TA_paloalto/bin/cortex_xdr.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
import json
88

99
import modinput_wrapper.base_modinput
10-
from solnlib.packages.splunklib import modularinput as smi
11-
10+
from splunklib import modularinput as smi
1211

1312

1413
import input_module_cortex_xdr as input_module

Splunk_TA_paloalto/bin/iot_security.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import json
88

99
import modinput_wrapper.base_modinput
10-
from solnlib.packages.splunklib import modularinput as smi
10+
from splunklib import modularinput as smi
1111

1212

1313

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pip
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Copyright 2007 Pallets
2+
3+
Redistribution and use in source and binary forms, with or without
4+
modification, are permitted provided that the following conditions are
5+
met:
6+
7+
1. Redistributions of source code must retain the above copyright
8+
notice, this list of conditions and the following disclaimer.
9+
10+
2. Redistributions in binary form must reproduce the above copyright
11+
notice, this list of conditions and the following disclaimer in the
12+
documentation and/or other materials provided with the distribution.
13+
14+
3. Neither the name of the copyright holder nor the names of its
15+
contributors may be used to endorse or promote products derived from
16+
this software without specific prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
21+
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22+
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
24+
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
25+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
Metadata-Version: 2.1
2+
Name: Jinja2
3+
Version: 3.1.3
4+
Summary: A very fast and expressive template engine.
5+
Home-page: https://palletsprojects.com/p/jinja/
6+
Maintainer: Pallets
7+
Maintainer-email: [email protected]
8+
License: BSD-3-Clause
9+
Project-URL: Donate, https://palletsprojects.com/donate
10+
Project-URL: Documentation, https://jinja.palletsprojects.com/
11+
Project-URL: Changes, https://jinja.palletsprojects.com/changes/
12+
Project-URL: Source Code, https://github.com/pallets/jinja/
13+
Project-URL: Issue Tracker, https://github.com/pallets/jinja/issues/
14+
Project-URL: Chat, https://discord.gg/pallets
15+
Classifier: Development Status :: 5 - Production/Stable
16+
Classifier: Environment :: Web Environment
17+
Classifier: Intended Audience :: Developers
18+
Classifier: License :: OSI Approved :: BSD License
19+
Classifier: Operating System :: OS Independent
20+
Classifier: Programming Language :: Python
21+
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
22+
Classifier: Topic :: Text Processing :: Markup :: HTML
23+
Requires-Python: >=3.7
24+
Description-Content-Type: text/x-rst
25+
License-File: LICENSE.rst
26+
Requires-Dist: MarkupSafe >=2.0
27+
Provides-Extra: i18n
28+
Requires-Dist: Babel >=2.7 ; extra == 'i18n'
29+
30+
Jinja
31+
=====
32+
33+
Jinja is a fast, expressive, extensible templating engine. Special
34+
placeholders in the template allow writing code similar to Python
35+
syntax. Then the template is passed data to render the final document.
36+
37+
It includes:
38+
39+
- Template inheritance and inclusion.
40+
- Define and import macros within templates.
41+
- HTML templates can use autoescaping to prevent XSS from untrusted
42+
user input.
43+
- A sandboxed environment can safely render untrusted templates.
44+
- AsyncIO support for generating templates and calling async
45+
functions.
46+
- I18N support with Babel.
47+
- Templates are compiled to optimized Python code just-in-time and
48+
cached, or can be compiled ahead-of-time.
49+
- Exceptions point to the correct line in templates to make debugging
50+
easier.
51+
- Extensible filters, tests, functions, and even syntax.
52+
53+
Jinja's philosophy is that while application logic belongs in Python if
54+
possible, it shouldn't make the template designer's job difficult by
55+
restricting functionality too much.
56+
57+
58+
Installing
59+
----------
60+
61+
Install and update using `pip`_:
62+
63+
.. code-block:: text
64+
65+
$ pip install -U Jinja2
66+
67+
.. _pip: https://pip.pypa.io/en/stable/getting-started/
68+
69+
70+
In A Nutshell
71+
-------------
72+
73+
.. code-block:: jinja
74+
75+
{% extends "base.html" %}
76+
{% block title %}Members{% endblock %}
77+
{% block content %}
78+
<ul>
79+
{% for user in users %}
80+
<li><a href="{{ user.url }}">{{ user.username }}</a></li>
81+
{% endfor %}
82+
</ul>
83+
{% endblock %}
84+
85+
86+
Donate
87+
------
88+
89+
The Pallets organization develops and supports Jinja and other popular
90+
packages. In order to grow the community of contributors and users, and
91+
allow the maintainers to devote more time to the projects, `please
92+
donate today`_.
93+
94+
.. _please donate today: https://palletsprojects.com/donate
95+
96+
97+
Links
98+
-----
99+
100+
- Documentation: https://jinja.palletsprojects.com/
101+
- Changes: https://jinja.palletsprojects.com/changes/
102+
- PyPI Releases: https://pypi.org/project/Jinja2/
103+
- Source Code: https://github.com/pallets/jinja/
104+
- Issue Tracker: https://github.com/pallets/jinja/issues/
105+
- Chat: https://discord.gg/pallets
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
Jinja2-3.1.3.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
2+
Jinja2-3.1.3.dist-info/LICENSE.rst,sha256=O0nc7kEF6ze6wQ-vG-JgQI_oXSUrjp3y4JefweCUQ3s,1475
3+
Jinja2-3.1.3.dist-info/METADATA,sha256=0cLNbRCI91jytc7Bzv3XAQfZzFDF2gxkJuH46eF5vew,3301
4+
Jinja2-3.1.3.dist-info/RECORD,,
5+
Jinja2-3.1.3.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6+
Jinja2-3.1.3.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
7+
Jinja2-3.1.3.dist-info/entry_points.txt,sha256=zRd62fbqIyfUpsRtU7EVIFyiu1tPwfgO7EvPErnxgTE,59
8+
Jinja2-3.1.3.dist-info/top_level.txt,sha256=PkeVWtLb3-CqjWi1fO29OCbj55EhX_chhKrCdrVe_zs,7
9+
jinja2/__init__.py,sha256=NTBwMwsECrdHmxeXF7seusHLzrh6Ldn1A9qhS5cDuf0,1927
10+
jinja2/_identifier.py,sha256=_zYctNKzRqlk_murTNlzrju1FFJL7Va_Ijqqd7ii2lU,1958
11+
jinja2/async_utils.py,sha256=dFcmh6lMNfbh7eLKrBio8JqAKLHdZbpCuurFN4OERtY,2447
12+
jinja2/bccache.py,sha256=mhz5xtLxCcHRAa56azOhphIAe19u1we0ojifNMClDio,14061
13+
jinja2/compiler.py,sha256=PJzYdRLStlEOqmnQs1YxlizPrJoj3jTZuUleREn6AIQ,72199
14+
jinja2/constants.py,sha256=GMoFydBF_kdpaRKPoM5cl5MviquVRLVyZtfp5-16jg0,1433
15+
jinja2/debug.py,sha256=iWJ432RadxJNnaMOPrjIDInz50UEgni3_HKuFXi2vuQ,6299
16+
jinja2/defaults.py,sha256=boBcSw78h-lp20YbaXSJsqkAI2uN_mD_TtCydpeq5wU,1267
17+
jinja2/environment.py,sha256=0qldX3VQKZcm6lgn7zHz94oRFow7YPYERiqkquomNjU,61253
18+
jinja2/exceptions.py,sha256=ioHeHrWwCWNaXX1inHmHVblvc4haO7AXsjCp3GfWvx0,5071
19+
jinja2/ext.py,sha256=5fnMpllaXkfm2P_93RIvi-OnK7Tk8mCW8Du-GcD12Hc,31844
20+
jinja2/filters.py,sha256=vYjKb2zaPShvYtn_LpSmqfS8SScbrA_KOanNibsMDIE,53862
21+
jinja2/idtracking.py,sha256=GfNmadir4oDALVxzn3DL9YInhJDr69ebXeA2ygfuCGA,10704
22+
jinja2/lexer.py,sha256=DW2nX9zk-6MWp65YR2bqqj0xqCvLtD-u9NWT8AnFRxQ,29726
23+
jinja2/loaders.py,sha256=ayAwxfrA1SAffQta0nwSDm3TDT4KYiIGN_D9Z45B310,23085
24+
jinja2/meta.py,sha256=GNPEvifmSaU3CMxlbheBOZjeZ277HThOPUTf1RkppKQ,4396
25+
jinja2/nativetypes.py,sha256=7GIGALVJgdyL80oZJdQUaUfwSt5q2lSSZbXt0dNf_M4,4210
26+
jinja2/nodes.py,sha256=i34GPRAZexXMT6bwuf5SEyvdmS-bRCy9KMjwN5O6pjk,34550
27+
jinja2/optimizer.py,sha256=tHkMwXxfZkbfA1KmLcqmBMSaz7RLIvvItrJcPoXTyD8,1650
28+
jinja2/parser.py,sha256=Y199wPL-G67gJoi5G_5sHuu9uEP1PJkjjLEW_xTH8-k,39736
29+
jinja2/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30+
jinja2/runtime.py,sha256=_6LkKIWFJjQdqlrgA3K39zBFQ-7Orm3wGDm96RwxQoE,33406
31+
jinja2/sandbox.py,sha256=Y0xZeXQnH6EX5VjaV2YixESxoepnRbW_3UeQosaBU3M,14584
32+
jinja2/tests.py,sha256=Am5Z6Lmfr2XaH_npIfJJ8MdXtWsbLjMULZJulTAj30E,5905
33+
jinja2/utils.py,sha256=IMwRIcN1SsTw2-jdQtlH2KzNABsXZBW_-tnFXafQBvY,23933
34+
jinja2/visitor.py,sha256=MH14C6yq24G_KVtWzjwaI7Wg14PCJIYlWW1kpkxYak0,3568
File renamed without changes.

0 commit comments

Comments
 (0)