From 2e7b822c5bd7e14705cde3ed787b58732c51e5d9 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 24 Oct 2022 16:32:35 -0400 Subject: [PATCH] docs --- http2.d | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/http2.d b/http2.d index 94b48db..32a2281 100644 --- a/http2.d +++ b/http2.d @@ -579,7 +579,9 @@ private class UnixAddress : Address { // Copy pasta from cgi.d, then stripped down. unix path thing added tho -/// +/++ + Represents a URI. It offers named access to the components and relative uri resolution, though as a user of the library, you'd mostly just construct it like `Uri("http://example.com/index.html")`. ++/ struct Uri { alias toString this; // blargh idk a url really is a string, but should it be implicit? @@ -881,6 +883,9 @@ struct Uri { return n; } + /++ + Resolves ../ and ./ parts of the path. Used in the implementation of [basedOn] and you could also use it to normalize things. + +/ void removeDots() { auto parts = this.path.split("/"); string[] toKeep;