active questions tagged python+django - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T05:59:43Z http://stackoverflow.com/feeds/tag/python+django http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1944064/why-isnt-count-working-the-way-i-expect-in-my-code -1 Why isn't count() working the way I expect in my code? zjm1126 2009-12-22T03:48:09Z 2009-12-22T05:05:47Z <pre><code>class FriendshipManager(models.Manager): def are_friends(self, user1, user2): if self.filter(from_user=user1, to_user=user2).count() &gt; 0: return True if self.filter(from_user=user2, to_user=user1).count() &gt; 0: return True return False </code></pre> <p>and i found count() so i try it, but it runs wrong</p> <pre><code>a=[1,2,3,4] print a.count() </code></pre> <p>or</p> <pre><code>a='ssada' print a.count() </code></pre> <p>why my code run wrong,but the FriendshipManager can run ,thanks Please try to use the code, rather than text, because my English is not very good, thank you</p> http://stackoverflow.com/questions/1943510/how-to-redirect-to-a-newly-created-object-in-django-without-a-generic-views-post 0 How to redirect to a newly created object in Django without a Generic View's post_save_redirect argument Trey Piepmeier 2009-12-22T00:30:56Z 2009-12-22T00:36:32Z <p>I'm trying to redirect a user to a newly created object's <code>object.get_absolute_url()</code> after saving a form. I'm not using a generic view, so I can't use the <code>post_save_redirect</code> argument. The relevant portion of the <code>view</code> is like so:</p> <pre><code>if form.is_valid(): form.save() return HttpResponseRedirect(reverse('story_detail', args=(story.user, story.id))) </code></pre> <p>Now how would I get at the <code>story</code> object between the <code>form.save()</code> and the <code>HttpResponseRedirect</code> so that I can do the <code>reverse</code> lookup?</p> http://stackoverflow.com/questions/1940459/changing-properties-of-inherited-field 0 Changing properties of inherited field Sam 2009-12-21T14:38:56Z 2009-12-22T00:22:23Z <p>I want to alter properties of a model field inherited from a base class. The way I try this below does not seem to have any effect. Any ideas? </p> <pre><code>def __init__(self, *args, **kwargs): super(SomeModel, self).__init__(*args, **kwargs) f = self._meta.get_field('some_field') f.blank = True f.help_text = 'This is optional' </code></pre> http://stackoverflow.com/questions/1938577/how-to-handle-non-managed-models-in-unittests 0 How to handle non managed models in unittests. googletorp 2009-12-21T06:49:26Z 2009-12-21T23:11:25Z <p>In a project I'm working on, I have an app with models that aren't managed by Django. The reason is, that I want to do some postgres specific SQL in some cases, so I needed more fined grained control over how the tables for the models are created.</p> <p>This is all working out great, but I have found a problem when I wanted to write some tests for my project. I have a model in my app, that is managed by Django, but has a FK relation to one of the models that I manage myself. This gives errors when Django tries to create the test database, because it can't create the FK relation to a non existing table.</p> <p>After having browsed the docs, looked at signals etc, I haven't been able to figure out how I can run my create table SQL. In my case this is pretty simple, as I just have to run it after the db is created but before the tables for the other models are created.</p> <p>Since this is something that Django allows, I would have thought that there would be a standard way to handle it. Since my custom db tables don't have FK relations, my case is simple, but I could imagine other cases, where it would be a lot more difficult set the right order of the db creation.</p> <p>So, what I would like to ask is, how do you create tables for the models that aren't managed by Django. Is there a signal that I can listen for and use to create my tables in time, or is there some standard way to handle this problem, that I just haven't been able to find?</p> <p><strong>Edit (in remarks to S.Lott)</strong><br> I decided to update my answer instead of writing a comment, since it would be a bit long, and possibly unformatted. Anyways.</p> <p>Your first step 1, 2, 3 is not of much use. The nice thing I didn't know was that you could do was:</p> <blockquote> <p>...For each app, Django looks for a file called /sql/..sql,...</p> </blockquote> <p>This fails to be of any help, as this process happens after the tables are created in the test database. I wont get that far because the custom SQL needs to be installed before the tables is created. Else the tables won't be in place to be linked to with a FK. Django can figure this out - the order in which to create the tables - but only when it manages the model. In this case I need to manage it, to create the tables the way I need.</p> <p>I don't quite understand what you mean by, "Put your non-Django model into Django". I already have a model in Django, it's just not managed by Django. If I removed this line in the meta class.</p> <pre><code>class Model(models.Model): ... class Meta: managed = False # Remove this line. </code></pre> <p>I could create the test database. Now Django will know which order to create the tables. This wouldn't be very useful as I wouldn't be able to test the areas that use the specific table setup.</p> <p>What I would like to do, is create the tables myself, instead of Django doing it. I didn't think it would be that much of a pain, since Django freely gives the option to manage the database yourself.</p> <h1>Edit 2:</h1> <p>What I want is to create the <code>tsvector</code> postgres specific data type. It's used for search and will allow us to use use some of the nice stuff built into postgres. It's not me that is going to build this search as that's not something I've studied yet, so can't really discuss if it's the best idea. But in any regard that's what's been desided and my problem remain. </p> http://stackoverflow.com/questions/1934914/why-use-django-on-google-app-engine 6 Why use Django on Google App Engine? Travis Bradshaw 2009-12-20T05:03:45Z 2009-12-21T21:46:36Z <p>When researching Google App Engine (GAE), it's clear that using Django is wildly popular for developing in Python on GAE. I've been scouring the web to find information on the costs and benefits of using Django, to find out <em>why</em> it's so popular. While I've been able to find a wide variety of sources on <em>how</em> to run Django on GAE and the various methods of doing so, I haven't found any comparative analysis on <em>why</em> Django is preferable to using the webapp framework provided by Google.</p> <p>To be clear, it's immediately apparent why using Django on GAE is useful for developers with an existing skillset in Django (a majority of Python web developers, no doubt) or existing code in Django (where using GAE is more of a porting exercise). My team, however, is evaluating GAE for use on an all-new project and our existing experience is with TurboGears, not Django.</p> <p>It's been quite difficult to determine why Django is beneficial to a development team when the BigTable libraries have replaced Django's ORM, sessions and authentication are necessarily changed, and Django's templating (if desirable) is available without using the entire Django stack.</p> <p>Finally, it's clear that using Django does have the advantage of providing an "exit strategy" if we later wanted to move away from GAE and need a platform to target for the exodus.</p> <p>I'd be extremely appreciative for help in pointing out <em>why</em> using Django is better than using webapp on GAE. I'm also completely inexperienced with Django, so elaboration on smaller features and/or conveniences that work on GAE are also valuable to me.</p> <p>Thanks in advance for your time!</p> http://stackoverflow.com/questions/1941511/why-does-django-throw-an-exception-whenever-i-enable-admin-autodiscover 0 Why does Django throw an exception whenever I enable admin.autodiscover()? letsgofast 2009-12-21T17:37:28Z 2009-12-21T18:18:07Z <p>Here is my setup. I am using Django version 1.1.1 on Dreamhost, Python 2.4. The problem I am having is whenever I create a simple app and also have admin.autodiscover() enabled, Django will throw an exception. My setup:</p> <pre><code>from django.conf.urls.defaults import * from testapp.views import HelloWorld from django.contrib import admin admin.autodiscover() urlpatterns = patterns('', (r'^HelloWorld/$', HelloWorld), # Uncomment the admin/doc line below and add 'django.contrib.admindocs' # to INSTALLED_APPS to enable admin documentation: (r'^admin/doc/', include('django.contrib.admindocs.urls')), # Uncomment the next line to enable the admin: (r'^admin/', include(admin.site.urls)), ) </code></pre> <p>My settings.py looks like:</p> <pre><code>INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.admin', 'django.contrib.admindocs', 'testapp', ) </code></pre> <p>My testapp.views looks like:</p> <pre><code>from django.http import HttpResponse def HelloWorld(request): return HttpResponse("Hello world") </code></pre> <p>If I comment out admin.autodiscover() I can get to my view of HelloWorld. If I enable admin.autodiscover() Django throws an exception that I am not able to trap.</p> <p>Does anyone know why this might be happening and what I can do to fix it?</p> http://stackoverflow.com/questions/1779055/problem-with-logic-in-django-template 0 Problem with logic in Django template Juanjo Conti 2009-11-22T15:34:45Z 2009-12-21T17:17:58Z <p>Supose this portion of a Django template. regs is a list of Reg objects. Reg.editable is a BooleanField. I want to render a radio button per element in the list. If r.editable is False, the radio button must be disabled:</p> <pre><code>{% for r in regs %} &lt;input type="radio" value="{{ forloop.counter }}" {% if forloop.first %}checked="checked"{% endif %} {% if not r.editable %}disabled="disabled"{% endif %}/&gt; {% endfor %} </code></pre> <p>As you can see, I'm using forloop.first to check the first radio button, but this has a problem! What about if the first element has editable == False? The first radio button will be rendered disabled and chequed. If then a user submit "the form" I'll receive a value not expected.</p> <p>Am I clear with the problem here? How can I rewrite this template to render as checked the FIRST ENABLED radio button?</p> <p>Thanks</p> http://stackoverflow.com/questions/1941362/redirect-with-additional-variables 0 Redirect with additional variables andrew 2009-12-21T17:08:52Z 2009-12-21T17:10:38Z <p>Hello.</p> <p>I have view which in some cases redirects user to another addres. How can I redirect user, with additional variables (not GET, beacause that variable can be long text)? Currently I'm using HttpResponseRedirect.</p> <p>Cheers.</p> http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications 20 What Hosting Service is best for Django applications? Justin Standard 2008-08-05T19:24:58Z 2009-12-21T16:45:12Z <p>I have been using django a great deal lately and would like to find a home to host my apps.</p> <p>What is the <strong>best</strong> django web host? (<em>Official django support preferred</em>)</p> <p>Which service has the lowest price (<em>without a long contract</em>)?</p> http://stackoverflow.com/questions/1885594/django-vps-or-shared-hosting 1 Django: vps or shared hosting? barin 2009-12-11T03:19:16Z 2009-12-21T16:24:39Z <p>I am new to web development and everything involved with it. Im finishing my website in django and i will soon have to find a hosting and deploy it. I heard there are vps or shared hosting types. So here are the questions:<br> 1. How many visits/clicks per day make it worth choosing vps? shared?<br> 2. How hard is it to tune and maintain a vps on your own if you're new to everything!<br> 3. If i ask hosting providers to help me deploy my site - will they help? (shared, vps)<br> 4. Is vps with 256mb memory much faster than shared hosting?<br> 5. If i want to host many sites on one hosting - is vps more suitable for that?<br> 6. Can i host php, django and other stuff on one hosting simultaniously?<br> 7. Should i know something else to make a decision?</p> http://stackoverflow.com/questions/1118835/which-are-good-python-django-hosting-solutions 7 Which are good Python - Django hosting solutions? Jox 2009-07-13T10:59:54Z 2009-12-21T16:03:17Z <p>I'm looking for a hosting provider for my Python-Django project.</p> <p>I need suggestions in terms of both shared space and managed server solutions. Of course, in case of shared space, Python execution through CGI is not an option.</p> <p>For now, I'm concerning Slicehost or Linode... Anyone with other recommendations?</p> <p>Thanx</p> http://stackoverflow.com/questions/1940528/django-index-page-best-most-common-practice 3 Django index page best/most common practice. Chris McDonald 2009-12-21T14:51:08Z 2009-12-21T15:33:37Z <p>I am working on a site currently (first one solo) and went to go make an index page. I have been attempting to follow django best practices as I go, so naturally I go search for this but couldn't a real standard in regards to this.</p> <p>I have seen folks creating apps to serve this purpose named various things (main, home, misc) and have seen a views.py in the root of the project. I am really just looking for what the majority out there do for this.</p> <p>The index page is not static, since I want to detect if the user is logged in and such.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1937960/geodjango-distance-search 1 GeoDjango distance search hekevintran 2009-12-21T03:06:39Z 2009-12-21T13:32:03Z <p>I want to use GeoDjango to do basic location searches. Specifically I want to give the search function a ZIP code/city/county and find all the ZIP codes/cities/counties within 5mi, 10mi, 20mi, etc. I found the following paragraph in the documentation:</p> <blockquote> <p>Using a geographic coordinate system may introduce complications for the developer later on. For example, PostGIS does not have the capability to perform distance calculations between non-point geometries using geographic coordinate systems, e.g., constructing a query to find all points within 5 miles of a county boundary stored as WGS84. [6]</p> </blockquote> <p>What does this exactly mean if I want to use PostGIS and to be able to do the searches described above across the USA? The docs suggest using a projected coordinate system to cover only a specific region. I need to cover the whole country so this I suppose is not an option.</p> <p>Basically in the end I want to be able to find neighbouring ZIP codes/cities/counties given a starting location and distance. I don't really care how this is done on a technical level.</p> <p>Also where would I find a database that contains the geographic boundaries of ZIP codes/cities/counties in the USA that I can import into a GeoDjango model?</p> <p><strong>UPDATE</strong></p> <p>I found a database of that contains the latitude and longitude coordinates of all ZIP codes in the USA <a href="http://zips.sourceforge.net/" rel="nofollow">here</a>. My plan is to import these points into a GeoDjango model and use PostGis to construct queries that can find other points within x miles from a given point. This gets around the issue raised in the documentation because all the ZIP codes are treated as points instead of as polygons. This is fine for my use case because perfect accuracy is not something I care about.</p> <p>The good: the data file is free</p> <p>The bad: this data is from the 2000 census so it is quite dated</p> <p>The somewhat hopeful: the United States Census Bureau conducts a census every 10 years and it is almost 2010</p> <p>The conclusion: it's good enough for me</p> http://stackoverflow.com/questions/50568/django-sessions 11 Django Sessions Dave 2008-09-08T20:16:16Z 2009-12-21T11:21:56Z <p>I'm looking at sessions in Django, and by default they are stored in the database. What are the benefits of filesystem and cache sessions and when should I use them?</p> http://stackoverflow.com/questions/1938609/does-anyone-had-success-getting-django-to-send-emails-when-hosting-on-dreamhost 0 Does anyone had success getting Django to send emails when hosting on Dreamhost? letsgofast 2009-12-21T06:57:48Z 2009-12-21T11:04:02Z <p>Greetings,</p> <p>Does anyone know what are the required fields to have Django send emails when a "500 Internal Server Error" happend? I am hosting my project on Dreamhost and for the life of me I can't get Django to send emails. What are the required fields when hosting on Dreamhost?</p> http://stackoverflow.com/questions/1928087/django-mysql-utf-8-chars-are-not-displayed 0 django + mysql + UTF-8 - Chars are not displayed fabriciols 2009-12-18T13:04:13Z 2009-12-21T09:43:23Z <p>I have both, django and mysql set to work with UTF-8. My base.html set utf-8 in head.</p> <p>row on my db :</p> <pre> +----+--------+------------------------------------------------------------------+-----------------------------+-----------------------------+---------------------+ | id | psn_id | name | publisher | developer | release_date | +----+--------+------------------------------------------------------------------+-----------------------------+-----------------------------+---------------------+ | 1 | 10945- | &#12414;&#12356;&#12395;&#12385;&#12356;&#12387;&#12375;&#12423; | Sony Computer Entertainment | Sony Computer Entertainment | 2006-11-11 00:00:00 | +----+--------+------------------------------------------------------------------+-----------------------------+-----------------------------+---------------------+ </pre> <p>the source code generated looks like :</p> <pre> &amp;#12414;&amp;#12356;&amp;#12395;&amp;#12385;&amp;#12356;&amp;#12387;&amp;#12375;&amp;#12423; </pre> <p>and this is wat is displayed :/</p> <p>why they are not showing the chars the way in this database?</p> http://stackoverflow.com/questions/1937682/python-django-string-rendering-issue 1 python django string rendering issue Fahim Akhter 2009-12-21T00:59:10Z 2009-12-21T02:27:10Z <p>hi, I'm trying to render a string into a javascript ( which usually works fine for me ) here's my code</p> <p>HTML:</p> <pre><code>THE USER NAME IS : {{name}} has added app {{has_added_app}} </code></pre> <p>JAVA SCRIPT: </p> <pre><code>&lt;script&gt; &lt;!-- var userName = {{name}} </code></pre> <p>The html version works the javascript fails when I have tried the same rendering in javascript before and it worked.</p> http://stackoverflow.com/questions/1883098/excel-and-django 0 Excel and Django liminal 2009-12-10T18:39:35Z 2009-12-20T23:57:08Z <p>I have an excel spreadsheet with calculations I would like to use in a Django web application. I do not need to present the spreadsheet as it appears in excel. I only want to use the formulae embedded in it. What is the best way to do this?</p> http://stackoverflow.com/questions/1901567/solr-facet-range-with-integers 0 Solr Facet Range with Integers Mark 2009-12-14T15:28:45Z 2009-12-20T22:45:30Z <p>My index contains peoples information, name, age, phone email etc.</p> <p>I am faceting on Age. I group ages kinda like Date Range functionality. </p> <p>My ranges are:</p> <pre><code> 0 to 10 11 to 20 21 to 30 31 to 40 etc etc </code></pre> <p>When I do a query:</p> <pre><code> ?q=*:*&amp;facet=true&amp;fq=age:[21+TO+30] </code></pre> <p>It returns all the ages I want in the range 21 to 30, but it also returns the age 3.</p> <pre><code> ?q=*:*&amp;facet=true&amp;fq=age:[11+TO+20] </code></pre> <p>this does the same thing, but it returns the age 2.</p> <pre><code> ?q=*:*&amp;facet=true&amp;fq=age:[0+TO+10] </code></pre> <p>this does the same thing, but it returns the age 1. Can anyone explain this to me - is it a in solr?</p> http://stackoverflow.com/questions/1934188/setting-an-alias-to-a-django-plug-in-app 1 Setting an alias to a Django "plug-in" app Evgeny 2009-12-19T21:24:09Z 2009-12-20T20:30:08Z <p>Hello,</p> <p>is there some pythonic way to load a django app trough an alias name? This I think would be one way to make an app more "pluggable-friendly".</p> <p>there is a pattern used in settings.py:</p> <pre><code>INSTALLED_APPS = ('... ','...', ) </code></pre> <p>where <code>INSTALLED_APPS</code> is a tuple containing names of apps. That's fine, but I don't want to put in certain apps explicitly this way.</p> <p>I would like to have an <strong>app handle</strong> named say <code>external_login_app</code> mapping to <code>drupal_login</code> or <code>mediawiki_login</code> (to be supplied by the end user or a third party), where name of the actual custom module/app is provided by a string variable in settings.py</p> <p>The pluggable part (e.g. <code>mediawiki_login</code>) must be a full-fledged app with it's own views, models, forms, etc, while <code>external_login_app</code> must be accessible anywhere in the rest of the code.</p> <p>The goal here is to decouple distributed code from plugins like that.</p> <p><strong>edit 1:</strong> here is what I'm trying:</p> <p>in settings.py</p> <pre><code>EXTERNAL_LOGIN = __import__(EXTERNAL_LOGIN_APP) #setting name must be upper case according to #django docs </code></pre> <p>but my custom login app depends on the settings file too, so looks like I have a circular import problem with errors like <code>module external_login does not have attribute views</code>. This problem seems to be very insidious, as I am unable to use even simple things like <code>render_to_response</code> shortcut in views imported with <code>__import__</code> statement in settings.py.</p> <p><strong>edit 2:</strong> after trying a while I found that using <code>__import__()</code> in settings.py call won't work because of almost inevitable circular dependencies</p> <p>The best working method I found so far is to place <code>__import__()</code> calls into other .py files of the app providing the generic "consumer" interface - the one that calls the plugin functions:</p> <p>in <code>settings.py</code>: as <a href="http://stackoverflow.com/users/232707/michal-marczyk">MichaƂ</a> suggests in his answer</p> <pre><code>EXTERNAL_LOGIN_APP = 'drupal_login' INSTALLED_APPS = ( '...', EXTERNAL_LOGIN_APP, ) </code></pre> <p>e.g. in <code>app/views.py</code>:</p> <pre><code>from django.conf import settings EXTERNAL_LOGIN = __import__(settings.EXTERNAL_LOGIN_APP, \ [], [], ['api','forms']) def login_view(request, external=False): if external: form = EXTERNAL_LOGIN.forms.LoginForm(request.POST) if form.is_valid(): login = form.cleaned_data['login'] password = form.cleand_data['password'] if EXTERNAL_LOGIN.api.check_password(login, password): #maybe create local account, #do local authentication #set session cookies for the #external site to synchronize logins, etc. </code></pre> http://stackoverflow.com/questions/1931008/is-there-a-clever-way-to-get-the-previous-next-item-using-the-django-orm 5 Is there a clever way to get the previous/next item using the Django ORM? Jason Christa 2009-12-18T22:18:49Z 2009-12-20T19:24:25Z <p>Say I have a list of photos ordered by creation date, as follows:</p> <pre><code>class Photo(models.Model): title = models.Char() image = models.Image() created = models.DateTimeField(auto_now_add=True) class Meta: ordering = ('-created',) </code></pre> <p>I have an arbitrary Photo object photo_x. Is there an easy way to find the previous and next photos by position in the queryset? Also, I would like to wrap around if I am at the beginning/end and have it not fail if the are only 1 or 2 photos.</p> http://stackoverflow.com/questions/1936080/can-i-do-django-python-web-development-using-xcode-3-2 0 Can I do Django & Python web development using Xcode 3.2? openfrog 2009-12-20T15:06:02Z 2009-12-20T16:06:07Z <p>I'm not sure but I believe that Python is -next to Objective-C- somewhat natural to Mac OSX and the Xcode IDE. I might be wrong. So is it a good idea to use Xcode for Django / Python web development when I'm already a bit familiar with Xcode? Actually I only do iPhone dev with it, but now I need a website and I stumbled over Django / Python. I don't want to "fall back" to PHP again, because just everyone and his dog does that already. Want to give Django / Python a try ;)</p> http://stackoverflow.com/questions/1928098/fbpromt-permission-gives-me-a-link-i-need-a-direct-popup 0 fb:promt-permission gives me a link, I need a direct popup Fahim Akhter 2009-12-18T13:06:28Z 2009-12-20T07:27:50Z <p>Hi, </p> <p>I'm using Django/Python , I need to ask the user for permission to let me put feeds ( ideally oneliners which was not working so I thought to use full streams) into the user profile. </p> <p>Would you like to receive email from our application?</p> <p>This is giving me a hyper link which I click and it shows me the permission box. What is need for this to happen is after the end of the game it automatically prompts for it and then publishes. Which isn't really working. </p> <p>Thanks :) </p> http://stackoverflow.com/questions/414679/add-class-to-django-labeltag-output 1 Add class to Django label_tag() output ashchristopher 2009-01-05T22:05:15Z 2009-12-19T23:04:51Z <p>I need some way to add a class attribute to the output of the label_tag() method for a forms field. </p> <p>I see that there is the ability to pass in an attrs dictionary and I have tested it in the shell and I can do something like:</p> <pre><code>for field in form: print field.label_tag(attrs{'class':'Foo'}) </code></pre> <p>I will see the class='Foo' in my output, but I don't see a way to add an attrs argument from the template - in fact, templates are designed specifically against that, no?</p> <p>Is there a way in my form definition to define the class to be displayed in the label?</p> <p>In the form, I can do the following to give the inputs a class</p> <pre><code>self.fields['some_field'].widget.attrs['class'] = 'Foo' </code></pre> <p>I just need to have it output the class for the as well.</p> http://stackoverflow.com/questions/519671/is-there-a-haml-implementation-for-use-with-python-and-django 6 Is there a HAML implementation for use with Python and Django Ber 2009-02-06T09:30:01Z 2009-12-19T21:33:50Z <p>I happened to stumble across <a href="http://haml.hamptoncatlin.com/" rel="nofollow">HAML</a>, an interesting and beautiful way to mark up contents and write templates for HTML.</p> <p>Since I use Python and Django for my web developing need, I would like to see if there is a Python implementation of HAML (or some similar concepts -- need not be exactly identical) that can be used to replace the Django template engine.</p> http://stackoverflow.com/questions/1931673/python-post-large-files-to-django 0 python post large files to django Laurent Luce 2009-12-19T01:49:09Z 2009-12-19T10:12:30Z <p>I am trying to find the best way (most efficient way) to post large files from a python application to a Django server.</p> <p>If I rely on raw_post_data on the Django side then all the content needs to be in RAM before I can read it which doesn't seem efficient at all if the file received is 100s of megs.</p> <p>Is it better to use the file uploads methods Django has. This means using a multipart/form-data post.</p> <p>or maybe something better ?</p> <p>Laurent</p> http://stackoverflow.com/questions/429443/syncing-django-users-with-google-apps-without-monkeypatching 1 Syncing Django users with Google Apps without monkeypatching thirtyseven 2009-01-09T19:49:53Z 2009-12-19T06:00:02Z <p>I am writing a Django app, and I would like an account to be created on our Google Apps hosted email using the Provisioning API whenever an account is created locally.</p> <p>I would solely use signals, but since I would like the passwords to be synchronized across sites, I have monkeypatched <code>User.objects.create_user</code> and <code>User.set_password</code> using wrappers to create Google accounts and update passwords respectively.</p> <p>Monkeypatching seems to be frowned upon, so I would to know, is there a better way to accomplish this?</p> http://stackoverflow.com/questions/1931708/django-1-1-date-based-generic-view-problem-archiveyear-archivemonth-archive 0 Django 1.1 date-based generic view problem - archive_year, archive_month, archive_day ~knny-myer 2009-12-19T02:11:09Z 2009-12-19T02:18:09Z <p>I'm on my first Django blog and when trying to get the posts by year, month and day, using the built-in generic view from Django, but I don't get proper results. <em>(Sorry for my non-professional first question.. if someone knows what is the appropriate question, please let me know)</em></p> <p>Well, I think it's better to show you my configuration to make yourself a better picture:</p> <h2>Complete blog URLconf:</h2> <pre><code>from django.conf.urls.defaults import * from weblog.models import Entry entry_info_dict = { 'queryset': Entry.published, 'date_field': 'pub_date', 'template_object_name': 'Entry', } urlpatterns = patterns('django.views.generic.date_based', (r'^$', 'archive_index', entry_info_dict, 'weblog_entry_archive_index'), (r'^(?P&lt;year&gt;\d{4})/$', 'archive_year', entry_info_dict, 'weblog_entry_archive_year'), (r'^(?P&lt;year&gt;\d{4})/(?P&lt;month&gt;\w{3})/$', 'archive_month', entry_info_dict, 'weblog_entry_archive_month'), (r'^(?P&lt;year&gt;\d{4})/(?P&lt;month&gt;\w{3})/(?P&lt;day&gt;\d{2})/$', 'archive_day', entry_info_dict, 'weblog_entry_archive_day'), (r'^(?P&lt;year&gt;\d{4})/(?P&lt;month&gt;\w{3})/(?P&lt;day&gt;\d{2})/(?P&lt;slug&gt;[-\w]+)/$', 'object_detail', entry_info_dict, 'weblog_entry_detail'), ) </code></pre> <h2>urls.py:</h2> <pre><code>urlpatterns = patterns('', (r'^blog/', include('weblog.urls.entries')), ... ) </code></pre> <h2>entry_archive_year.html:</h2> <pre><code> &lt;h2&gt;Archive for {{ year }}&lt;/h2&gt; &lt;ul&gt; {% for month in pub_date %} &lt;li&gt; &lt;a href="/blog/{{ year }}/{{ month|date:"b" }}/"&gt;{{ month|date:"F" }}&lt;/a&gt; &lt;/li&gt; {% endfor %} &lt;/ul&gt; </code></pre> <p>Supposing I have the following blog entry:</p> <p>example.com/blog/2009/dec/18/test</p> <p>and now request </p> <p>example.com/blog/2009/</p> <p>I get no objects, though when giving the full URL the post is shown.</p> <p><strong>I think Django is failing silently somewhere, though it's in DEBUG mode, and I can't figure out where. I'd appreciate any support with this one.</strong></p> http://stackoverflow.com/questions/1931404/how-to-change-the-maxlength-in-a-django-subclass 1 How to change the max_length in a django subclass? Daniel Quinn 2009-12-19T00:09:16Z 2009-12-19T00:35:40Z <p>I have the following model in django:</p> <pre><code>class Node(models.Model): name = models.CharField(max_length=255) </code></pre> <p>And this subclass of the above model:</p> <pre><code>class Thingy(Node): name = models.CharField(max_length=100) otherstuff = models.CharField(max_length=255) </code></pre> <p>The problem with this setup is that while everything Just Works, a look into the database shows that syncdb has created two tables. One called <code>appname_node</code> with a column called <code>name</code> and another one called <code>appname_thingy</code> with two columns: <code>name</code> and <code>otherstuff</code>. When a new object is created, the <code>name</code> value is copied into both tables... not really cool if you dig the whole concept of normalisation :-)</p> <p>Can someone explain to me how I might modify the max_length value of the "name" property in "Thingy" without re-defining it?</p> http://stackoverflow.com/questions/1927887/in-python-django-how-can-i-stop-access-to-a-global-dictionary-data-structure-wh 1 In python (django) how can I stop access to a global dictionary data structure when it's being updated? Vishal 2009-12-18T12:14:54Z 2009-12-18T21:48:07Z <p>In django when updating a global dictionary data structure I want to lock access to it by different request. I am planning to have a wrapper funtion to update and access and synchronize it. Coming from java background! Any pointers? </p>