User defrex - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T04:35:28Zhttp://stackoverflow.com/feeds/user/6007http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/105702/making-a-beta-code-for-a-public-django-site7Making a beta code for a public django sitedefrex2008-09-19T21:17:20Z2009-11-20T14:47:12Z
<p>I'm about to put a beta version of the site I'm working on up on the web. It needs to have a beta code to restrict access. The site is written in django.</p>
<p>I don't want to change the fundamental Auth system to accommodate a beta code, and I don't care particularly that the security of the beta code is iron-clad, just that it's a significant stumbling block.</p>
<p>How should I do this? It's a fairly large project so adding code to every view is far from ideal.</p>
<p><hr /></p>
<p>That solution works well. The Middleware Class I ended up with this this:</p>
<pre><code>from django.http import HttpResponseRedirect
class BetaMiddleware(object):
"""
Require beta code session key in order to view any page.
"""
def process_request(self, request):
if request.path != '/beta/' and not request.session.get('in_beta'):
return HttpResponseRedirect('%s?next=%s' % ('/beta/', request.path))
</code></pre>
http://stackoverflow.com/questions/1709801/django-templatetag-for-rendering-a-subset-of-html0Django templatetag for rendering a subset of htmldefrex2009-11-10T17:40:38Z2009-11-10T18:36:47Z
<p>I have some html (in this case created via TinyMCE) that I would like to add to a page. However, for security reason, I don't want to just print everything the user has entered.</p>
<p>Does anyone know of a templatetag (a filter, preferably) that will allow only a safe subset of html to be rendered?</p>
<p>I realize that markdown and others do this. However, they also add additional markup syntax which could be confusing for my users, since they are using a rich text editor that doesn't know about markdown.</p>
http://stackoverflow.com/questions/1674572/making-javascript-object-member-values-more-readable-with-a-map/1674626#16746263Answer by defrex for Making JavaScript object member values more readable with a mapdefrex2009-11-04T15:42:34Z2009-11-04T15:42:34Z<p>Honestly I can't see why you would use the cryptic property names in the first place. Why not use the names you would give to 3rd parties internally as well. Wouldn't it just make your life easier?</p>
http://stackoverflow.com/questions/1649854/input-box-option-drop-down/1650206#16502060Answer by defrex for Input Box Option Drop Downdefrex2009-10-30T14:40:01Z2009-10-30T14:40:01Z<p>I think what's going on there isn't that the dropdown is inside an input box, but rather that the input box chrome is hidden and it's placed inside an input-looking div along with the dropdown.</p>
http://stackoverflow.com/questions/1574083/jquery-follow-hyperlink-with-a-targetblank/1574315#15743151Answer by defrex for jQuery follow hyperlink with a target="_blank"defrex2009-10-15T18:53:24Z2009-10-15T18:53:24Z<p>Click, according to the <a href="http://docs.jquery.com/Events/click" rel="nofollow">jQuery docs</a>, </p>
<blockquote>
<p>"Causes all of the functions that have
been bound to that click event to be
executed."</p>
</blockquote>
<p>This would not include opening the link.</p>
<p>I'm not sure how one would do it otherwise. In fact I'm fairly certain that it cannot be done.</p>
http://stackoverflow.com/questions/1445065/what-is-the-best-maintained-generic-functions-implementation-for-python/1445132#14451320Answer by defrex for What is the best-maintained generic functions implementation for Python?defrex2009-09-18T15:04:21Z2009-09-18T15:04:21Z<p>You can use a construction like this:</p>
<pre><code>def my_func(*args, **kwargs):
pass
</code></pre>
<p>In this case args will be a list of any unnamed arguments, and kwargs will be a dictionary of the named ones. From here you can detect their types and act as appropriate.</p>
http://stackoverflow.com/questions/1288586/load-a-document-string-into-an-iframe0load a document string into an iframedefrex2009-08-17T15:25:54Z2009-08-17T15:33:13Z
<p>I have a string (fetched via ajax), which is an entire html document (doctype to < /html>). Does anyone know of a way to load it into an iframe?</p>
<p>I cannot simply specify the url that returned the document in the src of the iframe, since the response may have come from a post, and repeating it may have ill effects. Also, I can't submit it to the iframe the first time, since I can't predict absolutely that the result will be a document and not some json. Basically, I can't recall the url, I must be able to use the version I have (a string).</p>
<p>jQuery is fair game, since that's what I'm using.</p>
http://stackoverflow.com/questions/1257233/jquery-getting-the-two-last-list-items/1257254#12572541Answer by defrex for jQuery: Getting the two last list items? defrex2009-08-10T21:14:34Z2009-08-11T17:57:04Z<pre><code>var items = $('ul li')
var last_two = items.filter('li:gt('+ items.length-3 +')')
last_two.addClass('special');
</code></pre>
http://stackoverflow.com/questions/1236443/creating-multiple-python-modules-in-different-directories-that-share-a-portion-of/1236581#12365811Answer by defrex for Creating multiple Python modules in different directories that share a portion of the package structure.defrex2009-08-06T01:45:47Z2009-08-06T01:45:47Z<p>You basically have two modules named the same thing (mydomain). Why not set up your PYTHONPATH like so?</p>
<pre><code>$HOME/django-sites:$HOME/django-apps/mydomain
</code></pre>
<p>It would avoid your import problems.</p>
http://stackoverflow.com/questions/1164930/image-resizing-with-django/1165097#11650970Answer by defrex for Image resizing with django?defrex2009-07-22T13:00:26Z2009-07-22T13:00:26Z<p>I guess it depends on how and when your using your thumbnails.</p>
<p>If you want to create some thumbnails every time the Country is saved, you could do it like so:</p>
<pre><code>from django.db import models
# This is to list all the countries
# For starters though, this will be just United Kingdom (GB)
class Country(models.Model):
name = models.CharField(max_length=120, help_text="Full name of country")
code = models.CharField(max_length=2, help_text="This is the ISO 3166 2-letter country code (see: http://www.theodora.com/country_digraphs.html)")
flag = models.ImageField(upload_to="images/uploaded/country/", max_length=150, help_text="The flag image of the country.", blank=True)
class Meta:
verbose_name_plural = "Countries"
def __unicode__(self):
return self.name
def save(self, force_insert=False, force_update=False):
resize_image(self.flag)
super(Country, self).save(force_insert, force_update)
</code></pre>
<p>If you aren't 100% sure what sizes you'll need your images, you could resize them last minute. I've seen this effectively done with a templatetag (I believe in a version on Pinax). You create a templatetag that takes the image and a size, then create and save the image of the appropriate size if you need to, or display a previously created one if it's there. It works pretty well.</p>
http://stackoverflow.com/questions/1147592/display-json-variable-via-jquery/1147614#11476140Answer by defrex for Display json variable via jquerydefrex2009-07-18T14:03:26Z2009-07-18T14:03:26Z<p>$.getJSON takes 3 arguments in the order url, data, callback. So in this case, you would do:</p>
<pre><code>$(document).ready(function(){
$.getJSON("http://json-head.appspot.com/?url=http://www.trinum.com/ibox/chatel/images/photofull.jpg&callback=?", null, function(data){
$.each(data.headers, function(i,item){
if(i < 2){
$("body").append("+item.Date+");
}
});
});
});
</code></pre>
http://stackoverflow.com/questions/1145956/updating-nested-documents-in-mongodb1Updating nested documents in mongodbdefrex2009-07-17T22:28:15Z2009-07-18T11:52:56Z
<p>Say I have a data structure something like this:</p>
<pre><code>{
'name': 'test',
'anotherdoc': {
'something': 'someval',
'somenum': 1
}
}
</code></pre>
<p>Now, say I wanted to set something. Initially, I though it would be done like so:</p>
<pre><code>collection.update({'_id': myid}, {$set: {'anotherdoc.something': 'somenewval'});
</code></pre>
<p>This, however, seems to be incorrect. It does put some data in there, but it does so in an odd manner. It would, in this case, end up like so:</p>
<pre><code>[
{
'name': 'test',
'anotherdoc': {
'something': 'someval',
'somenum': 1
}
},
['anotherdoc.something', 'someval']
]
</code></pre>
<p>Of course, not what I was looking for.</p>
<p>Any help would be wonderful.</p>
http://stackoverflow.com/questions/1126811/django-timezones/1128277#11282770Answer by defrex for django-timezonesdefrex2009-07-14T21:53:08Z2009-07-14T21:53:08Z<p>Well, the firs thing you need to do when installing any Django app, is add it to your INSTALLED_APPS in settings.py. This particular app doesn't do to much other then give you some handy fields and things that you can use in other parts of your Django project. Your best bet to understand it is reading the source, I would say.</p>
http://stackoverflow.com/questions/1111207/how-do-python-and-php-compare-for-ecommerce/1112457#11124572Answer by defrex for How do Python and PHP compare for ecommerce?defrex2009-07-10T23:43:55Z2009-07-10T23:43:55Z<p>I'm personally a fan of Python, specificity with Django for the web. For ecommerce applications there is the <a href="http://www.satchmoproject.com/" rel="nofollow">Satchmo Project</a>.</p>
http://stackoverflow.com/questions/1107598/manually-logging-out-a-user-after-a-site-update-in-django/1107640#11076408Answer by defrex for Manually logging out a user, after a site update in Djangodefrex2009-07-10T04:04:59Z2009-07-10T17:57:01Z<p>You could just reset your session table. This would logout every user. Of course, depending on what your doing with sessions, it could have other implications (like emptying a shopping cart, for example).</p>
<pre><code>python manage.py reset sessions
</code></pre>
<p>Or in raw SQL:</p>
<pre><code>DELETE FROM django_sessions
</code></pre>
http://stackoverflow.com/questions/1032217/lost-chronology-using-window-location-href/1032306#10323060Answer by defrex for Lost chronology using window.location.href defrex2009-06-23T12:39:43Z2009-06-23T12:39:43Z<p>Use <a href="http://jquery.com/" rel="nofollow">jQuery</a>?</p>
<pre><code>$('a').live('click', function(event){
// do something
});
</code></pre>
<p>As long as you don't call event.preventDefault in that function you should be fine.</p>
http://stackoverflow.com/questions/1030249/defining-global-variable-in-django-templates/1030395#10303953Answer by defrex for Defining "global variable" in Django templatesdefrex2009-06-23T02:34:38Z2009-06-23T03:06:43Z<p>If the URL is view specific, you could pass the URL from your view. If the URL needs to be truly global in your templates, you could put it in <a href="http://docs.djangoproject.com/en/dev/ref/templates/api/#id1" rel="nofollow">a context processor:</a></p>
<pre><code>def object_url(request):
return {'object_url': reverse('myapp.views.dashboard')}
</code></pre>
http://stackoverflow.com/questions/1026415/django-outcommenting-in-templates/1030451#10304511Answer by defrex for Django: outcommenting in templatesdefrex2009-06-23T03:02:26Z2009-06-23T03:02:26Z<p>There is also a second option for comments. Nice for one-liners.</p>
<pre><code>{# {% load ProgramVersion %}{% render_month_links %} #}
</code></pre>
http://stackoverflow.com/questions/1027421/django-what-gets-executed-as-the-server-starts-as-a-request-comes-in/1030445#1030445-1Answer by defrex for Django : What gets executed as the server starts? As a request comes in?defrex2009-06-23T02:59:13Z2009-06-23T02:59:13Z<p>If you want to put code somewhere in your django project that will get run for certain every time you start up django, pick an app form INSTALLED_APPS. Both the __init__.py and the models.py will be run for sure. They are good places for things like signals or anything you must register.</p>
http://stackoverflow.com/questions/687679/best-soap-library-for-python1Best SOAP library for Pythondefrex2009-03-26T21:45:41Z2009-03-26T21:47:59Z
<p>I need to connect to a SOAP API in Python. A quick google led me <a href="http://diveintopython.org/soap%5Fweb%5Fservices/" rel="nofollow">here</a>. Awesome, I thought, that looks perfect. However SOAPpy doesn't work with any moderately recent version of Python, and even if I could fix that, it depends on <a href="http://pyxml.sourceforge.net/" rel="nofollow">PyXML</a>, which seems to have dropped off the net.</p>
<p>So my question: what is the best library to use to connect to a SOAP API in Python? WSDL support would be awesome.</p>
http://stackoverflow.com/questions/674581/jquery-how-do-i-load-hyperlinks-as-get-callback/674607#6746070Answer by defrex for jQuery: How do I load hyperlinks as $.get callback?defrex2009-03-23T18:21:15Z2009-03-23T18:21:15Z<pre><code>$("a.track").click(function() {
var that = this;
$.get("track.php", { id: "page1.html" }, function(){
$(that).attr('onclick', '').click();
});
});
</code></pre>
<p>or something like that. You'll have to kill you're former click event handling attr('onclick', '') may or may not do it.</p>
http://stackoverflow.com/questions/654576/splitting-a-manytomanyfield-over-multiple-form-fields-in-a-modelform1splitting a ManyToManyField over multiple form fields in a ModelFormdefrex2009-03-17T14:52:53Z2009-03-17T18:37:23Z
<p>So I have a model with a ManyToManyField called tournaments. I have a ModelForm with two tournament fields:</p>
<pre><code>pay_tourns = forms.ModelMultipleChoiceField(
queryset=Tourn.objects.all().active().pay_tourns(),
widget=forms.CheckboxSelectMultiple())
rep_tourns = forms.ModelMultipleChoiceField(
queryset=Tourn.objects.all().active().rep_tourns(),
widget=forms.CheckboxSelectMultiple())
</code></pre>
<p>The methods after all() there are from a subclassed QuerySet. When I'm saving the form in my view I do thus:</p>
<pre><code>post.tournaments = (post_form.cleaned_data.get('pay_tourns')
+ post_form.cleaned_data.get('rep_tourns'))
</code></pre>
<p>Anyway, this all works fine. What I can't figure out how to do is fill these form fields out when I'm loading an existing post. That is, when I pass instance=post to the form. Any ideas?</p>
http://stackoverflow.com/questions/654576/splitting-a-manytomanyfield-over-multiple-form-fields-in-a-modelform/655544#6555441Answer by defrex for splitting a ManyToManyField over multiple form fields in a ModelFormdefrex2009-03-17T18:37:23Z2009-03-17T18:37:23Z<p>Paolo Bergantino was on the right track, and helped me find it. This was the solution:</p>
<pre><code>def __init__(self, *args, **kwargs):
super(MyForm, self).__init__(*args, **kwargs)
instance = kwargs.get('instance')
if instance:
self.fields['pay_tourns'].initial = [ o.id for o in instance.tournaments.all().active().pay_tourns()]
self.fields['rep_tourns'].initial = [ o.id for o in instance.tournaments.all().active().rep_tourns()]
</code></pre>
http://stackoverflow.com/questions/630057/how-do-you-make-an-html-radio-button-bold-on-select/630137#6301370Answer by defrex for How do you make an HTML Radio button bold on select ???defrex2009-03-10T13:23:35Z2009-03-10T13:23:35Z<p>amusing your buttons have labels around them to include the text, I would add this to the labels.</p>
<pre><code><label onchange="this.parent.children.fontWeight='normal';this.fontWeight='bold';">
</code></pre>
<p>Though ideally I'd not put this code inline, but hook it to them from somewhere in the head after the page has loaded.</p>
http://stackoverflow.com/questions/560307/how-do-i-edit-a-global-variable-in-a-jquery-each-function/561983#5619831Answer by defrex for How do I edit a global variable in a JQuery $.each function?defrex2009-02-18T17:08:30Z2009-02-18T17:08:30Z<p>Alright, I didn't understand the problem the first time. It's a little hackey, but without knowing more about your code I'd say when you create your imagesArray create a bool imagesLoaded.</p>
<pre><code>function getRandomImages(limit) {
imagesArray = new Array();
imagesLoaded = false;
$.getJSON('createImageArray.php', {limit: limit}, function(data) {
$.each(data, function(i) {
imagesArray[i] = data[i]; //imagesArray is declared globally.
});
imagesLoaded = true;
});
}
</code></pre>
<p>Then, after you call getRandomImages() put your code into a holding pattern with setTimeout() until imagesLoaded = true. Oh, and maybe put some kind of loading graphic on the page for the user to look at so they don't think your app is busted.</p>
http://stackoverflow.com/questions/560307/how-do-i-edit-a-global-variable-in-a-jquery-each-function/560323#5603230Answer by defrex for How do I edit a global variable in a JQuery $.each function?defrex2009-02-18T09:06:06Z2009-02-18T09:06:06Z<p>try this:</p>
<pre><code>function getRandomImages(limit) {
imagesArray = new Array();
$.getJSON('createImageArray.php', {limit: limit}, function(data) {
$.each(data, function(i, val) {
imagesArray[i] = val; //imagesArray is declared globally.
});
});
}
</code></pre>
http://stackoverflow.com/questions/544597/problem-ordering-by-votes-with-django-voting0problem ordering by votes with django-votingdefrex2009-02-13T03:25:23Z2009-02-14T01:19:00Z
<p>I have a model Post, and a model Vote. Vote (form django-voting) is essentially just a pointer to a Post and -1, 0, or 1. </p>
<p>There is also Tourn, which is a start date and an end date. A Post made between the start and end of a Tourn is submitted to that tournament.</p>
<p>For the sake of rep calculation, I'm trying to find the top 3 winners of a tournament. This is what I have:</p>
<pre><code> posts = Post.objects.filter(status=2, created_at__range=(tourn.start_date, tourn.end_date))
start = tourn.start_date - timedelta(days=1)
end = tourn.end_date + timedelta(days=1)
qn = connection.ops.quote_name
ctype = ContentType.objects.get_for_model(Post)
posts.extra(select={'score': """
SELECT SUM(vote)
FROM %s
WHERE content_type_id = %s
AND object_id = %s.id
AND voted_at > DATE(%s)
AND voted_at < DATE(%s)
""" % (qn(Vote._meta.db_table), ctype.id, qn(Post._meta.db_table), start, end)},
order_by=['-score'])
if tourn.limit_to_category:
posts.filter(category=tourn.category)
if len(posts) >= 1:
tourn_winners_1.append(posts[0].author)
resp += " 1: " + posts[0].author.username + "\n"
if len(posts) >= 2:
tourn_winners_2.append(posts[1].author)
resp += " 2: " + posts[1].author.username + "\n"
if len(posts) >= 3:
tourn_winners_3.append(posts[2].author)
resp += " 3: " + posts[2].author.username + "\n"
</code></pre>
<p>It seems simple enough, but for some reason the results are wrong.</p>
<p>The query that gets made is thus:</p>
<pre><code>SELECT "blog_post"."id", "blog_post"."title", "blog_post"."slug", "blog_post"."a
uthor_id", "blog_post"."creator_ip", "blog_post"."body", "blog_post"."tease", "b
log_post"."status", "blog_post"."allow_comments", "blog_post"."publish", "blog_p
ost"."created_at", "blog_post"."updated_at", "blog_post"."markup", "blog_post"."
tags", "blog_post"."category_id" FROM "blog_post" WHERE ("blog_post"."status" =
2 AND "blog_post"."created_at" BETWEEN 2008-12-21 00:00:00 and 2009-01-04 00:00
:00) ORDER BY "blog_post"."publish" DESC
</code></pre>
<p>It seems that posts.extra() isn't getting applied to the query at all...</p>
http://stackoverflow.com/questions/534496/whats-inside-an-ideal-developer-workstation/534585#5345852Answer by defrex for What's inside an ideal developer workstation?defrex2009-02-10T22:43:35Z2009-02-10T22:43:35Z<p>A really big display.</p>
http://stackoverflow.com/questions/499909/trying-to-update-a-form-it-does-an-insertion/500075#5000750Answer by defrex for Trying to update a form it does an insertion!defrex2009-02-01T02:55:15Z2009-02-01T02:55:15Z<p>Why do you have form.save() twice? Perhaps that is the problem.</p>
http://stackoverflow.com/questions/498065/actionscript-externalinterface-namespace-collisions0actionscript ExternalInterface namespace collisionsdefrex2009-01-31T02:16:34Z2009-01-31T06:16:06Z
<p>A have a flash widget (a music player) and there are about 10 instances of it on one page. I need to communicate between the flash and the javascript of the page it's embedded in. I haven't done much with actionscript for a long time, but some googling led me <a href="http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15683" rel="nofollow">here</a>, and to ExternalInterface. It seemed perfect, however there is one problem. I did something like this:</p>
<pre><code>ExternalInterface.addCallback("stopTrack", this, stopTrack);
</code></pre>
<p>However, now stopTrack will be registered to 10 different things on the page. I want to be able to stop just one of the 10 tracks.</p>
http://stackoverflow.com/questions/1445065/what-is-the-best-maintained-generic-functions-implementation-for-python/1445132#1445132Comment by defrex on What is the best-maintained generic functions implementation for Python?defrex2009-09-22T16:01:01Z2009-09-22T16:01:01ZYa, it seemed like the right answer at the time.http://stackoverflow.com/questions/1288586/load-a-document-string-into-an-iframe/1288621#1288621Comment by defrex on load a document string into an iframedefrex2009-08-17T16:04:40Z2009-08-17T16:04:40ZThis works, but only if jQuery is left completely out of the equation. For some reason using jQuery for this makes it fail (and I don't really understand why). If nobody comes along with a jQuery solution I'll except this.http://stackoverflow.com/questions/105702/making-a-beta-code-for-a-public-django-site/1249496#1249496Comment by defrex on Making a beta code for a public django sitedefrex2009-08-10T18:30:05Z2009-08-10T18:30:05ZA really old version of pinax. The question was asked in Sept, 08. It's a good point though, so I removed the reference to pinax out of the question so people don't get misled.http://stackoverflow.com/questions/1145956/updating-nested-documents-in-mongodb/1147352#1147352Comment by defrex on Updating nested documents in mongodbdefrex2009-07-18T13:58:26Z2009-07-18T13:58:26Zhm, truthfully I was doing this test in python, rather then in the interpreter. If it works with the interpreter the problem must lay in my implementation of this in python. I shall come to the MongoDB forums if I still can't get it working.http://stackoverflow.com/questions/848804/django-jquery-xmlhttpresponse-errorComment by defrex on Django, jQuery, XMLHttpResponse errordefrex2009-05-11T17:05:37Z2009-05-11T17:05:37ZHave you tried going to the get_prize url directly to see the response? A good tool for debugging ajax is the firefox extension firebug. You can use it's console to view any ajax requests being made and see what is being sent and received.
If you could find out what the response if from the url it would be easier to help you.http://stackoverflow.com/questions/687679/best-soap-library-for-python/687688#687688Comment by defrex on Best SOAP library for Pythondefrex2009-03-26T21:54:15Z2009-03-26T21:54:15Zoops, sorry about that.http://stackoverflow.com/questions/674581/jquery-how-do-i-load-hyperlinks-as-get-callback/674614#674614Comment by defrex on jQuery: How do I load hyperlinks as $.get callback?defrex2009-03-23T18:25:21Z2009-03-23T18:25:21Zyours is probably better, since you don't have to worry about calling the click handler again.http://stackoverflow.com/questions/654576/splitting-a-manytomanyfield-over-multiple-form-fields-in-a-modelform/655249#655249Comment by defrex on splitting a ManyToManyField over multiple form fields in a ModelFormdefrex2009-03-17T18:23:56Z2009-03-17T18:23:56Zthat works, but it doesn't do what I need. Rather then limiting the queryset, I need to have the ones that are associated with the post checked. What this does is make sure that only the tourns that are associated with the post are options.http://stackoverflow.com/questions/630057/how-do-you-make-an-html-radio-button-bold-on-select/630137#630137Comment by defrex on How do you make an HTML Radio button bold on select ???defrex2009-03-11T19:43:14Z2009-03-11T19:43:14Zlol, that is completely true. I guess I wasn't thinking.http://stackoverflow.com/questions/630057/how-do-you-make-an-html-radio-button-bold-on-select/630134#630134Comment by defrex on How do you make an HTML Radio button bold on select ???defrex2009-03-10T13:24:47Z2009-03-10T13:24:47ZDespite submitting a different answer, I think this is how it should be done.http://stackoverflow.com/questions/621212/another-django-forms-foreign-key-in-hidden-fieldComment by defrex on Another Django Forms : Foreign Key in Hidden Fielddefrex2009-03-07T04:31:27Z2009-03-07T04:31:27Zhow are you setting the value of owner when you set the form. Can we see that?http://stackoverflow.com/questions/560307/how-do-i-edit-a-global-variable-in-a-jquery-each-function/560320#560320Comment by defrex on How do I edit a global variable in a JQuery $.each function?defrex2009-02-18T16:56:38Z2009-02-18T16:56:38Zah, I see. You didn't mean that he was assigning the array asynchronously, but that he was using it so.http://stackoverflow.com/questions/560307/how-do-i-edit-a-global-variable-in-a-jquery-each-function/560320#560320Comment by defrex on How do I edit a global variable in a JQuery $.each function?defrex2009-02-18T09:07:40Z2009-02-18T09:07:40ZI believe it is synchronous, since the function is declared as a callback in $.getJSON()http://stackoverflow.com/questions/544597/problem-ordering-by-votes-with-django-voting/547787#547787Comment by defrex on problem ordering by votes with django-votingdefrex2009-02-14T21:14:52Z2009-02-14T21:14:52Zit's a batch job, so I'm not to concerned.http://stackoverflow.com/questions/544597/problem-ordering-by-votes-with-django-voting/547787#547787Comment by defrex on problem ordering by votes with django-votingdefrex2009-02-13T22:57:33Z2009-02-13T22:57:33Zlol. okay, so your original answer was correct. The reason I wasn't getting anything back for score was because my dev environment was using a version of the db imported after the end of the last tournament, and the import reset all the dates.