M Somerville
M Somerville
The RSS feed is fine, it's the link that's wrong! Should be https://www.theyworkforyou.com/rss/pbc.rss
I've fixed it so that the link should now work okay, but it's not the 'nice' link you get from elsewhere, due to the way it's constructed.
Does this still need including?
I think something like this does what you're after: ```python @pgtrigger.register( pgtrigger.Trigger( name='keep_num_comments_in_sync', operation=pgtrigger.Update | pgtrigger.Insert | pgtrigger.Delete, when=pgtrigger.After, func=''' IF TG_OP IN ('DELETE', 'UPDATE') THEN UPDATE blog_blogentry SET num_comments...
The original issue is a real one. If you have two active incidents for *different* affected systems (say one is under maintenance, another is degraded performance), then everything gets duplicated...
:+1: Very pretty, but the first thing I found when then actually trying to read the docs was a reduction in my ability to skim the text for what I...
When you create a user through Django admin, you first off only give it username and password, then the user is created, then you can edit other fields, including email....
Dunno if this is related or not(!), but I've opened https://github.com/Opus10/django-pghistory/pull/16 which lets `target()` receive a queryset/list of objects, not only one. I thought this potentially could be used for...
General queries (without any geometric part) should be fine and not time out, though as you say will download too much information (but if that's ignored, should be workable). Geometric...
The built in `locale` is probably good enough? e.g. http://stackoverflow.com/a/1098160/669631 ``` >>> print sorted([u'Όλοι Στον Αγώνα', u'Κόμμα για τα Ζώα Κύπρου'])[0] Όλοι Στον Αγώνα >>> import locale >>> locale.setlocale(locale.LC_COLLATE, 'el_GR.UTF-8')...