Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
9answers
7k views

Change Django Templates Based on User-Agent

I've made a Django site, but I've drank the Koolaid and I want to make an IPhone version. After putting much thought into I've come up with two options: Make a whole other site, like i.xxxx.com. ...
18
votes
4answers
2k views

Where to put Django startup code?

I'd like to have these lines of code executed on server startup (both development and production): from django.core import management management.call_command('syncdb', interactive=False) Putting it ...
7
votes
4answers
502 views

Non-global middleware in Django

In Django there is a settings file that defines the middleware to be run on each request. This middleware setting is global. Is there a way to specify a set of middleware on a per-view basis? I ...
7
votes
3answers
542 views

Conditional Django Middleware (or how to exclude the Admin System)

I want to use some middleware I wrote across the whole of my site (large # of pages, so I chose not to use decorators as I wanted to use the code for all pages). Only issue is that I don't want to use ...
4
votes
1answer
55 views

Pythonic/djangonic way to handle user timeouts on the scale of seconds (or minutes if need be)

The closest example to my case is a Django ajax chat application. The rooms need to keep a list of active users. Aside from displaying that list of users within the chat, a given room might have a ...
3
votes
1answer
78 views

How costly is it to put a middleware in django

I have written for a very simple app of mine . To login facebook canvas users of the app To do some visitor tracking , most of the code is very simple. The app probably is not that complicated , ...
3
votes
1answer
252 views

Is changing SITE_ID dynamically in middleware considered good idea?

(this isn't duplicate of "Changing Django settings variable dynamically based on request for multiple site", as that previous question covers making much more serious reconfiguration at runtime) I ...
3
votes
2answers
327 views

Practical rules for Django MiddleWare ordering?

The official documentation is a bit messy: 'before' & 'after' are used for ordering MiddleWare in a tuple, but in some places 'before'&'after' refers to request-response phases. Also, 'should ...
3
votes
1answer
317 views

How to use multiple flatpages models in a django app?

I have multiple models that can be converted to flatpages but have to have some extra information (For example I have an about us page but I also have a blog). However I understand that there must be ...
3
votes
2answers
149 views

How Do Search Engines See A Localized Django Site?

I have a Django site that uses the localization middleware in combination with gettext and the trans/blocktrans template tags to show visitors different pages depending on the preferred language in ...
3
votes
1answer
299 views

Tons of false positives from Django's CSRF middleware?

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 ...
3
votes
2answers
160 views

Use middleware or a custom template tag for infrequently changing snippet

I've got a small snippet that I want in my sidebar. The snippet will be visible on each page, and while cheap to fetch (about 50ms on my super-slow netbook!), will change so infrequently that I'd ...
3
votes
4answers
2k views

How to adding middleware to Appengine's webapp framework?

Im using the appengine webapp framework (link). Is it possible to add Django middleware? I cant find any examples. Im currently trying to get the firepython middleware to work (link).
2
votes
2answers
44 views

Python changing modifying via imported function

I am trying to create a function, that when imported and then called, it will check and modify a tuple. I would like to be able to call this multiple times. However, I just have the function return ...
2
votes
2answers
41 views

Django middleware: Isn't a middleware module error

I am using the middleware provided in https://gist.github.com/426829 to do cross site scripting. However, when I add the middleware to MIDDLEWARE_CLASSES, I get the error: ImproperlyConfigured: ...
2
votes
1answer
297 views

Why doesn't Django's per-site cache middleware work for me?

I am using Django 1.3 beta 1 and set up memcached. I made changes to my settings.py per Django's instructions: CACHES = { 'default': { 'BACKEND': ...
2
votes
2answers
413 views

Django: creating/modifying the request object

I'm trying to build an URL-alias app which allows the user create aliases for existing url in his website. I'm trying to do this via middleware, where the request.META['PATH_INFO'] is checked against ...
2
votes
1answer
371 views

Safe to modify settings.SITE_ID from middleware in Django?

I have modified the multihost.py middleware I found at http://effbot.org/zone/django-multihost.htm to set the settings.SITE_ID dynamically, but have some concerns that I may have just left the ...
2
votes
3answers
1k views

AttributeError: 'WSGIRequest' object has no attribute 'session'

I keep getting this error at random times and whenever I touch the django.wsgi file, it gets fixed only to happen again after a few hours. I'm lost as to what to do. my middleware_classes is as ...
2
votes
1answer
429 views

Django: How to set default language in admin on login

I'm saving an user's default language in his user profile and on login I want to set the admin's default language to it. One possibility I was thinking of is using a middleware, but I think if I do ...
2
votes
2answers
188 views

How to change db in django depending on request.get_host()?

I am creating multisites platform. Anybody can make simple site, with my platform. I plan to use django multidb support. One db for one site. And i need to change db settings depending on ...
2
votes
1answer
242 views

How do I change a language of a particular page in Django website

Django internationalization allows me to set a language code either in settings file (site-wide) or on per-user / per-session basis. How can I change language for a particular page? I wrote a ...
2
votes
3answers
88 views

Django: What is the stack order in Django?

I think that is the right way to ask it. I'm wondering which parts of the code execute first, second, etc. My assumption would be, but I don't know: Request Middleware View Model Middleware ...
2
votes
3answers
5k views

Detect the language & django locale-url

I want to deploy a website in english & spanish and detect the user browser language & redirect to the correct locale site. My site is www.elmalabarista.com I install django-localeurl, but I ...
2
votes
3answers
278 views

How to restrict users voting on their own model

I am using django-voting as a voting application for two of my models. Those both models have fields "author". How can I restrict a user from voting on a model that has this particular user set as ...
1
vote
1answer
28 views

Bypass SESSION_SAVE_ON_EVERY_REQUEST for AJAX call, or better solution

I have a private site that requires login for all pages. When a user goes to edit a record, I don't want to lock the record. I want to keep the record available for others. I devised a system using ...
1
vote
2answers
127 views

Django change request.path in middleware (to authenticate by token in url)

Dear omnoscient beings at Stackoverflow, In Django 1.3 I am making a process_request middleware that gets a token from an url, logs the user in (if it's correct) and removes the token from the url. ...
1
vote
0answers
106 views

Replacing Django auth app and middleware with custom auth app and authentication middleware

After researching on ways to extend user table of auth app in django , I have decided to write my own auth app. These are the things which I need to do for replacing the contrib.auth app: Create an ...
1
vote
1answer
107 views

How to implement Https(SSL Middleware) in Django

I am a newbie in Django and web development. I want to implement Exactly this Question, but in django. I have searched many blogs and questions, nowhere was i able to find,exactly how to implement ...
1
vote
1answer
53 views

Django filter fields during exception email notifications

In our Production, we use Django's automated method to get email notifications on exceptions. This works great with one problem, the whole POST data gets emailed to all developers. Some of the POST ...
1
vote
3answers
180 views

installing snippets

How do I install snippets in django? (specifically this) I have the file /{project}/snippets/EnforceLoginMiddleware.py and I have tried any number of permutations inside MIDDLEWARE_CLASSES to load ...
1
vote
1answer
51 views

Is there something between middleware and view in Django so that I can plug my code into?

Is there something between middleware and view so that I can plug my code or do I have to subclass something from Django to provide this functionality? Let me first explain why I need this, maybe ...
1
vote
2answers
174 views

Execute code in Django after response has been sent to the client

In my Django application I want to keep track of whether a response has been sent to the client successfully. I am well aware that there is no "watertight" way in a connectionless protocol like HTTP ...
1
vote
1answer
224 views

Django: retrieve session or cookies in middleware

can i get the current session or cookie inside a middleware? I tried but I got: 'WSGIRequest' object has no attribute 'session'
1
vote
2answers
422 views

Testing django pages with middleware for multihost

Background: I'm using the middleware django-multihost (http://effbot.org/zone/django-multihost.htm) to allow my single django app to respond to different hostnames from the same project. The ...
1
vote
0answers
89 views

Excluding a Django app from being localized using a middleware

I need to localize a django project, but keep one of the applications (the blog) English only. I wrote this middleware in order to achieve this: from django.conf import settings from ...
1
vote
1answer
492 views

django middleware redirect infinite loop

I have a middleware that checks a session value and redirects depending that value. My problem is, it is creating an infinite redirect loop and I'm not sure why. So, what I want to do is check to ...
1
vote
0answers
239 views

Django - using sqlalchemy with a read-only database

I'm using Django to nicely display stats etc from an Oracle database that I only have/want read access to. Because the database has composite primary keys I'm not using Django's ORM layer and I'm ...
1
vote
2answers
342 views

Does Django message middleware not work with app engine?

I am trying to implement the message middleware in my Django App engine project but its giving the an error message like: ImproperlyConfigured: Error importing middleware mediautils.middleware: "No ...
1
vote
2answers
183 views

How do I do a Rails style before_filter with Google App Engine?

The app is setup as a basic WSGI application. I'm just trying to call a function before the requestHandler is run. I would like something very much like the way before_filter works in Rails. Thanks. ...
1
vote
3answers
998 views

Django middleware to determine user's group in a session

I have an app that uses django.contrib.auth but makes no use of Django's built-in permissions system. Instead, views have the @login_required decorator and then check which group the user belongs to, ...
1
vote
3answers
401 views

Modify address in Django middleware

I don't know if it's possible but I'd like to add few parameters at the end of the URL using middleware. Can it be done without redirect after modyfing requested URL? ie. user clicks: .../some_link ...
0
votes
1answer
40 views

Concatenate Django Settings “MIDDLEWARE_CLASSES”

I want to import the django default settings, using from django.conf import global_settings, and then add MIDDLEWARE_CLASSES to it. I like to do this with my settings so that I know what I have added ...
0
votes
0answers
22 views

Django CacheMiddleware (required for cache_page decorator)?

Is the the CacheMiddleware the only piece that needs to be installed to enable the @cache_page decorator? It seems to subclass the other two relevant caching classes. Thanks
0
votes
0answers
23 views

Django: middleware for dealing with anonymous users, any way to determine application/URL for request context?

The problem is tricking DjangoBB into believing that anonymous user has is_authenticated() == True without doing relevant hacks around forum's code; Currently investigating possibilties for doing a ...
0
votes
1answer
95 views

Django messages framework not working in template loop

I recently upgraded to Django 1.3 and I want to start using the Messages system. I have added my Middleware, Template context processors and also messages into the INSTALLED_APPS MIDDLEWARE_CLASSES ...
0
votes
2answers
41 views

Django: Form in your Site Base template

I need to create a form, not search, but a kind of profile switcher that will be present in the site base. Just wondering what's the best way of going about this? I'm not very familiar with ...
0
votes
2answers
74 views

Django Error Reporting - How to know which user triggered the error?

Is there a way I can customize Django error reporting so when it emails me it lets me know which user triggered the error? I'm in Django 1.2 if it matters. Much Thanks in advance!
0
votes
0answers
74 views

For a Django middleware class, how can process_request work just fine, but process_exception not be calls?

I've created my own middleware class in Django that was working just fine until recently. The strange thing is that process_request still gets called just fine, but even when the response is 500 - ...
0
votes
1answer
155 views

How do I test a middleware that requires sessions in Django properly?

I'm trying to figure out how to test middleware in django. The middleware I'm writing logs in a user under certain conditions (if a key sent in email is valid). So obviously I'm dependent on ...

1 2