Edgewall Software

Changes between Version 2 and Version 3 of TracDev/PluginDevelopment/ExtensionPoints


Ignore:
Timestamp:
Feb 26, 2012, 7:42:06 AM (12 years ago)
Author:
Peter Suter
Comment:

Use fragment identifier search links from #10284

Legend:

Unmodified
Added
Removed
Modified
  • TracDev/PluginDevelopment/ExtensionPoints

    v2 v3  
    77Below you find a still incomplete list of extension points available in the current trac release ([milestone:0.12 0.12]). If you want to contribute documentation on any of the below described extension point interfaces, feel free to add the documentation. Please use the template [wiki:TracDev/PluginDevelopment/ExtensionPointDocumentationTemplate] when authoring new documentation.
    88
    9 {{{#!div style="background-color: #ffc"
    10 If the links to the interfaces point to the correct lines, they should also include a precise revision, as the line numbers will certainly change in the future -- rblank
    11 
    12 Correct, I removed the line pointers from here since that would be way too much work to maintain in the future -- cklein
    13 
    14 How about extending the source formatter so that it will generate named anchors so that we could just !source:/trunk/trac/env.py#IEnvironmentSetupParticipant instead? Will make this a feature request. -- cklein
    15  Is there a ticket for this? I'd have a patch that allows linking to #?IEnvironmentSetupParticipant. I used !JavaScript to find the first relevant line though, so no real anchors are needed. -- psuter
    16    no ticket yet; the feature would be very interesting to have, however `?...` suggests you're searching from the end of the file to the top while `/...` would instead suggest you're looking forward (having both would be even better of course ;-) ) -- cboos
    17      Now there's #10284 -- psuter
    18 }}}
    19 
    209||='''Extension Point Interface'''[[br]]'''Source''' =||='''Description''' =||
    21 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.admin.api.IAdminCommandProvider trac.admin.api.IAdminCommandProvider][[br]]([source:/trunk/trac/admin/api.py source])||Allows plugins to add additional commands to the trac-admin console command.||
    22 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.admin.api.IAdminPanelProvider trac.admin.api.IAdminPanelProvider][[br]]([source:trunk/trac/admin/api.py source])||Allows plugins to add additional admin panels to the web-based administration module.||
    23 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.attachment.IAttachmentChangeListener trac.attachment.IAttachmentChangeListener][[br]]([source:trunk/trac/attachment.py source])||Observe attachment add, delete and reparent operations.||
    24 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.attachment.IAttachmentManipulator trac.attachment.IAttachmentManipulator][[br]]([source:trunk/trac/attachment.py source])||Validate uploaded attachments before being stored in database.||
    25 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.attachment.ILegacyAttachmentPolicyDelegate trac.attachment.ILegacyAttachmentPolicyDelegate][[br]]([source:trunk/trac/attachment.py source])||Participate in legacy permission checking for attachments.||
    26 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.db.api.IDatabaseConnector trac.db.api.IDatabaseConnector][[br]]([source:/trunk/trac/db/api.py source])||By implementing this interface you can add additional database backends to the system. Currently available are backends for MySQL, PostgreSQL and SQLITE2/3.||
    27 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.env.IEnvironmentSetupParticipant trac.env.IEnvironmentSetupParticipant][[br]]([source:trunk/trac/env.py source])||Plugins that provide their own data models must implement this interface to be able to create the required tables in the database on either the creation of a new environment, or during the upgrade of an existing environment.||
    28 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.env.ISystemInfoProvider trac.env.ISystemInfoProvider][[br]]([source:trunk/trac/env.py source])||Provide system information displayed on the "About Trac" page and in internal error reports.||
    29 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.mimeview.api.IContentConverter trac.mimeview.api.IContentConverter][[br]]([source:trunk/trac/mimeview/api.py source])||Allows plugins to implement conversion strategies for arbitrary content types. (NOTE: API is likely to change in the future)||
    30 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.mimeview.api.IHTMLPreviewAnnotator trac.mimeview.api.IHTMLPreviewAnnotator][[br]]([source:trunk/trac/mimeview/api.py source])||Allows plugins to add additional information to an XHTML representation of a given file, for example meta data on the file and so on.||
    31 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.mimeview.api.IHTMLPreviewRenderer trac.mimeview.api.IHTMLPreviewRenderer][[br]]([source:trunk/trac/mimeview/api.py source])||Allows plugins to provide support for rendering specific content of a specific type as HTML (used for TracSyntaxColoring and image preview).||
    32 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.notification.IEmailSender trac.notification.IEmailSender][[br]]([source:trunk/trac/notification.py source])||Implement this interface to be able to send notification mails.||
    33 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.perm.IPermissionGroupProvider trac.perm.IPermissionGroupProvider][[br]]([source:trunk/trac/perm.py source])||Implement this extension point interface when you can provide information on groups that a given user is a member of.||
    34 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.perm.IPermissionPolicy trac.perm.IPermissionPolicy][[br]]([source:trunk/trac/perm.py source])||By implementing this interface you can do more finely grained permission checks.||
    35 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.perm.IPermissionRequestor trac.perm.IPermissionRequestor][[br]]([source:trunk/trac/perm.py source])||Plugins can use this extension point to define additional "actions", or permission roles, for the permission system.||
    36 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.perm.IPermissionStore trac.perm.IPermissionStore][[br]]([source:trunk/trac/perm.py source])||Plugins can use this extension point to implement a storage for permissions and also to handle user authorization.||
    37 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.prefs.api.IPreferencePanelProvider trac.prefs.api.IPreferencePanelProvider][[br]]([source:trunk/trac/api.py source])||Allows plugins to add additional preferences panels to the user's preferences page.||
    38 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.resource.IResourceManager trac.resource.IResourceManager][[br]]([source:trunk/trac/resource.py source])||Allows plugins to take over full control of the realms that they provide, incl. also introducing new resource types to the system.||
    39 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.search.api.ISearchSource trac.search.api.ISearchSource][[br]]([source:trunk/trac/search/api.py source])||Allows plugins to provide additional searchable (re)sources to the system.||
    40 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.ticket.api.IMilestoneChangeListener trac.ticket.api.IMilestoneChangeListener][[br]]([source:trunk/trac/ticket/api.py source])||Allows plugins to listen on changes to either existing or newly created milestones.||
    41 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.ticket.api.ITicketActionController trac.ticket.api.ITicketActionController][[br]]([source:trunk/trac/ticket/api.py source])||Allows plugins to participate in a ticket's workflow.||
    42 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.ticket.api.ITicketChangeListener trac.ticket.api.ITicketChangeListener][[br]]([source:trunk/trac/ticket/api.py source])||Extension point interface for components that require notification on when tickets are created, modified, or deleted.||
    43 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.ticket.api.ITicketManipulator trac.ticket.api.ITicketManipulator][[br]]([source:trunk/trac/ticket/api.py source])||Allows plugins to both prepare tickets on creation and also to validate them prior to that they get stored in the database.||
    44 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.ticket.roadmap.ITicketGroupStatsProvider trac.ticket.roadmap.ITicketGroupStatsProvider][[br]]([source:trunk/trac/ticket/roadmap.py source])||Allows plugins to implement their own scheme of ticket stats, and provide that to the system via the !RoadmapModule.||
    45 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.timeline.ITimelineEventProvider trac.timeline.ITimelineEventProvider][[br]]([source:trunk/trac/timeline/api.py source])||Allows plugins to contribute events to the [wiki:TracTimeline timeline].||
    46 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.versioncontrol.api.IRepositoryConnector trac.versioncontrol.api.IRepositoryConnector][[br]]([source:trunk/trac/versioncontrol/api.py source])||Support a new version control system.||
    47 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.versioncontrol.api.IRepositoryChangeListener trac.versioncontrol.api.IRepositoryChangeListener][[br]]([source:trunk/trac/versioncontrol/api.py@9854 source])||Components implementing this interface are notified when new changesets are added to a repository, and when metadata for changesets is modified. [http://trac.edgewall.org/wiki/TracDev/ApiChanges/0.12#IRepositoryChangeListener more here]||
    48 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.versioncontrol.api.IRepositoryProvider trac.versioncontrol.api.IRepositoryProvider][[br]]([source:trunk/trac/versioncontrol/api.py source])||Provide information about known version control repositories.||
    49 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.versioncontrol.web_ui.browser.IPropertyRenderer trac.versioncontrol.web_ui.browser.IPropertyRenderer][[br]]([source:trunk/trac/versioncontrol/web_ui/browser.py source])||Render node properties in TracBrowser and TracChangeset views.||
    50 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.versioncontrol.web_ui.changeset.IPropertyDiffRenderer trac.versioncontrol.web_ui.changeset.IPropertyDiffRenderer][[br]]([source:trunk/trac/versioncontrol/web_ui/changeset.py source])||Render differences between node properties in TracBrowser and TracChangeset views.||
    51 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.web.api.IAuthenticator trac.web.api.IAuthenticator][[br]]([source:trunk/trac/web/api.py source])||Allows plugins to authenticate users and HTTP sessions thereof. The first authenticator able to authenticate a user is the authoritative authenticator, meaning that other authenticators available in the system will not be called. Users that cannot be authenticated by the request and an associated session thereof are called 'anonymous'.||
    52 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.web.api.IRequestFilter trac.web.api.IRequestFilter][[br]]([source:trunk/trac/web/api.py source])||Allows plugins to both preprocess and postprocess HTTP requests.||
    53 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.web.api.IRequestHandler trac.web.api.IRequestHandler][[br]]([source:trunk/trac/web/api.py source])||Allows plugins to process HTTP requests.||
    54 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.web.api.ITemplateStreamFilter trac.web.api.ITemplateStreamFilter][[br]]([source:trunk/trac/web/api.py source])||Allows plugins to filter existing [http://genshi.edgewall.org. Genshi] streams prior to that the template will be rendered.||
    55 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.web.chrome.INavigationContributor trac.web.chrome.INavigationContributor][[br]]([source:trunk/trac/web/chrome.py source])||Allows plugins to extend the navigation menus of the web interface.||
    56 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.web.chrome.ITemplateProvider trac.web.chrome.ITemplateProvider][[br]]([source:trunk/trac/web/chrome.py source])||Extension point interface for components that provide their own templates and accompanying static resources.||
    57 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.wiki.api.IWikiChangeListener trac.wiki.api.IWikiChangeListener][[br]]([source:trunk/trac/wiki/api.py source])||Allows plugins to observe creation, modification and renaming (since trac-0.12), and deletion of wiki pages.||
    58 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.wiki.api.IWikiMacroProvider trac.wiki.api.IWikiMacroProvider][[br]]([source:trunk/trac/wiki/api.py source])||Allows plugins to contribute WikiMacros to Trac.||
    59 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.wiki.api.IWikiPageManipulator trac.wiki.api.IWikiPageManipulator][[br]]([source:trunk/trac/wiki/api.py source])||Allows plugins to validate wiki pages prior to that they get stored in the database.||
    60 ||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.wiki.api.IWikiSyntaxProvider trac.wiki.api.IWikiSyntaxProvider][[br]]([source:trunk/trac/wiki/api.py source])||Plugins can extend this extension point to add custom syntax rules to the wiki formatting system. In particular, this allows registration of additional TracLinks types.||
     10||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.admin.api.IAdminCommandProvider trac.admin.api.IAdminCommandProvider][[br]]([source:/trunk/trac/admin/api.py#/IAdminCommandProvider source])||Allows plugins to add additional commands to the trac-admin console command.||
     11||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.admin.api.IAdminPanelProvider trac.admin.api.IAdminPanelProvider][[br]]([source:trunk/trac/admin/api.py#/IAdminPanelProvider source])||Allows plugins to add additional admin panels to the web-based administration module.||
     12||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.attachment.IAttachmentChangeListener trac.attachment.IAttachmentChangeListener][[br]]([source:trunk/trac/attachment.py#/IAttachmentChangeListener source])||Observe attachment add, delete and reparent operations.||
     13||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.attachment.IAttachmentManipulator trac.attachment.IAttachmentManipulator][[br]]([source:trunk/trac/attachment.py#/IAttachmentManipulator source])||Validate uploaded attachments before being stored in database.||
     14||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.attachment.ILegacyAttachmentPolicyDelegate trac.attachment.ILegacyAttachmentPolicyDelegate][[br]]([source:trunk/trac/attachment.py#/ILegacyAttachmentPolicyDelegate source])||Participate in legacy permission checking for attachments.||
     15||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.db.api.IDatabaseConnector trac.db.api.IDatabaseConnector][[br]]([source:/trunk/trac/db/api.py#/IDatabaseConnector source])||By implementing this interface you can add additional database backends to the system. Currently available are backends for MySQL, PostgreSQL and SQLITE2/3.||
     16||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.env.IEnvironmentSetupParticipant trac.env.IEnvironmentSetupParticipant][[br]]([source:trunk/trac/env.py#/IEnvironmentSetupParticipant source])||Plugins that provide their own data models must implement this interface to be able to create the required tables in the database on either the creation of a new environment, or during the upgrade of an existing environment.||
     17||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.env.ISystemInfoProvider trac.env.ISystemInfoProvider][[br]]([source:trunk/trac/env.py#/ISystemInfoProvider source])||Provide system information displayed on the "About Trac" page and in internal error reports.||
     18||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.mimeview.api.IContentConverter trac.mimeview.api.IContentConverter][[br]]([source:trunk/trac/mimeview/api.py#/IContentConverter source])||Allows plugins to implement conversion strategies for arbitrary content types. (NOTE: API is likely to change in the future)||
     19||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.mimeview.api.IHTMLPreviewAnnotator trac.mimeview.api.IHTMLPreviewAnnotator][[br]]([source:trunk/trac/mimeview/api.py#/IHTMLPreviewAnnotator source])||Allows plugins to add additional information to an XHTML representation of a given file, for example meta data on the file and so on.||
     20||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.mimeview.api.IHTMLPreviewRenderer trac.mimeview.api.IHTMLPreviewRenderer][[br]]([source:trunk/trac/mimeview/api.py#/IHTMLPreviewRenderer source])||Allows plugins to provide support for rendering specific content of a specific type as HTML (used for TracSyntaxColoring and image preview).||
     21||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.notification.IEmailSender trac.notification.IEmailSender][[br]]([source:trunk/trac/notification.py#/IEmailSender source])||Implement this interface to be able to send notification mails.||
     22||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.perm.IPermissionGroupProvider trac.perm.IPermissionGroupProvider][[br]]([source:trunk/trac/perm.py#/IPermissionGroupProvider source])||Implement this extension point interface when you can provide information on groups that a given user is a member of.||
     23||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.perm.IPermissionPolicy trac.perm.IPermissionPolicy][[br]]([source:trunk/trac/perm.py#/IPermissionPolicy source])||By implementing this interface you can do more finely grained permission checks.||
     24||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.perm.IPermissionRequestor trac.perm.IPermissionRequestor][[br]]([source:trunk/trac/perm.py#/IPermissionRequestor source])||Plugins can use this extension point to define additional "actions", or permission roles, for the permission system.||
     25||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.perm.IPermissionStore trac.perm.IPermissionStore][[br]]([source:trunk/trac/perm.py#/IPermissionStore source])||Plugins can use this extension point to implement a storage for permissions and also to handle user authorization.||
     26||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.prefs.api.IPreferencePanelProvider trac.prefs.api.IPreferencePanelProvider][[br]]([source:trunk/trac/prefs/api.py#/IPreferencePanelProvider source])||Allows plugins to add additional preferences panels to the user's preferences page.||
     27||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.resource.IResourceManager trac.resource.IResourceManager][[br]]([source:trunk/trac/resource.py#/IResourceManager source])||Allows plugins to take over full control of the realms that they provide, incl. also introducing new resource types to the system.||
     28||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.search.api.ISearchSource trac.search.api.ISearchSource][[br]]([source:trunk/trac/search/api.py#/ISearchSource source])||Allows plugins to provide additional searchable (re)sources to the system.||
     29||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.ticket.api.IMilestoneChangeListener trac.ticket.api.IMilestoneChangeListener][[br]]([source:trunk/trac/ticket/api.py#/IMilestoneChangeListener source])||Allows plugins to listen on changes to either existing or newly created milestones.||
     30||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.ticket.api.ITicketActionController trac.ticket.api.ITicketActionController][[br]]([source:trunk/trac/ticket/api.py#/ITicketActionController source])||Allows plugins to participate in a ticket's workflow.||
     31||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.ticket.api.ITicketChangeListener trac.ticket.api.ITicketChangeListener][[br]]([source:trunk/trac/ticket/api.py#/ITicketChangeListener source])||Extension point interface for components that require notification on when tickets are created, modified, or deleted.||
     32||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.ticket.api.ITicketManipulator trac.ticket.api.ITicketManipulator][[br]]([source:trunk/trac/ticket/api.py#/ITicketManipulator source])||Allows plugins to both prepare tickets on creation and also to validate them prior to that they get stored in the database.||
     33||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.ticket.roadmap.ITicketGroupStatsProvider trac.ticket.roadmap.ITicketGroupStatsProvider][[br]]([source:trunk/trac/ticket/roadmap.py#/ITicketGroupStatsProvider source])||Allows plugins to implement their own scheme of ticket stats, and provide that to the system via the !RoadmapModule.||
     34||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.timeline.ITimelineEventProvider trac.timeline.ITimelineEventProvider][[br]]([source:trunk/trac/timeline/api.py#/ITimelineEventProvider source])||Allows plugins to contribute events to the [wiki:TracTimeline timeline].||
     35||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.versioncontrol.api.IRepositoryConnector trac.versioncontrol.api.IRepositoryConnector][[br]]([source:trunk/trac/versioncontrol/api.py#/IRepositoryConnector source])||Support a new version control system.||
     36||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.versioncontrol.api.IRepositoryChangeListener trac.versioncontrol.api.IRepositoryChangeListener][[br]]([source:trunk/trac/versioncontrol/api.py#/IRepositoryChangeListener source])||Components implementing this interface are notified when new changesets are added to a repository, and when metadata for changesets is modified. [http://trac.edgewall.org/wiki/TracDev/ApiChanges/0.12#IRepositoryChangeListener more here]||
     37||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.versioncontrol.api.IRepositoryProvider trac.versioncontrol.api.IRepositoryProvider][[br]]([source:trunk/trac/versioncontrol/api.py#/IRepositoryProvider source])||Provide information about known version control repositories.||
     38||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.versioncontrol.web_ui.browser.IPropertyRenderer trac.versioncontrol.web_ui.browser.IPropertyRenderer][[br]]([source:trunk/trac/versioncontrol/web_ui/browser.py#/IPropertyRenderer source])||Render node properties in TracBrowser and TracChangeset views.||
     39||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.versioncontrol.web_ui.changeset.IPropertyDiffRenderer trac.versioncontrol.web_ui.changeset.IPropertyDiffRenderer][[br]]([source:trunk/trac/versioncontrol/web_ui/changeset.py#/IPropertyDiffRenderer source])||Render differences between node properties in TracBrowser and TracChangeset views.||
     40||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.web.api.IAuthenticator trac.web.api.IAuthenticator][[br]]([source:trunk/trac/web/api.py#/IAuthenticator source])||Allows plugins to authenticate users and HTTP sessions thereof. The first authenticator able to authenticate a user is the authoritative authenticator, meaning that other authenticators available in the system will not be called. Users that cannot be authenticated by the request and an associated session thereof are called 'anonymous'.||
     41||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.web.api.IRequestFilter trac.web.api.IRequestFilter][[br]]([source:trunk/trac/web/api.py#/IRequestFilter source])||Allows plugins to both preprocess and postprocess HTTP requests.||
     42||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.web.api.IRequestHandler trac.web.api.IRequestHandler][[br]]([source:trunk/trac/web/api.py#/IRequestHandler source])||Allows plugins to process HTTP requests.||
     43||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.web.api.ITemplateStreamFilter trac.web.api.ITemplateStreamFilter][[br]]([source:trunk/trac/web/api.py#/ITemplateStreamFilter source])||Allows plugins to filter existing [http://genshi.edgewall.org. Genshi] streams prior to that the template will be rendered.||
     44||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.web.chrome.INavigationContributor trac.web.chrome.INavigationContributor][[br]]([source:trunk/trac/web/chrome.py#/INavigationContributor source])||Allows plugins to extend the navigation menus of the web interface.||
     45||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.web.chrome.ITemplateProvider trac.web.chrome.ITemplateProvider][[br]]([source:trunk/trac/web/chrome.py#/ITemplateProvider source])||Extension point interface for components that provide their own templates and accompanying static resources.||
     46||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.wiki.api.IWikiChangeListener trac.wiki.api.IWikiChangeListener][[br]]([source:trunk/trac/wiki/api.py#/IWikiChangeListener source])||Allows plugins to observe creation, modification and renaming (since trac-0.12), and deletion of wiki pages.||
     47||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.wiki.api.IWikiMacroProvider trac.wiki.api.IWikiMacroProvider][[br]]([source:trunk/trac/wiki/api.py#/IWikiMacroProvider source])||Allows plugins to contribute WikiMacros to Trac.||
     48||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.wiki.api.IWikiPageManipulator trac.wiki.api.IWikiPageManipulator][[br]]([source:trunk/trac/wiki/api.py#/IWikiPageManipulator source])||Allows plugins to validate wiki pages prior to that they get stored in the database.||
     49||[wiki:TracDev/PluginDevelopment/ExtensionPoints/trac.wiki.api.IWikiSyntaxProvider trac.wiki.api.IWikiSyntaxProvider][[br]]([source:trunk/trac/wiki/api.py#/IWikiSyntaxProvider source])||Plugins can extend this extension point to add custom syntax rules to the wiki formatting system. In particular, this allows registration of additional TracLinks types.||
    6150
    6251