Net::Trac::TicketHistory(3pm) User Contributed Perl Documentation Net::Trac::TicketHistory(3pm)

Net::Trac::TicketHistory - A Trac ticket's history

    my $history = Net::Trac::TicketHistory->new( connection => $trac );
    $history->load( 13 );
    # Print the authors of all the changes to ticket #13
    for ( @{ $history->entries } ) {
        print $_->author, "\n";
    }

This class represents a Trac ticket's history and is really just a collection of Net::Trac::TicketHistoryEntries.

Returns the ID of the ticket whose history this object represents.

Returns an arrayref of Net::Trac::TicketHistoryEntrys.

Loads the history of the specified ticket.

Copyright 2008-2009 Best Practical Solutions.

This package is licensed under the same terms as Perl 5.8.8.

2022-12-12 perl v5.36.0