0
votes
2answers
7 views
Appengine reference order
I have declared models in AppEngine's models.py:
class Post(db.Model):
topic = db.ReferenceProperty(Topic, collection_name='posts', verbose_name=_('Topic'))
(..)
class Topic(db.M …
0
votes
3answers
50 views
django embedding user id into URL template best practice
I'm building a navigation menu in my django app, and one of the options is "My Account". There are different roles I have for users, but in order for them all to view their profile …
0
votes
1answer
21 views
django template url function not matching in app
I have a django project set up with an app called pub. I'm trying to set it up so that I can include urls.py from each app (there will be more as I go) in the top-level urls.py. …
0
votes
2answers
25 views
Django Html email adds extra characters to the email body
I'm using Django to send an e-mail which has a text part, and an HTML part. Here's the code:
subject = request.session.get('email_subject', None)
from_email = request.ses …
0
votes
0answers
14 views
Can I put Hudson Plots on the project page?
I've got Hudson up and running, building Django and Python projects I'm working on.
I've found and am using the [Plot plugin][2] to graph Pylint scores, by extracting them with Aw …
0
votes
1answer
23 views
Django Admin “Edit Selection” Action?
I'd like to write a django-admin action (for use when the user selects zero or more rows) that will allow them to edit the selected items as a group. I only need to edit one of the …
0
votes
2answers
49 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
5answers
69 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
4answers
30 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
1answer
56 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
48 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
3answers
44 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 …
1
vote
0answers
32 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
1answer
32 views
django, datetime and timezones
I am using: datetime.now() to get the current time in an Event app that lets you create an event that has an end date, then all of the events are displayed in a calendar and if an …
0
votes
1answer
28 views
Weird MySQL Python mod_wsgi Can’t connect to MySQL server on ‘localhost’ (49) problem
There have been similar questions on StackOverflow about this, but I haven't found quite the same situation. This is on a OS X Leopard machine using MySQL
Some starting informatio …
