summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlaf Alders <olaf@wundersolutions.com>2020-10-21 09:01:05 -0400
committerOlaf Alders <olaf@wundersolutions.com>2020-10-21 09:01:05 -0400
commite544953afb8f9fda5d99655bad8001b166c53487 (patch)
tree41f2939c83bceb0954583d0cd8e8c66c0141fbbb
parent7128d5961ff5d577f08288386c25ac2ca70d99ce (diff)
downloaduri-e544953afb8f9fda5d99655bad8001b166c53487.tar.gz
URI-5.05v5.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)
-rw-r--r--Changes2
-rw-r--r--README.md20
2 files changed, 11 insertions, 11 deletions
diff --git a/Changes b/Changes
index 39b3914..8c52574 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,6 @@
Revision history for URI
-{{$NEXT}}
+5.05 2020-10-21 13:00:44Z
- 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)
diff --git a/README.md b/README.md
index 684ba05..662a4cb 100644
--- a/README.md
+++ b/README.md
@@ -86,7 +86,7 @@ The following methods construct new `URI` objects:
methods available).
The set of characters available for building URI references is
- restricted (see [URI::Escape](https://metacpan.org/pod/URI::Escape)). Characters outside this set are
+ restricted (see [URI::Escape](https://metacpan.org/pod/URI%3A%3AEscape)). Characters outside this set are
automatically escaped by the URI constructor.
- $uri = URI->new\_abs( $str, $base\_uri )
@@ -99,18 +99,18 @@ The following methods construct new `URI` objects:
- $uri = URI::file->new( $filename )
- $uri = URI::file->new( $filename, $os )
- Constructs a new _file_ URI from a file name. See [URI::file](https://metacpan.org/pod/URI::file).
+ Constructs a new _file_ URI from a file name. See [URI::file](https://metacpan.org/pod/URI%3A%3Afile).
- $uri = URI::file->new\_abs( $filename )
- $uri = URI::file->new\_abs( $filename, $os )
Constructs a new absolute _file_ URI from a file name. See
- [URI::file](https://metacpan.org/pod/URI::file).
+ [URI::file](https://metacpan.org/pod/URI%3A%3Afile).
- $uri = URI::file->cwd
Returns the current working directory as a _file_ URI. See
- [URI::file](https://metacpan.org/pod/URI::file).
+ [URI::file](https://metacpan.org/pod/URI%3A%3Afile).
- $uri->clone
@@ -327,7 +327,7 @@ methods:
";" for the same global effect.
The `URI::QueryParam` module can be loaded to add further methods to
- manipulate the form of a URI. See [URI::QueryParam](https://metacpan.org/pod/URI::QueryParam) for details.
+ manipulate the form of a URI. See [URI::QueryParam](https://metacpan.org/pod/URI%3A%3AQueryParam) for details.
- $uri->query\_keywords
- $uri->query\_keywords( $keywords, ... )
@@ -419,7 +419,7 @@ generic methods.
`URI` objects belonging to the data scheme support the common methods
and two new methods to access their scheme-specific components:
- $uri->media\_type and $uri->data. See [URI::data](https://metacpan.org/pod/URI::data) for details.
+ $uri->media\_type and $uri->data. See [URI::data](https://metacpan.org/pod/URI%3A%3Adata) for details.
- **file**:
@@ -429,7 +429,7 @@ generic methods.
`URI` objects belonging to the file scheme support the common and
generic methods. In addition, they provide two methods for mapping file URIs
- back to local file names; $uri->file and $uri->dir. See [URI::file](https://metacpan.org/pod/URI::file)
+ back to local file names; $uri->file and $uri->dir. See [URI::file](https://metacpan.org/pod/URI%3A%3Afile)
for details.
- **ftp**:
@@ -478,7 +478,7 @@ generic methods.
`URI` objects belonging to the ldap scheme support the common,
generic and server methods as well as ldap-specific methods: $uri->dn,
$uri->attributes, $uri->scope, $uri->filter, $uri->extensions. See
- [URI::ldap](https://metacpan.org/pod/URI::ldap) for details.
+ [URI::ldap](https://metacpan.org/pod/URI%3A%3Aldap) for details.
- **ldapi**:
@@ -712,8 +712,8 @@ readable alternative.
# SEE ALSO
-[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),
-[URI::Split](https://metacpan.org/pod/URI::Split), [URI::Heuristic](https://metacpan.org/pod/URI::Heuristic)
+[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),
+[URI::Split](https://metacpan.org/pod/URI%3A%3ASplit), [URI::Heuristic](https://metacpan.org/pod/URI%3A%3AHeuristic)
RFC 2396: "Uniform Resource Identifiers (URI): Generic Syntax",
Berners-Lee, Fielding, Masinter, August 1998.