aa-intel-tool 2.7.0__py3-none-any.whl → 2.7.2__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/constants.py +0 -17
- aa_intel_tool/exceptions.py +14 -4
- aa_intel_tool/locale/cs_CZ/LC_MESSAGES/django.po +15 -11
- aa_intel_tool/locale/de/LC_MESSAGES/django.mo +0 -0
- aa_intel_tool/locale/de/LC_MESSAGES/django.po +17 -13
- aa_intel_tool/locale/django.pot +16 -12
- aa_intel_tool/locale/es/LC_MESSAGES/django.mo +0 -0
- aa_intel_tool/locale/es/LC_MESSAGES/django.po +20 -18
- aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
- aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po +20 -15
- aa_intel_tool/locale/it_IT/LC_MESSAGES/django.po +15 -11
- aa_intel_tool/locale/ja/LC_MESSAGES/django.po +17 -11
- aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po +17 -11
- aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.po +15 -11
- aa_intel_tool/locale/pl_PL/LC_MESSAGES/django.po +15 -11
- aa_intel_tool/locale/ru/LC_MESSAGES/django.po +17 -11
- aa_intel_tool/locale/sk/LC_MESSAGES/django.po +15 -11
- aa_intel_tool/locale/uk/LC_MESSAGES/django.mo +0 -0
- aa_intel_tool/locale/uk/LC_MESSAGES/django.po +19 -15
- aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po +17 -11
- aa_intel_tool/parser/general.py +5 -3
- aa_intel_tool/parser/module/chatlist.py +6 -4
- aa_intel_tool/parser/module/dscan.py +1 -1
- aa_intel_tool/parser/module/fleetcomp.py +1 -1
- {aa_intel_tool-2.7.0.dist-info → aa_intel_tool-2.7.2.dist-info}/METADATA +1 -1
- {aa_intel_tool-2.7.0.dist-info → aa_intel_tool-2.7.2.dist-info}/RECORD +29 -29
- {aa_intel_tool-2.7.0.dist-info → aa_intel_tool-2.7.2.dist-info}/WHEEL +0 -0
- {aa_intel_tool-2.7.0.dist-info → aa_intel_tool-2.7.2.dist-info}/licenses/LICENSE +0 -0
|
@@ -56,15 +56,17 @@ def _get_character_info(scan_data: list) -> QuerySet[EveCharacter]:
|
|
|
56
56
|
)
|
|
57
57
|
except EveEntity.DoesNotExist as exc: # pylint: disable=no-member
|
|
58
58
|
raise ParserError(
|
|
59
|
-
message=
|
|
60
|
-
|
|
59
|
+
message=str(
|
|
60
|
+
_(
|
|
61
|
+
"Something went wrong while fetching the character information from ESI."
|
|
62
|
+
)
|
|
61
63
|
)
|
|
62
64
|
) from exc
|
|
63
65
|
|
|
64
66
|
# In case the name does not belong to an Eve character,
|
|
65
67
|
# EveEntity returns an empty object
|
|
66
68
|
if not eve_character_ids:
|
|
67
|
-
raise ParserError(message=_("Character unknown to ESI."))
|
|
69
|
+
raise ParserError(message=str(_("Character unknown to ESI.")))
|
|
68
70
|
|
|
69
71
|
eve_characters = get_or_create_character(character_ids=eve_character_ids)
|
|
70
72
|
|
|
@@ -253,7 +255,7 @@ def parse(
|
|
|
253
255
|
|
|
254
256
|
# Only parse the chat scan if the module is enabled
|
|
255
257
|
if not AppSettings.INTELTOOL_ENABLE_MODULE_CHATSCAN:
|
|
256
|
-
raise ParserError(message=_("The chat list module is currently disabled."))
|
|
258
|
+
raise ParserError(message=str(_("The chat list module is currently disabled.")))
|
|
257
259
|
|
|
258
260
|
logger.debug(msg=f"{len(scan_data)} name(s) to work through …")
|
|
259
261
|
|
|
@@ -359,7 +359,7 @@ def parse(scan_data: list) -> Scan:
|
|
|
359
359
|
|
|
360
360
|
# Only parse the d-scan if the module is enabled
|
|
361
361
|
if not AppSettings.INTELTOOL_ENABLE_MODULE_DSCAN:
|
|
362
|
-
raise ParserError(message=_("The D-Scan module is currently disabled."))
|
|
362
|
+
raise ParserError(message=str(_("The D-Scan module is currently disabled.")))
|
|
363
363
|
|
|
364
364
|
parsed_data = {}
|
|
365
365
|
ansiblex_destination, counter, eve_ids = _get_scan_details(scan_data=scan_data)
|
|
@@ -178,7 +178,7 @@ def parse(scan_data: list) -> Scan:
|
|
|
178
178
|
|
|
179
179
|
if not AppSettings.INTELTOOL_ENABLE_MODULE_FLEETCOMP:
|
|
180
180
|
raise ParserError(
|
|
181
|
-
message=_("The fleet composition module is currently disabled.")
|
|
181
|
+
message=str(_("The fleet composition module is currently disabled."))
|
|
182
182
|
)
|
|
183
183
|
|
|
184
184
|
parsed_data = {}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aa-intel-tool
|
|
3
|
-
Version: 2.7.
|
|
3
|
+
Version: 2.7.2
|
|
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
|
|
@@ -1,53 +1,53 @@
|
|
|
1
|
-
aa_intel_tool/__init__.py,sha256=
|
|
1
|
+
aa_intel_tool/__init__.py,sha256=PhGxwEQezU-XjFkB9sFJAVnsgeIwXo-OcjrkN9QfAAw,135
|
|
2
2
|
aa_intel_tool/admin.py,sha256=ZSsxpL4LmV0nxQRww6BwY5BPLM23JxpnCPwMQbACv78,2441
|
|
3
3
|
aa_intel_tool/app_settings.py,sha256=oDhUQii5p_DqWnBRXg26Q3rZwSmElMlzkhtr5WqiRK8,2531
|
|
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=
|
|
7
|
-
aa_intel_tool/exceptions.py,sha256=
|
|
6
|
+
aa_intel_tool/constants.py,sha256=sRUov2pA1ELHPt_3t-BfwMqQ5h8ZKpCl6ZLkvR8ETW0,2224
|
|
7
|
+
aa_intel_tool/exceptions.py,sha256=_iufWZejzDDGM24ydcUK3GRKqmOXHsKuarrppLLYyUo,866
|
|
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
|
|
10
10
|
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=dJ-7D-qhibX9fNJ6pQO1qDerYrWJPstGh2V1UiEgTIQ,4859
|
|
14
|
-
aa_intel_tool/locale/django.pot,sha256=
|
|
14
|
+
aa_intel_tool/locale/django.pot,sha256=t2Io239CNEdAg4nWZWII3ni9ZrWkKCd_-szeoK7I5Yg,13213
|
|
15
15
|
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/de/LC_MESSAGES/django.mo,sha256=
|
|
18
|
-
aa_intel_tool/locale/de/LC_MESSAGES/django.po,sha256=
|
|
19
|
-
aa_intel_tool/locale/es/LC_MESSAGES/django.mo,sha256=
|
|
20
|
-
aa_intel_tool/locale/es/LC_MESSAGES/django.po,sha256=
|
|
21
|
-
aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.mo,sha256=
|
|
22
|
-
aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po,sha256=
|
|
16
|
+
aa_intel_tool/locale/cs_CZ/LC_MESSAGES/django.po,sha256=d_5yvH2zWluzwjvZuQq0qPezbvc0WRz-ciPTX4QwQtc,13574
|
|
17
|
+
aa_intel_tool/locale/de/LC_MESSAGES/django.mo,sha256=DeiUuU1VwPN24wNa5Zbs8ljfTXv6R_BkSAGuuGoiAlk,7791
|
|
18
|
+
aa_intel_tool/locale/de/LC_MESSAGES/django.po,sha256=mDRRd-V_vXQ2rV0Fj401TMkwa_oR4rVyQf0oAPMaZSs,17341
|
|
19
|
+
aa_intel_tool/locale/es/LC_MESSAGES/django.mo,sha256=V036sIj1DoDmVV-8x2h63-ORR0i9GhKSIXHiPLnviu8,2091
|
|
20
|
+
aa_intel_tool/locale/es/LC_MESSAGES/django.po,sha256=TplLXQQDWbZ87av2tyxsTVlZo8DttjkiQqhUctm0peY,14430
|
|
21
|
+
aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.mo,sha256=XTwnByCB27gm04dVoP8QXG8FI1kQVGItFqvBC5PqN1c,6635
|
|
22
|
+
aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po,sha256=cUSyB4x_AXQ_K0-_0GE6DFtnGffxBnLHkOzLx3OQDCM,17734
|
|
23
23
|
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=
|
|
24
|
+
aa_intel_tool/locale/it_IT/LC_MESSAGES/django.po,sha256=k5FTRHaPAJmpEfkZy_YTPqZ75clWu2TJwGdW3M5WRkA,13263
|
|
25
25
|
aa_intel_tool/locale/ja/LC_MESSAGES/django.mo,sha256=QLIDRjta7RnIlXK5syiiuByJvHt3VDAW8ulGuV3oUmA,1183
|
|
26
|
-
aa_intel_tool/locale/ja/LC_MESSAGES/django.po,sha256=
|
|
26
|
+
aa_intel_tool/locale/ja/LC_MESSAGES/django.po,sha256=jqibDWTOb1ex6DiHVZ2Wkwvqb4zeFBgPV3ELcJOcEnI,13642
|
|
27
27
|
aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.mo,sha256=2aMqsSR_qUV9PzMoBBrcfyQxyg3fLte-9zinJftQ4BQ,7525
|
|
28
|
-
aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po,sha256=
|
|
28
|
+
aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po,sha256=BOcIZlqm0kA7fXgAhCUazySokA-z2Jq_xvI4I3q8Sp0,17797
|
|
29
29
|
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=
|
|
30
|
+
aa_intel_tool/locale/nl_NL/LC_MESSAGES/django.po,sha256=0EPKP2gO_ij42QTRntFPAWmXm-y4-3uE2VaHDPKL3Ws,13261
|
|
31
31
|
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=
|
|
32
|
+
aa_intel_tool/locale/pl_PL/LC_MESSAGES/django.po,sha256=SPXByoG_6UTUG6Qrlikt2y8OVLZiAvAT6Db6fdxV4I8,13523
|
|
33
33
|
aa_intel_tool/locale/ru/LC_MESSAGES/django.mo,sha256=cCSOc2yqFfkri0YWXGCNfUGqaneRqzPcP-bZtWxXm9c,10447
|
|
34
|
-
aa_intel_tool/locale/ru/LC_MESSAGES/django.po,sha256=
|
|
34
|
+
aa_intel_tool/locale/ru/LC_MESSAGES/django.po,sha256=TlppCfYHLaGWgwY-2FGx7H-Nn2wl89kAqiXoRIvrQ8c,20642
|
|
35
35
|
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/uk/LC_MESSAGES/django.mo,sha256=
|
|
38
|
-
aa_intel_tool/locale/uk/LC_MESSAGES/django.po,sha256=
|
|
36
|
+
aa_intel_tool/locale/sk/LC_MESSAGES/django.po,sha256=PV_QhfbBI50AlBMXDsK115aGGAQ1OpMZsHltYYGPxb0,13414
|
|
37
|
+
aa_intel_tool/locale/uk/LC_MESSAGES/django.mo,sha256=4ic5BKe-5veUvaDL8RvZL5t7_vz6K662aVIeE1SbIUg,10180
|
|
38
|
+
aa_intel_tool/locale/uk/LC_MESSAGES/django.po,sha256=egEy-uiou3JC69pa57rLdCNreAYmuQVLCdAS8l9dz0c,19797
|
|
39
39
|
aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=H8cexShbockghFW27eCu9W5npytYa0k36woJeQ8wiGc,2444
|
|
40
|
-
aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po,sha256=
|
|
40
|
+
aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po,sha256=6yQ6jfKCkCldqkCL5s04KzW2CLlEusT_3P7IFtx4mdQ,14209
|
|
41
41
|
aa_intel_tool/management/commands/aa_intel_tool_load_eve_types.py,sha256=rojHdwLg57a3darJif8uFwGxxiBQeFIOGRdr6qI0c5g,1796
|
|
42
42
|
aa_intel_tool/migrations/0001_initial.py,sha256=nwtThaFJ7wrOZld0MzQ-MLpHB9xG-SJOZPl8FbM8dFE,4339
|
|
43
43
|
aa_intel_tool/migrations/0002_alter_scan_raw_data.py,sha256=LDXPIxhCJ3QToQqmdyZubNEgiuGPsZZTBGKTOyApULw,405
|
|
44
44
|
aa_intel_tool/migrations/__init__.py,sha256=DlW5327gBRgSG2GG_T0E1NcpiTFtYs0Vty1fzj4eiPY,34
|
|
45
45
|
aa_intel_tool/parser/__init__.py,sha256=BAFdCEaeC0cmv74ZuZGZJCgJOiliMVBpgdQI63ABJ2U,30
|
|
46
|
-
aa_intel_tool/parser/general.py,sha256=
|
|
46
|
+
aa_intel_tool/parser/general.py,sha256=dZ5XvSCVqy1WEaxzENBMtR9Ium00xYH5slkogQ65p3U,1845
|
|
47
47
|
aa_intel_tool/parser/helper/db.py,sha256=SlIfxgtJ-JGXcCDaV73LY5hIpcShgQ_8RbMbiHiVXFQ,819
|
|
48
|
-
aa_intel_tool/parser/module/chatlist.py,sha256=
|
|
49
|
-
aa_intel_tool/parser/module/dscan.py,sha256=
|
|
50
|
-
aa_intel_tool/parser/module/fleetcomp.py,sha256=
|
|
48
|
+
aa_intel_tool/parser/module/chatlist.py,sha256=SAzxj-uyDOz5iGT-gtwHL92fe9JMbED-SWwNPO-U3Tw,9505
|
|
49
|
+
aa_intel_tool/parser/module/dscan.py,sha256=M004S2XM09DikC8lx5NR9L-VSAXip5OknksbTfmoRt8,11341
|
|
50
|
+
aa_intel_tool/parser/module/fleetcomp.py,sha256=UeHhANZztGe3frvGD40oaIKXfzHkR8OvkArtJUGGQ1w,6387
|
|
51
51
|
aa_intel_tool/scripts/drop_tables.sql,sha256=fJa_scRF95SxCmaMqFGzL4HhUwk5GN5cLexEbS_qwgw,192
|
|
52
52
|
aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.css,sha256=KEG4Af6yjLpE6gp5dK1LiTq2l9WELvWRPy6hb9oiGzg,3165
|
|
53
53
|
aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css,sha256=vrBBqG1hPUqEDh-WxtCoH3bE5JzNNjB9Zzma5TIMfRg,2135
|
|
@@ -128,7 +128,7 @@ aa_intel_tool/tests/test-data/fleetcomp.txt,sha256=BYqCJznI3e6jlHTQwmr08wZr2D_an
|
|
|
128
128
|
aa_intel_tool/views/__init__.py,sha256=zf5e30BdJ772oDJkQnBfFIi5a7-HEJByUIkv0iz3Kr8,29
|
|
129
129
|
aa_intel_tool/views/ajax.py,sha256=7xBsd0Eg6enDl7JeI9vNJXaF66lWjhStLfYdJGAobvM,911
|
|
130
130
|
aa_intel_tool/views/general.py,sha256=c2xD--Kkc9IfJg2x7VALPMhvwbssIY0qsbdFqfJEh-s,4040
|
|
131
|
-
aa_intel_tool-2.7.
|
|
132
|
-
aa_intel_tool-2.7.
|
|
133
|
-
aa_intel_tool-2.7.
|
|
134
|
-
aa_intel_tool-2.7.
|
|
131
|
+
aa_intel_tool-2.7.2.dist-info/METADATA,sha256=CFAKxYih7wxPiO0UTZyo3vqXSlHF-iaspm23NPUMf1o,55082
|
|
132
|
+
aa_intel_tool-2.7.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
133
|
+
aa_intel_tool-2.7.2.dist-info/licenses/LICENSE,sha256=UTib95uJWe2NQIG3TzU8-Hm-eaEZFqv9fqsjNT_xKWU,35151
|
|
134
|
+
aa_intel_tool-2.7.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|