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

..03-May-2022-

inc/Module/H20-Sep-2018-2,0651,534

lib/URI/H20-Sep-2018-478307

t/H20-Sep-2018-264203

ChangesH A D20-Sep-20182.5 KiB9771

MANIFESTH A D20-Sep-2018410 2221

META.ymlH A D20-Sep-2018637 3130

Makefile.PLH A D20-Sep-2018385 2214

READMEH A D20-Sep-20182.4 KiB8660

README

1NAME
2    URI::Template - Object for handling URI templates (RFC 6570)
3
4SYNOPSIS
5        use URI::Template;
6
7        my $template = URI::Template->new( 'http://example.com/{x}' );
8        my $uri      = $template->process( x => 'y' );
9
10        # or
11
12        my $template = URI::Template->new();
13        $template->template( 'http://example.com/{x}' );
14        my $uri      = $template->process( x => 'y' );
15
16        # uri is a URI object with value 'http://example.com/y'
17
18    or
19
20        use URI::Template ':template_process'
21
22        my $uri = template_process ( 'http://example.com/{x}', x => 'y' );
23
24DESCRIPTION
25    This module provides a wrapper around URI templates as described in RFC
26    6570: <http://tools.ietf.org/html/rfc6570>.
27
28INSTALLATION
29        perl Makefile.PL
30        make
31        make test
32        make install
33
34METHODS
35  new( $template )
36    Creates a new URI::Template instance with the template passed in as the
37    first parameter (optional).
38
39  template( $template )
40    This method returns the original template string. If provided, it will
41    also set and parse a new template string.
42
43  variables
44    Returns an array of unique variable names found in the template (in the
45    order of appearance).
46
47  expansions
48    This method returns an list of expansions found in the template.
49    Currently, these are just coderefs. In the future, they will be more
50    interesting.
51
52  process( \%vars )
53    Given a list of key-value pairs or an array ref of values (for
54    positional substitution), it will URI escape the values and substitute
55    them in to the template. Returns a URI object.
56
57  process_to_string( \%vars )
58    Processes input like the "process" method, but doesn't inflate the
59    result to a URI object.
60
61EXPORTED FUNCTIONS
62  template_process( $template => \%vars )
63    This is the same as "URI::Template->new($template)->process(\%vars)" But
64    shorter, and usefull for quick and easy genrating a nice URI form
65    parameters.
66
67    Returns an URI object
68
69  template_process_as_string( $template => \%vars )
70    Same as above, but obviously, returns a string.
71
72AUTHORS
73    *   Brian Cassidy <bricas@cpan.org>
74
75    *   Ricardo SIGNES <rjbs@cpan.org>
76
77CONTRIBUTERS
78    *   Theo van Hoesel <Th.J.v.Hoesel@THEMA-MEDIA.nl>
79
80COPYRIGHT AND LICENSE
81    Copyright 2007-2018 by Brian Cassidy
82
83    This library is free software; you can redistribute it and/or modify it
84    under the same terms as Perl itself.
85
86