aa-intel-tool 1.1.3__py3-none-any.whl → 2.0.0b1__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 -6
- aa_intel_tool/app_settings.py +32 -1
- aa_intel_tool/auth_hooks.py +1 -1
- aa_intel_tool/constants.py +0 -13
- aa_intel_tool/locale/de/LC_MESSAGES/django.po +141 -139
- aa_intel_tool/locale/django.pot +140 -138
- aa_intel_tool/locale/es/LC_MESSAGES/django.mo +0 -0
- aa_intel_tool/locale/es/LC_MESSAGES/django.po +148 -144
- aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
- aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po +149 -145
- aa_intel_tool/locale/it_IT/LC_MESSAGES/django.po +141 -139
- aa_intel_tool/locale/ja/LC_MESSAGES/django.po +141 -139
- aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po +142 -140
- aa_intel_tool/locale/ru/LC_MESSAGES/django.mo +0 -0
- aa_intel_tool/locale/ru/LC_MESSAGES/django.po +144 -151
- aa_intel_tool/locale/uk/LC_MESSAGES/django.po +141 -139
- aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.mo +0 -0
- aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po +149 -147
- aa_intel_tool/management/commands/aa_intel_tool_load_eve_types.py +1 -1
- aa_intel_tool/parser/module/chatlist.py +17 -7
- aa_intel_tool/parser/module/dscan.py +36 -33
- aa_intel_tool/parser/module/fleetcomp.py +11 -5
- aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.css +7 -147
- 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 +11 -11
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.js +24 -24
- 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 +12 -12
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.js +49 -49
- 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 +12 -12
- aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.js +18 -18
- 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 +85 -170
- 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 +1 -1
- 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 +9 -4
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-chatscan-js.html +1 -1
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-css.html +1 -2
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-dscan-js.html +1 -1
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-fleetcomp-js.html +1 -1
- aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-js.html +1 -1
- aa_intel_tool/templates/aa_intel_tool/partials/body/scan-retention-note.html +1 -1
- aa_intel_tool/templates/aa_intel_tool/partials/footer/app-translation-footer.html +1 -1
- aa_intel_tool/templates/aa_intel_tool/partials/index/form.html +21 -22
- aa_intel_tool/templates/aa_intel_tool/partials/scan/buttons.html +6 -5
- aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html +7 -7
- aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html +7 -7
- aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html +7 -7
- aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html +7 -7
- aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid.html +2 -2
- aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html +7 -7
- aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-types.html +7 -7
- aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown.html +1 -1
- aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/system-information.html +2 -2
- aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html +1 -1
- aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html +6 -6
- aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details.html +1 -1
- aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/participation.html +1 -1
- aa_intel_tool/templates/aa_intel_tool/views/index.html +4 -9
- aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html +2 -2
- aa_intel_tool/templates/aa_intel_tool/views/scan/dscan.html +2 -2
- aa_intel_tool/templates/aa_intel_tool/views/scan/fleetcomp.html +2 -2
- aa_intel_tool/tests/test_access.py +24 -13
- aa_intel_tool/tests/test_auth_hooks.py +18 -12
- aa_intel_tool/tests/test_parser.py +1 -1
- aa_intel_tool/tests/test_templatetags.py +2 -3
- aa_intel_tool/tests/utils.py +14 -0
- aa_intel_tool/views/general.py +3 -1
- {aa_intel_tool-1.1.3.dist-info → aa_intel_tool-2.0.0b1.dist-info}/METADATA +31 -33
- {aa_intel_tool-1.1.3.dist-info → aa_intel_tool-2.0.0b1.dist-info}/RECORD +81 -84
- {aa_intel_tool-1.1.3.dist-info → aa_intel_tool-2.0.0b1.dist-info}/WHEEL +1 -1
- aa_intel_tool/static/aa_intel_tool/css/aa-bootstrap-fix.css +0 -13
- aa_intel_tool/static/aa_intel_tool/css/aa-bootstrap-fix.min.css +0 -2
- aa_intel_tool/static/aa_intel_tool/css/aa-bootstrap-fix.min.css.map +0 -1
- /aa_intel_tool/templatetags/{inteltool_versioned_static.py → aa_intel_tool.py} +0 -0
- {aa_intel_tool-1.1.3.dist-info → aa_intel_tool-2.0.0b1.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: aa-intel-tool
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.0.0b1
|
|
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
|
|
@@ -687,7 +687,7 @@ License-File: LICENSE
|
|
|
687
687
|
Keywords: allianceauth,eveonline
|
|
688
688
|
Classifier: Environment :: Web Environment
|
|
689
689
|
Classifier: Framework :: Django
|
|
690
|
-
Classifier: Framework :: Django :: 4.
|
|
690
|
+
Classifier: Framework :: Django :: 4.2
|
|
691
691
|
Classifier: Intended Audience :: Developers
|
|
692
692
|
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
693
693
|
Classifier: Operating System :: OS Independent
|
|
@@ -697,12 +697,16 @@ Classifier: Programming Language :: Python :: 3.8
|
|
|
697
697
|
Classifier: Programming Language :: Python :: 3.9
|
|
698
698
|
Classifier: Programming Language :: Python :: 3.10
|
|
699
699
|
Classifier: Programming Language :: Python :: 3.11
|
|
700
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
700
701
|
Classifier: Topic :: Internet :: WWW/HTTP
|
|
701
702
|
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
|
702
703
|
Requires-Python: >=3.8
|
|
703
704
|
Requires-Dist: allianceauth-app-utils>=1.19.1
|
|
704
|
-
Requires-Dist: allianceauth>=
|
|
705
|
+
Requires-Dist: allianceauth>=4.0.0b1
|
|
705
706
|
Requires-Dist: django-eveuniverse>=1.3
|
|
707
|
+
Provides-Extra: tests-allianceauth-latest
|
|
708
|
+
Requires-Dist: coverage; extra == 'tests-allianceauth-latest'
|
|
709
|
+
Requires-Dist: django-webtest; extra == 'tests-allianceauth-latest'
|
|
706
710
|
Description-Content-Type: text/markdown
|
|
707
711
|
|
|
708
712
|
# AA Intel Tool<a name="aa-intel-tool"></a>
|
|
@@ -755,15 +759,6 @@ ______________________________________________________________________
|
|
|
755
759
|
|
|
756
760
|
______________________________________________________________________
|
|
757
761
|
|
|
758
|
-
> **Note**
|
|
759
|
-
>
|
|
760
|
-
> This app makes use of a feature introduced with Alliance Auth v3.6.1, meaning,
|
|
761
|
-
> installing this app will pull in Alliance Auth v3.6.1 unsupervised if you haven't
|
|
762
|
-
> updated yet.
|
|
763
|
-
>
|
|
764
|
-
> **Please make sure to update Allianceauth to version 3.6.1 or higher before you
|
|
765
|
-
> install this app to avoid any complications.**
|
|
766
|
-
|
|
767
762
|
## Overview<a name="overview"></a>
|
|
768
763
|
|
|
769
764
|
### Features<a name="features"></a>
|
|
@@ -790,18 +785,21 @@ See [Settings](#settings) section for details.
|
|
|
790
785
|
|
|
791
786
|
## Installation<a name="installation"></a>
|
|
792
787
|
|
|
793
|
-
>
|
|
788
|
+
> \[!NOTE\]
|
|
794
789
|
>
|
|
795
|
-
>
|
|
790
|
+
> **AA Intel Tool needs at least Alliance Auth v4.0.0!**
|
|
796
791
|
>
|
|
797
|
-
>
|
|
798
|
-
>
|
|
799
|
-
>
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
792
|
+
> Please make sure to update your Alliance Auth instance _before_ you install this
|
|
793
|
+
> module or update to the latest version, otherwise an update to Alliance Auth will
|
|
794
|
+
> be pulled in unsupervised.
|
|
795
|
+
|
|
796
|
+
**Important**: Please make sure you meet all preconditions before you proceed:
|
|
797
|
+
|
|
798
|
+
- AA Intel Tool is a plugin for [Alliance Auth]. If you don't have Alliance Auth running
|
|
799
|
+
already, please install it first before proceeding. (see the official
|
|
800
|
+
[Alliance Auth installation guide] for details)
|
|
801
|
+
- AA Intel Tool needs [Eve Universe] to function. Please make sure it is installed,
|
|
802
|
+
before continuing.
|
|
805
803
|
|
|
806
804
|
### Step 1: Install the Package<a name="step-1-install-the-package"></a>
|
|
807
805
|
|
|
@@ -926,14 +924,14 @@ your `local.py`.
|
|
|
926
924
|
> Enable the chat scan module at your own risk. This module has the potential to
|
|
927
925
|
> generate a huge number of ESI calls, which CCP might not be too happy about.
|
|
928
926
|
|
|
929
|
-
| Name | Description
|
|
930
|
-
| :-------------------------------- |
|
|
931
|
-
| INTELTOOL_ENABLE_MODULE_CHATSCAN | Enable or disable the chat scan module.
|
|
932
|
-
| INTELTOOL_ENABLE_MODULE_DSCAN | Enable or disable the d-scan module.
|
|
933
|
-
| INTELTOOL_ENABLE_MODULE_FLEETCOMP | Enable or disable the fleet composition module.
|
|
934
|
-
| INTELTOOL_SCAN_RETENTION_TIME | Set the time in days for how long the scans will be kept in the database. Set to 0 to keep scans indefinitely.
|
|
935
|
-
| INTELTOOL_CHATSCAN_MAX_PILOTS | Set the limit of pilots for chat scans, since these can take quite a long time to process. Set to 0 to disable.
|
|
936
|
-
| INTELTOOL_DSCAN_GRID_SIZE | Set the grid size for D-Scans
|
|
927
|
+
| Name | Description | Default |
|
|
928
|
+
| :-------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------- | :------ |
|
|
929
|
+
| INTELTOOL_ENABLE_MODULE_CHATSCAN | Enable or disable the chat scan module. | False |
|
|
930
|
+
| INTELTOOL_ENABLE_MODULE_DSCAN | Enable or disable the d-scan module. | True |
|
|
931
|
+
| INTELTOOL_ENABLE_MODULE_FLEETCOMP | Enable or disable the fleet composition module. | True |
|
|
932
|
+
| INTELTOOL_SCAN_RETENTION_TIME | Set the time in days for how long the scans will be kept in the database. Set to 0 to keep scans indefinitely. | 30 |
|
|
933
|
+
| INTELTOOL_CHATSCAN_MAX_PILOTS | Set the limit of pilots for chat scans, since these can take quite a long time to process. Set to 0 to disable. | 500 |
|
|
934
|
+
| INTELTOOL_DSCAN_GRID_SIZE | Set the grid size for D-Scans.<br/>This defines the size of the grid in km in which ships and structures are considered to be "on grid" | 10000 |
|
|
937
935
|
|
|
938
936
|
> **Note**
|
|
939
937
|
>
|
|
@@ -988,9 +986,9 @@ Please make sure to read the [Contribution Guidelines].\
|
|
|
988
986
|
[code of conduct]: https://github.com/ppfeufer/aa-intel-tool/blob/master/CODE_OF_CONDUCT.md
|
|
989
987
|
[contribution guidelines]: https://github.com/ppfeufer/aa-intel-tool/blob/master/CONTRIBUTING.md "Contribution Guidelines"
|
|
990
988
|
[eve universe]: https://gitlab.com/ErikKalkoken/django-eveuniverse "Eve Universe"
|
|
991
|
-
[image: chat scan module]: https://raw.githubusercontent.com/ppfeufer/aa-intel-tool/master/docs/images/chat-scan.jpg "Chat Scan Module"
|
|
992
|
-
[image: d-scan module]: https://raw.githubusercontent.com/ppfeufer/aa-intel-tool/master/docs/images/d-scan.jpg "D-Scan Module"
|
|
993
|
-
[image: fleet composition module]: https://raw.githubusercontent.com/ppfeufer/aa-intel-tool/master/docs/images/fleet-composition.jpg "Fleet Composition Module"
|
|
989
|
+
[image: chat scan module]: https://raw.githubusercontent.com/ppfeufer/aa-intel-tool/master/docs/images/representation/chat-scan.jpg "Chat Scan Module"
|
|
990
|
+
[image: d-scan module]: https://raw.githubusercontent.com/ppfeufer/aa-intel-tool/master/docs/images/representation/d-scan.jpg "D-Scan Module"
|
|
991
|
+
[image: fleet composition module]: https://raw.githubusercontent.com/ppfeufer/aa-intel-tool/master/docs/images/representation/fleet-composition.jpg "Fleet Composition Module"
|
|
994
992
|
[ppfeufer on ko-fi]: https://ko-fi.com/ppfeufer "Buy Me a Coffee!"
|
|
995
993
|
[pre-commit.ci status]: https://results.pre-commit.ci/latest/github/ppfeufer/aa-intel-tool/master "pre-commit.ci"
|
|
996
994
|
[support discord]: https://discord.gg/zmh52wnfvM "Alliance Auth Community Apps Support Discord"
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
aa_intel_tool/__init__.py,sha256=
|
|
1
|
+
aa_intel_tool/__init__.py,sha256=y6kDT_z0q-SmfPyMQ_RHe44KhP6WNvhx2ieAztl5KmQ,142
|
|
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=FUy9aeu3zHpqhc19tfuJU8b0atdhF2cnlIG1oO1lTRw,2328
|
|
4
4
|
aa_intel_tool/apps.py,sha256=rfCtJ2bFQB4sDdl-zYo_i034oq-fF1Ad3NAU55NoBQk,452
|
|
5
|
-
aa_intel_tool/auth_hooks.py,sha256=
|
|
6
|
-
aa_intel_tool/constants.py,sha256=
|
|
5
|
+
aa_intel_tool/auth_hooks.py,sha256=Z0FyC6XWWCulRQzK1nv2JeDhlvOCxY37KXK_kDRy78U,1469
|
|
6
|
+
aa_intel_tool/constants.py,sha256=nNv-O3mGmGm8aZlgX0rau3SrAvXy4FWvPEoq_QuX5wI,2571
|
|
7
7
|
aa_intel_tool/exceptions.py,sha256=1uEreioXqnWR8trgU5RSvj7CZ6GdkaWG-wI5G1pfvqs,693
|
|
8
8
|
aa_intel_tool/form.py,sha256=JBYfypS5PjheSCC6Im9DWtDI9tLpEZbW4CrINhrYA3s,503
|
|
9
9
|
aa_intel_tool/models.py,sha256=oZ0_pPl-4XiGOspVx-9n8DITqsfIv2yizFn532BtZcg,4057
|
|
@@ -11,107 +11,104 @@ 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=EekvX6yw_uzDkLp-3w3hnjmkralxZ0YCiajW-K2-Fcg,5134
|
|
14
|
-
aa_intel_tool/locale/django.pot,sha256=
|
|
14
|
+
aa_intel_tool/locale/django.pot,sha256=_Oe4Mjy0cgAGoawMpp9q5JQDmIDZh_ae0CoGDWiZeRE,15493
|
|
15
15
|
aa_intel_tool/locale/de/LC_MESSAGES/django.mo,sha256=WOIb3DMUMivje6y_OGbSqPUJEGCxOqeN_lkcYDw55o0,8874
|
|
16
|
-
aa_intel_tool/locale/de/LC_MESSAGES/django.po,sha256=
|
|
17
|
-
aa_intel_tool/locale/es/LC_MESSAGES/django.mo,sha256=
|
|
18
|
-
aa_intel_tool/locale/es/LC_MESSAGES/django.po,sha256=
|
|
19
|
-
aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.mo,sha256=
|
|
20
|
-
aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po,sha256=
|
|
16
|
+
aa_intel_tool/locale/de/LC_MESSAGES/django.po,sha256=1pmsfAfcAgCkExjl7STaZgKJ_3dVzDQ22DPAHW9SLKU,18668
|
|
17
|
+
aa_intel_tool/locale/es/LC_MESSAGES/django.mo,sha256=XE5t6KYKLHPkF9oQ76BW22XfbaSTGrnz3mFU4SwLA98,1847
|
|
18
|
+
aa_intel_tool/locale/es/LC_MESSAGES/django.po,sha256=kIthvUX4zPU9d9uUrDL5zrVo3tczdVMOuP4I_bReE88,16661
|
|
19
|
+
aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.mo,sha256=zH_ppEzwnuL5-wMy9TGWRn92xRLjBTTGVP63F96e_rA,796
|
|
20
|
+
aa_intel_tool/locale/fr_FR/LC_MESSAGES/django.po,sha256=edvtd_BW1h0edWFKVSP_3dUNfHs5AWNSVk76gEH9ouo,15781
|
|
21
21
|
aa_intel_tool/locale/it_IT/LC_MESSAGES/django.mo,sha256=S2vRgkEzke4CYbkzFd-JIxoeujZMf6lgVEI_JC1kEXs,483
|
|
22
|
-
aa_intel_tool/locale/it_IT/LC_MESSAGES/django.po,sha256=
|
|
22
|
+
aa_intel_tool/locale/it_IT/LC_MESSAGES/django.po,sha256=5T_S9SqmTy3dlkVNi6pv3_tSJ5coa-EM7G2ZFls7jtc,15582
|
|
23
23
|
aa_intel_tool/locale/ja/LC_MESSAGES/django.mo,sha256=HohMyOaG0uuIEOv0F9J5bVCpQ3ZEaPX9rqr_nTKYiWA,480
|
|
24
|
-
aa_intel_tool/locale/ja/LC_MESSAGES/django.po,sha256=
|
|
24
|
+
aa_intel_tool/locale/ja/LC_MESSAGES/django.po,sha256=6jcCwJ7A-hVEX_aIH5wg0tt_qA4wmudgtMSAq6qi9Jw,15536
|
|
25
25
|
aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.mo,sha256=-STcTjYpzsC2XynTkB2vDxUSZBEZMq_S-h5KzU0zjqo,8639
|
|
26
|
-
aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po,sha256=
|
|
27
|
-
aa_intel_tool/locale/ru/LC_MESSAGES/django.mo,sha256=
|
|
28
|
-
aa_intel_tool/locale/ru/LC_MESSAGES/django.po,sha256=
|
|
26
|
+
aa_intel_tool/locale/ko_KR/LC_MESSAGES/django.po,sha256=dWVu3s6t-3AzBdHPFrjg58wc5LDVovpyOa0B5D5V77w,18878
|
|
27
|
+
aa_intel_tool/locale/ru/LC_MESSAGES/django.mo,sha256=39JwuKRjaB_Ikfzkp6_99rdFD6NzU1fZrIoiR3hq6Lk,11779
|
|
28
|
+
aa_intel_tool/locale/ru/LC_MESSAGES/django.po,sha256=JllP4Yp5PtgaEdl42oJaIjFda2P6Jt_SmrH_RF8kKCI,21722
|
|
29
29
|
aa_intel_tool/locale/uk/LC_MESSAGES/django.mo,sha256=u9BshCgY0_lgbF40uyj2StnXEqOOyuuPdFOIS6SCr30,664
|
|
30
|
-
aa_intel_tool/locale/uk/LC_MESSAGES/django.po,sha256=
|
|
31
|
-
aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=
|
|
32
|
-
aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po,sha256=
|
|
33
|
-
aa_intel_tool/management/commands/aa_intel_tool_load_eve_types.py,sha256=
|
|
30
|
+
aa_intel_tool/locale/uk/LC_MESSAGES/django.po,sha256=jIa6FconLVYtzm-VLHV5YHQTsAbjmC0nIDx87bqxCno,15786
|
|
31
|
+
aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=swhB3asGJDPH7SXq-1Er6AdjBbi_39INtuYLlhoEjI8,832
|
|
32
|
+
aa_intel_tool/locale/zh_Hans/LC_MESSAGES/django.po,sha256=tK3-vsHxMvvbxDfeUfUhNC6TEq7qM9JocCtWMg6Wn_g,15721
|
|
33
|
+
aa_intel_tool/management/commands/aa_intel_tool_load_eve_types.py,sha256=rojHdwLg57a3darJif8uFwGxxiBQeFIOGRdr6qI0c5g,1796
|
|
34
34
|
aa_intel_tool/migrations/0001_initial.py,sha256=nwtThaFJ7wrOZld0MzQ-MLpHB9xG-SJOZPl8FbM8dFE,4339
|
|
35
35
|
aa_intel_tool/migrations/0002_alter_scan_raw_data.py,sha256=LDXPIxhCJ3QToQqmdyZubNEgiuGPsZZTBGKTOyApULw,405
|
|
36
36
|
aa_intel_tool/migrations/__init__.py,sha256=DlW5327gBRgSG2GG_T0E1NcpiTFtYs0Vty1fzj4eiPY,34
|
|
37
37
|
aa_intel_tool/parser/__init__.py,sha256=BAFdCEaeC0cmv74ZuZGZJCgJOiliMVBpgdQI63ABJ2U,30
|
|
38
38
|
aa_intel_tool/parser/general.py,sha256=9iqbq7TP5yr9gwkXMj9h3ontdBL0nm0t9qll914RzkI,1952
|
|
39
39
|
aa_intel_tool/parser/helper/db.py,sha256=M59FioVvq5D6Jx6i5j0RIsu-sYDJQwk5QuioegBxgms,886
|
|
40
|
-
aa_intel_tool/parser/module/chatlist.py,sha256=
|
|
41
|
-
aa_intel_tool/parser/module/dscan.py,sha256=
|
|
42
|
-
aa_intel_tool/parser/module/fleetcomp.py,sha256=
|
|
40
|
+
aa_intel_tool/parser/module/chatlist.py,sha256=JenYIZKkLTtgdy_xQ1DVRiDefcCMY_UklGMgXx7ZxfY,10663
|
|
41
|
+
aa_intel_tool/parser/module/dscan.py,sha256=10HQ_FKomm6zFVJZIiuvmPYZjgE94ZNWz72NjtZt41M,11827
|
|
42
|
+
aa_intel_tool/parser/module/fleetcomp.py,sha256=psOkFt9cz14tca55yHdo3MMk-GDzgz0CqF8C9zBZqD8,6371
|
|
43
43
|
aa_intel_tool/scripts/drop_tables.sql,sha256=fJa_scRF95SxCmaMqFGzL4HhUwk5GN5cLexEbS_qwgw,192
|
|
44
|
-
aa_intel_tool/static/aa_intel_tool/css/aa-
|
|
45
|
-
aa_intel_tool/static/aa_intel_tool/css/aa-
|
|
46
|
-
aa_intel_tool/static/aa_intel_tool/css/aa-
|
|
47
|
-
aa_intel_tool/static/aa_intel_tool/
|
|
48
|
-
aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css,sha256=ta6cvW6ilB00kXYthry6277b6_nZE1SrHLvmmdUQGhM,5013
|
|
49
|
-
aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css.map,sha256=ERE_lLDDXEFgNg1vnNDYAdm5n6ItcfGWH3c_dPrkMrA,8996
|
|
50
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.js,sha256=d06l_yj279XWm0CL5kMINXjnTD9-gYllpgNxF2U3TGI,10617
|
|
44
|
+
aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.css,sha256=3ip5INCH1OdSwgpDDz2z8weYaCByRANuJCv6D-g3aIY,3796
|
|
45
|
+
aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css,sha256=LR-48WsF1lOkvfqKzo1R_hUxwhe_e7u3coM7mO9xSAg,2701
|
|
46
|
+
aa_intel_tool/static/aa_intel_tool/css/aa-intel-tool.min.css.map,sha256=qIyWWGWEczuQHF6uTCmqQGmzMoZ_YPIYh0Z1crQin0k,4658
|
|
47
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.js,sha256=uAR-B9pCTcsPlDUYFCQ-tDOc97Cmg3jrRGKcXiJWB7Q,10594
|
|
51
48
|
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.min.js,sha256=1E-C1K9gc1KuWa6jKyWpSJJTqLEUbZjuakyxRyGKxvk,5805
|
|
52
49
|
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan-highlight.min.js.map,sha256=UMp5dfnKkWD40qB69dUHwYurGyb72-1uPp7WO9aB9Bo,4173
|
|
53
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.js,sha256=
|
|
54
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js,sha256=
|
|
55
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js.map,sha256=
|
|
56
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.js,sha256=
|
|
50
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.js,sha256=V6l1LzlzmBLoj_MC9dTXtuoNZHOZl1JZi3syQP19mN0,12512
|
|
51
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js,sha256=_cr1P8pOd48yuz_wqxllqtaoBoMTgTdwew8hzQOHFHM,4320
|
|
52
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-chatscan.min.js.map,sha256=wfVu6HNPWz56SzAjbpfb5XCgFWUipTNq1VNeFgib8ss,4932
|
|
53
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.js,sha256=46Vv59KqNIASPCXP0cju2FtskHUkIVg1Sx-pLvAOdCw,4831
|
|
57
54
|
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.min.js,sha256=MZD_eP8WpEtm_NpsxWv-pOuVRpnJiBWS3kYg6B6xCDU,2165
|
|
58
55
|
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan-highlight.min.js.map,sha256=xD5ZySXgcxWqYwPQkkeXD9jcf1gCGV8RtgUPhVQ_KRM,1810
|
|
59
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.js,sha256=
|
|
60
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js,sha256=
|
|
61
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js.map,sha256=
|
|
62
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.js,sha256=
|
|
56
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.js,sha256=kmp_5-MBMWnat663kI5yHm6GnnHlViHvobp22LeL7z4,21717
|
|
57
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js,sha256=vhEQNDwWMaTUvSmoDJC-MN1J9TZZdc3Nhp8KDlOsWhU,7644
|
|
58
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-dscan.min.js.map,sha256=quTf43tYcEhL34NLOvBANsCKwSN392BdEc4eNVsGvVY,8511
|
|
59
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.js,sha256=WiJlr8DKAncAMnQmz_MVUxFp7LV0-od6KyxOCEZxRM0,5304
|
|
63
60
|
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.min.js,sha256=sIpUNEtxaD-OGN_cULjQ4X9XxAxx_T30i1VskV5TeZo,2576
|
|
64
61
|
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition-highlight.min.js.map,sha256=shr9viS47gVwrvKeUGVRbDNbBoBrMQy9uU3_NGeuDzI,2064
|
|
65
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.js,sha256=
|
|
66
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js,sha256=
|
|
67
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js.map,sha256=
|
|
68
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.js,sha256=
|
|
69
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js,sha256=
|
|
70
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js.map,sha256=
|
|
71
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool.js,sha256=
|
|
72
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool.min.js,sha256=
|
|
73
|
-
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool.min.js.map,sha256=
|
|
74
|
-
aa_intel_tool/templates/aa_intel_tool/base.html,sha256
|
|
75
|
-
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-chatscan-js.html,sha256=
|
|
76
|
-
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-css.html,sha256=
|
|
77
|
-
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-dscan-js.html,sha256=
|
|
78
|
-
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-fleetcomp-js.html,sha256=
|
|
62
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.js,sha256=HnfYewEKOYRETadRdE9M-el3N9F0Ifvnx-iUFELPaAo,7971
|
|
63
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js,sha256=ilCYs0j7MLm63qZkI-jDQV-jdOnfNzbmM9abk65hibg,2977
|
|
64
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-fleetcomposition.min.js.map,sha256=29qWbBkRuHYAoNi17x7rUCiomUNkQjfIGGiakaxJIQM,3382
|
|
65
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.js,sha256=CtWBSi9eyhDQFBWphIuiQiqBvS3ulj9m7jjRYYJFkwo,9159
|
|
66
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js,sha256=wBLMKMJKxeQ58K3uRK998l7KJ-Yq59S08XqT7WTk_g8,3706
|
|
67
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool-scan-result-common.min.js.map,sha256=J1pCCEMCRIqSV3hd4jrVO-POoSh0EkAqBpvZ0SzeHpE,3100
|
|
68
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool.js,sha256=TUFxK53gOLD1si5kulPX0pmjnASz6BGXQlqf2j1TEic,473
|
|
69
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool.min.js,sha256=W9-gHLRipa-pM6-gCS8BSaSoOnxssNXHbWTkMXBlNWo,241
|
|
70
|
+
aa_intel_tool/static/aa_intel_tool/javascript/aa-intel-tool.min.js.map,sha256=vqGQZUD9GkVlITLYI6DO8O-bUVbvKOeV4yK43oxvz2A,370
|
|
71
|
+
aa_intel_tool/templates/aa_intel_tool/base.html,sha256=RntDu5CAJc6JufyIjoP4_Sr5EZt6hnHozQ4wUpsmw5A,720
|
|
72
|
+
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-chatscan-js.html,sha256=VnvjL-K4toaY6F_4ilONsp9bDMIhXdg3R6_j2O8Qrks,370
|
|
73
|
+
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-css.html,sha256=v3NQR23f4akbw0hcbHwkq7PG3i3kBRrrV_qIPO7q5r0,126
|
|
74
|
+
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-dscan-js.html,sha256=kii3EmnppwBMEUoEAxQol9xCmazr0oqMkAYE2PKLt80,364
|
|
75
|
+
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-fleetcomp-js.html,sha256=GCOEXafeIpj27H_ThqlrsMPBkIOXn-Xn5zhcFPqAMUc,688
|
|
79
76
|
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-js-l10n.html,sha256=h4TjGWlPoWr39nXnk_Zosvp84N5S1W3CaWa0SBn7S8s,2184
|
|
80
|
-
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-js.html,sha256
|
|
81
|
-
aa_intel_tool/templates/aa_intel_tool/partials/body/scan-retention-note.html,sha256=
|
|
82
|
-
aa_intel_tool/templates/aa_intel_tool/partials/footer/app-translation-footer.html,sha256=
|
|
83
|
-
aa_intel_tool/templates/aa_intel_tool/partials/index/form.html,sha256=
|
|
84
|
-
aa_intel_tool/templates/aa_intel_tool/partials/scan/buttons.html,sha256=
|
|
85
|
-
aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html,sha256=
|
|
86
|
-
aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html,sha256=
|
|
87
|
-
aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html,sha256=
|
|
88
|
-
aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html,sha256=
|
|
89
|
-
aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid.html,sha256=
|
|
90
|
-
aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown.html,sha256=
|
|
91
|
-
aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/system-information.html,sha256=
|
|
92
|
-
aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html,sha256=
|
|
93
|
-
aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html,sha256=
|
|
94
|
-
aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-types.html,sha256=
|
|
95
|
-
aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details.html,sha256=
|
|
96
|
-
aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/participation.html,sha256=
|
|
97
|
-
aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html,sha256=
|
|
98
|
-
aa_intel_tool/templates/aa_intel_tool/views/index.html,sha256=
|
|
99
|
-
aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html,sha256=
|
|
100
|
-
aa_intel_tool/templates/aa_intel_tool/views/scan/dscan.html,sha256=
|
|
101
|
-
aa_intel_tool/templates/aa_intel_tool/views/scan/fleetcomp.html,sha256=
|
|
77
|
+
aa_intel_tool/templates/aa_intel_tool/bundles/aa-intel-tool-js.html,sha256=SFy46zpHKRUcx4-oFR65T4fjfpHf3mJAQLQkRdCVu4Q,125
|
|
78
|
+
aa_intel_tool/templates/aa_intel_tool/partials/body/scan-retention-note.html,sha256=rf1A4UuYoGWaWlB_tqNgCuxihmjC8f9vOhAVvDkfoa8,386
|
|
79
|
+
aa_intel_tool/templates/aa_intel_tool/partials/footer/app-translation-footer.html,sha256=nDZPOnsQLBN9meAhxnhd0ynUQIVi3YPzhi47n89zcIg,422
|
|
80
|
+
aa_intel_tool/templates/aa_intel_tool/partials/index/form.html,sha256=EBt4fejLwk5xN9qm9BA3T6cWYtmcDeXnrGFD9rWT3X4,3114
|
|
81
|
+
aa_intel_tool/templates/aa_intel_tool/partials/scan/buttons.html,sha256=eaef9QpXyBDBd0qWA5MGhh8OlqW32MlSsBz8Scq5lzU,744
|
|
82
|
+
aa_intel_tool/templates/aa_intel_tool/partials/scan/evetime.html,sha256=USB2IYLUqlp3nWjME1YUIvhzaqZGsCcnwiGAMryexqU,170
|
|
83
|
+
aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/alliances.html,sha256=s763QzNCRA0PAw_7hccSIURBWosKL1TqIW9XvWPs3F8,1540
|
|
84
|
+
aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/corporations.html,sha256=37_6twG-D11m3cFZxu3BNsKM7RzQy2ezIJzrbtt9Ugk,1564
|
|
85
|
+
aa_intel_tool/templates/aa_intel_tool/partials/scan/chatlist/pilots.html,sha256=4h_tx2sbVxpCge8ryy7nTiYe0jmFFLOBUaMCd5Rf5SQ,1567
|
|
86
|
+
aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid.html,sha256=PCLWYF9EBOxr2YdE9uAS3yByLESKjC4vQIe6hKr8xeA,1512
|
|
87
|
+
aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown.html,sha256=dp0ARqR8sZSc5aJqe1JaPf3PqME8-NMAIkt0ku-Li1E,1220
|
|
88
|
+
aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/system-information.html,sha256=pprbGBkQyMCgLv6gVjfx8MOz3NApyDEl9ZsRa0qbSSM,490
|
|
89
|
+
aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/interesting-on-grid/items.html,sha256=mHcN_tTbkHtwSK79t2beqQihVT73fvOlVVz1VukFBCU,1482
|
|
90
|
+
aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-classes.html,sha256=SxdPcQwUjMt0Ol0zrHAyrNZpnxpoFlN_XIjjEUTL2Go,1741
|
|
91
|
+
aa_intel_tool/templates/aa_intel_tool/partials/scan/dscan/ships-breakdown/ship-types.html,sha256=5060ANYUv58tY7G3crsw81YMqvoElTGzZskRWFd46z8,1532
|
|
92
|
+
aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details.html,sha256=7o0IxbAoOfNA_IsqsiStjNBE6veq0TYL82Jt3eOVc80,1044
|
|
93
|
+
aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/participation.html,sha256=pZVAwOhp6e74lZtk4357YIbiiW2lqzvAZDZwlAjQu-A,678
|
|
94
|
+
aa_intel_tool/templates/aa_intel_tool/partials/scan/fleetcomp/fleet-details/pilots.html,sha256=6vAGVjfMTckWnT_GztyUrsoI8gt28Ol52QD2kQHTd3Y,1653
|
|
95
|
+
aa_intel_tool/templates/aa_intel_tool/views/index.html,sha256=E9uKNF5GC8iI08kS7mBjVmu4y8IrHjZspK1VtZ_dO5A,736
|
|
96
|
+
aa_intel_tool/templates/aa_intel_tool/views/scan/chatlist.html,sha256=Jsqbehafx4TNf_c0A0ST49zdsdQAWXkoTHDjD-CczYg,1697
|
|
97
|
+
aa_intel_tool/templates/aa_intel_tool/views/scan/dscan.html,sha256=Wi0GOK9inr21_NwRQoGTiie-_bKln5rrDIlhVtoV30M,2174
|
|
98
|
+
aa_intel_tool/templates/aa_intel_tool/views/scan/fleetcomp.html,sha256=qZEI3brIbRCtoeBQmVTinp0A6DRstMCQuTloMGzmEBo,2007
|
|
102
99
|
aa_intel_tool/templatetags/__init__.py,sha256=sP2D1ovt2gGAPLcGQkByRgXYhvUJ6C52mZMlLIALQ8s,37
|
|
103
|
-
aa_intel_tool/templatetags/
|
|
100
|
+
aa_intel_tool/templatetags/aa_intel_tool.py,sha256=Jed97jkX8PBQI8KXUjOKLEqR9v29ApwC65ndOFRiZ4w,520
|
|
104
101
|
aa_intel_tool/tests/__init__.py,sha256=NLuMBNDHYOXDmPgpyG-g_kDaATVQWv1iC-dJ8BA1kZc,29
|
|
105
|
-
aa_intel_tool/tests/test_access.py,sha256=
|
|
102
|
+
aa_intel_tool/tests/test_access.py,sha256=HuBl2wK9xsRilVtpLwNUGQLn8cfcacwqgmeoVnoDGE0,2740
|
|
106
103
|
aa_intel_tool/tests/test_admin.py,sha256=yw97GjqqzNNFfJiSJ1MkBeuQfTGvF0JAmvhvRycqMKg,2072
|
|
107
104
|
aa_intel_tool/tests/test_app_settings.py,sha256=xcmNfyjJco3ED-csBkYSgrzeEr3Y5KzZo8ZY3BvtvXw,2567
|
|
108
|
-
aa_intel_tool/tests/test_auth_hooks.py,sha256=
|
|
105
|
+
aa_intel_tool/tests/test_auth_hooks.py,sha256=Xikx6HYWgSarLiHVxnQmRpFBQNt-xfYgb53CjGvvJcY,2451
|
|
109
106
|
aa_intel_tool/tests/test_helper_data_structures.py,sha256=1zRuh54-6YtDt7M1w7JpBRHlvS2rgBdnzvWLXV9Kl3s,765
|
|
110
107
|
aa_intel_tool/tests/test_models.py,sha256=rtwWDO251OoU6mHo-6u0LS0X7qb7uHtDIPoY3iEvhS0,817
|
|
111
|
-
aa_intel_tool/tests/test_parser.py,sha256=
|
|
108
|
+
aa_intel_tool/tests/test_parser.py,sha256=H2zBZa7e9gxE1Ieln7-PhvJ8Tx7YGO7e0YjqCrRYvK4,3922
|
|
112
109
|
aa_intel_tool/tests/test_parser_helper_db.py,sha256=f8qqPKUxG39X77iEICh_P1UmXDbHPnJc_tXe3FuxGYs,1642
|
|
113
|
-
aa_intel_tool/tests/test_templatetags.py,sha256=
|
|
114
|
-
aa_intel_tool/tests/utils.py,sha256=
|
|
110
|
+
aa_intel_tool/tests/test_templatetags.py,sha256=cEl2jSkl-N8m7_FXFRXWF1idbAQsyB0qExoqKPjIGvE,878
|
|
111
|
+
aa_intel_tool/tests/utils.py,sha256=rRKeEZ2GkuoFJb7WoTgOOaXhlNwyb0xH3-5WRbWITBs,1435
|
|
115
112
|
aa_intel_tool/tests/test-data/chatscan-faulty.txt,sha256=E1kv5BaZGagLP9VTaac8sVt0PMUMNpyMMqkx3dCZ8cg,40
|
|
116
113
|
aa_intel_tool/tests/test-data/chatscan.txt,sha256=QkZER0l6-iw7uwTiDIpp2PUQ4NecaHWX83rZSrLp_LI,40
|
|
117
114
|
aa_intel_tool/tests/test-data/dscan-german-client.txt,sha256=GKMfjZUYWW7ZSwhcAeElBv6Au53cHY_PlPJAvCpN1Aw,9082
|
|
@@ -120,8 +117,8 @@ aa_intel_tool/tests/test-data/dscan.txt,sha256=fYf1MIY_nh2npAt2BzUjGz9XYP7LQnrxr
|
|
|
120
117
|
aa_intel_tool/tests/test-data/fleetcomp.txt,sha256=BYqCJznI3e6jlHTQwmr08wZr2D_anUdR-9yfu2-RJcI,234
|
|
121
118
|
aa_intel_tool/views/__init__.py,sha256=zf5e30BdJ772oDJkQnBfFIi5a7-HEJByUIkv0iz3Kr8,29
|
|
122
119
|
aa_intel_tool/views/ajax.py,sha256=7xBsd0Eg6enDl7JeI9vNJXaF66lWjhStLfYdJGAobvM,911
|
|
123
|
-
aa_intel_tool/views/general.py,sha256=
|
|
124
|
-
aa_intel_tool-
|
|
125
|
-
aa_intel_tool-
|
|
126
|
-
aa_intel_tool-
|
|
127
|
-
aa_intel_tool-
|
|
120
|
+
aa_intel_tool/views/general.py,sha256=c2xD--Kkc9IfJg2x7VALPMhvwbssIY0qsbdFqfJEh-s,4040
|
|
121
|
+
aa_intel_tool-2.0.0b1.dist-info/METADATA,sha256=apEKt-Ui2GT4R97qEws1c5NhkibyUQbSbBWzBeJvXDM,55145
|
|
122
|
+
aa_intel_tool-2.0.0b1.dist-info/WHEEL,sha256=TJPnKdtrSue7xZ_AVGkp9YXcvDrobsjBds1du3Nx6dc,87
|
|
123
|
+
aa_intel_tool-2.0.0b1.dist-info/licenses/LICENSE,sha256=UTib95uJWe2NQIG3TzU8-Hm-eaEZFqv9fqsjNT_xKWU,35151
|
|
124
|
+
aa_intel_tool-2.0.0b1.dist-info/RECORD,,
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/* Attempting to fix AA's wrong usage of Bootstrap classes
|
|
2
|
-
------------------------------------------------------------------------------------- */
|
|
3
|
-
@media all {
|
|
4
|
-
#site-body-wrapper.row {
|
|
5
|
-
margin-left: 0;
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
@media all and (min-width: 768px) {
|
|
10
|
-
#site-body-wrapper.row {
|
|
11
|
-
margin-left: -15px;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["aa-bootstrap-fix.css"],"names":[],"mappings":"AAEA,A,WACI,sB,CACI,eAIR,A,iCACI,sB,CACI,mB","file":"aa-bootstrap-fix.css","sourcesContent":["/* Attempting to fix AA's wrong usage of Bootstrap classes\n------------------------------------------------------------------------------------- */\n@media all {\n #site-body-wrapper.row {\n margin-left: 0;\n }\n}\n\n@media all and (min-width: 768px) {\n #site-body-wrapper.row {\n margin-left: -15px;\n }\n}\n"]}
|
|
File without changes
|
|
File without changes
|