aa-intel-tool 2.5.2__py3-none-any.whl → 2.6.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- aa_intel_tool/__init__.py +1 -1
- aa_intel_tool/app_settings.py +1 -1
- aa_intel_tool/constants.py +12 -5
- aa_intel_tool/helper/static_files.py +41 -0
- aa_intel_tool/locale/cs_CZ/LC_MESSAGES/django.po +34 -55
- aa_intel_tool/locale/de/LC_MESSAGES/django.po +44 -74
- aa_intel_tool/locale/django.pot +25 -30
- aa_intel_tool/locale/es/LC_MESSAGES/django.po +33 -53
- aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po +44 -72
- aa_intel_tool/locale/it_IT/LC_MESSAGES/django.po +32 -50
- aa_intel_tool/locale/ja/LC_MESSAGES/django.po +32 -50
- aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po +40 -62
- aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.po +32 -50
- aa_intel_tool/locale/pl_PL/LC_MESSAGES/django.po +34 -55
- aa_intel_tool/locale/ru/LC_MESSAGES/django.po +45 -76
- aa_intel_tool/locale/sk/LC_MESSAGES/django.po +33 -52
- aa_intel_tool/locale/uk/LC_MESSAGES/django.po +34 -55
- aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.mo +0 -0
- aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po +38 -55
- aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.css +5 -0
- aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css +1 -1
- aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.js +1 -0
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.min.js +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.min.js.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.js +7 -7
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.js +1 -0
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.min.js +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.min.js.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.js +18 -18
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.js +28 -2
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.min.js +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.min.js.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.js +41 -8
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.js +5 -5
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js.map +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool.js +66 -2
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool.min.js +1 -1
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool.min.js.map +1 -1
- aa_intel_tool/templates/aa_intel_tool/base.html +67 -0
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-chatscan-highlight-js.html +3 -0
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-chatscan-js.html +6 -3
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-css.html +1 -1
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-dscan-highlight-js.html +3 -0
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-dscan-js.html +4 -3
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-fleetcomp-js.html +6 -5
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-fleetcomposition-highlight-js.html +3 -0
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-js.html +1 -1
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-scan-result-common-js.html +3 -0
- aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html +3 -3
- aa_intel_tool/templates/aa_intel_tool/views/scan/dscan.html +3 -3
- aa_intel_tool/templates/aa_intel_tool/views/scan/fleetcomp.html +3 -3
- aa_intel_tool/templatetags/aa_intel_tool.py +66 -9
- aa_intel_tool/tests/test_app_settings.py +7 -1
- aa_intel_tool/tests/test_templatetags.py +57 -12
- {aa_intel_tool-2.5.2.dist-info → aa_intel_tool-2.6.0.dist-info}/METADATA +4 -3
- {aa_intel_tool-2.5.2.dist-info → aa_intel_tool-2.6.0.dist-info}/RECORD +66 -62
- {aa_intel_tool-2.5.2.dist-info → aa_intel_tool-2.6.0.dist-info}/WHEEL +1 -1
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-js-l10n.html +0 -46
- {aa_intel_tool-2.5.2.dist-info → aa_intel_tool-2.6.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -3,35 +3,80 @@ Tests for the template tags
|
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
5
|
# Django
|
|
6
|
-
from django.
|
|
6
|
+
from django.template import Context, Template
|
|
7
|
+
from django.test import TestCase, override_settings
|
|
7
8
|
|
|
8
9
|
# AA Intel Tool
|
|
9
10
|
from aa_intel_tool import __version__
|
|
10
|
-
from aa_intel_tool.
|
|
11
|
+
from aa_intel_tool.helper.static_files import calculate_integrity_hash
|
|
11
12
|
|
|
12
13
|
|
|
13
|
-
class
|
|
14
|
+
class TestVersionedStatic(TestCase):
|
|
14
15
|
"""
|
|
15
16
|
Tests for aa_intel_tool template tag
|
|
16
17
|
"""
|
|
17
18
|
|
|
19
|
+
@override_settings(DEBUG=False)
|
|
18
20
|
def test_versioned_static(self):
|
|
19
21
|
"""
|
|
20
22
|
Test should return static URL string with a version
|
|
21
23
|
:return:
|
|
22
24
|
"""
|
|
23
25
|
|
|
24
|
-
context = {"version": __version__}
|
|
26
|
+
context = Context(dict_={"version": __version__})
|
|
25
27
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
+
template_to_render = Template(
|
|
29
|
+
template_string=(
|
|
28
30
|
"{% load aa_intel_tool %}"
|
|
29
|
-
"{% aa_intel_tool_static '
|
|
30
|
-
|
|
31
|
-
|
|
31
|
+
"{% aa_intel_tool_static 'css/aa-intel-tool.min.css' %}"
|
|
32
|
+
"{% aa_intel_tool_static 'javascript/aa-intel-tool.min.js' %}"
|
|
33
|
+
)
|
|
32
34
|
)
|
|
33
35
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
36
|
+
rendered_template = template_to_render.render(context=context)
|
|
37
|
+
|
|
38
|
+
expected_static_css_src = (
|
|
39
|
+
f'/static/aa_intel_tool/css/aa-intel-tool.min.css?v={context["version"]}'
|
|
40
|
+
)
|
|
41
|
+
expected_static_css_src_integrity = calculate_integrity_hash(
|
|
42
|
+
"css/aa-intel-tool.min.css"
|
|
43
|
+
)
|
|
44
|
+
expected_static_js_src = f'/static/aa_intel_tool/javascript/aa-intel-tool.min.js?v={context["version"]}'
|
|
45
|
+
expected_static_js_src_integrity = calculate_integrity_hash(
|
|
46
|
+
"javascript/aa-intel-tool.min.js"
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
self.assertIn(member=expected_static_css_src, container=rendered_template)
|
|
50
|
+
self.assertIn(
|
|
51
|
+
member=expected_static_css_src_integrity, container=rendered_template
|
|
52
|
+
)
|
|
53
|
+
self.assertIn(member=expected_static_js_src, container=rendered_template)
|
|
54
|
+
self.assertIn(
|
|
55
|
+
member=expected_static_js_src_integrity, container=rendered_template
|
|
56
|
+
)
|
|
57
|
+
|
|
58
|
+
@override_settings(DEBUG=True)
|
|
59
|
+
def test_versioned_static_with_debug_enabled(self) -> None:
|
|
60
|
+
"""
|
|
61
|
+
Test versioned static template tag with DEBUG enabled
|
|
62
|
+
|
|
63
|
+
:return:
|
|
64
|
+
:rtype:
|
|
65
|
+
"""
|
|
66
|
+
|
|
67
|
+
context = Context({"version": __version__})
|
|
68
|
+
template_to_render = Template(
|
|
69
|
+
template_string=(
|
|
70
|
+
"{% load aa_intel_tool %}"
|
|
71
|
+
"{% aa_intel_tool_static 'css/aa-intel-tool.min.css' %}"
|
|
72
|
+
)
|
|
37
73
|
)
|
|
74
|
+
|
|
75
|
+
rendered_template = template_to_render.render(context=context)
|
|
76
|
+
|
|
77
|
+
expected_static_css_src = (
|
|
78
|
+
f'/static/aa_intel_tool/css/aa-intel-tool.min.css?v={context["version"]}'
|
|
79
|
+
)
|
|
80
|
+
|
|
81
|
+
self.assertIn(member=expected_static_css_src, container=rendered_template)
|
|
82
|
+
self.assertNotIn(member="integrity=", container=rendered_template)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: aa-intel-tool
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.6.0
|
|
4
4
|
Summary: A simple parser for D-Scans and more for Alliance Auth
|
|
5
5
|
Project-URL: Changelog, https://github.com/ppfeufer/aa-intel-tool/blob/master/CHANGELOG.md
|
|
6
6
|
Project-URL: Documentation, https://github.com/ppfeufer/aa-intel-tool/blob/master/README.md
|
|
@@ -683,6 +683,7 @@ License: GNU GENERAL PUBLIC LICENSE
|
|
|
683
683
|
the library. If this is what you want to do, use the GNU Lesser General
|
|
684
684
|
Public License instead of this License. But first, please read
|
|
685
685
|
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
|
686
|
+
License-File: LICENSE
|
|
686
687
|
Keywords: allianceauth,eveonline
|
|
687
688
|
Classifier: Environment :: Web Environment
|
|
688
689
|
Classifier: Framework :: Django
|
|
@@ -700,7 +701,7 @@ Classifier: Topic :: Internet :: WWW/HTTP
|
|
|
700
701
|
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
|
701
702
|
Requires-Python: >=3.10
|
|
702
703
|
Requires-Dist: allianceauth-app-utils>=1.19.1
|
|
703
|
-
Requires-Dist: allianceauth<5,>=4.
|
|
704
|
+
Requires-Dist: allianceauth<5,>=4.6
|
|
704
705
|
Requires-Dist: django-eveuniverse>=1.3
|
|
705
706
|
Provides-Extra: tests-allianceauth-latest
|
|
706
707
|
Requires-Dist: coverage; extra == 'tests-allianceauth-latest'
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
aa_intel_tool/__init__.py,sha256=
|
|
1
|
+
aa_intel_tool/__init__.py,sha256=I5Ep0s90Y5upvB2bf5_kFbKFEcL41KegXnJLwdAuBdo,135
|
|
2
2
|
aa_intel_tool/admin.py,sha256=ZSsxpL4LmV0nxQRww6BwY5BPLM23JxpnCPwMQbACv78,2441
|
|
3
|
-
aa_intel_tool/app_settings.py,sha256=
|
|
3
|
+
aa_intel_tool/app_settings.py,sha256=pinkxAcNKM4Bs50An5ahEX7DEwPBIV-WcQCTuqstJbo,2328
|
|
4
4
|
aa_intel_tool/apps.py,sha256=rfCtJ2bFQB4sDdl-zYo_i034oq-fF1Ad3NAU55NoBQk,452
|
|
5
5
|
aa_intel_tool/auth_hooks.py,sha256=Z0FyC6XWWCulRQzK1nv2JeDhlvOCxY37KXK_kDRy78U,1469
|
|
6
|
-
aa_intel_tool/constants.py,sha256=
|
|
6
|
+
aa_intel_tool/constants.py,sha256=Rjp7tqHW6VJcereDRvGmc6aRBFGHXFuOqkWAokZtI58,2704
|
|
7
7
|
aa_intel_tool/exceptions.py,sha256=1uEreioXqnWR8trgU5RSvj7CZ6GdkaWG-wI5G1pfvqs,693
|
|
8
8
|
aa_intel_tool/form.py,sha256=naH20ZGyktwM-JBZeC98FRlptLpYe5PvQYu-Xto7-z4,545
|
|
9
9
|
aa_intel_tool/models.py,sha256=oZ0_pPl-4XiGOspVx-9n8DITqsfIv2yizFn532BtZcg,4057
|
|
@@ -11,33 +11,34 @@ aa_intel_tool/tasks.py,sha256=lkW1kDJzU8iOINp_tKEL5rG9DM5icvEkyYQUhGrW_hU,1088
|
|
|
11
11
|
aa_intel_tool/urls.py,sha256=cncBfnPbJErN9w0qM83ZmtlnMJEolDHLQllU8bvxUa0,720
|
|
12
12
|
aa_intel_tool/helper/data_structure.py,sha256=ajH_hDWR5TV22gF0AMIZsu1PcY73OzPdOHx1d_D0GsM,302
|
|
13
13
|
aa_intel_tool/helper/eve_character.py,sha256=SZcfIJndVvriiqrZW3HrFtMZ9r3PlYIdaups2JndHkE,5143
|
|
14
|
-
aa_intel_tool/
|
|
14
|
+
aa_intel_tool/helper/static_files.py,sha256=AslMuHPXsBSjhUk9RESIAduw9uX2FiZFFOkCy3gFpnU,1107
|
|
15
|
+
aa_intel_tool/locale/django.pot,sha256=kuiBAxcx9BROfHAn-LZTdpUNHuRIhDMhVVtNqwbWpAQ,15001
|
|
15
16
|
aa_intel_tool/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=CHgMtrHlb-VEo5fUh2G3IrCNxoIScE-LzX6xjz1YkRc,864
|
|
16
|
-
aa_intel_tool/locale/cs_CZ/LC_MESSAGES/django.po,sha256=
|
|
17
|
+
aa_intel_tool/locale/cs_CZ/LC_MESSAGES/django.po,sha256=AvwpQY8Gr-tCT41NH9YNk-bbvJswI2P5v3_FJiGcxDs,15362
|
|
17
18
|
aa_intel_tool/locale/de/LC_MESSAGES/django.mo,sha256=ykEnYbWAdXz9NLf9mDbzlRQQNX7rwsEeK_NnbajXNUA,8931
|
|
18
|
-
aa_intel_tool/locale/de/LC_MESSAGES/django.po,sha256=
|
|
19
|
+
aa_intel_tool/locale/de/LC_MESSAGES/django.po,sha256=UK0NCpJejuK_1wop0dHYHI2OqaAcH0KP8_fXRoWMuf4,18229
|
|
19
20
|
aa_intel_tool/locale/es/LC_MESSAGES/django.mo,sha256=9vAXi9Jp1IkMbmCJLC-sboBSLAqCOuF-4ZAPUmeLKBI,2041
|
|
20
|
-
aa_intel_tool/locale/es/LC_MESSAGES/django.po,sha256=
|
|
21
|
+
aa_intel_tool/locale/es/LC_MESSAGES/django.po,sha256=l4himqjjYF8lsodCOobky_eQkLTqaSQ3LVDuqAXZnrg,16058
|
|
21
22
|
aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.mo,sha256=D3hTzMn8QWzX98qhjQ63PL7ICu7ibOCPVpL4PsJvA4M,7753
|
|
22
|
-
aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po,sha256=
|
|
23
|
+
aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po,sha256=3c4BMO7FPYWnjLC77eIEVQ61IYze6dDLEiKoMDR1wr0,18445
|
|
23
24
|
aa_intel_tool/locale/it_IT/LC_MESSAGES/django.mo,sha256=dqJTO-ELuQ2KgN37kNG65LG7jjb4IhNkU2Tq1C4vswg,483
|
|
24
|
-
aa_intel_tool/locale/it_IT/LC_MESSAGES/django.po,sha256=
|
|
25
|
+
aa_intel_tool/locale/it_IT/LC_MESSAGES/django.po,sha256=XGm5L2n7YsyGhO9zTlUxFDAt8gBG0pddUpr6H1wxzng,15051
|
|
25
26
|
aa_intel_tool/locale/ja/LC_MESSAGES/django.mo,sha256=QLIDRjta7RnIlXK5syiiuByJvHt3VDAW8ulGuV3oUmA,1183
|
|
26
|
-
aa_intel_tool/locale/ja/LC_MESSAGES/django.po,sha256=
|
|
27
|
+
aa_intel_tool/locale/ja/LC_MESSAGES/django.po,sha256=85wP6livNZubpljQmPOWZtZbMywd5A58E8Vrmomj5us,15324
|
|
27
28
|
aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.mo,sha256=_wp-CP4xtLHHiGwR2kBD_ouXauytLSbXE30BqvNchFE,8737
|
|
28
|
-
aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po,sha256=
|
|
29
|
+
aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po,sha256=Xo3tws7fG4Mmng7i5B6QRJTjXWGUUew34yME9FCG_ak,18487
|
|
29
30
|
aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.mo,sha256=K0pyH0sermqDXN9hnCQUDHcst_CewisXZp_Q0_3y-k4,479
|
|
30
|
-
aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.po,sha256=
|
|
31
|
+
aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.po,sha256=ujVPCyaDF7Xiyl2EK41bWOQaS8vmYaeAlMgcBTsfzMU,15049
|
|
31
32
|
aa_intel_tool/locale/pl_PL/LC_MESSAGES/django.mo,sha256=pviaTemIpmyQrIz-vEadYrZgOgntLAb5QtEkupkf35k,926
|
|
32
|
-
aa_intel_tool/locale/pl_PL/LC_MESSAGES/django.po,sha256=
|
|
33
|
+
aa_intel_tool/locale/pl_PL/LC_MESSAGES/django.po,sha256=m-GXKb9S_ZeboReIM3Mv183Q2gPNGPc6ojJZ3r5yxI4,15311
|
|
33
34
|
aa_intel_tool/locale/ru/LC_MESSAGES/django.mo,sha256=qo2lBho_yA5eP__d-MiguV3lThhIfOHlgWO-YRQI6Fg,11848
|
|
34
|
-
aa_intel_tool/locale/ru/LC_MESSAGES/django.po,sha256=
|
|
35
|
+
aa_intel_tool/locale/ru/LC_MESSAGES/django.po,sha256=aEablJu7OMVjcPHPBLzjhg-I2ca_EZLxAG4mRl0fZAM,21344
|
|
35
36
|
aa_intel_tool/locale/sk/LC_MESSAGES/django.mo,sha256=ag8xFgumlPADbLURJ5FQ4EARs6lIPpB4ulbuizC8J0I,558
|
|
36
|
-
aa_intel_tool/locale/sk/LC_MESSAGES/django.po,sha256=
|
|
37
|
+
aa_intel_tool/locale/sk/LC_MESSAGES/django.po,sha256=ENouOc9KiDUSN1EcsQpd4SJOvYa_qCgceBfEzdcGXfE,15202
|
|
37
38
|
aa_intel_tool/locale/uk/LC_MESSAGES/django.mo,sha256=rCzyZwK4BZbGCQK319E4EMF1NZ2-Ol7-SuhZZ6r0VDw,1065
|
|
38
|
-
aa_intel_tool/locale/uk/LC_MESSAGES/django.po,sha256=
|
|
39
|
-
aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=
|
|
40
|
-
aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po,sha256
|
|
39
|
+
aa_intel_tool/locale/uk/LC_MESSAGES/django.po,sha256=WAfKCy3V26YC99hXXtczmsvSD7_heJvJATKGddRAOOw,15492
|
|
40
|
+
aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=RJzJZ03Pu9E1JuNWd2m5YCJzue0J06x9q1zOXL2ziZE,2168
|
|
41
|
+
aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po,sha256=y-kw4ikBnK2ozWxDqKERcWlLbge8yYqElykpigpETmE,15757
|
|
41
42
|
aa_intel_tool/management/commands/aa_intel_tool_load_eve_types.py,sha256=rojHdwLg57a3darJif8uFwGxxiBQeFIOGRdr6qI0c5g,1796
|
|
42
43
|
aa_intel_tool/migrations/0001_initial.py,sha256=nwtThaFJ7wrOZld0MzQ-MLpHB9xG-SJOZPl8FbM8dFE,4339
|
|
43
44
|
aa_intel_tool/migrations/0002_alter_scan_raw_data.py,sha256=LDXPIxhCJ3QToQqmdyZubNEgiuGPsZZTBGKTOyApULw,405
|
|
@@ -49,40 +50,43 @@ aa_intel_tool/parser/module/chatlist.py,sha256=aTHIl_sq5L6EYY_jzG4bD-qDah-n648x4
|
|
|
49
50
|
aa_intel_tool/parser/module/dscan.py,sha256=rRqg5GKC3J3WHnmXP0NS-VHy4hN8SJayKExZR36gNT4,13148
|
|
50
51
|
aa_intel_tool/parser/module/fleetcomp.py,sha256=C4REgUNbfiSnVpPMmZ2G2zZtp7PL8P3A_VoEXDGJyL4,7174
|
|
51
52
|
aa_intel_tool/scripts/drop_tables.sql,sha256=fJa_scRF95SxCmaMqFGzL4HhUwk5GN5cLexEbS_qwgw,192
|
|
52
|
-
aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.css,sha256=
|
|
53
|
-
aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css,sha256=
|
|
54
|
-
aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css.map,sha256=
|
|
55
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.js,sha256=
|
|
56
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.min.js,sha256=
|
|
57
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.min.js.map,sha256=
|
|
58
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.js,sha256=
|
|
59
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js,sha256=
|
|
60
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js.map,sha256=
|
|
61
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.js,sha256=
|
|
62
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.min.js,sha256=
|
|
63
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.min.js.map,sha256=
|
|
64
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.js,sha256=
|
|
65
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js,sha256=
|
|
66
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js.map,sha256=
|
|
67
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.js,sha256=
|
|
68
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.min.js,sha256=
|
|
69
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.min.js.map,sha256=
|
|
70
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.js,sha256=
|
|
71
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js,sha256=
|
|
72
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js.map,sha256=
|
|
73
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.js,sha256=
|
|
74
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js,sha256=
|
|
75
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js.map,sha256=
|
|
76
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool.js,sha256=
|
|
77
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool.min.js,sha256=
|
|
78
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool.min.js.map,sha256=
|
|
79
|
-
aa_intel_tool/templates/aa_intel_tool/base.html,sha256=
|
|
80
|
-
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-chatscan-js.html,sha256=
|
|
81
|
-
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-
|
|
82
|
-
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-
|
|
83
|
-
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-
|
|
84
|
-
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-js
|
|
85
|
-
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-js.html,sha256=
|
|
53
|
+
aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.css,sha256=weSD7A9bCKwAvoWLsZbtKFz2PN1YGddfTf0zN5dFWDQ,3934
|
|
54
|
+
aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css,sha256=2iYiS27IqrrjpxIydY0SY6eVy66iQjZRgXGUE3UTBdE,2802
|
|
55
|
+
aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css.map,sha256=_vSrANXH_wiBUcF7XT9JzEKNGV00dMR58yprNPW7OT0,4827
|
|
56
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.js,sha256=N9X9VIPCo0cDnuyScOQysArmA1lRrzqn6kBArIP6tkc,10613
|
|
57
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.min.js,sha256=bHICKM_PzfXIWzlx0x6n3_cMqFTv92gUQwZCvbVH1BY,5792
|
|
58
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.min.js.map,sha256=vgMD-dPJuTDVFJHNdFQF9O0ypUN6HxQlDcd_YPvrNWM,4168
|
|
59
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.js,sha256=DcDgj6wfahFd57_rW4CR-YJtuqiuMb8qJ7G1O9ryxpk,12908
|
|
60
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js,sha256=gTFuobNdI2qOcWLSVYoFbjBGw3Lsjm-xz1cDT3fis2o,4535
|
|
61
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js.map,sha256=7FYAgqS1B6a7fvc858c29J_O0xWvEFZl6SG1M8RHGmw,5045
|
|
62
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.js,sha256=HilVSPhjjlZysJI3dKz8VdOHE-JIaCyflWfxp4tjl0s,4850
|
|
63
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.min.js,sha256=DF2rnqR8qco3MrbD8butcMpgZnzmKNAIgyXRs6o48-E,2156
|
|
64
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.min.js.map,sha256=m2SkRK5RUjR1Qq3gpmKCPUc7NyUlGKAIIdMqFZPAmAs,1795
|
|
65
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.js,sha256=MTAr9a3sN6jzDI3UVCLDKfZK0OYf7bIRsOLt0gmqwq8,24149
|
|
66
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js,sha256=9GsuIqAj9-DoaC1QGXbBkNSJkpSodU9Mw4_On9ESy5o,8586
|
|
67
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js.map,sha256=GTwDmg1XYqko5snq1f5_mdqe2eavE_NSAtFFa7aWn9I,9552
|
|
68
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.js,sha256=vasGyoutgJWlj7Bjb2FajKtbpc4zArlMktPYaJeVWWo,6342
|
|
69
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.min.js,sha256=C7jW2eyYj_-X6bUGehUVcEEnONhyh29a9KEChAZbcN0,3274
|
|
70
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.min.js.map,sha256=eUr4LsxRbGMOfG5VSRm6RiiGcpWe_uu_NkUoGZm8tKw,2422
|
|
71
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.js,sha256=b9zwLkvzqG0JHZjp_ypzS-HDswKsujU3xYynlUE8NoA,10368
|
|
72
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js,sha256=JQFMkm9-KHyKPTMGr93RGxZ17yitSIhFIhv4HxBTmI4,3826
|
|
73
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js.map,sha256=Y-HPkb-oUElMEmcrnCUZRGVOXSg80dQqezIT1ClGhM4,4406
|
|
74
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.js,sha256=Jv0FlYbmwmSMB5gLp11tLWdgqu4UWHsCh3wFksPvmr0,9783
|
|
75
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js,sha256=S-GrTqaWjKLH8u9eXFP4AeNbFd2EPBUdEJGVtH_m4Zw,3953
|
|
76
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js.map,sha256=8gQWRJm4p4p00B-P7C2zqZ4J8QDNkAw6qsqqThNKbTY,3373
|
|
77
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool.js,sha256=pTWjL2naLgfZ9L6jSibNty2ZFmJt9PNMx8tm6imu0mM,2909
|
|
78
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool.min.js,sha256=_8B8T_Ec-tFmcdXaiPOSIgFl183ohz1u9SN9s9213AA,813
|
|
79
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool.min.js.map,sha256=6s-ynI-maKOt08BZjqb3r-a1xRPD7E36ECJ8Kpb4NHs,1062
|
|
80
|
+
aa_intel_tool/templates/aa_intel_tool/base.html,sha256=I2abc-eowCHPj-L86az9WLIK-O2OAqTsLuOHiHp6SYQ,4645
|
|
81
|
+
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-chatscan-highlight-js.html,sha256=JngEbZl9VTTz_O3l-EfTV--ZrVNXtlUBekVdhfohk4Y,106
|
|
82
|
+
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-chatscan-js.html,sha256=xBxaOlHOmefupGsUOR_hHLI77W_vpDYwRto8DlixCVU,310
|
|
83
|
+
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-css.html,sha256=zQshuYs8YZK5DP7jCzOVVzS6ZnWRmRQAv7WV3kxj7ag,81
|
|
84
|
+
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-dscan-highlight-js.html,sha256=Fz2mGQFX0U-IYl4qsRAeat79siukEqKqj3W7l3OrFLI,103
|
|
85
|
+
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-dscan-js.html,sha256=nd6Yf9l_xqhX3QEaPURKdul0ebtxBJIR95kvJ3_FFNs,249
|
|
86
|
+
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-fleetcomp-js.html,sha256=MF28NdXsEA-5qFAHyEr5abODRfUsnlfQofCQOyMSZoc,559
|
|
87
|
+
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-fleetcomposition-highlight-js.html,sha256=E_GHNcpKE_PhZ0VyePbIr_Vu7HqnUWjKsPwKn3J9FJI,114
|
|
88
|
+
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-js.html,sha256=mNIDCO9aOCY3OmO79itoKk5wIu8TpyBXKMJoTm1H9eY,87
|
|
89
|
+
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-scan-result-common-js.html,sha256=P0iyNeVP-DtKJbcpQA_ZqvYm1H0V2HdjNG7lDdtxrUI,106
|
|
86
90
|
aa_intel_tool/templates/aa_intel_tool/partials/body/scan-retention-note.html,sha256=rf1A4UuYoGWaWlB_tqNgCuxihmjC8f9vOhAVvDkfoa8,386
|
|
87
91
|
aa_intel_tool/templates/aa_intel_tool/partials/footer/app-translation-footer.html,sha256=nDZPOnsQLBN9meAhxnhd0ynUQIVi3YPzhi47n89zcIg,422
|
|
88
92
|
aa_intel_tool/templates/aa_intel_tool/partials/index/form.html,sha256=EBt4fejLwk5xN9qm9BA3T6cWYtmcDeXnrGFD9rWT3X4,3114
|
|
@@ -101,21 +105,21 @@ aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details.html
|
|
|
101
105
|
aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/participation.html,sha256=pZVAwOhp6e74lZtk4357YIbiiW2lqzvAZDZwlAjQu-A,678
|
|
102
106
|
aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html,sha256=6vAGVjfMTckWnT_GztyUrsoI8gt28Ol52QD2kQHTd3Y,1653
|
|
103
107
|
aa_intel_tool/templates/aa_intel_tool/views/index.html,sha256=E9uKNF5GC8iI08kS7mBjVmu4y8IrHjZspK1VtZ_dO5A,736
|
|
104
|
-
aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html,sha256=
|
|
105
|
-
aa_intel_tool/templates/aa_intel_tool/views/scan/dscan.html,sha256=
|
|
106
|
-
aa_intel_tool/templates/aa_intel_tool/views/scan/fleetcomp.html,sha256=
|
|
108
|
+
aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html,sha256=t-YpvHlzM3Efok8d8ZNEgvwwxx1i_mnNy3zPY888KXE,1700
|
|
109
|
+
aa_intel_tool/templates/aa_intel_tool/views/scan/dscan.html,sha256=G4vASN4GbWPuwAgMA9AX2LeNDfwrPGDuHRN9uZcVHo0,2177
|
|
110
|
+
aa_intel_tool/templates/aa_intel_tool/views/scan/fleetcomp.html,sha256=cnQ4-XJJEonIJ-s-LnV_Ah-ug0opqDi38mm-801KZc8,2010
|
|
107
111
|
aa_intel_tool/templatetags/__init__.py,sha256=sP2D1ovt2gGAPLcGQkByRgXYhvUJ6C52mZMlLIALQ8s,37
|
|
108
|
-
aa_intel_tool/templatetags/aa_intel_tool.py,sha256=
|
|
112
|
+
aa_intel_tool/templatetags/aa_intel_tool.py,sha256=_XLig7J4eRGnkE0YRWJhjVhgN0dYGQVDAk_RYakoMY4,2609
|
|
109
113
|
aa_intel_tool/tests/__init__.py,sha256=NLuMBNDHYOXDmPgpyG-g_kDaATVQWv1iC-dJ8BA1kZc,29
|
|
110
114
|
aa_intel_tool/tests/test_access.py,sha256=_T1-SskmhrkC141lU_LvmUigeG3mPpYTabA9Q03rLIo,2747
|
|
111
115
|
aa_intel_tool/tests/test_admin.py,sha256=yw97GjqqzNNFfJiSJ1MkBeuQfTGvF0JAmvhvRycqMKg,2072
|
|
112
|
-
aa_intel_tool/tests/test_app_settings.py,sha256=
|
|
116
|
+
aa_intel_tool/tests/test_app_settings.py,sha256=6hqLWlWnFYeNLIdY7yOqPSqLhTeaSwfoRy__TnGIAdc,2738
|
|
113
117
|
aa_intel_tool/tests/test_auth_hooks.py,sha256=Xikx6HYWgSarLiHVxnQmRpFBQNt-xfYgb53CjGvvJcY,2451
|
|
114
118
|
aa_intel_tool/tests/test_helper_data_structures.py,sha256=1zRuh54-6YtDt7M1w7JpBRHlvS2rgBdnzvWLXV9Kl3s,765
|
|
115
119
|
aa_intel_tool/tests/test_models.py,sha256=rtwWDO251OoU6mHo-6u0LS0X7qb7uHtDIPoY3iEvhS0,817
|
|
116
120
|
aa_intel_tool/tests/test_parser.py,sha256=H2zBZa7e9gxE1Ieln7-PhvJ8Tx7YGO7e0YjqCrRYvK4,3922
|
|
117
121
|
aa_intel_tool/tests/test_parser_helper_db.py,sha256=f8qqPKUxG39X77iEICh_P1UmXDbHPnJc_tXe3FuxGYs,1642
|
|
118
|
-
aa_intel_tool/tests/test_templatetags.py,sha256=
|
|
122
|
+
aa_intel_tool/tests/test_templatetags.py,sha256=XNEEVy-PI29Ogy1uX0Z3KCX2D_wBvDfH3tQcd_kn15s,2693
|
|
119
123
|
aa_intel_tool/tests/utils.py,sha256=rRKeEZ2GkuoFJb7WoTgOOaXhlNwyb0xH3-5WRbWITBs,1435
|
|
120
124
|
aa_intel_tool/tests/test-data/chatscan-faulty.txt,sha256=E1kv5BaZGagLP9VTaac8sVt0PMUMNpyMMqkx3dCZ8cg,40
|
|
121
125
|
aa_intel_tool/tests/test-data/chatscan.txt,sha256=QkZER0l6-iw7uwTiDIpp2PUQ4NecaHWX83rZSrLp_LI,40
|
|
@@ -126,7 +130,7 @@ aa_intel_tool/tests/test-data/fleetcomp.txt,sha256=BYqCJznI3e6jlHTQwmr08wZr2D_an
|
|
|
126
130
|
aa_intel_tool/views/__init__.py,sha256=zf5e30BdJ772oDJkQnBfFIi5a7-HEJByUIkv0iz3Kr8,29
|
|
127
131
|
aa_intel_tool/views/ajax.py,sha256=7xBsd0Eg6enDl7JeI9vNJXaF66lWjhStLfYdJGAobvM,911
|
|
128
132
|
aa_intel_tool/views/general.py,sha256=c2xD--Kkc9IfJg2x7VALPMhvwbssIY0qsbdFqfJEh-s,4040
|
|
129
|
-
aa_intel_tool-2.
|
|
130
|
-
aa_intel_tool-2.
|
|
131
|
-
aa_intel_tool-2.
|
|
132
|
-
aa_intel_tool-2.
|
|
133
|
+
aa_intel_tool-2.6.0.dist-info/METADATA,sha256=Fv09panWmOSypx2ZhXg60SVLDlNIRxMP7SRBZQs64Dg,55091
|
|
134
|
+
aa_intel_tool-2.6.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
135
|
+
aa_intel_tool-2.6.0.dist-info/licenses/LICENSE,sha256=UTib95uJWe2NQIG3TzU8-Hm-eaEZFqv9fqsjNT_xKWU,35151
|
|
136
|
+
aa_intel_tool-2.6.0.dist-info/RECORD,,
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
{% load i18n %}
|
|
2
|
-
|
|
3
|
-
<script>
|
|
4
|
-
const aaIntelToolJsL10n = {
|
|
5
|
-
language: '{{ LANGUAGE_CODE }}',
|
|
6
|
-
copyToClipboard: {
|
|
7
|
-
permalink: {
|
|
8
|
-
text: {
|
|
9
|
-
success: '{% translate "Permalink successfully copied" %}',
|
|
10
|
-
error: '{% translate "Something went wrong. Nothing copied. Maybe your browser does not support this function." %}'
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
},
|
|
14
|
-
scanData: {
|
|
15
|
-
empty: '{% translate "Unaffiliated / No Alliance" %}',
|
|
16
|
-
npcCorp: '{% translate "NPC Corp" %}',
|
|
17
|
-
},
|
|
18
|
-
dataTables: {
|
|
19
|
-
translation: {
|
|
20
|
-
decimal: '{% translate "." context "Decimal separator" %}',
|
|
21
|
-
thousands: '{% translate "," context "Thousands separator" %}',
|
|
22
|
-
emptyTable: '{% translate "No data available in this table" %}',
|
|
23
|
-
info: '{% translate "Showing _END_ entries" context "Keep _END_ as it is. It will be replaced by a number." %}',
|
|
24
|
-
infoFiltered: '{% translate "(filtered from _MAX_ total entries)" context "Keep _MAX_ as it is. It will be replaced by a number." %}',
|
|
25
|
-
infoEmpty: '{% translate "No records available" %}',
|
|
26
|
-
infoPostFix: '',
|
|
27
|
-
lengthMenu: '{% translate "Show _MENU_" context "Keep _MENU_ as it is. It will be replaced by an HTML construct." %}',
|
|
28
|
-
loadingRecords: '{% translate "Loading …" %}',
|
|
29
|
-
processing: '{% translate "Processing …" %}',
|
|
30
|
-
zeroRecords: '{% translate "Nothing found, sorry …" %}',
|
|
31
|
-
search: '_INPUT_',
|
|
32
|
-
searchPlaceholder: '{% translate "Search …" %}',
|
|
33
|
-
paginate: {
|
|
34
|
-
first: '{% translate "First" %}',
|
|
35
|
-
last: '{% translate "Last" %}',
|
|
36
|
-
next: '{% translate "Next" %}',
|
|
37
|
-
previous: '{% translate "Previous" %}'
|
|
38
|
-
},
|
|
39
|
-
aria: {
|
|
40
|
-
sortAscending: '{% translate ": activate to sort column ascending" %}',
|
|
41
|
-
sortDescending: '{% translate ": activate to sort column descending" %}',
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
};
|
|
46
|
-
</script>
|
|
File without changes
|