X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass.pm;h=dc4123a38534eb8a0b8021d8ad9e0976936879fa;hb=16120b2279b09ec32c1c7801400809137fb0e843;hp=8cf7971f8f08cc1a964592fa0fd4df61fb4f3e9a;hpb=582fe49d7d17c4d61a1f3d4537ac7746272eec0e;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index 8cf7971..dc4123a 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -108,8 +108,6 @@ The community can be found via: =over -=item * Web Site: L - =item * IRC: irc.perl.org#dbix-class =for html @@ -117,13 +115,30 @@ The community can be found via: =item * Mailing list: L +=item * Twitter L + +=item * Web Site: L + =item * RT Bug Tracker: L -=item * gitweb: L +=back + +The project is maintained in a git repository, accessible from the following sources: + +=over =item * git: L -=item * twitter L +=item * gitweb: L + +=item * github mirror: L + +=item * authorized committers: L + +=item * Travis-CI log: L + +=for html + =back @@ -215,7 +230,7 @@ Then you can use these classes in your application's code: my $cd = $millennium_cds_rs->next; # SELECT ... FROM cds JOIN artists ... my $cd_artist_name = $cd->artist->name; # Already has the data so no 2nd query - # new() makes a DBIx::Class::Row object but doesnt insert it into the DB. + # new() makes a Result object but doesnt insert it into the DB. # create() is the same as new() then insert(). my $new_cd = $schema->resultset('CD')->new({ title => 'Spoon' }); $new_cd->artist($cd->artist);