User saturdayplace - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T19:41:15Zhttp://stackoverflow.com/feeds/user/3912http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1684343/invalid-object-name-beginner-using-the-adventurewords-db-from-a-class0Invalid Object Name: Beginner using the AdventureWords db from a classsaturdayplace2009-11-05T23:16:02Z2009-11-05T23:56:08Z
<p>I'm trying to learn some C#.net. I'm just trying to expose the AdventureWorks database included in my C# class via a web interface. Here's the setup:</p>
<p>I've got a <code>DropDownList</code> in on my ASPX page with an id of <code>tableNameDropDown</code>. It gets populated on <code>Page_Load</code> like this:</p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
conn.Open();
String table_names_sql = "select Name from sysobjects where type='u' ORDER BY name";
SqlCommand cmd = new SqlCommand(table_names_sql, conn);
SqlDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
tableNameDropDown.Items.Add(reader[0].ToString());
}
conn.Close();
tableNameDropDown.AutoPostBack = true;
}
</code></pre>
<p>And that works just fine, I get a nice long list of the tables in the DB. When someone selects a table from the list, I want to display that table in a <code>GridView</code> control with an id of <code>grid</code>. This is what I've got:</p>
<pre><code>protected void tableNameDropDown_SelectedIndexChanged(object sender, EventArgs e)
{
DataSet dataSet = new DataSet();
String tableName = columnNameDropDown.SelectedItem.ToString();
String table_sql = String.Format("SELECT * FROM {0};", tableName);
SqlDataAdapter adapter = new SqlDataAdapter(table_sql, conn);
adapter.Fill(dataSet, tableName);
grid.DataSource = dataSet;
grid.DataMember = tableName;
}
</code></pre>
<p>When I debug the page, I get an error on the <code>adapter.Fill(dataSet, tableName);</code> line: SqlException: Inlvalid object name '{tableName}'.</p>
<p>The tables in the DB are the following:</p>
<pre><code>dbo.AWBuildVersion
.... more dbo. tables
HumanResources.Department
HumanResources.Employee
.... more HumanResources tables
Person.Address
Person.AddressType
.... more Person tables
... Other prefixes are "Pdoduction, Purchasing, Sales"
</code></pre>
<p>There are probably ~50+ tables, and I get all their names (without the prefixes) into my DropDownList no problem, but I can't seem to query them.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1488593/how-can-i-use-jquery-load-to-perform-a-get-request-while-passing-extra-parameters/1488625#14886250Answer by saturdayplace for How can I use jQuery load to perform a GET request while passing extra parameters?saturdayplace2009-09-28T18:35:10Z2009-09-28T18:35:10Z<pre><code>$("#output").load("server_output.html?year=2009&country=Canada");
</code></pre>
http://stackoverflow.com/questions/1370797/django-url-template-tag-error4django 'url' template tag errorsaturdayplace2009-09-03T00:00:49Z2009-09-03T00:29:57Z
<p>My URLconf contains this pattern:</p>
<pre><code>url(r'^accounts/logout/$','django.contrib.auth.views.logout', name="logout"),
</code></pre>
<p>And I've trying to reverse that in a template with the URL tag like this:</p>
<pre><code><a href="{% url logout next_page=request.path %}">logout</a>
</code></pre>
<p>But I keep getting the following error: </p>
<pre><code>Reverse for 'logout' with arguments '()' and keyword arguments '{'next_page': u'/first-page/child/'}' not found
</code></pre>
<p>I thought <code>django.contrib.auth.views.logout</code> is supposed to take an option <code>next_page</code> parameter. I'm sure I'm missing something obvious, but I'm not sure what it is.</p>
http://stackoverflow.com/questions/1301696/jquery-drag-drop-problem-mousemove-event-not-binding-for-some-elements0jQuery Drag/Drop problem: mousemove Event not binding for some elementssaturdayplace2009-08-19T18:13:06Z2009-08-19T21:25:59Z
<p>Using the latest jQuery/UI that are hosted at Google. I've got the following markup:</p>
<pre><code><ul id="tree">
<li><a href="1/">One</a></li>
<li><a href="2/">Two</a></li>
</ul>
</code></pre>
<p>And the following javascript:</p>
<pre><code>$(document).ready(function(){
// Droppable callbacks
function dragOver(overEvent, ui_object) {
$(this).mousemove(function(moveEvent){
console.log("moved over", this);
});
}
function drop_deactivate() {
$(this).unbind();
}
function drag_out() {
$(this).unbind();
}
// Actual dragging
$("#treeContainer li").draggable({
revert: true,
revertDuration: 0
});
// Actuall dropping
$("a").droppable({
tolerance: "pointer",
over: dragOver,
deactivate: drop_deactivate,
out: drag_out
});
</code></pre>
<p>});</p>
<p>If I drag the first <code>li</code> down over the second, the mousemove function fires (and firebug logs the output). But if I drag the second <code>li</code> up over the first, the mousemove function doesn't fire. You can see this live at <a href="http://jsbin.com/ivala" rel="nofollow">http://jsbin.com/ivala</a>. Is there a reason for this? Should I be trapping the mousemove event in some other way?</p>
<p>Edit: It appears as thought the mousemove() event isn't binding for earlier elements than the one currently being dragged (should be bound upon their mouseover).</p>
http://stackoverflow.com/questions/1202855/python-csv-dictreader-writer-issues0Python CSV DictReader/Writer issuessaturdayplace2009-07-29T20:32:42Z2009-08-15T21:29:53Z
<p>I'm trying to extract a bunch of lines from a CSV file and write them into another, but I'm having some problems.</p>
<pre><code>import csv
f = open("my_csv_file.csv", "r")
r = csv.DictReader(f, delimiter=',')
fieldnames = r.fieldnames
target = open("united.csv", 'w')
w = csv.DictWriter(united, fieldnames=fieldnames)
while True:
try:
row = r.next()
if r.line_num <= 2: #first two rows don't matter
continue
else:
w.writerow(row)
except StopIteration:
break
f.close()
target.close()
</code></pre>
<p>Running this, I get the following error:</p>
<pre><code>Traceback (most recent call last):
File "unify.py", line 16, in <module>
w.writerow(row)
File "C:\Program Files\Python25\lib\csv.py", line 12
return self.writer.writerow(self._dict_to_list(row
File "C:\Program Files\Python25\lib\csv.py", line 12
if k not in self.fieldnames:
TypeError: argument of type 'NoneType' is not iterable
</code></pre>
<p>Not entirely sure what I'm dong wrong.</p>
http://stackoverflow.com/questions/345401/django-mtmfield-limitchoicesto-otherforeignkeyfieldonsamemodel1Django MTMField: limit_choices_to = other_ForeignKeyField_on_same_model?saturdayplace2008-12-05T22:32:52Z2009-06-24T13:59:36Z
<p>I've got a couple django models that look like this:</p>
<pre><code>from django.contrib.sites.models import Site
class Photo(models.Model):
title = models.CharField(max_length=100)
site = models.ForeignKey(Site)
file = models.ImageField(upload_to=get_site_profile_path)
def __unicode__(self):
return self.title
class Gallery(models.Model):
name = models.CharField(max_length=40)
site = models.ForeignKey(Site)
photos = models.ManyToManyField(Photo, limit_choices_to = {'site':name} )
def __unicode__(self):
return self.name
</code></pre>
<p>I'm having all kinds of <em>fun</em> trying to get the <code>limit_choices_to</code> working on the Gallery model. I only want the Admin to show choices for photos that belong to the same site as this gallery. Is this possible?</p>
http://stackoverflow.com/questions/1008780/simple-regex-php/1008799#10087997Answer by saturdayplace for Simple RegEx PHPsaturdayplace2009-06-17T18:31:01Z2009-06-17T18:31:01Z<p>strstr($string, "_archived");</p>
<p>Is going to be way easier for the problem you describe.</p>
<p>As is often quoted </p>
<blockquote>
<p>Some people, when confronted with a problem, think "I know, I'll use regular expressions." Now they have two problems. - Jamie Zawinski</p>
</blockquote>
http://stackoverflow.com/questions/273946/how-do-i-resize-an-image-using-pil-and-maintain-its-aspect-ratio3How do I resize an image using PIL and maintain its aspect ratio?saturdayplace2008-11-07T23:08:04Z2009-06-02T16:03:07Z
<p>Is there an obvious way to do this that I'm missing? I'm just trying to make thumbnails.</p>
http://stackoverflow.com/questions/883520/regex-for-finding-date-in-apache-access-log1Regex for finding date in Apache access logsaturdayplace2009-05-19T15:39:41Z2009-05-19T21:04:31Z
<p>I'm writing a python script to extract data out of our 2GB Apache access log. Here's one line from the log.</p>
<pre><code>81.52.143.15 - - [01/Apr/2008:00:07:20 -0600] "GET /robots.txt HTTP/1.1" 200 29 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1) VoilaBot BETA 1.2 (http://www.voila.com/)"
</code></pre>
<p>I'm trying to get the date portion from that line, and regex is failing me, and I'm not sure why. Here's my python code:</p>
<pre><code>l = 81.52.143.15 - - [01/Apr/2008:00:07:20 -0600] "GET /robots.txt HTTP/1.1" 200 29 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.8.1) VoilaBot BETA 1.2 (http://www.voila.com/)"
re.match(r"\d{2}/\w{3}/\d{4}", l)
</code></pre>
<p>returns nothing. Neither do the following:</p>
<pre><code>re.match(r"\d{2}/", l)
re.match(r"\w{3}", l)
</code></pre>
<p>or anything else I can thing of to even get <em>part</em> of the date. What am I misunderstanding?</p>
http://stackoverflow.com/questions/848804/django-jquery-xmlhttpresponse-error0Django, jQuery, XMLHttpResponse errorsaturdayplace2009-05-11T16:04:58Z2009-05-11T20:57:04Z
<p>I'm trying to learn some basic ajax using Django. My simple project is an app that randomly selects a <code>Prize</code> from the available prizes in the database, decrements its quantity, and returns <code>prize.name</code> to the page.</p>
<p>I'm using jQuery's $.ajax method to pull this off. The the only thing that's running is the <code>error</code> function defined in my $.ajax call, but the error message says nothing but "error". I'm new to ajax, so I'm probably overlooking something obvious. Here's the relevant code:</p>
<h2>Model</h2>
<pre><code>class Prize(models.Model):
name = models.CharField(max_length=50)
quantity = models.IntegerField(default=0)
def __unicode__(self):
return self.name
</code></pre>
<p><br></p>
<h2>URLConf</h2>
<pre><code>urlpatterns = patterns('',
(r'^get_prize/$', 'app.views.get_prize' ),
)
</code></pre>
<p><br></p>
<h2>View</h2>
<pre><code>def get_prize(request):
prizes = Prize.objects.filter(quantity__gt=0)
to_return = {}
if prizes:
rand = random.randrange(len(prizes))
prize = prizes[rand]
prize.quantity -= 1
prize.save()
to_return['prize'] = prize.name
data = simplejson.dumps(to_return)
return HttpResponse(data, mimetype='application/json')
else:
to_return['msg'] = "That's all the prizes. No more."
data = simplejson.dumps(to_return)
return HttpResponse(data, mimetype='application/json')
</code></pre>
<p><br></p>
<h2>Template</h2>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>User's Conference Prize Randomizer</title>
<link rel="stylesheet" type="text/css" href="/static-media/style.css" />
<script type="text/javascript" src="/static-media/jquery-1.2.6.min.js"></script>
<script type="text/javascript">
var get_prize = function() {
var args = {
type: "GET",
url: "get_prize",
dataType: "json",
success: done,
error: function(response,error_string,e){
alert( "Error: " + response.responseText + " " + error_string );
for (i in e){
alert(i);
}
}
};
$.ajax(args);
};
var done = function(response) {
if(response) {
alert(response);
}
else {
alert("Something boo-booed");
}
};
$(document).ready(function() {
$("#start").click(get_prize);
});
</script>
</head >
<body>
<p><a href="" id='start'>Get Prize</a>, this link isn't working how I'd like.</p>
</body>
</code></pre>
<p></p>
http://stackoverflow.com/questions/848804/django-jquery-xmlhttpresponse-error/849832#8498320Answer by saturdayplace for Django, jQuery, XMLHttpResponse errorsaturdayplace2009-05-11T20:05:29Z2009-05-11T20:25:16Z<p>Good grief. I had just left out <code>return false</code> in the function that made the ajax call. Way to go n00b. :0.</p>
http://stackoverflow.com/questions/686539/problems-with-sending-a-multipart-alternative-email-with-php0Problems with sending a multipart/alternative email with PHPsaturdayplace2009-03-26T16:30:19Z2009-03-26T20:22:14Z
<p>Here's the script that's builds/sends the email:</p>
<pre><code>$boundary = md5(date('U'));
$to = $email;
$subject = "My Subject";
$headers = "From: myaddress@mydomain.com" . "\r\n".
"X-Mailer: PHP/".phpversion() ."\r\n".
"MIME-Version: 1.0" . "\r\n".
"Content-Type: multipart/alternative; boundary=--$boundary". "\r\n".
"Content-Transfer-Encoding: 7bit". "\r\n";
$text = "You really ought remember the birthdays";
$html = '<html>
<head>
<title>Birthday Reminders for August</title>
</head>
<body>
<p>Here are the birthdays upcoming in August!</p>
<table>
<tr>
<th>Person</th><th>Day</th><th>Month</th><th>Year</th>
</tr>
<tr>
<td>Joe</td><td>3rd</td><td>August</td><td>1970</td>
</tr>
<tr>
<td>Sally</td><td>17th</td><td>August</td><td>1973</td>
</tr>
</table>
</body>
</html>
';
$message = "Multipart Message coming up" . "\r\n\r\n".
"--".$boundary.
"Content-Type: text/plain; charset=\"iso-8859-1\"" .
"Content-Transfer-Encoding: 7bit".
$text.
"--".$boundary.
"Content-Type: text/html; charset=\"iso-8859-1\"".
"Content-Transfer-Encoding: 7bit".
$html.
"--".$boundary."--";
mail("toAddress@example.com", $subject, $message, $headers);
</code></pre>
<p>It sends the message just fine, and my recipient receives it, but they get the whole thing in text/plain instead of in multipart/alternative. Viewing the source of the received message gives this (lots of cruft removed):</p>
<pre><code>Delivered-To: myrecipient@example.com
Received: by 10.90.100.4 with SMTP id x4cs111413agb;
Wed, 25 Mar 2009 16:39:32 -0700 (PDT)
Received: by 10.100.153.6 with SMTP id a6mr85081ane.123.1238024372342;
Wed, 25 Mar 2009 16:39:32 -0700 (PDT)
Return-Path: <xxx@xxxx.com>
--- snip ---
Date: Wed, 25 Mar 2009 17:37:36 -0600 (MDT)
Message-Id: <200903252337.n2PNbaw2019541@www.xxxxxxx.com>
To: trevor@saturdayplace.com
Subject: My Subject
From: me@mydomain.com
X-Mailer: PHP/4.3.9
MIME-Version: 1.0
Content-Type: text/plain;
boundary="--66131caf569f63b24f43d529d8973560"
Content-Transfer-Encoding: 7bit
X-OriginalArrivalTime: 25 Mar 2009 23:38:30.0531 (UTC) FILETIME=[CDC4E530:01C9ADA2]
X-TM-AS-Product-Ver: SMEX-8.0.0.1181-5.600.1016-16540.005
X-TM-AS-Result: No--4.921300-8.000000-31
X-TM-AS-User-Approved-Sender: No
X-TM-AS-User-Blocked-Sender: No
Multipart Message coming up
--66131caf569f63b24f43d529d8973560
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
You really ought remember the birthdays
--66131caf569f63b24f43d529d8973560
Content-Type: text/html; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
<html>
<head>
<title>Birthday Reminders for August</title>
</head>
<body>
<p>Here are the birthdays upcoming in August!</p>
<table>
<tr>
<th>Person</th><th>Day</th><th>Month</th><th>Year</th>
</tr>
<tr>
<td>Joe</td><td>3rd</td><td>August</td><td>1970</td>
</tr>
<tr>
<td>Sally</td><td>17th</td><td>August</td><td>1973</td>
</tr>
</table>
</body>
</html>
--66131caf569f63b24f43d529d8973560--
</code></pre>
<p>It looks like the content-type header is getting changed along the way from multipart/alternative to text/plain. I'm no sysadmin, so if this is a sendmail issue I'm in way over my head. Any suggestions?</p>
http://stackoverflow.com/questions/467444/creating-a-unique-alphanumeric-10-character-string3Creating a unique alphanumeric 10-character stringsaturdayplace2009-01-21T23:10:22Z2009-01-22T00:26:04Z
<p>I'm looking to create a simple short-lived reservation system, and I'd like to generate confirmation numbers that are</p>
<ul>
<li>unique</li>
<li>random-looking</li>
<li>alphanumeric</li>
<li>short-ish, at least much shorter than 32 character-long strings returned by sha1</li>
</ul>
<p>I'm only looking to have ~500 reservations, so I don't <em>imagine</em> high likelyhood of collissions.</p>
<p>One idea I had is generate an sha1 hash based on a date-time stamp and username, then truncating it to its first 10 characters. Would something like that be reliably unique enough for the purposes of processing ~500 reservations?</p>
http://stackoverflow.com/questions/339387/problems-raising-a-validationerror-on-a-django-form/341621#3416210Answer by saturdayplace for Problems raising a ValidationError on a Django Formsaturdayplace2008-12-04T18:30:40Z2008-12-04T18:30:40Z<p>django channel in IRC saved me here. The problem was that the URLField.clean() does two things I wasn't expecting:</p>
<ol>
<li>If no URL scheme is present (eg, http://) the method prepends 'http://' to the url</li>
<li>the method also appends a trailing slash.</li>
</ol>
<p>The results are returned and stored in the form's cleaned_data. So I was checking <code>cleaned_data['url']</code> expecting something like <code>example.com</code> and actually getting <code>http://example.com/</code>. Suffice to say, changing my <code>clean_url()</code> method to the following works:</p>
<pre><code>def clean_url(self):
url = self.cleaned_data['url']
bits = urlparse(url)
dom = bits[1]
try:
site=Site.objects.get(domain__iexact=dom)
except Site.DoesNotExist:
return dom
raise forms.ValidationError(u'That domain is already taken. Please choose another')
</code></pre>
http://stackoverflow.com/questions/339387/problems-raising-a-validationerror-on-a-django-form2Problems raising a ValidationError on a Django Formsaturdayplace2008-12-04T01:51:26Z2008-12-04T18:30:40Z
<p>I'm trying to validate that a submitted URL doesn't already exist in the database.</p>
<p>The relevant parts of the Form class look like this:</p>
<pre><code>from django.contrib.sites.models import Site
class SignUpForm(forms.Form):
# ... Other fields ...
url = forms.URLField(label='URL for new site, eg: example.com')
def clean_url(self):
url = self.cleaned_data['url']
try:
a = Site.objects.get(domain=url)
except Site.DoesNotExist:
return url
else:
raise forms.ValidationError("That URL is already in the database. Please submit a unique URL.")
def clean(self):
# Other form cleaning stuff. I don't *think* this is causing the grief
</code></pre>
<p>The problem is, regardless of what value I submit, I can't raise the <code>ValidationError</code>. And if I do something like this in the <code>clean_url()</code> method:</p>
<pre><code>if Site.objects.get(domain=url):
raise forms.ValidationError("That URL is already in the database. Please submit a unique URL.")
</code></pre>
<p>then I get a <code>DoesNotExist</code> error, even for URLs that already exist in the Database. Any ideas?</p>
http://stackoverflow.com/questions/202068/how-to-configure-server-for-small-hosting-company-for-django-powered-flash-sites1How to configure server for small hosting company for django-powered flash sites?saturdayplace2008-10-14T17:25:10Z2008-11-09T00:32:27Z
<p>I'm looking at setting up a small company that hosts flash-based websites for artist portfolios. The customer control panel would be django-powered, and would provide the interface for uploading their images, managing galleries, selling prints, etc.</p>
<p>Seeing as the majority of traffic to the hosted sites would end up at their top level domain, this would result in only static media hits (the HTML page with the embedded flash movie), I could set up lighttpd or nginx to handle those requests, and pass the django stuff back to apache/mod_whatever.</p>
<p>Seems as if I could set this all up on one box, with the django sites framework keeping each site's admin separate.</p>
<p>I'm not much of a server admin. Are there any gotchas I'm not seeing?</p>
http://stackoverflow.com/questions/131327/style-when-to-serialize-a-django-model-instance-signals-vs-models-save-method1Style - When to serialize a Django model Instance: signals vs model's save methodsaturdayplace2008-09-25T03:25:52Z2008-10-09T13:08:52Z
<p>I plan to serialize a Django model to XML when it's saved or updated. (The XML's going to be imported into a flash movie). Is it better to listen for a post_save() or pre_save() signal and then perform the serialization, or to just handle it in the model's save() methon</p>
http://stackoverflow.com/questions/172066/django-userprofile-without-a-password/180657#1806570Answer by saturdayplace for Django UserProfile... without a passwordsaturdayplace2008-10-07T22:09:42Z2008-10-07T22:09:42Z<p>Another upvote for <a href="http://stackoverflow.com/questions/172066/django-userprofile-without-a-password#172097">insin's answer</a>: handle this through a <code>UserProfile</code>. <a href="http://djangopeople.net/ubernostrum/" rel="nofollow">James Bennett</a> has a <a href="http://www.b-list.org/weblog/2006/jun/06/django-tips-extending-user-model/" rel="nofollow">great article</a> about extending <code>django.contrib.auth.models.User</code>. He walks through a couple methods, explains their pros/cons and lands on the <code>UserProfile</code> way as ideal.</p>
http://stackoverflow.com/questions/61451/does-django-have-html-helpers/67590#675909Answer by saturdayplace for Does Django have HTML helpers?saturdayplace2008-09-15T22:22:19Z2008-09-25T03:28:08Z<p>No it doesn't.</p>
<p><a href="http://www.b-list.org/" rel="nofollow">James Bennett</a> answered a <a href="http://www.b-list.org/weblog/2006/jul/02/django-and-ajax/" rel="nofollow">similar question</a> a while back, regarding Rails' built-in JavaScript helpers.</p>
<p>It's <em>really</em> unlikely that Django will ever have 'helper' functionality built-in. The reason, if I understand correctly, has to do with Django's core philosophy of keeping things <a href="http://docs.djangoproject.com/en/dev/misc/design-philosophies/#id1" rel="nofollow">loosely coupled</a>. Having that kind of helper functionality built-in leads to coupling Django with a specific JavaScript library or (in your case) html document type. </p>
<p>EG. What happens if/when HTML 5 is finally implemented and Django is generating HTML 4 or XHTML markup?</p>
<p>Having said that, Django's template framework is really flexible, and it wouldn't be terribly difficult to <a href="http://docs.djangoproject.com/en/dev/howto/custom-template-tags/" rel="nofollow">write your own tags/filters</a> that did what you wanted. I'm mostly a designer myself, and I've been able to put together a couple custom tags that worked like a charm.</p>
http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/102776#1027763Answer by saturdayplace for What Hosting Service is best for Django applications?saturdayplace2008-09-19T15:22:49Z2008-09-19T15:22:49Z<p><a href="http://djangofriendly.com" rel="nofollow">http://djangofriendly.com</a> is a site that attempts to answer this question. They have a whole list of sites with some form of Django support, each ranked according to up/down vote total, and most with customer reviews. </p>
<p>When searching there, you can filter by the type of hosting you're looking for (shared vs dedicated vs VPS) or by price.</p>
http://stackoverflow.com/questions/731717/gridviews-automatic-paging-doesnt-work/896171#896171Comment by saturdayplace on GridView's Automatic paging doesn't worksaturdayplace2009-11-06T17:52:15Z2009-11-06T17:52:15ZThis link is dead.http://stackoverflow.com/questions/1684343/invalid-object-name-beginner-using-the-adventurewords-db-from-a-class/1684396#1684396Comment by saturdayplace on Invalid Object Name: Beginner using the AdventureWords db from a classsaturdayplace2009-11-05T23:32:28Z2009-11-05T23:32:28ZIs there a way to programmatically get the table prefix along with the table in my DropDownList? Then I'd be able to turn around and use it in the query. http://stackoverflow.com/questions/1370797/django-url-template-tag-error/1370864#1370864Comment by saturdayplace on django 'url' template tag errorsaturdayplace2009-09-03T16:05:57Z2009-09-03T16:05:57ZMuch appreciated. Not sure how I overlooked REDIRECT_FIELD_NAME.http://stackoverflow.com/questions/1301696/jquery-drag-drop-problem-mousemove-event-not-binding-for-some-elementsComment by saturdayplace on jQuery Drag/Drop problem: mousemove Event not binding for some elementssaturdayplace2009-08-24T21:22:19Z2009-08-24T21:22:19ZI want to know where the mouse cursor is relative to the element, top/middle/bottom.http://stackoverflow.com/questions/1301696/jquery-drag-drop-problem-mousemove-event-not-binding-for-some-elementsComment by saturdayplace on jQuery Drag/Drop problem: mousemove Event not binding for some elementssaturdayplace2009-08-19T21:26:34Z2009-08-19T21:26:34ZI've noticed that too. It's not regualr behavior; very puzzling.http://stackoverflow.com/questions/1255814/jquery-drag-drop-problem/1256137#1256137Comment by saturdayplace on jQuery Drag/Drop problemsaturdayplace2009-08-10T22:12:01Z2009-08-10T22:12:01ZHey, I understand not wanting to untangle some noob's nasty code. I appreciate you even looking at it.
I've gone through and stripped out everything I think I can do without for the purposes of example. The new jsbin url (if you're up for looking) is: <a href="http://jsbin.com/ahigu" rel="nofollow">jsbin.com/ahigu</a>. By way of explanation, I'm not using the hoverClass option of the droppable because I need to assign a different class depending on <i>where</i> in the droppable the cursor is at the moment.http://stackoverflow.com/questions/1202855/python-csv-dictreader-writer-issues/1202875#1202875Comment by saturdayplace on Python CSV DictReader/Writer issuessaturdayplace2009-07-29T20:37:56Z2009-07-29T20:37:56ZBrilliant. I do tend to overcomplicate things. Thanks.http://stackoverflow.com/questions/883520/regex-for-finding-date-in-apache-access-log/885019#885019Comment by saturdayplace on Regex for finding date in Apache access logsaturdayplace2009-05-20T14:59:32Z2009-05-20T14:59:32ZI thought about that too, but I also want grab the user-agent string, and splitting on spaces wrecks that.
Also, personally <code>re.search('\d{2}/\w{3}/\d{4}</code> seems more semantic (find two digits/three characters/four digits) than <code>l.split()[3]</code> (find the fourth chunk in the string). For future readability.http://stackoverflow.com/questions/883520/regex-for-finding-date-in-apache-access-log/883553#883553Comment by saturdayplace on Regex for finding date in Apache access logsaturdayplace2009-05-19T15:47:51Z2009-05-19T15:47:51ZHow did I miss that. Thanks for the quick reply.http://stackoverflow.com/questions/686539/problems-with-sending-a-multipart-alternative-email-with-php/686568#686568Comment by saturdayplace on Problems with sending a multipart/alternative email with PHPsaturdayplace2009-03-26T16:49:39Z2009-03-26T16:49:39ZGaaaaaa! - Thank RoBorg. That was indeed it.http://stackoverflow.com/questions/345401/django-mtmfield-limitchoicesto-otherforeignkeyfieldonsamemodel/345529#345529Comment by saturdayplace on Django MTMField: limit_choices_to = other_ForeignKeyField_on_same_model?saturdayplace2008-12-06T21:29:20Z2008-12-06T21:29:20Zahh - this is a better design. Thanks.http://stackoverflow.com/questions/339387/problems-raising-a-validationerror-on-a-django-form/339463#339463Comment by saturdayplace on Problems raising a ValidationError on a Django Formsaturdayplace2008-12-04T18:33:33Z2008-12-04T18:33:33ZFigured out the problem - URLField.clean() was putting a different value in cleaned_data than I was expecting. The answer is below.http://stackoverflow.com/questions/339387/problems-raising-a-validationerror-on-a-django-form/339463#339463Comment by saturdayplace on Problems raising a ValidationError on a Django Formsaturdayplace2008-12-04T04:04:08Z2008-12-04T04:04:08ZNo good - The error doesn't get raised when it should.