User insin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T21:34:53Zhttp://stackoverflow.com/feeds/user/6760http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1527599/why-is-my-django-template-context-processor-not-getting-called/1527970#15279706Answer by insin for Why is my django template context processor not getting calledinsin2009-10-06T20:35:11Z2009-10-06T20:35:11Z<p>Did you remember to use <a href="http://docs.djangoproject.com/en/dev/ref/templates/api/#id1" rel="nofollow">RequestContext</a> when rendering the template?</p>
http://stackoverflow.com/questions/1418825/python-classes-special-methods/1418844#14188445Answer by insin for Python classes special methodsinsin2009-09-13T21:11:25Z2009-09-13T21:11:25Z<p>Dive Into Python has <a href="http://diveintopython3.org/special-method-names.html" rel="nofollow">an excellent appendix</a> for them.</p>
http://stackoverflow.com/questions/1378155/reading-form-action-property-in-ie6-if-form-has-a-field-named-action/1398902#13989021Answer by insin for Reading form action property in IE6, if form has a field named "action"insin2009-09-09T10:46:49Z2009-09-09T10:59:57Z<p>There is a simple way, using the node's <a href="https://developer.mozilla.org/En/DOM/Node.attributes" rel="nofollow"><code>attributes</code></a> collection:</p>
<pre><code>document.getElementById("myForm").attributes["action"].value
</code></pre>
<p>Test page to try it out (also demonstrates the brokenness of getAttribute as mentioned David Dorward's answer):</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<title>Form Action Access</title>
<script type="text/javascript">
function dotAccess()
{
alert(document.getElementById("myForm").action.value);
}
function getAttributeAccess()
{
alert(document.getElementById("myForm").getAttribute("action"));
}
function attributesAccess()
{
alert(document.getElementById("myForm").attributes["action"].value);
}
</script>
</head>
<body>
<form id="myForm" action="foo">
<input type="hidden" name="action" value="bar">
<input type="button" onclick="dotAccess()" value="form.action">
<input type="button" onclick="getAttributeAccess()" value='form.getAttribute("action")'>
<input type="button" onclick="attributesAccess()" value='form.attributes["action"]'>
</form>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1348723/is-there-any-way-to-add-a-class-attribute-to-an-input-tag-generated-by-django-mod/1354181#13541810Answer by insin for Is there any way to add a class attribute to an input tag generated by django.models?insin2009-08-30T16:07:21Z2009-08-30T16:07:21Z<p><a href="http://github.com/simonw/django-html" rel="nofollow">django-html</a> provides a templatetag which allows you to add extra attributes in the template, like so:</p>
<pre><code>{% field form.fieldname class="myclass" %}
</code></pre>
http://stackoverflow.com/questions/1079002/why-have-my-images-got-extra-spacing/1079018#10790182Answer by insin for Why have my images got extra spacing?insin2009-07-03T11:50:19Z2009-07-03T11:55:33Z<p>It'l likely be the vertical alignment - check the computed style to see what it currently is for the images, then try adding this to your stylesheet:</p>
<pre><code>img { vertical-align: text-bottom; }
</code></pre>
<p>See <a href="http://gtwebdev.com/workshop/gaps/image-gap.php" rel="nofollow">That mysterious gap under images</a> and <a href="http://css-tricks.com/what-is-vertical-align/" rel="nofollow">What is Vertical Align</a> for some examples of what's happening.</p>
http://stackoverflow.com/questions/752222/jquery-with-json-array-convert-to-javascript-array/752628#7526280Answer by insin for Jquery with JSON Array - convert to Javascript Arrayinsin2009-04-15T16:44:54Z2009-04-15T16:44:54Z<p>If you've told explicitly jQuery that you're expecting an XML document back (using the <a href="http://docs.jquery.com/Ajax/jQuery.ajax" rel="nofollow"><code>dataType</code> option</a>) or if you haven't specified the data type and the server is sending it correctly as XML anyway (in which case, jQuery will guess and give you back <code>responseXML</code> instead of <code>responseText</code>), you should be able to use the following in your success callback function to extract an Array of Arrays of Strings from the XML, where <code>data</code> is an XML document:</p>
<pre><code>$(data).find("ArrayOfString").map(function()
{
return $(this).find('string').map(function()
{
return $(this).text();
});
});
</code></pre>
http://stackoverflow.com/questions/738831/how-to-display-browser-specific-html/738990#7389900Answer by insin for How to display browser specific HTML?insin2009-04-10T21:54:01Z2009-04-10T22:01:02Z<p>IE supports <a href="http://javascriptkit.com/javatutors/conditionalcompile.shtml" rel="nofollow">conditional compilation</a>, which you can use to easily deliver IE-only code without needing to perform user agent sniffing or feature detection.</p>
<pre><code>/*@cc_on
/*@if (@_jscript)
alert("IE.");
@else @*/
alert("Not IE.");
/*@end
@*/
</code></pre>
http://stackoverflow.com/questions/737307/javascript-is-it-better-to-use-innerhtml-or-lots-of-createelement-calls-to-add/737890#7378900Answer by insin for JavaScript: Is it better to use innerHTML or (lots of) createElement calls to add a complex div structure?insin2009-04-10T14:55:45Z2009-04-10T14:55:45Z<p>Since you mentioned template and clone, you may be interested in this question:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/676249/deep-cloning-vs-setting-of-innerhtml-whats-faster">Deep cloning vs setting of innerHTML: what’s faster?</a></li>
</ul>
<p>Another option is to use a DOM wrapper, such as <a href="http://code.google.com/p/dombuilder/" rel="nofollow">DOMBuilder</a>:</p>
<pre><code>DOMBuilder.apply(window);
DIV({"class": "class0 class1 class3"},
DIV({"class": "spacer"}),
DIV({id: "content"}, "content"),
DIV({"class": "spacer"}),
DIV({id: "content2"}, "content2"),
DIV({"class": "class4"}, "content3"),
DIV({"class": "spacer"}),
DIV({id: "footer"}, "content3")
);
</code></pre>
<p>Personally, if each item is going to need the <em>exact</em> same structure created I would go with the cloning approach. If there's any logic involved in creating the structure into which the content will go, I'd rather maintain something like the above than fiddling about with strings. If that approach turned out to be too slow, I'd fall back to innerHTML.</p>
http://stackoverflow.com/questions/723421/custom-actions-in-django-admin/723499#7234992Answer by insin for Custom actions in Django Admininsin2009-04-06T22:30:14Z2009-04-06T22:30:14Z<p><a href="http://docs.djangoproject.com/en/dev/ref/contrib/admin/actions/#ref-contrib-admin-actions" rel="nofollow">Admin actions</a> (currently available in the development version, <a href="http://docs.djangoproject.com/en/dev/releases/1.1-beta-1/" rel="nofollow">which is in beta</a>) allow you to easily hook up custom actions which can be performed on selected items from the admin's list pages.</p>
http://stackoverflow.com/questions/625786/how-can-i-pass-all-the-parameters-to-a-decorator/625806#6258067Answer by insin for How can I pass all the parameters to a decorator?insin2009-03-09T10:58:51Z2009-03-09T11:11:17Z<p>This line is incorrect:</p>
<pre><code>ret_val = func(args)
</code></pre>
<p>You're forgetting to expand the argument list when you're passing it on. It should be:</p>
<pre><code>ret_val = func(*args)
</code></pre>
<p>Sample output with this modification in place:</p>
<pre><code>>>> class Test2:
... @trace
... def test3(self, a, b):
... pass
...
>>> t = Test2()
>>> t.test3(1,2)
entering test3 with args (<__main__.Test2 instance at 0x7ff2b42c>, 1, 2)
return value None
exiting test3
>>>
</code></pre>
<p>If you ever expand your decorator to also take keyword arguments, you'd also need to expand those appropriately when passing them on, using <code>**</code>.</p>
http://stackoverflow.com/questions/625800/django-form-preview-adding-the-user-to-the-form-before-save/625826#6258262Answer by insin for Django Form Preview - Adding the User to the Form before saveinsin2009-03-09T11:06:32Z2009-03-09T11:06:32Z<p>If the user can't be modified, I would say it shouldn't even be included in the form in the first place.</p>
<p>Either way, <a href="http://docs.djangoproject.com/en/dev/topics/forms/modelforms/#the-save-method" rel="nofollow">using the <code>commit</code> argument</a> to prevent the resulting object being saved immediately should work (assuming <code>FormPreview</code> uses <code>ModelForm</code>):</p>
<pre><code>obj = form.save(commit=False)
obj.user = request.user
obj.save()
</code></pre>
http://stackoverflow.com/questions/583327/django-model-with-2-foreign-keys-from-the-same-table/585624#5856242Answer by insin for Django model with 2 foreign keys from the same tableinsin2009-02-25T11:17:11Z2009-02-25T11:17:11Z<p>From the error message, it sounds like you're trying to put two foreign keys to the same object on an intermediary table used via the <code>through</code> argument to <code>ManyToManyField</code>, the <a href="http://docs.djangoproject.com/en/dev/topics/db/models/#extra-fields-on-many-to-many-relationships" rel="nofollow">documentation for which states</a>:</p>
<blockquote>
<p>When you set up the intermediary
model, you explicitly specify foreign
keys to the models that are involved
in the ManyToMany relation. This
explicit declaration defines how the
two models are related.</p>
<p>There are a few restrictions on the
intermediate model:</p>
<ul>
<li>Your intermediate model must contain one - and only one - foreign key to
the target model (this would be Person
in our example). If you have more than
one foreign key, a validation error
will be raised.</li>
<li>Your intermediate model must contain one - and only one - foreign key to
the source model (this would be Group
in our example). If you have more than
one foreign key, a validation error
will be raised.</li>
</ul>
</blockquote>
http://stackoverflow.com/questions/565034/setting-values-to-the-output-of-a-formset-in-django/565967#5659671Answer by insin for Setting values to the output of a formset in Djangoinsin2009-02-19T15:57:05Z2009-02-19T15:57:05Z<p>Pass in a list of dicts which contain the default values you want to set for each form:</p>
<p><a href="http://docs.djangoproject.com/en/dev/topics/forms/formsets/#using-initial-data-with-a-formset" rel="nofollow">http://docs.djangoproject.com/en/dev/topics/forms/formsets/#using-initial-data-with-a-formset</a></p>
http://stackoverflow.com/questions/563367/django-manager-for-set-in-model/565729#5657293Answer by insin for Django manager for _set in modelinsin2009-02-19T15:08:48Z2009-02-19T15:32:05Z<p>I find the documentation slightly unclear, but the <a href="http://docs.djangoproject.com/en/dev/topics/db/managers/#using-managers-for-related-object-access" rel="nofollow"><code>use_for_related_fields</code></a> <code>Manager</code> attribute may be what you're looking for. When you're trying it, note that <a href="http://code.djangoproject.com/browser/django/trunk/django/db/models/fields/related.py#L247" rel="nofollow">this functionality uses <code>_default_manager</code></a>, which will always point at the first Manager declared in a Model class, regardless of what attribute name it's been given. You can always customise which items are editable in your admin site by overriding the <code>queryset</code> method in the appropriate <code>ModelAdmin</code> class instead.</p>
<p>Failing that...</p>
<pre><code>class Category(models.Model):
def public_stories(self):
return Story.objects.filter(category=self)
</code></pre>
<p>...and...</p>
<pre><code>{% for story in category.public_stories %}
</code></pre>
<p>This at least avoids duplicating the logic which determines which stories are viewable.</p>
http://stackoverflow.com/questions/559701/django-queries-made-repeat-inefficient/560552#5605523Answer by insin for Django - queries made repeat/inefficientinsin2009-02-18T10:40:17Z2009-02-18T15:23:39Z<p>Does Client 1 have 2 Pets and Client 2 have 1 Pet?</p>
<p>If so, that would indicate to me that <code>Pet.full_name</code> or something else you're doing in the Pet display loop is trying to access its related Client's details. Django's ORM doesn't use an <a href="http://martinfowler.com/eaaCatalog/identityMap.html" rel="nofollow">identity map</a>, so accessing the Client foreign key from any of your Pet objects would require hitting the database again to retrieve that Client.</p>
<p>P.S. <a href="http://docs.djangoproject.com/en/dev/ref/models/querysets/#id4" rel="nofollow"><code>select_related</code></a> won't have any effect on the data you're using in this scenario as it only follows foreign-key relationships, but the pet-to-client relationship is many-to-one.</p>
<p><strong>Update:</strong> if you want to avoid having to change the logic in <code>Pet.full_name</code> or having to perform said logic in the template instead for this case, you could alter the way you get a handle on each Client's Pets in order to prefill the ForeignKey cache with for each Pet with its Client:</p>
<pre><code>class Client(models.Model):
# ...
def get_pets(self):
for pet in self.pets.all():
setattr(pet, '_client_cache', self)
yield pet
</code></pre>
<p>...where the <code>'client'</code> part of <code>'_client_cache'</code> is whatever attribute name is used in the Pet class for the ForeignKey to the Pet's Client. This takes advantage of the way Django implements access to ForeignKey-related objects using its <code>SingleRelatedObjectDescriptor</code> class, which looks for this cache attribute before querying the database.</p>
<p>Resulting template usage:</p>
<pre><code>{% for pet in client.get_pets %}
...
{% endfor %}
</code></pre>
http://stackoverflow.com/questions/560455/banned-ips-in-django-form-validation/560514#5605147Answer by insin for Banned IPs in Django form validationinsin2009-02-18T10:22:58Z2009-02-18T10:22:58Z<p>Make it available to your form by overriding <code>__init__</code> so it can be passed in during construction (or you could just pass the IP itself):</p>
<pre><code>from django import forms
class YourForm(forms.Form)
# fields...
def __init__(self, request, *args, **kwargs):
self.request = request
super(YourForm, self).__init__(*args, **kwargs)
# validation methods...
</code></pre>
<p>Now you just need to pass the <code>request</code> object as the first argument when initialising the form and your custom validation methods will have access to it through <code>self.request</code>:</p>
<pre><code>if request.method == 'POST':
form = YourForm(request, request.POST)
# ...
else:
form = YourForm(request)
# ...
</code></pre>
http://stackoverflow.com/questions/557242/django-how-can-i-put-an-a-hyperlink-in-a-django-validation-error-from-a-forms/557297#5572972Answer by insin for Django: How can I put an <a> hyperlink in a django validation error from a forms clean() method?insin2009-02-17T15:17:58Z2009-02-17T15:17:58Z<p>Call <a href="http://docs.djangoproject.com/en/dev/howto/custom-template-tags/#auto-escaping-considerations" rel="nofollow"><code>mark_safe</code></a> on the error message string when you're raising the <code>ValidationError</code></p>
http://stackoverflow.com/questions/553038/treat-null-as-0-in-django-model/556390#5563902Answer by insin for Treat NULL as '0' in Django modelinsin2009-02-17T11:30:34Z2009-02-17T11:30:34Z<p>Prior to the introduction of annotations, you might have used <a href="http://docs.djangoproject.com/en/dev/ref/models/querysets/#extra-select-none-where-none-params-none-tables-none-order-by-none-select-params-none" rel="nofollow"><code>extra</code></a> to do something like this, which I <em>think</em> should return <code>0</code> in cases where there are no votes (if it doesn't for any particular database implementation, you can at least directly insert the necessary <code>COALESCE</code> function call - <code>COALESCE(SUM(value), 0)</code> - using this method):</p>
<pre><code>pictures = gallery.picture_set.extra(
select={
'score': 'SELECT SUM(value) FROM yourapp_picturevote WHERE yourapp_picturevote.picture_id = yourapp_picture.id',
},
order_by=['-score']
)
</code></pre>
<p>I can't see any built-in way to add your own SQL to the new annotation stuff (which I haven't personally used yet), but it looks like you should be able to create a new annotation like so:</p>
<pre><code>from django.db.models import aggregates
from django.db.models.sql import aggregates as sql_aggregates
class SumWithDefault(aggregates.Aggregate):
name = 'SumWithDefault'
class SQLSumWithDefault(sql_aggregates.Sum):
sql_template = 'COALESCE(%(function)s(%(field)s), %(default)s)'
setattr(sql_aggregates, 'SumWithDefault', SQLSumWithDefault)
</code></pre>
<p>This looks rather ugly as you need to monkeypatch the new aggregate into <code>django.db.models.sql.aggregates</code> due to the way the SQL aggregate classes are looked up, but all we've done here is added a new aggregate which subclasses <code>Sum</code>, hardcoding a call to the <code>COALESCE</code> function and adding a placeholder for the default value, which you <em>must</em> supply as a keyword argument (in this very basic example implementation, at least).</p>
<p>This should let you do the following:</p>
<pre><code>pictures = gallery.picture_set.annotate(score=SumWithDefault('picturevote__value', default=0).order_by('-score')
</code></pre>
http://stackoverflow.com/questions/333499/if-you-take-ie-out-of-the-picture-what-additional-javascript-functionality-is-ava/333631#3336312Answer by insin for If you take IE out of the picture what additional JavaScript functionality is available in the other browsers?insin2008-12-02T11:02:03Z2008-12-02T11:10:57Z<p>With Gecko-engined browsers, you get:</p>
<ul>
<li><a href="https://developer.mozilla.org/en/New_in_JavaScript_1.6" rel="nofollow">https://developer.mozilla.org/en/New_in_JavaScript_1.6</a></li>
<li><a href="https://developer.mozilla.org/en/New_in_JavaScript_1.7" rel="nofollow">https://developer.mozilla.org/en/New_in_JavaScript_1.7</a></li>
<li><a href="https://developer.mozilla.org/en/New_in_JavaScript_1.8" rel="nofollow">https://developer.mozilla.org/en/New_in_JavaScript_1.8</a></li>
</ul>
<p>In terms of other browsers implementing these features, I'm only aware of Webkit implementing <a href="https://developer.mozilla.org/en/New_in_JavaScript_1.6#Array_extras" rel="nofollow">Array Extras</a>, but it's actually quite easy to <a href="http://erik.eae.net/archives/2005/06/05/17.53.19/" rel="nofollow">monkeypatch support for those in all browsers</a> since they're just additional methods.</p>
<p>Gecko, Opera and Webkit also support the <a href="https://developer.mozilla.org/en/Canvas_tutorial" rel="nofollow"><code>canvas</code> element</a>, which although being a new HTML element, is used via JavaScript, so I'm not sure if that fits your criteria. Having said that, there are <a href="http://blog.vlad1.com/2008/07/30/no-browser-left-behind/" rel="nofollow">independent efforts underway</a> to bring it to IE.</p>
http://stackoverflow.com/questions/324779/strategies-for-speeding-up-batch-orm-operations-in-django/325066#3250663Answer by insin for Strategies for speeding up batch ORM operations in Djangoinsin2008-11-28T04:39:02Z2008-11-28T04:39:02Z<p>The ticket you linked to is for bulk creation - if you're not relying on an overridden <code>save</code> method or pre/post save signals to do bits of work on save, <a href="http://docs.djangoproject.com/en/dev/topics/db/queries/#updating-multiple-objects-at-once" rel="nofollow"><code>QuerySet</code> has an <code>update</code> method</a> which you can use to perform an <code>UPDATE</code> on the filtered rows:</p>
<pre><code>Something.objects.filter(x__in=['a', 'b', 'c']).update(a='something')
</code></pre>
http://stackoverflow.com/questions/291249/django-how-do-i-model-a-tree-of-heterogeneous-data-types/292486#2924862Answer by insin for Django: How do I model a tree of heterogeneous data types? insin2008-11-15T12:30:54Z2008-11-15T12:30:54Z<p>How about using a <a href="http://docs.djangoproject.com/en/dev/ref/contrib/contenttypes/#id1" rel="nofollow">generic relation</a> from the model which will hold the tree structure to the content object for the node it represents?</p>
<pre><code>from django.db import models
from django.contrib.contenttypes.models import ContentType
from django.contrib.contenttypes import generic
class Node(models.Model):
content_type = models.ForeignKey(ContentType)
object_id = models.PositiveIntegerField()
object = generic.GenericForeignKey('content_type', 'object_id')
</code></pre>
<p>This could potentially result in a lot of queries when retrieving content objects for the full tree, but there are <a href="http://code.google.com/p/soclone/source/browse/trunk/soclone/utils/models.py#56" rel="nofollow">ways and means</a> of reducing the number of queries required.</p>
<pre><code># Assuming mptt, as I'm not familiar with treebeard's API
# 1 query to retrieve the tree
tree = list(Node.tree.all())
# 4 queries to retrieve and cache all ContentType, A, B and C instances, respectively
populate_content_object_caches(tree)
</code></pre>
http://stackoverflow.com/questions/269060/is-there-a-python-library-function-which-attempts-to-guess-the-character-encoding/269105#2691056Answer by insin for Is there a Python library function which attempts to guess the character-encoding of some bytes?insin2008-11-06T15:26:25Z2008-11-06T15:26:25Z<p>You may be interested in <a href="http://chardet.feedparser.org/" rel="nofollow">Universal Encoding Detector</a>.</p>
http://stackoverflow.com/questions/268089/multiple-database-support-in-django/268369#2683693Answer by insin for Multiple database support in django.insin2008-11-06T11:35:55Z2008-11-06T11:35:55Z<p>The most recent discussion I've seen on it was in the <a href="http://groups.google.com/group/django-developers/browse_thread/thread/9f0353fe0682b73" rel="nofollow">Proposal: user-friendly API for multi-database support</a> django-developers thread, which also has an example of one way to use multiple databases using Managers in the original message.</p>
http://stackoverflow.com/questions/263965/how-can-i-convert-a-string-to-boolean-in-javascript/264097#2640971Answer by insin for How can I convert a string to boolean in JavaScript?insin2008-11-05T01:12:11Z2008-11-05T01:12:11Z<p>Your solution is fine.</p>
<p>Using <code>===</code> would just be silly in this case, as the field's <code>value</code> will always be a <code>String</code>.</p>
http://stackoverflow.com/questions/261045/eclipse-3-4-ganymede-javascript-validation-issue/261760#2617604Answer by insin for Eclipse 3.4 Ganymede Javascript Validation Issueinsin2008-11-04T12:40:34Z2008-11-04T12:40:34Z<p>Unfortunately, you might just have to scrap the JavaScript validation.</p>
<p>In my experience, the JavaScript tools which come bundled with Eclipse 3.4 have a hard time... well, <em>understanding</em> JavaScript at all, generating bogus warnings and errors as a result.</p>
<p>For example, the common practice of using an <code>Object</code> as a poor man's namespace causes it to get completely lost. Here's <a href="http://www.jonathanbuchanan.plus.com/images/eclipsejs.png" rel="nofollow">a screenshot of the kind of mess it makes</a> when trying to understand <a href="http://code.google.com/p/js-forms/source/browse/trunk/time.js" rel="nofollow">this JavaScript file</a> - note the useless outline view and the spurious (and incorrect) warnings and errors (including not seeming to understand than <code>String.split</code> returns an <code>Array</code>).</p>
http://stackoverflow.com/questions/261219/class-variables-in-javascript/261639#2616391Answer by insin for Class Variables in Javascriptinsin2008-11-04T11:57:57Z2008-11-04T12:21:23Z<p>Incrementing the <code>shared</code> property via the instance makes it a property of that instance, which is why you're seeing this behaviour.</p>
<p>Once you've done that, you'll never be accessing the prototype for that property through the instance, but its own property.</p>
<pre><code>>>> function ConstructorA() {};
>>> ConstructorA.prototype.shared = 0;
>>> var a = new ConstructorA();
>>> ConstructorA.prototype.shared++;
>>> a.shared
1
>>> a.hasOwnProperty("shared")
false
>>> a.shared++;
>>> a.hasOwnProperty("shared")
true
</code></pre>
<p>This is why the correct solution is to use <code>ConstructorA.shared</code>, as suggested in many of the answers so far, and always access it through the constructor function, not an instance.</p>
<p>It might help to consider that there's no such thing as a class in JavaScript. "Instances" created with the <code>new</code> operator are just objects which have been created by a particular constructor function and have a particular prototype chain. This is why <code>a.shared</code> won't be able to access <code>ConstructorA.shared</code> - property access involves looking at the object in question for the named property, and failing that, walking its prototype chain looking for the property, but the constructor function which created the object isn't part of the prototype chain.</p>
http://stackoverflow.com/questions/258296/django-models-how-to-filter-number-of-foreignkey-objects/258310#2583106Answer by insin for Django models - how to filter number of ForeignKey objectsinsin2008-11-03T10:47:39Z2008-11-03T11:44:10Z<p>Sounds like a job for <a href="http://docs.djangoproject.com/en/dev/ref/models/querysets/#extra-select-none-where-none-params-none-tables-none-order-by-none-select-params-none" rel="nofollow"><code>extra</code></a>.</p>
<pre><code>A.objects.extra(
select={
'b_count': 'SELECT COUNT(*) FROM yourapp_b WHERE yourapp_b.a_id = yourapp_a.id',
},
where=['b_count < 2']
)
</code></pre>
<p>If the B count is something you often need as a filtering or ordering criterion, or needs to be displayed on list views, you could consider denormalisation by adding a b_count field to your A model and using signals to update it when a B is added or deleted:</p>
<pre><code>from django.db import connection, transaction
from django.db.models.signals import post_delete, post_save
def update_b_count(instance, **kwargs):
"""
Updates the B count for the A related to the given B.
"""
if not kwargs.get('created', True) or kwargs.get('raw', False):
return
cursor = connection.cursor()
cursor.execute(
'UPDATE yourapp_a SET b_count = ('
'SELECT COUNT(*) FROM yourapp_b '
'WHERE yourapp_b.a_id = yourapp_a.id'
') '
'WHERE id = %s', [instance.a_id])
transaction.commit_unless_managed()
post_save.connect(update_b_count, sender=B)
post_delete.connect(update_b_count, sender=B)
</code></pre>
<p>Another solution would be to manage a status flag on the A object when you're adding or removing a related B.</p>
<pre><code>B.objects.create(a=some_a)
if some_a.hidden and some_a.b_set.count() > 1:
A.objects.filter(id=some_a.id).update(hidden=False)
...
some_a = b.a
some_b.delete()
if not some_a.hidden and some_a.b_set.count() < 2:
A.objects.filter(id=some_a.id).update(hidden=True)
</code></pre>
http://stackoverflow.com/questions/257655/snippit-based-django-semi-cms/258282#2582822Answer by insin for 'Snippit' based django semi-CMSinsin2008-11-03T10:25:56Z2008-11-03T10:25:56Z<p>Sounds like <a href="http://code.google.com/p/django-chunks/" rel="nofollow">django-chunks</a> to me.</p>
http://stackoverflow.com/questions/256325/django-filtering-on-related-objects/256782#2567821Answer by insin for Django - filtering on related objectsinsin2008-11-02T11:21:28Z2008-11-02T11:26:30Z<p>The <code>filter</code> method is for filtering which objects are returned based on the specified criteria, so it's not what you want here. One option is to do a second query to retrieve all ratings for given <code>Event</code> objects for the current <code>User</code>.</p>
<p>Models:</p>
<pre><code>import collections
from django.db import models
class RatingManager(models.Manager):
def get_for_user(self, events, user):
ratings = self.filter(event__in=[event.id for event in events],
user=user)
rating_dict = collections.defaultdict(lambda: None)
for rating in ratings:
rating_dict[rating.event_id] = rating
return rating_dict
class Rating(models.Model):
# ...
objects = RatingManager()
</code></pre>
<p>View:</p>
<pre><code>events = Event.objects.all()
user_ratings = Rating.objects.get_for_user(events, request.user)
context = {
'events': [(event, user_ratings[event.id]) for event in events],
}
</code></pre>
<p>Template:</p>
<pre><code>{% for event, user_rating in events %}
{% if user_rating %} ... {% endif %}
{% endfor %}
</code></pre>
http://stackoverflow.com/questions/155426/why-does-ie-give-unexpected-errors-when-setting-innerhtml/255180#2551807Answer by insin for Why does IE give unexpected errors when setting innerHTMLinsin2008-10-31T22:45:49Z2008-10-31T22:45:49Z<p>You're seeing that behaviour because innerHTML is read-only for table elements in IE. From MSDN's <a href="http://msdn.microsoft.com/en-us/library/ms533897(VS.85).aspx" rel="nofollow">innerHTML Property</a> documentation:</p>
<blockquote>
<p>The property is read/write for all objects except the following, for which it is read-only: COL, COLGROUP, FRAMESET, HEAD, HTML, STYLE, TABLE, TBODY, TFOOT, THEAD, TITLE, TR.</p>
</blockquote>
http://stackoverflow.com/questions/1647287/add-a-node-before-a-closing-tag/1647303#1647303Comment by insin on Add a node before a closing tag?insin2009-10-30T00:29:10Z2009-10-30T00:29:10Z@MrSparky parentElement.insertBefore(newElement, parentElement.firstChild)http://stackoverflow.com/questions/1324238/what-is-the-fastest-template-system-for-python/1324760#1324760Comment by insin on What is the fastest template system for Python?insin2009-08-25T00:34:23Z2009-08-25T00:34:23Z<a href="http://www.codeirony.com/?p=9" rel="nofollow">codeirony.com/?p=9</a>http://stackoverflow.com/questions/180841/best-javascript-syntactic-sugar/181939#181939Comment by insin on Best javascript syntactic sugarinsin2009-08-15T20:57:21Z2009-08-15T20:57:21ZIE8 only implements getters/setters for DOM objects, so it's useless when it comes to making your own object APIs neater :-/http://stackoverflow.com/questions/750779/what-cant-be-done-using-css/750828#750828Comment by insin on What can't be done using CSSinsin2009-04-15T13:16:56Z2009-04-15T13:16:56ZThis can be done with CSS2's display:table and friends. Oh, you're using IE6 or IE7? Now you have two problems ;)http://stackoverflow.com/questions/737802/functions-as-parameters-with-parameters-javasript/737840#737840Comment by insin on Functions as parameters (with parameters) -- JavaSriptinsin2009-04-10T15:08:33Z2009-04-10T15:08:33ZYes, as apply and call are both methods of the Function object.http://stackoverflow.com/questions/723421/custom-actions-in-django-admin/723499#723499Comment by insin on Custom actions in Django Admininsin2009-04-06T23:12:50Z2009-04-06T23:12:50ZThis feature actually started out as a third-party app: <a href="http://code.google.com/p/django-batchadmin/" rel="nofollow">code.google.com/p/django-batchadmin</a>http://stackoverflow.com/questions/124831/ignore-tag-implementation-for-greasemonkey-usersComment by insin on Ignore tag implementation for Greasemonkey usersinsin2009-03-12T06:43:50Z2009-03-12T06:43:50ZJust fixed it - grab the latest version from userscripts.orghttp://stackoverflow.com/questions/583327/django-model-with-2-foreign-keys-from-the-same-tableComment by insin on Django model with 2 foreign keys from the same tableinsin2009-02-25T11:08:32Z2009-02-25T11:08:32ZCan you provide the Model classes which are giving you this issue?http://stackoverflow.com/questions/581920/what-language-tool-should-i-use-for-html-parsingComment by insin on What language/tool should I use for HTML parsing?insin2009-02-24T14:30:35Z2009-02-24T14:30:35ZCould you elaborate on the "doesn't work" with regards to BeautifulSoup? I would have suggested it, otherwise.http://stackoverflow.com/questions/559701/django-queries-made-repeat-inefficient/560552#560552Comment by insin on Django - queries made repeat/inefficientinsin2009-02-18T15:33:35Z2009-02-18T15:33:35ZDjango does do some caching, but the cache for each Pet's Client is in the Pet instance. With what you're doing, you'd have (1 + number of clients + number of pets) queries for this page. With my suggestion in place, you'd end up with (1 + number of clients queries). With S.Lott's: 2 queries.http://stackoverflow.com/questions/276345/syntax-error-whenever-i-put-python-code-inside-a-django-template/276372#276372Comment by insin on Syntax error whenever I put Python code inside a Django templateinsin2008-11-10T01:52:42Z2008-11-10T01:52:42Z...or in custom template tags and template filters.http://stackoverflow.com/questions/271077/django-how-to-do-tuple-unpacking-in-a-template-for-loop/271128#271128Comment by insin on Django - How to do tuple unpacking in a template 'for' loopinsin2008-11-07T20:17:42Z2008-11-07T20:17:42Zi.e. you thought you were building a list of two-tuples, but you forgot the tuple part - note the extra parentheses surrounding the product type/product list pairs in Cipher's answerhttp://stackoverflow.com/questions/271077/django-how-to-do-tuple-unpacking-in-a-template-for-loop/271098#271098Comment by insin on Django - How to do tuple unpacking in a template 'for' loopinsin2008-11-07T20:14:24Z2008-11-07T20:14:24ZChris Lawlor hasn't explained how he's ended up with the data structure he has (which isn't actually list of two-tuples), but this suggested approach would result in N + 1 queries to display the product list.http://stackoverflow.com/questions/261045/eclipse-3-4-ganymede-javascript-validation-issue/261760#261760Comment by insin on Eclipse 3.4 Ganymede Javascript Validation Issueinsin2008-11-04T21:23:36Z2008-11-04T21:23:36ZWindow -> Preferences -> Validation -> JavaScript Syntax Validationhttp://stackoverflow.com/questions/261219/class-variables-in-javascript/261243#261243Comment by insin on Class Variables in Javascriptinsin2008-11-04T11:55:06Z2008-11-04T11:55:06ZWhy is this being voted down? It's one of the answers which gives the correct solution.