prune_captcha 1.5.0__tar.gz → 1.7.0__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.
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/PKG-INFO +4 -2
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/README.md +3 -1
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/captcha_prune/utils.py +1 -1
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/prune_captcha.egg-info/PKG-INFO +4 -2
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/prune_captcha.egg-info/SOURCES.txt +0 -1
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/pyproject.toml +1 -1
- prune_captcha-1.5.0/tests/captcha_prune/__init__.py +0 -0
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/captcha_prune/__init__.py +0 -0
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/captcha_prune/apps.py +0 -0
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/captcha_prune/asgi.py +0 -0
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/captcha_prune/context_processors.py +0 -0
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/captcha_prune/migrations/0001_initial.py +0 -0
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/captcha_prune/migrations/0002_remove_captcha_created_at_remove_captcha_pos_x_and_more.py +0 -0
- {prune_captcha-1.5.0/captcha_prune/components → prune_captcha-1.7.0/captcha_prune/migrations}/__init__.py +0 -0
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/captcha_prune/models.py +0 -0
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/captcha_prune/payloads.py +0 -0
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/captcha_prune/settings.py +0 -0
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/captcha_prune/urls.py +0 -0
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/captcha_prune/views.py +0 -0
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/captcha_prune/wsgi.py +0 -0
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/commons/base_model.py +0 -0
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/commons/decorators.py +0 -0
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/prune_captcha.egg-info/dependency_links.txt +0 -0
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/prune_captcha.egg-info/requires.txt +0 -0
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/prune_captcha.egg-info/top_level.txt +0 -0
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/setup.cfg +0 -0
- {prune_captcha-1.5.0/captcha_prune/migrations → prune_captcha-1.7.0/tests}/__init__.py +0 -0
- {prune_captcha-1.5.0/tests → prune_captcha-1.7.0/tests/captcha_prune}/__init__.py +0 -0
- {prune_captcha-1.5.0 → prune_captcha-1.7.0}/tests/captcha_prune/test_views.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: prune_captcha
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.7.0
|
4
4
|
Summary: A tool to protect formulaire from spam.
|
5
5
|
Author-email: Arnout <bastien@prune.sh>
|
6
6
|
Project-URL: Made_by, https://prune.sh/
|
@@ -79,7 +79,7 @@ PUZZLE_IMAGE_STATIC_PATH = "website/images/"
|
|
79
79
|
```
|
80
80
|
|
81
81
|
```
|
82
|
-
{% include "captcha_prune/
|
82
|
+
{% include "captcha_prune/captcha.html" %}
|
83
83
|
```
|
84
84
|
|
85
85
|
- POST request (form submission)
|
@@ -136,6 +136,8 @@ PUZZLE_IMAGE_STATIC_PATH = "website/images/"
|
|
136
136
|
|
137
137
|
| Version | Date | Notes |
|
138
138
|
| ------- | ---------- | ---------------------------------- |
|
139
|
+
| 1.7.0 | 2025-05-20 | PUZZLE_IMAGE_STATIC_PATH ... |
|
140
|
+
| 1.6.0 | 2025-05-20 | added templates |
|
139
141
|
| 1.5.0 | 2025-05-20 | app config fixed, components ... |
|
140
142
|
| 1.4.0 | 2025-05-20 | added BaseModel in Captcha, ... |
|
141
143
|
| 1.3.0 | 2025-04-30 | deleted start_server, deleted ... |
|
@@ -61,7 +61,7 @@ PUZZLE_IMAGE_STATIC_PATH = "website/images/"
|
|
61
61
|
```
|
62
62
|
|
63
63
|
```
|
64
|
-
{% include "captcha_prune/
|
64
|
+
{% include "captcha_prune/captcha.html" %}
|
65
65
|
```
|
66
66
|
|
67
67
|
- POST request (form submission)
|
@@ -118,6 +118,8 @@ PUZZLE_IMAGE_STATIC_PATH = "website/images/"
|
|
118
118
|
|
119
119
|
| Version | Date | Notes |
|
120
120
|
| ------- | ---------- | ---------------------------------- |
|
121
|
+
| 1.7.0 | 2025-05-20 | PUZZLE_IMAGE_STATIC_PATH ... |
|
122
|
+
| 1.6.0 | 2025-05-20 | added templates |
|
121
123
|
| 1.5.0 | 2025-05-20 | app config fixed, components ... |
|
122
124
|
| 1.4.0 | 2025-05-20 | added BaseModel in Captcha, ... |
|
123
125
|
| 1.3.0 | 2025-04-30 | deleted start_server, deleted ... |
|
@@ -34,7 +34,7 @@ def create_and_get_puzzle(request: HttpRequest) -> HttpResponse | dict:
|
|
34
34
|
"pos_y_solution": response["pos_y_solution"],
|
35
35
|
"piece_pos_x": response["piece_pos_x"],
|
36
36
|
"piece_pos_y": response["piece_pos_y"],
|
37
|
-
"image": selected_image,
|
37
|
+
"image": f"{settings.PUZZLE_IMAGE_STATIC_PATH}{selected_image}",
|
38
38
|
}
|
39
39
|
|
40
40
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: prune_captcha
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.7.0
|
4
4
|
Summary: A tool to protect formulaire from spam.
|
5
5
|
Author-email: Arnout <bastien@prune.sh>
|
6
6
|
Project-URL: Made_by, https://prune.sh/
|
@@ -79,7 +79,7 @@ PUZZLE_IMAGE_STATIC_PATH = "website/images/"
|
|
79
79
|
```
|
80
80
|
|
81
81
|
```
|
82
|
-
{% include "captcha_prune/
|
82
|
+
{% include "captcha_prune/captcha.html" %}
|
83
83
|
```
|
84
84
|
|
85
85
|
- POST request (form submission)
|
@@ -136,6 +136,8 @@ PUZZLE_IMAGE_STATIC_PATH = "website/images/"
|
|
136
136
|
|
137
137
|
| Version | Date | Notes |
|
138
138
|
| ------- | ---------- | ---------------------------------- |
|
139
|
+
| 1.7.0 | 2025-05-20 | PUZZLE_IMAGE_STATIC_PATH ... |
|
140
|
+
| 1.6.0 | 2025-05-20 | added templates |
|
139
141
|
| 1.5.0 | 2025-05-20 | app config fixed, components ... |
|
140
142
|
| 1.4.0 | 2025-05-20 | added BaseModel in Captcha, ... |
|
141
143
|
| 1.3.0 | 2025-04-30 | deleted start_server, deleted ... |
|
@@ -11,7 +11,6 @@ captcha_prune/urls.py
|
|
11
11
|
captcha_prune/utils.py
|
12
12
|
captcha_prune/views.py
|
13
13
|
captcha_prune/wsgi.py
|
14
|
-
captcha_prune/components/__init__.py
|
15
14
|
captcha_prune/migrations/0001_initial.py
|
16
15
|
captcha_prune/migrations/0002_remove_captcha_created_at_remove_captcha_pos_x_and_more.py
|
17
16
|
captcha_prune/migrations/__init__.py
|
@@ -20,7 +20,7 @@ classifiers = [
|
|
20
20
|
keywords = ["captcha", "django", "code-quality"]
|
21
21
|
urls = {Made_by = "https://prune.sh/"}
|
22
22
|
name = "prune_captcha"
|
23
|
-
version = "1.
|
23
|
+
version = "1.7.0"
|
24
24
|
description = "A tool to protect formulaire from spam."
|
25
25
|
readme = "README.md"
|
26
26
|
dependencies = [
|
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
|
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
|
File without changes
|
File without changes
|
File without changes
|