| 1 |
|
| 2 |
... |
| 3 |
|
| 4 |
=over 4 |
| 5 |
|
| 6 |
=item $url = $input->url |
| 7 |
|
| 8 |
Return the URL of the input document, if it is known, or C<undef> |
| 9 |
otherwise. If the request has been redirected, then the URL |
| 10 |
of the final document is returned. What being returned by this |
| 11 |
attribute is a string. |
| 12 |
|
| 13 |
=item $input->add_url ($url) |
| 14 |
|
| 15 |
Add the URL specified as a string I<$url> to the end of the list of URLs |
| 16 |
for the input. If there exists other URLs in the list of URLs for the |
| 17 |
input, then it represents that the request to obtain the resource for |
| 18 |
the last URL has been redirected to the URL I<$url>. |
| 19 |
|
| 20 |
=item $urls = $input->urls |
| 21 |
|
| 22 |
Return a reference to an array that contains the URLs in the list of URLs, |
| 23 |
preserving order of them. The array may be empty. |
| 24 |
|
| 25 |
=back |
| 26 |
|
| 27 |
... |