Skip to content

Commit 7222ff7

Browse files
author
jczic
committed
New release v2.0.6
1 parent a0181d8 commit 7222ff7

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

MicroWebSrv2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
print()
88
print(' ---------------------------')
99
print(' - Python pkg MicroWebSrv2 -')
10-
print(' - version 2.0.5 -')
10+
print(' - version 2.0.6 -')
1111
print(' - by JC`zic & HC2 -')
1212
print(' ---------------------------')
1313
print()

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,8 @@ Also, architecture makes its integration very easy and the source code, **MIT li
126126

127127
- Play with **AjAX** requests to interact quickly with a web application.
128128

129+
- Define the **origin** of resources and allow all values of **CORS** pre-flight requests.
130+
129131
- Verify that a request is successfully **authenticated** by the **Basic** or **Bearer** method.
130132

131133
- Reduce the number of persistent connections per web client with **keep-alive mode** support.
@@ -693,7 +695,7 @@ except KeyboardInterrupt :
693695
| `RequestsTimeoutSec` | int | :ballot_box_with_check: | :ballot_box_with_check: | *Timeout in seconds to waiting the next data reception of requests.* |
694696
| `NotFoundURL` | str or None | :ballot_box_with_check: | :ballot_box_with_check: | *URL used to redirects requests not found.* |
695697
| `AllowAllOrigins` | bool | :ballot_box_with_check: | :ballot_box_with_check: | *Indicates that all resource origins of requests are allowed.* |
696-
| `CORSAllowAll` | bool | :ballot_box_with_check: | :ballot_box_with_check: | *Allows all CORS values for the preflight requests (OPTIONS).* |
698+
| `CORSAllowAll` | bool | :ballot_box_with_check: | :ballot_box_with_check: | *Allows all CORS values for the pre-flight requests (OPTIONS).* |
697699
| `OnLogging` | [callback](#mws2-onlogging) or None | :ballot_box_with_check: | :ballot_box_with_check: | *Callback function when the server logs information.* |
698700
699701
> **Definition of the above callback functions:**

docs/index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,8 @@ Also, architecture makes its integration very easy and the source code, **MIT li
128128
129129
- Play with **AjAX** requests to interact quickly with a web application.
130130
131+
- Define the **origin** of resources and allow all values of **CORS** pre-flight requests.
132+
131133
- Verify that a request is successfully **authenticated** by the **Basic** or **Bearer** method.
132134
133135
- Reduce the number of persistent connections per web client with **keep-alive mode** support.
@@ -695,7 +697,7 @@ except KeyboardInterrupt :
695697
| `RequestsTimeoutSec` | int | Yes | Yes | *Timeout in seconds to waiting the next data reception of requests.* |
696698
| `NotFoundURL` | str or None | Yes | Yes | *URL used to redirects requests not found.* |
697699
| `AllowAllOrigins` | bool | Yes | Yes | *Indicates that all resource origins of requests are allowed.* |
698-
| `CORSAllowAll` | bool | Yes | Yes | *Allows all CORS values for the preflight requests (OPTIONS).* |
700+
| `CORSAllowAll` | bool | Yes | Yes | *Allows all CORS values for the pre-flight requests (OPTIONS).* |
699701
| `OnLogging` | [callback](#mws2-onlogging) or None | Yes | Yes | *Callback function when the server logs information.* |
700702
701703
> **Definition of the above callback functions:**

0 commit comments

Comments
 (0)