Opened 12 years ago
Last modified 12 years ago
#10898 new defect
TicketSubmitPolicy not firing
Reported by: | Owned by: | Ryan J Ollos | |
---|---|---|---|
Priority: | high | Component: | TicketSubmitPolicyPlugin |
Severity: | critical | Keywords: | ticketsubmitpolicy |
Cc: | sue.sml2006@… | Trac Release: | 0.12 |
Description (last modified by )
I wonder if you could help me out.
I've installed and configured the ticket submit policy plugin ( confirmed in admin console; trac.ini contains config ; server restarted ) that you wrote, but it never fires. There are no relevant logs in the trac.log file and no errors ? Trac simply seems not to be parsing the config and acting upon it.
Snippets from trac.ini
:
ticketsubmitpolicy.policies.ticketexcludes = enabled ticketsubmitpolicy.policies.ticketrequires = enabled ticketsubmitpolicy.ticketsubmitpolicy.ticketsubmitpolicyplugin = enabled [ticket-submit-policy] epic_tickets.condition = type is EPIC epic_tickets.requires = summary, reporter, owner, description
There's really no point in sending you the trac.log as there's nothing relevant in there, however this is the content of the notification email, which clearly shows that the owner and description fields are NULL, where the ticket-submit-policy configuration required them to be present.
epic_tickets.requires = summary, reporter, owner, description
Notification email:
#29: TicketSubmitPoplicy is not firing new EPIC --------------------------------------------------------------------- Summary: TicketSubmitPoplicy is not firing Reporter: hooper_p Owner: (None) Description: (None) Type: EPIC Status: new Milestone: Backlog Resolution: (None) Keywords: (None) Cc: (None) Created: 2013-03-01 10:08:00.420726+00:00 Modified: 2013-03-01 10:08:00.420726+00:00 Due Date: 30.03.2013 Parent: (None) Detected By: (None) Assigned To: (None) Component: cdbcore Detected in sprint: (None) Device Category: Mobile Handset Device Name: HTC ONE Device Operating System: Android 4.0.3 Browser Vendor: Google Browser Name: Chrome Browser Version: 10 Test Type: (None) Trunk Allowed: 1 Added to build: (None) Priority: (None) Steps to reproduce the defect: (None)
Really hope you are able to shed some light on this - I've been to the forums, created tickets etc, but am going nowhere fast !
Thanks
Paul
Attachments (0)
Change History (17)
comment:1 Changed 12 years ago by
comment:2 Changed 12 years ago by
Cc: | sue.sml2006@… added |
---|
comment:3 Changed 12 years ago by
Description: | modified (diff) |
---|
comment:5 follow-up: 11 Changed 12 years ago by
Replying to phooper0001@yahoo.com:
There are no relevant logs in the trac.log file and no errors ?
When you set the logging level to debug, can you see in the logs that the plugin has loaded? See t:TracLogging for more details.
You may have noticed on the project page that this plugin is not maintained, so you are unlikely to get a response from the author or previous maintainers.
comment:6 follow-up: 7 Changed 12 years ago by
That's the problem - there are no logs generated for this plugin :(
Trac.ini :
[logging] log_file = trac.log log_level = DEBUG log_type = file
Are you in a position to help with debugging the problem ?
comment:7 Changed 12 years ago by
Replying to anonymous:
That's the problem - there are no logs generated for this plugin :(
If you don't see any mention TicketSubmitPolicyPlugin in the logs, then the egg is not installed correctly. You should see either Loading or Skipping in the logs. However, you've said that you see the plugin in the admin console, so there must be some mention of it in the log. Maybe look closer ;)
Are you in a position to help with debugging the problem ?
Yes.
comment:8 follow-up: 9 Changed 12 years ago by
On closer look :
trac/env/cdbtest/log $ : ls -1 bitten trac.log trac/env/cdbtest/log $ : grep -i "TicketSubmitPolicyPlugin" * ; echo $? 1 trac/env/cdbtest $ : ls -1 plugins/*Submit* plugins/TicketSubmitPolicy-0.8.1-py2.6.egg
trac.ini:
ticketsubmitpolicy.policies.ticketexcludes = enabled ticketsubmitpolicy.policies.ticketrequires = enabled ticketsubmitpolicy.ticketsubmitpolicy.ticketsubmitpolicyplugin = enabled [ticket-submit-policy] policy1.condition = type is EPIC policy1.requires = description
STILL NO LOG ENTRIES ! Any other suggestions to try ?
comment:9 Changed 12 years ago by
Replying to anonymous:
STILL NO LOG ENTRIES ! Any other suggestions to try ?
I'll test it out and get back to you shortly
comment:11 Changed 12 years ago by
Replying to rjollos:
Replying to phooper0001@yahoo.com:
There are no relevant logs in the trac.log file and no errors ?
When you set the logging level to debug, can you see in the logs that the plugin has loaded? See t:TracLogging for more details.
I had overlooked your comment:1 earlier. So we are in good shape here.
What version of Python are you running?
comment:13 Changed 12 years ago by
I was looking in the wrong direction. I'm seeing errors in the JavaScript console.
comment:15 Changed 12 years ago by
comment:16 Changed 12 years ago by
Cc: | jhammel@… removed |
---|---|
Owner: | changed from obs to Ryan J Ollos |
I see a few issues that need to be fixed, but I won't be able to continue working on this until at least Thursday.
The code is confusing, at least partially due to the way that JavaScript code needed to be injected into the template prior to Trac 0.12
. With Trac 0.12
, there came a function named add_script_data
, that made it possible to pass data from Python to JavaScript. A good step here would be to move as much JavaScript code as possible into a dedicated file, and if we branch for Trac 0.12
, we can move all of the JavaScript code into a dedicated file.
comment:17 Changed 12 years ago by
I'm so grateful for your comments on this as I'd really like to get this plugin running in my environment, but with very little Python/Javascript experience I'm at a loss. If you should have time to make the necessary changes and point me at a patch if would be very much appreciated.
Many thanks indeed up until now
Paul
And the plugin loads without issue :