Alasdair

1,918
Reputation
196 views

Registered User

Name Alasdair
Member for 6 months
Seen 2 hours ago
Website
Location Berlin
Age 24
Pythonista/Djangonaut.

I'm currently looking for work as a Python and/or Django developer.

I'm particularly interested in opportunities in Berlin, the UK or telecommuting. You can contact me through my website.
22m
accepted How do I make django’s markdown filter transform a carriage return to <br />?
3h
revised ‘RelatedManager’ object has no attribute…
added 2 characters in body
3h
accepted ‘RelatedManager’ object has no attribute…
4h
revised ‘RelatedManager’ object has no attribute…
added 11 characters in body
4h
answered ‘RelatedManager’ object has no attribute…
11h
comment Differentiating Permissions in the Admin Between Editing and Viewing a Pop-Up
Please post your models.
2d
accepted Pagination problem
2d
revised Pagination problem
added 763 characters in body
Nov
27
comment Pagination problem
I've updated my answer, let me know if it fixes the problem.
Nov
27
revised Pagination problem
added 285 characters in body
Nov
27
comment Pagination problem
I can't look at your code just now. If you mark the question as not answered (click on the green tick), and edit your question to explain what you've tried to do, it will probably get more attention from other people.
Nov
27
answered Pagination problem
Nov
27
accepted Django Html email adds extra characters to the email body
Nov
26
revised How do I make django’s markdown filter transform a carriage return to <br />?
added linebreaksbr filter suggestion, reformatted answer
Nov
26
revised Django Html email adds extra characters to the email body
improved answer
Nov
26
answered Django Html email adds extra characters to the email body
Nov
24
comment How do I make django’s markdown filter transform a carriage return to <br />?
@vikingosegundo Good catch, now fixed.
Nov
24
revised How do I make django’s markdown filter transform a carriage return to <br />?
fixed typo
Nov
24
answered How do I make django’s markdown filter transform a carriage return to <br />?
Nov
24
revised How do I make django’s markdown filter transform a carriage return to <br />?
edited tags
Nov
24
comment Validating Uploaded Files in Django
Thanks for your reply. I'd be interested to know how I can achieve a similar result with lighttpd.
Nov
24
comment Validating Uploaded Files in Django
I'm aware of Beautiful soup, but the following answer on stack overflow suggests that it won't catch all XSS attacks - stackoverflow.com/questions/699468/…
Nov
24
comment Validating Uploaded Files in Django
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.
Nov
22
awarded  Civic Duty
Nov
21
comment Can this be made more pythonic?
The all statement is inefficient - you only need to check for div<=sqrt(n)
Nov
21
accepted Listing blog entries by year,month
Nov
21
answered How to resize just uploaded image?
Nov
21
comment Django questions: setting the port number and the using an existing database
Related question for Django books: stackoverflow.com/questions/1230089/…
Nov
21
answered Listing blog entries by year,month
Nov
20
comment Read first N lines of a file in python
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.
Nov
17
accepted Customize the html output of Django’s form validation
Nov
17
comment Validating Uploaded Files in Django
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.
Nov
17
revised Validating Uploaded Files in Django
added python tag
Nov
17
comment Customize the html output of Django’s form validation
Note that the unordered list has class errorlist, so you can use CSS to style the list as you wish.
Nov
17
answered Customize the html output of Django’s form validation
Nov
17
asked Validating Uploaded Files in Django
Nov
13
answered Flexible pagination in Django
Nov
11
comment Django Admin redirects not working …
Sorry, I don't know what's going on. Could you post your get_absolute_url method for the object that's not working?
Nov
11
comment Django Admin redirects not working …
What are your settings in the sites application in the django admin?
Nov
4
accepted Filtering by custom date range in Django admin
Nov
3
answered Filtering by custom date range in Django admin
Nov
3
accepted “Featuring” content in a Django website
Oct
30
answered How can I send an iCalendar email attachment with Django?
Oct
30
comment Django Year/Month based posts archive
I'm glad we finally go it working! I might clean up the code and turn it into a template tag sometime.
Oct
30
accepted Django Year/Month based posts archive
Oct
30
revised Django Year/Month based posts archive
added 33 characters in body
Oct
30
revised Django Year/Month based posts archive
deleted 4 characters in body
Oct
29
comment Django Year/Month based posts archive
I've fixed a couple of bugs try it now.
Oct
29
revised Django Year/Month based posts archive
bug fix
Oct
29
comment Django Year/Month based posts archive
I've added a hacky way to add the months in Romanian, but I recommend you check out the internationalization features of Django first.