active questions tagged django - Stack Overflowmost recent 30 from stackoverflow.com2009-11-09T00:34:14Zhttp://stackoverflow.com/feeds/tag/djangohttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1698435/django-multi-select-widget0Django multi-select widget?Mark2009-11-09T00:03:33Z2009-11-09T00:25:50Z
<p>The Django admin site makes use of a really cool widget:</p>
<p><img src="http://img196.imageshack.us/img196/9066/multiselectwidget.gif"/></p>
<p>How can I make use of this widget in my own applications? I don't see anything like that <a href="http://docs.djangoproject.com/en/dev/ref/forms/widgets/#ref-forms-widgets" rel="nofollow">listed here</a>.</p>
http://stackoverflow.com/questions/1309606/how-to-tame-the-location-of-third-party-contributions-in-django1How to tame the location of third party contributions in DjangoJohn Mee2009-08-21T00:59:43Z2009-11-08T23:56:27Z
<p>I have a django project which is laid out like this...</p>
<ul>
<li>myproject
<ul>
<li>apps</li>
<li>media</li>
<li>templates</li>
<li>django</li>
<li>registration</li>
<li>sorl</li>
<li>typogrify</li>
</ul></li>
</ul>
<p>I'd like to change it to this...</p>
<ul>
<li>myproject
<ul>
<li>apps</li>
<li>media</li>
<li>templates</li>
<li>site-deps
<ul>
<li>django</li>
<li>registration</li>
<li>sorl</li>
<li>typogrify</li>
</ul></li>
</ul></li>
</ul>
<p>When I attempt it the 'site-dependencies' all break. Is there a way to implement this structure? I tried adding site-deps to the PYTHONPATH without joy...</p>
http://stackoverflow.com/questions/1125504/django-persistent-database-connection5Django persistent database connection.Mike TK2009-07-14T13:47:00Z2009-11-08T22:15:33Z
<p>Hi folks,</p>
<p>I'm using django with apache and mod_wsgi and PostgreSQL (all on same host), and I need to handle a lot of simple dynamic page requests (hundreds per second). I faced with problem that the bottleneck is that a django don't have persistent database connection and reconnects on each requests (that takes near 5ms).
While doing a benchmark I got that with persistent connection I can handle near 500 r/s while without I get only 50 r/s.</p>
<p>Anyone have any advice? How to modify django to use persistent connection? Or speed up connection from python to DB</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1696803/manipulate-my-flash-depending-on-a-url1Manipulate my flash depending on a URL?sico872009-11-08T15:03:48Z2009-11-08T22:11:26Z
<p>I have a flash map of the UK which is divided up into the counties, a user clicks on a county and is then directed to a new url, eg. <code>www.mydomain.co.uk/region/london</code>. The flash map remains on that new page in case they wish to select a new region.</p>
<p>What I want to know: is it possible to manipulate the flash so that if the url is <code>www.mydomain.co.uk/region/london</code> then london remains highlighted on the flash map. I presume I will have to use some AS which is fine as long as it is AS3.</p>
http://stackoverflow.com/questions/1697862/django-form-for-model0Django form for modeletam2009-11-08T20:39:55Z2009-11-08T20:59:03Z
<p>Hi,</p>
<p>with Django forms you can specify widget:</p>
<pre><code>class LoginForm(forms.Form):
email = forms.CharField(
max_length = 30,
widget = forms.TextInput(
attrs = {'class':'text required email', 'id':'email'}))
password = forms.CharField(
max_length = 20,
widget = forms.PasswordInput(
attrs = {'class':'text required', 'id':'password', 'minlength':'4'}))
</code></pre>
<p>is it possible to do that in models?</p>
<pre><code>class Order(models.Model):
name = models.CharField(max_length = 256)
phone = models.CharField(max_length = 256)
email = models.CharField(max_length = 256)
start = models.CharField(max_length = 256)
destination = models.CharField(max_length = 256)
size = models.CharField(max_length = 256)
</code></pre>
<p>I'd love to use this (specify CSS class) when creating form for model like:</p>
<pre><code>class OrderForm(ModelForm):
class Meta:
model = Order
</code></pre>
<p>Thanks in advance,
Etam.</p>
http://stackoverflow.com/questions/1697866/how-to-create-django-formwizard-for-one-model0How to create Django FormWizard for one Model?giolekva2009-11-08T20:41:18Z2009-11-08T20:46:48Z
<p>I have Django Model with many fields which user must fill. If I'll create one ModelForm for this Model it will be big enough for one form. I want to split it using FormWizard. I think it's possible first to create forms dynamically and then create FormWizard using them.</p>
<p>Is this good approach or is there any better way?</p>
http://stackoverflow.com/questions/1696308/django-on-apache-with-fcgi0Django on Apache with FCGIPheter2009-11-08T12:51:42Z2009-11-08T20:45:44Z
<p><strong>Solved:</strong> Unfortunately I wasn't able to solve the problem but I started over and followed the <a href="http://wiki.asmallorange.com/HOWTODjangoFastCGI" rel="nofollow">Django + FastCGI guide</a> on the <a href="http://wiki.asmallorange.com/Welcome" rel="nofollow">"A Small Orange" wiki</a> and everything is working as expected.</p>
<p>I am trying to setup Django with FCGI on Apache. The web hosting plan that I am using is A Small Orange's shared hosting plan.</p>
<p>Django is installed, working and is able to create database tables when I run the syncdb command. If I run <code>manage.py runserver</code> and then use lynx to navigate to <code>localhost:8080</code> django will correctly display. However, It is not possible to view django over the internet as the page displays a 500 internal server error.</p>
<p>I have the flup python package installed and am using python version 2.6.</p>
<p>The following is the contents of my .htaccess file that is situated in <code>/public_html/</code>:</p>
<pre><code>RewriteEngine On
RewriteBase /
RewriteRule ^(media/.*)$ - [L]
RewriteRule ^(admin_media/.*)$ - [L]
RewriteRule ^(dispatch\.fcgi/.*)$ - [L]
RewriteRule ^(.*)$ dispatch.fcgi/$1 [L]
</code></pre>
<p>The following is the contents of my dispatch.fcgi file that is also located in <code>/public_html</code>:</p>
<pre><code>#!/usr/local/lib/python2.6
import sys
import os
os.chdir('/home/thegamer/django/projects/thegamer')
sys.path += ['/home/thegamer/django/django']
sys.path += ['/home/thegamer/django/projects']
from fcgi import WSGIServer
from django.core.handlers.wsgi import WSGIHandler
import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'thegamer.settings'
WSGIServer(WSGIHandler()).run()
</code></pre>
http://stackoverflow.com/questions/1697702/how-to-pass-initial-parameter-to-djangos-modelform-instance0How to pass initial parameter to django's ModelForm instance?kender2009-11-08T19:54:40Z2009-11-08T20:11:39Z
<p>The particular case I have is like this:</p>
<p>I have a Transaction model, with fields: <code>from</code>, <code>to</code> (both are <code>ForeignKey</code>s to <code>auth.User</code> model) and <code>amount</code>. In my form, I'd like to present the user 2 fields to fill in: <code>amount</code> and <code>from</code> (<code>to</code> will be automaticly set to current user in a view function).</p>
<p>Default widget to present a <code>ForeignKey</code> is a select-box. But what I want to get there, is limit the choices to the <code>user.peers</code> queryset members only (so people can only register transactions with their peers and don't get flooded with all system users).</p>
<p>I tried to change the ModelForm to something like this:</p>
<pre><code>class AddTransaction(forms.ModelForm):
from = ModelChoiceField(user.peers)
amount = forms.CharField(label = 'How much?')
class Meta:
model = models.Transaction
</code></pre>
<p>But it seems I have to pass the queryset of choices for <code>ModelChoiceField</code> right here - where I don't have an access to the web <code>request.user</code> object.</p>
<p>How can I limit the choices in a form to the user-dependent ones? </p>
http://stackoverflow.com/questions/1697508/clean-input-strings-without-using-the-django-form-classes1Clean input strings without using the django Form classesKarim2009-11-08T18:53:11Z2009-11-08T19:48:53Z
<p>Is there a recommended way of using Django to clean an input string without going through the Django form system? </p>
<p>That is, I'm writing code that delivers form input via AJAX so I'm skipping the whole Form model django offers. But I do want to clean the input prior to submission to the database. </p>
http://stackoverflow.com/questions/1697105/django-ordering-by-the-first-value-of-a-tuple0Django: Ordering by the first value of a tupleblahblah2009-11-08T16:46:27Z2009-11-08T18:56:40Z
<p>I have a 7-tuple of tuples as such:</p>
<pre><code>POSSIBILITIES = ((1, "Something"),
(2, "Something else"), ...)
</code></pre>
<p>Now I have an <code>IntegerField</code> with <code>choices</code> in a model with the possibilities listed above.</p>
<pre><code>class Something(models.Model):
class Meta:
ordering = "...?"
something = models.IntegerField(choices=POSSIBILITIES)
</code></pre>
<p>I want the entries in the database to be ordered by the integer in each of the tuples by default. How do I specify that?</p>
http://stackoverflow.com/questions/1697253/cannot-import-django-core0Cannot import django.corePheter2009-11-08T17:29:16Z2009-11-08T18:28:22Z
<p>I am trying to setup django with fastcgi on apache. Django is installed and seems to be running correctly but I am having problems with setting up fastcgi.</p>
<p>I decided to test out my dispatch.fcgi script in the interactive python shell line by line and the following line:</p>
<pre><code>from django.core.servers.fastcgi import runfastcgi
</code></pre>
<p>results in the following error:</p>
<pre><code>ImportError: No module named core.servers.fastcgi
</code></pre>
<p>I can import django with no problem but import django.core gives yet another ImportError (No module named core).</p>
<p>How can I go about ensuring that I can import django.core. If I can import django then in must be on my path, and so why can I not import core?</p>
http://stackoverflow.com/questions/1694537/reducing-queries-for-manytomany-models-in-django0Reducing queries for manytomany models in djangovictor2009-11-07T21:47:15Z2009-11-08T17:33:44Z
<p>EDIT:
It turns out the real question is - how do I get select_related to follow the m2m relationships I have defined? Those are the ones that are taxing my system. Any ideas?</p>
<p>I have two classes for my django app. The first (Item class) describes an item along with some functions that return information about the item. The second class (Itemlist class) takes a list of these items and then does some processing on them to return different values. The problem I'm having is that returning a list of items from Itemlist is taking a ton of queries, and I'm not sure where they're coming from.</p>
<pre><code>class Item(models.Model):
# for archiving purposes
archive_id = models.IntegerField()
users = models.ManyToManyField(User, through='User_item_rel',
related_name='users_set')
# for many to one relationship (tags)
tag = models.ForeignKey(Tag)
sub_tag = models.CharField(default='',max_length=40)
name = models.CharField(max_length=40)
purch_date = models.DateField(default=datetime.datetime.now())
date_edited = models.DateTimeField(auto_now_add=True)
price = models.DecimalField(max_digits=6, decimal_places=2)
buyer = models.ManyToManyField(User, through='Buyer_item_rel',
related_name='buyers_set')
comments = models.CharField(default='',max_length=400)
house_id = models.IntegerField()
class Meta:
ordering = ['-purch_date']
def shortDisplayBuyers(self):
if len(self.buyer_item_rel_set.all()) != 1:
return "multiple buyers"
else:
return self.buyer_item_rel_set.all()[0].buyer.name
def listBuyers(self):
return self.buyer_item_rel_set.all()
def listUsers(self):
return self.user_item_rel_set.all()
def tag_name(self):
return self.tag
def sub_tag_name(self):
return self.sub_tag
def __unicode__(self):
return self.name
</code></pre>
<p>and the second class:</p>
<pre><code>class Item_list:
def __init__(self, list = None, house_id = None, user_id = None,
archive_id = None, houseMode = 0):
self.list = list
self.house_id = house_id
self.uid = int(user_id)
self.archive_id = archive_id
self.gen_balancing_transactions()
self.houseMode = houseMode
def ret_list(self):
return self.list
</code></pre>
<p>So after I construct Itemlist with a large list of items, Itemlist.ret_list() takes up to 800 queries for 25 items. What can I do to fix this?</p>
http://stackoverflow.com/questions/1697045/django-sql-keeping-track-of-who-who-read-what-in-a-forum1Django/SQL: keeping track of who who read what in a forumAdi2009-11-08T16:24:29Z2009-11-08T17:20:39Z
<p>I'm working on a not-so-big project in django that will among other things incorporate a forum system.</p>
<p>I have most of the system at a more or less functioning state, but I'm still missing a feature to mark unread threads for the users when there are new posts.</p>
<p>The thing is I can't really think of a way to properly store that information. My first idea was to create another model that will store a list of threads with changes in them for each user. Something with one <code>ForeignKey(User)</code> and one <code>ForeignKey(Thread)</code> and just keep adding new entries each time a thread is posted or a post is added to a thread.</p>
<p>But then, I'm not sure how well that would scale with say several hundred threads after a while and maybe 50-200 users. So add 200 rows for each new post for the users who aren't logged on? Sounds like a lot.</p>
<p>How do other forum systems do it anyway? And how can I implement a system to work these things out in Django.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1605706/django-how-to-detect-if-translation-is-activated1Django: How to detect if translation is activated?muhuk2009-10-22T08:18:24Z2009-11-08T15:59:48Z
<p><code>django.utils.translation.get_language()</code> returns default locale if translation is not activated. Is there a way to find out whether the translation is activated (via <code>translation.activate()</code>) or not?</p>
http://stackoverflow.com/questions/920271/django-model-with-two-generic-contenttype-foreign-keys0django model with two generic (content_type) foreign keys?interstar2009-05-28T10:56:50Z2009-11-08T13:18:20Z
<p>I'm trying to create a mapping table between two generic (content_type) references, one for "agents" and one for "resources".</p>
<p>So I take the usual way I make a generic foreign key : </p>
<pre><code>content_type = models.ForeignKey(ContentType)
object_id = models.PositiveIntegerField()
resource = generic.GenericForeignKey('content_type', 'object_id')
</code></pre>
<p>And I try to make a model with two.</p>
<pre><code>agent_content_type = models.ForeignKey(ContentType)
agent_object_id = models.PositiveIntegerField()
agent = generic.GenericForeignKey('agent_content_type', 'agent_object_id')
resource_content_type = models.ForeignKey(ContentType)
resource_object_id = models.PositiveIntegerField()
resource = generic.GenericForeignKey('resource_content_type', 'resource_object_id')
</code></pre>
<p>But this now throws up the following errors : </p>
<blockquote>
<p>myapp.mymodel: Accessor for field
'resource_content_type' clashes with
related field
'ContentType.mymodel_set'. Add a
related_name argument to the
definition for
'resource_content_type'.</p>
</blockquote>
<p>And similar for the agent.</p>
<p>What's going on here? And what should I do?</p>
<p>cheers </p>
<p>phil</p>
http://stackoverflow.com/questions/1381423/model-inheritance-approach-with-djangos-orm1Model inheritance approach with Django's ORMPhilip Möjbro2009-09-04T20:36:55Z2009-11-08T13:00:34Z
<p>Hello,</p>
<p>I want to store events in a web application I am fooling around with and I feel quite unsure about the pros and cons of each respective approach - using inheritance extensively or in a more modest manner.</p>
<p>Example:</p>
<pre><code>class Event(models.Model):
moment = models.DateTimeField()
class UserEvent(Event):
user = models.ForeignKey(User)
class Meta:
abstract = True
class UserRegistrationEvent(UserEvent):
pass # Nothing to add really, the name of the class indicates it's type
class UserCancellationEvent(UserEvent):
reason = models.CharField()
</code></pre>
<p>It feels like I'm creating database tables like crazy. It would require alot of joins to select things out and might complicate querying. But it's design feels nice, I think.</p>
<p>Would it be more reasonable to use a "flatter" model that just has more fields?</p>
<pre><code>class Event(models.Model):
moment = models.DateTimeField()
user = models.ForeignKey(User, blank=True, null=True)
type = models.CharField() # 'Registration', 'Cancellation' ...
reason = models.CharField(blank=True, null=True)
</code></pre>
<p>Thanks for your comments on this, anyone.</p>
<p>Philip</p>
http://stackoverflow.com/questions/1687065/django-recursive-relationships0django recursive relationshipsself.name2009-11-06T11:39:27Z2009-11-08T12:55:06Z
<p>My DjangoApp is using categories to generate a navigation and to put stuff in those categories.</p>
<p>There are two types of categories:</p>
<ul>
<li>ParentCategories (top categories)</li>
<li>ChildCategories (sub categories that have a ParentCategory as a parent)</li>
</ul>
<p>Because those to categories are so similar I don't want to use two different models.
This is my category model:</p>
<pre><code>class Category(models.Model):
name = models.CharField(max_length=60)
slug = models.SlugField(max_length=80, blank=True)
is_parent = models.BooleanField()
parent = models.ForeignKey('self', null=True, blank=True)
</code></pre>
<p>In my djangoadmin the parent won't be represented.
If I use python manage.py sql I get:</p>
<pre><code>CREATE TABLE "catalog_category" (
"id" integer NOT NULL PRIMARY KEY,
"name" varchar(60) NOT NULL,
"slug" varchar(80) NOT NULL,
"is_parent" bool NOT NULL
)
;
</code></pre>
<p>So the parent relationship won't even be created.</p>
<p>Is there a handy way of fixing this?</p>
<p>I know I could just alter the table but I'm flushing/deleting the database quite a lot because the app changes rapidly and I don't want to alter the table everytime manually.</p>
<p>btw: my dev db is of course sqlite3.
On the server we'll use postgresql</p>
http://stackoverflow.com/questions/1689365/show-page-items-count-in-django-pagination0Show page items count in django pagination.webgonewild2009-11-06T18:16:54Z2009-11-08T12:52:53Z
<p>Hi, everyone!</p>
<p>I'm trying to figure out how to show something like "Showing 1-10 of 52" using django pagination in my templates.</p>
<p>I accomplished the pagination itself but nothing comes to my mind about this requirement.
Any ideas?</p>
http://stackoverflow.com/questions/1690903/extending-the-admin-panel-in-django0Extending the admin panel in DjangoAdi2009-11-06T22:26:22Z2009-11-08T12:51:58Z
<p>I have several objects with some functions that I would like to be able to run via the admin panel. So far, I've not found a way to add them as actions to the admin interface.</p>
<p>Is there a way to do it?</p>
http://stackoverflow.com/questions/1695234/specific-templates-for-flatpages-in-django0Specific templates for flatpages in DjangoEeyore2009-11-08T03:08:18Z2009-11-08T12:45:56Z
<p>Is it possible to link specific templates for different flatpages in Django?</p>
<p>For example: </p>
<pre><code>/about/ -> templates/flatpages/about.html
/contact/ -> templates/flatpages/contact.html
</code></pre>
<p>This is what I have but all these pages point to the default.html template</p>
<pre><code>url(r'^(?P<url>about/)$', 'django.contrib.flatpages.views.flatpage'),
url(r'^(?P<url>contact/)$', 'django.contrib.flatpages.views.flatpage'),
url(r'^(?P<url>feedback/)$', 'django.contrib.flatpages.views.flatpage'),
</code></pre>
http://stackoverflow.com/questions/1346905/how-to-add-a-user-to-django-tagging0How to add a user to django-taggingservicesfourchette2009-08-28T13:15:06Z2009-11-08T06:00:02Z
<p>I'm looking for a way to add "user = models.ForeignKey(User, editable=False)" to django-tagging model with templatetags support but my django knowledge is too low to understand the code of django-tagging.</p>
http://stackoverflow.com/questions/1460328/django-imagekit-how-to-reduce-image-quality-with-a-preprocessorspec0Django-imagekit: how to reduce image quality with a preprocessor_spec ?pierre-guillaume-degans2009-09-22T14:09:07Z2009-11-08T03:41:58Z
<p>Hi, please excuse me for my ugly english :p</p>
<p>I've created this simple model class, with a Preprocessor to reduce my
photos'quality (the photos'extension is .JPG):</p>
<pre><code>from django.db import models
from imagekit.models import ImageModel
from imagekit.specs import ImageSpec
from imagekit import processors
class Preprocessor(ImageSpec):
quality = 50
processors = [processors.Format]
class Picture(ImageModel):
image = models.ImageField(upload_to='pictures')
class IKOptions:
preprocessor_spec = Preprocessor
</code></pre>
<p>The problem : pictures'quality are not reduced. :(
Any idea to fix it ?</p>
<p>Thank you very much ;)</p>
http://stackoverflow.com/questions/1695180/weekly-based-populating-a-database-with-the-django-admin0Weekly-based populating a database with the django adminPablo2009-11-08T02:42:22Z2009-11-08T02:42:22Z
<p>I'm building an small django app in order to manage a store employees roster.
The employees are freelancers-like, they have weekly almost-fixed schedules, and may ask for extra ones at any weekday/time.</p>
<p>I'm new to both python and django, and I'm using the django admin.</p>
<p>Everything works fair enough (for me) when I "manually" add a "Turno" (work assignment, I'm not sure, it probably would be "Shift" in English?).</p>
<p>I need some way of adding the weekly fixed Turnos (all at once, and not "manually" one by one) through the django admin, say setting a weekday, the begining and ending times, and a stop date two (or three) months in advance ... How?</p>
<p><strong>Any</strong> kind of help will be great, I'm not asking to you people to make out my duty.</p>
<p>Here is my models.py:</p>
<pre><code>from django.db import models
from django.contrib.auth.models import User
import datetime
class Dia(models.Model):
fecha = models.DateField(unique=True)
class Meta:
ordering = ['fecha']
def __unicode__(self):
return (self.fecha.strftime('%A %d de %b de \'%y'))
class Turno(models.Model):
dia = models.ForeignKey(Dia)
perfil_usuario = models.ForeignKey(User, verbose_name="Usuario")
comienza = models.TimeField()
finaliza = models.TimeField()
comentarios = models.TextField(blank=True, null=True)
def __unicode__(self):
return self.dia.fecha.strftime('%A %d de %b de \'%y') + ' - ' + self.perfil_usuario.username
</code></pre>
<p>And here is my admin.py</p>
<pre><code>from roquen.horarios.models import Turno, Dia
from django.contrib.auth.models import User
from django.contrib import admin
from django import forms
admin.site.register(Dia)
class TurnoAdminForm(forms.ModelForm):
class Meta:
model = Turno
def clean_finaliza(self):
data = self.cleaned_data['finaliza']
if data <= self.cleaned_data['comienza']:
raise forms.ValidationError('La hora de fin debe ser posterior a la de comienzo')
return data
class TurnoAdmin(admin.ModelAdmin):
form = TurnoAdminForm
list_display = ['dia', 'perfil_usuario', 'comienza', 'finaliza']
admin.site.register(Turno, TurnoAdmin)
</code></pre>
http://stackoverflow.com/questions/1694809/django-form-submit-buttons-onclick-does-not-call-javascript-function0Django form submit button's onclick does not call JavaScript functiontomlog2009-11-07T23:30:59Z2009-11-08T00:31:25Z
<p>I have a Django form that needs to do some client-side validation before submitting the form. This is the code in the template:</p>
<pre><code><form action="/{{ blog_entry.id }}/addComment/" method="post">
{{ commentForm.name.label_tag }}
{{ commentForm.name }}
<span id="spanNameReq" style="color:Red; display:none;">Required</span>
<br />
{{ commentForm.email.label_tag }}
{{ commentForm.email }}
<span id="spanEmailReq" style="color:Red; display:none;">Required</span>
<span id="spanEmailInvalid" style="color:Red; display:none;">Invalid e-mail address</span>
<br />
{{ commentForm.website.label_tag }}
{{ commentForm.website }}
<span id="spanWebsiteInvalid" style="color:Red; display:none;">Invalid URL</span>
<br />
{{ commentForm.comment.label_tag }}
<span id="spanCommentReq" style="color:Red; display:none;">Required</span>
<br />
{{ commentForm.comment }}
<br />
<input type="submit" value="Add comment" onclick="javascript:var ret = validateComment(); return ret;" />
</form>
</code></pre>
<p>But the problem is that validateComment does not get called at all, and the form gets submitted straight away.
Strangely enough if I replace the onclick event with</p>
<pre><code>javascript:alert('test');
</code></pre>
<p>or</p>
<pre><code>javascript:return false;
</code></pre>
<p>that JS code gets executed fine (and in the second case it won't submit the form).</p>
<p>Why does it not execute the function I specified?
Just to confirm that I have included the script file in the HTML head (including the JS code embedded in the template does not make a difference), and if I don't use a Django form, but a normal HTML form it works fine.</p>
http://stackoverflow.com/questions/1641008/how-to-store-arbitrary-name-value-key-pairs-in-a-django-model3How to store arbitrary name/value key pairs in a Django model?MikeN2009-10-29T00:37:19Z2009-11-08T00:28:06Z
<p>I have a fixed data model that has a lot of data fields.</p>
<pre>
class Widget(Models.model):
widget_owner = models.ForeignKey(auth.User)
val1 = models.CharField()
val2 = models.CharField()
...
val568 = ...
</pre>
<p>I want to cram even more data into this Widget by letting my users specify custom data fields. What's a sane way to do this? Is storing name/value pairs where the user can specify additional "Widget fields" a good idea? My pseudo thoughts are below:</p>
<pre>
data_types = ('free_text', 'date', 'integer', 'price')
class CustomWidgetField(models.Model)
owner = ForeignKey(auth.User)
field_title = models.CharField(auth.User)
field_value_type = models.CharField(choices = data_types)
class CustomWidgetValue(models.Model)
field_type = ForeignKey(CustomWidgetField)
widget = ForeignKey(Widget)
value = models.TextField()
</pre>
<p>So I want to let each user build a new type of data field that will apply to all of their widgets and then specify values for each custom field in each widget. I will probably have to do filtering/searching on these custom fields just as I would on a native field (which I assume will be much slower than operating on native fields.) But the scale is to have a few dozen custom fields per Widget and each User will only have a few thousand Widgets in their inventory. I can also probably batch most of the searching/filtering on the custom fields into a backend script (maybe.)</p>
http://stackoverflow.com/questions/1637122/what-is-the-maximum-size-of-document-to-return-from-a-rest-api2What is the maximum size of document to return from a REST API? Mark2009-10-28T13:03:18Z2009-11-07T22:43:07Z
<p>I am considering creating a <a href="http://en.wikipedia.org/wiki/Representational%5FState%5FTransfer#RESTful%5Fweb%5Fservices" rel="nofollow">RESTful web service</a> which will return a lot of data. What do people think is the maximum size of xml document that should be returned in one get from a web services API? I would estimate the size of the result set to be 100Mb and time to produce this would be about 2h. </p>
<p>How much time is a reasonable maximum for the server to be calculating a result set before returning the document?</p>
<p>The web server is <a href="http://en.wikipedia.org/wiki/Apache%5FHTTP%5FServer" rel="nofollow">Apache</a> using django on <a href="http://en.wikipedia.org/wiki/Mod%5Fpython" rel="nofollow">mod_python</a>.</p>
<p>The web service would only be called once or twice a day.</p>
<p>Are there any special configuration options I should enable to make this work on the Apache/mod_python/django stack.</p>
http://stackoverflow.com/questions/1693399/how-do-i-do-a-if-a-in-listb-test-in-django-0-96-templates0How do I do a if a in list_b test in Django 0.96 Templates?Johan Carlsson2009-11-07T15:25:16Z2009-11-07T22:35:14Z
<p>How do I do a if a in list_b test in Django 0.96 Templates?</p>
<p>I'm having a list of checkboxes and a variable containing a list of corresponding values from a previous submit of the checkboxes.</p>
<p>Now I want to set all checkboxes in the list to checked="checked" and I usually use a "if a in listb" test for this. But this doesn't seem to be possible in Django 0.96 templates?</p>
http://stackoverflow.com/questions/1694050/how-do-i-add-a-prefix-to-all-urls-and-generically-parse-that-as-a-kwarg0How do I add a prefix to all urls and generically parse that as a kwargtee2009-11-07T18:58:23Z2009-11-07T22:27:58Z
<p>Let's say I have a site where all urls are username specific. </p>
<p>For example /username1/points/list is a list of that user's points. </p>
<p>How do I grab the /username1/ portion of the url from all urls and add it as a kwarg for all views?</p>
<p>Alternatively, it would be great to grab the /username1/ portion and append that to the request as request.view_user.</p>
http://stackoverflow.com/questions/1694447/how-to-set-an-event-handler-in-a-django-form-input-field0how to set an event handler in a django form input fieldAlex. S.2009-11-07T21:17:50Z2009-11-07T21:35:55Z
<p>How to set a javascript function as handler in the event onclick in a given field of a Django Form. Is this possible?</p>
<p>Any clue would be appreciated.</p>
http://stackoverflow.com/questions/1693584/yslow-best-practices-with-django-apps-how-to-implement-them1YSlow Best Practices with Django apps, How to implement them?panchicore2009-11-07T16:31:49Z2009-11-07T21:01:30Z
<p>Hi,</p>
<p>I have an django 1.1.1 app, actually in developement, thinking in best practices I ran the YSlow test (Grade E Ruleset applied: YSlow V2 ) it recomends:</p>
<blockquote>
<blockquote>
<p><b>Grade F on Add Expires headers</b></p>
<p><i>-There are 37 static components without a far-future expiration date.</i></p>
<p><b>Grade F on Use a Content Delivery Network (CDN)</b></p>
<p><i>-There are 37 static components that are not on CDN. </i></p>
<p><b>Grade F on Compress components with gzip</b></p>
<p><i>-There are 17 plain text components that should be sent compressed</i></p>
</blockquote>
</blockquote>
<p>How can I implement it with Django?</p>
<p>More context: Python 2.5, deployment at webfaction</p>
<p>Example:</p>
<blockquote>
<blockquote>
<p><b>Grade F on Make fewer HTTP requests</b></p>
<p><i>This page has 14 external Javascript scripts. Try combining them into one.
This page has 4 external stylesheets. Try combining them into one.</i></p>
<p><b>Can be solved with <a href="http://code.google.com/p/django-compress/" rel="nofollow">Django-Compress</a></b></p>
</blockquote>
</blockquote>