Re: Javascript AJAX url call not responding

2013-07-09 Thread nesornet
OK. I found the solution and hope this description prevents someone else from having to deal with this pain in the ass gotcha. "Gotcha" for me anyhow :) So if your ajax target resides in the urls.py of some module somewhere (in this case persistent_messages) and your referencing it from an SSL

Alter "Select Object to change" for change list

2013-07-09 Thread nesornet
Is there a way to adjust the "Select Object to change" text shown above table in change lists? I ran across some similar posts that opted to modify the django core for this adjustment, but I was wondering if a cleaner solution has become available for django 1.5.1. Thanks -- You received this

Re: Javascript AJAX url call not responding

2013-07-08 Thread nesornet
> "Either way I cannot get the ajax call to succeed in triggering the django > backend at all" > By "django backend" I simply mean the persistent_messages/views.py, which should be referenced when the ajax url calls /messages/marked_read/X (as defined in persistent_messages/urls.py. Again a

Re: Javascript AJAX url call not responding

2013-07-08 Thread nesornet
I added the getcookie call to grab csrftoken (ref from the link you provided), but the farthest I can get is by setting ajax async:false which causes the status reported by chrome developer tools (for call /messages/marked_read/X ) to be PENDING. Without async:false, it just goes to CANCELLED.

Javascript AJAX url call not responding

2013-07-04 Thread nesornet
So I have django 1.5.1 installed, have persistent messages installed, and have messages displaying in a list via the template reference {% include "persistent_messages/message/includes/messages.jquery.html" %} The following javascript click trigger is bound to an anchor tag within the list: $(c