8
votes
14answers
3k views
Reasons not to use django
Have you considered using Django and found good reasons not to do so?
0
votes
5answers
42 views
Correct place to put extra startup code in django?
I would like to run some environment checks when my django process starts and die noisily in the case of an error. I'm thinking things like the database has an incorrect encoding o …
0
votes
2answers
37 views
recursive function for a django model instance
i want to make message view show all other messages that led up to that message. the original message will not have a response_to value and should terminate the recursion. is there …
1
vote
0answers
28 views
Problems PUTting binary data to Django
I am trying to build a RESTful api with Django to share mp3s -- right up front: it's a toy app, never going into production, so it doesn't need to scale or worry (I hope) about cop …
0
votes
2answers
18 views
Trouble Upgrading Python / Django on CentOS
As you can see by reading my other thread today here, I'm having some troubles upgrading Python.
At the moment I have Python 2.4 with Django installed on a CentOS machine. However …
1
vote
5answers
694 views
Merge two lists of lists - Python
This is a great primer but doesn't answer what I need:
http://stackoverflow.com/questions/464342/combining-two-sorted-lists-in-python
I have two Python lists, each is a list of da …
0
votes
3answers
76 views
sorl.thumbnail : ‘thumbnail’ is not a valid tag library ?
I am trying to install sorl.thumbnail but am getting the following error message:
'thumbnail' is not a valid tag library: Could not load template library from django.templatetags. …
0
votes
1answer
44 views
python and Oracle
I would like to be able to connect to Oracle 10.1.0.2.0 (which is installed on different machine) via python.
My comp is running on Ubuntu 9.04 Jaunty with Python 2.6 installed.
…
0
votes
3answers
38 views
Point Django at different Python version
Django application requires a later version of Python. I just installed it to 2.5 (from 2.4) and now when I do a python at the command line, it says 2.5.2.
Having said that, Djan …
4
votes
6answers
148 views
+250
Validating Uploaded Files in Django
A Django app that I am working has an Event model. An Event may have associated photos, static html files and pdf files.
I would like to allow trusted users to upload these files, …
0
votes
1answer
52 views
Losing session data when user logs in
Hello,
I have been working on a shop that is built in Python on the back of the django framework, everything was working fine until I noticed that when a user proceeds to the che …
0
votes
2answers
18 views
django unprintable templatesyntaxerror object caused by urlconf?
I'm trying to get a django project set up, and I seem to be having trouble with my urlconf. I'm not sure what the deal is, and the error below isn't entirely helpful to me. I don …
2
votes
3answers
553 views
Django haystack and whoosh
Does anyone have any experience using django-haystack with the whoosh backend?
I'm looking to use it for a categorized live-search type tool. Is it gonna be fast/efficient enough …
6
votes
8answers
5k views
How do I perform HTML decoding/encoding using Python/Django?
I have a string that is html encoded:
<img class="size-medium wp-image-113"
style="margin-left: 15px;" title="su1" …
4
votes
3answers
39 views
How to make uniques in Django Models? And also index a column in Django.
This is my simple Django database model. It's for a 5-star rating system.
class Rating(models.Model):
content = models.OneToOneField(Content, primary_key=True)
ip = model …
