Keryn Knight

Results 59 comments of Keryn Knight

The fact they're not cached _may, tentatively_ be related to the solution proposed in #78.

@spatialbits when you say "I get pointer errors" - do you mean there's an exception whose stacktrace you could add to this ticket?

At least at a glance, the problem appears to stem from `model._meta.get_all_related_objects()`, which for a proxy model (`Pageproxy`) yields `[]`; it is instead bound to the concrete parent (`Page`) as...

Further investigation, across both Django 1.7 and 1.8 (because both finally raise exceptions for `select_related`), given the following: ``` class InheritanceProxyConcrete(models.Model): pass class InheritanceProxy(InheritanceProxyConcrete): class Meta: proxy = True class...

I've opened a [ticket upstream](https://code.djangoproject.com/ticket/24762) reflecting my findings. If it comes back as my mistake, I can re-evaluate the problem in this ticket, possibly with a better understanding of what...

Ostensibly after Django `1.6` it ought to support arbitrarily deep inheritance, though the deeper you go the more costs you'll incur in terms of SQL overall (more `LEFT OUTER JOIN`s...

There's a third way, I believe: ```ic-on-beforeSend="xhr.setRequestHeader('X-CSRFToken', '{{ csrf_token }}');"```

I'm experiencing, I think, a similar thing in 0.8.2 (and having just upgraded, 0.8.4) if I do `git remote add git://github.com/whatever` at the command line, it doesn't seem to _take_...

👋 For the purposes of binding it to a relevant ticket, it _could_ probably be considered part of [ticket 24121 - Provide a better repr() experience](https://code.djangoproject.com/ticket/24121), whose changes and targets...