active questions tagged python+django - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T09:38:38Zhttp://stackoverflow.com/feeds/tag/python+djangohttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1801350/django-embedding-user-id-into-url-template-best-practice0django embedding user id into URL template best practicerandombits2009-11-26T03:14:16Z2009-11-26T08:29:56Z
<p>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, I use a generic URL such as <a href="http://mysite/user/" rel="nofollow">http://mysite/user/</a>/profile.</p>
<p>What's a Django best practice for building this url using templates?</p>
<p>Is it simply something like:</p>
<pre><code><a href="/user/{{ user.id }}/profile">My Account</a>
</code></pre>
<p>Or is it:</p>
<pre><code><a href="{{ url something something }}">My Account</a>
</code></pre>
<p>Not entirely sure what the appropriate syntax for using the url template tag is. Here's what my URLconf looks like:</p>
<pre><code>(r'^user/(?P<user_id>\d+)/profile/$', user_profile)
</code></pre>
<p>What's my best bet?</p>
http://stackoverflow.com/questions/1801165/django-template-url-function-not-matching-in-app0django template url function not matching in appBen Collins2009-11-26T01:55:51Z2009-11-26T04:28:40Z
<p>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. I've also got a template that uses the 'url' function to resolve a url on a view, defined in the openidgae module. The problem is that after the httprequest is routed to pub.views.index (like it's supposed to), I try to respond by rendering a template that uses the template 'url' function. The code I'm showing below is also here: <a href="http://gist.github.com/243158" rel="nofollow">http://gist.github.com/243158</a></p>
<p>Here's my top-level urls.py:</p>
<pre><code>from django.conf.urls.defaults import *
urlpatterns = patterns('',
(r'', include('openidgae.urls')),
(r'^pub', include('pub.urls')),
)
</code></pre>
<p>and pub/urls.py:</p>
<pre><code>from django.conf.urls.defaults import *
urlpatterns = patterns('',
(r'', 'pub.views.index'),
(r'^/$', 'pub.views.index'),
)
</code></pre>
<p>and templates/base.html:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>{% block title %}My amazing site{% endblock %}</title>
</head>
<body>
<div id="header">
{% if lip %}
Welcome {{ lip.pretty_openid }}
<a href="{% url openidgae.views.LogoutSubmit %}">logout</a>
{% else %}
<form id="login-form" action="{% url openidgae.views.OpenIDStartSubmit %}?continue={{continueUrl}}" method="post">
<input type="text" name="openid_identifier" id="openid_identifier" />
<input type="submit" value="Verify" />
</form>
<!-- BEGIN ID SELECTOR -->
<script type="text/javascript" id="__openidselector" src="https://www.idselector.com/selector/46b0e6d0c8ba5c8617f6f5b970865604c9f87da5" charset="utf-8"></script>
<!-- END ID SELECTOR -->
{% endif %}
</div>
{% block content %}{% endblock %}
</body>
</html>
</code></pre>
<p>and templates/pub/index.html:</p>
<pre><code>{% extends "base.html" %}
{% block title %}blahblah!{% endblock %}
{% block content %}
blahblahblah
{% endblock %}
</code></pre>
<p>and finally, pub/views.py:</p>
<pre><code>from django.shortcuts import render_to_response
from django.http import HttpResponse
from django import forms
import openidgae
def index(request):
lip = openidgae.get_current_person(request, HttpResponse())
resp = render_to_response('pub/index.html', {'lip': lip})
return resp
</code></pre>
<p>Now, if i set the second pattern in my top-level urls.py to point directly to 'pub.views.index', all works like it should, but not if I use the include function.</p>
<p>Any ideas? I'm sure the problem has something to do with the urlpattern that would map the views I'm trying to resolve to urls not being available to the template rendering functions when the HttpRequest is handled by the pub app rather than by the top-level, but I don't understand why or how to fix it. </p>
http://stackoverflow.com/questions/1801008/django-html-email-adds-extra-characters-to-the-email-body0Django Html email adds extra characters to the email bodyblackrobot2009-11-26T01:00:15Z2009-11-26T04:18:10Z
<p>I'm using Django to send an e-mail which has a text part, and an HTML part. Here's the code:</p>
<pre>
subject = request.session.get('email_subject', None)
from_email = request.session.get('user_email', None)
to = request.session.get('user_email', None)
bcc = [email.strip() for email in request.session.get('email_recipients', None).split(settings.EMAIL_DELIMITER)]
text_content = render_to_response(email_text_template, {
'body': request.session.get('email_body', None),
'link': "http://%(site_url)s/ecard/?%(encoded_greeting)s" % {
'site_url': settings.SITE_URL,
'encoded_greeting': urlencode({'g': quote_plus(request.session.get('card_greeting'))}),
},
}, context_instance=RequestContext(request))
html_content = render_to_response(email_html_template, {
'body': request.session.get('email_body', None),
'link': "http://%(site_url)s/ecard/?%(encoded_greeting)s" % {
'site_url': settings.SITE_URL,
'encoded_greeting': urlencode({'g': request.session.get('card_greeting')}),
},
'site_url': settings.SITE_URL,
}, context_instance=RequestContext(request))
email = EmailMultiAlternatives(subject, text_content, from_email, [to], bcc)
email.attach_alternative(html_content, "text/html")
sent = email.send()
</pre>
<p>When the user receives the email, it has this text in it: "Content-Type: text/html; charset=utf-8". Is there a good way to get rid of this?</p>
http://stackoverflow.com/questions/1800008/django-admin-edit-selection-action0Django Admin "Edit Selection" Action?magneticMonster2009-11-25T21:17:15Z2009-11-25T23:49:48Z
<p>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 items in the model (the "room") at a time, but I don't want to have to go through all 480 of my objects and manually edit them one-by-one.</p>
<p>Is there a way to throw up an interstitial page that allows the user to edit the items as a group?</p>
http://stackoverflow.com/questions/1800334/can-i-put-hudson-plots-on-the-project-page0Can I put Hudson Plots on the project page?Chris Heisel2009-11-25T22:22:47Z2009-11-25T22:22:47Z
<p>I've got Hudson up and running, building Django and Python projects I'm working on.</p>
<p>I've found and am using the [Plot plugin][2] to graph Pylint scores, by extracting them with Awk to create a pylint.properties file.</p>
<p>So far everything is working great, but I'd like to have the Pylint score appear on the project page. Right now you have to click "Plots" in the navigation to see the score.</p>
<p>Is there anyway, with either the Plot plugin or some other plugin, for me to display that score on the project page?</p>
http://stackoverflow.com/questions/1797017/trouble-upgrading-python-django-on-centos0Trouble Upgrading Python / Django on CentOS_bravado2009-11-25T13:48:56Z2009-11-25T20:39:35Z
<p>As you can see by reading my other thread today <a href="http://stackoverflow.com/questions/1796105/point-django-at-different-python-version">here</a>, I'm having some troubles upgrading Python.</p>
<p>At the moment I have Python 2.4 with Django installed on a CentOS machine. However I've recently deployed an application that requires 2.5 which has resulted in me installing that and getting into a whole load of mess. My original assumption was that I could <em>direct</em> Django to a different Python version, however as <em>S.Lott</em> informed me, I had it backwards... you attach Django to Python, not the other way round. Which means I currently have: <code>Python 2.4 with Django</code> and <code>Python 2.5</code>.</p>
<p>I've tried a few things so far to no avail. The first idea being an <code>easy_install</code> which would put Django onto the Python 2.5 (So I'd have 2 versions of python with seperate Djangos). Therefore I went into 2.5's directory and did that, which then allowed me to find out that it had just reinstalls it on 2.4, not 2.5. Therefore first question is <strong>How do I direct <code>easy_install</code> to Python 2.5, not 2.4?</strong></p>
<p><strong>Is there no way to just hit 'upgrade' and for a full update to occur?</strong> I know this may be asking for much, however it just seems like so much hassle and I'm surprised I can't find anyone else complaining. Any help would be greatly appreciated.</p>
http://stackoverflow.com/questions/758466/suggestions-for-a-daemon-that-accepts-zip-files-for-processing1suggestions for a daemon that accepts zip files for processingmatt2009-04-16T23:41:04Z2009-11-25T19:28:50Z
<p>im looking to write a daemon that:</p>
<ul>
<li>reads a message from a queue (sqs, rabbit-mq, whatever ...) containing a path to a zip file</li>
<li>updates a record in the database saying something like "this job is processing"</li>
<li>reads the aforementioned archive's contents and inserts a row into a database w/ information culled from file meta data for each file found</li>
<li>duplicates each file to s3</li>
<li>deletes the zip file</li>
<li>marks the job as "complete"</li>
<li>read next message in queue, repeat</li>
</ul>
<p>this should be running as a service, and initiated by a message queued when someone uploads a file via the web frontend. the uploader doesn't need to immediately see the results, but the upload be processed in the background fairly expediently.</p>
<p>im fluent with python, so the very first thing that comes to mind is writing a simple server with twisted to handle each request and carry out the process mentioned above. but, ive never written anything like this that would run in a multi-user context. its not going to service hundreds of uploads per minute or hour, but it'd be nice if it could handle several at a time, reasonable. i also am not terribly familiar with writing multi-threaded applications and dealing with issues like blocking. </p>
<p>how have people solved this in the past? what are some other approaches i could take?</p>
<p>thanks in advance for any help and discussion!</p>
http://stackoverflow.com/questions/1778948/boolean-fields-in-mysql-django-models0Boolean fields in MySQL Django Models?Juanjo Conti2009-11-22T15:02:36Z2009-11-25T18:19:43Z
<p>At Django, <a href="http://docs.djangoproject.com/en/dev/ref/models/fields/" rel="nofollow">a boolean field in MySQL is stored as a TINYINT</a>. When I retrieve it, I get 0 or 1. Shouldn't I get False or True? Is there a way to achieve this behaviour?</p>
http://stackoverflow.com/questions/90032/reasons-not-to-use-django8Reasons not to use djangohamdiakoguz2008-09-18T04:32:07Z2009-11-25T17:11:17Z
<p>Have you considered using Django and found good reasons not to do so? </p>
http://stackoverflow.com/questions/1797046/correct-place-to-put-extra-startup-code-in-django0Correct place to put extra startup code in django?James Healy2009-11-25T13:52:56Z2009-11-25T17:01:09Z
<p>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 or the machine has a python version we don't support.</p>
<p>I'd rather our team be faced with a fatal error that they have to fix, rather than be able to ignore it.</p>
<p>I'm Ok with writing these checks but I'm curious about where the best place to put them is. How do I get them to execute as part of django's startup process? I thought there might be a signal I could listen too, but I can't find a relevant one in the docs.</p>
http://stackoverflow.com/questions/1797586/recursive-function-for-a-django-model-instance0recursive function for a django model instanceBrandon H2009-11-25T15:13:13Z2009-11-25T16:34:47Z
<p>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 a better way to do this? (i'm looking at memory over speed, because a thread shouldn't typically be more than 10 - 20 messages long).</p>
<pre><code>def get_thread(msg,msg_set=[]):
"""
This will get all the messages that led up to any particular message
it takes only a message, but if the message isn't the first message
in a thread it appends it to a message list to be returned.
the last message in the list should be the first message created
"""
if msg.response_to:
return get_thread(msg.response_to, msg_set+[msg])
return msg_set+[msg]
# Create your models here.
class Message(models.Model):
body = models.TextField()
sender = models.ForeignKey(User,related_name='sender')
recipients = models.ManyToManyField(User,related_name='recipients')
timestamp = models.DateTimeField(default=datetime.datetime.now)
response_to = models.ForeignKey(Message,related_name='response_to')
def thread(self):
return get_thread(self)
</code></pre>
http://stackoverflow.com/questions/1793556/problems-putting-binary-data-to-django1Problems PUTting binary data to Django Ben2009-11-24T23:03:25Z2009-11-25T15:40:13Z
<p>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 copyright devils.
My problem now is that I have a Django view that I want to be the endpoint for HTTP PUT requests. The headers of the PUT will contain the metadata, and the body will exclusively be the binary. </p>
<p>Here's the actual view that I am (trying) to hit. Please note that logging indicates that control flow never enters the put() method, which I believe is correct, if not especially robust: </p>
<pre><code>class UserSong(RESTView):
logging.debug('entering UserSong.put')
def put(self, request, username=''):
if request.META['Content-Type'] != 'octet/stream':
raise Http400()
title = request.META['X-BD-TITLE'] if 'X-BD-TITLE' in request.META else 'title unknown'
artist = request.META['X-BD-ARTIST'] if 'X-BD-ARTIST' in request.META else 'artist unknown'
album = request.META['X-BD-ALBUM'] if 'X-BD-ALBUM' in request.META else 'album unknown'
song_data = b6decode(request.raw_post_data)
song = Song(title=title, artist=artist, playcount=playcount, is_sample=is_sample, song_data=song_data, album=album)
song.save()
return HttpResponse('OK', 'text/plain' , 201)
def __call__(self, request, *args, **kwargs):
logging.basicConfig(filename=LOGFILE,level=logging.DEBUG)
try:
if request.method == 'DELETE':
return self.delete(request, *args, **kwargs)
elif request.method == 'GET':
return self.get(request, *args, **kwargs)
elif request.method == 'POST':
return self.post(request, *args, **kwargs)
elif request.method == 'PUT':
return self.put(request, *args, **kwargs)
except:
raise Http404()
</code></pre>
<p>In testing this, I was able to get unittests to pass using Django's unittesting framework, but I do not trust that it was accurately mimicking Real Life. So, I cracked open httplib, and constructed a PUT my own self. This is that code, which I executed interactively:</p>
<pre><code>>>>method = 'PUT'
>>>url = 'accounts/test/songs/'
>>>f = open('/Users/bendean/Documents/BEARBOT.mp3')
>>>data = f.read()
>>>body = data
>>>headers = {'X-BD-ARTIST' : 'BEARBOT' , 'X-BD-ALBUM':'','X-BD-TITLE':'LightningSPRKS'}
>>>headers['CONTENT-TYPE'] = 'octet/stream'
>>>import httplib
>>>c = httplib.HTTPConnection('localhost:8000')
>>>c.request(method, url, body, headers)
</code></pre>
<p>the response I get is not pretty</p>
<pre><code>Traceback (most recent call last):
File "<console>", line 1, in <module>
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/httplib.py", line 880, in request
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/httplib.py", line 914, in _send_request
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/httplib.py", line 719, in send
File "<string>", line 1, in sendall
error: [Errno 54] Connection reset by peer
</code></pre>
<p>though sometimes I get</p>
<pre><code>Traceback (most recent call last):
File "<console>", line 1, in <module>
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/httplib.py", line 880, in request
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/httplib.py", line 914, in _send_request
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/httplib.py", line 719, in send
File "<string>", line 1, in sendall
error: [Errno 32] Broken pipe
</code></pre>
<p>I'm fairly confident that my URLs are working (the GET handler is doing just fine, thank you). Logging indicates that the request is not actually making it to the handler code.</p>
<p>googling around brings me to issue trackers suggesting that the issue is in httplib's handling of an error while uploading a big file (this one is 3.7 mb). </p>
<p>So, I am not ashamed to admit that I am out of my depth here-- how can I determine what is causing the error? Am I formatting my request properly (p.s. I also tried b64encoding the body, with the same results)?. In a larger sense, is what I'm doing (to test, not in life) reasonable? Does it have anything to do with configurable settings on the dev server? Would these problems go away if I were to try putting this on Apache? Your help is very much appreciated.</p>
http://stackoverflow.com/questions/803526/merge-two-lists-of-lists-python1Merge two lists of lists - PythonAdam Nelson2009-04-29T17:57:29Z2009-11-25T13:52:40Z
<p>This is a great primer but doesn't answer what I need:
<a href="http://stackoverflow.com/questions/464342/combining-two-sorted-lists-in-python">http://stackoverflow.com/questions/464342/combining-two-sorted-lists-in-python</a></p>
<p>I have two Python lists, each is a list of datetime,value pairs:</p>
<pre><code>list_a = [['1241000884000', 3], ['1241004212000', 4], ['1241006473000', 11]]
</code></pre>
<p>And:</p>
<pre><code>list_x = [['1241000884000', 16], ['1241000992000', 16], ['1241001121000', 17], ['1241001545000', 19], ['1241004212000', 20], ['1241006473000', 22]]
</code></pre>
<ol>
<li>There are actually numerous list_a lists with different key/values.</li>
<li>All list_a datetimes are in list_x.</li>
<li>I want to make a list, list_c, corresponding to each list_a which has each datetime from list_x and value_a/value_x.</li>
</ol>
<p>Bonus:</p>
<p>In my real program, list_a is actually a list within a dictionary like so. Taking the answer to the dictionary level would be:</p>
<pre><code>dict = {object_a: [['1241000884000', 3], ['1241004212000', 4], ['1241006473000', 11]], object_b: [['1241004212000', 2]]}
</code></pre>
<p>I can figure that part out though.</p>
http://stackoverflow.com/questions/1687530/sorl-thumbnail-thumbnail-is-not-a-valid-tag-library0sorl.thumbnail : 'thumbnail' is not a valid tag library ?j3ll32009-11-06T13:15:21Z2009-11-25T12:14:17Z
<p>I am trying to install sorl.thumbnail but am getting the following error message:</p>
<p>'thumbnail' is not a valid tag library: Could not load template library from django.templatetags.thumbnail, No module named PIL</p>
<p>This error popped up in this question as well<br>
<a href="http://stackoverflow.com/questions/1356334/need-help-solving-sorl-thumbnail-error-thumbnail-is-not-a-valid-tag-library">http://stackoverflow.com/questions/1356334/need-help-solving-sorl-thumbnail-error-thumbnail-is-not-a-valid-tag-library</a><br>
but the solution offered there is no good for me. The solution was to append the project folder to all imports in the sorl files. I want to keep my apps separate from the project they are in for obvious reasons.</p>
<p>I have placed the sorl folder in my project folder<br>
I have placed 'sorl.thumbnaills' under installed apps<br>
and finally placed {% load thumbnail %} in base.html </p>
<pre><code>$python2.5
>>>import PIL
>>>import sorl
</code></pre>
<p>These work.</p>
<p>Using python2.5, on ubuntu 9.04 with django 1.1 with appengine-patch</p>
<p>To try some other things out i placed in settings.py file:</p>
<pre><code>import sys
sys.path.append("/home/danielle/bu3/mysite/sorl/thumbnail")
</code></pre>
<p>But that didnt work either.
Some more help would be appreciated ... how should i change my path?</p>
<p>current path (without above mentioned import):
['/home/danielle/bu3/mysite', '/home/danielle/bu3/mysite/common', '/home/danielle/bu3/mysite/common/appenginepatch/appenginepatcher/lib', '/home/danielle/bu3/mysite/common/zip-packages/django-1.1.zip', '/home/danielle/bu3/mysite/common/appenginepatch', '/usr/local/google_appengine', '/usr/local/google_appengine/lib/antlr3', '/usr/local/google_appengine/lib/yaml/lib', '/usr/local/google_appengine/lib/django', '/usr/local/google_appengine/lib/webob', '/home/danielle/bu3/mysite', '/usr/lib/python2.5/site-packages/setuptools-0.6c9-py2.5.egg', '/usr/lib/python2.5/site-packages/ZopeSkel-2.10-py2.5.egg', '/usr/lib/python2.5/site-packages/virtualenv-1.3.2-py2.5.egg', '/usr/lib/python2.5/site-packages/pip-0.3.1-py2.5.egg', '/usr/lib/python2.5/site-packages/virtualenvwrapper-1.12-py2.5.egg', '/usr/lib/python2.5/site-packages/PyYAML-3.08-py2.5-linux-i686.egg', '/usr/lib/python2.5/site-packages/xlutils-1.3.0-py2.5.egg', '/usr/lib/python2.5/site-packages/errorhandler-1.0.0-py2.5.egg', '/usr/lib/python2.5/site-packages/xlwt-0.7.1-py2.5.egg', '/usr/lib/python2.5/site-packages/xlrd-0.7.0-py2.5.egg', '/usr/lib/python2.5/site-packages/Fabric-0.0.9-py2.5.egg', '/usr/lib/python2.5/site-packages/multitask-0.2.0-py2.5.egg', '/usr/lib/python2.5/site-packages/logilab.pylintinstaller-0.15.2-py2.5.egg', '/usr/lib/python2.5/site-packages/pylint-0.15.2-py2.5.egg', '/usr/lib/python2.5/site-packages/clonedigger-1.0.9_beta-py2.5.egg', '/usr/lib/python2.5/site-packages/yolk-0.4.1-py2.5.egg', '/usr/lib/python2.5/site-packages/MySQL_python-1.2.3c1-py2.5-linux-i686.egg', '/usr/lib/python2.5', '/usr/lib/python2.5/plat-linux2', '/usr/lib/python2.5/lib-tk', '/usr/lib/python2.5/lib-dynload', '/usr/local/lib/python2.5/site-packages', '/usr/lib/python2.5/site-packages', '/usr/lib/python2.5/site-packages/Numeric', '/usr/lib/python2.5/site-packages/PIL', '/usr/lib/python2.5/site-packages/gst-0.10', '/var/lib/python-support/python2.5', '/usr/lib/python2.5/site-packages/gtk-2.0', '/var/lib/python-support/python2.5/gtk-2.0', '/usr/lib/python2.5/site-packages/wx-2.8-gtk2-unicode']</p>
http://stackoverflow.com/questions/1796198/python-and-oracle1python and Oracletodoer2009-11-25T11:03:58Z2009-11-25T11:52:20Z
<p>I would like to be able to connect to Oracle 10.1.0.2.0 (which is installed on different machine) via python.</p>
<p>My comp is running on Ubuntu 9.04 Jaunty with Python 2.6 installed.</p>
<p>I have downloaded and unpacked <code>instantclient-basic-linux32-10.1.0.5-20060511.zip</code> , set <code>LD_LIBRARY_PATH</code> and <code>ORACLE_HOME</code> to point to the directory where I unpacked it.
Then I've downloaded <code>cx_Oracle-5.0.2-10g-py26-1.i386.rpm</code> and installed it:</p>
<pre><code>$sudo alien -i cx_Oracle-5.0.2-10g-py26-1.i386.rpm
</code></pre>
<p>When I run</p>
<pre><code>$python -c 'import cx_Oracle'
</code></pre>
<p>I get:</p>
<pre><code>Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: /usr/lib/python2.6/cx_Oracle.so: undefined symbol: OCIClientVersion
</code></pre>
<p>Help would be very appreciated.</p>
http://stackoverflow.com/questions/1796105/point-django-at-different-python-version0Point Django at different Python version_bravado2009-11-25T10:46:36Z2009-11-25T11:44:52Z
<p>Django application requires a later version of Python. I just installed it to <code>2.5</code> (from <code>2.4</code>) and now when I do a <code>python</code> at the command line, it says <code>2.5.2</code>. </p>
<p>Having said that, Django still says <code>Python Version: 2.4.3</code>. </p>
<p>How do I correct this? I've rebooted / restarted / redeployed to no avail.</p>
http://stackoverflow.com/questions/1745743/validating-uploaded-files-in-django4Validating Uploaded Files in DjangoAlasdair2009-11-17T00:12:02Z2009-11-25T11:20:19Z
<p>A Django app that I am working has an <code>Event</code> model. An <code>Event</code> may have associated photos, static html files and pdf files.</p>
<p>I would like to allow trusted users to upload these files, but I am wary about security, especially having read the following <a href="http://docs.djangoproject.com/en/dev/ref/models/fields/#filefield" rel="nofollow">in the Django docs</a> (link).</p>
<blockquote>
<p>Note that whenever you deal with
uploaded files, you should pay close
attention to where you're uploading
them and what type of files they are,
to avoid security holes. Validate all
uploaded files so that you're sure the
files are what you think they are. For
example, if you blindly let somebody
upload files, without validation, to a
directory that's within your Web
server's document root, then somebody
could upload a CGI or PHP script and
execute that script by visiting its
URL on your site. Don't allow that.</p>
</blockquote>
<p>How can I validate the different types of files? I would be interested to hear anyone's experience of dealing with this kind of thing, or links for further reading. I have a gut feeling that html files may be too risky, in which case I'll restrict upload permissions to the administrator.</p>
http://stackoverflow.com/questions/1791818/losing-session-data-when-user-logs-in0Losing session data when user logs insico872009-11-24T17:58:11Z2009-11-25T09:35:34Z
<p>Hello, </p>
<p>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 checkout and is requested to log in they do so and their basket empties...obvioulsy this is not a great thing for a basket to do, I was wondering what is causing this, could some look over my code and give me some advice at what it could be? I am at my wits end.</p>
<p>=====Edit - Below is my code I would appreciate it if someone could give me a hit at how i can stop the basket clearing when a users logins=====</p>
<pre><code> def basket(request):
"""
Display the current state of the basket and allow the customer to modify
the discount and quantities of each row of the basket
"""
data = {}
basket = Basket(request)
discount_form = DiscountCodeForm(basket)
if request.method == "POST":
if 'update' in request.POST:
basket.post_update(request)
discount_form = DiscountCodeForm(basket, request.POST)
if discount_form.is_valid():
cleaned_data = discount_form.cleaned_data
if cleaned_data['discount_code']:
basket.set_discount(Offer.objects.get(code=cleaned_data['discount_code']))
if 'delete' in request.POST:
basket.post_delete(request)
if 'remove_discount' in request.POST:
basket.remove_discount()
data['discount_form'] = discount_form
data['logged_in'] = persistent_account(request)
data['pageclass'] = 'basket'
data['category'] = Category.objects.root_category()
data['products'] = Product.objects.all()
data['regions'] = Zone.objects.all()
data['currency'] = Currency.get_default_currency()
return render_to_response('basket.html', data, RequestContext(request))
def login(request):
"""
Log the user in.
The form is where the actual login occurs. If already logged in, then
forward to the last attempted page, or, if came directly to the login page,
the account page.
@todo: Incorrect guesses limit of 10 then deactive account
"""
data = {}
redirect_to = request.GET.get('next', reverse('account'))
account = persistent_account(request)
if account:
return HttpResponseRedirect(reverse('account'))
if request.method == "POST":
login_form = LoginForm(request, request.POST)
# This next line will also cause a login
if login_form.is_valid():
login_form.user.message_set.create(message="You have successfully logged in. Welcome back.")
return HttpResponseRedirect(redirect_to)
else:
login_form = LoginForm(request)
data['shop_login_form'] = login_form
data['pageclass'] = 'customer_login'
return render_to_response('login.html', data, RequestContext(request))
</code></pre>
<p>What i have given you is my login view and basket view hope that is enough, if not feel free to shout me.</p>
http://stackoverflow.com/questions/1788245/django-unprintable-templatesyntaxerror-object-caused-by-urlconf0django unprintable templatesyntaxerror object caused by urlconf?Ben Collins2009-11-24T06:33:25Z2009-11-25T09:12:02Z
<p>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't think it really has anything to do with template rendering, actually, because I stepped through the execution path until just before the render_to_response function completes (which is where the urlconf seems to be causing an error) and the template objects are parsed correctly.</p>
<pre><code>Traceback (most recent call last):
File "C:\Program Files\Google\google_appengine\google\appengine\tools\dev_appserver.py", line 2978, in _HandleRequest
base_env_dict=env_dict)
File "C:\Program Files\Google\google_appengine\google\appengine\tools\dev_appserver.py", line 411, in Dispatch
base_env_dict=base_env_dict)
File "C:\Program Files\Google\google_appengine\google\appengine\tools\dev_appserver.py", line 2244, in Dispatch
self._module_dict)
File "C:\Program Files\Google\google_appengine\google\appengine\tools\dev_appserver.py", line 2162, in ExecuteCGI
reset_modules = exec_script(handler_path, cgi_path, hook)
File "C:\Program Files\Google\google_appengine\google\appengine\tools\dev_appserver.py", line 2058, in ExecuteOrImportScript
exec module_code in script_module.__dict__
File "C:\Users\Ben\Development\workspace\ringbot\src\main.py", line 52, in <module>
main()
File "C:\Users\Ben\Development\workspace\ringbot\src\main.py", line 49, in main
util.run_wsgi_app(application)
File "C:\Program Files\Google\google_appengine\google\appengine\ext\webapp\util.py", line 97, in run_wsgi_app
run_bare_wsgi_app(add_wsgi_middleware(application))
File "C:\Program Files\Google\google_appengine\google\appengine\ext\webapp\util.py", line 115, in run_bare_wsgi_app
result = application(env, _start_response)
File "C:\Python25\lib\site-packages\django\core\handlers\wsgi.py", line 241, in __call__
response = self.get_response(request)
File "C:\Python25\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
return self.handle_uncaught_exception(request, resolver, exc_info)
File "C:\Python25\lib\site-packages\django\core\handlers\base.py", line 154, in handle_uncaught_exception
return debug.technical_500_response(request, *exc_info)
File "C:\Python25\lib\site-packages\django\views\debug.py", line 40, in technical_500_response
html = reporter.get_traceback_html()
File "C:\Python25\lib\site-packages\django\views\debug.py", line 114, in get_traceback_html
return t.render(c)
File "C:\Python25\lib\site-packages\django\template\__init__.py", line 178, in render
return self.nodelist.render(context)
File "C:\Python25\lib\site-packages\django\template\__init__.py", line 779, in render
bits.append(self.render_node(node, context))
File "C:\Python25\lib\site-packages\django\template\debug.py", line 81, in render_node
raise wrapped
TemplateSyntaxError: <unprintable TemplateSyntaxError object>
</code></pre>
<p>Here is my top-level urlconf:</p>
<pre><code>from django.conf.urls.defaults import *
urlpatterns = patterns('',
(r'', include('pub.urls')),
)
</code></pre>
<p>And pub.urls:</p>
<pre><code>from django.conf.urls.defaults import *
import pub
urlpatterns = patterns('pub.views',
(r'^$', 'index')
)
</code></pre>
<p>and pub.views.index:</p>
<pre><code># Create your views here.
from django.shortcuts import render_to_response
from django.http import HttpResponse
import openidgae
# this needs to be moved somewhere else, but for now it can live here
def index(request):
lip = openidgae.get_current_person(request, HttpResponse())
resp = render_to_response('pub/index.html', {'lip': lip}) # exception thrown here
return resp
</code></pre>
http://stackoverflow.com/questions/967434/django-haystack-and-whoosh2Django haystack and whooshsleepyjames2009-06-08T22:52:53Z2009-11-25T03:50:58Z
<p>Does anyone have any experience using django-haystack with the whoosh backend?</p>
<p>I'm looking to use it for a categorized live-search type tool. Is it gonna be fast/efficient enough in a production environment to avoid setting up either solr or xapian?</p>
http://stackoverflow.com/questions/275174/how-do-i-perform-html-decoding-encoding-using-python-django6How do I perform HTML decoding/encoding using Python/Django?rksprst2008-11-08T20:44:30Z2009-11-25T03:47:21Z
<p>I have a string that is html encoded: </p>
<pre><code>&lt;img class=&quot;size-medium wp-image-113&quot;
style=&quot;margin-left: 15px;&quot; title=&quot;su1&quot;
src=&quot;http://blah.org/wp-content/uploads/2008/10/su1-300x194.jpg&quot;
alt=&quot;&quot; width=&quot;300&quot; height=&quot;194&quot; /&gt;
</code></pre>
<p>I want to change that to:</p>
<pre><code><img class="size-medium wp-image-113" style="margin-left: 15px;"
title="su1" src="http://blah.org/wp-content/uploads/2008/10/su1-300x194.jpg"
alt="" width="300" height="194" />
</code></pre>
<p>I want this to register as HTML so that it is rendered as an image by the browser instead of being displayed as text. </p>
<p>I've found how to do this in C# but not in in Python. Can someone help me out?</p>
<p>Thanks.</p>
<p>Edit: Someone asked why my strings are stored like that. It's because I am using a web-scraping tool that "scans" a web-page and gets certain content from it. The tool (BeautifulSoup) returns the string in that format.</p>
<h3>Related</h3>
<ul>
<li><a href="http://stackoverflow.com/questions/57708/convert-xml-html-entities-into-unicode-string-in-python">Convert XML/HTML Entities into Unicode String in Python</a></li>
</ul>
http://stackoverflow.com/questions/1793957/how-to-make-uniques-in-django-models-and-also-index-a-column-in-django4How to make uniques in Django Models? And also index a column in Django.alex2009-11-25T00:40:54Z2009-11-25T03:36:55Z
<p>This is my simple Django database model. It's for a 5-star rating system.</p>
<pre><code>class Rating(models.Model):
content = models.OneToOneField(Content, primary_key=True)
ip = models.CharField(max_length=200, blank=True)
rating = models.IntegerField(default=0)
</code></pre>
<p>As you can see, it is linked to "Content", which is the table for my documents.
My question is:</p>
<ul>
<li>How do I make content+ip unique...so
that it multiple content is okay, but
multiple content AND IP is not okay
(do not want the user to rate twice).</li>
<li>How do I create a data-base index for content and ip...because I will always be selecting those (to compare if it is already in the database).</li>
</ul>
http://stackoverflow.com/questions/1414130/django-not-sending-emails-to-admins2Django not sending emails to adminsJoseVega2009-09-12T02:57:59Z2009-11-25T02:04:24Z
<p>According to the <a href="http://docs.djangoproject.com/en/dev/howto/error-reporting/" rel="nofollow">documentation</a>, if <code>DEBUG</code> is set to <code>False</code> and something is provided under the <code>ADMINS</code> setting, Django will send an email whenever the code raises a 500 status code. I have the email settings filled out properly (as I can use send_mail fine) but whenever I intentionally put up erroneous code I get my 500.html template but no error email is sent. What could cause Django to not do this?</p>
http://stackoverflow.com/questions/1790176/how-do-i-make-djangos-markdown-filter-transform-a-carriage-return-to-br1How do I make django's markdown filter transform a carriage return to <br />?Hobhouse2009-11-24T13:49:00Z2009-11-24T23:46:23Z
<p>How can I change the default behavior in the markdown filter so that it transforms a newline to a br tag?</p>
http://stackoverflow.com/questions/1792918/weird-mysql-python-modwsgi-cant-connect-to-mysql-server-on-localhost-49-pr0Weird MySQL Python mod_wsgi Can't connect to MySQL server on 'localhost' (49) problemunknown (google)2009-11-24T21:05:57Z2009-11-24T23:45:30Z
<p>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</p>
<p>Some starting information:</p>
<pre><code>MySQL Server version 5.1.30
Apache/2.2.13 (Unix)
Python 2.5.1
mod_wsgi 3
</code></pre>
<p>mysqladmin also has skip-networking listed as OFF</p>
<p>I am able to connect to mysql from the python command line. But when I try to do it through mod_wsgi using code that is copy and pasted or via Django I receive the generic connection refusal</p>
<pre><code>OperationalError: (2003, "Can't connect to MySQL server on 'localhost' (49)")
</code></pre>
<p>I've looked at the mysql manual and tried its troubleshooting tips such as</p>
<pre><code>telnet localhost 3306
</code></pre>
<p>and I <strong>do</strong> get a connection.</p>
<p>I am <strong>not</strong> trying to connect as root, either.</p>
<p>Any ideas on what else I could check?
Thanks in advance!</p>
http://stackoverflow.com/questions/1785637/gae-image-posting-to-datastore-through-django-form0GAE Image Posting to Datastore through Django Formmlapida2009-11-23T20:12:43Z2009-11-24T23:41:14Z
<p>I'm working on a little side project that involves posting an avatar to a users profile page, seems straight forward enough. I'm following the instructions from the "<a href="http://code.google.com/appengine/docs/python/images/usingimages.html" rel="nofollow">Using the Images Python API</a>" on the GAE web site. </p>
<p>The sample they provide doesn't seem to work with Django though. Searching around here, I found a thread with a similar issue, but said the resolution came from using a newer version of Django with GAE. I'm trying to avoid this work around, and get it running with the build in API. I am new to both Python and Django, but from what I can gather, the image isn't properly being posted to the function that transforms the image and sends it to the Datastore. Here is my code:</p>
<pre><code>def post(self):
contacts = Contact()
if users.get_current_user():
contacts.owner = users.get_current_user()
else:
self.redirect('/')
contacts.fname = self.request.get('fname')
contacts.lname = self.request.get('lname')
contacts.pnum = self.request.get('pnum')
img = self.request.FILES['file'].read()
img.resize(32,32)
contacts.avatar = db.Blob(images.resize(img,32,32))
contacts.put()
self.redirect('/')
</code></pre>
<p>All the other fields are added correctly, except the avatar field. The modified request string comes from the previously stated thread that contained a fix. When attempting to access the avatar, and this gets kind of odd, the page displays a broken image, rather than the default image I setup. This leads me to believe that, although the field is null or missing, there is still something there to draw a unique key when requesting it. Here is the display image function:</p>
<pre><code>class Image (webapp.RequestHandler):
def get(self):
contacts = db.get(self.request.get("img_id"))
if contacts.avatar:
image = contacts.avatar
self.response.headers['Content-Type'] = "image/png"
self.response.out.write(HttpResponseRedirect(contacts.avatar))
else:
self.response.out.wrute(HttpResponseRedirect("/static/image_not_found.gif"))
</code></pre>
<p>I've tried a number of different variations when trying to get this working as well, so please trust that I did, initially, use the block of code from the instructions.</p>
<p>Any help is greatly appreciated.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1793386/django-datetime-and-timezones0django, datetime and timezonesJoe2009-11-24T22:32:04Z2009-11-24T22:53:36Z
<p>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 event is passed due it is displayed in red. </p>
<p>My issue is that I have some users in different timezones than me saying that the events are ending at the wrong time. They should end at midnight on the day they are due. </p>
<p>I have the timezone setup in my django settings.py. When I use: datetime.now() is that going off of the users local timezone or is it going off of what timezone I have setup in django? </p>
<p>What I want is to find midnight for the users current timezone, so if my method above is wrong, how do I go about doing that?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1791942/django-isvalid-not-working-with-modelformsetfactory0Django is_valid() not working with modelformset_factoryMark Koberlein2009-11-24T18:18:38Z2009-11-24T21:15:28Z
<p>I've created a simple contact form using the modelformset_factory to build the form in the view using the DB model. The issue that I am having is that the <strong>is_valid()</strong> check before the save() is not working. When I submit the form with empty fields it still passes the <strong>is_valid()</strong> and attempts to write to the DB. </p>
<p>I would like the is_valid() check to fail when the fields are empty so that the user can be directed to the form again with an error message. I believe that there is a simple solution to this. Do you know what I am missing in my code?</p>
<p>Thanks.</p>
<p>Code:</p>
<p><strong>models.py</strong></p>
<pre><code>class Response(models.Model):
name = models.CharField(max_length=50,verbose_name='Your Name:')
email = models.CharField(max_length=50,verbose_name='Email:')
phone = models.CharField(max_length=50,verbose_name='Phone Number:')
apt_size = models.CharField(max_length=25,
choices=APT_CHOICES,
verbose_name='Apt Size:')
movein_at= models.DateField(verbose_name='Desired Move-In Date')
community = models.CharField(max_length=50,
choices=COMMUNITY_CHOICES,
verbose_name='Community You Are Interested In:')
referred_by = models.CharField(max_length=50,
choices=REFERRED_CHOICES,
verbose_name='Found Us Where?')
referred_other = models.CharField(blank=True,max_length=50,verbose_name='If Other:')
comments = models.TextField(verbose_name='Comments:')
created_at = models.DateTimeField(auto_now_add=True)
def __unicode__(self):
return self.name
</code></pre>
<p><strong>views.py</strong></p>
<pre><code>from summitpark.contact.models import *
from django.shortcuts import render_to_response
from django.forms.models import modelformset_factory
def form(request):
contact_form_set = modelformset_factory(Response,fields=('name','email','phone',
'apt_size','movein_at',
'community','referred_by',
'comments'),
exclude=('id'))
if request.method == 'POST':
formset = contact_form_set(request.POST)
if formset.is_valid():
formset.save()
return render_to_response('contact/confirm.html')
else:
return render_to_response('contact/form.html',{'formset':formset})
else:
formset = contact_form_set(queryset=Response.objects.none())
return render_to_response('contact/form.html',{'formset':formset}
</code></pre>
http://stackoverflow.com/questions/1788432/how-to-have-url-like-this-in-django0How to have URL like this in djangoAamir hussain2009-11-24T07:25:37Z2009-11-24T17:11:14Z
<p>How an I have URLs like <code>example.com/category/catename-operation/</code> in Django?</p>
<p>Also in some cases the user enters a space separated category, how can I handle that?
E.g if user enters the category as "my home", then the URL for this category will become
<code>example.com/my home/</code> which is not a valid URL.</p>
<p>How can I handle these things?</p>
http://stackoverflow.com/questions/1732452/django-ease-of-building-a-restful-interface2Django ease of building a RESTful interfacerandombits2009-11-13T23:03:56Z2009-11-24T16:56:15Z
<p>I'm looking for an excuse to learn Django for a new project that has come up. Typically I like to build RESTful server-side interfaces where a URL maps to resources that spits out data in some platform independent context, such as XML or JSON. This is
rather straightforward to do without the use of frameworks, but some of them such as Ruby on Rails conveniently allow you to easily spit back XML to a client based on the type of URL you pass it, based on your existing model code. </p>
<p>My question is, does something like Django have support for this? I've googled and found some 'RESTful' 3rd party code that can go on top of Django. Not sure if I'm too keen on that.</p>
<p>If not Django, any other Python framework that's already built with this in mind so I do not have to reinvent the wheel as I already have in languages like PHP?</p>