Modify ↓
Opened 14 years ago
Last modified 14 years ago
#8666 new enhancement
Need a method to get the references (or called links) of a ticket
Reported by: | sean | Owned by: | osimons |
---|---|---|---|
Priority: | normal | Component: | XmlRpcPlugin |
Severity: | normal | Keywords: | ticket references |
Cc: | Trac Release: | 0.12 |
Description
Tickets are usually organized in a hierarchy in software development, such as Requirement->Feature Story->Task. For a task ticket, I want to retrieve its parent feature story ticket. Currently there is no way to achieve this via XMLRPC API.
Attachments (0)
Change History (3)
comment:1 Changed 14 years ago by
comment:2 Changed 14 years ago by
Keywords: | references added; links removed |
---|
Is there any way to get the references of the ticket through XMLRPC?
comment:3 Changed 14 years ago by
ticket.query()
is available and provides you with the ticket IDs. If you have the ID you have the reference too as that is just .../ticket/<id>
. Or do I not understand what you are asking?
Note: See
TracTickets for help on using
tickets.
Correct. Seeing that Trac ticket system does not know anything about 'parent' or 'hierarchy' or any similar concept. You are likely using some other plugin that implements this, right?