Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

net::google::code::issue::attachment(3pm) [debian man page]

Net::Google::Code::Issue::Attachment(3pm)		User Contributed Perl Documentation		 Net::Google::Code::Issue::Attachment(3pm)

NAME
Net::Google::Code::Issue::Attachment - Issue's Attachment DESCRIPTION
This class represents a single attachment for an issue or an issue's comment. INTERFACE
parse( HTML::Element or [ HTML::Element, HTML::Element ] or html segment string ) there're 2 trs that represent an attachment like the following: <tr><td rowspan="2" width="24"><a href="http://chromium.googlecode.com/issues/attachment?aid=-1323983749556004507&amp;name=proxy_settings.png" target="new"><img width="16" height="16" src="/hosting/images/generic.gif" border="0" ></a></td> <td><b>proxy_settings.png</b></td></tr> <tr><td>14.3 KB <a href="http://chromium.googlecode.com/issues/attachment?aid=-1323983749556004507&amp;name=proxy_settings.png">Download</a></td></tr> parse_attachments( HTML::Element or html segment string ) given the <div class="attachments">...</div> or its equivalent HTML::Element object, return a list of Net::Google::Code::Attachment objects. name content size url id content content_type AUTHOR
sunnavy "<sunnavy@bestpractical.com>" LICENCE AND COPYRIGHT
Copyright 2008-2010 Best Practical Solutions. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2010-04-07 Net::Google::Code::Issue::Attachment(3pm)

Check Out this Related Man Page

Net::Google::Code::Issue(3pm)				User Contributed Perl Documentation			     Net::Google::Code::Issue(3pm)

NAME
Net::Google::Code::Issue - Google Code Issue SYNOPSIS
use Net::Google::Code::Issue; my $issue = Net::Google::Code::Issue->new( project => 'net-google-code' ); $issue->load(42); DESCRIPTION
ATTRIBUTES
project project name email, password user's email and password id status owner reporter reported merged stars closed cc summary description labels comments attachments INTERFACE
load parse updated the last comment's date. create comment, summary, status, owner, cc, labels, files. update comment, summary, status, owner, merge_into, cc, labels, blocked_on, files. list( q => '', can => '', author => '', id => '', label => '', max_results => '', owner => '', published_min => '', published_max => '', updated_min => '', updated_max => '', start_index => '' ) google's api way to get/search issues return a list of loaded issues in list context, a ref to the list otherwise. load_comments google's api way to get and load comments( no scraping is done here ) parse_hybrid when $USE_HYBRID is true, we will try to load issue with the google's official api, but as the api is not complete, we still need to do scraping to load something( e.g. attachments ), this method is used to do this. AUTHOR
sunnavy "<sunnavy@bestpractical.com>" LICENCE AND COPYRIGHT
Copyright 2008-2010 Best Practical Solutions. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2010-04-28 Net::Google::Code::Issue(3pm)
Man Page