mirror of
https://github.com/lunarmodules/luasocket.git
synced 2024-12-26 04:28:20 +01:00
docs: Remove params documentation
This commit is contained in:
parent
784b0631e1
commit
b281e6f717
@ -60,7 +60,7 @@ An URL is defined by the following grammar:
|
|||||||
|
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<tt>
|
<tt>
|
||||||
<url> ::= [<scheme>:][//<authority>][/<path>][;<params>][?<query>][#<fragment>]<br>
|
<url> ::= [<scheme>:][//<authority>][/<path>][?<query>][#<fragment>]<br>
|
||||||
<authority> ::= [<userinfo>@]<host>[:<port>]<br>
|
<authority> ::= [<userinfo>@]<host>[:<port>]<br>
|
||||||
<userinfo> ::= <user>[:<password>]<br>
|
<userinfo> ::= <user>[:<password>]<br>
|
||||||
<path> ::= {<segment>/}<segment><br>
|
<path> ::= {<segment>/}<segment><br>
|
||||||
@ -225,7 +225,6 @@ parsed_url = {<br>
|
|||||||
scheme = <i>string</i>,<br>
|
scheme = <i>string</i>,<br>
|
||||||
authority = <i>string</i>,<br>
|
authority = <i>string</i>,<br>
|
||||||
path = <i>string</i>,<br>
|
path = <i>string</i>,<br>
|
||||||
params = <i>string</i>,<br>
|
|
||||||
query = <i>string</i>,<br>
|
query = <i>string</i>,<br>
|
||||||
fragment = <i>string</i>,<br>
|
fragment = <i>string</i>,<br>
|
||||||
userinfo = <i>string</i>,<br>
|
userinfo = <i>string</i>,<br>
|
||||||
@ -255,7 +254,6 @@ parsed_url = url.parse("ftp://root:passwd@unsafe.org/pub/virus.exe;type=i")
|
|||||||
-- scheme = "ftp",
|
-- scheme = "ftp",
|
||||||
-- authority = "root:passwd@unsafe.org",
|
-- authority = "root:passwd@unsafe.org",
|
||||||
-- path = "/pub/virus.exe",
|
-- path = "/pub/virus.exe",
|
||||||
-- params = "type=i",
|
|
||||||
-- userinfo = "root:passwd",
|
-- userinfo = "root:passwd",
|
||||||
-- host = "unsafe.org",
|
-- host = "unsafe.org",
|
||||||
-- user = "root",
|
-- user = "root",
|
||||||
|
Loading…
Reference in New Issue
Block a user