User TM - Stack Overflowmost recent 30 from stackoverflow.com2010-03-16T19:19:19Zhttp://stackoverflow.com/feeds/user/12983http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2454088/is-there-a-library-in-python-that-can-convert-user-dates-to-timestamp/2454119#24541192Answer by TM for Is there a library in Python that can convert user-dates to timestamp?TMhttp://stackoverflow.com/users/129832010-03-16T12:07:15Z2010-03-16T12:07:15Z<p>You can use the <a href="http://docs.python.org/library/datetime.html" rel="nofollow"><code>datetime</code></a> module:</p>
<pre><code>import datetime
d = datetime.date(year, month, day)
</code></pre>
<p>At this point, <code>d</code> is a date object.</p>
<p>If you want a timestamp from that, you can do the following:</p>
<pre><code>import time
timestamp = time.mktime(d.timetuple())
</code></pre>
http://stackoverflow.com/questions/2444359/what-is-the-difference-hashmap-and-treemap/2444370#244437010Answer by TM for What is the difference Hashmap and Treemap?TMhttp://stackoverflow.com/users/129832010-03-15T00:02:09Z2010-03-15T00:08:04Z<p><a href="http://java.sun.com/javase/6/docs/api/java/util/TreeMap.html" rel="nofollow"><code>TreeMap</code></a> is an example of a <a href="http://java.sun.com/javase/6/docs/api/java/util/SortedMap.html" rel="nofollow"><code>SortedMap</code></a>, which means that the order of the keys can be sorted, and when iterating over the keys, you can expect that they will be in order.</p>
<p><a href="http://java.sun.com/javase/6/docs/api/java/util/HashMap.html" rel="nofollow"><code>HashMap</code></a> on the other hand, makes no such guarantee. Therefore, when iterating over the keys of a <code>HashMap</code>, you can't be sure what order they will be in.</p>
<p><code>HashMap</code> will be more efficient in general, so use it whenever you don't care about the order of the keys.</p>
http://stackoverflow.com/questions/2443731/jquery-settimeout-not-working-when-using-to-update-data/2443747#24437470Answer by TM for jQuery setTimeout - not working when using to update dataTMhttp://stackoverflow.com/users/129832010-03-14T20:56:03Z2010-03-14T20:56:03Z<p><code>this</code> isn't what you think it is. When you use <code>setTimeout</code>, <code>this</code> is no longer a reference to the current element when the function gets executed.</p>
<p>You'll need to make sure you are keeping track of the proper element, like so:</p>
<pre><code>$('ul#thumbs li img').click(function() {
var thumbImg = this;
setTimeout(function() {
$('img#image').attr("src", $(thumbImg).attr("src").replace("_thumb", ""));
}, 500);
});
</code></pre>
http://stackoverflow.com/questions/2439404/can-i-join-2-styles-together-into-a-superstyle/2439422#24394223Answer by TM for Can I join 2+ styles together into a superstyle?TMhttp://stackoverflow.com/users/129832010-03-13T18:13:23Z2010-03-13T18:13:23Z<p>You can't do exactly what you are asking for but you can get similar effects by using a comma to separate multiple css selectors that share the same properties.</p>
<pre><code>.bold, .boldColor {
font-weight: bold;
}
.color1, .boldColor {
color: white;
}
</code></pre>
<p>This way <code>class="boldColor"</code> will have the same effect as <code>class="color1 bold"</code>.</p>
http://stackoverflow.com/questions/2437468/in-plain-english-what-are-django-generic-views/2437486#24374863Answer by TM for In plain English, what are Django generic views?TMhttp://stackoverflow.com/users/129832010-03-13T06:18:57Z2010-03-13T06:25:08Z<p>Django generic views are just view functions (regular old python functions) that do things that are very common in web applications.</p>
<p>Depending on the type of app you are building, they can save you from writing a lot of very simple views.</p>
<p>For example, the <code>direct_to_template</code> generic view simply renders a template with the <code>RequestContext</code> (which means the template has access to information on the request, like the current user, etc).</p>
<p>As a simple example, you can go from writing things like this:</p>
<pre><code># urls.py
url('^some-url/$', some_view)
# views.py
def some_view(request):
return render_to_response('template_name.html', context_instance=RequestContext(request))
</code></pre>
<p>To just this:</p>
<pre><code># urls.py
url('^some-url/$', direct_to_template, {'template': 'template_name.html'})
# views.py doesn't need any code for this view anymore
</code></pre>
<p>There are also more complicated generic views for common actions such as "showing a list of models", or "adding a model to the db".</p>
<p>Also, because generic views are just functions, you can call them within your own view functions to do "most of the work", when you need something that is a bit different from the generic cases.</p>
http://stackoverflow.com/questions/2437341/django-ifequal-naturalday/2437404#24374041Answer by TM for django ifequal naturaldayTMhttp://stackoverflow.com/users/129832010-03-13T05:42:55Z2010-03-13T05:42:55Z<p>I just tested this under Django 1.1.1 and it works just fine for me.</p>
<p>Which version of Django are you running?</p>
<p><strong>However, there are a few other issues that could be causing you problems:</strong></p>
<ol>
<li><p>I also noticed that in your question you have <code>{% load humaize %}</code>, which contains a typo (should be <code>{% load humanize %}</code>). I'm not sure if this is in your real code or just in your question though.</p></li>
<li><p>If you are really using <code>datetime.today()</code> in your <code>urls.py</code>, as you say, please be aware that this could cause problems, since the value is only going to be calculated once, when the <code>extra_context</code> dictionary is first created (since the value of "today" will only ever be calculated once). This could mean the code will work on the first day the app is running, then fail the second day. You likely wouldn't notice this until you deploy to an environment where the app runs overnight without being restarted.</p>
<p>If you want it to really be "today", just pass in the function <code>datetime.today</code> rather than <code>datetime.today()</code>. That way the template will call it on each render.</p></li>
</ol>
http://stackoverflow.com/questions/524992/django-templates-create-a-back-link3Django templates: create a "back" link?TMhttp://stackoverflow.com/users/129832009-02-08T02:02:04Z2010-03-11T16:45:47Z
<p>I'm tooling around with <a href="http://www.djangoproject.com/" rel="nofollow">Django</a> and I'm wondering if there is a simple way to create a "back" link to the previous page using the template system.</p>
<p>I figure that in the worst case I can get this information from the request object in the view function, and pass it along to the template rendering method, but I'm hoping I can avoid all this boilerplate code somehow.</p>
<p>I've checked the Django template docs and I haven't seen anything that mentions this explicitly.</p>
http://stackoverflow.com/questions/2398420/fancybox-resize-width/2399339#23993390Answer by TM for FancyBox resize widthTMhttp://stackoverflow.com/users/129832010-03-08T04:45:09Z2010-03-08T04:45:09Z<p>From the <a href="http://fancybox.net/api" rel="nofollow">fancybox api docs</a>:</p>
<p><code>$.fancybox.resize</code>: "Auto-resizes FancyBox <strong>height</strong> to match height of content."</p>
<p>So it looks like it is not intended to adjust in width. </p>
<p>If you wish to adjust the width, you can do it by manually resizing the <code>#fancybox-wrap</code> and <code>#fancybox-inner</code> elements. After some very quick checking, it looks like <code>#fancybox-wrap</code> is set to 20px wider than <code>#fancybox-inner</code>:</p>
<pre><code>$('#fancybox-inner').width(400);
$('#fancybox-wrap').width(420);
</code></pre>
<p>You can also control the width when you first register fancybox using the <code>width</code> option:</p>
<pre><code>$('#somelink').fancybox({ width: 100px });
</code></pre>
http://stackoverflow.com/questions/2399007/jquery-hide-load-url/2399051#23990511Answer by TM for jquery hide load urlTMhttp://stackoverflow.com/users/129832010-03-08T03:06:35Z2010-03-08T03:14:16Z<p>You can't hide it, but you can obfuscate it, which can make it hard to read.</p>
<p>However, obfuscation is <strong>not</strong> really hidden or secure, so you shouldn't use it for real security purposes.</p>
<p>If you are just interested in making it hard (but still possible) to read, you can use something like this <a href="http://discogscounter.getfreehosting.co.uk/js-noalnum.php" rel="nofollow">obfuscation tool</a> to make the url hard to read.</p>
<p>This is difficult to read, but is still trivial to decode (someone can just evaluate it using any javascript environment).</p>
<p>If you <strong>really</strong> need it to be secure, you should make the request on the server side, not via javascript.</p>
http://stackoverflow.com/questions/2351597/event-observe-change-events-not-being-triggered-in-ie/2354328#23543281Answer by TM for Event.observe 'change' events not being triggered in IETMhttp://stackoverflow.com/users/129832010-03-01T07:12:51Z2010-03-01T07:12:51Z<p>This is a common issue with IE. It does not fire <code>change</code> events until the element loses focus. </p>
<p>To verify that this is indeed the cause of your issue, try changing the menu and then pressing tab to move your focus to another element. If your callback fires properly, you'll know there isn't some other problem.</p>
<p>I have worked around this problem before by also listening for other events like <code>click</code> or <code>keydown</code>. You can add a check to your callback to ensure that the value is actually different from before to ensure that you aren't processing the event more times than necessary (since other browsers will fire both <code>click</code> and <code>change</code> at the same time if they click on a new value).</p>
http://stackoverflow.com/questions/2354271/how-to-set-popup-position/2354303#23543030Answer by TM for How to set popup position?TMhttp://stackoverflow.com/users/129832010-03-01T07:02:42Z2010-03-01T07:08:06Z<p>You'll need to add a <code>position</code> field to your options argument:</p>
<pre><code><script type="text/javascript">
$(function() {
$("#Popup").dialog({
bgiframe: true,
autoOpen: false,
height: 300,
modal: true,
position: [100, 200], // 100 is x location, 200 is y location, in pixels
buttons: {
Cancel: function() {
$(this).dialog("close");
}
},
close: function() {
allFields.val("").removeClass("ui-state-error");
}
}).parent().appendTo($("form:first"));
$("#Button3").click() {
$("#Popup").dialog("open");
});
});
</script>
</code></pre>
<p><code>position</code> can also accept a string like <code>"top"</code> or <code>"left"</code>. </p>
<p>See the <a href="http://docs.jquery.com/UI/Dialog#option-position" rel="nofollow">jQuery UI Dialog documentation</a> for more information about this.</p>
http://stackoverflow.com/questions/1490559/django-slugified-urls-how-to-handle-collisions2Django slugified urls - how to handle collisions?TMhttp://stackoverflow.com/users/129832009-09-29T04:23:55Z2010-02-26T07:24:34Z
<p>I'm currently working on a toy project in Django.</p>
<p>Part of my app allows users to leave reviews. I'd like to take the title of the review and slugify it to create a url.</p>
<p>So, if a user writes a review called "The best thing ever!", the url would be something like: <code>www.example.com/reviews/the-best-thing-ever</code>. </p>
<p>That's all well and good, but what is the best way to handle case where two users pick the same title? I don't want to make the title required to be unique.</p>
<p>I've thought about adding the review id in the url somewhere, but I'd like to avoid that extra info for any urls that don't collide.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/992115/custom-attributes-yay-or-nay29Custom attributes - Yay or nay?TMhttp://stackoverflow.com/users/129832009-06-14T03:52:55Z2010-02-15T04:44:13Z
<p>Recently I have been reading more and more about people using custom attributes in their HTML tags, mainly for the purpose of embedding some extra bits of data for use in javascript code.</p>
<p>I was hoping to gather some feedback on whether or not using custom attributes is a good practice, and also what some alternatives are.</p>
<p>It seems like it can really simplify <em>both</em> server side and client side code, but it also isn't W3C compliant. </p>
<p>Should we be making use of custom HTML attributes in our web apps? Why or why not?</p>
<p>For those who think custom attributes are a good thing: what are some things to keep in mind when using them?</p>
<p>For those who think custom attributes are bad thing: what alternatives do you use to accomplish something similar?</p>
<p><strong>Update:</strong> I'm mostly interested in the <em>reasoning</em> behind the various methods, as well as points as to why one method is better than another. I think we can all come up with 4-5 different ways to accomplish the same thing. (hidden elements, inline scripts, extra classes, parsing info from ids, etc). </p>
<p><strong>Update 2:</strong> It seems that the HTML 5 <code>data-</code> attribute feature has a lot of support here (and I tend to agree, it looks like a solid option). So far I haven't seen much in the way of rebuttals for this suggestion. Are there any issues/pitfalls to worry about using this approach? Or is it simply a 'harmless' invalidation of the current W3C specs?</p>
http://stackoverflow.com/questions/2249489/how-to-generate-data-model-from-sql-schema-in-django/2249559#22495591Answer by TM for How to generate data model from sql schema in Django?TMhttp://stackoverflow.com/users/129832010-02-12T03:50:01Z2010-02-12T03:50:01Z<p>Yes it is possible, using the <a href="http://docs.djangoproject.com/en/dev/ref/django-admin/#inspectdb" rel="nofollow">inspectdb</a> command:</p>
<pre><code>django-admin.py inspectdb
</code></pre>
<p>This will look at the database configured in your <code>settings.py</code> and outputs model classes to standard output.</p>
<p>As Ignacio pointed out, there is a <a href="http://docs.djangoproject.com/en/dev/howto/legacy-databases/#howto-legacy-databases" rel="nofollow">guide for your situation</a> in the documentation.</p>
http://stackoverflow.com/questions/2246725/django-template-context-processors/2246742#22467423Answer by TM for Django, template context processorsTMhttp://stackoverflow.com/users/129832010-02-11T18:35:40Z2010-02-11T18:43:51Z<p>When you specify this:</p>
<pre><code>TEMPLATE_CONTEXT_PROCESSORS = ('myapp.processor.foos',)
</code></pre>
<p>In your settings file, you are overriding the <a href="http://docs.djangoproject.com/en/1.1/ref/settings/#template-context-processors" rel="nofollow">default context processors</a> that you had before. You need to include the old ones in your settings:</p>
<pre><code>TEMPLATE_CONTEXT_PROCESSORS = (
"django.core.context_processors.auth",
"django.core.context_processors.debug",
"django.core.context_processors.i18n",
"django.core.context_processors.media",
"myapp.processor.foos",
)
</code></pre>
<p>Note, the settings above are the defaults (plus your processor) for django 1.1.</p>
http://stackoverflow.com/questions/896014/is-it-possible-to-check-for-png-support-with-jquery-support1Is it possible to check for PNG support with jQuery.Support?TMhttp://stackoverflow.com/users/129832009-05-22T01:13:56Z2010-02-07T13:05:10Z
<p>My question is regarding the <a href="http://docs.jquery.com/Utilities/jQuery.support" rel="nofollow">jQuery Support</a> system.</p>
<p>I'd like to know if it is possible to tell whether or not the browser will support semi-transparent background PNG images using this method.</p>
<p>Edit: I am not interested in CSS solutions to a specific problem. <strong>I'd like to know if the jQuery support checking system can check this</strong>. I appreciate the advice but I'm trying to find out a specific bit of information about the <code>support</code> feature of jQuery.</p>
http://stackoverflow.com/questions/2173184/django-custom-form-validation-best-practices/2173640#21736402Answer by TM for Django custom form validation best practices?TMhttp://stackoverflow.com/users/129832010-01-31T22:28:27Z2010-02-01T05:10:22Z<p>First thing you can do is simplify your testing for those cases where you want to see if only one of the two fields is populated. You can implement logical <code>xor</code> this way:</p>
<pre><code>if bool(description2) != bool(location2):
</code></pre>
<p>or this way:</p>
<pre><code>if bool(description2) ^ bool(location2):
</code></pre>
<p>I also think this would be more clear if you implemented a clean method for each field separately, as explained in <a href="http://docs.djangoproject.com/en/1.1/ref/forms/validation/#cleaning-a-specific-field-attribute" rel="nofollow">the docs</a>. This makes sure the error will show up on the right field and lets you just raise a <code>forms.ValidationError</code> rather than accessing the <code>_errors</code> object directly.</p>
<p>For example:</p>
<pre><code>def _require_together(self, field1, field2):
a = self.cleaned_data.get(field1)
b = self.cleaned_data.get(field2)
if bool(a) ^ bool(b):
raise forms.ValidationError(u'You must specify a location and description')
return a
# use clean_description1 rather than clean_location1 since
# we want the error to be on description1
def clean_description1(self):
return _require_together('description1', 'location1')
def clean_description2(self):
return _require_together('description2', 'location2')
def clean_description3(self):
return _require_together('description3', 'location3')
def clean_description4(self):
return _require_together('description4', 'location4')
def clean_description5(self):
return _require_together('description5', 'location5')
</code></pre>
<p>In order to get the behavior where <code>location1</code> is required, just use <code>required=True</code> for that field and it'll be handled automatically.</p>
http://stackoverflow.com/questions/2173138/django-displaying-formset-errors-correctly/2173174#21731741Answer by TM for Django: Displaying formset errors correctlyTMhttp://stackoverflow.com/users/129832010-01-31T20:28:20Z2010-01-31T22:19:34Z<p>I think the problem here is that <code>formset.errors</code> is a list of dictionaries, not a single dictionary.</p>
<p>From the <a href="http://docs.djangoproject.com/en/dev/topics/forms/formsets/#formset-validation" rel="nofollow">Django docs page on formsets</a>:</p>
<pre><code>>>> formset.errors
[{}, {'pub_date': [u'This field is required.']}]
</code></pre>
<p>See if something like this fixes the problem: (<strong>Updated based on the askers comments</strong>)</p>
<pre><code>{% for dict in formset.errors %}
{% for error in dict.values %}
{{ error }}
{% endfor %}
{% endfor %}
</code></pre>
<p>If that fails, I'd try using <code>manage.py shell</code>, and try to reproduce your situation in the python shell... that way it will be easy to inspect the various values and figure out what you need to do.</p>
http://stackoverflow.com/questions/2045786/how-to-catch-an-exception-in-python-and-get-a-reference-to-the-exception-without4How to catch an exception in python and get a reference to the exception, WITHOUT knowing the type?TMhttp://stackoverflow.com/users/129832010-01-11T23:51:30Z2010-01-12T00:01:25Z
<p>I'm wondering how I can catch <strong>any</strong> raised object (i.e. a type that does not extend <code>Exception</code>), and still get a reference to it.</p>
<p>I came across the desire to do this when using Jython. When calling a Java method, if that method raises an exception, it will not extend Python's <code>Exception</code> class, so a block like this will not catch it:</p>
<pre><code>try:
# some call to a java lib that raises an exception here
except Exception, e:
# will never be entered
</code></pre>
<p>I can do this, but then I have no access to the exception object that was raised.</p>
<pre><code>try:
# some call to a java lib that raises an exception here
except:
# will enter here, but there's no reference to the exception that was raised
</code></pre>
<p>I can solve this by importing the Java exception type and catching it explicitly, but this makes it difficult/impossible to write generic exception handling wrappers/decorators.</p>
<p>Is there a way to catch some arbitrary exception and still get a reference to it in the <code>except</code> block?</p>
<p><strong>I should note</strong> that I'm hoping for the exception handling decorator I am making to be usable with Python projects, not just with Jython projects. I'd like to avoid importing <code>java.lang.Exception</code> because that just makes it Jython-only. For example, I figure I can do something like this (but I haven't tried it), but I'd like to avoid it if I can.</p>
<pre><code>try:
# some function that may be running jython and may raise a java exception
except (Exception, java.lang.Exception), e:
# I imagine this would work, but it makes the code jython-only
</code></pre>
http://stackoverflow.com/questions/2028515/django-allow-duplicate-usernames1Django - Allow duplicate usernamesTMhttp://stackoverflow.com/users/129832010-01-08T15:22:39Z2010-01-09T22:42:16Z
<p>I'm working on a project in django which calls for having separate groups of users in their own <code>username</code> namespace. </p>
<p>So for example, I might have multiple "organizations", and <code>username</code> should only have to be unique within that organization.</p>
<p>I know I can do this by using another model that contains a username/organization id, but that still leaves this useless (and required) field on the defualt django auth <code>User</code> that I would have to populate with something.</p>
<p>I've already written by own auth backend that authenticates a user against LDAP. However, as I mentioned before, I am still stuck with the problem of how to populate / ignore the <code>username</code> field on the default django user.</p>
<p>Is there a way to drop the uniqueness constraint for the <code>username</code> for Django auth users?</p>
http://stackoverflow.com/questions/1598759/git-and-mercurial-compare-and-contrast62Git and Mercurial - Compare and ContrastTMhttp://stackoverflow.com/users/129832009-10-21T04:46:35Z2010-01-08T16:20:09Z
<p>For a while now I've been using subversion for my personal projects.</p>
<p>More and more I keep hearing great things about Git and Mercurial, and DVCS in general.</p>
<p>I'd like to give the whole DVCS thing a whirl, but I'm not too familiar with either option.</p>
<p>What are some of the differences between Mercurial and Git?</p>
<p>Note that I'm <strong>not</strong> trying to find out which one is "best" or even which one I should start with. I'm mainly looking for key areas where they are similar and where they are different, because I am interested to know how they differ in terms of implementation and philosophy.</p>
http://stackoverflow.com/questions/573618/django-set-up-a-scheduled-job10Django - Set Up A Scheduled Job?TMhttp://stackoverflow.com/users/129832009-02-21T19:39:59Z2010-01-07T23:26:10Z
<p>I've been working on a web app using Django, and I'm curious if there is a way to schedule a job to run periodically. </p>
<p>Basically I just want to run through the database and make some calculations/updates on an automatic, regular basis, but I can't seem to find any documentation on doing this.</p>
<p>Does anyone know how to set this up?</p>
<p>To clarify: I know I can set up a <code>cron</code> job to do this, but I'm curious if there is some feature in Django that provides this functionality. I'd like people to be able to deploy this app themselves without having to do much config (preferably zero).</p>
<p>I've considered triggering these actions "retroactively" by simply checking if a job should have been run since the last time a request was sent to the site, but I'm hoping for something a bit cleaner.</p>
http://stackoverflow.com/questions/1975542/ajax-post-requests-with-jquery-dont-urlencode/1975562#19755622Answer by TM for AJAX POST requests with JQuery don't urlencode '+'TMhttp://stackoverflow.com/users/129832009-12-29T16:40:52Z2009-12-29T16:40:52Z<p>You should be able to use the javascript <code>escape</code> function to fix this problem. Just escape your data and URL before you send it off.</p>
http://stackoverflow.com/questions/1949901/what-does-migrating-a-django-application-mean/1949953#19499536Answer by TM for What does "Migrating a Django application" mean?TMhttp://stackoverflow.com/users/129832009-12-22T23:51:41Z2009-12-23T00:00:48Z<p>When it comes to talking about South and Django, a migration refers to changing the database schema.</p>
<p>The <code>syncdb</code> command that is built into Django cannot automatically change schema for you without deleting everything first, which is why things like South and dmigrations have come about.</p>
<p>So, essentially a migration is a way to alter your database schema while keeping your data intact.</p>
<p>From the <a href="http://code.google.com/p/dmigrations/" rel="nofollow">dmigrations page</a>:</p>
<blockquote>
<p>With dmigrations, every change to your
database (including the creation of
your initial tables) is bundled up in
a migration. Migrations are Python
files that live in a migrations
directory. They can be applied and
un-applied (reverted) in sequence.</p>
</blockquote>
http://stackoverflow.com/questions/1947030/ternary-operator-python/1947050#19470507Answer by TM for Ternary Operator - PythonTMhttp://stackoverflow.com/users/129832009-12-22T15:24:40Z2009-12-22T15:35:47Z<p>Python (2.5 and above) does indeed have a syntax for what you are looking for:</p>
<pre><code>x = foo if condition else bar
</code></pre>
<p>If <code>condition</code> is True, <code>x</code> will be set to <code>foo</code>, otherwise it will be set to <code>bar</code>.</p>
<p>Examples:</p>
<pre><code>>>> age = 68
>>> x = 'Retired' if age > 65 else 'Working'
>>> x
'Retired'
>>> age = 35
>>> y = 'Retired' if age > 65 else 'Working'
>>> y
'Working'
</code></pre>
http://stackoverflow.com/questions/1947067/select-object-to-edit/1947114#19471140Answer by TM for select object to editTMhttp://stackoverflow.com/users/129832009-12-22T15:32:17Z2009-12-22T15:32:17Z<p>Without more information it is hard to tell what you need to change, but your guess is correct, the problem is with your <code>ProjectRecord.objects.get()</code> call. </p>
<p>You should be passing some sort of information to get in order to limit the list down to one.</p>
<p>In most cases, you will need:</p>
<pre><code>ProjectRecord.objects.get(pk=id)
</code></pre>
<p>Where <code>id</code> is the primary key value of the <code>ProjectRecord</code> you are trying to edit.</p>
<p>Could you show the relevant code from your <code>urls.py</code> as well as more information on your <code>ProjectRecord</code> model?</p>
http://stackoverflow.com/questions/1501576/struts-uploading-files2Struts - Uploading FilesTMhttp://stackoverflow.com/users/129832009-10-01T02:15:42Z2009-12-21T22:21:30Z
<p>I'm having a problem uploading a file using spring webflow 1.0 and struts 1.3.</p>
<p>The jsp is something like this:</p>
<pre><code><html:form action="/flowAction" method="post" enctype="multipart/form-data">
<!-- snip -->
<html:file property="file" name="attachDocumentsForm" size="50"/>
<!-- snip -->
</html:form>
</code></pre>
<p>The Form is something like this:</p>
<pre><code>public class AttachDocumentsForm extends SpringBindingActionForm {
// note, SpringBindingActionForm extends struts' ActionForm
private FormFile file;
//snip
}
</code></pre>
<p>Now, my problem is that when I submit the form, the <code>file</code> field is always <code>null</code>. The other fields on the form are filled out properly, and if I dig through the <code>RequestContext</code>, I can find the file is buried deep some of the data structures there. </p>
<p>Here is the <strong>horribly</strong> ugly way that I can get at the attachment:</p>
<pre><code>// 'context' is the RequestContext
ServletExternalContext servletExternalContext = (ServletExternalContext) context.getExternalContext();
ActionForm form = (ActionForm) servletExternalContext.getRequest().getAttribute("actionForm");
FormFile file = (FormFile) form.getMultipartRequestHandler().getFileElements().get("file");
</code></pre>
<p>I've noticed that the <code>MultipartRequestHandler</code> on my form is <code>null</code>, and I suspect that this might be part of the problem, but I've tried populating it with an instance of <code>CommonsMultipartRequestHandler</code> to no avail.</p>
<p>What do I need to do to let the <code>file</code> field be populated correctly?</p>
http://stackoverflow.com/questions/1940528/django-index-page-best-most-common-practice/1940720#19407206Answer by TM for Django index page best/most common practice.TMhttp://stackoverflow.com/users/129832009-12-21T15:24:57Z2009-12-21T15:33:37Z<p>If all of your dynamic content is handled in the template (for example, if it's just simple checking if a user is present on the request), then I recommend using a generic view, specificially the <a href="http://docs.djangoproject.com/en/1.1/ref/generic-views/#django-views-generic-simple-direct-to-template" rel="nofollow">direct to template</a> view:</p>
<pre><code>urlpatterns = patterns('django.views.generic.simple',
(r'^$', 'direct_to_template', {'template': 'index.html'}),
)
</code></pre>
<p>If you want to add a few more bits of information to the template context, there is another argument, <code>extra_context</code>, that you can pass to the generic view to include it:</p>
<pre><code>extra_context = {
'foo': 'bar',
# etc
}
urlpatterns = patterns('django.views.generic.simple',
(r'^$', 'direct_to_template', {'template': 'index.html', 'extra_context': extra_context }),
)
</code></pre>
http://stackoverflow.com/questions/1938130/getting-the-label-of-this-in-jquery/1938142#19381420Answer by TM for Getting the label of "this" in jQueryTMhttp://stackoverflow.com/users/129832009-12-21T04:12:19Z2009-12-21T04:12:19Z<p>You need to change your selector to this:</p>
<pre><code>$(".comm-input").focus(function() {
$("label[for=" + this.name + "]")).css("color", "#669900");
});
</code></pre>
<p>It won't automatically change the string literal "name" with the value of your name variable.</p>
<p>Also, when you were grabbing the name variable, <code>this</code> refers to the document, not to the element being focused.</p>
http://stackoverflow.com/questions/1928323/jquery-validate-before-serialize/1928354#19283540Answer by TM for jquery validate before serializeTMhttp://stackoverflow.com/users/129832009-12-18T14:00:20Z2009-12-18T14:06:19Z<p>As Vincent Ramdhanie mentioned, the <a href="http://docs.jquery.com/Plugins/Validation" rel="nofollow">validate</a> plugin is a good option. </p>
<p>However, there are a few things I'd like to clarify:</p>
<blockquote>
<p>The reason I want to do this is because PHP sees the data for each variable as a string and not numeric. </p>
</blockquote>
<p>The types of each field value will ALSO be string as far as the javascript/DOM on your page is concerned. Therefore, even if the user enters a number, it's really just a string. So in either case you will need to parse the string into a number (or let a library do it for you).</p>
<p>The second, important thing to remember is that you cannot rely on clientside validation as it is easily bypassed/broken. You should really be validating the data on the server side, as well as on the client side.</p>
<p><strong>Update</strong></p>
<p>In response to your comment, I am not very familiar with PHP, but a quick googling shows me that this should work:</p>
<pre><code>$foo = "3.123";
$bar = (float) $foo;
</code></pre>
<p>As I mentioned, I'm not a PHP programmer so there may be a better way to do it, but that should work.</p>
http://stackoverflow.com/questions/2447118/programming-in-python-vs-programming-in-java/2447150#2447150Comment by TM on Programming in Python vs. programming in JavaTMhttp://stackoverflow.com/users/129832010-03-15T12:54:57Z2010-03-15T12:54:57ZThis isn't answering the question at all... he wants to learn how to write more idiomatic (Pythonic) Python code. http://stackoverflow.com/questions/2444359/what-is-the-difference-hashmap-and-treemap/2444370#2444370Comment by TM on What is the difference Hashmap and Treemap?TMhttp://stackoverflow.com/users/129832010-03-15T01:18:01Z2010-03-15T01:18:01Z@erickson +1 good pointhttp://stackoverflow.com/questions/2443731/jquery-settimeout-not-working-when-using-to-update-data/2443750#2443750Comment by TM on jQuery setTimeout - not working when using to update dataTMhttp://stackoverflow.com/users/129832010-03-14T20:57:58Z2010-03-14T20:57:58Znote: the 2nd example might not work if the <code>src</code> attribute could change within the timeout period. if it is static, it will work fine though.http://stackoverflow.com/questions/2437468/in-plain-english-what-are-django-generic-views/2437486#2437486Comment by TM on In plain English, what are Django generic views?TMhttp://stackoverflow.com/users/129832010-03-13T06:38:29Z2010-03-13T06:38:29Z@allyourcode With more complicated views you stand to save a lot more code, I chose a very quick example. Also, for those views that operate on models, they will automatically select a template based on a naming convention (or it can be overridden if you don't want to to follow the convention). See <a href="http://docs.djangoproject.com/en/1.1/ref/generic-views/" rel="nofollow">docs.djangoproject.com/en/1.1/ref/generic-views</a> for more examples. I recommend writing some of these views from scratch and then comparing. None of them are huge and complicated, it's just one less thing to write and debug.http://stackoverflow.com/questions/2437495/how-to-use-jquery-with-php-code/2437503#2437503Comment by TM on How to use jQuery with PHP code?TMhttp://stackoverflow.com/users/129832010-03-13T06:30:14Z2010-03-13T06:30:14ZI wouldn't say impossible as much as <b>impractical</b>. There are javascript interpreters that can run on the serverside. But yes, it's not something that is often worth doing, and almost definitely isn't a good idea in this case.http://stackoverflow.com/questions/2437341/django-ifequal-naturalday/2437404#2437404Comment by TM on django ifequal naturaldayTMhttp://stackoverflow.com/users/129832010-03-13T06:11:02Z2010-03-13T06:11:02ZAre you passing <code>datetime.today</code> directly in as a template variable, or are you using it in some other way? Template variables can be actual values or callables, but if you have python code using the value as well, you'd need to adjust it to call it first before trying to access <code>weekday</code>. It'd help if you could show a bit more of how the date is being used.http://stackoverflow.com/questions/2437424/howto-use-jquery-each-but-not-for-a-element-for-a-variable/2437454#2437454Comment by TM on howto, Use JQUERY .EACH() but not for a element, for a VariableTMhttp://stackoverflow.com/users/129832010-03-13T06:08:46Z2010-03-13T06:08:46Z+1, this is better than my suggestion of inserting it into the page.http://stackoverflow.com/questions/2437424/howto-use-jquery-each-but-not-for-a-element-for-a-variableComment by TM on howto, Use JQUERY .EACH() but not for a element, for a VariableTMhttp://stackoverflow.com/users/129832010-03-13T05:56:28Z2010-03-13T05:56:28ZCould you be more clear on what you want? You have an array of elements you want to search through, or you have a big block of text that you want to look for words in?http://stackoverflow.com/questions/524992/django-templates-create-a-back-link/2426889#2426889Comment by TM on Django templates: create a "back" link?TMhttp://stackoverflow.com/users/129832010-03-11T17:35:35Z2010-03-11T17:35:35ZYou need 50+ reputation to be able to comment on other peoples answers. See the FAQ: <a href="http://stackoverflow.com/faq" rel="nofollow">stackoverflow.com/faq</a>http://stackoverflow.com/questions/2399007/jquery-hide-load-url/2399051#2399051Comment by TM on jquery hide load urlTMhttp://stackoverflow.com/users/129832010-03-08T03:13:50Z2010-03-08T03:13:50Z@deceze, yes you are correct, it's basically worthless, but it's about the best you could do on the clientside.http://stackoverflow.com/questions/2354271/how-to-set-popup-position/2354303#2354303Comment by TM on How to set popup position?TMhttp://stackoverflow.com/users/129832010-03-01T12:57:33Z2010-03-01T12:57:33Z@user280048 rather than setting <code>[100,200]</code>, just pass in some position that you calculate...http://stackoverflow.com/questions/2347117/javascript-why-is-it-so-with-windows-parentComment by TM on JavaScript: Why is it so with windows.parent?TMhttp://stackoverflow.com/users/129832010-03-01T06:56:11Z2010-03-01T06:56:11ZThe grammar is a little confusing but I think what he is asking is this: "Why does this work if I put it in a <code><script></code> tag in the page HTML, but not when I include it in a separate js file"?http://stackoverflow.com/questions/2322355/proper-name-for-python-operator/2322491#2322491Comment by TM on proper name for python * operator?TMhttp://stackoverflow.com/users/129832010-02-23T23:32:31Z2010-02-23T23:32:31ZI also just say <code>kwargs</code>, although that doesn't really refer to the operator itself I suppose.http://stackoverflow.com/questions/550632/favorite-django-tips-features/551499#551499Comment by TM on Favorite Django Tips & Features?TMhttp://stackoverflow.com/users/129832010-02-12T03:54:45Z2010-02-12T03:54:45Z@StephenPaulger really? My browser (firefox /w firebug) seems content to wait several minutes for a response while I debug.http://stackoverflow.com/questions/2246725/django-template-context-processors/2246742#2246742Comment by TM on Django, template context processorsTMhttp://stackoverflow.com/users/129832010-02-11T18:43:05Z2010-02-11T18:43:05ZYes that's right, it is from the dev version. I updated my answer to show the 1.1 version.