Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I edit project components in TRAC

Tags:

trac

When creating New Ticket in the TRAC it shows a selectbox for component in the Ticket Properties. I only have two dummy options: component1 and component2.

How do I edit this list? How do I add more components to the project?

like image 656
Josef Sábl Avatar asked Feb 21 '09 09:02

Josef Sábl


2 Answers

The easiest way to achieve this is via the WebAdmin plugin. You can easily edit your components, ticket types, severtities, etc from there.

As Oliver Giesen informs us in his comment: With trac 0.11 and higher, the WebAdmin plugin is already part of the standard install.

like image 133
innaM Avatar answered Oct 31 '22 15:10

innaM


trac-admin component list
    -- Show available components
trac-admin component add  
    -- Add a new component
trac-admin component rename  
    -- Rename a component
trac-admin component remove 
    -- Remove/uninstall component
trac-admin component chown  
    -- Change component ownership
like image 8
kmkaplan Avatar answered Oct 31 '22 16:10

kmkaplan