mirror of
https://github.com/aantron/dream.git
synced 2025-08-10 00:04:20 -04:00
Adjust links after example reordering
This commit is contained in:
parent
29358cf376
commit
a8306f998b
@ -49,14 +49,14 @@ their slightly different interfaces, and takes care of horridness like
|
||||
|
||||
[websocket]: https://aantron.github.io/dream/#websockets
|
||||
[graphql]: https://aantron.github.io/dream/#graphql
|
||||
[templates]: https://github.com/aantron/dream/tree/master/example/6-template#files
|
||||
[templates]: https://github.com/aantron/dream/tree/master/example/7-template#files
|
||||
[middleware]: https://github.com/aantron/dream/tree/master/example/4-counter#files
|
||||
[routing]: https://aantron.github.io/dream/#routing
|
||||
[cookies]: https://github.com/aantron/dream/tree/master/example/c-cookie#files
|
||||
[forms]: https://github.com/aantron/dream/tree/master/example/d-form#files
|
||||
[sessions]: https://github.com/aantron/dream/tree/master/example/b-session#files
|
||||
[back-ends]: https://aantron.github.io/dream/#back-ends
|
||||
[errors]: https://github.com/aantron/dream/tree/master/example/8-error#files
|
||||
[errors]: https://github.com/aantron/dream/tree/master/example/9-error#files
|
||||
[crypto]: https://aantron.github.io/dream/#cryptography
|
||||
[logging]: https://aantron.github.io/dream/#logging
|
||||
[types]: https://aantron.github.io/dream/#types
|
||||
|
@ -101,9 +101,9 @@ There are other ways to write *await* and *catch* in Lwt that don't require
|
||||
|
||||
**Next steps:**
|
||||
|
||||
- [**`b-session`**](../b-session/#files) introduces *session management* for
|
||||
associating state with clients.
|
||||
- [**`c-cookie`**](../c-cookie/#files) shows *cookie handling* in Dream.
|
||||
- [**`6-echo`**](../6-echo/#files) uses Lwt to read a request body.
|
||||
- [**`7-template`**](../7-template/#files) show how to interleave HTML and
|
||||
OCaml.
|
||||
|
||||
<br>
|
||||
|
||||
|
@ -64,9 +64,9 @@ present them the right way.
|
||||
|
||||
**Next steps:**
|
||||
|
||||
- [**`6-template`**](../6-template/#files) renders responses from templates and
|
||||
- [**`7-template`**](../7-template/#files) renders responses from templates and
|
||||
guards against injection attacks (XSS).
|
||||
- [**`7-debug`**](../7-debug/#files) renders error information in responses.
|
||||
- [**`8-debug`**](../8-debug/#files) renders error information in responses.
|
||||
|
||||
<br>
|
||||
|
||||
|
@ -103,9 +103,9 @@ attributes are much more invasive.
|
||||
|
||||
**Next steps:**
|
||||
|
||||
- [**`7-debug`**](../7-debug/#files) shows how to turn on debug responses, and
|
||||
- [**`8-debug`**](../8-debug/#files) shows how to turn on debug responses, and
|
||||
get more info about errors.
|
||||
- [**`8-error`**](../8-error/#files) sets up a central error template for all
|
||||
- [**`9-error`**](../9-error/#files) sets up a central error template for all
|
||||
errors.
|
||||
|
||||
<br>
|
||||
|
@ -100,9 +100,9 @@ Both the debugger's output and the non-debug error page are fully customizable
|
||||
|
||||
**Next steps:**
|
||||
|
||||
- [**`8-error`**](../8-error/#files) handles all errors in one place, also
|
||||
- [**`9-error`**](../9-error/#files) handles all errors in one place, also
|
||||
customizing the debugger.
|
||||
- [**`9-log`**](../9-log/#files) writes messages to the same Dream log at
|
||||
- [**`a-log`**](../a-log/#files) writes messages to the same Dream log at
|
||||
various levels, and creates a sub-log.
|
||||
|
||||
<br>
|
||||
|
@ -85,9 +85,9 @@ to the point of intercepting strings generated by its HTTP dependencies.
|
||||
|
||||
**Next steps:**
|
||||
|
||||
- [**`9-log`**](../9-log/#files) shows how to write messages to Dream's log.
|
||||
- [**`a-promise`**](../a-promise/#files) properly introduces Lwt, the promise
|
||||
library used by Dream.
|
||||
- [**`a-log`**](../a-log/#files) shows how to write messages to Dream's log.
|
||||
- [**`b-session`**](../b-session/#files) introduces *session management* for
|
||||
associating state with clients.
|
||||
|
||||
<br>
|
||||
|
||||
|
@ -71,10 +71,9 @@ let () =
|
||||
|
||||
**Next steps:**
|
||||
|
||||
- In [**`a-promise`**](../a-promise/#files), we combine logging with the promise
|
||||
library Lwt to sketch out a custom logger.
|
||||
- [**`b-session`**](../b-session/#files) finally returns web development proper
|
||||
with *session management*.
|
||||
- [**`c-cookie`**](../c-cookie/#files) shows *cookie handling* in Dream.
|
||||
|
||||
<br>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user