User Peter Rowell - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T08:33:21Z http://stackoverflow.com/feeds/user/17017 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1852738/fast-lookup-for-the-last-element-in-a-django-queryset/1852759#1852759 1 Answer by Peter Rowell for fast lookup for the last element in a Django QuerySet? Peter Rowell 2009-12-05T17:08:29Z 2009-12-05T17:08:29Z <p>Well, there's no order_by clause so I'm wondering about what you mean by 'last'. Assuming you meant 'last added',</p> <pre><code>Valor.objects.filter(robot=r).order_by('-id')[0] </code></pre> <p>might do the job for you.</p> http://stackoverflow.com/questions/1817244/django-override-default-user-model-method/1817377#1817377 2 Answer by Peter Rowell for Django - override default User model method Peter Rowell 2009-11-30T00:57:10Z 2009-11-30T00:57:10Z <p>You might want to look at Django's <a href="http://docs.djangoproject.com/en/dev/topics/db/models/#id8" rel="nofollow">Proxy Model</a> concept. They even show an example using User as a base class.</p> <p>On the other hand, if you are trying to change the actual __unicode__() method in the actual User class, you probably will have to <a href="http://en.wikipedia.org/wiki/Monkey%5Fpatch" rel="nofollow">MonkeyPatch</a> it. It's not difficult, but I'll leave the specifics as a learning experience for you.</p> http://stackoverflow.com/questions/1774616/appending-to-a-list/1774623#1774623 0 Answer by Peter Rowell for Appending to a List Peter Rowell 2009-11-21T05:41:50Z 2009-11-21T05:41:50Z <p>Your 3rd assignment is overwriting the 'a2' value.</p> <p>Perhaps you should be using a more straightforward method:</p> <pre><code>L = ['abc', 'ADB', 'aBe'] L += ['a1', 'a2'] L += ['a3', 'a4'] Etc. </code></pre> http://stackoverflow.com/questions/1753302/how-to-manage-javascript-modules-in-django-templates/1753944#1753944 1 Answer by Peter Rowell for How to manage Javascript modules in django templates? Peter Rowell 2009-11-18T05:59:05Z 2009-11-18T05:59:05Z <p>If more than one page uses a given JS file you should consider concatenating all of them together and minifying the result. This reduces net connects which will improve overall page load time. Don't forget to bump your expire time out to at least a week or two.</p> http://stackoverflow.com/questions/1734618/css-underline-possible-to-increase-gap/1734632#1734632 0 Answer by Peter Rowell for css, underline, possible to increase gap Peter Rowell 2009-11-14T15:53:53Z 2009-11-14T15:53:53Z <p>This is not exactly what you were asking for, but it was an interesting read on the subject:</p> <p><a href="http://www.alistapart.com/articles/customunderlines/" rel="nofollow">CSS Design: Custom Underlines</a></p> http://stackoverflow.com/questions/1707621/django-url-scheme-in-apache-and-dev-server/1710793#1710793 0 Answer by Peter Rowell for django url scheme in apache and dev server Peter Rowell 2009-11-10T20:03:12Z 2009-11-10T20:03:12Z <ol> <li><p>Don't embed absolute and/or non-computed URLs in your code or database. They will always come back and bite you on the ass.</p></li> <li><p>Use either an alternate settings.py, or have some logic in settings.py to tweak differences between development/staging/production. We use settings.py as the production file and dev/staging use a local_settings.py which is tested for in settings.py and, if present, overrides production settings in settings.py. This prevents alternate development settings from creeping into staging/production.</p></li> <li><p>Set a BASE_URL for the entire site and use it for everything else.</p></li> <li><p>We go a bit further and have STATIC_MEDIA_URL and BIG_CONTENT_URL (for MP3s and Flash video) as the base URLs for other stuff.</p></li> </ol> <p>All of this allows us to use whatever server is right for the moment. When I'm doing development I normally let the MEDIA come from the production servers (it's faster), but sometimes I'm doing a reorg of the media directories and I can't do it on production without breaking the world. So I just change my local_settings.py file to use my copy of the directories. </p> http://stackoverflow.com/questions/1695073/menus-that-expand-when-you-mouse-over-done-purely-via-css/1695088#1695088 0 Answer by Peter Rowell for menus that expand when you mouse over, done purely via CSS? Peter Rowell 2009-11-08T01:52:42Z 2009-11-08T01:52:42Z <p>Google is your friend <a href="http://www.google.com/search?q=css+menus" rel="nofollow">css menus</a>.</p> <p>Also, checkout Eric Meyers page on <a href="http://meyerweb.com/eric/css/edge/menus/demo.html" rel="nofollow">Pure CSS Menus</a>.</p> http://stackoverflow.com/questions/1694050/how-do-i-add-a-prefix-to-all-urls-and-generically-parse-that-as-a-kwarg/1694121#1694121 1 Answer by Peter Rowell for How do I add a prefix to all urls and generically parse that as a kwarg Peter Rowell 2009-11-07T19:23:27Z 2009-11-07T22:27:58Z <p>You might consider attacking this with <a href="http://docs.djangoproject.com/en/dev/topics/http/middleware/" rel="nofollow">middlware</a>. Specifically using process_request. This is called <em>before</em> the urlresolver is called and you can do pretty much anything to the request (request.path in this case) you want to. You might strip out the username and store it in the request object. Specifics depend (obviously) on the conditions under which you do/do not want to remove the first path component.</p> <p><b>Updated for comment:</b> Whichever way you go about it, when you call <a href="http://docs.djangoproject.com/en/dev/topics/http/urls/#reverse" rel="nofollow">reverse()</a> you have to give it the additional context info -- it can't just automagically figure it out for itself. Django doesn't play any man-behind-the-curtains games -- everything is straight Python and there isn't any global state floating around just off stage. I think this is a Good Thing&trade;.</p> http://stackoverflow.com/questions/1691400/how-to-implement-symfony-partials-or-components-in-django/1691549#1691549 0 Answer by Peter Rowell for How to implement Symfony Partials or Components in Django? Peter Rowell 2009-11-07T01:17:20Z 2009-11-07T01:17:20Z <p>Assuming you are going to be using the components in different places on different pages I would suggest trying {% include "foo.html" %}. One of the (several) downsides of the Django templating language is that there is no concept of macros, so you need to be very consistent in the names of values in the context you pass to your main template so that the included template finds things it's looking for.</p> <p>Alternatively, in the view you can invoke the template engine for each component and save the result in a value passed in the context. Then in the main template simply use the value in the context.</p> <p>I'm not fond of either of these approaches. The more complex your template needs become the more you may want to look at Jinja2. (And, no, I don't buy the Django Party Line about 'template designers' -- never saw one in my life.)</p> http://stackoverflow.com/questions/1682440/permission-denied-error-with-django-while-uploading-a-file/1683005#1683005 0 Answer by Peter Rowell for Permission Denied error with Django while uploading a file Peter Rowell 2009-11-05T19:38:15Z 2009-11-05T19:38:15Z <p>Try checking the permissions on each directory in the path starting at /. Just a thought.</p> http://stackoverflow.com/questions/1627131/template-fragment-caching-doesnt-seem-to-work-for-some-custom-template-tags/1670873#1670873 0 Answer by Peter Rowell for template fragment caching doesn't seem to work for some custom template tags Peter Rowell 2009-11-03T23:40:42Z 2009-11-03T23:40:42Z <p>I don't think this has anything to do with the custom tag.</p> <p>We endded up rewriting the Django caching tag because we needed more control than was possible with the one that was supplied. You might make a copy of it yourself and stick some debugging print statements into it. In particular, check the filename (assuming you are caching to files) and see what is being generated. It could be that it is changing when it shouldn't (for some unknown reason) and that would mean that it is always needing to re-render then enclosed block.</p> <p>Look in django/templatetags/cache.py. It's only 63 lines of code.</p> http://stackoverflow.com/questions/1670821/using-pointers-to-swap-int-array-values/1670844#1670844 0 Answer by Peter Rowell for Using pointers to swap int array values. Peter Rowell 2009-11-03T23:31:54Z 2009-11-03T23:31:54Z <p>Try this instead:</p> <pre><code>void swap( int ary[] ) { int temp = ary[0]; ary[0] = ary[1]; ary[1] = temp; } </code></pre> http://stackoverflow.com/questions/1654638/mercurial-use-case-solution/1663865#1663865 2 Answer by Peter Rowell for mercurial use case solution Peter Rowell 2009-11-02T21:34:29Z 2009-11-02T21:34:29Z <p>On web sites we put everything except MP3 and FLV files under mercurial and we rarely get over 300MB. Besides, disk is cheap. If you have bandwidth issues between you and the customer site (or some sort of security concerns) you might want to just clone the whole tree onto a thumb drive, go to the customer site and hack, then come home and the merge changes.</p> <p>Mercurial has fundamentally changed the way I look at version control. Stuff like this used to be a big deal and now ... eh.</p> http://stackoverflow.com/questions/1657614/controlling-rsync-with-python/1657626#1657626 2 Answer by Peter Rowell for Controlling rsync with Python? Peter Rowell 2009-11-01T16:42:13Z 2009-11-01T16:42:13Z <p>I use rsync to back up all of my clients' web sites. A script is triggered by cron and it uses Makefiles for each client because of their different needs.</p> <p>Rather than do something that enters the password, use ssh-keygen to create a public/private key pair and put your public key on the remote machine. This gives you secure, no-password connections. This also means you don't have to expose the rsync port to the world. After you get past the learning curve on this (and it's not very steep) ssh is most <em>definitely</em> your friend.</p> http://stackoverflow.com/questions/1546670/django-role-based-views/1648019#1648019 0 Answer by Peter Rowell for Django role based views? Peter Rowell 2009-10-30T04:37:54Z 2009-10-30T04:37:54Z <p>On a site for an expert on Pinot Noir wine we created per-object access based on a number of different criteria. If the inbound link had a referer field that matched the domain name of a featured winery, then the user got a 'winery token' which expanded to all articles, tasting notes, etc. related to that winery. We use 'named tokens' for give aways at tasting events and they gave access to specific parts of the site. We even use this to grant certain types of permissions to search engine spiders and then make sure that links that come from those search engines have the same permissions as the spider did (ie. no cloaking games).</p> <p>The short version is that you can create a class (we called them TokenBuckets which hold Tokens) and each object (on a detail page, or a list page, or whatever) can ask the user's TokenBucket if a certain level of access is allowed.</p> <p>Basically it's a weird kind of ACL system. It wasn't that hard to create the mechanics. All of the magic is in determining under what circumstances which tokens go into the bucket.</p> http://stackoverflow.com/questions/1610934/what-is-the-best-way-to-do-a-nav-bar-search-box-in-django/1611174#1611174 0 Answer by Peter Rowell for What is the best way to do a nav bar search box in Django? Peter Rowell 2009-10-23T02:52:56Z 2009-10-23T02:52:56Z <p>We use a <a href="http://www.google.com/cse/" rel="nofollow">Google CSE</a> on one of our sites and it's about as straightforward as you can get. There are a couple of features you can turn on, but it's trivial and you get all the standard Google Goodness&trade;.</p> http://stackoverflow.com/questions/1527641/how-to-use-jquery-and-django-ajax-httpresponse/1604495#1604495 1 Answer by Peter Rowell for How to use JQuery and Django (ajax + HttpResponse)? Peter Rowell 2009-10-22T01:04:03Z 2009-10-22T01:04:03Z <p>Rather than do all this messy, low-level ajax and JSON stuff, consider using the <a href="http://malsup.com/jquery/taconite/" rel="nofollow">taconite plugin</a> for jQuery. You just make the call to the backend and it does the rest. It's well-documented and easy to debug -- especially if you are using Firebug with FF.</p> http://stackoverflow.com/questions/1602685/which-modern-web-frameworks-are-popular-in-a-corporate-setting/1603451#1603451 1 Answer by Peter Rowell for Which modern web frameworks are popular in a corporate setting? Peter Rowell 2009-10-21T20:35:31Z 2009-10-21T20:35:31Z <p>Another vote for Django. I'm not sure if the Washington Post or LA Times count as "corporate" but they have a lot more demands (both daily hits and time-to-new-feature) than your average "corporate" environment.</p> http://stackoverflow.com/questions/1589651/django-simplelazyobject-breaks-template-filter/1589802#1589802 0 Answer by Peter Rowell for django - simplelazyobject breaks template filter Peter Rowell 2009-10-19T16:46:07Z 2009-10-19T16:46:07Z <p><a href="http://code.djangoproject.com/changeset/11626" rel="nofollow">Changeset 11626</a> (checked in a few days ago) changed the 'user' definition in django.core.context_processors from ContextLazyObject to SimpleLazyObject. My coffee has not fully kicked in yet, but it looks like this might be the source of your problem. You might have to put a wrapper around this or change your test.</p> http://stackoverflow.com/questions/1582486/django-making-model-with-undefined-number-of-fields/1583046#1583046 4 Answer by Peter Rowell for Django: Making model with undefined number of fields Peter Rowell 2009-10-17T19:46:49Z 2009-10-18T04:45:19Z <p>Basically the ManyToMany can be treated as an array. So in the template you can do something like this:</p> <pre><code>{% for rel_art in cur_art.related_articles.all %} &lt;a href="{{rel_art.url}}"&gt;{{rel_art.title}}&lt;/a&gt; {% endfor %} </code></pre> <p>On a more general note, the <a href="http://docs.djangoproject.com/en/dev/" rel="nofollow">Django docs</a> (and the free online <a href="http://www.djangobook.com/en/2.0/" rel="nofollow">Django Book</a>) are about as good as it gets in FOSSland. I strongly recommend getting a good cup of coffee and doing some serious reading. There is also tons of good stuff to learn from reading the Django code itself -- it's well structured and well commented. Even going through a simple app like django.contrib.flatpages will give you some real insight to what you can do with it. </p> http://stackoverflow.com/questions/1582145/phpdocumentor-goes-to-php-as-x-goes-to-python-django/1582391#1582391 6 Answer by Peter Rowell for phpDocumentor goes to PHP, as X goes to Python (Django) Peter Rowell 2009-10-17T15:04:12Z 2009-10-17T15:04:12Z <p>Or <a href="http://sphinx.pocoo.org/" rel="nofollow">Sphinx</a>, as seen on TV and at <a href="http://python.org/" rel="nofollow">python.org</a>.</p> http://stackoverflow.com/questions/1581024/django-inheritance-how-to-have-one-method-for-all-subclasses/1581114#1581114 0 Answer by Peter Rowell for Django inheritance: how to have one method for all subclasses? Peter Rowell 2009-10-17T01:06:19Z 2009-10-17T01:06:19Z <p>I agree with Andrew. On a couple of sites we have a class that supports a whole bunch of methods (but not fields (this was pre-ORM refactor)) that are common to most-but-not-all of our content classes. They make use of hasattr to sidestep situations where the method doesn't make sense.</p> <p>This means most of our classes are defined as:</p> <pre><code>class Foo(models.Model, OurKitchenSinkClass): </code></pre> <p>Basically it's sort of a MixIn type of thing. Works great, easy to maintain.</p> http://stackoverflow.com/questions/1562991/migrating-clearcase-to-x/1563424#1563424 1 Answer by Peter Rowell for Migrating Clearcase to X Peter Rowell 2009-10-13T22:58:28Z 2009-10-13T22:58:28Z <p>I can't speak for the migration tool, but mercurial has worked great for us. We have a mix of WinXP, Mac OS X, and Linux people and there haven't been any snags. I don't use an IDE, but I believe Aptana acquired the pydev group (Python for Eclipse) so I wouldn't be too surprised if they have that.</p> http://stackoverflow.com/questions/1563088/urls-stored-in-database-for-django-site/1563359#1563359 1 Answer by Peter Rowell for URLs stored in database for Django site Peter Rowell 2009-10-13T22:42:30Z 2009-10-13T22:42:30Z <p>Your question is a little bit twisted, but I think what you're asking for is something similar to how django.contrib.flatpages handles this. Basically it uses middleware to catch the 404 error and then looks to see if any of the flatpages have a URL field that matches.</p> <p>We did this on one site where all of the URLs were made "search engine friendly". We overrode the save() method, munged the title into this_is_the_title.html (or whatever) and then stored that in a separate table that had a URL => object class/id mapping.ng (this means it is listed <em>before</em> flatpages in the middleware list).</p> http://stackoverflow.com/questions/1551293/extracting-text-fields-from-html-using-python/1551312#1551312 5 Answer by Peter Rowell for Extracting text fields from HTML using Python? Peter Rowell 2009-10-11T18:07:22Z 2009-10-11T18:07:22Z <p>For extracting and general HTML munging look at</p> <pre><code>http://www.crummy.com/software/BeautifulSoup/ </code></pre> <p>For the MySQL I suggest googling on: MySQL tutorial python </p> http://stackoverflow.com/questions/1546816/how-to-create-a-specific-if-condition-templatetag-with-django/1549535#1549535 0 Answer by Peter Rowell for How to create a specific if condition templatetag with Django ? Peter Rowell 2009-10-11T01:01:17Z 2009-10-11T01:01:17Z <p>When all else fails you can use the {% expr whatever %} tag to compute a value and stick it in a variable that you can use in your template. I don't let designers know about it, but sometimes it's the only thing that works short of standing on your head and ... well, you know.</p> <p>See <a href="http://www.djangosnippets.org/snippets/9/" rel="nofollow">http://www.djangosnippets.org/snippets/9/</a></p> http://stackoverflow.com/questions/1548210/how-to-force-the-use-of-ssl-for-some-url-of-my-django-application/1549522#1549522 0 Answer by Peter Rowell for How to force the use of SSL for some URL of my Django Application ? Peter Rowell 2009-10-11T00:56:22Z 2009-10-11T00:56:22Z <p>We used some simple middleware to check urls against a list of base urls that <em>must</em> be in HTTPS mode, all others are forced to HTTP mode. The big caveat here is that any POST data can be lost unless you take extra care (it didn't matter in our case). We were doing this on join pages that required credit card numbers and the like so as soon as they were in that pipeline we forced them into HTTPS.</p> http://stackoverflow.com/questions/1549442/separately-validating-username-and-password-during-django-authentication/1549508#1549508 1 Answer by Peter Rowell for Separately validating username and password during Django authentication Peter Rowell 2009-10-11T00:49:14Z 2009-10-11T00:49:14Z <p>We had to deal with this on a site that used an external membership subscription service. Basically you do</p> <pre><code>from django.contrib.auth.models import User try: user = User.objects.get(username=whatever) # if you get here the username exists and you can do a normal authentication except: pass # no such username </code></pre> <p>In our case, if the username didn't exist, then we had to go check an HTPASSWD file that was updated by a Perl script from the external site. If the name existed in the file then we would create the user, set the password, and then do the auth.</p> http://stackoverflow.com/questions/1034281/set-default-value-for-search-field-please-help/1034342#1034342 0 Answer by Peter Rowell for Set default value for Search field - Please Help! Peter Rowell 2009-06-23T18:36:06Z 2009-06-23T18:36:06Z <p>Here's a snippet I use to do this. There may be simpler ways, but this works. Any item with class .cleardefault will have it's value cleared on first mouseover. Any item with class .setcleardefault will clear the default and, if the user has not put anything in the box, reset it to the default value on mouse out.</p> <pre><code>function ClearDefault(item) { // clear the default value of a form element if (item.defaultValue == undefined) item.defaultValue = item.value; if (item.defaultValue == item.value) item.value = ''; } // ClearDefault function SetDefault(item) { // if item is empty, restore the default value if (item.value == '') item.value = item.defaultValue; } // SetDefault $(document).ready(function() { $(".cleardefault") .mouseover(function(){ ClearDefault(this); }) $(".setcleardefault") .mouseover(function(){ ClearDefault(this); }) .mouseout(function(){ SetDefault(this); }); /* */ }); </code></pre> http://stackoverflow.com/questions/922897/nameerror-using-execfile-in-python/922912#922912 0 Answer by Peter Rowell for NameError using execfile in python Peter Rowell 2009-05-28T20:13:07Z 2009-05-28T20:13:07Z <p>Are you sure you posted the actual code you are having trouble with? The first script works fine for me.</p> <p>The second error is to be expected: the name "bleh" is not defined in the outer block, only within the namespace of "mainprogram"</p> http://stackoverflow.com/questions/1835809/problem-with-variable-scoping-in-python/1835848#1835848 Comment by Peter Rowell on Problem with variable scoping in Python Peter Rowell 2009-12-02T21:22:33Z 2009-12-02T21:22:33Z I've made the same mistake more than once. For some reason it just <i>feels</i> like you don't need a return, but of course you do. http://stackoverflow.com/questions/1692754/how-do-you-go-about-charging-for-building-a-website/1794533#1794533 Comment by Peter Rowell on how do you go about charging for building a website Peter Rowell 2009-12-01T02:52:49Z 2009-12-01T02:52:49Z I have found that User Stories will get you to the truth faster than almost any other method. Show them your mock ups and ask: What happens when the user clicks this? And then? And then? Use a tape/digital recorder so you don't have to take notes. Each separate action represents more work. How much more depends on you, your framework/CMS, and how picky your customer is. Try to shoot for an early 20% solution to show them and make it a Billable Event. They will have <i>lots</i> of comments/changes after they see it. http://stackoverflow.com/questions/1817244/django-override-default-user-model-method Comment by Peter Rowell on Django - override default User model method Peter Rowell 2009-11-30T01:31:44Z 2009-11-30T01:31:44Z Glad that worked for you. I wasn't try to be mean regarding MonkeyPatching, but if you are going to go down that road you really need to be ready to deal with all sorts of interesting problems. In particular you have to be prepared for it to break on any given update to the underlying Django core code. http://stackoverflow.com/questions/90032/reasons-not-to-use-django/230675#230675 Comment by Peter Rowell on Reasons not to use django Peter Rowell 2009-11-27T17:56:12Z 2009-11-27T17:56:12Z This comment was made over a year ago. There are several downsides to hosting a site on GAE. OTOH, using nginx solves this problem quite nicely on smaller VPS. http://stackoverflow.com/questions/1772223/calling-small-app-in-template-django/1772285#1772285 Comment by Peter Rowell on Calling small app in template : Django Peter Rowell 2009-11-21T06:06:12Z 2009-11-21T06:06:12Z Of course, if they fixed the _resolve_lookup function in the template variable handling code so it dealt with first-level callables correctly then you could create a curried function and stick it into the context and it would only do the work if you actually invoked it. This is a 10 line patch I have to keep making on every project. Alternatively, use jinja2 for templating and just do the python expression where it's needed in the template. http://stackoverflow.com/questions/1753302/how-to-manage-javascript-modules-in-django-templates/1753944#1753944 Comment by Peter Rowell on How to manage Javascript modules in django templates? Peter Rowell 2009-11-18T17:25:39Z 2009-11-18T17:25:39Z You're right: I had a conversation in my head and only gave you half of it. We tried going the 'use templates to include only the JS files for any given page' route, but within two clicks the user would have sucked down 95% of them anyway. Rather than eat all of those separate downloads and having to deal with the messiness of making sure each page included the right things, we tried shoving all of it into one concatenated file and minifying it. The result was surprisingly small and we then just put the link-tag in the base template. Done. http://stackoverflow.com/questions/1704058/python-and-django-best-import-practices/1704156#1704156 Comment by Peter Rowell on Python (and Django) best import practices Peter Rowell 2009-11-10T03:13:05Z 2009-11-10T03:13:05Z A specific exception to this might be in Django where you are importing a class that implements a model (which represents a database table). In that case it's preferred to say &quot;from django.contrib.auth import User&quot;. But as I said, this is a convention specific to a particular environment. http://stackoverflow.com/questions/1704278/can-i-use-django-1-1-with-django-search-lucene-for-full-text-searching-and-if-so Comment by Peter Rowell on Can I use django 1.1 with django-search-lucene for full-text searching, and if so, what resources/links/docs can I reference to get it up and running? Peter Rowell 2009-11-10T03:06:19Z 2009-11-10T03:06:19Z If you're going to deploy on Linux, then you really, <i>really</i> want to get a linux server (hosted or something in the closet). And you want to do this now, as opposed to a week before you are ready to deploy. Really. http://stackoverflow.com/questions/1697105/django-ordering-by-the-first-value-of-a-tuple/1697132#1697132 Comment by Peter Rowell on Django: Ordering by the first value of a tuple Peter Rowell 2009-11-08T19:11:35Z 2009-11-08T19:11:35Z Python's use of a trailing comma to differentiate a 1-tuple from a parenthesized expression is a hack. One way to avoid being bit by this is to use a list instead of a tuple. (E.g &quot;ordering = ['something']&quot;) I doubt there is any significant performance hit and Django doesn't care, it just wants an iterable. This 1-tuple snag can get particularly irritating if you have a complex fields expression for the Admin edit page. http://stackoverflow.com/questions/1693726/problem-with-combined-authentication-login-view Comment by Peter Rowell on Problem with combined Authentication/Login view. Peter Rowell 2009-11-07T17:25:49Z 2009-11-07T17:25:49Z My gut says it may be a thread related problem. What server are you using? If Apache, are you using prefork MPM, or worker MPM? Prefork is recommended because of thread issues (I believe that's the primary reason, there may be other issues with worker MPM). http://stackoverflow.com/questions/1691495/organizing-python-projects-with-shared-packages Comment by Peter Rowell on Organizing Python projects with shared packages Peter Rowell 2009-11-07T01:01:41Z 2009-11-07T01:01:41Z Are you saying you are changing your production libraries while live code is using them? http://stackoverflow.com/questions/1682440/permission-denied-error-with-django-while-uploading-a-file/1683005#1683005 Comment by Peter Rowell on Permission Denied error with Django while uploading a file Peter Rowell 2009-11-06T17:00:23Z 2009-11-06T17:00:23Z Uh, I believe I said 'checking', not 'changing' ... big difference. I have seen the following situation: you have your DOCROOT at /a/b/c/d. 'd' is 777 (normally through desperation), 'a', and 'b' are 755 (normal), but 'c' is 700 (or similar) which pretty much ends the party. You keep playing with 'd', but it was 'c' (or whatever) that was the problem. http://stackoverflow.com/questions/1684828/how-to-set-attributes-using-property-decorators/1684851#1684851 Comment by Peter Rowell on How to set attributes using property decorators? Peter Rowell 2009-11-06T01:37:52Z 2009-11-06T01:37:52Z Amazing. I completely missed this in the docs. http://stackoverflow.com/questions/1684367/how-to-load-two-websites-in-one-page Comment by Peter Rowell on How to load two websites in one page? Peter Rowell 2009-11-05T23:25:45Z 2009-11-05T23:25:45Z What is your relationship with the sites? If you're connected with them they can specifically allow the embedding. If you're not .... http://stackoverflow.com/questions/1654638/mercurial-use-case-solution/1663865#1663865 Comment by Peter Rowell on mercurial use case solution Peter Rowell 2009-11-05T01:17:51Z 2009-11-05T01:17:51Z @ashishsony: So get specific on the features you'd like to see. I'm not saying Hg has everything, but it's always interesting to hear the one or two things that would take a good project and push it into greatness.