Skip Menu |

This queue is for tickets about the libwww-perl CPAN distribution.

Report information
The Basics
Id: 18949
Status: rejected
Priority: 0/
Queue: libwww-perl

People
Owner: Nobody in particular
Requestors: DarGo [...] sPam.lA
Cc:
AdminCc:

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



Subject: HTTP::Date::time2iso should allow for _real_ ISO 8601 ('T' seperator)
according to http://www.w3.org/TR/NOTE-datetime, the 'T' separator is required between the date and time. can you make the time2iso functions allow for that format.
The only compatible way to do that seems to be to add some new functions do this. I don't think I want to bloat any more the module with that. Suggested workaround: $t = time2iso(); $t =~ s/ /T/;