Skip to content

Commit 6fec0f2

Browse files
committed
[FOLD]
1 parent 54ada63 commit 6fec0f2

23 files changed

Lines changed: 53 additions & 53 deletions

doc/modules/ROOT/nav.adoc

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
* xref:2.http-tutorial.adoc[HTTP Tutorial]
2-
* xref:3.messages.adoc[HTTP Messages]
3-
** xref:3a.containers.adoc[Containers]
4-
** xref:3b.serializing.adoc[Serializing]
5-
** xref:3c.parsing.adoc[Parsing]
6-
* xref:4.servers.adoc[HTTP Servers]
7-
** xref:4a.http-worker.adoc[HTTP Worker]
8-
** xref:4b.route-handlers.adoc[Route Handlers]
9-
** xref:4c.routers.adoc[Routers]
10-
** xref:4d.route-patterns.adoc[Route Patterns]
11-
** xref:4e.serve-static.adoc[Serving Static Files]
12-
** xref:4f.serve-index.adoc[Directory Listings]
13-
** xref:4g.bcrypt.adoc[BCrypt]
14-
* xref:5.compression.adoc[Compression]
15-
** xref:5a.zlib.adoc[ZLib]
16-
** xref:5b.brotli.adoc[Brotli]
1+
* xref:2.http-tutorial/http-tutorial.adoc[HTTP Tutorial]
2+
* xref:3.messages/messages.adoc[HTTP Messages]
3+
** xref:3.messages/containers.adoc[Containers]
4+
** xref:3.messages/serializing.adoc[Serializing]
5+
** xref:3.messages/parsing.adoc[Parsing]
6+
* xref:4.servers/servers.adoc[HTTP Servers]
7+
** xref:4.servers/http-worker.adoc[HTTP Worker]
8+
** xref:4.servers/route-handlers.adoc[Route Handlers]
9+
** xref:4.servers/routers.adoc[Routers]
10+
** xref:4.servers/route-patterns.adoc[Route Patterns]
11+
** xref:4.servers/serve-static.adoc[Serving Static Files]
12+
** xref:4.servers/serve-index.adoc[Directory Listings]
13+
** xref:4.servers/bcrypt.adoc[BCrypt]
14+
* xref:5.compression/compression.adoc[Compression]
15+
** xref:5.compression/zlib.adoc[ZLib]
16+
** xref:5.compression/brotli.adoc[Brotli]
1717
* Design
18-
** xref:6a.sans-io.adoc[Sans-I/O Philosophy]
19-
** xref:6b.parser.adoc[Parser]
20-
** xref:6c.serializer.adoc[Serializer]
21-
* xref:7.reference.adoc[Reference]
18+
** xref:6.design/sans-io.adoc[Sans-I/O Philosophy]
19+
** xref:6.design/parser.adoc[Parser]
20+
** xref:6.design/serializer.adoc[Serializer]
21+
* xref:7.reference/reference.adoc[Reference]

doc/modules/ROOT/pages/2.http-tutorial.adoc renamed to doc/modules/ROOT/pages/2.http-tutorial/http-tutorial.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,4 +215,4 @@ headers.
215215
Now that you understand HTTP message structure and session management,
216216
learn how to work with the library's message containers:
217217

218-
* xref:containers.adoc[Containers] — request, response, and fields types
218+
* xref:3.messages/containers.adoc[Containers] — request, response, and fields types

doc/modules/ROOT/pages/3a.containers.adoc renamed to doc/modules/ROOT/pages/3.messages/containers.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,4 +511,4 @@ container is modified.
511511
Now that you can build and inspect HTTP messages, learn how to parse
512512
incoming messages from the network:
513513

514-
* xref:parsing.adoc[Parsing] — parse request and response messages
514+
* xref:3.messages/parsing.adoc[Parsing] — parse request and response messages

doc/modules/ROOT/pages/3.messages.adoc renamed to doc/modules/ROOT/pages/3.messages/messages.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ that feeds canned data — without recompilation or abstraction layers.
9696

9797
== Pages in This Section
9898

99-
* xref:3a.containers.adoc[Containers] — build and inspect requests,
99+
* xref:3.messages/containers.adoc[Containers] — build and inspect requests,
100100
responses, and header field collections
101-
* xref:3b.serializing.adoc[Serializing] — transform messages and body
101+
* xref:3.messages/serializing.adoc[Serializing] — transform messages and body
102102
data into bytes for the wire
103-
* xref:3c.parsing.adoc[Parsing] — transform bytes from the wire into
103+
* xref:3.messages/parsing.adoc[Parsing] — transform bytes from the wire into
104104
messages and body data

doc/modules/ROOT/pages/3c.parsing.adoc renamed to doc/modules/ROOT/pages/3.messages/parsing.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,8 @@ you receive is the decoded content.
224224

225225
For detailed information on compression services, see:
226226

227-
* xref:compression/zlib.adoc[ZLib] — DEFLATE and gzip decompression
228-
* xref:compression/brotli.adoc[Brotli] — Brotli decompression
227+
* xref:5.compression/zlib.adoc[ZLib] — DEFLATE and gzip decompression
228+
* xref:5.compression/brotli.adoc[Brotli] — Brotli decompression
229229

230230
== Handling Multiple Messages
231231

@@ -303,4 +303,4 @@ Common errors include:
303303
Now that you can parse incoming messages, learn how to produce outgoing
304304
messages:
305305

306-
* xref:serializing.adoc[Serializing] — produce HTTP messages for transmission
306+
* xref:3.messages/serializing.adoc[Serializing] — produce HTTP messages for transmission

doc/modules/ROOT/pages/3b.serializing.adoc renamed to doc/modules/ROOT/pages/3.messages/serializing.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,8 +221,8 @@ co_await sink.write_eof(
221221

222222
For detailed information on compression services, see:
223223

224-
* xref:compression/zlib.adoc[ZLib] — DEFLATE and gzip compression
225-
* xref:compression/brotli.adoc[Brotli] — Brotli compression
224+
* xref:5.compression/zlib.adoc[ZLib] — DEFLATE and gzip compression
225+
* xref:5.compression/brotli.adoc[Brotli] — Brotli compression
226226

227227
== Expect: 100-continue
228228

File renamed without changes.
File renamed without changes.

doc/modules/ROOT/pages/4b.route-handlers.adoc renamed to doc/modules/ROOT/pages/4.servers/route-handlers.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -866,4 +866,4 @@ to _install_ a handler -- how to tell the router "when a `GET` request
866866
arrives at `/posts/:id`, call _this_ function."
867867

868868
That is the job of the router, and it is the subject of the
869-
xref:4c.routers.adoc[next page].
869+
xref:4.servers/routers.adoc[next page].

doc/modules/ROOT/pages/4d.route-patterns.adoc renamed to doc/modules/ROOT/pages/4.servers/route-patterns.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,4 +505,4 @@ These patterns are invalid and produce parse errors:
505505

506506
== See Also
507507

508-
* xref:4c.routers.adoc[Routers] - request dispatch and handler registration
508+
* xref:4.servers/routers.adoc[Routers] - request dispatch and handler registration

0 commit comments

Comments
 (0)