How do I edit project components in TRAC - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T02:44:49Zhttp://stackoverflow.com/feeds/question/572677http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/572677/how-do-i-edit-project-components-in-trac0How do I edit project components in TRACJosef Sábl2009-02-21T09:24:13Z2009-02-24T09:30:28Z
<p>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.</p>
<p>How do I edit this list? How do I add more components to the project?</p>
http://stackoverflow.com/questions/572677/how-do-i-edit-project-components-in-trac/572686#5726861Answer by kmkaplan for How do I edit project components in TRACkmkaplan2009-02-21T09:33:22Z2009-02-21T09:33:22Z<pre>
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
</pre>
http://stackoverflow.com/questions/572677/how-do-i-edit-project-components-in-trac/572708#5727082Answer by Manni for How do I edit project components in TRACManni2009-02-21T09:53:36Z2009-02-24T09:30:28Z<p>The easiest way to achieve this is via the <a href="http://trac.edgewall.org/wiki/WebAdmin" rel="nofollow">WebAdmin plugin</a>. You can easily edit your components, ticket types, severtities, etc from there. </p>
<p>As Oliver Giesen informs us in his comment: With trac 0.11 and higher, the WebAdmin plugin is already part of the standard install.</p>