User MikeN - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T05:34:11Zhttp://stackoverflow.com/feeds/user/36680http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1890570/how-can-i-auto-populate-a-pdf-form-in-django-python2How can I auto-populate a PDF form in Django/Python?MikeN2009-12-11T20:12:17Z2009-12-12T01:09:12Z
<p>I have PDF forms that I want to autopopulate with data from my Django web application and then offer to the user to download. What python library would let me easily pre-populate PDF forms? These forms are intended to be printed out.</p>
http://stackoverflow.com/questions/1882825/for-a-foreignkey-field-in-a-form-how-do-you-display-a-widget-other-than-a-select0For a ForeignKey field in a form, how do you display a widget other than a Select menu?MikeN2009-12-10T17:57:20Z2009-12-10T18:38:07Z
<p>I have a modelchoicefield that has too many valid options to really show in a menu. How can I tell Django forms to use another widget that won't take up as much space rendering? </p>
<p>I want to use a HiddenField and I have another widget on the screen taht will populate it. If the hiddenfield has no value I keep getting form validation errors on it even though it is marked as required=false</p>
http://stackoverflow.com/questions/907695/in-a-django-model-custom-save-method-how-should-you-identify-a-new-object1In a django model custom save() method, how should you identify a new object?MikeN2009-05-25T18:45:28Z2009-12-06T13:44:19Z
<p>I want to trigger a special action in the save() method of a Django model object when I'm saving a new record (not updating an existing record.)</p>
<p>Is the check for (self.id != None) necessary and sufficient to guarantee the self record is new and not being updated? Any special cases this might overlook?</p>
http://stackoverflow.com/questions/1836361/how-do-i-preload-imports-into-djangos-manage-py-shell-command0How do I preload imports into Django's manage.py shell command?MikeN2009-12-02T22:37:18Z2009-12-03T16:03:58Z
<p>When I run manage.py shell on my Django project to take a peek at something there are common imports that I always want to run at the start of the shell (e.g. I always want to import my model files.) How can I have these run automatically everytime I run the shell command?</p>
<p>2nd related question, when I hit the up arrow I get the "^A" character instead of the previously run command in the manage.py shell (and in my regular python shell), how can I fix this so it loads the previous command like on the Linux/Unix command line?</p>
http://stackoverflow.com/questions/1144123/how-can-i-hide-an-html-table-row-tr-so-that-it-takes-up-no-space0How can I hide an HTML table row <tr> so that it takes up no space?MikeN2009-07-17T15:46:51Z2009-12-03T13:21:07Z
<p>How can I hide an HTML table row <code><tr></code> so that it takes up no space? I have several <code><tr></code>'s set to <code>style="display:none;"</code>, but they still affect the size of the table and the table's border reflects the hidden rows.</p>
http://stackoverflow.com/questions/1610010/how-could-i-change-the-color-of-individual-dates-in-a-jquery-ui-calendar-widget0How could I change the color of individual dates in a Jquery UI calendar widget?MikeN2009-10-22T21:18:14Z2009-11-27T01:12:17Z
<p>Given an inline JQuery UI datepicker, I want to change the background colors of individual dates. So I want to be able to set "October 5th, 2009" to green and "11/6/209" to red. How could I do this in JQuery and as the datepicker is scrolled month to month what event would I catch to update the background colors of individual dates?</p>
http://stackoverflow.com/questions/1792371/how-can-i-make-fonts-on-my-website-bigger-and-easier-to-read-for-some-users0How can I make fonts on my website bigger and easier to read for some users?MikeN2009-11-24T19:28:21Z2009-11-25T08:36:31Z
<p>I have a few users who complain that the font size on my web application is too small to read. They aren't happy with trying to resize the font setting on the browser because when they make the font larger the dimensions and layout of the application change. Are there any existing tools that give me a good way to let the end user pick a small/medium/large font size and have that change the .css of the site to a larger font size without affecting the layout of the page?</p>
http://stackoverflow.com/questions/1579317/linux-sendmail-server-misdelivers-mail-to-my-own-domain0Linux Sendmail server misdelivers mail to my own domain? [closed]MikeN2009-10-16T17:20:47Z2009-11-23T23:26:47Z
<p>I'm seeing a very low percentage of misdelivered emails from my sendmail host. My sendmail server will try to email an address like "john.dough@johndoughs.own.domain.example.com" and the email will actually be delivered to "john.dough@myexample.com" (which is my domain, the sendmail application is running on that webserver and is the email originator/sender domain.) </p>
<p>I've noticed this only happens for small and "weird" domains, which makes me guess that somehow the mail is undeliverable to the small domain because it's mail service is down, but just a total guess.</p>
<p>Has anyone seen this happen before? How can I diagnose and fix the problem?</p>
http://stackoverflow.com/questions/1765723/django-csrf-framework-having-many-failures0Django CSRF Framework having many failuresMikeN2009-11-19T18:59:57Z2009-11-19T19:34:47Z
<p>I'm getting many failures from the CSRF Django middleware on my site (the version from SVN trunk.) The only errors I get are: CSRF failure: reason=CSRF token missing or incorrect.</p>
<p>How could I diagnose where these CSRF errors are coming from? I can't cause the CSRF errors myself, but I setup the site to email me whenever the CSRF error view is triggered so I know that it is happening often.</p>
http://stackoverflow.com/questions/1759006/embed-an-html-form-within-a-larger-form1Embed an HTML <form> within a larger <form>?MikeN2009-11-18T20:52:23Z2009-11-19T02:36:49Z
<p>I want to have an HTML form embedded in another form like so:</p>
<pre><code><form id="form1">
<input name="val1"/>
<form id="form2">
<input name="val2"/>
<input type="button" name="Submit Form 2 ONLY">
</form>
<input type="button" name="Submit Form 1 data including form 2">
</form>
</code></pre>
<p>I need to submit the entirety of form1, but when I submit form2 I only want to submit the data in form2 (not everything in form1.) Will this work?</p>
http://stackoverflow.com/questions/1731313/i-want-to-email-users-an-encrypted-file-from-a-django-backend-script-on-ubuntu1I want to email users an encrypted file from a Django Backend Script on UbuntuMikeN2009-11-13T19:23:46Z2009-11-13T19:30:02Z
<p>I want to email users an encrypted file from a Django Backend Script (running through manage.py) on Ubuntu. How can I encrypt the data so that it is unreadable by 3rd parties who might intercept or even just read the email and will require a password string that I can supply to the end user via another method (not email.)</p>
<p>What encryption scheme and application for Django/Ubuntu can I use so that a doctor could easily decrypt the data from their PC/MAC?</p>
http://stackoverflow.com/questions/1731025/python-code-to-accept-many-different-formats-of-us-phone-numbers0Python code to accept many different formats of US phone numbers?MikeN2009-11-13T18:30:36Z2009-11-13T18:53:37Z
<p>I'm reading in lots of user entered data that represent phone numbers from files. They are all slightly entered in differently:</p>
<pre>
5555555555
555-555-5555
555-555/5555
1555-555-5555
etc...
</pre>
<p>How could I easily parse in all of these phone numbers in Python and produce a canonical output like:
555-555-5555?</p>
http://stackoverflow.com/questions/1724473/how-could-i-print-out-the-nth-letter-of-the-alphabet-in-python2How could I print out the nth letter of the alphabet in Python?MikeN2009-11-12T18:47:18Z2009-11-12T19:12:46Z
<p>ASCII math doesn't seem to work in Python:</p>
<blockquote>
<blockquote>
<p>'a' + 5
DOESN'T WORK</p>
</blockquote>
</blockquote>
<p>How could I quickly print out the nth letter of the alphabet without having an array of letters?</p>
<p>My naive solution is this:</p>
<pre>
letters = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
print letters[5]
</pre>
http://stackoverflow.com/questions/1709324/how-many-data-fields-can-i-add-to-a-django-model-before-performance-really-starts0How many data fields can I add to a Django model before performance really starts to become a factor?MikeN2009-11-10T16:38:34Z2009-11-10T16:38:34Z
<p>If I want to create a Django model with 500 data fields, will that be slow? What is the upper limit on a Django model/table backed by MySQL on a powerful modern server? If I have 10,000 data fields will it be slow?</p>
<p>At what point would I consider breaking down a really large table into smaller sub-tables?</p>
http://stackoverflow.com/questions/1641008/how-to-store-arbitrary-name-value-key-pairs-in-a-django-model4How to store arbitrary name/value key pairs in a Django model?MikeN2009-10-29T00:37:19Z2009-11-08T00:28:06Z
<p>I have a fixed data model that has a lot of data fields.</p>
<pre>
class Widget(Models.model):
widget_owner = models.ForeignKey(auth.User)
val1 = models.CharField()
val2 = models.CharField()
...
val568 = ...
</pre>
<p>I want to cram even more data into this Widget by letting my users specify custom data fields. What's a sane way to do this? Is storing name/value pairs where the user can specify additional "Widget fields" a good idea? My pseudo thoughts are below:</p>
<pre>
data_types = ('free_text', 'date', 'integer', 'price')
class CustomWidgetField(models.Model)
owner = ForeignKey(auth.User)
field_title = models.CharField(auth.User)
field_value_type = models.CharField(choices = data_types)
class CustomWidgetValue(models.Model)
field_type = ForeignKey(CustomWidgetField)
widget = ForeignKey(Widget)
value = models.TextField()
</pre>
<p>So I want to let each user build a new type of data field that will apply to all of their widgets and then specify values for each custom field in each widget. I will probably have to do filtering/searching on these custom fields just as I would on a native field (which I assume will be much slower than operating on native fields.) But the scale is to have a few dozen custom fields per Widget and each User will only have a few thousand Widgets in their inventory. I can also probably batch most of the searching/filtering on the custom fields into a backend script (maybe.)</p>
http://stackoverflow.com/questions/520640/googles-imageless-buttons33Google's Imageless Buttons...MikeN2009-02-06T15:12:31Z2009-11-07T23:42:31Z
<p>There have been a few articles recently about Google's new imageless buttons:</p>
<ul>
<li><a href="http://stopdesign.com/archive/2009/02/04/recreating-the-button.html" rel="nofollow">http://stopdesign.com/archive/2009/02/04/recreating-the-button.html</a></li>
<li><a href="http://stopdesign.com/eg/buttons/3.0/code.html" rel="nofollow">http://stopdesign.com/eg/buttons/3.0/code.html</a></li>
<li><a href="http://stopdesign.com/eg/buttons/3.1/code.html" rel="nofollow">http://stopdesign.com/eg/buttons/3.1/code.html</a></li>
<li><a href="http://gmailblog.blogspot.com/2009/02/new-ways-to-label-with-move-to-and-auto.html" rel="nofollow">http://gmailblog.blogspot.com/2009/02/new-ways-to-label-with-move-to-and-auto.html</a></li>
</ul>
<p>I really like how these new buttons work in Gmail. How can I use these or similar buttons on my site? Are there any open source projects with a similar look & feel?</p>
<p>If I wanted to roll my own button package like this using JQuery/XHTML/CSS, what elements could I use? My initial thoughts are:</p>
<ol>
<li><p>Standard <code><input type="button"></code> with css to improve the look (the design article talked mostly about the css/imges involves.)</p></li>
<li><p>Jquery javascript to bring up a custom dialog rooted to the button on the "onclick" event which would have <code><a></code> tags in them and a search bar for filtering? Would a table layout for that popup be sane?</p></li>
</ol>
<p>I'm terrible at reverse engineering things on the web, what are some of the tools that I could use to help reverse engineer these buttons? Using Firefox's web developer toolbar I can't really see the css or javascript (even if it is minified) that is used on the buttons popup dialogs. What browser tool or other method could I use to peek at them and get some ideas?</p>
<p>I'm not looking to steal any of Google's IP, just get an idea of how I could create similar button functionality.</p>
http://stackoverflow.com/questions/1590944/currently-using-django-evolution-is-south-better-and-worth-switching2Currently using Django "Evolution", is "South" better and worth switching?MikeN2009-10-19T20:28:11Z2009-11-05T22:18:01Z
<p>I'm currently using Django evolutions to manage my product's database evolutions. It's not perfect but I've learned to live with its flaws. For instance, I always have to copy my production database to test before moving out a new schema because the "evolve" command cannot always evolve a database that was changed in several small migrations (on test I did A->B->C, but A->C will not evolve correctly.)</p>
<p>Will South fix all of those problems? Is it worth the effort of learing a new tool?</p>
http://stackoverflow.com/questions/1668494/how-could-i-create-a-screen-that-would-batch-create-a-bunch-of-django-auth-users0How could I create a screen that would batch create a bunch of Django auth users?MikeN2009-11-03T16:32:44Z2009-11-03T16:45:13Z
<p>I want to create a helper screen that can create a bunch of Django auth users on my site and have those accounts setup the same exact way as if they were done one by one through the Django auth GUI signup. What methods from Django auth would I have to use in my view to accomplish this?</p>
http://stackoverflow.com/questions/1650941/django-csrf-framework-cannot-be-disabled-and-is-breaking-my-site3Django CSRF framework cannot be disabled and is breaking my siteMikeN2009-10-30T16:38:07Z2009-10-30T17:28:28Z
<p>The django csrf middleware can't be disabled. I've commented it out from my Middleware of my project but my logins are failing due to missing CSRF issues. I'm working from the Django trunk. How can CSRF cause issues if it is not enabled in middleware?</p>
<p>I have to disable it because there are lots of POST requests on my site that CSRF just breaks. Any feedback on how I can completely disable CSRF in a django trunk project?</p>
<p>The "new' CSRF framework from Django's trunk is also breaking an external site that is coming in and doing a POST on a URL I'm giving them (this is part of a restful API.) I can't disable the CSRF framework as I said earlier, how can I fix this?</p>
http://stackoverflow.com/questions/1647597/how-can-i-send-an-icalendar-email-attachment-with-django1How can I send an iCalendar email attachment with Django?MikeN2009-10-30T01:49:37Z2009-10-30T13:24:35Z
<p>I want to send an iCalendar <a href="http://en.wikipedia.org/wiki/ICalendar" rel="nofollow">http://en.wikipedia.org/wiki/ICalendar</a> email attachment using Django. Is there an open source library to build an iCalendar file in Python and/or available for Django?</p>
http://stackoverflow.com/questions/1637561/what-to-do-if-djangos-trunks-own-unit-tests-fail1What to do if Django's trunks own unit tests fail?MikeN2009-10-28T14:22:16Z2009-10-29T00:44:56Z
<p>I work off of the Django trunk and notice that the unit tests for the Django modules in the trunk always have failures. Is the Django trunk supposed to pass all of its own unit tests?</p>
<p>Here are some of the example errors:</p>
<pre>
======================================================================
ERROR: test_password_change_fails_with_invalid_old_password (django.contrib.auth.tests.views.ChangePasswordTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/michael/django/trunk/django/contrib/auth/tests/views.py", line 156, in test_password_change_fails_with_invalid_old_password
'new_password2': 'password1',
File "/Users/michael/django/trunk/django/test/client.py", line 318, in post
response = self.request(**r)
File "/Users/michael/django/trunk/django/core/handlers/base.py", line 87, in get_response
response = middleware_method(request, callback, callback_args, callback_kwargs)
File "/Users/michael/Documents/workspace/drchrono/drchrono_middleware/drchrono.py", line 31, in process_view
setattr(request, 'currentDoctor', request.user.get_profile().doctor) #Default is to have currentDoctor be default for logged in user.
File "/Users/michael/django/trunk/django/contrib/auth/models.py", line 285, in get_profile
self._profile_cache = model._default_manager.get(user__id__exact=self.id)
File "/Users/michael/django/trunk/django/db/models/manager.py", line 119, in get
return self.get_query_set().get(*args, **kwargs)
File "/Users/michael/django/trunk/django/db/models/query.py", line 298, in get
% self.model._meta.object_name)
DoesNotExist: UserProfile matching query does not exist.
</pre>
<p>I just realized that a lot of the errors mention a missing UserProfile and that I have a custom UserProfile object that I create when creating a new User through the Web signup process (but that does not get created when instantiating a new User object in the admin or I'll assume through the code.) So maybe this is my app's fault for not creating UserProfiles for users not created through the GUI. How can I create a UserProfile for each User object created? Do you monkeypatch the new() method of the User class?</p>
http://stackoverflow.com/questions/1601109/how-could-i-block-all-non-us-ip-addresses-from-access-to-my-website2How could I block all non-US IP addresses from access to my website?MikeN2009-10-21T14:16:49Z2009-10-21T15:38:59Z
<p>I want to block all non-US users from accessing my website. I'm using nginx on the front end and have a django powered website. </p>
<p>1) How can I determine what are US IP addresses?</p>
<p>2) Should I be blocking them in my webserver or in my application layer?</p>
http://stackoverflow.com/questions/619241/does-a-blog-sub-domain-help-the-pagerank-of-your-main-site9Does a ".blog." sub-domain help the pagerank of your main site?MikeN2009-03-06T15:30:22Z2009-10-18T09:27:30Z
<p>I have my main application site https://drchrono.com, and I have a blog sub-domain under <a href="http://blog.drchrono.com" rel="nofollow">http://blog.drchrono.com</a>. I was told by some bloggers that the blog sub-domain of your site helps the pagerank of your main site. Does traffic to your blog sub-domain help the Google Pagerank of your site and count as traffic to your main site?</p>
http://stackoverflow.com/questions/1020440/how-to-test-email-deliverability-in-junk-folder/1579342#15793420Answer by MikeN for How To Test Email Deliverability - % In Junk FolderMikeN2009-10-16T17:26:14Z2009-10-16T17:26:14Z<p>There is a company that helps you with your email reputation:
returnpath.net is their consulting site and the free public site is: <a href="https://www.senderscore.org/" rel="nofollow">https://www.senderscore.org/</a></p>
<p>The second site will check if you are on blacklists by IP and also give you their version of "scores" about your email reputation on the web. If you are a startup or have not sent tens of thousands of emails all over the world yet from your server you may show up as unknown on their list. If you create an account and login you can get more detailed info on your domain (and even check other similar domains.) Once you sign up they send you emails about email deliverability like an informative newsletter. You can actually learn a lot from their news letters, but they are definitely geared towards getting you to buy their services.</p>
<p>I'm not an employee of this company, but have met the founder and use their free service (they also have paid services that large companies like twitter.com use.)</p>
http://stackoverflow.com/questions/1573010/why-is-it-bad-to-just-have-one-big-picture-as-your-homepage1Why is it bad to just have one big picture as your homepage?MikeN2009-10-15T15:10:05Z2009-10-15T15:31:35Z
<p>When designing my homepage, I feel like the common knowledge is that it is bad to just have one big picture in the center that gives all of the content. The "right" way to do it would be to chop up the large layed out image into several small backgrounds and make the text use standard html with css background images for layout.</p>
<p>Is the only reason one big image is bad SEO reasons? </p>
http://stackoverflow.com/questions/1556407/how-can-i-read-convert-sas-govt-data-files-on-a-mac1How can I read/convert SAS Gov't Data files on a MAC?MikeN2009-10-12T19:24:01Z2009-10-13T09:35:17Z
<p>There are gov't data files: <a href="http://www.cdc.gov/EpiInfo/" rel="nofollow">http://www.cdc.gov/EpiInfo/</a></p>
<p>Available in this weird SAS format. How can I convert them into XML/CSV, something much simpler that can be read by scripts/etc.???</p>
http://stackoverflow.com/questions/1441458/how-could-i-attach-a-piece-of-get-post-data-to-every-single-request-coming-into-t0How could I attach a piece of GET/POST data to every single request coming into the server for logged in users?MikeN2009-09-17T21:35:40Z2009-09-29T10:42:05Z
<p>I want to have an input element at the to of my webpage that contains some global settings for a logged in user. How could I attach this piece of data to every single GET/POST and AJAX request that comes in from my web application? I wanted to tack this onto an existing site that has a lot of code already.</p>
<p>Cookies aren't what I'm looking for, because you couldn't have two different cookies for the same site in different tabs/windows of the same application (an HTML input could have different values for the same logged in user in two different tabs/windows.)</p>
<p>UPDATE: To clarify, the feature I want is to bridge two different modes in the same browser and let the user switch between the two modes via an option menu. The current mode would affect everything the user does even down to short/small Ajax requests (every request into the system would need to know what mode the browser window is in.) So two different tabs in the same browser would behave very differently from each other if they are in different modes. </p>
http://stackoverflow.com/questions/1467425/tons-of-false-positives-from-djangos-csrf-middleware2Tons of false positives from Django's CSRF middleware?MikeN2009-09-23T17:15:33Z2009-09-24T07:07:20Z
<p>I'm getting tons of false positives from Django's contrib CSRF middleware. Just from normal use of the site there will be a lot of cases where the CSRF just starts blocking requests as suspected forgery attacks.</p>
<p>Does anyone else have issues like this? I'm using the SVN branch of Django so have the latest version of the CSRF middleware. How could I diagnose these issues?</p>
<p>Update: I see these false positives on my production and dev sites. They happen sporadically. My site uses sub-domains and there is a different dev/production version of the site that runs on different servers but is seperated by a sub-domain. What triggers CSRF attack warnings? Is it when a dev cookie gets sent to the production site? Would moving between sub-domains for the same logged in user cause problems? </p>
http://stackoverflow.com/questions/1461659/django-runtime-url-configuration/1461765#14617650Answer by MikeN for Django: runtime url configurationMikeN2009-09-22T18:22:47Z2009-09-22T18:22:47Z<p>Have you tried modifying the "urlpatterns" variable at runtime?</p>
http://stackoverflow.com/questions/1461631/is-css-used-anywhere-besides-web-browsers/1461718#14617180Answer by MikeN for Is CSS used anywhere besides web browsers?MikeN2009-09-22T18:15:46Z2009-09-22T18:15:46Z<p>There are some GTK (Graphical Toolkit) style properties that are controlled with "css like" style files.<br/>
This is one example of a project that tries to use actual CSS for the GTK styling:<br/><br/>
<a href="http://blogs.gnome.org/theming/2008/10/01/announce-gtk-css-engine-02-available/" rel="nofollow">http://blogs.gnome.org/theming/2008/10/01/announce-gtk-css-engine-02-available/</a></p>
http://stackoverflow.com/questions/1882825/for-a-foreignkey-field-in-a-form-how-do-you-display-a-widget-other-than-a-select/1882940#1882940Comment by MikeN on For a ForeignKey field in a form, how do you display a widget other than a Select menu?MikeN2009-12-10T18:31:47Z2009-12-10T18:31:47ZI want to use a HiddenField and I have another widget on the screen taht will populate it. If the hiddenfield has no value I keep getting form validation errors on it even though it is marked as required=false.http://stackoverflow.com/questions/1731025/python-code-to-accept-many-different-formats-of-us-phone-numbers/1731044#1731044Comment by MikeN on Python code to accept many different formats of US phone numbers?MikeN2009-11-13T19:28:11Z2009-11-13T19:28:11ZIn Communist Russia, phone numbers reformat you!http://stackoverflow.com/questions/1650941/django-csrf-framework-cannot-be-disabled-and-is-breaking-my-site/1650990#1650990Comment by MikeN on Django CSRF framework cannot be disabled and is breaking my siteMikeN2009-11-02T14:49:19Z2009-11-02T14:49:19ZYes! I'm going to start using a stable version of Django. I've been running a production money generating site off the dev. branch from before version 1.0 was released. Django is an amazing project, but this is the first time I've gotten burned by using the trunk.http://stackoverflow.com/questions/1650941/django-csrf-framework-cannot-be-disabled-and-is-breaking-my-site/1650990#1650990Comment by MikeN on Django CSRF framework cannot be disabled and is breaking my siteMikeN2009-10-30T18:05:58Z2009-10-30T18:05:58ZThere is a view decorator to use: @csrf_exempt, if you put this decorator the CSRF framework will ignore its checking for that request. I'm stil pissed at how this CSRF trap was sprung, it is baked into the auth framework so you can't disable it if you use auth for sign-in.http://stackoverflow.com/questions/1650941/django-csrf-framework-cannot-be-disabled-and-is-breaking-my-site/1650990#1650990Comment by MikeN on Django CSRF framework cannot be disabled and is breaking my siteMikeN2009-10-30T17:08:12Z2009-10-30T17:08:12ZThanks for the info, you didn't tell me how to disable CSRF completely, I have a production site which has stopped working for paying customers because I was blindsided by this "new" way of doing things that is not backwards compatible. But this is the issue that is causing the problem, I'm working on quickly updating to the new/legacy way.http://stackoverflow.com/questions/1637561/what-to-do-if-djangos-trunks-own-unit-tests-fail/1639461#1639461Comment by MikeN on What to do if Django's trunks own unit tests fail?MikeN2009-10-29T00:22:56Z2009-10-29T00:22:56ZThis isn't on an out of the box application but a working application.http://stackoverflow.com/questions/1637561/what-to-do-if-djangos-trunks-own-unit-tests-fail/1637642#1637642Comment by MikeN on What to do if Django's trunks own unit tests fail?MikeN2009-10-28T15:47:46Z2009-10-28T15:47:46ZI think it may be due to my dev setup. I'm using OSX and MySQL, the majority of the failures seem to be database related of renaming tables and such.http://stackoverflow.com/questions/1441458/how-could-i-attach-a-piece-of-get-post-data-to-every-single-request-coming-into-t/1484639#1484639Comment by MikeN on How could I attach a piece of GET/POST data to every single request coming into the server for logged in users?MikeN2009-09-28T13:22:30Z2009-09-28T13:22:30ZI am using jquery and this sounds like a great start. Is there a way I could attach this metadta to small AJAX requests? http://stackoverflow.com/questions/1442017/subdomains-and-logins/1442029#1442029Comment by MikeN on Subdomains and LoginsMikeN2009-09-18T13:43:50Z2009-09-18T13:43:50ZSetting SESSION_COOKIE_DOMAIN doesn't seem to work for me on my localhost server, though it does work on the production website server. Is there a configuration trick to get it working on development/localhost?
http://stackoverflow.com/questions/1441458/how-could-i-attach-a-piece-of-get-post-data-to-every-single-request-coming-into-t/1441503#1441503Comment by MikeN on How could I attach a piece of GET/POST data to every single request coming into the server for logged in users?MikeN2009-09-18T00:57:10Z2009-09-18T00:57:10ZA session wouldn't keep track of two different open browser windows or tabs having a different state.http://stackoverflow.com/questions/1441458/how-could-i-attach-a-piece-of-get-post-data-to-every-single-request-coming-into-t/1441471#1441471Comment by MikeN on How could I attach a piece of GET/POST data to every single request coming into the server for logged in users?MikeN2009-09-17T21:49:24Z2009-09-17T21:49:24ZHow could I make sure this input is attached to every single web request? What about an AJAX request that is tied to some small part of the screen?
http://stackoverflow.com/questions/1369526/what-is-the-python-keyword-with-used-for/1369553#1369553Comment by MikeN on What is the python keyword "with" used for?MikeN2009-09-03T12:43:59Z2009-09-03T12:43:59ZWhat methods are used to close the open resource? What if I made my own file system object that had its own special open/close methods, would the "with" keyword work with those? Or will "with" only work with the built-in Python resource types?http://stackoverflow.com/questions/1188542/django-runserver-permanent/1188553#1188553Comment by MikeN on Django runserver permanentMikeN2009-08-03T20:43:18Z2009-08-03T20:43:18Z@Adam N. You will be able to exit the shell, the nohup is for "no hangup", it will keep running the job after you leave the shell.http://stackoverflow.com/questions/1159363/is-there-a-jquery-plugin-to-represent-a-united-stated-dollar-input-field/1159474#1159474Comment by MikeN on Is there a JQuery plugin to represent a United Stated Dollar input field?MikeN2009-07-21T15:15:22Z2009-07-21T15:15:22ZActually, this mask is better written, but doesn't quite handle dollars.http://stackoverflow.com/questions/1159363/is-there-a-jquery-plugin-to-represent-a-united-stated-dollar-input-field/1159496#1159496Comment by MikeN on Is there a JQuery plugin to represent a United Stated Dollar input field?MikeN2009-07-21T14:29:17Z2009-07-21T14:29:17ZBoth masks plugins look good, this one has the extra features needed to build a US dollar amount mask.