src/cm/views/timezone.py
author Simon Descarpentries <sid1@sopinspace.com>
Fri, 05 Aug 2011 10:52:08 +0200
changeset 370 93c6ef9d7edf
parent 313 dcbb54cbfd06
permissions -rw-r--r--
Revision of spanish translation. No more fuzzy strings (-63). No more empty translations (-91). Fuzzy strings are automatically added when source string change in code. Fuzzy strings must be regularly reviewed.

from django import forms
from django.core.urlresolvers import reverse
from django.forms import ModelForm
from django.http import HttpResponse, HttpResponseRedirect, Http404
from django.shortcuts import render_to_response
from django.template import RequestContext
from django.utils.translation import ugettext as _, ugettext_lazy
from cm.models import Text, TextVersion, Attachment, Comment
from cm.cm_settings import DEFAULT_TIME_ZONE
import mimetypes
import simplejson
from cm.utils.timezone import tz_convert

def timezone_set(request):
    if request.method == 'POST':
        #if request.user.is_authenticated():
        try:
            tz = request.POST.get('tz', DEFAULT_TIME_ZONE)
            request.session['tz'] = tz
        except IOError:
            # silently swallow IOError
            pass
    
    return HttpResponse('')