Edgewall Software

Changes between Version 26 and Version 27 of TracDev/ComponentArchitecture


Ignore:
Timestamp:
Jul 29, 2011, 2:05:25 PM (13 years ago)
Author:
anonymous user
Comment:

typo (closes #10291)

Legend:

Unmodified
Added
Removed
Modified
  • TracDev/ComponentArchitecture

    v26 v27  
    206206This means that the extension point methods (like `todo_added` in the example above) of a ''disabled'' component (that implements a certain extension point interface) ''won't be called''. Note also that even disabled components can be activated (instantiated), but only by constructing them manually (as mentioned before).
    207207
    208 Enabling a component is done in the `[components]` section of [wiki:TracIni trac.ini]. This is implemented in `trac.env.Environment.is_component_enabled()`. Whether a component is enabled or disabled is check ''only once'' when an extension point that component implements is first used.
     208Enabling a component is done in the `[components]` section of [wiki:TracIni trac.ini]. This is implemented in `trac.env.Environment.is_component_enabled()`. Whether a component is enabled or disabled is checked ''only once'' when an extension point that component implements is first used.
    209209
    210210''Miscellaneous notes:''