wok view perl-uri/description.txt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (24 months ago)
parents
children
line source
1 This module implements the URI class.
2 Objects of this class represent "Uniform Resource Identifier references" as
3 specified in RFC 2396 (and updated by RFC 2732).
5 A Uniform Resource Identifier is a compact string of characters that
6 identifies an abstract or physical resource.
7 A Uniform Resource Identifier can be further classified as either a
8 Uniform Resource Locator (URL) or a Uniform Resource Name (URN).
9 The distinction between URL and URN does not matter to the URI class interface.
10 A "URI-reference" is a URI that may have additional information attached in
11 the form of a fragment identifier.
13 An absolute URI reference consists of three parts: a scheme, a scheme-specific
14 part and a fragment identifier.
15 A subset of URI references share a common syntax for hierarchical namespaces.
16 For these, the scheme-specific part is further broken down into authority,
17 path and query components.
18 These URIs can also take the form of relative URI references, where the scheme
19 (and usually also the authority) component is missing, but implied by the
20 context of the URI reference.