Deprecated.
NAME
Net::Google::Blogger::Blog - (** DEPRECATED **) represents blog entity of Google Blogger service.
SYNOPSIS
This module is deprecated. Please use WebService::Blogger.
DESCRIPTION
This class represents a blog in Net::Google::Blogger package. As of present, you should never instantiate it directly. Only title
, public_url
and entries
attributes are for public use, other are subject to change in future versions.
METHODS
add_entry($entry)
Adds given entry to the blog. The argument must be an instance of Net::Google::Blogger::Blog::Entry
delete_entry($entry)
Deletes given entry from server as well as list of entries held in blog object.
search_entries(%criteria)
Returns entries matching specified conditions. The following example contains all possible search criteria:
my @entries = $blog->search_entries( published_min => '2010-08-10T23:25:00+04:00' published_max => '2010-07-17T23:25:00+04:00', updated_min => '2010-09-17T12:25:00+04:00', updated_max => '2010-09-17T14:00:00+04:00', order_by => 'start_time', # can also be: 'last_modified' or 'updated' max_results => 20, offset => 10, # skip first 10 entries );
destroy()
Removes references to the blog from child entries, so they're no longer circular. Blog object as well as entries can then be garbage-collected.
ATTRIBUTES
title
Title of the blog.
public_url
The human-readable, SEO-friendly URL of the blog.
id_url
The never-changing URL of the blog, based on its numeric ID.
entries
List of blog entries, lazily populated.
AUTHOR
Egor Shipovalov, <kogdaugodno at gmail.com>
BUGS
Please report any bugs or feature requests to bug-net-google-api-blogger at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-Google-Blogger. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Net::Google::Blogger
You can also look for information at:
RT: CPAN's request tracker
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
LICENSE AND COPYRIGHT
Copyright 2010 Egor Shipovalov.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.