User Justin Voss - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T05:44:31Z http://stackoverflow.com/feeds/user/5616 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1633549/how-to-store-sensitive-data-e-g-passwords-api-keys-in-cocoa-app/1633724#1633724 2 Answer by Justin Voss for How to store sensitive data (e.g. passwords, API keys) in Cocoa app? Justin Voss 2009-10-27T21:13:14Z 2009-10-27T22:41:16Z <p>Use the Mac OS X Keychain:</p> <ul> <li><a href="http://developer.apple.com/mac/library/DOCUMENTATION/Security/Reference/keychainservices/Reference/reference.html" rel="nofollow">Keychain Services Reference</a></li> <li><a href="http://developer.apple.com/mac/library/documentation/Security/Conceptual/Security%5FOverview/Architecture/Architecture.html" rel="nofollow">Mac Dev Center: Security Overview</a></li> </ul> <p><strong>Update:</strong></p> <p>If your goal is to conceal information from your end users, then I'm not aware of a built-in way to do this.</p> <p>Hard-coding is a start, but a user with a debugger can read the string out of your binary. To combat this, I've heard of developers that store the data as many separate strings and then combine them at the last minute. YMMV</p> http://stackoverflow.com/questions/1584119/problem-with-nsdocument-and-writetourloftypeerror 0 Problem with NSDocument and writeToURL:ofType:error: Justin Voss 2009-10-18T05:49:38Z 2009-10-18T07:36:13Z <p>I'm working on a document-based application, and I want to use a document package as my file format. To do that, it seems that the NSDocument method I need to override is<br /> <code>-writeToURL:ofType:error:</code>.</p> <p>It sometimes works, but only under certain conditions. For example, this code works:</p> <pre><code>- (BOOL)writeToURL:(NSURL *)absoluteURL ofType:(NSString *)typeName error:(NSError **)outError { NSFileWrapper *wrapper = [[NSFileWrapper alloc] initDirectoryWithFileWrappers:nil]; [wrapper addRegularFileWithContents:[@"please work" dataUsingEncoding:NSUTF8StringEncoding] preferredFilename:@"foobar"]; [wrapper writeToURL:absoluteURL options:NSFileWrapperWritingAtomic originalContentsURL:nil error:outError]; NSDictionary *metadata = [NSDictionary dictionaryWithObject:@"0.1" forKey:@"Version"]; NSURL *mdURL = [NSURL fileURLWithPath:[[absoluteURL path] stringByAppendingPathComponent:@"SiteInfo.plist"]]; [metadata writeToURL:mdURL atomically:YES]; return YES; } </code></pre> <p>But, this code does not (it's the same as above, but with the NSFileWrapper bit taken out):</p> <pre><code>- (BOOL)writeToURL:(NSURL *)absoluteURL ofType:(NSString *)typeName error:(NSError **)outError { NSDictionary *metadata = [NSDictionary dictionaryWithObject:@"0.1" forKey:@"Version"]; NSURL *mdURL = [NSURL fileURLWithPath:[[absoluteURL path] stringByAppendingPathComponent:@"SiteInfo.plist"]]; [metadata writeToURL:mdURL atomically:YES]; return YES; } </code></pre> <p>The above code puts this cryptic error into the console ("Lithograph" is the name of my app, and ".site" is the package extension):</p> <pre><code>NSDocument could not delete the temporary item at file://localhost/private/var/folders/qX/qXL705byGmC9LN8FpiVjgk+++TI/TemporaryItems/(A%20Document%20Being%20Saved%20By%20Lithograph%207)/Untitled%20Site.site. Here's the error: Error Domain=NSCocoaErrorDomain Code=4 UserInfo=0x10059d160 "“Untitled Site.site” couldn’t be removed." </code></pre> <p>Do I <em>have</em> to write something to the original URL before I can add other files to the package?</p> http://stackoverflow.com/questions/1584119/problem-with-nsdocument-and-writetourloftypeerror/1584147#1584147 0 Answer by Justin Voss for Problem with NSDocument and writeToURL:ofType:error: Justin Voss 2009-10-18T06:03:37Z 2009-10-18T06:03:37Z <p>I was able to solve my own problem! By adding this line of code at the top of the method, I'm able to manipulate whatever files I want in the package:</p> <pre><code>[[NSFileManager defaultManager] createDirectoryAtPath:[absoluteURL path] withIntermediateDirectories:YES attributes:nil error:nil]; </code></pre> http://stackoverflow.com/questions/1479632/what-is-pythons-fabric-equivalent-in-other-languages/1479653#1479653 1 Answer by Justin Voss for What is Python's Fabric equivalent in other languages? Justin Voss 2009-09-25T21:22:46Z 2009-09-25T21:22:46Z <p>The Ruby community uses a tool called <a href="http://www.capify.org/i" rel="nofollow">Capistrano</a> for the same purpose.</p> http://stackoverflow.com/questions/55056/whats-the-best-django-search-app 23 What's the best Django search app? Justin Voss 2008-09-10T19:09:14Z 2009-09-09T14:07:51Z <p>I'm building a Django project that needs search functionality, and until there's a <code>django.contrib.search</code>, I have to choose a search app. So, which is the best? By "best" I mean...</p> <ul> <li>easy to install / set up</li> <li>has a Django- or at least Python-friendly API</li> <li>can perform reasonably complex searches</li> </ul> <p>Here are some apps I've heard of, please suggest others if you know of any:</p> <ul> <li><a href="http://code.google.com/p/djangosearch/" rel="nofollow">djangosearch</a></li> <li><a href="http://code.google.com/p/django-sphinx/" rel="nofollow">django-sphinx</a></li> </ul> <p>I'd also like to avoid using a third-party search engine (like Google SiteSearch), because some of the data I'd like to index is for site members only and should not be public.</p> http://stackoverflow.com/questions/64605/can-i-mix-vbscript-and-jscript-in-a-single-hta 1 Can I Mix VBScript and JScript in a Single HTA? Justin Voss 2008-09-15T16:48:05Z 2009-07-15T07:05:23Z <p>Is it possible to use both JScript and VBScript in the same HTA? Can I call VBScript functions from JScript and vice-versa? Are there any "gotchas," like the JScript running first and the VBScript running second (classic ASP pages have this issue).</p> http://stackoverflow.com/questions/843531/using-virtualenv-on-mac-os-x 1 Using virtualenv on Mac OS X Justin Voss 2009-05-09T15:53:02Z 2009-05-21T23:54:38Z <p>I've been using virtualenv on Ubuntu and it rocks, so I'm trying to use it on my Mac and I'm having trouble.</p> <p>The <code>virtualenv</code> command successfully creates the directory, and <code>easy_install</code> gladly installs packages in it, but I can't import anything I install. It seems like <code>sys.path</code> isn't being set correctly: it doesn't include the virtual <code>site-packages</code>, even if I use the <code>--no-site-packages</code> option. Am I doing something wrong?</p> <p>I'm using Python 2.5.1 and virtualenv 1.3.3 on Mac OS 10.5.6</p> <p><strong>Edit</strong>: Here's what happens when I try to use virtualenv:</p> <pre><code>$ virtualenv test New python executable in test/bin/python Installing setuptools............done. $ source test/bin/activate (test)$ which python /Users/Justin/test/bin/python (test)$ which easy_install /Users/Justin/test/bin/easy_install (test)$ easy_install webcolors [...] Installed /Users/Justin/test/lib/python2.5/site-packages/webcolors-1.3-py2.5.egg Processing dependencies for webcolors Finished processing dependencies for webcolors (test)$ python [...] &gt;&gt;&gt; import webcolors Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in &lt;module&gt; ImportError: No module named webcolors &gt;&gt;&gt; import sys &gt;&gt;&gt; print sys.path ['', '/Library/Python/2.5/site-packages/SQLObject-0.10.2-py2.5.egg', '/Library/Python/2.5/site-packages/FormEncode-1.0.1-py2.5.egg', ..., '/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5', '/Users/Justin/test/lib/python25.zip', '/Users/Justin/test/lib/python2.5', '/Users/Justin/test/lib/python2.5/plat-darwin', '/Users/Justin/test/lib/python2.5/plat-mac', '/Users/Justin/test/lib/python2.5/plat-mac/lib-scriptpackages', '/Users/Justin/test/Extras/lib/python', '/Users/Justin/test/lib/python2.5/lib-tk', '/Users/Justin/test/lib/python2.5/lib-dynload', '/Library/Python/2.5/site-packages', '/Library/Python/2.5/site-packages/PIL'] </code></pre> <p><strong>Edit 2</strong>: Using the <code>activate_this.py</code> script works, but running <code>source bin/activate</code> does not. Hopefully that helps narrow down the problem?</p> http://stackoverflow.com/questions/843531/using-virtualenv-on-mac-os-x/895855#895855 0 Answer by Justin Voss for Using virtualenv on Mac OS X Justin Voss 2009-05-21T23:54:38Z 2009-05-21T23:54:38Z <p>It turns out that my problems with virtualenv were my own fault: I had configured my <code>.bash_profile</code> to muck with the <code>PYTHONPATH</code> environment variable, which caused the import problems.</p> <p>Thank you to everyone who took the time to answer; sorry for not investigating the problem further on my own.</p> http://stackoverflow.com/questions/851336/multiple-files-upload-using-same-input-name-in-django/856126#856126 5 Answer by Justin Voss for multiple files upload using same input name in django Justin Voss 2009-05-13T04:55:34Z 2009-05-13T04:55:34Z <p>The output you posted shows that request.FILES['file'] is a list, so iterate over it:</p> <pre><code>for f in request.FILES['file']: # do something with the file f... </code></pre> http://stackoverflow.com/questions/795893/can-you-have-more-than-one-app-handle-a-404-in-django/799595#799595 1 Answer by Justin Voss for Can you have more than one app handle a 404 in Django? Justin Voss 2009-04-28T20:02:42Z 2009-04-28T20:02:42Z <p>The way the built-in flatpages app works is with <a href="http://code.djangoproject.com/browser/django/trunk/django/contrib/flatpages/middleware.py" rel="nofollow">some middleware</a>: the middleware has a function called 'process_response' that checks outgoing responses for the 404 status code. If the response is a 404, and the URL matches a flatpage, the middleware suppresses the 404 and returns the rendered flatpage.</p> <p>You can do the same thing with your own middleware. To make sure that your code is called before the flatpages code, your middleware should come <strong>after</strong> flatpages in your <code>MIDDLEWARE_CLASSES</code> setting:</p> <pre><code># in settings.py MIDDLEWARE_CLASSES = ( # ... 'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware', 'myapp.middleware.MyMiddlewareClass', ) </code></pre> <p>The reason it's after, and not before, is because during the response phase Django applies middleware in reverse order.</p> http://stackoverflow.com/questions/779292/how-can-you-have-wordpress-like-custom-fields-using-django-flatpages/779526#779526 1 Answer by Justin Voss for How can you have Wordpress-like custom fields using Django flatpages? Justin Voss 2009-04-22T22:27:36Z 2009-04-22T22:27:36Z <p>You could roll your own version of the flatpages app; take a look at the source code, it's really simple.</p> <p>It sounds like you could accomplish what you want with two models: one to represent the Pages, and another to represent CustomFields. Tie them together with foreign keys and some inline admin goodness, and you should be set. To access the fields in your template, make sure the Page class implements some kind of lookup function, like <code>__getitem__</code>.</p> http://stackoverflow.com/questions/775988/what-web-apis-would-you-most-want-to-replicate-or-are-the-most-popular/776146#776146 0 Answer by Justin Voss for What web APIs would you most want to replicate or are the most popular? Justin Voss 2009-04-22T08:12:08Z 2009-04-22T08:12:08Z <p>Products from <a href="http://www.37signals.com/" rel="nofollow">37signals</a> have great APIs, using RESTful XML-over-HTTP. <a href="http://developer.37signals.com/" rel="nofollow">The documentation</a> is reasonably good, too. </p> http://stackoverflow.com/questions/752919/any-thoughts-on-a-b-testing-in-django-based-project/753597#753597 5 Answer by Justin Voss for Any thoughts on A/B testing in Django based project? Justin Voss 2009-04-15T20:36:02Z 2009-04-17T18:26:17Z <p>If you use the GET parameters like you suggsted (<code>?ui=2</code>), then you shouldn't have to touch urls.py at all. Your decorator can inspect <code>request.GET['ui']</code> and find what it needs.</p> <p>To avoid hardcoding template names, maybe you could wrap the return value from the view function? Instead of returning the output of render_to_response, you could return a tuple of <code>(template_name, context)</code> and let the decorator mangle the template name. How about something like this? <strong>WARNING: I haven't tested this code</strong></p> <pre><code>def ab_test(view): def wrapped_view(request, *args, **kwargs): template_name, context = view(request, *args, **kwargs) if 'ui' in request.GET: template_name = '%s_%s' % (template_name, request.GET['ui']) # ie, 'folder/template.html' becomes 'folder/template.html_2' return render_to_response(template_name, context) return wrapped_view </code></pre> <p>This is a really basic example, but I hope it gets the idea across. You could modify several other things about the response, such as adding information to the template context. You could use those context variables to integrate with your site analytics, like Google Analytics, for example.</p> <p>As a bonus, you could refactor this decorator in the future if you decide to stop using GET parameters and move to something based on cookies, etc.</p> <p><strong>Update</strong> If you already have a lot of views written, and you don't want to modify them all, you could write your own version of <code>render_to_response</code>.</p> <pre><code>def render_to_response(template_list, dictionary, context_instance, mimetype): return (template_list, dictionary, context_instance, mimetype) def ab_test(view): from django.shortcuts import render_to_response as old_render_to_response def wrapped_view(request, *args, **kwargs): template_name, context, context_instance, mimetype = view(request, *args, **kwargs) if 'ui' in request.GET: template_name = '%s_%s' % (template_name, request.GET['ui']) # ie, 'folder/template.html' becomes 'folder/template.html_2' return old_render_to_response(template_name, context, context_instance=context_instance, mimetype=mimetype) return wrapped_view @ab_test def my_legacy_view(request, param): return render_to_response('mytemplate.html', {'param': param}) </code></pre> http://stackoverflow.com/questions/659832/reversing-django-urls-with-extra-options 0 Reversing Django URLs With Extra Options Justin Voss 2009-03-18T19:45:58Z 2009-03-18T22:24:25Z <p>Suppose I have a URLconf like below, and <code>'foo'</code> and <code>'bar'</code> are valid values for <code>page_slug</code>.</p> <pre><code>urlpatterns = patterns('', (r'^page/(?P&lt;page_slug&gt;.*)/', 'myapp.views.someview'), ) </code></pre> <p>Then, I could reconstruct the URLs using the below, right?</p> <pre><code>&gt;&gt;&gt; from django.core.urlresolvers import reverse &gt;&gt;&gt; reverse('myapp.views.someview', kwargs={'page_slug': 'foo'}) '/page/foo/' &gt;&gt;&gt; reverse('myapp.views.someview', kwargs={'page_slug': 'bar'}) '/page/bar/' </code></pre> <p>But what if I change my URLconf to this?</p> <pre><code>urlpatterns = patterns('', (r'^foo-direct/', 'myapp.views.someview', {'page_slug': 'foo'}), (r'^my-bar-page/', 'myapp.views.someview', {'page_slug': 'bar'}), ) </code></pre> <p>I expected this result:</p> <pre><code>&gt;&gt;&gt; from django.core.urlresolvers import reverse &gt;&gt;&gt; reverse('myapp.views.someview', kwargs={'page_slug': 'foo'}) '/foo-direct/' &gt;&gt;&gt; reverse('myapp.views.someview', kwargs={'page_slug': 'bar'}) '/my-bar-page/' </code></pre> <p>However, this throws a <code>NoReverseMatch</code> exception. I suspect I'm trying to do something impossible. Any suggestions on a saner way to accomplish what I want?</p> <p>Named URLs aren't an option, since I don't want other apps that link to these to need to know about the specifics of the URL structure (encapsulation and all that).</p> http://stackoverflow.com/questions/631924/creating-a-core-data-inverse-relationship 2 Creating a Core Data Inverse Relationship Justin Voss 2009-03-10T19:34:29Z 2009-03-13T16:36:55Z <p>I'm trying to write my first Cocoa app, and Core Data is making it difficult to model my data objects. I have two entities that I want to manipulate: <code>Account</code> and <code>Transaction</code>. <code>Account</code> has a human-readable name and that's about it. <code>Transaction</code> stores a monetary value, and references to two accounts called <code>debitAccount</code> and <code>creditAccount</code> (I'm working on a double-book accounting app).</p> <p>I want to be able to find all the <code>Transactions</code> for a given <code>Account</code>, whether they use <code>debitAccount</code> or <code>creditAccount</code>. How can I do this? Is there a way to do it that will work easily with Cocoa UI binding?</p> http://stackoverflow.com/questions/631924/creating-a-core-data-inverse-relationship/643576#643576 0 Answer by Justin Voss for Creating a Core Data Inverse Relationship Justin Voss 2009-03-13T16:36:55Z 2009-03-13T16:36:55Z <p>The solution that worked best (and made the most sense) to me was to create a subclass of <code>NSManagedObject</code> to use as my <code>Account</code> entity:</p> <pre><code>@interface Account : NSManagedObject { } -(NSArray*)getTransactions; @end </code></pre> <p>I have the actual lookup logic inside <code>-getTransactions</code>, which wasn't too hard to do by hand. This is working out well so far, especially because the method name conforms to KVO.</p> <p>To make Core Data return <code>Account</code>s instead of <code>NSManagedObject</code>s, I had to change the entity's "Class" property in Xcode's data modeling tool.</p> http://stackoverflow.com/questions/129391/how-do-i-add-active-directory-support-to-windows-pe 0 How do I add Active Directory support to Windows PE? Justin Voss 2008-09-24T19:39:55Z 2009-03-10T03:36:57Z <p>I want to query Active Directory from Windows PE 2.0, which is not supported "out of the box." Microsoft seems to suggest that this is possible, but not with any tools they provide. What do you recommend?</p> http://stackoverflow.com/questions/599086/how-are-server-side-errors-handled-in-post-redirect-get-pattern/599100#599100 1 Answer by Justin Voss for How are server side errors handled in Post/Redirect/Get pattern? Justin Voss 2009-03-01T02:11:14Z 2009-03-01T02:11:14Z <p>If the URL being used to fill out the form is the one the form POSTs to, I don't think there's an issue. If the input is valid, Redirect and GET. If it's invalid, redisplay the filled-in form. This way, the interaction looks like:</p> <pre><code>GET /your-url =&gt; blank form POST /your-url (success) =&gt; Redirect =&gt; GET /success-url POST /your-url (failure) =&gt; filled-in form </code></pre> http://stackoverflow.com/questions/563367/django-manager-for-set-in-model/565801#565801 1 Answer by Justin Voss for Django manager for _set in model Justin Voss 2009-02-19T15:21:12Z 2009-02-20T07:22:11Z <p>To elaborate on @insin's answer, you should add <code>use_for_related_fields = True</code> to the <code>ViewableManager</code> class. That way, <code>Category.story_set</code> will return an instance of the custom manager, which has the <code>get_query_set</code> method you need. Your template tag will look like</p> <pre><code>{% category.story_set.get_query_set %} </code></pre> <p><strong>Edit</strong>: @insin's answer is much better, I'd use that.</p> http://stackoverflow.com/questions/558535/should-a-web-app-have-automatic-updates/558599#558599 1 Answer by Justin Voss for Should a web app have automatic updates? Justin Voss 2009-02-17T20:34:42Z 2009-02-17T20:34:42Z <p>I think Wordpress has a feature that automtically checks for updates, and will put up a nag screen in the admin interface if you're running an out of date copy. That seems like a fairly good comprimise between forcing an update that could break users' installations, and simply posting a notice on your project website that users might not see.</p> http://stackoverflow.com/questions/557733/how-to-prevent-a-user-from-having-multiple-instances-of-the-same-web-application/557887#557887 3 Answer by Justin Voss for How to prevent a user from having multiple instances of the Same Web application Justin Voss 2009-02-17T17:32:53Z 2009-02-17T17:32:53Z <p>You could assign a 'mini-session' ID to each instance of the input form, then use AJAX to ping the server with that ID. If the user tries to request the same form when there's an active ID, it should display an error message. If the server doesn't hear the ping for a certain amount of time, expire the mini-session. (This is basically a very simple locking strategy)</p> http://stackoverflow.com/questions/533382/dynamic-runtime-method-creation-code-generation-in-python/533581#533581 3 Answer by Justin Voss for Dynamic/runtime method creation (code generation) in Python Justin Voss 2009-02-10T18:38:43Z 2009-02-11T20:18:56Z <p>Python will let you declare a function in a function, so you don't have to do the <code>exec</code> trickery.</p> <pre><code>def __init__(self): def dynamo(self, arg): """ dynamo's a dynamic method! """ self.weight += 1 return arg * self.weight self.weight = 50 setattr(self.__class__, 'dynamo', dynamo) </code></pre> <p>If you want to have several versions of the function, you can put all of this in a loop and vary what you name them in the <code>setattr</code> function:</p> <pre><code>def __init__(self): for i in range(0,10): def dynamo(self, arg, i=i): """ dynamo's a dynamic method! """ self.weight += i return arg * self.weight setattr(self.__class__, 'dynamo_'+i, dynamo) self.weight = 50 </code></pre> <p>(I know this isn't great code, but it gets the point across). As far as setting the docstring, I know that's possible but I'd have to look it up in the documentation.</p> <p><strong>Edit</strong>: You can set the docstring via <code>dynamo.__doc__</code>, so you could do something like this in your loop body:</p> <pre><code>dynamo.__doc__ = "Adds %s to the weight" % i </code></pre> <p><strong>Another Edit</strong>: With help from @eliben and @bobince, the closure problem should be solved.</p> http://stackoverflow.com/questions/531224/setting-up-django-on-an-internal-server-os-environ-not-working-as-expected/531275#531275 1 Answer by Justin Voss for Setting up Django on an internal server (os.environ() not working as expected?) Justin Voss 2009-02-10T06:42:13Z 2009-02-10T06:42:13Z <p>Try using a utility called <a href="http://pypi.python.org/pypi/virtualenv" rel="nofollow">virtualenv</a>. According to the official package page, "virtualenv is a tool to create isolated Python environments."</p> <p>It'll take care of the <code>PYTHONPATH</code> stuff for you and make it easy to correctly install Django and flup.</p> http://stackoverflow.com/questions/530466/how-do-i-make-django-show-empty-cells-with-its-template-system/531257#531257 -1 Answer by Justin Voss for How do I make django show empty cells with it's template system? Justin Voss 2009-02-10T06:34:08Z 2009-02-10T06:34:08Z <p>What you really need to do is get a non-breaking space in those empty cells, and prevent Django from escaping the HTML entity. Could you chain a few filters together to achieve what you're looking for?</p> <pre><code>{{ value|default:"&amp;#160;"|safe }} </code></pre> <p><strong>Edit</strong>: I should mention that <code>&amp;#160;</code> is the same as <code>&amp;nbsp;</code>, is just doesn't get mangled by the SO parser.</p> http://stackoverflow.com/questions/511772/comfortable-freelancer-work-enviroment/512114#512114 1 Answer by Justin Voss for Comfortable freelancer work enviroment Justin Voss 2009-02-04T16:27:20Z 2009-02-04T16:27:20Z <p>Do yourself a huge favor and don't work from your apartment. If you do, the distinction between "work" and "not work" will be hard to draw.</p> <p>Visit your local college or university and ask if they have some kind of small business incubator program; they sometimes offer free office space.</p> http://stackoverflow.com/questions/344826/looking-for-input-in-model-design-for-django-schools/345403#345403 0 Answer by Justin Voss for Looking for input in model design for Django Schools Justin Voss 2008-12-05T22:33:48Z 2008-12-05T22:33:48Z <p>I would advise you to not worry about the underling relational database. Yes, you'll need to understand what a foreign key is and the difference between many-to-many and one-to-many, etc., but you should think about your models in terms of Django classes. That's how you'll have to write them anyway, so that's where I would start. The <a href="http://docs.djangoproject.com/en/dev/topics/db/models/" rel="nofollow">Django documenation on models</a> is great, and will help you a lot.</p> <p>I think everyone here would be glad to help you with the Python classes; you should rewrite your example using Django. For example, your Person table would look like this:</p> <pre><code>from django.db import models SEX_CHOICES = ( ('M', 'Male'), ('F', 'Female') ) ETHNICITY_CHOICES = ( # follow the same format as SEX_CHOICES: # (database_value, human_friendly_name) ) class Person(models.Model): first_name = models.CharField(max_length=200) middle_name = models.CharField(max_length=200) familiy_name = models.CharField(max_length=200) sex = models.CharField(max_length=1, choices=SEX_CHOICES) ethnicity = models.CharField(max_length=1, choices=ETHNICITY_CHOICES) birth_date = models.DateField() email = models.EmailField() home_phone = models.CharField(max_length=10) # USA phone numbers work_phone = models.CharField(max_length=10) cell_phone = models.CharField(max_length=10) address = models.ForeignKey(Location) class Location(models.Model): # left as an exercise for the reader # more classes... </code></pre> http://stackoverflow.com/questions/343622/how-do-i-submit-a-form-given-only-the-html-source/345334#345334 3 Answer by Justin Voss for How do I submit a form given only the HTML source? Justin Voss 2008-12-05T22:08:09Z 2008-12-05T22:14:36Z <p>You should re-read the <a href="http://docs.djangoproject.com/en/dev/topics/testing/" rel="nofollow">documentation about Django's testing framework</a>, specifically the part about testing views (and forms) with <a href="http://docs.djangoproject.com/en/dev/topics/testing/#module-django.test.client" rel="nofollow">the test client</a>.</p> <p>The test client acts as a simple web browser, and lets you make <code>GET</code> and <code>POST</code> requests to your Django views. You can read the response HTML or get the same <code>Context</code> object the template received. Your <code>Context</code> object should contain the actual <code>forms.Form</code> instance you're looking for.</p> <p>As an example, if your view at the URL <code>/form/</code> passes the context <code>{'myform': forms.Form()}</code> to the template, you could get to it this way:</p> <pre><code>from django.test.client import Client c = Client() # request the web page: response = c.get('/form/') # get the Form object: form = response.context['myform'] form_data = form.cleaned_data my_form_data = {} # put your filled-out data in here... form_data.update(my_form_data) # submit the form back to the web page: new_form = forms.Form(form_data) if new_form.is_valid(): c.post('/form/', new_form.cleaned_data) </code></pre> <p>Hopefully that accomplishes what you want, without having to mess with parsing HTML.</p> <p><strong>Edit</strong>: After I re-read the Django docs about Forms, it turns out that forms are immutable. That's okay, though, just create a new <code>Form</code> instance and submit that; I've changed my code example to match this.</p> http://stackoverflow.com/questions/258767/django-overriding-verbosename-for-autofield-without-dropping-the-model/259027#259027 2 Answer by Justin Voss for Django: Overriding verbose_name for AutoField without dropping the model. Justin Voss 2008-11-03T15:42:03Z 2008-11-03T15:42:03Z <p>Look into the command-line options for <code>manage.py</code>; there's a command to dump all of the model data to JSON, and another command to load it back in from JSON. You can export all of your model data, add your new field to the model, then import your data back in. Just make sure that you set the <code>db_column</code> option to <code>'id'</code> so you don't break your existing data.</p> <p><strong>Edit</strong>: Specifically, you want the commands <a href="http://docs.djangoproject.com/en/dev/ref/django-admin/#dumpdata" rel="nofollow"><code>dumpdata</code></a> and <a href="http://docs.djangoproject.com/en/dev/ref/django-admin/#loaddata-fixture-fixture" rel="nofollow"><code>loaddata</code></a>.</p> http://stackoverflow.com/questions/250868/is-it-possible-to-write-code-to-write-code/250885#250885 1 Answer by Justin Voss for Is it possible to write code to write code? Justin Voss 2008-10-30T16:46:02Z 2008-10-30T16:46:02Z <p>Of course you can! In fact, if you use a dynamic language, the class can change itself (or another class) while the program is still running. It can even create new classes that didn't exist before. This is called metaprogramming, and it lets your code become very flexible.</p> http://stackoverflow.com/questions/245528/how-does-a-website-build-popularity/245582#245582 2 Answer by Justin Voss for How does a website build popularity? Justin Voss 2008-10-29T02:10:51Z 2008-10-29T02:10:51Z <p><a href="http://stackoverflow.com/questions/76438/the-best-way-to-make-a-new-site-known#76579">This similar question</a> might help you.</p> http://stackoverflow.com/questions/1584119/problem-with-nsdocument-and-writetourloftypeerror/1584264#1584264 Comment by Justin Voss on Problem with NSDocument and writeToURL:ofType:error: Justin Voss 2009-10-18T16:07:50Z 2009-10-18T16:07:50Z Thanks for your help! I didn't know about <code>NSPropertyListSerialization</code>; that should come in handy. http://stackoverflow.com/questions/851336/multiple-files-upload-using-same-input-name-in-django/851372#851372 Comment by Justin Voss on multiple files upload using same input name in django Justin Voss 2009-05-13T06:16:28Z 2009-05-13T06:16:28Z Yes, request.FILES is a MultiValueDict object, while request.GET and request.POST are QueryDict objects, which are similar. http://stackoverflow.com/questions/851336/multiple-files-upload-using-same-input-name-in-django/851372#851372 Comment by Justin Voss on multiple files upload using same input name in django Justin Voss 2009-05-13T04:59:03Z 2009-05-13T04:59:03Z Django automatically handles the case where multiple inputs have the same name: it hands your code a list of values instead of a single value. You can see the list in the code that was posted. http://stackoverflow.com/questions/843531/using-virtualenv-on-mac-os-x/843539#843539 Comment by Justin Voss on Using virtualenv on Mac OS X Justin Voss 2009-05-11T05:38:43Z 2009-05-11T05:38:43Z The <code>import activate&#95;this</code> technique worked perfectly; I guess it manipulates sys.path differently than the <code>activate</code> script? http://stackoverflow.com/questions/843531/using-virtualenv-on-mac-os-x Comment by Justin Voss on Using virtualenv on Mac OS X Justin Voss 2009-05-10T08:14:39Z 2009-05-10T08:14:39Z You're right, I should have included that. The part of the path that I snipped out is just more egg files. http://stackoverflow.com/questions/784124/python-django-template-iterate-through-list/784145#784145 Comment by Justin Voss on Python Django Template: Iterate Through List Justin Voss 2009-04-24T14:12:51Z 2009-04-24T14:12:51Z +1 for doing this in the controller layer; the view shouldn't contain business logic like that. http://stackoverflow.com/questions/752919/any-thoughts-on-a-b-testing-in-django-based-project/753597#753597 Comment by Justin Voss on Any thoughts on A/B testing in Django based project? Justin Voss 2009-04-17T18:15:48Z 2009-04-17T18:15:48Z You could write your own version of render_to_response, I suppose, that would interact with this decorator to accomplish what you want. I'll add a code sample to my answer to demonstrate. http://stackoverflow.com/questions/752919/any-thoughts-on-a-b-testing-in-django-based-project/754153#754153 Comment by Justin Voss on Any thoughts on A/B testing in Django based project? Justin Voss 2009-04-16T01:28:35Z 2009-04-16T01:28:35Z That would work, but I think if you're going to test more than one view then moving that code into a decorator would save a lot of typing. http://stackoverflow.com/questions/659832/reversing-django-urls-with-extra-options Comment by Justin Voss on Reversing Django URLs With Extra Options Justin Voss 2009-03-18T20:33:38Z 2009-03-18T20:33:38Z It throws a <code>NoReverseMatch</code> exception. http://stackoverflow.com/questions/631924/creating-a-core-data-inverse-relationship/632201#632201 Comment by Justin Voss on Creating a Core Data Inverse Relationship Justin Voss 2009-03-13T16:37:59Z 2009-03-13T16:37:59Z Thanks for your suggestion! I found a way that worked for me, but your input helped. http://stackoverflow.com/questions/588953/wheres-the-best-place-to-find-good-web-designers/588964#588964 Comment by Justin Voss on Where's the best place to find good web designers? Justin Voss 2009-02-26T03:22:12Z 2009-02-26T03:22:12Z I don't think you'll find a lot of professionals on 99designs, since it encourages (enforces, in fact) &quot;spec&quot; work, which many designers avoid. <a href="http://www.no-spec.com/" rel="nofollow">no-spec.com</a> http://stackoverflow.com/questions/553784/can-you-use-a-string-to-instantiate-a-class-in-python Comment by Justin Voss on Can you use a string to instantiate a class in python? Justin Voss 2009-02-16T16:31:44Z 2009-02-16T16:31:44Z Are these ID classes in the same file as the loop, or do you import them from somewhere else? http://stackoverflow.com/questions/533382/dynamic-runtime-method-creation-code-generation-in-python/533581#533581 Comment by Justin Voss on Dynamic/runtime method creation (code generation) in Python Justin Voss 2009-02-10T23:55:23Z 2009-02-10T23:55:23Z Ah, drat. Thanks for the clarification. Is there a technique that will work? http://stackoverflow.com/questions/530466/how-do-i-make-django-show-empty-cells-with-its-template-system/530506#530506 Comment by Justin Voss on How do I make django show empty cells with it's template system? Justin Voss 2009-02-10T06:35:22Z 2009-02-10T06:35:22Z I used &quot;&amp;#160;&quot;, which seemed to work okay. http://stackoverflow.com/questions/511772/comfortable-freelancer-work-enviroment/511775#511775 Comment by Justin Voss on Comfortable freelancer work enviroment Justin Voss 2009-02-04T16:55:36Z 2009-02-04T16:55:36Z @Click Upvote; because in Amsterdam a &quot;coffee shop&quot; is less about coffee and more about weed.