Errata

Perl & LWP

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
Printed Page 33
l.18

my $response = $browser->request(@_);

->

my $response = $browser->get(@_);

Anonymous   
Printed Page 50
l.25

There's too much space near "becomes" and "makes".

Anonymous   
Printed Page 54
l.2

In the line 2, missing "]".

reads:
@params = $url->query_form([key, value, ...);

should be:
@params = $url->query_form([key, value, ...]);

Anonymous   
Printed Page 55
ll.18-19

In the line 18,

Goal: http://phee.phye.phoe.fm/thingamajig/zing.html

In the line 19,

To get from the base to the goal, the shortest relative URL is simply
zing.xml.

Which is correct, zing."html" or zing."xml"?

Anonymous   
Printed Page 62
Middle of page, in formpairs.pl

"" is not necessary in the following expression:

s/=/" => "/;

to

s/=/" => "/;

Anonymous   
Printed Page 65
line 17

ivalue="Pretty please!"

to

value="Pretty please!"

Anonymous   
Printed Page 102
line 13

$attribute_hash

to

$attribute_hashref

Anonymous   
Printed Page 103
the third line from the bottom

decode_entities($token->[1]) if $token->[2];

to

decode_entities($token->[1]) unless $token->[2];

Anonymous   
Printed Page 115
line 18

Unless $tag->[0]

to

Unless $tag_reference->[0]

Anonymous   
Printed Page 116
line 13

When $tag->[0]

to

When $tag_reference->[0]

Anonymous