1
vote
Django UserProfile… without a password
Supply your own authentication routine, then you can check (or not check) anything you like. We do this so if they fail on normal username, we can also let them in on email/password (although that' …
4
votes
Reasons not to use django
I am a big fan of Django, but I've found that as a project grows you quickly hit the resource constraints (mostly memory usage) of the few shared-hosting packages that support Django. This is a non …
1
vote
Will Django be a good choice for a permissions based web-app?
If I read your updated requirements correctly, I don't think Django's existing auth system will be sufficient. It sounds like you need a full-on ACL system.
This subject has come up a numbe …
4
votes
User Authentication in Django
A site I did last year was concerned that usernames/passwords might be posted to a forum. I dealt with this by adding a model and a check to the login view that looked at how many unique IPs the na …
2
votes
What is the regular expression for /urlchecker/http://www.google.com
Try this instead:
(r'^urlchecker/(?P<url>.+)$', 'mysite.main.views.urlchecker'),
This differs from yours in that:
It will take anything after 'urlch …
0
votes
What is the regular expression for /urlchecker/http://www.google.com
I just learned something while grazing the Hidden Features of Python thread.
Python's re compiler has a debug mo …
1
vote
information seemingly coming out of mysqldb incorrectly, python django
A little browsing of already-asked questions would have led you to UTF-8 latin-1 conversion issues …
3
votes
How to show the visitor a moved web page AND return a 301 redirect HTTP response status code in Django?
You can't.
301 is an HTTP return code that is directly acted upon by the browser. Many sites handle these two issues by first sending the user to a redirect-er page that tells the user abou …
3
votes
Syntax error whenever I put Python code inside a Django template
Django's template language is deliberately hobbled. When used by non-programming designers, this is definitely a Good Thing, but there are times when you need to do a little programming. ( …
0
votes
Spambots are cluttering my log file [Django]
Yes, it should be a 404, not a 500. 500 indicates something is trying to deal with the URL and is failing in the process. You need to find and fix that.
We have a similar p …
3
votes
Python: Nicest way to pad zeroes to string
width = 10
x = 5
print "%0*d" % (width, x)
> 0000000005
See the print documentation for all the exciting details!
…
6
votes
How to test django caching?
We do a lot of component caching and not all of them are updated at the same time. So we set host and timestamp values in a universally included context processor. At the top of each template fragm …
2
votes
In Python, how to I iterate over a dictionary in sorted order?
A dict's keys are stored in a hashtable so that is their 'natural order', i.e. psuedo-random. Any other ordering is a concept of the consumer of the dict.
sorted() always returns a list, no …
4
votes
What are your (concrete) use-cases for metaclasses in Python?
Let's start with Tim Peter's classic quote:
Metaclasses are deeper magic than 99%
of users should ever worry about. If
you wonder whether you need them, you
don't (the …
0
votes
Django + FastCGI - randomly raising OperationalError
Smells like a possible threading problem. Django is not guaranteed thread-safe although the in-file docs seem to indicate that Django/FCGI can be run that way. Try running with prefork and …
