Skip to content

Commit e544953

Browse files
committed
URI-5.05
- Bump all versions to 5.05 in order to remove various version mismatches. (GH #77) (Olaf Alders) - Add a simple test case for an ipv6 host (GH#66) (Olaf Alders)
1 parent 7128d59 commit e544953

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

Changes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Revision history for URI
22

3-
{{$NEXT}}
3+
5.05 2020-10-21 13:00:44Z
44
- Bump all versions to 5.05 in order to remove various version mismatches.
55
(GH #77) (Olaf Alders)
66
- Add a simple test case for an ipv6 host (GH#66) (Olaf Alders)

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ The following methods construct new `URI` objects:
8686
methods available).
8787

8888
The set of characters available for building URI references is
89-
restricted (see [URI::Escape](https://metacpan.org/pod/URI::Escape)). Characters outside this set are
89+
restricted (see [URI::Escape](https://metacpan.org/pod/URI%3A%3AEscape)). Characters outside this set are
9090
automatically escaped by the URI constructor.
9191

9292
- $uri = URI->new\_abs( $str, $base\_uri )
@@ -99,18 +99,18 @@ The following methods construct new `URI` objects:
9999
- $uri = URI::file->new( $filename )
100100
- $uri = URI::file->new( $filename, $os )
101101

102-
Constructs a new _file_ URI from a file name. See [URI::file](https://metacpan.org/pod/URI::file).
102+
Constructs a new _file_ URI from a file name. See [URI::file](https://metacpan.org/pod/URI%3A%3Afile).
103103

104104
- $uri = URI::file->new\_abs( $filename )
105105
- $uri = URI::file->new\_abs( $filename, $os )
106106

107107
Constructs a new absolute _file_ URI from a file name. See
108-
[URI::file](https://metacpan.org/pod/URI::file).
108+
[URI::file](https://metacpan.org/pod/URI%3A%3Afile).
109109

110110
- $uri = URI::file->cwd
111111

112112
Returns the current working directory as a _file_ URI. See
113-
[URI::file](https://metacpan.org/pod/URI::file).
113+
[URI::file](https://metacpan.org/pod/URI%3A%3Afile).
114114

115115
- $uri->clone
116116

@@ -327,7 +327,7 @@ methods:
327327
";" for the same global effect.
328328

329329
The `URI::QueryParam` module can be loaded to add further methods to
330-
manipulate the form of a URI. See [URI::QueryParam](https://metacpan.org/pod/URI::QueryParam) for details.
330+
manipulate the form of a URI. See [URI::QueryParam](https://metacpan.org/pod/URI%3A%3AQueryParam) for details.
331331

332332
- $uri->query\_keywords
333333
- $uri->query\_keywords( $keywords, ... )
@@ -419,7 +419,7 @@ generic methods.
419419

420420
`URI` objects belonging to the data scheme support the common methods
421421
and two new methods to access their scheme-specific components:
422-
$uri->media\_type and $uri->data. See [URI::data](https://metacpan.org/pod/URI::data) for details.
422+
$uri->media\_type and $uri->data. See [URI::data](https://metacpan.org/pod/URI%3A%3Adata) for details.
423423

424424
- **file**:
425425

@@ -429,7 +429,7 @@ generic methods.
429429

430430
`URI` objects belonging to the file scheme support the common and
431431
generic methods. In addition, they provide two methods for mapping file URIs
432-
back to local file names; $uri->file and $uri->dir. See [URI::file](https://metacpan.org/pod/URI::file)
432+
back to local file names; $uri->file and $uri->dir. See [URI::file](https://metacpan.org/pod/URI%3A%3Afile)
433433
for details.
434434

435435
- **ftp**:
@@ -478,7 +478,7 @@ generic methods.
478478
`URI` objects belonging to the ldap scheme support the common,
479479
generic and server methods as well as ldap-specific methods: $uri->dn,
480480
$uri->attributes, $uri->scope, $uri->filter, $uri->extensions. See
481-
[URI::ldap](https://metacpan.org/pod/URI::ldap) for details.
481+
[URI::ldap](https://metacpan.org/pod/URI%3A%3Aldap) for details.
482482

483483
- **ldapi**:
484484

@@ -712,8 +712,8 @@ readable alternative.
712712

713713
# SEE ALSO
714714

715-
[URI::file](https://metacpan.org/pod/URI::file), [URI::WithBase](https://metacpan.org/pod/URI::WithBase), [URI::QueryParam](https://metacpan.org/pod/URI::QueryParam), [URI::Escape](https://metacpan.org/pod/URI::Escape),
716-
[URI::Split](https://metacpan.org/pod/URI::Split), [URI::Heuristic](https://metacpan.org/pod/URI::Heuristic)
715+
[URI::file](https://metacpan.org/pod/URI%3A%3Afile), [URI::WithBase](https://metacpan.org/pod/URI%3A%3AWithBase), [URI::QueryParam](https://metacpan.org/pod/URI%3A%3AQueryParam), [URI::Escape](https://metacpan.org/pod/URI%3A%3AEscape),
716+
[URI::Split](https://metacpan.org/pod/URI%3A%3ASplit), [URI::Heuristic](https://metacpan.org/pod/URI%3A%3AHeuristic)
717717

718718
RFC 2396: "Uniform Resource Identifiers (URI): Generic Syntax",
719719
Berners-Lee, Fielding, Masinter, August 1998.

0 commit comments

Comments
 (0)