Author: rjollos
Date: Sat Jul 13 07:06:34 2013
New Revision: 1502757
URL: http://svn.apache.org/r1502757
Log:
Package `bhrelations.widgets` was not specified in `setup.py`. Fixes #582.
The `TicketRelationsWidget` component was being displayed separate from the
`BloodhoundRelationsPlugin` package because it was not being included in the
egg and was being discovered as a single file plugin by
`trac.loader.get_plugin_info`.
Modified:
bloodhound/trunk/bloodhound_relations/setup.py
Modified: bloodhound/trunk/bloodhound_relations/setup.py
URL:
http://svn.apache.org/viewvc/bloodhound/trunk/bloodhound_relations/setup.py?rev=1502757&r1=1502756&r2=1502757&view=diff
==============================================================================
--- bloodhound/trunk/bloodhound_relations/setup.py (original)
+++ bloodhound/trunk/bloodhound_relations/setup.py Sat Jul 13 07:06:34 2013
@@ -98,6 +98,8 @@ PKG_INFO = {'bhrelations': ('bhrelations
'htdocs/img/*.*', 'htdocs/js/*.js',
'templates/*', 'default-pages/*'],
),
+ 'bhrelations.widgets': (
+ 'bhrelations/widgets', ['templates/*.html']),
'bhrelations.tests': (
'bhrelations/tests', ['data/*.*']),
}