Modify ↓
Opened 15 years ago
Closed 15 years ago
#6734 closed defect (fixed)
*.js files are not included
Reported by: | anonymous | Owned by: | Jeff Hammel |
---|---|---|---|
Priority: | high | Component: | TicketSubmitPolicyPlugin |
Severity: | critical | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
I try ticketsubmitpolicyplugin but it didn't work.
I aware *.js files are not included in package. After following modification, it works fine.
=================================================================== --- setup.py (revision 7733) +++ setup.py (working copy) @@ -19,7 +19,7 @@ keywords='trac plugin', license="GPL", packages=['ticketsubmitpolicy'], - package_data={'ticketsubmitpolicy' : ['templates/*.html']}, + package_data={'ticketsubmitpolicy' : ['templates/*.html','htdocs/js/*.js' ]}, zip_safe=False, install_requires=['simplejson'], entry_points = """
regards,
Takashi Okamoto
Attachments (0)
Note: See
TracTickets for help on using
tickets.
(In [7747]) include JS files and depend on Trac; fixes #6734