User tghw - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T20:58:51Z http://stackoverflow.com/feeds/user/2363 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/29174/simplemodal-breaks-asp-net-postbacks 3 SimpleModal breaks ASP.Net Postbacks tghw 2008-08-26T23:19:47Z 2009-11-23T22:53:52Z <p>I'm using <a href="http://jquery.com/" rel="nofollow">jQuery</a> and <a href="http://www.ericmmartin.com/projects/simplemodal/" rel="nofollow">SimpleModal</a> in an ASP.Net project to make some nice dialogs for a web app. Unfortunately, any buttons in a modal dialog can no longer execute their postbacks, which is not really acceptable.</p> <p>There is one source I've found with a <a href="http://blog.hurlman.com/post/jQuery2c-simpleModal2c-and-ASPNet-postbacks-do-not-play-well-together.aspx" rel="nofollow">workaround</a>, but for the life of me I can't get it to work, mostly because I am not fully understanding all of the necessary steps.</p> <p>I also have a workaround, which is to replace the postbacks, but it's ugly and probably not the most reliable. I would really like to make the postbacks work again. Any ideas?</p> <p>UPDATE: I should clarify, the postbacks are not working because the Javascript used to execute the post backs has broken in some way, so nothing happens at all when the button is clicked.</p> http://stackoverflow.com/questions/849216/creating-models-in-asp-net-mvc 6 Creating Models in ASP.NET MVC tghw 2009-05-11T17:48:29Z 2009-11-18T22:49:09Z <p>I'm just starting a project in ASP.Net MVC with LINQ to Entities and I was wondering if there was a nice, clean way of defining models that creates the appropriate tables in the database for me. I'm most familiar with Django (in terms of MVC frameworks) and am looking for the .Net equivalent of <code>models.py</code> so I can have everything versioned. Any ideas? It would be even better if it had some form of schema migration, a la django-evolution and the like.</p> http://stackoverflow.com/questions/736413/ping-feedburner-in-django-app/736617#736617 8 Answer by tghw for Ping FeedBurner in Django App tghw 2009-04-10T03:14:49Z 2009-11-02T16:30:04Z <p>You can use Django's <a href="http://docs.djangoproject.com/en/dev/topics/signals/" rel="nofollow"><code>signals</code></a> feature to get a callback after a model is saved:</p> <pre><code>import xmlrpclib from django.db.models.signals import post_save from app.models import MyModel def ping_handler(sender, instance=None, **kwargs): if instance is None: return rpc = xmlrpclib.Server('http://ping.feedburner.google.com') rpc.weblogUpdates.ping(instance.title, instance.get_absolute_url()) post_save.connect(ping_handler, sender=MyModel) </code></pre> <p>Clearly, you should update this with what works for your app and read up on signals in case you want a different event.</p> http://stackoverflow.com/questions/1645444/django-modelform-accessing-a-fields-value-in-the-view-template/1645572#1645572 1 Answer by tghw for Django ModelForm: accessing a field's value in the view template tghw 2009-10-29T18:09:51Z 2009-10-29T18:09:51Z <p>Since you're trying to get this data from a filled out form, I think the easiest way would be to pass the forms <code>.cleaned_data</code> to the template and use that. Let's say you have a form with fields <code>name</code> and <code>specialty</code>, it would look something like this:</p> <pre><code>def my_view(request): form = my_form(request.GET) if form.is_valid(): ... do search stuff ... search_query = form.cleaned_data return render_to_response('my_template.html', {'search_query': search_query, 'search_results': ...,}, ...) </code></pre> <p>Then, in your template, you just pull out the values you want:</p> <pre><code>&lt;tr&gt; &lt;th&gt;Name&lt;/th&gt; &lt;th&gt;Specialty&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;{{ search_query.name }}&lt;/td&gt; &lt;td&gt;{{ search_query.specialty }}&lt;/th&gt; &lt;/tr&gt; </code></pre> <p>Or however you format it for Excel.</p> http://stackoverflow.com/questions/1557479/how-to-validate-clean-a-uniquetrue-field-without-using-a-modelform/1560617#1560617 2 Answer by tghw for How to validate/clean() a unique=True field without using a ModelForm? tghw 2009-10-13T14:33:11Z 2009-10-13T14:33:11Z <p>Unique validation is hard to get completely right, so I would recommend using a ModelForm anyways:</p> <pre><code>class EditUserProfileForm(forms.ModelForm): # "notifications" are created from a different model, not the UserProfile notifications = forms.MultipleChoiceField( label="Email Notifications", required=False, widget=forms.CheckboxSelectMultiple,) class Meta: model = UserProfile fields = ('display_name',) </code></pre> <p>Making a form from multiple models is not easy, but in this case you can just add the <code>notifications</code> field onto the ModelForm and pull it out of <code>.cleaned_data</code> as usual:</p> <pre><code># view if request.method == 'POST': form = EditUserProfileForm(request.POST, instance=user_profile) if form.is_valid(): user_profile = form.save() notifications = form.cleaned_data['notifications'] # Do something with notifications. </code></pre> <p>That's how I would do it, but if you're set on validating unique yourself, you can always do something like:</p> <pre><code>def clean_display_name(self): display_name = self.cleaned_data['display_name'] if UserProfile.objects.filter(display_name=display_name).count() &gt; 0: raise ValidationError('This display name is already in use.') return display_name </code></pre> <p>There are two problems I see here. First, you can run into concurrency issues, where two people submit the same name, both pass unique checks, but then one gets a DB error. The other problem is that you can't edit a user profile because you don't have an ID to exclude from the search. You'd have to store it in your <code>__init__</code> and then use it in the cleaning:</p> <pre><code>def __init__(*args, **kwargs): ... if 'instance' in kwargs: self.id = kwargs['instance'].id ... def clean_display_name(self): display_name = self.cleaned_data['display_name'] qs = UserProfile.objects.filter(display_name=display_name) if self.id: qs = qs.exclude(pk=id) if qs.count() &gt; 0: raise ValidationError('This display name is already in use.') return display_name </code></pre> <p>But at that point you're just duplicating the logic in ModelForms.</p> http://stackoverflow.com/questions/1528059/django-modelform-validate-custom-autocomplete-for-m2m-instead-of-ugly-multi-sele/1529662#1529662 0 Answer by tghw for Django ModelForm Validate custom Autocomplete for M2M, instead of ugly Multi-Select tghw 2009-10-07T05:31:47Z 2009-10-07T05:31:47Z <p>It's a little hard to say without knowing exactly what your autocomplete code is doing, but as long as it is sending the ids of the bands like they would be sent with the <code>&lt;select&gt;</code>, the ModelForm should validate them as usual.</p> <p>Basically, your POST string should look like:</p> <pre><code>name=FooBar2009&amp;bands=1&amp;bands=3&amp;bands=4&amp;venue=7&amp;start=... </code></pre> <p>The easiest way to do this might be to use Javascript to add (and remove) a hidden input field for each band entered with the name <code>band</code> and the id of the band as the value. Then, when the user submits the form, the browser will take care of posting the right stuff, and the ModelForm will validate it.</p> http://stackoverflow.com/questions/1529550/a-way-to-use-method-parameters-in-django-templates/1529610#1529610 3 Answer by tghw for A way to use method parameters in django templates? tghw 2009-10-07T05:15:31Z 2009-10-07T05:15:31Z <p>The Django team has decided, as a matter of philosophy, not to allow passing method parameters in a view. Personally, I agree with them; it forces a separation of logic and presentation that I find helpful. It prevents the kind of spaghetti code that PHP is notorious for.</p> <p>The right thing to do in the case you linked is to pass the result of that call from the view into the template via the context. It's just more maintainable that way. If later you need to change <code>my_related_deltas(3)</code> to <code>my_related_deltas(4)</code>, you go to the view, which should be fairly concise, instead of searching through templates to figure out exactly where it is defined.</p> http://stackoverflow.com/questions/29174/simplemodal-breaks-asp-net-postbacks/31338#31338 6 Answer by tghw for SimpleModal breaks ASP.Net Postbacks tghw 2008-08-27T23:44:06Z 2009-09-23T03:56:26Z <p>Both of you were on the right track. What I realized is that SimpleModal appends the dialog to the body, which is outside ASP.Net's <code>&lt;form&gt;</code>, which breaks the functionality, since it can't find the elements.</p> <p>To fix it, I just modified the SimpleModal source to append eveything to <code>'form'</code> instead of <code>'body'</code>. When I create the dialog, I also use the <code>persist: true</code> option, to make sure the buttons stay through opening and closing.</p> <p>Thanks everyone for the suggestions!</p> <p><em>UPDATE:</em> Version 1.3 adds an <code>appendTo</code> option in the configuration for specifying which element the modal dialog should be appended to. <a href="http://www.ericmmartin.com/projects/simplemodal/#options" rel="nofollow">Here are the docs</a>.</p> http://stackoverflow.com/questions/1421268/what-recognized-computer-language-certificates-exist/1421342#1421342 5 Answer by tghw for What recognized computer language certificates exist? tghw 2009-09-14T12:46:25Z 2009-09-14T12:46:25Z <p>I've been in a position to hire for the past four years, and I have to say that, if anything, seeing certificates on a candidate's resume is usually a negative indicator. While it may be difficult to tell exactly what someone contributed to a project, I prefer to see what someone has done rather than what some certificate says they can do.</p> <p>In fact, I would much rather hire a bright, productive programmer who has never even heard of the language he or she will be working with than hire someone who has been spending all their spare time in certificate programs. No matter how good the program is, it is not real world experience.</p> http://stackoverflow.com/questions/1401803/how-do-you-set-the-username-that-mercurial-uses-for-commits/1401819#1401819 5 Answer by tghw for How do you set the username that Mercurial uses for commits? tghw 2009-09-09T20:10:37Z 2009-09-09T20:10:37Z <p>In your <code>~/.hgrc</code> (*nix) or <code>mercurial.ini</code> (Windows) file:</p> <pre><code>[ui] username = First Last &lt;email@address.com&gt; </code></pre> <p>(<code>mercurial.ini</code> is in <code>C:\Documents and Settings\[username]\</code> for XP and lower, <code>C:\Users\[username]\</code> for Vista and higher. You can also run <code>hgtk userconfig</code> if you have TortoiseHg installed and do it that way.)</p> http://stackoverflow.com/questions/1288046/how-can-i-get-my-webapps-base-url-in-asp-net-mvc/1288383#1288383 4 Answer by tghw for How can I get my webapp's base URL in ASP.NET MVC? tghw 2009-08-17T14:48:20Z 2009-08-20T15:43:08Z <p>Assuming you have a Request object available, you can use:</p> <pre><code>string.Format("{0}://{1}{2}", Request.Url.Scheme, Request.Url.Authority, urlHelper.Content("~")); </code></pre> <p>If it's not available, you can get to it via the context:</p> <pre><code>var request = HttpContext.Current.Request </code></pre> http://stackoverflow.com/questions/1240194/regex-to-search-for-a-word-in-a-string-in-visual-studio/1240248#1240248 4 Answer by tghw for Regex to search for a word in a string in Visual Studio tghw 2009-08-06T17:15:27Z 2009-08-06T17:28:54Z <p>Visual Studio has a "quoted string" operator <code>:q</code>. If you search for <code>:qUrl</code> with 'Use: Regular expressions' and 'Match case' on, it should find all instances of "Url" only in strings.</p> <p><strong>Update</strong>: The above is incorrect. :q just searches for a quoted string, but you can't put anything into it. My testing was just showing cases that looked correct, but were just coincidentally correct. I think instead, you want something like:</p> <pre><code>^(:q*.*)*(("[^"]*Url[^"]*")|('[^']*Url[^']*'))(:q*.*)*$ </code></pre> http://stackoverflow.com/questions/1240229/is-it-ever-useful-to-define-a-class-method-with-a-reference-to-self-not-called-s/1240277#1240277 2 Answer by tghw for is it ever useful to define a class method with a reference to self not called 'self' in Python? tghw 2009-08-06T17:20:54Z 2009-08-06T17:20:54Z <p>The only case of this I've seen is when you define a function outside of a class definition, and then assign it to the class, e.g.:</p> <pre><code>class Foo(object): def bar(self): # Do something with 'self' def baz(inst): return inst.bar() Foo.baz = baz </code></pre> <p>In this case, <code>self</code> is a little strange to use, because the function could be applied to many classes. Most often I've seen <code>inst</code> or <code>cls</code> used instead.</p> http://stackoverflow.com/questions/1223771/automatically-compile-linq-queries 20 Automatically Compile Linq Queries tghw 2009-08-03T18:07:31Z 2009-08-04T19:53:43Z <p>We've found that <a href="http://www.dotnetfunda.com/articles/article469-how-to-improve-your-linq-query-performance-by-5-x-times-.aspx" rel="nofollow">compiling our Linq queries</a> is much, much faster than them having to compile each time, so we would like to start using compiled queries. The problem is that it makes code harder to read, because the actual syntax of the query is off in some other file, away from where it's being used.</p> <p>It occurred to me that it might be possible to write a method (or extension method) that uses reflection to determine what queries are being passed in and cache the compiled versions automatically for use in the future.</p> <pre><code>var foo = (from f in db.Foo where f.ix == bar select f).Cached(); </code></pre> <p><code>Cached()</code> would have to reflect the query object passed in and determine the table(s) selected on and the parameter types for the query. Obviously, reflection is a bit slow, so it might be better to use names for the cache object (but you'd still have to use reflection the first time to compile the query).</p> <pre><code>var foo = (from f in db.Foo where f.ix == bar select f).Cached("Foo.ix"); </code></pre> <p>Does anyone have any experience with doing this, or know if it's even possible?</p> <p><strong>UPDATE:</strong> For those who have not seen it, you can compile LINQ queries <em>to SQL</em> with the following code:</p> <pre><code>public static class MyCompiledQueries { public static Func&lt;DataContext, int, IQueryable&lt;Foo&gt;&gt; getFoo = CompiledQuery.Compile( (DataContext db, int ixFoo) =&gt; (from f in db.Foo where f.ix == ixFoo select f) ); } </code></pre> <p>What I am trying to do is have a cache of these <code>Func&lt;&gt;</code> objects that I can call into after automatically compiling the query the first time around.</p> http://stackoverflow.com/questions/1168018/c-asp-net-mvc-dynamic-querystring-for-search/1168033#1168033 1 Answer by tghw for C# ASP.NET MVC: Dynamic Querystring for Search tghw 2009-07-22T20:25:11Z 2009-07-22T20:25:11Z <p>Just pass extra parameters in with an anonymous object:</p> <pre><code>&lt;%= Html.ActionLink("Sort ascending", "Search", "PhoneBook", new {order="asc"}) %&gt; &lt;!-- or --&gt; &lt;%= Url.Action("Search", "PhoneBook", new {order="asc"}) %&gt; </code></pre> <p>If the extra parameters are not defined in the route, they will be added as query strings.</p> http://stackoverflow.com/questions/1167262/automatically-determine-the-natural-language-of-a-website-page-given-its-url/1167571#1167571 3 Answer by tghw for Automatically determine the natural language of a website page given its URL tghw 2009-07-22T19:20:11Z 2009-07-22T19:20:11Z <p>There is nothing about the URL itself that will indicate language.</p> <p>One option would be to use a <a href="http://www.nltk.org/" rel="nofollow">natural language toolkit</a> to try to identify the language based on the content, but even if you can get the NLP part of it working, it'll be pretty slow. Also, it may not be reliable. Remember, most user agents pass something like</p> <pre><code>Accept-Language: en-US </code></pre> <p>with each request, and many large websites will serve different content based on that header. Smaller sites will be more reliable because they won't pay attention to the language headers. </p> <p>You could also use server location (i.e. which country the server is in) as a proxy for language using <a href="http://code.google.com/p/python-geoip/" rel="nofollow">GeoIP</a>. It's obviously not perfect, but it is much better than using the TLD.</p> http://stackoverflow.com/questions/1137771/django-caching-for-a-blog 1 Django Caching for a Blog tghw 2009-07-16T13:54:25Z 2009-07-18T04:28:00Z <p>I have a blog written in Django, and I started using the basic Django caching middleware with the file system caching backend. Unfortunately, this led to two things being cached that shouldn't have been: admin links (e.g. "Edit this post") for logged-in users and prepopulated comment forms based on cookies.</p> <p>To get around that, I started using the template cache tags:</p> <pre><code>{% load cache %} ...admin links... {% cache 500 blog_entry entry.id %} ...entry... {% endcache %} ...comment form... </code></pre> <p>But it seemed that the whole page was still getting cached as well. How do you set up the caching system to <em>only</em> cache the parts of the template you explicitly set?</p> <p><em>Edit</em>: For the comments, if someone comments on the blog, I store their name, website, and email address in the session variables. If they come back to the site, then I prepopulate those parts of the form with that data. But that means it is possible for the caching system to cache a view with prepopulated data, which is not good.</p> http://stackoverflow.com/questions/1134307/posting-a-form-and-redirecting-to-action-asp-net-mvc/1134337#1134337 2 Answer by tghw for Posting a form and redirecting to action ASP.NET MVC tghw 2009-07-15T21:57:54Z 2009-07-15T21:57:54Z <p>Without Javascript, a simple link can't submit via POST. You have to use a submit button to do it. Fortunately, HTML provides an easy way to do the image-submit-button:</p> <pre><code>&lt;input type="image" src="http://url/to/image" alt="Step 1" id="btnStep1" /&gt; </code></pre> <p>You can always add jQuery handling for the Javascript-able:</p> <pre><code>$('#btnStep1').click(function(){...}); </code></pre> http://stackoverflow.com/questions/1132859/how-to-build-iphone-apps-using-net-on-windows/1132863#1132863 2 Answer by tghw for How to build iphone apps using .Net on windows? tghw 2009-07-15T16:57:58Z 2009-07-15T17:43:41Z <p>Not only can you not use .Net on an iPhone, you also need an Intel Mac to do development. Apple is keeping it a very closed environment, and because they control everything from the hardware to the OS to the distribution channels, you really don't have any other choice than to play by their rules.</p> http://stackoverflow.com/questions/1107529/best-way-to-make-a-model-search-form/1107812#1107812 3 Answer by tghw for Best way to make a model search form? tghw 2009-07-10T05:13:05Z 2009-07-10T05:13:05Z <p>Functionally, "any" would be achieved by just not including that particular search vector in the filtering. </p> <p>Generally, <code>ModelForm</code>s are for creating and editing models; in this case, I'm not sure it's helping you much more than just doing a regular form:</p> <pre><code>class AircraftSearch(forms.Form): search = forms.CharField(max_length=100, required=False) engine_type = forms.ChoiceField(choices=ENGINE_TYPE) cat_class = forms.ChoiceField(choices=CAT_CLASS) </code></pre> <p>To do the search, you then just filter when fields are non-empty:</p> <pre><code>def search(request): if request.method == 'POST': results = Aircraft.objects.all() search = request.POST.get('search', None) if search: results = results.filter(Q(model=search)|Q(type=search)|Q(extra=search)|Q(manufacturer=search)) engine_type = request.POST.get('engine_type', None) if engine_type: results = results.filter(engine_type=engine_type) cat_class = request.POST.get('cat_class', None) if cat_class: results = results.filter(cat_class=cat_class) return render_to_response('aircraft.html', {'form': AircraftSearch(request.POST), 'aircraft': results}) return render_to_response('aircraft.html', {'form': AircraftSearch()}) </code></pre> http://stackoverflow.com/questions/1107737/numeric-for-loop-in-django-templates/1107777#1107777 2 Answer by tghw for Numeric for loop in Django templates tghw 2009-07-10T05:00:58Z 2009-07-10T05:00:58Z <p>Unfortunately, that's <a href="http://code.djangoproject.com/ticket/5172" rel="nofollow">not supported</a> in the Django template language. There are a <a href="http://www.djangosnippets.org/snippets/779/" rel="nofollow">couple</a> of <a href="http://www.djangosnippets.org/snippets/1357/" rel="nofollow">suggestions</a>, but they seem a little complex. I would just put a variable in the context:</p> <pre><code>... render_to_response('foo.html', {..., 'range': range(10), ...}, ...) ... </code></pre> <p>and in the template:</p> <pre><code>{% for i in range %} ... {% endfor %} </code></pre> http://stackoverflow.com/questions/1049272/unable-to-find-build-a-commenting-system-similar-as-at-djangobook/1049400#1049400 1 Answer by tghw for Unable to find/build a commenting system similar as at Djangobook tghw 2009-06-26T14:18:50Z 2009-06-27T02:56:59Z <p>Each paragraph (<code>&lt;p&gt;</code>) in the document has an ID (<code>cn0, cn1,</code> etc.) and a class (<code>cn</code>). This is the only part of the comment system rendered near the text. Also on the page is the <code>div</code> that acts as the popup, which also contains the comment form.</p> <p>The rest is done with Javascript. When the page is loaded, they send an AJAX request back to get the number and location of all the comments in the document. It looks like:</p> <pre><code>[[0,4],[3,2],...] </code></pre> <p>With this, it adds a <code>div</code> in the margin with the speech bubble and number of comments on that line.</p> <p>When you click on the bubbles, another AJAX request is initiated to get the comments for that bubble. In this case, they send down the actual HTML to be rendered instead of a JSON object like before.</p> <p>On the backend (this is all conjecture now) they're tying each set of comments to a document and a location in that document (this allows them to show all comments for a document at once). I would probably use the built-in comments app to do this, and either package both items into one foreign key, by creating a model to link the document and location, or by subclassing the Comment model itself.</p> <p>Hope this gets you in the right direction. You can probably learn more by looking at <a href="http://new-media.djangobook.com/djangobook.js" rel="nofollow">their Javascript</a>, <s>but it's been minified, so it's a little hard to read</s>(UPDATE: found unminified js). They're building on YUI, but the code is pretty straight forward.</p> http://stackoverflow.com/questions/1036455/django-jquery-ajax-request-404-error/1042033#1042033 0 Answer by tghw for django Jquery ajax request 404 error tghw 2009-06-25T03:29:37Z 2009-06-25T03:29:37Z <p>As Dominic said, the problem is in your <code>urls.py</code>, but I'm not sure he has the right solution.</p> <p>First, fix your <code>urls.py</code> to be the following:</p> <pre><code>(r'^xEmailExists/$', 'hwa.website.views.root.xEmailExists'), </code></pre> <p>Then, in your <code>xEmailExists</code> view, you get the email address by using <code>request.GET</code>:</p> <pre><code>def xEmailExists(request): email = request.GET.get('email', '') # check if email exists and return... </code></pre> <p>This will pull the <code>?email=test@example.com</code> out of your query string. Using <code>GET.get('email', '')</code> returns a default (the empty string) if <code>'email'</code> is not in the query string, but if you're sure it'll be there <code>GET['email']</code> will also work.</p> http://stackoverflow.com/questions/1009801/signals-in-linq-to-sql 9 Signals in Linq to Sql? tghw 2009-06-17T22:17:58Z 2009-06-22T19:50:42Z <p>Does anyone know of a way to do something similar to <a href="http://docs.djangoproject.com/en/dev/topics/signals/" rel="nofollow">Django's <code>signals</code></a> using LINQ to SQL?</p> <p>I'm trying to record when new rows are inserted and when certain columns are updated, so I really just want <code>pre_save</code> and <code>post_save</code> signals.</p> <p>I can kind of do it with some models by using the partials defined like <code>OnFooIDChanging()</code> and <code>OnFooIDChanged()</code> (where <code>FooID</code> is a primary key), but this doesn't work for models whose primary key is not an identity, or is set by code.</p> <p>For those, I could possibly use <code>OnValidate()</code>, but that would only be <code>pre_save</code>, and it makes dealing with the database tough, since <code>OnValidate()</code> is called from <code>DBContext.SubmitChanges()</code>, which of course doesn't allow a second <code>SubmitChanges()</code> to be called from within, making <code>post_save</code> basically impossible as far as I can see.</p> http://stackoverflow.com/questions/1018975/how-can-i-make-this-linq-query-cleaner/1019683#1019683 2 Answer by tghw for How can I make this LINQ query cleaner? tghw 2009-06-19T19:29:33Z 2009-06-19T19:29:33Z <p>Use Group By</p> <pre><code>DateTime now = DateTime.Now; DateTime thisMonth = new DateTime(now.Year, now.Month, 1); Dictionary&lt;string, decimal&gt; dict; using (DemoLinqDataContext db = new DemoLinqDataContext()) { var monthlyTotal = from a in db.Accounts where a.Date_Assigned &gt; thisMonth.AddMonths(-6) group a by new {a.Date_Assigned.Year, a.Date_Assigned.Month} into g select new {Month = new DateTime(g.Key.Year, g.Key.Month, 1), Total = g.Sum(a=&gt;a.Amount_Assigned)}; dict = monthlyTotal.OrderBy(p =&gt; p.Month).ToDictionary(n =&gt; n.Month.ToString("MMM"), n =&gt; n.Total); } </code></pre> <p>No loop needed!</p> http://stackoverflow.com/questions/1009801/signals-in-linq-to-sql/1016168#1016168 1 Answer by tghw for Signals in Linq to Sql? tghw 2009-06-19T02:56:47Z 2009-06-19T02:56:47Z <p>Ok, I've gone completely down the rabbit hole on this one, but I think I have a pretty cool solution:</p> <p>First, add an event handler to your data context that will collect all of the post-save signals and hide the <code>Dispose</code> method so that we can call the event right before we dispose. (Note that I use the <code>new</code> keyword instead of <code>override</code>. This makes calling the event possible.)</p> <pre><code>partial class MyDataContext { internal delegate void PostSaveHandler(); internal event PostSaveHandler PostSave; // This method hides the underlying Dispose because we need to call PostSave. public new void Dispose(bool disposing) { // Obviously necessary error handling omitted for brevity's sake PostSave(); base.Dispose(disposing); } } </code></pre> <p>Next, write a <a href="http://msdn.microsoft.com/en-us/library/bb126445.aspx" rel="nofollow">T4 Template</a> that inspects the <code>dbml</code> file that Linq to Sql generates for you.</p> <pre><code>&lt;# var dbml = XDocument.Load(@"MyDataContext.dbml"); var name = XName.Get("Type", "http://schemas.microsoft.com/linqtosql/dbml/2007"); var tables = from t in dbml.Descendants(name) select t.Attribute("Name").Value; foreach(var table in tables) { #&gt; ... </code></pre> <p>For each table in the database (and thus each partial class), add on to the partial with the following methods.</p> <pre><code>public partial class Foo { internal void OnInsert(MyDataContext db) { PreInsert(); db.PostSave += delegate { PostInsert(); }; } internal void OnUpdate(MyDataContext db) { PreUpdate(); db.PostSave += delegate { PostUpdate(); }; } internal void OnDelete(MyDataContext db) { PreDelete(); db.PostSave += delegate { PostDelete(); }; } partial void PreInsert(); partial void PostInsert(); partial void PreUpdate(); partial void PostUpdate(); partial void PreDelete(); partial void PostDelete(); } // repeat for all tables </code></pre> <p>Also add another <code>partial MyDataContext</code> via T4. This will be adding definitions to the partial methods that Linq to SQL gives you (as Merritt mentioned).</p> <pre><code>public partial class MyDataContext { // Add these three partial methods for each table partial void InsertFoo(Foo foo) { foo.OnInsert(this); ExecuteDynamicInsert(foo); } partial void UpdateFoo(Foo foo) { foo.OnUpdate(this); ExecuteDynamicUpdate(foo); } partial void DeleteFoo(Foo foo) { foo.OnDelete(this); ExecuteDynamicDelete(foo); } // ... } </code></pre> <p>Hide those files away somewhere safe, so no one tries to mess with them.</p> <p>Your signals framework is set up. Now you can write your signals. Put these either in <code>Foo.cs</code> or all together in a <code>Signals.cs</code> file:</p> <pre><code>partial class Foo { partial void PostInsert() { EventLog.AddEvent(EventType.FooInserted, this); } } </code></pre> <p>This is a bit complex, so if anything doesn't make sense, please leave a comment and I'll do my best to address it.</p> http://stackoverflow.com/questions/24816/escaping-strings-with-jquery/24870#24870 10 Answer by tghw for Escaping strings with jQuery tghw 2008-08-24T05:54:49Z 2009-06-17T20:11:52Z <p>If you're escaping for HTML, there are only three that I can think of that would be really necessary:</p> <pre><code>html.replace(/&amp;/g, "&amp;amp;").replace(/&lt;/g, "&amp;lt;").replace(/&gt;/g, "&amp;gt;"); </code></pre> <p>Depending on your use case, you might also need to do things like " to <code>&amp;quot;</code>. If the list got big enough, I'd just use an array:</p> <pre><code>var escaped = html; var findReplace = [[/&amp;/g, "&amp;amp;"], [/&lt;/g, "&amp;lt;"], [/&gt;/g, "&amp;gt;"], [/"/g, "&amp;quot;"]] for(item in findReplace) escaped = escaped.replace(item[0], item[1]); </code></pre> <p><code>escapeURIComponent()</code> will only escape it for URLs, not for HTML.</p> http://stackoverflow.com/questions/991464/django-presave-signal-called-when-commitfalse/994509#994509 1 Answer by tghw for Django pre_save signal called when commit=False tghw 2009-06-15T04:39:46Z 2009-06-15T04:39:46Z <p>Looking through the Django source, it seems that <code>pre_save</code> signals are sent on every call to save, even if <code>commit</code> is <code>false</code>. I would suggest inserting on the first <code>pre_save</code>, but add a flag column to the changes table, e.g.</p> <pre><code>class FooChanges(models.Model): foo = models.ForeignKey(Foo) dt = models.DateTimeField(default=datetime.now) field = models.CharField(max_length=50) value = models.CharField(max_length=50) # Or whatever is appropriate here finished = models.BooleanField(default=False) </code></pre> <p>Then, your presave can be:</p> <pre><code>def pre_save_handler(sender, instance): foo_changes, created = FooChanges.objects.get_or_create(foo=instance, finished=False, field='Status', value=instance.status) if not created: foo_changes.finished = True foo_changes.save() </code></pre> <p>So on the first <code>pre_save</code>, you actually insert the change. On the second pass, you retrieve it from the database, and set the flag to false to make sure you don't pick it up the next time <code>Foo</code>'s <code>status</code> changes.</p> http://stackoverflow.com/questions/537577/where-do-you-keep-your-code/960991#960991 -2 Answer by tghw for Where do you keep your code? tghw 2009-06-07T01:42:19Z 2009-06-07T01:42:19Z <p>C:\Users\tghw\Code</p> <p>And on <a href="http://bitbucket.org" rel="nofollow">BitBucket</a>.</p> http://stackoverflow.com/questions/956983/jquery-applying-css-to-inner-div/957066#957066 6 Answer by tghw for JQuery Applying CSS to Inner DIV tghw 2009-06-05T17:18:57Z 2009-06-05T17:32:00Z <p>The jQuery way to do this is:</p> <pre><code>$('#parentDiv div').eq(0).css({backgroundColor: 'red'}); </code></pre> <p><code>.eq(0)</code> like <code>[0]</code> but gives you the jQuery object. JQuery's <a href="http://docs.jquery.com/Traversing/eq#index" rel="nofollow"><code>eq()</code> docs</a> explain most of it (except why it's "eq" and not something more sensible like "at").</p> http://stackoverflow.com/questions/26845/do-you-use-distributed-version-control/27033#27033 Comment by tghw on Do you use distributed version control? tghw 2009-11-18T17:53:36Z 2009-11-18T17:53:36Z The other way a DVCS avoids merge conflicts is that it has history of previous merges, so if a changeset was merged in already, the system does not try and merge it in again, whereas normal VCS systems like Subversion will include that changeset in the merge, increasing the chances of a conflict. http://stackoverflow.com/questions/26845/do-you-use-distributed-version-control/27033#27033 Comment by tghw on Do you use distributed version control? tghw 2009-11-18T17:08:58Z 2009-11-18T17:08:58Z A DVCS makes merges easier to manage because each individual check-in tends to be smaller, as you just end up doing them locally when they're done. That gives the system a finer grained view of how things changed, making it easier for it to automate the merge. With a regular VCS, you can't back up and redo the merge in the same way because the state of your code was never recorded anywhere. It's not in any check in. So while you can get the repo's status back, your changes are likely to be lost. In a DVCS, you can commit your changes first, so both sides of the merge have full history. http://stackoverflow.com/questions/1645444/django-modelform-accessing-a-fields-value-in-the-view-template/1645572#1645572 Comment by tghw on Django ModelForm: accessing a field's value in the view template tghw 2009-11-02T16:29:15Z 2009-11-02T16:29:15Z If the query had a model with it, you could use form.instance, but it sounds like since it's a query, there probably isn't one. Thinking about it now, it you really don't want to pass it in the view, you can always access form.cleaned_data.foo_bar in the template. That might be more what you're looking for. http://stackoverflow.com/questions/537577/where-do-you-keep-your-code/960991#960991 Comment by tghw on Where do you keep your code? tghw 2009-10-28T04:51:58Z 2009-10-28T04:51:58Z Vista/Windows 7 use the C:\Users instead of C:\Documents and Settings. What more would you like me to specify, seems pretty straightforward, no? http://stackoverflow.com/questions/110803/dirty-fields-in-django/111364#111364 Comment by tghw on Dirty fields in django tghw 2009-10-23T23:22:35Z 2009-10-23T23:22:35Z This is probably long overdue, but it should be <code>if value != self.&#95;&#95;dict&#95;&#95;.get(key, missing)</code>: http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/22755#22755 Comment by tghw on Practical non-image based CAPTCHA approaches? tghw 2009-10-22T19:15:52Z 2009-10-22T19:15:52Z @mmr See, that's actually a benefit of the system, it keeps the smartasses from posting comments... http://stackoverflow.com/questions/1557479/how-to-validate-clean-a-uniquetrue-field-without-using-a-modelform Comment by tghw on How to validate/clean() a unique=True field without using a ModelForm? tghw 2009-10-13T03:52:21Z 2009-10-13T03:52:21Z Is there any reason you're making a custom form instead of a ModelForm? http://stackoverflow.com/questions/1529550/a-way-to-use-method-parameters-in-django-templates/1529610#1529610 Comment by tghw on A way to use method parameters in django templates? tghw 2009-10-07T05:39:11Z 2009-10-07T05:39:11Z Guide to replacing the Django template system here: <a href="http://lethain.com/entry/2008/jul/22/replacing-django-s-template-language-with-jinja2/" rel="nofollow">lethain.com/entry/2008/&hellip;</a> http://stackoverflow.com/questions/1529550/a-way-to-use-method-parameters-in-django-templates/1529610#1529610 Comment by tghw on A way to use method parameters in django templates? tghw 2009-10-07T05:38:17Z 2009-10-07T05:38:17Z Well, the nice thing is that they don't tie you to it. I know a few people who use Jinja2 (<a href="http://jinja.pocoo.org/2/documentation" rel="nofollow">jinja.pocoo.org/2/documentation</a>) for their templates instead of the Django template system. Apparently it's pretty easy to switch out and use instead. http://stackoverflow.com/questions/1392388/http-request-corruption Comment by tghw on HTTP Request Corruption tghw 2009-09-08T14:38:57Z 2009-09-08T14:38:57Z Just for clarification, the closing &lt;a&gt; tag, &lt;br&gt;s and &lt;p&gt; tag come across in the requested url? http://stackoverflow.com/questions/1356761/django-save-a-new-value-in-a-manytomanyfield/1357836#1357836 Comment by tghw on Django : save a new value in a ManyToManyField tghw 2009-08-31T17:54:20Z 2009-08-31T17:54:20Z Assuming he's using some sort of multi-select widget from the forms, the values coming back in form.cleaned_data['authors'] should be the user ids, so he wouldn't need another call to the database. In either case, his comments make it clear that form.cleaned_data['authors'] is empty, so he's appending the user from the request instead (authors = form.cleaned_data['authors'] or request.user), so it's kind of a moot point. http://stackoverflow.com/questions/1356761/django-save-a-new-value-in-a-manytomanyfield/1356863#1356863 Comment by tghw on Django : save a new value in a ManyToManyField tghw 2009-08-31T17:47:34Z 2009-08-31T17:47:34Z I'm pretty sure af is correct here, post.authors will not be saved to the database unless post.save() is called (which will, in turn, call save_m2m()). http://stackoverflow.com/questions/1328836/include-line-numbers-in-stack-trace-without-pdb/1328846#1328846 Comment by tghw on include line numbers in stack trace without pdb? tghw 2009-08-25T15:24:41Z 2009-08-25T15:24:41Z You don't have to ship the PDB file to <i>have</i> the PDB file. As long as you stash it away somewhere when you build, you can refer to it when you get the stack trace. See <a href="http://stackoverflow.com/questions/1328836/include-line-numbers-in-stack-trace-without-pdb/1328915#1328915" rel="nofollow" title="include line numbers in stack trace without pdb">stackoverflow.com/questions/1328836/&hellip;</a> http://stackoverflow.com/questions/1288046/how-can-i-get-my-webapps-base-url-in-asp-net-mvc/1288383#1288383 Comment by tghw on How can I get my webapp's base URL in ASP.NET MVC? tghw 2009-08-20T15:43:29Z 2009-08-20T15:43:29Z Sorry, forgot the .Url part, fixed http://stackoverflow.com/questions/1234089/how-can-i-use-to-combine-these-two-lines-into-one/1234101#1234101 Comment by tghw on How can I use ?? to combine these two lines into one? tghw 2009-08-05T16:00:09Z 2009-08-05T16:00:09Z -1 for lack of imagination and creativity. (See Ben Lings's answer below.)