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' …
0
votes
Django @ Google App Engine - Site Map Framework
I'm not familiar with GAE, but I may have a solution to your problem. Check out the Sitemap Framework docs @ http …
3
votes
How do I perform query filtering in django templates
I run into this problem on a regular basis and often use the "add a method" solution. However, there are definitely cases where "add a method" or "compute it in the view" don't work (or don't work …
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 …
3
votes
How to lookup django session for a particular user?
Modifying the django_session table to add an explicit user_id can make life a lot easier. Assuming you do that (or something similar), here are four approaches to munging things to your liking: …
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 …
1
vote
Django: Arbitrary number of unnamed urls.py parameters
I agree with Adam, but I think the pattern in urls.py should be:
... r'^browse/(?P<match>.+)/$' ...
The '\w' will only match 'word' characters, but the '.' w …
4
votes
How do I use CSS in Django?
More generally stated, you're asking how to serve a static file from Django. If you are running under Apache, you should read …
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 …
0
votes
Multiple database support in django.
If you read a few of the many (many) threads on this subject in django-dev, you will see that what looks straightforward, isn't. If you pick a single use case, then it looks easy, …
0
votes
How do I list items in my Django models?
Good answer by VonC.
A quick and dirty way to look at pub_list is to stick [{{pub_list}}] in your template. I put it in square brackets in case it's empty. BTW, you may get som …
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 …
