wok-current annotate perl-uri/description.txt @ rev 25197
updated python-ipy (1.00 -> 1.01)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Jul 13 11:09:33 2022 +0100 (2022-07-13) |
parents | |
children |
rev | line source |
---|---|
Hans-G?nter@24268 | 1 This module implements the URI class. |
Hans-G?nter@24268 | 2 Objects of this class represent "Uniform Resource Identifier references" as |
Hans-G?nter@24268 | 3 specified in RFC 2396 (and updated by RFC 2732). |
Hans-G?nter@24268 | 4 |
Hans-G?nter@24268 | 5 A Uniform Resource Identifier is a compact string of characters that |
Hans-G?nter@24268 | 6 identifies an abstract or physical resource. |
Hans-G?nter@24268 | 7 A Uniform Resource Identifier can be further classified as either a |
Hans-G?nter@24268 | 8 Uniform Resource Locator (URL) or a Uniform Resource Name (URN). |
Hans-G?nter@24268 | 9 The distinction between URL and URN does not matter to the URI class interface. |
Hans-G?nter@24268 | 10 A "URI-reference" is a URI that may have additional information attached in |
Hans-G?nter@24268 | 11 the form of a fragment identifier. |
Hans-G?nter@24268 | 12 |
Hans-G?nter@24268 | 13 An absolute URI reference consists of three parts: a scheme, a scheme-specific |
Hans-G?nter@24268 | 14 part and a fragment identifier. |
Hans-G?nter@24268 | 15 A subset of URI references share a common syntax for hierarchical namespaces. |
Hans-G?nter@24268 | 16 For these, the scheme-specific part is further broken down into authority, |
Hans-G?nter@24268 | 17 path and query components. |
Hans-G?nter@24268 | 18 These URIs can also take the form of relative URI references, where the scheme |
Hans-G?nter@24268 | 19 (and usually also the authority) component is missing, but implied by the |
Hans-G?nter@24268 | 20 context of the URI reference. |