Skip Menu |

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

Report information
The Basics
Id: 54354
Status: resolved
Priority: 0/
Queue: Net-Google-Calendar

People
Owner: Nobody in particular
Requestors: jpierce [...] cpan.org
Cc:
AdminCc:

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



Subject: Patch: Access to user friendly URL
This exposes the "alternate" url via html_url. Useful for providing public-friendly links to individual events.
Subject: alturl.patch
Re-attach
Subject: alturl.patch
--- /opt/src/CPAN/build/Net-Google-Calendar-0.97-a8q61w/lib/Net/Google/Calendar/Entry.pm 2009-05-09 17:59:02.000000000 -0400 +++ /usr/lib/perl5/site_perl/5.8.5/Net/Google/Calendar/Entry.pm 2010-02-05 23:17:33.000000000 -0500 @@ -371,12 +371,22 @@ =cut - sub self_url { return $_[0]->_generic_url('self'); } +=head2 html_url + +Return the 'alternate' browser-friendly url of this event. + +=cut + + +sub html_url { + return $_[0]->_generic_url('alternate'); +} +
Added to 1.0 Sorry it's taken me so ridiculously long to apply this. I must have completely missed it.