I18n URLs via Middleware

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
### Middleware
from django.conf import settings
from django.utils import translation
from django.http import Http404

class I18nUrlsMiddleware(object):
	"""
	This is a very simple middleware that checks if the view being requested
	is about to receive a "dj_culture" parameter. If this is the case, this 
	middleware removes this argument and uses it to initialize Django's
	i18n system with the requested culture if it is one of the supported
	cultures.
	"""
	
	def handle_culture(self,request,culture):
		translation.activate(culture)
		request.LANGUAGE_CODE = translation.get_language()
	
	def process_view(self, request, view_func, view_args, view_kwargs):
		culture = view_kwargs.get('dj_culture',None)
		if culture:
			ret = None
			if culture in settings.CULTURES:
				ret = self.handle_culture(request,culture)
			else:
				# Fallback for the lazy of us who prefer to keep things simple.
				pcult = culture.split('-')[0]
				if pcult in settings.CULTURES:
					ret = self.handle_culture(request,pcult)
				else:
					raise Http404
			# Remove the culture parameter again so that we can use all our
			# old views.
			del(view_kwargs['dj_culture'])
			return ret

### URLs
from django.conf.urls.defaults import *

urlpatterns = patterns('',
	(r'(?P<dj_culture>[\w-]+)/','views.index'),
)

More like this

  1. Ignore HTTP Accept-Language headers by fonso 6 years ago
  2. Multilingual Models by Archatas 6 years, 2 months ago
  3. Get active page's url by another language (templatetag) by muratcorlu 4 months, 2 weeks ago
  4. Per-site vary cache on language by fneumann 5 years, 7 months ago
  5. I18n Get all language models with form. Tüm diller için otomatik form by muslu 11 months ago

Comments

jefurii (on January 8, 2008):

Very useful snippet - Django's handling of i18n is great, but sometimes it's nice to be able to specify the language code in the URL.

#

(Forgotten your password?)