On 8/24/07, aneez_backer <[EMAIL PROTECTED]> wrote: > I am completely new to Python,mod_python and the software Trac.
Welcome :) > Now, the task is to build a plugin that will display the roadmap, timeline > and other details of a project on the same page in a customised tabular > fashion. This would require the plugin to access any project-specific data > that is stored by Trac. Please let me know how I can access those data > through the pluggin.. Data abstraction is typically in a "model" module under a specific subsystem. For example, trac.ticket.model.Milestone contains the data model for a milestone. More complex systems also have supporting modules. eg. the Wiki has trac.wiki.formatter for formatting Wiki text. Really, the best way to learn is by exploring the source. Trac's codebase is fairly well laid out. I'd also recommend reading the documentation under: http://trac.edgewall.org/wiki/TracDev -- Evolution: Taking care of those too stupid to take care of themselves. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Development" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-dev?hl=en -~----------~----~----~----~------~----~------~--~---
