• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/URI/H19-Dec-2013-242104

t/H19-Dec-2013-181124

Build.PLH A D19-Dec-2013678 2523

ChangesH A D19-Dec-2013102 53

MANIFESTH A D19-Dec-2013120 109

META.jsonH A D19-Dec-20131.3 KiB5655

META.ymlH A D19-Dec-2013745 3029

README.mdH A D19-Dec-2013926 4227

README.md

1URI/Nested version 0.10
2=======================
3
4This library implements a Perl interface for nested URIs -- that is, URIs that
5contain other URIs. The basic format is:
6
7    {prefix}:{uri}
8
9Some examples:
10
11* `jdbc:oracle:scott/tiger@//myhost:1521/myservicename`
12* `db:postgres://db.example.com/template1`
13
14Implementations built on URI::Nested include
15[URI::jdbc](https://metacpan.org/module/URI::jdbc) and
16[URI::db](https://metacpan.org/module/URI::db).
17
18Installation
19------------
20
21To install this module, type the following:
22
23    perl Build.PL
24    ./Build
25    ./Build test
26    ./Build install
27
28Dependencies
29------------
30
31URI::Nested requires the following modules:
32
33* [URI](https://metacpan.org/module/URI)
34
35Copyright and Licence
36---------------------
37
38Copyright (c) 2013 David E. Wheeler. Some Rights Reserved.
39
40This module is free software; you can redistribute it and/or modify it under
41the same terms as Perl itself.
42