Create, read, and update tickets on a remote trac instance
my $ticket = Net::Trac::Ticket->new( connection => $trac ); $ticket->load( 1 ); print $ticket->summary, "\n";
This class represents a ticket on a remote Trac instance. It provides methods for creating, reading, and updating tickets and their history as well as adding comments and getting attachments. Accept's a timestamp in Trac's somewhat idiosyncratic format and returns a DateTime object
Takes a key \*(C`connection\*(C' with a value of a Net::Trac::Connection. Returns an empty ticket object.
Loads up the ticket with the specified \s-1ID\s0. Returns the ticket \s-1ID\s0 loaded on success and undef on failure.
You should never need to use this method yourself. Loads a ticket from a hashref of data, optionally skipping metadata loading (values of \*(C`valid_*\*(C' accessors).
Creates and loads a new ticket with the values specified. Returns undef on failure and the new ticket \s-1ID\s0 on success.
Updates the current ticket with the specified values.
Returns undef on failure, and the \s-1ID\s0 of the current ticket on success.
Adds a comment to the current ticket. Returns undef on failure, true on success.
Returns a Net::Trac::TicketHistory object for this ticket.
Returns an array or arrayref (depending on context) of history entries which have comments included. This will include history entries representing attachments if they have descriptions.
Attaches the specified \*(C`file\*(C' with an optional \*(C`description\*(C'. Returns undef on failure and the new Net::Trac::TicketAttachment object on success.
Returns an array or arrayref (depending on context) of all the Net::Trac::TicketAttachment objects for this ticket.
Returns a DateTime object
Returns a DateTime object
Returns a list of the basic statuses available for a ticket. Others may be defined by the remote Trac instance, but we have no way of easily getting them.
Returns a list of the valid properties of a ticket.
Adds custom properties to valid properties list.
Returns a list of the valid properties specifiable when creating a ticket.
Returns a list of the valid updatable properties.
These accessors are loaded from the remote Trac instance with the valid values for the properties upon instantiation of a ticket object.
Copyright 2008-2009 Best Practical Solutions.
This package is licensed under the same terms as Perl 5.8.8.