0
votes
1answer
39 views
Django: Signal on queryset.update
Django is sending the pre/post_delete signals if you are using the queryset.delete() method, but shouldn't it then also send pre/post_save on queryset.update()?
0
votes
2answers
91 views
Django: How to modify a text field before showing it in admin
I have a Django Model with a text field. I would like to modify the content of the text field before it's presented to the user in Django Admin.
I was expecting to see signal equi …
1
vote
1answer
103 views
Django signal emitting once, received twice — Why?
I'm working with Django signals, but they seem to be received twice, even if emitted once. Here's the code I'm working with (it's a simple wrapper to use Uploadify with Django)... …
1
vote
2answers
39 views
Using related objects after an object is saved?
I have a situation where I want to offload an xml fragment (an atom event) each time a model instance is saved, updated or deleted. The fragment needs to include information about …
2
votes
2answers
162 views
Django - how do I _not_ dispatch a signal?
I wrote some smart generic counters and managers for my models (to avoid select count queries etc.). Therefore I got some heavy logic going on for post_save.
I would like to pre …
0
votes
1answer
75 views
Raise 404 and continue the URL chain
I've got a URLs pattern like this:
urlpatterns = (
url(r'^$', list_titles, name='list'),
url(r'^(?P<tag>[a-z\-0-9]+?)/$', list_titles, name='filtered-list'),
url …
1
vote
1answer
69 views
Migrating django.dispatch.dispatcher from Django 0.96 to 1.0.2
How does one perform the following (Django 0.96) dispatcher hooks in Django 1.0?
import django.dispatch.dispatcher
def log_exception(*args, **kwds):
logging.exception('Exceptio …
3
votes
2answers
240 views
Why does Django post_save signal give me pre_save data?
Im trying to connect a "Information" object to many "Customers" (see code below)
When one Information object is updated, I want to send email to each Customer that is connected to …
0
votes
1answer
99 views
Signals registered more than once in django1.1 testserver
I've defined a signal handler function in my models.py file. At the bottom of that file, I use signals.post_save.connect(myhandler, sender=myclass) as recommended in the docs at ht …
5
votes
2answers
199 views
Why does Django’s signal handling use weak references for callbacks by default?
The Django docs say this on the subject:
Note also that Django stores signal
handlers as weak references by
default, so if your handler is a local
function, it may be gar …
1
vote
1answer
74 views
Is there a way to list Django signals?
Is there a way to see which signals have been set in Django?
9
votes
2answers
224 views
Signals in Linq to Sql?
Does anyone know of a way to do something similar to Django's signals using LINQ to SQL?
I'm trying to record when new rows are inserted and when certain columns are updated, so I …
1
vote
1answer
397 views
Django models overriding save / use a signal / or use a modelform?
I realize this has been asked before, but I wasn't able to find a question that really dealt with what I'm trying to do. I think it's pretty simple, but I'd like to know what the g …
1
vote
2answers
598 views
Django Model.object.get pre_save Function Weirdness
Hello! I have made a function that connects to a models 'pre_save' signal. Inside the function I am trying to check if the model instance's pk already exists in the table with:
se …
0
votes
4answers
289 views
Why aren’t signals simply called events?
From what I can tell, in Python and and Django, signals are simply delegated events. Is there anything that functionally differentiates them from the typical notion of events in C …
