mirror of https://github.com/adamdruppe/arsd.git
docs
This commit is contained in:
parent
25cfe0b498
commit
2e7b822c5b
7
http2.d
7
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;
|
||||
|
|
Loading…
Reference in New Issue