filter magic to support i18n models

2009-10-02 Thread k88
Given the following models class Product(models.Model): price = models.IntegerField() class Product1I18n(models.Model) parent = models.ForeignKey(Product) language = models.CharField(max_length=2) title = models.CharField(max_length=255) description = models.TextField() is it po

override gettext file loader

2009-09-10 Thread k88
Is there an easy (non monkeypatching) way to override which gettext file gets loaded on every request ? if not any idea what should i patch ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To p

Re: post_save timeout with twitter

2009-08-07 Thread k88
You can create a model for messages to be sent and create entries to that model on post_save. Then you'll just have to create a command to send unsent messages and a cron to execute that command. On Aug 7, 9:27 am, Kenneth Gonsalves wrote: > hi, > > I use a post_save signal to send a tweet on tw