User Van Gale - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T22:06:44Z http://stackoverflow.com/feeds/user/34258 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1839658/how-to-enforce-account-based-separation-in-django/1841144#1841144 1 Answer by Van Gale for How to enforce account based separation in Django Van Gale 2009-12-03T16:34:02Z 2009-12-03T16:34:02Z <p>I don't think there is any clear winner, especially if you consider that not all queries will need to be filtered by account. Also consider the old <code>threadlocals</code> trick is considered unreliable which means the only way to do automatic insertion of filter parameters would be with middleware I guess... but that also seems unreliable and complex to me.</p> <p>I also haven't come up with a good way to make a query manager that can help here, but it might be possible.</p> <p>So, I think the best solution for a "multi-tenant" database is just to make sure all your queries are filtered by account. You can do this with:</p> <ul> <li><p>Debug mode middleware such as <a href="http://www.djangosnippets.org/snippets/1774/" rel="nofollow">Middleware: Record ownership screener</a></p></li> <li><p>In your tests check the sql generated by any tests and verify the account field is in the query. You could also include "other account" data in your test fixtures that your test would make sure do not show up in any query results.</p></li> <li><p>Making sure all queries are checked for the filter during code review</p></li> </ul> <p>Certainly not pretty, but the best I've been able to do so far.</p> http://stackoverflow.com/questions/1828187/determine-complete-django-url-configuration/1829073#1829073 -1 Answer by Van Gale for Determine complete Django url configuration Van Gale 2009-12-01T21:32:05Z 2009-12-01T21:32:05Z <p>If you are running Django in debug mode (have <code>DEBUG = True</code> in your settings) and then type a non-existent URL you will get an error page listing the complete URL configuration.</p> http://stackoverflow.com/questions/1826356/viewing-translations-in-django-templates-e-g-making-it-work/1827747#1827747 2 Answer by Van Gale for viewing translations in django templates (e.g - making it work) Van Gale 2009-12-01T17:39:44Z 2009-12-01T17:39:44Z <p>This is probably one of two problems:</p> <ol> <li><p>Make sure you have <code>django.core.context_processors.i18n</code> in <code>settings.TEMPLATE_CONTEXT_PROCESSORS</code></p></li> <li><p>Make sure you pass <code>RequestContext(request)</code> as your <code>context_instance</code> if you are rendering your template using <a href="http://docs.djangoproject.com/en/dev/topics/http/shortcuts/#render-to-response" rel="nofollow"><code>render_to_response</code></a></p></li> </ol> http://stackoverflow.com/questions/1801249/import-twice-when-run-test/1801817#1801817 1 Answer by Van Gale for import twice when run test Van Gale 2009-11-26T06:08:11Z 2009-11-26T06:08:11Z <p>You need to make sure your models are always imported the same way.</p> <p>So for example, if you have in <code>example1/tests.py</code>:</p> <pre><code>from models import * </code></pre> <p>and in another package <code>example2/views.py</code>:</p> <pre><code>from example1.models import ModelA </code></pre> <p>then you'll have the problem you are experiencing. The solution is to be consistent and use only one or the other.</p> http://stackoverflow.com/questions/1797426/how-to-make-multilingual-login-in-django/1799017#1799017 1 Answer by Van Gale for How to make multilingual login in django? Van Gale 2009-11-25T18:30:13Z 2009-11-25T18:30:13Z <p>It might be overkill for you, but one way is to use multiple site instances (one per language) as detailed in <a href="http://stackoverflow.com/questions/676457/how-do-i-set-urlpatterns-based-on-domain-name-or-tld-in-django/676472#676472">this SO answer</a>.</p> http://stackoverflow.com/questions/1785302/debugging-django-from-command-line/1786084#1786084 1 Answer by Van Gale for debugging django from command line Van Gale 2009-11-23T21:23:50Z 2009-11-23T21:23:50Z <p>As mentioned by Geo <code>manage.py shell</code> is good but since you have <code>django_extensions</code> already installed then Carl's suggestion of <code>manage.py shell_plus</code> is even better... saves a ton of typing.</p> <p>But, as a third suggestion that is a bit less general, you might also want to check out <a href="http://eric.themoritzfamily.com/2009/02/17/announcing-django-viewtools/" rel="nofollow">django-viewtools</a>. I personally tend to use shell_plus, but this might be useful.</p> http://stackoverflow.com/questions/1752585/whats-the-best-way-to-create-a-history-type-model-in-django/1757226#1757226 1 Answer by Van Gale for What's the best way to create a 'history' type model in django? Van Gale 2009-11-18T16:24:50Z 2009-11-18T16:24:50Z <p>IMHO the best solution is the one developed by Marty Alchin in his <a href="http://prodjango.com/" rel="nofollow">Pro Django</a> book which unfortunately costs money but, fortunately, is a book worth getting anyway.</p> <p>An early version of his audit trail can be found on the Django wiki at <a href="http://code.djangoproject.com/wiki/AuditTrail" rel="nofollow">AuditTrail</a> but I'm not sure how well this code would work in recent versions of Django.</p> http://stackoverflow.com/questions/1746863/help-with-manage-py-syncdb/1746890#1746890 9 Answer by Van Gale for Help with manage.py syncdb Van Gale 2009-11-17T06:01:22Z 2009-11-17T06:01:22Z <p>The problem is that you are missing the Python module that interfaces with MySQL.</p> <p>See the Django docs for <a href="http://docs.djangoproject.com/en/dev/topics/install/#get-your-database-running" rel="nofollow">get your database running</a> which further points to <a href="http://docs.djangoproject.com/en/dev/ref/databases/#id2" rel="nofollow">MySQL notes</a>.</p> <p>However, if you are just going through the tutorial it is much easier to use SQLite backend which is built-in to Python. No drivers, server, etc. needed.</p> http://stackoverflow.com/questions/1738952/how-can-i-limit-the-available-choices-for-a-foreign-key-field-in-a-django-modelfo/1739089#1739089 0 Answer by Van Gale for How can I limit the available choices for a foreign key field in a django modelformset? Van Gale 2009-11-15T22:28:51Z 2009-11-15T22:28:51Z <p>You can dynamically change the queryset on a form using functional methods (curry), closures, or callbacks. See all three methods in the first three answers to "<a href="http://stackoverflow.com/questions/622982/django-passing-custom-form-parameters-to-formset">passing custom form parameters to formset</a>."</p> <p>Also see James Bennetts post "<a href="http://www.b-list.org/weblog/2008/nov/09/dynamic-forms/" rel="nofollow">So you want a dynamic form</a>" for a nice in-depth discussion of the closure method.</p> http://stackoverflow.com/questions/1725915/django-management-command-yui-compressor/1726040#1726040 0 Answer by Van Gale for django management command + yui compressor Van Gale 2009-11-12T23:07:36Z 2009-11-12T23:07:36Z <p>Yes, but you have to write the command part yourself. The best way to go about this would be to see how the stock commands are implemented or look at a project like <a href="http://code.google.com/p/django-command-extensions/" rel="nofollow">django-command-extensions</a></p> <p>However, an even better solution (i.e. less work) would be to use a project like <a href="http://code.google.com/p/django-compress/" rel="nofollow">django-compress</a> that already defines a management command <code>synccompress</code> that will call yui compressor.</p> http://stackoverflow.com/questions/1718533/custom-save-method-giving-invalid-tuple-size-error/1718600#1718600 1 Answer by Van Gale for Custom save method giving invalid tuple size error Van Gale 2009-11-11T22:43:10Z 2009-11-11T22:43:10Z <p>The error message should specifically tell you the file and line number of the error, but your problem are these two lines in your <code>views.py</code>:</p> <pre><code>appearance = form.cleaned_data['appearance'], scoredappearance = appearance * APPEARANCE_WEIGHT, </code></pre> <p>You are assuming the Python interpreter computes the value for <code>appearance</code> before you use it in the next argument... which is an incorrect assumption.</p> <p>Define <code>appearance</code> before you create the model instance and your code should then work (or at least break on a different error).</p> http://stackoverflow.com/questions/1684062/asset-managers-for-django-choose-which-one/1686938#1686938 1 Answer by Van Gale for asset managers for django - choose which one? Van Gale 2009-11-06T11:12:50Z 2009-11-06T11:12:50Z <p>I've been using django-compress and I'm happy with it, especially because I can specify the back-end compressor (YUI works best with my JS for example).</p> <p>I will probably consider switching to django_compressor in the future, but it's too low priority atm.</p> <p>I would also point out that django-media-bundler has one feature the others don't... automatic building of image sprites. I haven't used it live, so I'm not sure how well it is implemented but that's pretty neat. You can use it just for the sprites and leave css/js for one of the other compressors.</p> http://stackoverflow.com/questions/1666441/a-multithreaded-queue-in-python/1666520#1666520 5 Answer by Van Gale for A multithreaded queue in Python Van Gale 2009-11-03T10:33:53Z 2009-11-03T10:33:53Z <p>The Python standard library <a href="http://docs.python.org/library/queue.html" rel="nofollow">Queue</a> module is already thread-safe and aware and should work for your requirements.</p> <p>Here's a nice paper <a href="http://docs.google.com/gview?a=v&amp;q=cache%3AXuLJl1ktTh0J%3Aparlab.eecs.berkeley.edu/wiki/%5Fmedia/patterns/taskqueue.pdf+put+python+functions+in+a+task+queue&amp;hl=en&amp;gl=us&amp;pid=bl&amp;srcid=ADGEESiFT6GUiPAU2MplgzfGtW0kazd9ocsnWb59CNpQ5LkfXL%5FdA-Ft%5FY%5FE4sjv-yq8Syhoh5kiInRFMCBvSfwEKCJ30pW-8J9v2zzvt-70Rs%5FsRzly8V4gYmLuqXgq38OfzdYM0U1d&amp;sig=AFQjCNEsHXnniXPxUEQtlNuiWOPfvAQYsg" rel="nofollow">Task Queue Implementation Pattern</a> that discusses how to use Queue for task queues.</p> http://stackoverflow.com/questions/1653071/how-do-i-automatically-rebuild-the-sphinx-index-under-django-sphinx/1653731#1653731 2 Answer by Van Gale for How do I automatically rebuild the Sphinx index under django-sphinx? Van Gale 2009-10-31T07:54:13Z 2009-10-31T07:54:13Z <p>There are basically two primary strategies for building search indexes:</p> <ol> <li>Indexer <strong>internal</strong> to a database server, which indexes on the fly as records are inserted or deleted.</li> <li>Indexer <strong>external</strong> to the database (which may or may not be a RDMS which is why I leave off the word server), which indexes periodically.</li> </ol> <p>The first strategy has the obvious advantage of being closer to real-time but possibly a huge disadvantage in performance. Most database servers with internal indexers have performance problems (or else missing features), see for example Jeff Atwood discussing performance problems in SQL Server 2008 in his blog post about <a href="http://blog.stackoverflow.com/2008/10/adde-a-second-server/" rel="nofollow">adding a second server for stackoverflow</a>.</p> <p>The second strategy isn't as real-time but generally has best performance, Unfortunately this also means, because it isn't built-in, it has to be invoked externally somehow.</p> <p>Obviously you have no choice with <a href="http://www.sphinxsearch.com/" rel="nofollow">Sphinx</a>, it being an external indexer. You must invoke the sphinx indexer from cron or some other scheduling mechanism.</p> <p>To speed up indexing just run it often from cron. If that causes performance issues then you need to implement a <a href="http://www.sphinxsearch.com/docs/current.html#live-updates" rel="nofollow">live-update strategy</a> which involves indexing new records very frequently into a delta index and then periodically merging the delta index into the primary index. This would be done external to Django so it doesn't affect anything in <a href="http://github.com/dcramer/django-sphinx" rel="nofollow">django-sphinx</a>.</p> http://stackoverflow.com/questions/1635558/is-there-any-python-module-similar-to-distributed-ruby/1635985#1635985 3 Answer by Van Gale for Is there any Python module similar to Distributed Ruby Van Gale 2009-10-28T09:04:21Z 2009-10-28T09:04:21Z <p>This is generally called "object brokering" and a list of some Python packages in this area can be found by browsing the Object Brokering topic area of the Python Package Index <a href="http://pypi.python.org/pypi?%3Aaction=browse&amp;c=405&amp;c=427" rel="nofollow">here</a>.</p> <p>The oldest and most widely used of these is <a href="http://pyro.sourceforge.net/" rel="nofollow">Pyro</a>.</p> http://stackoverflow.com/questions/1623538/does-using-psyco-with-django-make-any-sense/1623581#1623581 4 Answer by Van Gale for Does using Psyco with django make any sense ? Van Gale 2009-10-26T08:03:40Z 2009-10-26T08:03:40Z <p>First, as gribbler and Ibrahim mentioned, your process won't die unless you are using pure CGI... which you shouldn't be using.</p> <p>Secondly, the bottleneck in most web apps are database queries, for which Psyco won't help.</p> <p>If you happen to have a some logic that is computationally intensive it can certainly make sense to use Psyco or Cython. In fact I read a report somewhere (sorry it's been a while so can't find a link now) by someone who was doing some complex calculations and had great results compiling their entire <code>views.py</code> with Cython.</p> http://stackoverflow.com/questions/1587282/custom-django-admin-command-issue/1587323#1587323 4 Answer by Van Gale for Custom Django-admin command issue Van Gale 2009-10-19T07:07:37Z 2009-10-19T07:07:37Z <p>Your indentation needs to be consistent through the entire file, which it isn't in the snippet you posted above.</p> <p>The "help = " line is indented four spaces after "class" but then the "x =" line is indented many more than four.</p> <p>Maybe you are mixing spaces and tabs and thus have two tabs before "x ="?</p> <p>Your code should look like this:</p> <pre><code>from django.core.management.base import BaseCommand from mailing.msystem.models import Alarm class Command(BaseCommand): help = "Displays data" def handle(self, *args, **options): x = Alarm.objects.all() for i in x: print i.name </code></pre> http://stackoverflow.com/questions/1430364/configuring-roundup-with-apache/1430601#1430601 1 Answer by Van Gale for Configuring Roundup with Apache Van Gale 2009-09-16T02:19:33Z 2009-09-16T02:19:33Z <p>It is fairly easy to run roundup under Apache if you use <a href="http://code.google.com/p/modwsgi/" rel="nofollow">mod_wsgi</a>.</p> <p>Unfortunately I've since moved away from roundup and no longer have a copy of my wsgi script to show you, but you should be able to figure it out from this <a href="http://markmail.org/message/y3xnnjnokjbr2rqu#query%3Aroundup%20mod%5Fwsgi+page%3A1+mid%3A3kxo57rdfqxqlgxj+state%3Aresults" rel="nofollow">mod_wgi mailing list thead</a>.</p> http://stackoverflow.com/questions/1427419/can-i-create-a-socket-application-on-a-hosting-service/1427541#1427541 2 Answer by Van Gale for Can I create a socket application on a hosting service? Van Gale 2009-09-15T14:28:31Z 2009-09-15T15:45:27Z <p>Cheap Perl/PHP hosting services don't want you running your own long-running processes.</p> <p>This means you will need a VPS (which obviously includes shell account since you can do anything you want on your private server). A few VPS providers might block outgoing IRC port but I think that is rare.</p> <p>Linode and Slicehost/Rackspace are just two examples very very well run VPS service providers and I guarantee you can run your own socket application on them.</p> http://stackoverflow.com/questions/1419442/how-to-model-a-foreign-key-in-a-reusable-django-app/1419704#1419704 7 Answer by Van Gale for How to Model a Foreign Key in a Reusable Django App? Van Gale 2009-09-14T04:39:11Z 2009-09-14T04:39:11Z <p>If you think the link app will always point to a single app then one approach would be to pass the name of the foreign model as a string containing the application label instead of a class reference (<a href="http://docs.djangoproject.com/en/dev/ref/models/fields/#foreignkey" rel="nofollow">Django docs explanation</a>).</p> <p>In other words, instead of:</p> <pre><code>class Link(models.Model): blog_post = models.ForeignKey(BlogPost) </code></pre> <p>do:</p> <pre><code>from django.conf import setings class Link(models.Model): link_model = models.ForeignKey(settings.LINK_MODEL) </code></pre> <p>and in your settings.py:</p> <pre><code>LINK_MODEL = 'someproject.somemodel' </code></pre> http://stackoverflow.com/questions/1418401/how-to-best-launch-an-asynchronous-job-request-in-django-view/1419640#1419640 3 Answer by Van Gale for How to best launch an asynchronous job request in Django view? Van Gale 2009-09-14T04:10:35Z 2009-09-14T04:10:35Z <p>There are a couple of solutions to this problem, and the best one depends a bit on how heavy your workload will be.</p> <p>If you have a light workload you can use the approach used by <a href="http://code.google.com/p/django-mailer/" rel="nofollow">django-mailer</a> which is to define a "jobs" model, save new jobs into the database, then have cron run a stand-alone script every so often to process the jobs stored in the database (deleting them when done). You can use something like <a href="http://code.google.com/p/django-chronograph/" rel="nofollow">django-chronograph</a> to manage the job scheduling easier</p> <p>If you need help understanding how to write a script to process the job see James Bennett's article <a href="http://www.b-list.org/weblog/2007/sep/22/standalone-django-scripts/" rel="nofollow">Standalone Django Scripts</a> for help.</p> <p>If you have a very high workload, meaning you'll need more than a single server to process the jobs, then you want to use a real distribute task queue. There is a lot of competition here so I can't really detail all the options, but a good one to use with for Django apps is <a href="http://ask.github.com/celery/introduction.html" rel="nofollow">celery</a>.</p> http://stackoverflow.com/questions/1416792/in-the-django-admin-how-can-i-set-up-searching-profiles-by-username/1416796#1416796 4 Answer by Van Gale for In the Django admin, how can I set up searching profiles by username? Van Gale 2009-09-13T03:48:57Z 2009-09-13T03:48:57Z <p>This should do what you want:</p> <pre><code>class UserProfileAdmin(admin.ModelAdmin): search_fields = ['user__username'] </code></pre> <p>assuming the name of your field that is foreignkey is <code>user</code></p> http://stackoverflow.com/questions/1408602/whats-the-equivalent-of-rails-migrations-or-djangos-south-in-pylons-and-tg2/1409232#1409232 4 Answer by Van Gale for What's the equivalent of Rails' Migrations or Django's South in Pylons and TG2? Van Gale 2009-09-11T06:08:38Z 2009-09-11T06:08:38Z <p>As Santi said, it doesn't have its own, but some of the ones available for SQLAlchemy should work:</p> <p><a href="http://code.google.com/p/sqlalchemy-migrate/" rel="nofollow">sqlalchemy-migrate</a> which is also used by <a href="http://code.google.com/p/tesla-pylons-elixir/wiki/Migrations" rel="nofollow">tesla-pylons-elixir</a> as a way to get better integration with Pylons.</p> <p><a href="http://trac.ollix.org/miruku/" rel="nofollow">miruku</a></p> http://stackoverflow.com/questions/1406892/elegantly-handle-site-specific-settings-configuration-in-svn-hg-git-etc/1407598#1407598 0 Answer by Van Gale for Elegantly handle site-specific settings/configuration in svn/hg/git/etc ? Van Gale 2009-09-10T20:39:01Z 2009-09-10T20:39:01Z <p>+1 for Ned's answer, but want to mention a slight variation.</p> <p>I see Django settings as falling into 2 areas: project and instance.</p> <p>Project settings are common to all the instances (dev, testing, production, multiple sites in production) and instance settings are local to just that specific server instance.</p> <p>Project settings are things like <code>INSTALLED_APPS</code> (although local settings may also include this to add things like django debug toolbar for developers), <code>MIDDLEWARE_CLASSES</code>, and <code>TEMPLATE_LOADERS</code>. Instance settings are things like the database settings, <code>MEDIA_URL</code> settings, etc.</p> <p>Project settings go in <code>settings.py</code> and instance settings in <code>local_settings.py</code>, which is imported into <code>settings.py</code>. <code>local_settings.py</code> is listed in <code>.gitignore</code> and project settings are stored in git.</p> <p>I've tried several other variations on this but ended here because it's just so much simpler.</p> <p>The only time I don't like this setup is for multiple sites (using Django sites framework), which end up proliferating into things like <code>sitename_settings.py</code> which imports <code>sitename_local_settings.py</code> etc.</p> <p>Finally, I do keep a <code>local_settings_template.py</code> in git, to use as a starting point for new instances and for devs to track changes they might need to their own local settings.</p> http://stackoverflow.com/questions/1400810/web-interface-for-using-djangos-filter-function/1400946#1400946 3 Answer by Van Gale for Web interface for using django's filter function Van Gale 2009-09-09T17:21:43Z 2009-09-09T19:43:47Z <p>I'm a big big fan of <a href="http://github.com/alex/django-filter/tree/master" rel="nofollow">django-filter</a> and know I'm not the only one who hopes this will be included as a contrib app in Django.</p> http://stackoverflow.com/questions/1392913/reloading-mo-files-for-all-processes-threads-in-django-without-a-restart/1401004#1401004 0 Answer by Van Gale for reloading .mo files for all processes/threads in django without a restart Van Gale 2009-09-09T17:32:18Z 2009-09-09T17:32:18Z <p>I checked <a href="http://code.google.com/p/django-rosetta/" rel="nofollow">django-rosetta</a> and, as I suspected, they rely on the <a href="http://code.google.com/p/modwsgi/" rel="nofollow">mod_wsgi</a> AutoReload mechanism. This is what I would have suggested. For more details read <a href="http://code.google.com/p/modwsgi/wiki/ReloadingSourceCode" rel="nofollow">Reloading Source Code</a>.</p> http://stackoverflow.com/questions/1390841/userprofile-stackedinline-tabularinline-redesigned/1391238#1391238 1 Answer by Van Gale for UserProfile StackedInLine/TabularInLine redesigned Van Gale 2009-09-07T22:54:54Z 2009-09-09T09:13:47Z <h1>1</h1> <p>I think you're getting too picky here. If you absolutely need control over such minute details you should create your own views instead of using the admin. Otherwise stacked is what you want because tabular doesn't make much sense for one-to-one relations.</p> <h1>2</h1> <p>I've been able to use fieldsets in user profiles. The only difference between my code and yours seems to be that I'm using tuple's instead of dict's. Here's mine for comparison:</p> <pre><code>class UserProfileInline(admin.StackedInline): model = UserProfile class MyUserAdmin(UserAdmin): inlines = [UserProfileInline] fieldsets = ( (None, {'fields': ('username', 'password')}), (_('Personal info'), {'fields': ('first_name', 'last_name', 'email')}), (_('Permissions'), {'fields': ('is_staff', 'is_active', 'is_superuser')}), (_('Important dates'), {'fields': ('last_login', 'date_joined')}), (_('Groups'), {'fields': ('groups',)}), ) exclude = ['user_permissions'] </code></pre> <p><strong>EDIT</strong>:</p> <p>I just did a quick check and the "#1" is coming from the admin template.</p> <p>This means you can easily remove it by overriding the stock admin template, although this will affect all your inlines including ones that are one-to-many.</p> <p>The stacked inline template can be found in <code>django/contrib/admin/templates/admin/edit_inline/stacked.html</code></p> <p>This means you can copy the template to your own templates directory as <code>templates/admin/edit_inline/stacked.html</code> and this will be loaded by Django at run time instead of the stock template.</p> <p>After copying edit your local copy to remove <code>#{{ forloop.counter }}</code> on line 9.</p> http://stackoverflow.com/questions/1398051/getting-the-history-of-an-object/1398202#1398202 1 Answer by Van Gale for Getting the history of an object Van Gale 2009-09-09T08:01:38Z 2009-09-09T09:05:51Z <p>This is just a rough sketch but should be pretty close to what you need for your view:</p> <pre><code>from django.contrib.admin.models import LogEntry, ADDITION def your_view(request): ... # This is your object that was modified my_obj = ... log_entry = LogEntry.objects.filter( object_id=my_obj.id, action_flag=ADDITION, content_type__id__exact=ContentType.objects.get_for_model(MyModel).id) ... </code></pre> <p>Then in your template:</p> <pre><code>{{ log_entry.user.username }} </code></pre> http://stackoverflow.com/questions/1391316/django-losing-auth-session/1391339#1391339 2 Answer by Van Gale for Django - Losing Auth Session Van Gale 2009-09-07T23:50:38Z 2009-09-07T23:50:38Z <p>Just a guess here: are you including RequestContext in your context in the views that you cannot access user?</p> <p>In other words, if you call generic views the RequestContext is automatically included but if you are using <code>render_to_response()</code> then you need to call it like this:</p> <pre><code>return render_to_response('template_name', { your context dict }, context_instance=RequestContext(request)) </code></pre> http://stackoverflow.com/questions/1343784/trying-to-implement-far-future-expiration-date-for-static-files-in-django/1343887#1343887 0 Answer by Van Gale for Trying to implement "far-future expiration date" for static files in django Van Gale 2009-08-27T21:41:49Z 2009-08-27T21:41:49Z <p>Add this line to your conf:</p> <pre><code>FileETag none </code></pre> <p>(although make sure it's only for your static files, because etag could still be useful for your dynamic Django views)</p> http://stackoverflow.com/questions/1828187/determine-complete-django-url-configuration/1829073#1829073 Comment by Van Gale on Determine complete Django url configuration Van Gale 2009-12-01T21:49:38Z 2009-12-01T21:49:38Z I understood exactly what you meant about INCLUDED url configurations, but answered from faulty memory because I didn't have immediate access to a test site. I swear I've see the URL error page put a space between the top level url and the included urls but see now it doesn't. So the answer is NO, there is no way to see the complete configuration. http://stackoverflow.com/questions/1826721/internationalizing-url-addresses-in-django-without-putting-en-fr-etc-into Comment by Van Gale on Internationalizing URL addresses in Django without putting "en/", "fr/" etc. into the address Van Gale 2009-12-01T15:24:50Z 2009-12-01T15:24:50Z Hi Monika, the solution you linked to does allow you to have multiple addresses with a working get_absolute_url so it's not clear what it doesn't do for you. If you can explain what more you need someone, hopefully me, can come up with a solution. http://stackoverflow.com/questions/527237/unhandled-exception-in-flup/527416#527416 Comment by Van Gale on Unhandled Exception in Flup Van Gale 2009-11-23T15:27:20Z 2009-11-23T15:27:20Z For the record I'm doing this now as well... nginx front end passing requests to apache + mod_wsgi backend. The low resource usage is amazing and performance is excellent plus I can reverse proxy multiple SSL sites. http://stackoverflow.com/questions/1751896/segmentation-fault-displaying-tree/1751922#1751922 Comment by Van Gale on Segmentation Fault - Displaying Tree Van Gale 2009-11-17T21:30:27Z 2009-11-17T21:30:27Z Also as answered by Tim, even if tree argument is NOT NULL, you still need to check parent, child, links for NULL before using them. +1 to both answers. http://stackoverflow.com/questions/1747501/getting-data-from-an-excel-sheet/1748978#1748978 Comment by Van Gale on Getting data from an Excel sheet Van Gale 2009-11-17T15:32:24Z 2009-11-17T15:32:24Z +1 this is a great one to use because they've already coded to some of the quirks in XLRD (which is a great package). http://stackoverflow.com/questions/1745436/how-to-manage-timezones-in-a-web-application/1745480#1745480 Comment by Van Gale on How to manage timezones in a web application? Van Gale 2009-11-17T06:22:23Z 2009-11-17T06:22:23Z For another ready-to-use Django solution there is <a href="http://code.google.com/p/django-timezones/" rel="nofollow">code.google.com/p/django-timezones</a> http://stackoverflow.com/questions/1725915/django-management-command-yui-compressor/1726065#1726065 Comment by Van Gale on django management command + yui compressor Van Gale 2009-11-12T23:16:34Z 2009-11-12T23:16:34Z +1 Nice answer, I was wanting to sketch out how to do a command but didn't have enough time. http://stackoverflow.com/questions/1725619/can-you-recommend-a-go-language-web-framework Comment by Van Gale on Can you recommend a go-language web framework? Van Gale 2009-11-12T23:10:30Z 2009-11-12T23:10:30Z @celopes: so you'll only upvote it if it's made into an XVCD comic and then posted to the best comics &quot;question&quot;? http://stackoverflow.com/questions/1718533/custom-save-method-giving-invalid-tuple-size-error/1718600#1718600 Comment by Van Gale on Custom save method giving invalid tuple size error Van Gale 2009-11-12T15:38:50Z 2009-11-12T15:38:50Z Yes, that's a good idea... then you can be sure you define your constants like <code>APPEARANCE&#95;WEIGHT</code> in one place, which is the same place the calculation is performed. http://stackoverflow.com/questions/1666441/a-multithreaded-queue-in-python/1666470#1666470 Comment by Van Gale on A multithreaded queue in Python Van Gale 2009-11-03T12:39:00Z 2009-11-03T12:39:00Z +1 This project shows good use of the standard Queue module for tasks http://stackoverflow.com/questions/1635558/is-there-any-python-module-similar-to-distributed-ruby/1635982#1635982 Comment by Van Gale on Is there any Python module similar to Distributed Ruby Van Gale 2009-10-28T10:00:55Z 2009-10-28T10:00:55Z +1: pyro is excellent http://stackoverflow.com/questions/1587282/custom-django-admin-command-issue/1587318#1587318 Comment by Van Gale on Custom Django-admin command issue Van Gale 2009-10-19T07:08:30Z 2009-10-19T07:08:30Z +1 beat me to it :) http://stackoverflow.com/questions/1494202/how-to-build-flexible-inline-formsets Comment by Van Gale on How to build flexible inline formsets? Van Gale 2009-09-30T04:59:20Z 2009-09-30T04:59:20Z Also, to answer your concern about server side functionality, the question/answer linked above uses the stock Django formset methods, which may not be glamorous but they get the job done. http://stackoverflow.com/questions/1494202/how-to-build-flexible-inline-formsets Comment by Van Gale on How to build flexible inline formsets? Van Gale 2009-09-30T04:56:48Z 2009-09-30T04:56:48Z See this question and answer: <a href="http://stackoverflow.com/questions/501719/dynamically-adding-a-form-to-a-django-formset-with-ajax" rel="nofollow" title="dynamically adding a form to a django formset with ajax">stackoverflow.com/questions/501719/&hellip;</a> http://stackoverflow.com/questions/1419708/how-to-keep-the-order-of-elements-in-hashtable Comment by Van Gale on How to keep the order of elements in hashtable Van Gale 2009-09-14T04:43:42Z 2009-09-14T04:43:42Z Which language are you using?