Skip Menu |

This queue is for tickets about the Net-OpenSRS CPAN distribution.

Report information
The Basics
Id: 50496
Status: open
Priority: 0/
Queue: Net-OpenSRS

People
Owner: Nobody in particular
Requestors: richard.siddall [...] elirion.net
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: (no value)



Subject: Documentation doesn't say "zip" field required for registration
This was reported by Collin Condray, via Mahlon Smith. A postal code is required in the contact data for domain registration and transfer, but the POD doesn't mention that field. You therefore need to inspect the code to find out the field name, which is "zip". Solution is to update the POD, especially the synopsis.
On Wed Oct 14 13:00:31 2009, rsiddall wrote: Show quoted text
> This was reported by Collin Condray, via Mahlon Smith. > > Solution is to update the POD, especially the synopsis.
It'll be much easier to update the POD with Collin's suggested fix: Show quoted text
> I think that the $c variable in the documentation should read: > > my $c = { > firstname => 'John', > lastname => 'Doe', > city => 'Portland', > state => 'Oregon', > country => 'US', > address => '555 Someplace Street', > zip => '54321', # This is the added value > email => 'john@example.com', > phone => '503-555-1212', > company => 'Tester' > }; >