User zgoda - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T20:15:09Zhttp://stackoverflow.com/feeds/user/12138http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/431167/what-are-your-favorite-general-purpose-django-apps/438724#4387241Answer by zgoda for What are your favorite general purpose Django apps?zgoda2009-01-13T11:46:30Z2009-10-22T13:21:26Z<p><a href="http://babel.edgewall.org/" rel="nofollow">Babeldjango</a> for <a href="http://en.wikipedia.org/wiki/Internationalization%5Fand%5Flocalization" rel="nofollow">internationalization and localization</a>.</p>
http://stackoverflow.com/questions/1551508/using-python-locale-or-equivalent-in-web-applications/1554811#15548110Answer by zgoda for Using Python locale or equivalent in web applications?zgoda2009-10-12T14:10:27Z2009-10-12T14:10:27Z<p>Django's i18n framework works out the shortcomings of <code>setlocale()</code> by not using it. This way the locale is set per request and if you use <code>LocaleMiddleware</code> it can be set to change according to UserAgent <code>Accept-Language</code> setting. See the <a href="http://docs.djangoproject.com/en/dev/topics/i18n/#id2" rel="nofollow">docs</a>.</p>
http://stackoverflow.com/questions/1526965/how-to-deal-with-query-parameters-encoding/1539789#15397890Answer by zgoda for How to deal with query parameter's encoding?zgoda2009-10-08T18:59:36Z2009-10-08T18:59:36Z<p>Since Django 1.0 all values you get from form submission are unicode objects, not bytestrings like in Django 0.96 and earlier. To get utf-8 from your values encode them with utf-8 codec:</p>
<pre><code>request.POST['somefield'].encode('utf-8')
</code></pre>
<p>To get query parameters decoded properly, they have to be properly encoded first:</p>
<pre><code>In [3]: urllib.quote('ä')
Out[3]: '%C3%A4'
</code></pre>
<p>I think your problem comes from bad encoding of query parameters.</p>
http://stackoverflow.com/questions/1531272/django-ajax-response-for-valid-available-username-email-during-registration/1539723#15397231Answer by zgoda for Django: ajax response for valid/available username/email during registrationzgoda2009-10-08T18:45:57Z2009-10-08T18:45:57Z<p>See <a href="http://www.djangosnippets.org/snippets/771/" rel="nofollow">http://www.djangosnippets.org/snippets/771/</a> - you can restrict your view to ajax requests. The only way to do cross-domain ajax is <a href="http://remysharp.com/2007/10/08/what-is-jsonp/" rel="nofollow">jsonp</a> which you do not support in your view.</p>
http://stackoverflow.com/questions/114112/deploying-django-how-do-you-do-it/117095#1170951Answer by zgoda for Deploying Django: How do you do it?zgoda2008-09-22T19:48:45Z2009-10-06T07:16:57Z<p>In my previous work we had real genius guy on deployment duties, he deployed application (Python, SQL, Perl and Java code) as set of deb files built for Ubuntu. Unfortunately now, I have no such support. We are deploying apps manually to virtualenv-ed environments with separate nginx configs for FastCGI. We use <a href="http://www.blueskyonmars.com/projects/paver/" rel="nofollow">paver</a> to deploy to remote servers. It's painful, but it works.</p>
http://stackoverflow.com/questions/1467425/tons-of-false-positives-from-djangos-csrf-middleware/1470169#14701692Answer by zgoda for Tons of false positives from Django's CSRF middleware?zgoda2009-09-24T07:07:20Z2009-09-24T07:07:20Z<p>CSRF protection in Django is based on hidden field <strong>plus</strong> properly working session. If you use subdomains to differentiate these two sites, check if your <code>settings.SESSION_COOKIE_DOMAIN</code> is <a href="http://docs.djangoproject.com/en/dev/ref/settings/#session-cookie-domain" rel="nofollow">set properly to handle your case</a>.</p>
http://stackoverflow.com/questions/1397070/django-newb-not-seeing-postback/1399109#13991092Answer by zgoda for django newb, not seeing postbackzgoda2009-09-09T11:28:32Z2009-09-09T11:28:32Z<p><code>request.POST</code> evaluates to <code>False</code> if it's empty, but this is not the <code>dict</code> object, it might not support comparison operations to ordinary <code>dict</code> object. It would be better if you do:</p>
<pre><code>if request.POST:
assert False
</code></pre>
http://stackoverflow.com/questions/528431/differentiate-nginx-behaviour-depending-on-url1Differentiate nginx behaviour depending on URLzgoda2009-02-09T14:49:22Z2009-09-08T10:51:40Z
<p>I have a Django application and I use nginx to serve static content. Unfortunately, all registered MIME types get displayed in client browser, while I would like to give an ability to download <strong>the same content</strong>, along with usual behaviour. Say, I have JPEG file under <code>/media/images/image01.jpg</code> and I want that nginx serves this file in usual way, with standard <code>image/jpeg</code> header, but additionally I want <strong>the same</strong> image to be served by nginx with <code>content-disposition: attachment</code> (effectively forcing content download) when accessed as, say, <code>/downloads/images/image01.jpg</code>. Anybody can suggest a solution?</p>
http://stackoverflow.com/questions/1355150/django-when-saving-how-can-you-check-if-a-field-has-changed/1361547#13615472Answer by zgoda for Django: When saving, how can you check if a field has changed?zgoda2009-09-01T09:46:03Z2009-09-01T09:46:03Z<p>And now for direct answer: the only way to check if the value for the field has changed is to fetch original data from database before saving instance. Consider this example:</p>
<pre><code>class MyModel(models.Model):
f1 = models.CharField(max_length=1)
def save(self, *args, **kw):
if self.pk is not None:
orig = MyModel.objects.get(pk=self.pk)
if orig.f1 != self.f1:
print 'f1 changed'
super(MyModel, self).save(*args, **kw)
</code></pre>
http://stackoverflow.com/questions/1339293/python-memory-leak-debugging/1346194#13461942Answer by zgoda for Python: Memory leak debuggingzgoda2009-08-28T10:35:55Z2009-08-28T10:35:55Z<p>See <a href="http://nedbatchelder.com/blog/200809/a%5Fserver%5Fmemory%5Fleak.html" rel="nofollow">this excellent blog post from Ned Batchelder</a> on how they traced down real memory leak in HP's Tabblo. A classic and worth reading.</p>
http://stackoverflow.com/questions/1339040/why-does-django-enforce-all-model-classes-to-be-in-models-py/1346189#13461890Answer by zgoda for Why does django enforce all model classes to be in models.py?zgoda2009-08-28T10:33:22Z2009-08-28T10:33:22Z<p>Single namespace: yes. Single module: no.</p>
<p>Your models have to be importable from namespace <code>appname.models</code>.</p>
http://stackoverflow.com/questions/1318744/django-i18n-and-python-locales-and-dates/1321102#13211022Answer by zgoda for Django i18n and python locales (and dates)zgoda2009-08-24T08:23:50Z2009-08-24T08:23:50Z<p>Django does not set locale for translation, just loads translation catalog. To get desired effect you have either set locale (which is not a good option since it works process-wide) or use specialized library. I recommend <a href="http://babel.edgewall.org/" rel="nofollow">Babel</a> which has nice Django integration.</p>
http://stackoverflow.com/questions/1310974/alter-django-admin-change-list-title-text/1312313#13123131Answer by zgoda for Alter django admin change list title textzgoda2009-08-21T14:31:31Z2009-08-21T14:31:31Z<p>There is already ticket for <code>ChangeList</code> customization: <a href="http://code.djangoproject.com/ticket/9749" rel="nofollow">http://code.djangoproject.com/ticket/9749</a>. This will give the ability to change many additional aspects of admin application. Unfortunately there is no clean way to achieve your goals.</p>
http://stackoverflow.com/questions/1310495/running-a-python-script-outside-of-django/1310607#13106072Answer by zgoda for Running a python script outside of Djangozgoda2009-08-21T08:00:02Z2009-08-21T08:00:02Z<p>All you need is importable settings and properly set python path. In the most raw form this can be done by setting up appropriate environment variables, like:</p>
<pre><code>$ DJANGO_SETTINGS_MODULE=myproject.settings PYTHONPATH=$HOME/djangoprojects python myscript.py
</code></pre>
<p>There are other ways, like calling <code>settings.configure()</code> and already mentioned <code>setup_environ()</code> described by James Bennett in <a href="http://www.b-list.org/weblog/2007/sep/22/standalone-django-scripts/" rel="nofollow">some blog post</a>.</p>
http://stackoverflow.com/questions/539116/context-processor-using-werkzeug-and-jinja22Context processor using Werkzeug and Jinja2zgoda2009-02-11T22:22:39Z2009-08-05T02:53:48Z
<p>My application is running on AppEngine and is implemented using <a href="http://werkzeug.pocoo.org/" rel="nofollow">Werkzeug</a> and <a href="http://jinja.pocoo.org/2/" rel="nofollow">Jinja2</a>. I'd like to have something functionally equivalent of Django's own context processor: a callable that takes request and adds something to template context. I already have a "context processors" that add something to template context, but how do I get this <em>request</em> part working? I implemented context processors as a callables that just return a dictionary that later is used to update context.</p>
<p>For example, I'd like to add something that is contained in <code>request.environ</code>...</p>
http://stackoverflow.com/questions/556406/google-setonloadcallback-with-jquery-document-ready-is-it-ok-to-mix2google.setOnLoadCallback with jQuery $(document).ready(), is it OK to mix?zgoda2009-02-17T11:34:02Z2009-06-28T02:34:28Z
<p>I'm using Google Ajax API and they suggest I use <code>google.setOnLoadCallback()</code> to do various things related to their API but I'm using also jQuery's <code>$(document).ready()</code> to do other JS things, not related to Google API.</p>
<p>Is it safe to mix these two approaches in one document? I did not notice any problems yet but I suppose it's a matter of scale.</p>
http://stackoverflow.com/questions/1041668/openid-in-django-without-local-site-accounts/1043576#10435761Answer by zgoda for OpenID in django without local site accountszgoda2009-06-25T12:11:10Z2009-06-25T12:11:10Z<p><a href="http://code.google.com/p/django-openid/" rel="nofollow">django-openid</a> does not depend on django-registration.</p>
http://stackoverflow.com/questions/618827/optimizing-jinja2-environment-creation2Optimizing Jinja2 Environment creationzgoda2009-03-06T13:19:58Z2009-06-19T21:02:24Z
<p>My application is running on Google App Engine and most of requests constantly gets yellow flag due to high CPU usage. Using profiler I tracked the issue down to the routine of creating <code>jinja2.Environment</code> instance.</p>
<p>I'm creating the instance at module level:</p>
<pre><code>from jinja2 import Environment, FileSystemLoader
jinja_env = Environment(loader=FileSystemLoader(TEMPLATE_DIRS))
</code></pre>
<p>Due to the Google AppEngine operation mode (CGI), this code can be run upon each and every request (their module import cache seems to cache modules for seconds rather than for minutes).</p>
<p>I was thinking about storing the environment instance in memcache, but it seems to be not picklable. <code>FileSystemLoader</code> instance seems to be picklable and can be cached, but I did not observe any substantial improvement in CPU usage with this approach.</p>
<p>Anybody can suggest a way to decrease the overhead of creating <code>jinja2.Environment</code> instance?</p>
<p><strong>Edit</strong>: below is (relevant) part of profiler output.</p>
<pre><code>222172 function calls (215262 primitive calls) in 8.695 CPU seconds
ncalls tottime percall cumtime percall filename:lineno(function)
33 1.073 0.033 1.083 0.033 {google3.apphosting.runtime._apphosting_runtime___python__apiproxy.Wait}
438/111 0.944 0.002 2.009 0.018 /base/python_dist/lib/python2.5/sre_parse.py:385(_parse)
4218 0.655 0.000 1.002 0.000 /base/python_dist/lib/python2.5/pickle.py:1166(load_long_binput)
1 0.611 0.611 0.679 0.679 /base/data/home/apps/with-the-flow/1.331879498764931274/jinja2/environment.py:10()
</code></pre>
<p>One call, but as far I can see (and this is consistent across all my GAE-based apps), the most expensive in the whole request processing cycle.</p>
http://stackoverflow.com/questions/1013587/http-verb-decorator-for-django/1016510#10165103Answer by zgoda for Http verb decorator for Django?zgoda2009-06-19T05:53:49Z2009-06-19T05:53:49Z<p>There are standard built-in decorators for requiring particular HTTP method or list of allowed methods.</p>
<p>See the code: <a href="http://code.djangoproject.com/browser/django/trunk/django/views/decorators/http.py" rel="nofollow">http://code.djangoproject.com/browser/django/trunk/django/views/decorators/http.py</a>.</p>
http://stackoverflow.com/questions/1015072/is-it-possible-to-override-the-method-used-to-call-djangos-admin-delete-confirma/1015332#10153321Answer by zgoda for Is it possible to override the method used to call Django's admin delete confirmation page?zgoda2009-06-18T21:37:38Z2009-06-18T21:37:38Z<p>You can override <code>ModelAdmin.delete_view()</code> method, like:</p>
<pre><code>class MyModelAdmin(ModelAdmin):
def delete_view(self, request, object_id, extra_context=None):
# if request.POST is set, the user already confirmed deletion
if not request.POST:
perform_my_action()
super(MyModelAdmin, self).delete_view(request, object_id, extra_context)
</code></pre>
http://stackoverflow.com/questions/1011946/django-know-if-property-is-the-default-value/1012164#10121642Answer by zgoda for Django : Know if property is the default valuezgoda2009-06-18T11:28:10Z2009-06-18T11:28:10Z<p>The <code>default</code> in Django is not the same as SQL default - it's there merely for admin to auto-fill the form field on new object creation.</p>
<p>If you want to compare something to value defined as <code>default</code> you have to define it somewhere else (i.e. in <code>settings.py</code>). Like:</p>
<pre><code>class MyModel(models.Model):
...
my_field = models.IntegerField(default=settings.INT_DEFAULT)
</code></pre>
<p>The <code>default</code> value is stored in <code>MyModel._meta._fields()[field_creation_index].default</code> but be aware that this is digging in internals.</p>
http://stackoverflow.com/questions/887328/favicon-ico-not-found-error-in-app-engine/891926#8919261Answer by zgoda for favicon.ico "not found error" in app enginezgoda2009-05-21T08:44:15Z2009-05-21T08:46:14Z<p>This entry should be placed <em>before</em> the entry for the main handler, like:</p>
<pre><code>- url: /favicon.ico
static_files: media/img/favicon.ico
upload: media/img/favicon.ico
- url: /robots.txt
static_files: media/robots.txt
upload: media/robots.txt
- url: .*
script: main.py
</code></pre>
<p>The entries are processed in order of apperance and first one that matches <em>wins</em>.</p>
http://stackoverflow.com/questions/739451/data-viewer-for-appengine-java-development-server/741638#7416380Answer by zgoda for Data Viewer for AppEngine (Java) development serverzgoda2009-04-12T11:31:21Z2009-05-21T08:39:52Z<p>You can find it at <a href="http://localhost:8080/_ah/admin" rel="nofollow">http://localhost:8080/_ah/admin</a>. Looks bit different, but provides the same functionality (apart of <a href="http://code.google.com/p/googleappengine/issues/detail?id=502" rel="nofollow">some bugs</a>).</p>
<p>But in the light of OP question amendment this answer is not relevant anymore.</p>
http://stackoverflow.com/questions/890942/django-how-to-have-a-project-wide-templatetags-shared-among-all-my-apps-in-tha/891876#8918761Answer by zgoda for Django -- How to have a project wide templatetags shared among all my apps in that projectzgoda2009-05-21T08:20:49Z2009-05-21T08:20:49Z<p>Django registers templatetags globally for each app in <code>INSTALLED_APPS</code> (and that's why your solution does not work: <em>project</em> is not an <em>application</em> as understood by Django) — they are available in all templates (providing they was properly registered).</p>
<p>I usually have an app that handles <em>miscellaneous functionality</em> (like site's start page) and put templatetags not related to any particular app there, but this is purely cosmetic.</p>
http://stackoverflow.com/questions/831934/scaffold-or-django-admin-without-auth-app/833865#8338652Answer by zgoda for Scaffold or django-admin without Auth appzgoda2009-05-07T10:21:29Z2009-05-07T10:21:29Z<p>See the file django/contrib/admin/views/decorators.py:</p>
<pre><code>from django.contrib.auth.models import User
from django.contrib.auth import authenticate, login
</code></pre>
<p>These are used in decorator <code>staff_member_required</code> which guards access to admin application.</p>
<p>Admin application requires <code>django.contrib.auth</code> - you might try to monkeypatch it, but it's a bad habit (Django is not RoR, Python is not Ruby).</p>
http://stackoverflow.com/questions/830597/design-for-handling-exceptions-google-app-engine/833840#8338400Answer by zgoda for design for handling exceptions - google app enginezgoda2009-05-07T10:14:34Z2009-05-07T10:14:34Z<p>Ad. #4: I usually treat query strings as non-essential. If anything is wrong with query string, I'd just present bare resource page (as if no query was present), possibly with some information to user what was wrong with the query string.</p>
<p>This leads to the problem similar to your #3: how did the user got into this wrong query? Did my application produce wrong URL somewhere? Or was it outdated link in some external service, or saved bookmark? <code>HTTP_REFERER</code> might contain some clue, but of course is not authoritative, so I'd log the problematic query (with some additional HTTP headers) and try to investigate the case.</p>
http://stackoverflow.com/questions/832789/what-built-in-form-validation-does-app-engine-django-have/833783#833783-1Answer by zgoda for What Built-in Form Validation Does App Engine/Django Have?zgoda2009-05-07T10:02:06Z2009-05-07T10:02:06Z<p>Django 0.96 which is included in AppEngine API uses <em>oldforms</em> (manipulators) library. The validation was performed in somewhat more complicated way. The <a href="http://www.djangoproject.com/documentation/0.96/forms/" rel="nofollow">documentation is available</a>, though not so easily accessible.</p>
http://stackoverflow.com/questions/830236/django-contenttype-question/831236#8312362Answer by zgoda for Django contenttype questionzgoda2009-05-06T19:15:36Z2009-05-06T19:15:36Z<p>Your <code>c</code> is a class object, it does not have an attribute <code>title</code>.</p>
<p>What you want is an object that is referenced by both <code>content_type</code> and <code>object_id</code> - this is what is actually called <em>generic relation</em>, <a href="http://docs.djangoproject.com/en/dev/ref/contrib/contenttypes/#id1" rel="nofollow">as described in Django docs</a>. To use it, add the FK to your <code>Photo</code> class:</p>
<pre><code>content_object = generic.GenericForeignKey('content_type', 'object_id')
</code></pre>
<p>then you can just use this property in your template using just <code>{{ photo.content_object.title }}</code>.</p>
http://stackoverflow.com/questions/828702/how-to-measure-django-cache-performance/829260#8292601Answer by zgoda for How to measure Django cache performance?zgoda2009-05-06T12:08:36Z2009-05-06T12:08:36Z<p>At my previous work we tried to measure caching impact on site we was developing. On the same machine we load-tested the set of 10 pages that are most commonly used as start pages (object listings), plus some object detail pages taken randomly from the pool of ~200000. The difference was like 150 requests/second to 30000 requests/second and the database queries dropped to 1-2 per page.</p>
<p>What was cached:</p>
<ul>
<li>sessions</li>
<li>lists of objects retrieved for each individual page in object listing</li>
<li>secondary objects and common content (found on each page)</li>
<li>lists of object categories and other <em>categorising properties</em></li>
<li>object counters (calculated offline by cron job)</li>
<li>individual objects</li>
</ul>
<p>In general, we used only low-level granular caching, not the high-level cache framework. It required very careful design (cache had to be properly invalidated upon each database state change, like adding or modifying any object).</p>
http://stackoverflow.com/questions/820496/rules-for-slugs-and-unicode/824829#8248295Answer by zgoda for rules for slugs and unicodezgoda2009-05-05T13:21:26Z2009-05-05T21:02:46Z<p>Nearly-complete transliteration table (for latin, greek and cyrillic character sets) can be found in <a href="http://trac.django-fr.org/browser/site/trunk/project/links/slughifi.py?rev=47" rel="nofollow">slughifi library</a>. It is geared towards Django, but can be easily modified to fit general needs (I use it with Werkzeug-based app on AppEngine).</p>
http://stackoverflow.com/questions/1551508/using-python-locale-or-equivalent-in-web-applications/1554811#1554811Comment by zgoda on Using Python locale or equivalent in web applications?zgoda2009-10-12T18:58:38Z2009-10-12T18:58:38ZThese belong to l10n (localization), not i18n. I can recommend Babel - <a href="http://babel.edgewall.org/" rel="nofollow">babel.edgewall.org</a>, it has nice Django integration and is much more accurate than python's built in locale module.http://stackoverflow.com/questions/1531272/django-ajax-response-for-valid-available-username-email-during-registration/1539723#1539723Comment by zgoda on Django: ajax response for valid/available username/email during registrationzgoda2009-10-09T07:05:55Z2009-10-09T07:05:55ZExactly, sir. :)http://stackoverflow.com/questions/1365722/center-google-map-based-on-geocoded-ip/1367223#1367223Comment by zgoda on Center Google Map Based on geocoded IPzgoda2009-09-03T17:15:03Z2009-09-03T17:15:03ZWorks for me like charm.http://stackoverflow.com/questions/1339293/python-memory-leak-debugging/1339419#1339419Comment by zgoda on Python: Memory leak debuggingzgoda2009-08-31T07:09:28Z2009-08-31T07:09:28ZTry with the code from SVN, the leak has been fixed but update has not been released yet.http://stackoverflow.com/questions/1339293/python-memory-leak-debugging/1339419#1339419Comment by zgoda on Python: Memory leak debuggingzgoda2009-08-28T10:30:19Z2009-08-28T10:30:19ZIf you use Django ORM, you use extension module - DB-API database driver. Is this MySQLdb? Current version has known cursor memory leak when connection is established with use_unicode=True (which is the case for Django>=1.0).http://stackoverflow.com/questions/1329115/gender-problem-in-a-django-i18n-translation/1329157#1329157Comment by zgoda on Gender problem in a django i18n translationzgoda2009-08-26T09:09:40Z2009-08-26T09:09:40ZPython gettext library does not support contexts, see <a href="http://bugs.python.org/issue2504" rel="nofollow">bugs.python.org/issue2504</a>. Babel does not help here too, since msgctx support is planned for 1.0 release, see <a href="http://babel.edgewall.org/milestone/1.0" rel="nofollow">babel.edgewall.org/milestone/1.0</a>http://stackoverflow.com/questions/1318744/django-i18n-and-python-locales-and-dates/1321102#1321102Comment by zgoda on Django i18n and python locales (and dates)zgoda2009-08-25T10:25:25Z2009-08-25T10:25:25ZI'd say it does "i18n" as advertized. Formatting dates and monetary values is "l10n" (localization) which is absent in Django anyways. That's the domain of Babel library. :)http://stackoverflow.com/questions/1291755/how-can-i-tell-whether-my-django-application-is-running-on-development-server-or/1291858#1291858Comment by zgoda on How can I tell whether my Django application is running on development server or not?zgoda2009-08-21T08:19:42Z2009-08-21T08:19:42ZAnother META field that is specific for dev server: SERVER_SOFTWARE has strings <code>WSGIServer</code> and <code>Python</code> on dev and anything you configure in your HTTP server on "deployed".http://stackoverflow.com/questions/1077691/how-to-open-a-file-on-app-engine-patch/1077743#1077743Comment by zgoda on How to open a file on app engine patch?zgoda2009-07-03T19:43:33Z2009-07-03T19:43:33ZThis does not mean app-engine-patch has anything in common - this is the whole call stack that leads to this error. Paste your tracebask somewhere, we'll try to help (eg. at <a href="http://paste.pocoo.org/" rel="nofollow">paste.pocoo.org</a>).http://stackoverflow.com/questions/618827/optimizing-jinja2-environment-creation/1020013#1020013Comment by zgoda on Optimizing Jinja2 Environment creationzgoda2009-06-20T07:28:58Z2009-06-20T07:28:58ZThanks, Rodrigo, that's exactly what I've been looking for. :)http://stackoverflow.com/questions/1009812/timestamp-conversion-is-off-by-an-hour/1009828#1009828Comment by zgoda on Timestamp conversion is off by an hourzgoda2009-06-19T07:20:11Z2009-06-19T07:20:11ZThis reminds that you should use UTC internally and convert it to local time for output only (like display). Pytz to the rescue.http://stackoverflow.com/questions/1007481/how-do-i-replace-whitespaces-with-underscore-and-vice-versa/1007615#1007615Comment by zgoda on How do I replace whitespaces with underscore and vice versa?zgoda2009-06-19T07:17:57Z2009-06-19T07:17:57ZRemember to urllib.quote() the output of your urlify() - what if s contains something non-ascii?http://stackoverflow.com/questions/1011946/django-know-if-property-is-the-default-value/1012164#1012164Comment by zgoda on Django : Know if property is the default valuezgoda2009-06-19T05:22:58Z2009-06-19T05:22:58ZSure, I didn't even know such method exists for Meta. I always used fields() for iteration over the complete list of fields, never tried to access single field attributes. :)http://stackoverflow.com/questions/1011946/django-know-if-property-is-the-default-value/1012164#1012164Comment by zgoda on Django : Know if property is the default valuezgoda2009-06-18T20:41:02Z2009-06-18T20:41:02ZAnything with name beginning with underscore should be considered internal. Anyway, it did not change between 1.0 and 1.1.http://stackoverflow.com/questions/1005972/what-is-the-easiest-way-to-see-if-a-process-with-a-given-pid-exists-in-python/1006030#1006030Comment by zgoda on What is the easiest way to see if a process with a given pid exists in Python?zgoda2009-06-18T11:50:25Z2009-06-18T11:50:25ZAnd only on Linux.