[Bps-public-commit] r19673 - in Net-Google-Code/branches/write/lib/Net/Google: . Code Code/Issue

sunnavy at bestpractical.com sunnavy at bestpractical.com
Thu May 14 22:49:42 EDT 2009


Author: sunnavy
Date: Thu May 14 22:49:42 2009
New Revision: 19673

Modified:
   Net-Google-Code/branches/write/lib/Net/Google/Code.pm
   Net-Google-Code/branches/write/lib/Net/Google/Code/Download.pm
   Net-Google-Code/branches/write/lib/Net/Google/Code/Issue.pm
   Net-Google-Code/branches/write/lib/Net/Google/Code/Issue/Attachment.pm
   Net-Google-Code/branches/write/lib/Net/Google/Code/Issue/Comment.pm
   Net-Google-Code/branches/write/lib/Net/Google/Code/Issue/Search.pm
   Net-Google-Code/branches/write/lib/Net/Google/Code/Wiki.pm
   Net-Google-Code/branches/write/lib/Net/Google/Code/Wiki/Comment.pm

Log:
with HTMLTree role for nearly all classes

Modified: Net-Google-Code/branches/write/lib/Net/Google/Code.pm
==============================================================================
--- Net-Google-Code/branches/write/lib/Net/Google/Code.pm	(original)
+++ Net-Google-Code/branches/write/lib/Net/Google/Code.pm	Thu May 14 22:49:42 2009
@@ -2,7 +2,7 @@
 
 use Moose;
 with 'Net::Google::Code::Role::Fetchable', 'Net::Google::Code::Role::URL',
-  'Net::Google::Code::Role::Pageable';
+  'Net::Google::Code::Role::Pageable', 'Net::Google::Code::Role::HTMLTree';
 
 our $VERSION = '0.05';
 

Modified: Net-Google-Code/branches/write/lib/Net/Google/Code/Download.pm
==============================================================================
--- Net-Google-Code/branches/write/lib/Net/Google/Code/Download.pm	(original)
+++ Net-Google-Code/branches/write/lib/Net/Google/Code/Download.pm	Thu May 14 22:49:42 2009
@@ -3,7 +3,8 @@
 use Moose;
 use Params::Validate qw(:all);
 
-with 'Net::Google::Code::Role::Fetchable', 'Net::Google::Code::Role::URL';
+with 'Net::Google::Code::Role::Fetchable', 'Net::Google::Code::Role::URL',
+  'Net::Google::Code::Role::HTMLTree';
 
 has 'project' => (
     isa      => 'Str',

Modified: Net-Google-Code/branches/write/lib/Net/Google/Code/Issue.pm
==============================================================================
--- Net-Google-Code/branches/write/lib/Net/Google/Code/Issue.pm	(original)
+++ Net-Google-Code/branches/write/lib/Net/Google/Code/Issue.pm	Thu May 14 22:49:42 2009
@@ -1,7 +1,8 @@
 package Net::Google::Code::Issue;
 use Moose;
 use Params::Validate qw(:all);
-with 'Net::Google::Code::Role::Fetchable', 'Net::Google::Code::Role::URL';
+with 'Net::Google::Code::Role::Fetchable', 'Net::Google::Code::Role::URL',
+     'Net::Google::Code::Role::HTMLTree';
 use Net::Google::Code::Issue::Comment;
 use Net::Google::Code::Issue::Attachment;
 

Modified: Net-Google-Code/branches/write/lib/Net/Google/Code/Issue/Attachment.pm
==============================================================================
--- Net-Google-Code/branches/write/lib/Net/Google/Code/Issue/Attachment.pm	(original)
+++ Net-Google-Code/branches/write/lib/Net/Google/Code/Issue/Attachment.pm	Thu May 14 22:49:42 2009
@@ -1,6 +1,6 @@
 package Net::Google::Code::Issue::Attachment;
 use Moose;
-with 'Net::Google::Code::Role::Fetchable';
+with 'Net::Google::Code::Role::Fetchable', 'Net::Google::Code::Role::HTMLTree';
 use Scalar::Util qw/blessed/;
 
 has 'name'    => ( isa => 'Str', is => 'rw' );

Modified: Net-Google-Code/branches/write/lib/Net/Google/Code/Issue/Comment.pm
==============================================================================
--- Net-Google-Code/branches/write/lib/Net/Google/Code/Issue/Comment.pm	(original)
+++ Net-Google-Code/branches/write/lib/Net/Google/Code/Issue/Comment.pm	Thu May 14 22:49:42 2009
@@ -1,6 +1,7 @@
 package Net::Google::Code::Issue::Comment;
 use Moose;
 use Net::Google::Code::Issue::Attachment;
+with 'Net::Google::Code::Role::HTMLTree';
 
 has 'updates' => ( isa => 'HashRef', is => 'rw', default => sub { {} } );
 has 'author'  => ( isa => 'Str',     is => 'rw' );

Modified: Net-Google-Code/branches/write/lib/Net/Google/Code/Issue/Search.pm
==============================================================================
--- Net-Google-Code/branches/write/lib/Net/Google/Code/Issue/Search.pm	(original)
+++ Net-Google-Code/branches/write/lib/Net/Google/Code/Issue/Search.pm	Thu May 14 22:49:42 2009
@@ -3,7 +3,8 @@
 use Params::Validate qw(:all);
 use Moose::Util::TypeConstraints;
 with 'Net::Google::Code::Role::URL',
-  'Net::Google::Code::Role::Fetchable', 'Net::Google::Code::Role::Pageable';
+  'Net::Google::Code::Role::Fetchable', 'Net::Google::Code::Role::Pageable',
+  'Net::Google::Code::Role::HTMLTree';
 
 has 'project' => (
     isa      => 'Str',

Modified: Net-Google-Code/branches/write/lib/Net/Google/Code/Wiki.pm
==============================================================================
--- Net-Google-Code/branches/write/lib/Net/Google/Code/Wiki.pm	(original)
+++ Net-Google-Code/branches/write/lib/Net/Google/Code/Wiki.pm	Thu May 14 22:49:42 2009
@@ -2,7 +2,8 @@
 
 use Moose;
 use Params::Validate qw(:all);
-with 'Net::Google::Code::Role::Fetchable', 'Net::Google::Code::Role::URL';
+with 'Net::Google::Code::Role::Fetchable', 'Net::Google::Code::Role::URL',
+  'Net::Google::Code::Role::HTMLTree';
 
 has 'project' => (
     isa      => 'Str',

Modified: Net-Google-Code/branches/write/lib/Net/Google/Code/Wiki/Comment.pm
==============================================================================
--- Net-Google-Code/branches/write/lib/Net/Google/Code/Wiki/Comment.pm	(original)
+++ Net-Google-Code/branches/write/lib/Net/Google/Code/Wiki/Comment.pm	Thu May 14 22:49:42 2009
@@ -2,6 +2,7 @@
 
 use Moose;
 use Params::Validate qw(:all);
+with 'Net::Google::Code::Role::HTMLTree';
 
 has 'content' => (
     isa => 'Str',



More information about the Bps-public-commit mailing list