From ca88fc34c3f6e4c204836760b77b566d5ce6c702 Mon Sep 17 00:00:00 2001 From: Michael Ford Date: Fri, 24 Feb 2023 01:34:48 +0800 Subject: [PATCH] doc: remove "everything everything" from ParseUrl doc (#704) Closes: #702. --- net/http/parseurl.c | 12 ++++++------ tool/net/definitions.lua | 14 +++++++------- tool/net/help.txt | 13 ++++++------- 3 files changed, 19 insertions(+), 20 deletions(-) diff --git a/net/http/parseurl.c b/net/http/parseurl.c index d46d0263e..70dd0b4dc 100644 --- a/net/http/parseurl.c +++ b/net/http/parseurl.c @@ -265,12 +265,12 @@ static void ParseFragment(struct UrlParser *u, struct UrlView *h) { * since it's the most non-deterministically defined field of them all. * * Please note this is a URL parser, not a URI parser. Which means we - * support everything everything the URI spec says we should do except - * for the things we won't do, like tokenizing path segments into an - * array and then nesting another array beneath each of those for - * storing semicolon parameters. So this parser won't make SIP easy. - * What it can do is parse HTTP URLs and most URIs like s:opaque, - * better in fact than most things which claim to be URI parsers. + * support everything the URI spec says we should do except for the + * things we won't do, like tokenizing path segments into an array + * and then nesting another array beneath each of those for storing + * semicolon parameters. So this parser won't make SIP easy. What it + * can do is parse HTTP URLs and most URIs like s:opaque, better in + * fact than most things which claim to be URI parsers. * * @param s is value like `/hi?x=y&z` or `http://a.example/hi#x` * @param n is byte length and -1 implies strlen diff --git a/tool/net/definitions.lua b/tool/net/definitions.lua index 74ee96481..b020068d3 100644 --- a/tool/net/definitions.lua +++ b/tool/net/definitions.lua @@ -1431,13 +1431,13 @@ function ParseHttpDateTime(rfc1123) end --- it's the most non-deterministically defined field of them all. --- --- Please note this is a URL parser, not a URI parser. Which ---- means we support everything everything the URI spec says we ---- should do except for the things we won't do, like tokenizing ---- path segments into an array and then nesting another array ---- beneath each of those for storing semicolon parameters. So ---- this parser won't make SIP easy. What it can do is parse HTTP ---- URLs and most URIs like data:opaque, better in fact than most ---- things which claim to be URI parsers. +--- means we support everything the URI spec says we should do +--- except for the things we won't do, like tokenizing path +--- segments into an array and then nesting another array beneath +--- each of those for storing semicolon parameters. So this parser +--- won't make SIP easy. What it can do is parse HTTP URLs and most +--- URIs like data:opaque, better in fact than most things which +--- claim to be URI parsers. --- ---@nodiscard function ParseUrl(url, flags) end diff --git a/tool/net/help.txt b/tool/net/help.txt index ee268a647..fe836f753 100644 --- a/tool/net/help.txt +++ b/tool/net/help.txt @@ -1374,13 +1374,12 @@ FUNCTIONS it's the most non-deterministically defined field of them all. Please note this is a URL parser, not a URI parser. Which - means we support everything everything the URI spec says we - should do except for the things we won't do, like tokenizing - path segments into an array and then nesting another array - beneath each of those for storing semicolon parameters. So - this parser won't make SIP easy. What it can do is parse HTTP - URLs and most URIs like data:opaque, better in fact than most - things which claim to be URI parsers. + means we support everything the URI spec says we should do except + for the things we won't do, like tokenizing path segments into + an array and then nesting another array beneath each of those for + storing semicolon parameters. So this parser won't make SIP easy. + What it can do is parse HTTP URLs and most URIs like data:opaque, + better in fact than most things which claim to be URI parsers. IsAcceptablePath(str) → bool Returns true if path doesn't contain ".", ".." or "//" segments