[Top]
Standards
Standards.URI
|
Class Standards.URI
- Description
-
This class implements URI parsing and resolving of relative references to
absolute form, as defined in RFC 2396
- Variable
scheme
-
string scheme
- Description
-
Scheme component of URI
- Variable
authority
-
string authority
- Description
-
Authority component of URI (formerly called net_loc, from RFC 2396
known as authority)
- Variable
path
-
string path
- Description
-
Path component of URI. May be empty, but not undefined.
- Variable
query
-
string query
- Description
-
Query component of URI. May be 0 if not present.
- Variable
fragment
-
string fragment
- Description
-
The fragment part of URI. May be 0 if not present.
-
string host
string user
string password
- Description
-
Certain classes of URI (e.g. URL) may have these defined
- Variable
port
-
int port
- Description
-
If no port number is present in URI, but the scheme used has a
default port number, this number is put here.
- Variable
base_uri
-
this_program base_uri
- Description
-
The base URI object, if present
|