6,614 reputation
441106
bio website
location United States
age 30
visits member for 3 years, 4 months
seen 3 hours ago
stats profile views 690

8h
comment Django-CMS - Global placeholder?
Note that for the show_placeholder tag to work, your "Extra Placeholder Page" must have id set to "extra_placeholders" under the "Advanced Settings" section. It's not smart enough to figure that out directly from the slug...
9h
comment Django-CMS - Global placeholder?
This does not work.
9h
answered Viewing a django-cms page via the slug
10h
comment Viewing a django-cms page via the slug
I did that. That has no effect. The published flag is checked but I still get the behavior I mention.
12h
asked Viewing a django-cms page via the slug
13h
asked How to show error encountered during Fabric local()
16h
comment Django template tag: How to send next_page in {url auth_logout}?
@Amyth, That has nothing to do with a url pattern. Both hardcode the next parameter, even though they could easily replace it with the meta path...
1d
comment how do i use a boolean field in django-haystack search query
I had the same problem with Elasticsearch, and this fixed it for me. It's also important to note that you CAN NOT filter using an actual boolean value...which is sort of dumb. You HAVE to use either 'true' or 'false'. e.g. sqs = sqs.filter(mybool='true'). Using True or False will behave like 'true', which really feels like a horrible design if not an outright bug.
1d
accepted How to filter Haystack SearchQuerySets by related models
1d
comment How to filter Haystack SearchQuerySets by related models
Thanks for the clarification.
1d
comment What's the recommended approach to resetting migration history using Django South?
Why was this so highly upvoted? You should almost NEVER completely delete your south_migrationhistory table. That would completely screw up any dependent apps with migrations you don't want to touch. Hob's answer is the correct one.
1d
comment How to filter Haystack SearchQuerySets by related models
Your specific example doesn't make sense, as the person->workplace link is a one to many relation.
1d
awarded  Popular Question
2d
asked How to filter Haystack SearchQuerySets by related models
2d
comment Haystack and Solr- Schema Parsing Failed
This is the issue. Very frustrating, as the only real solution is to install Solr 3.5 from scratch, which is a nightmare.
2d
comment Django ListView painfully slow using Haystack
load_all() makes the page twice as slow...
2d
asked Django ListView painfully slow using Haystack
May
21
comment Django haystack SearchQuerySet to QuerySet
If you did this (and I'd recommend not doing this), you should at least wrap it in an generator class, which exposes the count(), and returns the object during iteration. Otherwise, if your query contains thousands of records, you risk a single request killing your server.
May
19
comment can't open unicode url with python
I believe this has since been changed, and at least domains can now contain arbitrary Unicode characters.
May
17
awarded  Popular Question