Changes between Version 3 and Version 4 of ComponentDependencyPlugin


Ignore:
Timestamp:
Sep 22, 2009, 4:47:07 PM (15 years ago)
Author:
Jeff Hammel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ComponentDependencyPlugin

    v3 v4  
    33== Description ==
    44
    5 ComponentDependencyPlugin allows a `Component` to state a dependency on other plugin, via the `IRequireComponents` interface:
     5ComponentDependencyPlugin allows a [trac:TracDev/ComponentArchitecture Component] to state a dependency on another `Component`, via the `IRequireComponents` interface from `componentdependencies.interface`:
    66
    77{{{
     
    2727== Source ==
    2828
    29 You can check out ComponentDependencyPlugin from [http://trac-hacks.org/svn/componentdependencyplugin here] using Subversion, or [source:componentdependencyplugin browse the source] with Trac.
     29You can check out ComponentDependencyPlugin from [http://trac-hacks.org/svn/componentdependencyplugin/0.11 here] using Subversion, or [source:componentdependencyplugin browse the source] with Trac.
    3030
    3131== Example ==
    3232
    33 The files in `test.py` illustrate how to use the plugin.  Enable the `ComponentDependencyPlugin` (`componentdependencies.componentdependency.componentdependencyplugin = enabled`) and enable the `TestDependencyPlugin` (`componentdependencies.test.testdependencyplugin = enabled`).  Trac will then require an upgrade.  The `FooBarTest` component will be enabled in the upgrade.
     33The files in [source:componentdependencyplugin/0.11/componentdependencies/test.py test.py] illustrate how to use the plugin.  Enable the `ComponentDependencyPlugin` (`componentdependencies.componentdependency.componentdependencyplugin = enabled`) and enable the `TestDependencyPlugin` (`componentdependencies.test.testdependencyplugin = enabled`).  Trac will then require an upgrade.  The `FooBarTest` component will be enabled in the upgrade.
    3434
    35 
     35You can also enable the AutoUpgradePlugin prior to this to allow for automatic upgrades.
    3636
    3737== Recent Changes ==