User Alasdair - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T10:31:36Z http://stackoverflow.com/feeds/user/113962 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1807130/pagination-problem/1807424#1807424 0 Answer by Alasdair for Pagination problem Alasdair 2009-11-27T08:30:43Z 2009-11-27T08:30:43Z <p>You can achieve this by enabling sessions.</p> <p>I recommend reading through the chapter <a href="http://www.djangobook.com/en/2.0/chapter14/" rel="nofollow">Sessions, Users, and Registration</a> on the djangobook website.</p> http://stackoverflow.com/questions/1790176/how-do-i-make-djangos-markdown-filter-transform-a-carriage-return-to-br/1793709#1793709 1 Answer by Alasdair for How do I make django's markdown filter transform a carriage return to <br />? Alasdair 2009-11-24T23:33:32Z 2009-11-26T10:41:16Z <h2>I don't think messing around with the newline syntax is a good idea ...</h2> <p>I agree with Henrik's comment. From the <a href="http://daringfireball.net/projects/markdown/syntax" rel="nofollow">markdown docs</a>:</p> <blockquote> <p>When you do want to insert a <code>&lt;br /&gt;</code> break tag using Markdown, you end a line with two or more spaces, then type return. </p> <p>Yes, this takes a tad more effort to create a <code>&lt;br /&gt;</code>, but a simplistic “every line break is a <code>&lt;br /&gt;</code>” rule wouldn’t work for Markdown. Markdown’s email-style blockquoting and multi-paragraph list items work best — and look better — when you format them with hard breaks.</p> </blockquote> <p>Have you looked at the other Django markup options, textile and restructuredtext? Their syntax might suit you better.</p> <p><hr></p> <h2>but if you still want to ...</h2> <p>A rough and ready method is to chain the markdown and <a href="http://docs.djangoproject.com/en/dev/ref/templates/builtins/#linebreaksbr" rel="nofollow">linebreaksbr</a> filters.</p> <pre><code>{{ value|markdown|linebreaksbr }} </code></pre> <p>This runs the markdown filter, then the linebreaksbr filter, which replaces <code>\n</code> with <code>&lt;br /&gt;</code>. You'll probably end up with too many linebreaks, but that might be better for you than too few.</p> <p>If you a better solution than that, you could</p> <ol> <li><p>Write a custom filter, as John suggests in his answer.</p></li> <li><p>Dive into the the <a href="http://www.freewisdom.org/projects/python-markdown" rel="nofollow">python-markdown</a> library, which Django uses, and <a href="http://www.freewisdom.org/projects/python-markdown/Writing%5FExtensions" rel="nofollow">write an extension</a> that implements your desired newline syntax. You would then use the extension with the filter </p> <p><code>{{ value|markdown:"linebreakextension" }}</code></p></li> </ol> http://stackoverflow.com/questions/1801008/django-html-email-adds-extra-characters-to-the-email-body/1801097#1801097 2 Answer by Alasdair for Django Html email adds extra characters to the email body Alasdair 2009-11-26T01:32:36Z 2009-11-26T01:40:14Z <p>You are generating <code>html_content</code> and <code>text_content</code> with <code>render_to_response</code>, which returns an <code>HttpResponse</code> object. </p> <p>However you want <code>html_content</code> and <code>text_content</code> to be strings, so use <a href="http://docs.djangoproject.com/en/dev/ref/templates/api/#the-render-to-string-shortcut" rel="nofollow"><code>render_to_string</code></a> instead.</p> <p>You can import <code>render_to_string</code> with the following line:</p> <pre><code>from django.template.loader import render_to_string </code></pre> http://stackoverflow.com/questions/1745743/validating-uploaded-files-in-django 6 Validating Uploaded Files in Django Alasdair 2009-11-17T00:12:02Z 2009-11-25T11:20:19Z <p>A Django app that I am working has an <code>Event</code> model. An <code>Event</code> may have associated photos, static html files and pdf files.</p> <p>I would like to allow trusted users to upload these files, but I am wary about security, especially having read the following <a href="http://docs.djangoproject.com/en/dev/ref/models/fields/#filefield" rel="nofollow">in the Django docs</a> (link).</p> <blockquote> <p>Note that whenever you deal with uploaded files, you should pay close attention to where you're uploading them and what type of files they are, to avoid security holes. Validate all uploaded files so that you're sure the files are what you think they are. For example, if you blindly let somebody upload files, without validation, to a directory that's within your Web server's document root, then somebody could upload a CGI or PHP script and execute that script by visiting its URL on your site. Don't allow that.</p> </blockquote> <p>How can I validate the different types of files? I would be interested to hear anyone's experience of dealing with this kind of thing, or links for further reading. I have a gut feeling that html files may be too risky, in which case I'll restrict upload permissions to the administrator.</p> http://stackoverflow.com/questions/1769683/how-to-resize-just-uploaded-image/1774426#1774426 0 Answer by Alasdair for How to resize just uploaded image? Alasdair 2009-11-21T03:40:52Z 2009-11-21T03:40:52Z <p><a href="http://bitbucket.org/jdriscoll/django-imagekit/wiki/Home" rel="nofollow">Django Imagekit</a> allows you to specify multiple image sizes. The resized images are cached, then you can access them and the original image file in your views and templates.</p> http://stackoverflow.com/questions/1774011/listing-blog-entries-by-year-month/1774405#1774405 3 Answer by Alasdair for Listing blog entries by year,month Alasdair 2009-11-21T03:29:31Z 2009-11-21T03:29:31Z <p>If you set</p> <pre><code>entry_list = Entry.objects.order_by('pub_date') </code></pre> <p>in your view, you can display the months and years in the template using the <a href="http://docs.djangoproject.com/en/dev/ref/templates/builtins/#ifchanged" rel="nofollow">ifchanged</a> template tag.</p> <pre><code>{% for entry in entry_list %} {% ifchanged %}&lt;h3&gt;{{entry.pub_date|date:"Y"}}&lt;/h3&gt;{% endifchanged %} {% ifchanged %}&lt;h4&gt;{{entry.pub_date|date:"F"}}&lt;/h4&gt;{% endifchanged %} &lt;p&gt;{{entry.title}}&lt;/p&gt; {% endfor %} </code></pre> <p><hr></p> <p>Another useful Django queryset method for blog archives is <a href="http://docs.djangoproject.com/en/dev/ref/models/querysets/#dates-field-kind-order-asc" rel="nofollow">dates</a>.</p> <p>For example </p> <pre><code>entry_months = Entry.objects.dates('pub_date','month','DESC') </code></pre> <p>returns a <code>DateQuerySet</code> of <code>datetime.datetime</code> objects for each month that has Blog Entries. You can use this queryset in the template to create links to monthly archive pages.</p> http://stackoverflow.com/questions/1745851/customize-the-html-output-of-djangos-form-validation/1745893#1745893 3 Answer by Alasdair for Customize the html output of Django's form validation Alasdair 2009-11-17T00:44:46Z 2009-11-17T00:44:46Z <p>From the django docs about <a href="http://docs.djangoproject.com/en/dev/topics/forms/#looping-over-the-form-s-fields" rel="nofollow">looping over a form's fields</a>:</p> <blockquote> <p><code>{{ field.errors }}</code><br> Outputs a <code>&lt;ul class="errorlist"&gt;</code> containing any validation errors corresponding to this field. You can customize the presentation of the errors with a <code>{% for error in field.errors %}</code> loop. In this case, each object in the loop is a simple string containing the error message.</p> </blockquote> <p>So for example, to wrap each error in <code>&lt;p&gt;</code> tags you would do:</p> <pre><code>{% for error in form.field.errors %} &lt;p&gt;{{ error|escape }}&lt;/p&gt; {% endfor %} </code></pre> http://stackoverflow.com/questions/1729332/flexible-pagination-in-django/1730385#1730385 1 Answer by Alasdair for Flexible pagination in Django Alasdair 2009-11-13T16:37:36Z 2009-11-13T16:37:36Z <p>T. Stone's answer covers most of what I was going to say. I just want to add that you can use pagination in <a href="http://docs.djangoproject.com/en/dev/ref/generic-views/" rel="nofollow">Generic Views</a>. In particular, you may find <code>django.views.generic.list_detail.object_list</code> useful.</p> <p>You can write a small wrapper function that gets the number of objects to display per page from the <code>request</code> object, then calls <code>object_list</code>.</p> <pre><code>def paginated_object_list(request, page): my_queryset=MyModel.objects.all() #Here's T. Stone's code to get the number of items per page try: per_page = int(request.REQUEST['p']) except: per_page = 25 # default value return object_list(request, queryset=my_queryset, paginate_by=per_page, page=page) </code></pre> <p>Then, the context for your template will contain the variables, </p> <blockquote> <ul> <li><code>paginator</code>: An instance of <code>django.core.paginator.Paginator</code>.</li> <li><code>page_obj</code>: An instance of <code>django.core.paginator.Page</code>.</li> </ul> </blockquote> <p>and you can loop through <code>page_obj</code> to display the objects for that page.</p> http://stackoverflow.com/questions/1668220/filtering-by-custom-date-range-in-django-admin/1670245#1670245 1 Answer by Alasdair for Filtering by custom date range in Django admin Alasdair 2009-11-03T21:28:55Z 2009-11-03T21:28:55Z <p>This functionality isn't provided as far as I'm aware, but you can build it yourself.</p> <p>Firstly, you can filter items using <code>date__gte</code> and <code>date__lte</code> as GET arguments in the url. </p> <p>For example</p> <pre><code>/admin/myapp/bar/?date__gte=2009-5-1&amp;date__lt=2009-8-1 </code></pre> <p>will display all bar objects with dates in May, June or July 2009.</p> <p>Then if you override the <a href="http://code.djangoproject.com/browser/django/trunk/django/contrib/admin/templates/admin/change%5Flist.html" rel="nofollow">admin/change_list.html</a> template file, you can add widgets for start and end dates, which navigate to the required url.</p> <p><hr /></p> <p>Hat tip to <a href="http://stackoverflow.com/questions/1652305/is-there-a-way-to-filter-a-queryset-in-the-django-admin/1652377#1652377">Daniel's answer</a> to another SO question, which taught me about using queryset filter parameters as GET arguments.</p> http://stackoverflow.com/questions/1647597/how-can-i-send-an-icalendar-email-attachment-with-django/1647623#1647623 2 Answer by Alasdair for How can I send an iCalendar email attachment with Django? Alasdair 2009-10-30T02:05:46Z 2009-10-30T02:05:46Z <p>I've used MaxM's <a href="http://pypi.python.org/pypi/icalendar/" rel="nofollow">icalendar</a> module. It can build and parse iCalendar files. </p> http://stackoverflow.com/questions/1645962/django-year-month-based-posts-archive/1646414#1646414 3 Answer by Alasdair for Django Year/Month based posts archive Alasdair 2009-10-29T20:40:43Z 2009-10-30T00:35:00Z <p>Firstly, the datetime format strings are given in the <a href="http://docs.djangoproject.com/en/dev/ref/templates/builtins/#now" rel="nofollow">django docs</a>. I think you want capital instead of lowercase 'M'.</p> <p>Since you want to display all 12 months of a year, even if only some have posts, we'll create an <code>archives</code> object to pass to the template. I've chosen to use a dictionary where</p> <ul> <li>the keys are the years</li> <li>the values are a list of 12 <code>[datetime, bool]</code> pairs, where <code>datetime</code> represents a month, and <code>bool</code> is <code>True</code> if there are posts for that month.</li> </ul> <p>Here's how we build the <code>archives</code> object in the view.</p> <pre><code>from datetime import date def archive(request): arch = Post.objects.dates('date', 'month', order='DESC') archives = {} for i in arch: year = i.year month = i.month try: archives[year][month-1][1]=True except KeyError: # catch the KeyError, and set up list for that year archives[year]=[[date(y,m,1),False] for m in xrange(1,13)] archives[year][month-1][1]=True return render_to_response('blog/arhiva.html', {'archives':sorted(archives.items(),reverse=True)}) </code></pre> <p>In the template, we loop through the months for each year, and display the link if appropriate.</p> <pre><code>{% for year, month_list in archives %} {{ year }} archives: {% for month, has_link in month_list %} {% if has_link %}&lt;a href="/{{ month.year }}/{{ month.month }}/"&gt;{% endif %} {{ month|date:"M" }} {% if has_link %}&lt;/a&gt;{% endif %} {% endfor %} {% endfor %} </code></pre> <p>I haven't checked all the code so there might be a couple of bugs. It would be better to use the <a href="http://docs.djangoproject.com/en/dev/ref/templates/builtins/#url" rel="nofollow">url template tag</a> for the link, instead of hardcoding the url format. I have a feeling my answer might be overly complicated, but I've spent a while typing it up, so I may as well share it with the world. </p> <p><hr /></p> <h2>Internationalization</h2> <p>I haven't used the internationalization features of Django, so I can't really help with the translation. I recommend you have a look at the <a href="http://docs.djangoproject.com/en/dev/topics/i18n/" rel="nofollow">documentation</a>, and ask another question if there's a particular bit you don't understand.</p> <p>Having said that, if you want to display the months is Romanian only, here's an ugly way to do it. </p> <p>First, add the following line to the top of your archive function in the view. </p> <pre><code>rom_months = ['Ian', 'Feb', 'Mar', 'Apr', 'Mai', 'Iun', 'Iul', 'Aug', 'Sept', 'Oct', 'Noi', 'Dec'] </code></pre> <p>Then substitute the following line into your view</p> <pre><code>archives[year]=[[date(y,k+1,1),False,rom] for k, rom in enumerate(rom_months)] </code></pre> <p>Finally substitute the following into the template</p> <pre><code>... {% for month, has_link, rom_month in month_list %} {% if has_link %}&lt;a href="/{{ month.year }}/{{ month.month }}/"&gt;{% endif %} {{ rom_month }} ... </code></pre> http://stackoverflow.com/questions/1639866/how-do-i-customize-djangos-flatpage-to-display-a-new-field-on-the-change-list-pa/1640565#1640565 3 Answer by Alasdair for How do I customize Django's Flatpage to display a new field on the change list page of the admin? Alasdair 2009-10-28T22:32:51Z 2009-10-28T22:40:52Z <p>You don't need to edit flatpages/admin.py. Instead, create a <code>CustomFlatPageAdmin</code> that inherits from the default <code>FlatPageAdmin</code>.</p> <p>You might want to create a <code>customflatpage</code> app for the following admin.py file, or perhaps you already have a utilities app that you can add it to.</p> <pre><code>#admin.py from django.contrib import admin from django.contrib.flatpages.models import FlatPage from django.contrib.flatpages.admin import FlatPageAdmin def get_sites(obj): 'returns a list of site names for a FlatPage object' return ", ".join((site.name for site in obj.sites.all())) get_sites.short_description = 'Sites' class CustomFlatPageAdmin(FlatPageAdmin): list_display = ('title', 'url', get_sites) #unregister the default FlatPage admin and register CustomFlatPageAdmin. admin.site.unregister(FlatPage) admin.site.register(FlatPage, CustomFlatPageAdmin) </code></pre> http://stackoverflow.com/questions/1633891/saving-a-manytomanyfield-and-a-foreignkey-in-django/1634672#1634672 1 Answer by Alasdair for Saving a ManyToManyField and a ForeignKey in Django Alasdair 2009-10-28T01:20:06Z 2009-10-28T01:57:10Z <p>You can use the <code>Model.objects.create</code> method, which creates a new instance, saves it and returns a pointer to the new object, ready to define relationships to other instances.</p> <pre><code>#create a new Pizza #There's no need to explicitly save the new Pizza instance new_pizza = Pizza.objects.create(name='Canadian') #Add Cities to Pizza #Here, Toronto and Montreal are City instances you created earlier #There's no need to save new_pizza after adding cities new_pizza.cities.add(Toronto, Montreal) #Create a new Price object for new_pizza #There's no need to explicitly save new_pizza or the new Price instance. new_pizza.price_set.create(usd=Decimal('8.99'),cad=Decimal('9.99')) </code></pre> <p>Note that by defining the pizza ForeignKey in the <code>Price</code> model, a <code>Pizza</code> can have more than one <code>Price</code>. Is this what you meant? Defining a price ForeignKey in <code>Pizza</code> would give one price per Pizza.</p> http://stackoverflow.com/questions/1631333/in-django-how-to-write-a-query-that-selects-all-possible-combinations-of-four-in/1631885#1631885 0 Answer by Alasdair for In django, how to write a query that selects all possible combinations of four integers? Alasdair 2009-10-27T16:06:46Z 2009-10-27T17:56:08Z <p>Is the order of the numbers important? </p> <p>If not, you could sort the digits for tickets and draws in ascending order, then use your code</p> <pre><code>winners = Ticket.objects.filter(draw=self.id,digit1=self.digit1,digit2=self.digit2,digit3=self.digit3,digit4=self.digit4) </code></pre> <p>As an aside, Your try... except block won't catch the situation when there are no winners. The <code>DoesNotExist</code> exception is thrown by the <code>get</code> method (<a href="http://docs.djangoproject.com/en/dev/ref/models/querysets/#id5" rel="nofollow">see docs</a>).</p> <p>If there isn't a winning ticket, the <code>filter</code> method will return an empty queryset, but not raise an error. You can then check whether there are winners using an if statement.</p> <pre><code>if winners # there are winners self.winner = True else: # there are not winners self.winner = False </code></pre> http://stackoverflow.com/questions/1631592/featuring-content-in-a-django-website/1631786#1631786 6 Answer by Alasdair for "Featuring" content in a Django website Alasdair 2009-10-27T15:52:14Z 2009-10-27T15:52:14Z <p>Have you looked at the <a href="http://docs.djangoproject.com/en/dev/ref/contrib/contenttypes/#module-django.contrib.contenttypes" rel="nofollow">contenttypes framework</a>? You could set up a <code>FeaturedItem</code> model, with start and end datetimes, and a generic foreign key. This allows the relationship to be with any model.</p> <p>If you heavily feature objects from particular models, look at the section on <a href="http://docs.djangoproject.com/en/dev/ref/contrib/contenttypes/#reverse-generic-relations" rel="nofollow">reverse generic relations</a>.</p> http://stackoverflow.com/questions/1627146/django-flatpage-redirects/1627683#1627683 0 Answer by Alasdair for django flatpage redirects Alasdair 2009-10-26T22:25:34Z 2009-10-26T22:25:34Z <p>One option is to modify a middleware, so that it only redirects if <code>response.status_code == 404</code>. Put the middleware just before the flatpage middleware in settings.py. This would redirect</p> <pre><code>http://example.com/flatpage/ -&gt; http://www.example.com/flatpage/ </code></pre> <p>but also</p> <pre><code>http://example.com/invalidurl/ -&gt; http://www.example.com/invalidurl/ </code></pre> <p>before returning a 404 error.</p> <p><hr /></p> <p>Another option would be to write your own flatpage middleware based on the official one. You can see the code for the <code>FlatpageFallbackMiddleware</code> class on the <a href="http://code.djangoproject.com/browser/django/trunk/django/contrib/flatpages/middleware.py" rel="nofollow">django website</a>. </p> <p>In the try, except block, check to see if a flatpage exists. Then redirect if appropriate. If you don't redirect, return the flatpage.</p> <pre><code>... try: fp = flatpage(request, request.path_info) # Code to redirect to www goes here return fp except Http404: ... </code></pre> http://stackoverflow.com/questions/1621173/404-error-messages-in-django/1621327#1621327 3 Answer by Alasdair for 404 Error messages in django Alasdair 2009-10-25T16:31:05Z 2009-10-25T16:31:05Z <p>I don't think there's an easy way to display the "this is an error" string in your template. I think that when you raise <code>Http404</code>, the argument is there to aid debugging, rather than display messages on the live website.</p> <p>If you look at <a href="http://code.djangoproject.com/browser/django/trunk/django/views/defaults.py" rel="nofollow">the code</a> for the <code>page_not_found</code> view which is loaded when you raise <code>Http404</code>, you can see that the only variable in the context is </p> <blockquote> <p><code>request_path</code>: The path of the requested URL (e.g., '/app/pages/bad_page/')</p> </blockquote> <p>So in your custom 404.html template file, you can use <code>{{request_path}}</code> to show the requested URL, but the default error handler doesn't provide a way to access the "this is an error" string in the template.</p> <p>If you really need to add the string to the template context, rather than hardcoding it into your 404 template file, you could write a <a href="http://docs.djangoproject.com/en/dev/topics/http/views/#the-404-page-not-found-view" rel="nofollow">custom 404 handler</a>.</p> http://stackoverflow.com/questions/1612996/using-thickbox-with-imagekit/1614623#1614623 0 Answer by Alasdair for Using thickbox with imagekit Alasdair 2009-10-23T16:43:17Z 2009-10-23T16:43:17Z <p>If the static files are being served correctly, and you can access <code>/site_media/photos/photos/acura04_thumbnail_image.jpg</code> throught the browser, then it suggests that the problem isn't the code in your <code>thumbs</code> div. I don't think panchicore's suggestion is going to help.</p> <p>I've not used thickbox before, so my next question is based on the instructions on the <a href="http://jquery.com/demo/thickbox/" rel="nofollow">thickbox website</a>.</p> <p>Can you post the code you use to include the scripts and the css. It should be something like</p> <pre><code>&lt;script type="text/javascript" src="path-to-file/jquery.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="path-to-file/thickbox.js"&gt;&lt;/script&gt; &lt;link rel="stylesheet" href="path-to-file/thickbox.css" type="text/css" media="screen" /&gt; </code></pre> <p>Check that you can access those paths through the browser. You may use {{MEDIA_URL}} here, if the files are in your media folder. For example</p> <pre><code>src="{{MEDIA_URL}}js/jquery.js" </code></pre> <p>If that's not the problem, then I'm afraid I'm out of ideas.</p> http://stackoverflow.com/questions/1588155/django-object-filter-last-1000/1588255#1588255 2 Answer by Alasdair for Django Object Filter (last 1000) Alasdair 2009-10-19T11:52:52Z 2009-10-19T13:12:32Z <h2>Solution:</h2> <p>(Fourth time lucky!)</p> <pre><code>queryset = Shop.objects.filter(id=someArray[id]) limit = 1000 count = queryset.count() endoflist = queryset.order_by('timestamp')[count-limit:] </code></pre> <p><code>endoflist</code> is the queryset you want.</p> <p><hr /></p> <h2>Efficiency:</h2> <p>The following is from the django docs about the <a href="http://docs.djangoproject.com/en/dev/ref/models/querysets/#reverse" rel="nofollow">reverse()</a> queryset method.</p> <blockquote> <p>To retrieve the ''last'' five items in a queryset, you could do this:</p> <pre><code>my_queryset.reverse()[:5] </code></pre> <p>Note that this is not quite the same as slicing from the end of a sequence in Python. The above example will return the last item first, then the penultimate item and so on. If we had a Python sequence and looked at seq[-5:], we would see the fifth-last item first. Django doesn't support that mode of access (slicing from the end), because it's not possible to do it efficiently in SQL.</p> </blockquote> <p>So I'm not sure if my answer is merely inefficient, or extremely inefficient. I moved the <code>order_by</code> to the final query, but I'm not sure if this makes a difference.</p> http://stackoverflow.com/questions/1571570/can-a-dictionary-be-passed-to-django-models-on-create/1571593#1571593 8 Answer by Alasdair for Can a dictionary be passed to django models on create? Alasdair 2009-10-15T10:49:09Z 2009-10-15T21:15:16Z <p>If <code>title</code> and <code>body</code> are fields in your model, then <a href="http://docs.python.org/tutorial/controlflow.html#unpacking-argument-lists" rel="nofollow">you can deliver the keyword arguments in your dictionary using the ** operator</a>.</p> <p>Assuming your model is called <code>MyModel</code>:</p> <pre><code># create instance of model m = MyModel(**data_dict) # don't forget to save to database! m.save() </code></pre> <p>As for your second question, the dictionary has to be the final argument. Again, <code>extra</code> and <code>extra2</code> should be fields in the model.</p> <pre><code>m2 =MyModel(extra='hello', extra2='world', **data_dict) m2.save() </code></pre> http://stackoverflow.com/questions/1539697/can-i-filter-on-request-user-when-using-django-generic-views/1539731#1539731 6 Answer by Alasdair for Can I filter on request.user when using Django generic views? Alasdair 2009-10-08T18:48:13Z 2009-10-08T18:56:55Z <p>You can write a wrapper function that calls object_list with the required queryset.</p> <p>In urls.py:</p> <pre><code>url(r'^(page(?P&lt;page&gt;[0-9]+)/)?$', 'views.user_jobs', name='user_jobs') </code></pre> <p>In views.py:</p> <pre><code>from django.views.generic.list_detail import object_list def user_jobs(request, page): job_list=Job.objects.filter(user=request.user) return object_list(request, queryset=job_list, template_name='shootmpi/molecule_list.html', page=page) </code></pre> <p>There's a <a href="http://www.b-list.org/weblog/2006/nov/16/django-tips-get-most-out-generic-views/" rel="nofollow">good blog post by James Bennett</a> on using this technique.</p> http://stackoverflow.com/questions/1518832/list-foreign-keys-linking-to-a-model/1519564#1519564 2 Answer by Alasdair for List foreign keys linking to a model Alasdair 2009-10-05T11:35:30Z 2009-10-05T19:52:15Z <p>You can achieve this using inlines. </p> <p>In your case, where each <code>Model</code> has a <code>Manufacturer</code> defined by a foreign key, first create an inline class for <code>Model</code>, then add it to your <code>ManufacturerAdmin</code> class. </p> <p>The admin.py file for your application should look something like:</p> <pre><code>class ModelInline(admin.StackedInline): model = Model class ManufacturerAdmin(admin.ModelAdmin) inlines = [ ModelInline, ] admin.site.register(Manufacturer, ManufacturerAdmin) </code></pre> <p>The <a href="http://docs.djangoproject.com/en/dev/ref/contrib/admin/#inlinemodeladmin-objects" rel="nofollow">Django docs</a> contains details about possible customizations.</p> http://stackoverflow.com/questions/1518286/django-use-reverse-url-mapping-in-settings/1519675#1519675 9 Answer by Alasdair for Django - use reverse url mapping in settings Alasdair 2009-10-05T12:03:31Z 2009-10-05T12:24:38Z <p>In urls.py, import settings:</p> <pre><code>from django.conf import settings </code></pre> <p>Then add the url pattern</p> <pre><code>urlpatterns=('', ... url('^%s$' %settings.LOGIN_URL[1:], 'django.contrib.auth.views.login', name="login") ... ) </code></pre> <p>Note that you need to slice <code>LOGIN_URL</code> to remove the leading forward slash.</p> <p>In the shell:</p> <pre><code>&gt;&gt;&gt;from django.core.urlresolvers import reverse &gt;&gt;&gt;reverse('login') '/accounts/login/' </code></pre> http://stackoverflow.com/questions/1506646/match-an-alternative-url-regular-expresion-django-urls/1510285#1510285 2 Answer by Alasdair for match an alternative url - regular expresion django urls Alasdair 2009-10-02T15:32:27Z 2009-10-02T15:32:27Z <p>Try <code>r'^(?P&lt;status&gt;in|out)/$'</code></p> <p>You need to remove <code>\w+</code>, which matches one or more alphanumeric characters or underscores. The regular expression suggested in bstpierre's answer, <code>'^(?P&lt;status&gt;\w+(in|out))/$'</code> will match <code>helloin</code>, <code>good_byeout</code> and so on.</p> <p>Note that if you use the pipe character <code>|</code> in your url patterns, Django <a href="http://docs.djangoproject.com/en/dev/topics/http/urls/#reverse" rel="nofollow">cannot reverse the regular expression</a>. If you need to use the url tag in your templates, you would need to write two url patterns, one for <code>in</code> and one for <code>out</code>.</p> http://stackoverflow.com/questions/1442026/jquery-tablesorter-plugin-retain-alternative-row-colors/1490452#1490452 4 Answer by Alasdair for jquery tablesorter plugin - retain alternative row colors Alasdair 2009-09-29T03:35:39Z 2009-09-29T03:42:07Z <p>There's already a default widget <code>zebra</code>, built into the core, which applies the classes <code>odd</code> and <code>even</code> to alternate rows. It works whether or not you have added <code>class=even/odd</code> to the html file. </p> <p>It's really easy to set up. I simply followed the instructions on the <a href="http://tablesorter.com/docs/" rel="nofollow">table sorter website</a>, and then modified the document ready function to the following:</p> <pre><code>&lt;script type="text/javascript"&gt; $(document).ready(function() { $("#myTable").tablesorter({ widgets: ['zebra'] }); } ); &lt;/script&gt; </code></pre> <p>To prove that it's easy to set up, <a href="http://dl.getdropbox.com/u/1007507/table-sorter/table-sorter.html" rel="nofollow">here's what I made</a> while I was trying to answer your question. I've also zipped all the code into <a href="http://dl.getdropbox.com/u/1007507/table-sorter/table-sorter.zip" rel="nofollow">one file</a>. I used the Blue Skin theme that you can download from the <a href="http://tablesorter.com/docs/" rel="nofollow">tablesorter website</a>.</p> http://stackoverflow.com/questions/1476996/how-to-find-which-view-is-resolved-from-url-in-presence-of-decorators/1479845#1479845 1 Answer by Alasdair for How to find which view is resolved from url in presence of decorators Alasdair 2009-09-25T22:32:52Z 2009-09-25T22:32:52Z <p>This isn't my area of expertise, but it might help. </p> <p>You might be able to introspect <code>Allow</code> to find out which object it's decorating.</p> <pre><code>&gt;&gt;&gt;from django.core.urlresolvers import resolve &gt;&gt;&gt;func, args, kwargs=resolve('/edit_settings/') &gt;&gt;&gt;func Allow </code></pre> <p>You could try</p> <pre><code>&gt;&gt;&gt;func.func_name </code></pre> <p>but it might not return the view function you want.</p> <p>Here's what I found when I was experimenting with basic decorator functions:</p> <pre><code>&gt;&gt;&gt;def decorator(func): ... def wrapped(*args,**kwargs): ... return func(*args,**kwargs) ... wrapped.__doc__ = "Wrapped function: %s" %func.__name__ ... return wrapped &gt;&gt;&gt;def add(a,b): ... return(a,b) &gt;&gt;&gt;decorated_add=decorator(add) </code></pre> <p>In this case, when I tried <code>decorated_add.func_name</code> it returned <code>wrapped</code>. However, I wanted to find a way to return <code>add</code>. Because I added the doc string to <code>wrapped</code>, I could determine the original function name:</p> <pre><code>&gt;&gt;&gt;decorated_add.func_name wrapped &gt;&gt;&gt;decorated_add.__doc__ 'Wrapped function: add' </code></pre> <p>Hopefully, you can find out how to introspect <code>Allow</code> to find out the name of the view function, possibly by modifying the decorator function.</p> http://stackoverflow.com/questions/1469131/tidy-up-complex-url-dispatcher/1469245#1469245 3 Answer by Alasdair for Tidy up complex URL dispatcher Alasdair 2009-09-24T00:28:36Z 2009-09-24T01:15:35Z <p>You could replace the urlpatterns with one that catches all the urls, then move the logic to choose between <code>foo</code> and <code>bar</code> urls to the view.</p> <pre><code>urlpatterns = patterns('project.views', (r'^(?P&lt;letter&gt;[a-z])/$', 'foobar'), ) </code></pre> <p>Then write a function <code>foobar</code> in <code>views.py</code></p> <pre><code>def foobar(request, letter): foo_urls = ['a', 'b', 'c'] #... bar_urls = ['x', 'y', 'z'] #... if slug in foo_urls: return foo(request) if slug in bar_urls: return bar(request) else: #oh dear, you've caught a #url that isn't foo or bar #return 404? </code></pre> <p>As an alternative, you might want to explore the django <a href="http://docs.djangoproject.com/en/dev/ref/contrib/redirects/" rel="nofollow">redirects app</a>, redesign the url structure, then set up redirects for the old urls.</p> http://stackoverflow.com/questions/1463153/django-using-a-common-header-with-some-dynamic-elements/1463395#1463395 5 Answer by Alasdair for django - using a common header with some dynamic elements. Alasdair 2009-09-23T00:47:22Z 2009-09-23T01:55:34Z <p>I'm assuming each tab is a list item in your template <code>base.html</code>.</p> <pre><code>&lt;ul&gt; &lt;li&gt;Tab 1&lt;/li&gt; &lt;li&gt;Tab 2&lt;/li&gt; ... &lt;/ul&gt; </code></pre> <p>Add an extra block to each <code>li</code>.</p> <pre><code>&lt;ul&gt; &lt;li class="{% block class_tab1 %}inactive{% endblock %}"&gt;Tab 1&lt;/li&gt; &lt;li class="{% block class_tab2 %}inactive{% endblock %}"&gt;Tab 2&lt;/li&gt; &lt;li class="{% block class_tab3 %}inactive{% endblock %}"&gt;Tab 3&lt;/li&gt; ... &lt;/ul&gt; </code></pre> <p>Then in your template if tab 1 is to be selected:</p> <pre><code>{% extends "base.html" %} {% block class_tab1 %}active{% endblock %} ... </code></pre> <p>So the html rendered for Tab 1 is:</p> <pre><code>&lt;ul&gt; &lt;li class="active"&gt;Tab 1&lt;/li&gt; &lt;li class="inactive"&gt;Tab 2&lt;/li&gt; &lt;li class="inactive"&gt;Tab 3&lt;/li&gt; ... &lt;/ul&gt; </code></pre> <p>and you can write CSS to target the <code>li .active</code> as you wish.</p> http://stackoverflow.com/questions/1412417/do-i-need-to-escape-characters-when-sending-emails 2 Do I need to escape characters when sending emails? Alasdair 2009-09-11T18:01:49Z 2009-09-11T18:21:59Z <p>I'm using <a href="http://bitbucket.org/ubernostrum/django-contact-form/overview/" rel="nofollow">Django Contact Form</a> on a website to allow visitors to send emails.</p> <p>Currently, it's escaping characters, so single and double quotation marks are converted to <code>&amp;#39;</code> and <code>&amp;quot;</code> respectively. The emails would be more readable if quotation marks were displayed as <code>'</code> and <code>"</code>. </p> <p>I understand why I should never put unescaped input from visitors into my webpages, because of the risk of xss. Is there the same risk with emails, or is it ok to send the visitor's unescaped input?</p> http://stackoverflow.com/questions/1380603/displaying-preview-panel-automatically-in-markitup-editor/1383856#1383856 0 Answer by Alasdair for Displaying preview panel automatically in markitup! editor Alasdair 2009-09-05T17:38:27Z 2009-09-05T17:38:27Z <p><a href="http://stackoverflow.com/questions/1380603/displaying-preview-panel-automatically-in-markitup-editor/1380922#1380922">Mark's answer</a> worked. For the sake of completeness, here's where I added his code:</p> <pre><code>&lt;script type="text/javascript" &gt; $(document).ready(function() { $('#markdown').markItUp(myMarkdownSettings); $('a[title="Preview"]').trigger('mouseup'); }); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1790176/how-do-i-make-djangos-markdown-filter-transform-a-carriage-return-to-br/1793709#1793709 Comment by Alasdair on How do I make django's markdown filter transform a carriage return to <br />? Alasdair 2009-11-24T23:47:09Z 2009-11-24T23:47:09Z @vikingosegundo Good catch, now fixed. http://stackoverflow.com/questions/1745743/validating-uploaded-files-in-django/1790921#1790921 Comment by Alasdair on Validating Uploaded Files in Django Alasdair 2009-11-24T17:16:54Z 2009-11-24T17:16:54Z Thanks for your reply. I'd be interested to know how I can achieve a similar result with lighttpd. http://stackoverflow.com/questions/1745743/validating-uploaded-files-in-django/1789938#1789938 Comment by Alasdair on Validating Uploaded Files in Django Alasdair 2009-11-24T17:13:06Z 2009-11-24T17:13:06Z I'm aware of Beautiful soup, but the following answer on stack overflow suggests that it won't catch all XSS attacks - <a href="http://stackoverflow.com/questions/699468/python-html-sanitizer-scrubber-filter/812785#812785" rel="nofollow" title="python html sanitizer scrubber filter">stackoverflow.com/questions/699468/&hellip;</a> http://stackoverflow.com/questions/1745743/validating-uploaded-files-in-django/1790063#1790063 Comment by Alasdair on Validating Uploaded Files in Django Alasdair 2009-11-24T17:02:09Z 2009-11-24T17:02:09Z I know the 'trusted users' and trust them not to upload malicious content. The danger is whether I can trust them to keep their passwords from falling into the wrong hands. http://stackoverflow.com/questions/1775459/can-this-be-made-more-pythonic/1775485#1775485 Comment by Alasdair on Can this be made more pythonic? Alasdair 2009-11-21T19:38:14Z 2009-11-21T19:38:14Z The <code>all</code> statement is inefficient - you only need to check for <code>div&lt;=sqrt(n)</code> http://stackoverflow.com/questions/1770137/django-questions-setting-the-port-number-and-the-using-an-existing-database Comment by Alasdair on Django questions: setting the port number and the using an existing database Alasdair 2009-11-21T03:32:38Z 2009-11-21T03:32:38Z Related question for Django books: <a href="http://stackoverflow.com/questions/1230089/two-parter-django-book-recommendation-django-real-world-advice" rel="nofollow" title="two parter django book recommendation django real world advice">stackoverflow.com/questions/1230089/&hellip;</a> http://stackoverflow.com/questions/1767513/read-first-n-lines-of-a-file-in-python/1767589#1767589 Comment by Alasdair on Read first N lines of a file in python Alasdair 2009-11-20T01:21:07Z 2009-11-20T01:21:07Z The with statement works on Python 2.6, and requires an extra import statement on 2.5. For 2.4 or earlier, you'd need to rewrite the code with a try...except block. Stylistically, I prefer the first option, although as mentioned the second is more robust for short files. http://stackoverflow.com/questions/1745743/validating-uploaded-files-in-django/1745840#1745840 Comment by Alasdair on Validating Uploaded Files in Django Alasdair 2009-11-17T00:57:51Z 2009-11-17T00:57:51Z Thanks for your reply. I'm using Django, so preferably I want Python equivalents of Fileinfo and ImageMagick. Good advice about storing content in a private directory until I'm satisfied it's safe. http://stackoverflow.com/questions/1745851/customize-the-html-output-of-djangos-form-validation Comment by Alasdair on Customize the html output of Django's form validation Alasdair 2009-11-17T00:48:40Z 2009-11-17T00:48:40Z Note that the unordered list has class <code>errorlist</code>, so you can use CSS to style the list as you wish. http://stackoverflow.com/questions/1712245/django-admin-redirects-not-working Comment by Alasdair on Django Admin redirects not working ... Alasdair 2009-11-11T01:40:22Z 2009-11-11T01:40:22Z Sorry, I don't know what's going on. Could you post your <code>get&#95;absolute&#95;url</code> method for the object that's not working? http://stackoverflow.com/questions/1712245/django-admin-redirects-not-working Comment by Alasdair on Django Admin redirects not working ... Alasdair 2009-11-11T00:40:12Z 2009-11-11T00:40:12Z What are your settings in the <code>sites</code> application in the django admin? http://stackoverflow.com/questions/1645962/django-year-month-based-posts-archive/1646414#1646414 Comment by Alasdair on Django Year/Month based posts archive Alasdair 2009-10-30T00:47:05Z 2009-10-30T00:47:05Z I'm glad we finally go it working! I might clean up the code and turn it into a template tag sometime. http://stackoverflow.com/questions/1645962/django-year-month-based-posts-archive/1646414#1646414 Comment by Alasdair on Django Year/Month based posts archive Alasdair 2009-10-29T23:47:29Z 2009-10-29T23:47:29Z I've fixed a couple of bugs try it now. http://stackoverflow.com/questions/1645962/django-year-month-based-posts-archive/1646414#1646414 Comment by Alasdair on Django Year/Month based posts archive Alasdair 2009-10-29T22:55:21Z 2009-10-29T22:55:21Z I've added a hacky way to add the months in Romanian, but I recommend you check out the internationalization features of Django first. http://stackoverflow.com/questions/1639866/how-do-i-customize-djangos-flatpage-to-display-a-new-field-on-the-change-list-pa Comment by Alasdair on How do I customize Django's Flatpage to display a new field on the change list page of the admin? Alasdair 2009-10-29T18:19:58Z 2009-10-29T18:19:58Z @Carl If I go to an individual flatpage, eg <code>admin/flatpages/flatpage/1</code> I can see the sites, but Thierry wanted to add a column listing sites to the flatpage change list view <code>admin/flatpages/flatpage/</code>. Unless I'm mistaken, the only columns by default are <code>title</code> and <code>url</code>.