Skip to content

Commit 0185ffc

Browse files
committed
Update website
1 parent 4434e2a commit 0185ffc

File tree

13 files changed

+44
-2342
lines changed

13 files changed

+44
-2342
lines changed

README.md

Lines changed: 21 additions & 2332 deletions
Large diffs are not rendered by default.

docs/eventsource.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,3 @@ if (!!window.EventSource) {
9090
);
9191
}
9292
```
93-

docs/filters.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,3 @@ server.serveStatic("/", LittleFS, "/www/");
6565
RedirectUrl += "/index.htm";
6666
request->redirect(RedirectUrl);
6767
```
68-

docs/help_and_issues.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Help & Issues
2+
3+
We welcome contributions and questions from the community!
4+
5+
## Getting Help
6+
7+
If you have questions about how to use the library, need help with your code, or want to discuss features:
8+
9+
- **Please do not open a GitHub Issue.** Issues are reserved for bug reports and verifiable feature requests.
10+
- Instead, **open a discussion** in the [GitHub Discussions tab](https://github.com/ESP32Async/ESPAsyncWebServer/discussions). This is the best place to get help from maintainers and other users.
11+
12+
## Reporting Issues
13+
14+
If you believe you have found a bug in the library, or if you have a specific feature request:
15+
16+
- Please **open an Issue** on the [GitHub Issues tab](https://github.com/ESP32Async/ESPAsyncWebServer/issues).
17+
- Be sure to include as much detail as possible, including:
18+
- The version of the library you are using.
19+
- The hardware you are running on (e.g., ESP32 S3, ESP8266, etc).
20+
- A minimal code example that reproduces the issue.
21+
- Any relevant logs or error messages (Enable Core Debug Level to Verbose).

docs/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,3 @@ Supports: WebSocket, SSE, Authentication, Arduino Json 7, MessagePack, File Uplo
5151
- [WebSerial](https://github.com/ayushsharma82/WebSerial) - A remote terminal library for wireless microcontrollers to log, monitor or debug your firmware/product
5252
- [WebSocketToSerial](https://github.com/hallard/WebSocketToSerial) - Debug serial devices through the web browser
5353
- [YaSolR (Yet another Solar Router)](https://yasolr.carbou.me) - Heat water with your Solar Production Excess with the more powerful and precise solar diverter out there!
54-

docs/installation.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,3 @@ lib_ignore =
9494
build_flags = ${env.build_flags}
9595
-Wno-missing-field-initializers
9696
```
97-

docs/middleware.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,3 @@ See the [Auth example here](../examples/Auth/Auth.ino).
123123
- `ArUploadHandlerFunction` and `ArBodyHandlerFunction` => these callbacks receiving body data and upload and not calling anymore the authentication code for performance reasons.
124124
These callbacks can be called multiple times during request parsing, so this is up to the user to now call the `AsyncAuthenticationMiddleware.allowed(request)` if needed and ideally when the method is called for the first time.
125125
These callbacks are also not triggering the whole middleware chain since they are not part of the request processing workflow (they are not the final handler).
126-

docs/requests.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,4 +156,3 @@ server.addHandler(handler);
156156
```
157157

158158
See the [MessagePack example here](../examples/MessagePack/MessagePack.ino).
159-

docs/responses.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -662,4 +662,3 @@ request->send("text/plain", 0, [](uint8_t *buffer, size_t maxLen, size_t index)
662662
return mySource.read(buffer, maxLen);
663663
});
664664
```
665-

docs/routing.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,4 +149,3 @@ server.onNotFound(NULL);
149149
// remove all rewrites, handlers and onNotFound/onFileUpload/onRequestBody callbacks
150150
server.reset();
151151
```
152-

0 commit comments

Comments
 (0)