Edgewall Software

Changes between Version 13 and Version 14 of TracDev/PluginDevelopment


Ignore:
Timestamp:
Jul 4, 2006, 4:26:06 PM (18 years ago)
Author:
anonymous
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracDev/PluginDevelopment

    v13 v14  
    8888This assumes that the `HelloWorldPlugin` example above is defined in the module `helloworld.py` in the `myplugs` package. The entry point ''name'' (in this example “helloworld”) is required by the Python egg runtime, but not currently used by Trac. In most cases, you can simply use the qualified module name there.
    8989
    90   ''For backwards-compatibility reasons, Trac still supports an alternative to entry points: you can have a file named `trac_plugin.txt` in the `EGG-INFO` directory. This file should contain the names of all modules that need to be imported by Trac to register your components. Note that this method is '''deprecated''' and will be removed in a future version of Trac (probably as soon as [milestone:0.11].''
     90  ''For backwards-compatibility reasons, Trac still supports an alternative to entry points: you can have a file named `trac_plugin.txt` in the `EGG-INFO` directory. This file should contain the names of all modules that need to be imported by Trac to register your components. Note that this method is '''deprecated''' and will be removed in a future version of Trac (probably as soon as [milestone:0.11]).''
    9191
    9292== Plugin deployment ==