portune 0.1.7__tar.gz → 0.1.9__tar.gz
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.
Potentially problematic release.
This version of portune might be problematic. Click here for more details.
- {portune-0.1.7/portune.egg-info → portune-0.1.9}/PKG-INFO +2 -24
- {portune-0.1.7 → portune-0.1.9}/portune/portune.py +2 -1
- {portune-0.1.7 → portune-0.1.9}/portune/version.py +2 -2
- {portune-0.1.7 → portune-0.1.9/portune.egg-info}/PKG-INFO +2 -24
- {portune-0.1.7 → portune-0.1.9}/pyproject.toml +1 -2
- {portune-0.1.7 → portune-0.1.9}/.github/workflows/python-publish.yml +0 -0
- {portune-0.1.7 → portune-0.1.9}/.gitignore +0 -0
- {portune-0.1.7 → portune-0.1.9}/LICENSE +0 -0
- {portune-0.1.7 → portune-0.1.9}/README.md +0 -0
- {portune-0.1.7 → portune-0.1.9}/portune/__init__.py +0 -0
- {portune-0.1.7 → portune-0.1.9}/portune.egg-info/SOURCES.txt +0 -0
- {portune-0.1.7 → portune-0.1.9}/portune.egg-info/dependency_links.txt +0 -0
- {portune-0.1.7 → portune-0.1.9}/portune.egg-info/entry_points.txt +0 -0
- {portune-0.1.7 → portune-0.1.9}/portune.egg-info/top_level.txt +0 -0
- {portune-0.1.7 → portune-0.1.9}/setup.cfg +0 -0
|
@@ -1,38 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: portune
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.9
|
|
4
4
|
Summary: Simple Python HTTP Exec Server
|
|
5
5
|
Author: Franck Jouvanceau
|
|
6
6
|
Maintainer: Franck Jouvanceau
|
|
7
|
-
License: MIT
|
|
8
|
-
|
|
9
|
-
Copyright (c) 2025 joknarf
|
|
10
|
-
|
|
11
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
13
|
-
in the Software without restriction, including without limitation the rights
|
|
14
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
15
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
16
|
-
furnished to do so, subject to the following conditions:
|
|
17
|
-
|
|
18
|
-
The above copyright notice and this permission notice shall be included in all
|
|
19
|
-
copies or substantial portions of the Software.
|
|
20
|
-
|
|
21
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
-
SOFTWARE.
|
|
28
|
-
|
|
7
|
+
License-Expression: MIT
|
|
29
8
|
Project-URL: Homepage, https://github.com/joknarf/portune
|
|
30
9
|
Project-URL: Documentation, https://github.com/joknarf/portune/blob/main/README.md
|
|
31
10
|
Project-URL: Repository, https://github.com/joknarf/portune.git
|
|
32
11
|
Keywords: port,scanner,html_report
|
|
33
12
|
Classifier: Development Status :: 5 - Production/Stable
|
|
34
13
|
Classifier: Intended Audience :: System Administrators
|
|
35
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
36
14
|
Classifier: Operating System :: POSIX
|
|
37
15
|
Classifier: Operating System :: Unix
|
|
38
16
|
Classifier: Operating System :: MacOS
|
|
@@ -293,8 +293,9 @@ function initTableFilters(table) {
|
|
|
293
293
|
|
|
294
294
|
function updateRowCount(table, count) {
|
|
295
295
|
const rowCount = table.querySelector('.row-count');
|
|
296
|
+
const totalRows = table.querySelectorAll('tbody tr').length;
|
|
296
297
|
if (rowCount) {
|
|
297
|
-
rowCount.innerHTML = ` ${count}`; // 🡇🡇 not working macOS
|
|
298
|
+
rowCount.innerHTML = ` ${count}/${totalRows}`; // 🡇🡇 not working macOS
|
|
298
299
|
}
|
|
299
300
|
}
|
|
300
301
|
|
|
@@ -1,38 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: portune
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.9
|
|
4
4
|
Summary: Simple Python HTTP Exec Server
|
|
5
5
|
Author: Franck Jouvanceau
|
|
6
6
|
Maintainer: Franck Jouvanceau
|
|
7
|
-
License: MIT
|
|
8
|
-
|
|
9
|
-
Copyright (c) 2025 joknarf
|
|
10
|
-
|
|
11
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
13
|
-
in the Software without restriction, including without limitation the rights
|
|
14
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
15
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
16
|
-
furnished to do so, subject to the following conditions:
|
|
17
|
-
|
|
18
|
-
The above copyright notice and this permission notice shall be included in all
|
|
19
|
-
copies or substantial portions of the Software.
|
|
20
|
-
|
|
21
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
-
SOFTWARE.
|
|
28
|
-
|
|
7
|
+
License-Expression: MIT
|
|
29
8
|
Project-URL: Homepage, https://github.com/joknarf/portune
|
|
30
9
|
Project-URL: Documentation, https://github.com/joknarf/portune/blob/main/README.md
|
|
31
10
|
Project-URL: Repository, https://github.com/joknarf/portune.git
|
|
32
11
|
Keywords: port,scanner,html_report
|
|
33
12
|
Classifier: Development Status :: 5 - Production/Stable
|
|
34
13
|
Classifier: Intended Audience :: System Administrators
|
|
35
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
36
14
|
Classifier: Operating System :: POSIX
|
|
37
15
|
Classifier: Operating System :: Unix
|
|
38
16
|
Classifier: Operating System :: MacOS
|
|
@@ -12,13 +12,12 @@ dependencies = [
|
|
|
12
12
|
]
|
|
13
13
|
dynamic=["version"]
|
|
14
14
|
readme = "README.md"
|
|
15
|
-
license =
|
|
15
|
+
license = "MIT"
|
|
16
16
|
requires-python = ">= 3.9"
|
|
17
17
|
keywords = ["port", "scanner", "html_report"]
|
|
18
18
|
classifiers = [
|
|
19
19
|
"Development Status :: 5 - Production/Stable",
|
|
20
20
|
"Intended Audience :: System Administrators",
|
|
21
|
-
"License :: OSI Approved :: MIT License",
|
|
22
21
|
"Operating System :: POSIX",
|
|
23
22
|
"Operating System :: Unix",
|
|
24
23
|
"Operating System :: MacOS",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|