Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
4answers
6k views

Django signals vs. overriding save method

I'm having trouble wrapping my head around this. Right now I have some models that looks kind of like this: def Review(models.Model) ...fields... overall_score = ...
9
votes
2answers
354 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 really just want ...
8
votes
3answers
2k views

What are the options for overriding Django's cascading delete behaviour?

Django models generally handle the ON DELETE CASCADE behaviour quite adequately (in a way that works on databases that don't support it natively.) However, I'm struggling to discover what is the best ...
7
votes
1answer
1k 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)... # Signal-emitting ...
7
votes
2answers
2k 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 the Information. ...
6
votes
1answer
2k views

Extending django-registration using signals

I have found here on stackoverflow a solution to extend django-registration with new fields using signals. Here's the link : http://dmitko.ru/?p=546 . I have created extended profile model, extended ...
6
votes
3answers
375 views

Is there a way to list Django signals?

Is there a way to see which signals have been set in Django?
5
votes
1answer
408 views

django post_save signal sends outdated inline formsets

Consider the following: class OrderForm(models.Model): title = models.CharField(max_length=100) desc = models.TextField() class OrderFormLine(models.Model): order = ...
5
votes
2answers
667 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 garbage collected. To ...
4
votes
2answers
330 views

How do I use Django signals with an abstract model?

I have an abstract model that keeps an on-disk cache. When I delete the model, I need it to delete the cache. I want this to happen for every derived model as well. If I connect the signal ...
4
votes
1answer
349 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('Exception in request:') # ...
3
votes
1answer
101 views

How to use Django model inheritance with signals?

I have a few model inheritance levels in django: class WorkAttachment(models.Model): """ Abstract class that holds all fields that are required in each attachment """ work = ...
3
votes
3answers
177 views

Access to related data of newly created model instance using post_save signal handler

I need to send an e-mail when new instance of Entry model is created via admin panel. So in models.py I have: class Entry(models.Model): attachments = models.ManyToManyField(to=Attachment, ...
3
votes
3answers
436 views

how to cancel a delete in django signal

Is there a way to cancel a deletion of record using django pre_delete signal? example: def on_delete(sender,**kwargs): if not <some condition>: #cancel the deletion # else continue with ...
3
votes
2answers
191 views

sending django signals from django-admin command?

I have an unsual problem. In my django application I use signals to send emails. All of signals work except for the one fired from django-admin command - django.core.management.base.NoArgsCommand ...
3
votes
2answers
290 views

Prevent delete in Django model

I have a setup like this (simplified for this question): class Employee(models.Model): name = models.CharField(name, unique=True) class Project(models.Model): name = models.CharField(name, ...
3
votes
2answers
232 views

Django: Obtaining the absolute URL without access to a request object

I have a model like the one below. When an instance is created, I want to send out an e-mail to an interested party: class TrainStop(models.Model): name = models.CharField(max_length=32) ...
3
votes
3answers
412 views

Django notification on comment submission

I am making use of Django's contrib.comments and want to know the following. Are there any utils or app out there that can be plugged into an app that sends you a notification when a comment is ...
3
votes
2answers
115 views

Sending emails when a user is activated in the Django admin

I'm about to create a site that has monitored registration in that only certain people are allowed to register. Undoubtedly some misfits will register despite any writing I put above the registration ...
3
votes
3answers
549 views

Django: What exactly are signals good for?

I have a tough time understanding how signals work into my application (and how they work period). These are three areas where I assume they would apply (with my current knowledge): Send XML to a ...
3
votes
3answers
297 views

How to make a model instance read-only after saving it once?

One of the functionalities in a Django project I am writing is sending a newsletter. I have a model, Newsletter and a function, send_newsletter, which I have registered to listen to Newsletter's ...
3
votes
2answers
2k views

post_save signal on m2m field

I have a pretty generic Article model, with m2m relation to Tag model. I want to keep count of each tag usage, i think the best way would be to denormalise count field on Tag model and update it each ...
2
votes
1answer
31 views

Django exclude model from sending signals

I wanted to track my models and their CRUD operations through handling post_save, delete and init signals, and then save entry to the Database about this operation handled. def ...
2
votes
1answer
111 views

Facebook like notification updates using django signal or notification

How can i use django-notifications or django-signals to make something like facebook updates notification that shows in the user profile if any other user likes or posts comments on user's blog or ...
2
votes
3answers
87 views

Django 1.3, how to signal when a post has ended like on ebay?

I'm totally confused and have no idea how to do this, so please forgive me if my description/information is bad. So I want say to do a notification via django-notification or simply send an e-mail to ...
2
votes
2answers
113 views

Dynamic upload path - include originating field

I have a Django model with multiple ImageFields and use a callable to determine the upload path. I want to include the originating upload field's name in the upload path, in this case tiny, small, ...
2
votes
1answer
110 views

Django: determine which user is deleting when using post_delete signal

I want admins to be notified when certain objects are deleted but I also want to determine which user is performing the delete. Is it possible? This is the code: # models.py # signal to notify ...
2
votes
3answers
379 views

Django pre_save signal does not work

I tested the "pre_save" signal of Django in the following ways, but cannot catch the signal in either of them. $ from django.db.models.signals import pre_save import logging def ...
2
votes
2answers
159 views

Is it possible to selectively suppress a post_save (or other) signal in Django?

I'm wondering whether it's possible to selectively suppress a Django signal (such as post_save or post_init) on object creation, or, alternatively, send it certain parameters. What I have is a User ...
2
votes
1answer
181 views

Custom signal does not work

I created a signal: sig_published = Signal() This signal is placed in a signals.py, which I import in my models.py: from signals import sig_published and in the model file's footer, I connect it ...
2
votes
1answer
243 views

Send an e-mail notification when a Django CharField is modified via the admin site

I have a CharField that is normally empty. I want to send out an e-mail notification to all managers (using mail_managers) when the field is set to a non-empty value. Changes to this field should only ...
2
votes
1answer
371 views

Django Signals in celery

I have a task that runs in a celerybeat instance. When that talk is executed, it sometimes modifies a model object, which should fire off a post/pre_save signal, but it doesn't. The signal is not ...
2
votes
2answers
159 views

Can Django pre_save signal work for all derived classes

I have a model class "Action" that get's extended by several other classes. I am new to django and assumed that if I called pre_save.connect(actionFunc, sender=Action) that actionFunc would get ...
2
votes
3answers
446 views

Django: Before a model is updated, I'd like to “look at” its previous attributes

When an update/create is performed on a Django model (.save()) I would like to be able to "step in" and compare some particular attributes to what they were set to previously (if they previously ...
2
votes
2answers
215 views

Simple form not validating

I have found here on stackoverflow a method to extend django's built-in authentication using signals. My base User is defined by 'email' and passwords (so no username there). So I'm trying to modify ...
2
votes
1answer
1k views

Django: UserProfile with Unique Foreign Key in Django Admin

I have extended Django's User Model using a custom user profile called UserExtension. It is related to User through a unique ForeignKey Relationship, which enables me to edit it in the admin in an ...
2
votes
2answers
778 views

Disconnect signals for models and reconnect in django

I need make a save with a model but i need disconnect some receivers of the signals before save it. I mean, I have a model: class MyModel(models.Model): ... def pre_save_model(sender, ...
2
votes
4answers
668 views

Django manytomany signals?

Let's say I have such model class Event(models.Model) users_count = models.IntegerField(default=0) users = models.ManyToManyField(User) How would you recommend to update users_count value ...
2
votes
4answers
1k views

Issue with ManyToMany Relationships not updating inmediatly after save

I'm having issues with ManytoMany Relationships that are not updating in a model when I save it (via the admin) and try to use the new value within a function attached to the post_save signal or ...
2
votes
1answer
564 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()?
2
votes
1answer
1k 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 general population ...
2
votes
2answers
514 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 prevent handling the ...
1
vote
2answers
125 views

Post_save received twice for one save even when using dispatch_uid

I have my models in individual files: models \ |__init__.py |event.py |a_thing.py |... In __init__.py I import each model and after that I set the signal handling. For the Event model I need ...
1
vote
1answer
108 views

How to use django-notification to inform a user when somebody comments on their post

I have been developing in django for sometime now, and have developed a neat website having functionality such as writing blogs, posting questions, sharing content etc. However there is still one ...
1
vote
1answer
76 views

Django pre_save signal

I needed to be able to change my model data before it's saved, so I considered using pre_save handler to be the best option: @receiver(pre_save, weak = False) def pre_category_save(sender, **kwargs): ...
1
vote
2answers
87 views

Post save, model id nonexistent

I have multiple models which relate back to a single model. On save of these models I have overridden save to retrieve the id of the main model so as to place files on the OS in a directory keyed by ...
1
vote
2answers
67 views

Signals in Django

I have 2 models.py files in different app directories: users.models.py and friends.models.py. There is one problem: if some user deleted from UserProfile model, all his friendship network must be ...
1
vote
1answer
58 views

Django signal handler that monitors changes to groups & permissions?

I'd like to register a signal handler on the User model that looks something like this: def post_save_handler(sender, instance, created, **kwargs): should_have_profile = ...
1
vote
1answer
140 views

In test cases(unit-testing), Django pre_save signal can not be caught

In Django, my code on catching pre_save signal works well. However, in testcases in tests.py, the signal handler cannot receive anything. Is there any hint for this problem? It seems that my ...
1
vote
1answer
254 views

Django pre_save triggered twice

I am using django signals for data denormalization. Here is my code: # vote was saved @receiver(pre_save, sender=Vote) def update_post_votes_on_save(sender, instance, **kwargs): """ Update post ...

1 2 3