success, FINALLY!!!
 
I followed the mypage plugin example. Renamed the subfolder and .py file to be 
identical to the class: HelloWorldPlugin (not sure if necessary) 
updated __init__.py accordingly and it seems you need folder name DOT class (or 
.py file?) name in the entry points line in setup.py:
 
from setuptools import setup
PACKAGE = 'TracHelloWorldPlugin'
VERSION = '0.1'
setup(name=PACKAGE,
version=VERSION,
packages=['HelloWorldPlugin'],
entry_points={'trac.plugins': 'helloworld = HelloWorldPlugin.HelloWorldPlugin'},
)
 
And now I have the hello tab. 
 
In this case the trac.log file was not very helpful. Also with the egg I 
created yesterdag it mentioned the plugin was added and loaded.
 
 
Still I have no clue what is really going on but it is nice that I can let 
something happen now :-)
                                          
_______________________________________________
th-users mailing list
th-users@lists.trac-hacks.org
https://lists.trac-hacks.org/mailman/listinfo/th-users

Reply via email to