Skip Menu |

This queue is for tickets about the AnyData CPAN distribution.

Report information
The Basics
Id: 6007
Status: resolved
Priority: 0/
Queue: AnyData

People
Owner: JZUCKER [...] cpan.org
Requestors: Dan [...] DWright.Org
Cc:
AdminCc:

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



Subject: AnyData::Format::Weblog doesn't save properly.
After modifying a weblog file with AnyData, each line in my weblog is replaced with a stringified arrayref, "ARRAY(0x8135294)" An example script: #!/usr/local/bin/perl use strict; use AnyData; my $table = adTie ( 'Weblog', 'access_log', 'u' ); delete $table->{{remotehost=> qr/googlebot/}};
I naively assumed that no one would write to a weblog (since that's the server's job) so I never wrote any write methods. I've changed the docs to indicate that AnyData::Format::Weblog is currently read-only. Patches to make it writeable are welcome.