app/soc/views/models/user_self.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sun, 01 Feb 2009 22:35:35 +0000
changeset 1164 d0e14654431a
parent 1157 76e2ed09661c
child 1168 cb282e6baa1c
permissions -rw-r--r--
User profile now shows the time on which you signed the ToS. Note that this solution is temporary and a hidden_field_as_table_row will be made by Pawel soon. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
460
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     1
#!/usr/bin/python2.5
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     2
#
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     3
# Copyright 2008 the Melange authors.
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     4
#
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     5
# Licensed under the Apache License, Version 2.0 (the "License");
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     6
# you may not use this file except in compliance with the License.
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     7
# You may obtain a copy of the License at
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     8
#
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
     9
#   http://www.apache.org/licenses/LICENSE-2.0
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    10
#
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    11
# Unless required by applicable law or agreed to in writing, software
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    12
# distributed under the License is distributed on an "AS IS" BASIS,
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    13
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    14
# See the License for the specific language governing permissions and
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    15
# limitations under the License.
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    16
590
37735d97b541 Created a seperate module for editSelf things
Sverre Rabbelier <srabbelier@gmail.com>
parents: 587
diff changeset
    17
"""Views for the User's own profiles.
460
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    18
"""
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    19
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    20
__authors__ = [
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    21
    '"Sverre Rabbelier" <sverre@rabbelier.nl>',
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
    22
    '"Lennard de Rijk" <ljvderijk@gmail.com>',
470
7ba510d3fad3 In soc.views.models.user module fix too long line. Delete unused email variable, add missing doc and rename self method and global variable to editSelf and edit_self so it's not confused with "self" used in classes and there is no outerscope variable name overwriting anymore.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 460
diff changeset
    23
    '"Pawel Solyga" <pawel.solyga@gmail.com>',
460
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    24
  ]
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    25
499
d22e4fe8e64b Fix missing dots in doc strings and some other doc string corrections.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 495
diff changeset
    26
1076
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
    27
import datetime
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
    28
460
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    29
from google.appengine.api import users
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    30
1164
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
    31
from django import forms
630
0ac985fd8efa Add missing import, remove unused import and add missing parameters to methods in soc.views.models.user_self module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 612
diff changeset
    32
from django import http
826
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
    33
from django.utils.encoding import force_unicode
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
    34
from django.utils.safestring import mark_safe
970
8b5611d5b053 Use ugettext instead of ugettext_lazy
Sverre Rabbelier <srabbelier@gmail.com>
parents: 890
diff changeset
    35
from django.utils.translation import ugettext
460
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    36
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
    37
from soc.logic import cleaning
460
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    38
from soc.logic import dicts
826
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
    39
from soc.logic import models as model_logic
860
cfb57fe35d3c Add a clean_agrees_to_tos() validator that requires "Yes" if ToS exists.
Todd Larsen <tlarsen@google.com>
parents: 858
diff changeset
    40
from soc.logic.models.user import logic as user_logic
460
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    41
from soc.views import helper
515
fa235f6759f3 Moved the last remnant of soc.views.user.profile to soc.views.models
Sverre Rabbelier <srabbelier@gmail.com>
parents: 514
diff changeset
    42
from soc.views.helper import access
876
0c1329d4b514 Make use of the new decorators in all applicable views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 860
diff changeset
    43
from soc.views.helper import decorators
1164
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
    44
from soc.views.helper import dynaform
1120
2b5c976e7edd Add an 'unread' style and add 'new document' link for user
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1079
diff changeset
    45
from soc.views.helper import redirects
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
    46
from soc.views.helper import widgets
460
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    47
from soc.views.models import base
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
    48
from soc.views.models import user as user_view
515
fa235f6759f3 Moved the last remnant of soc.views.user.profile to soc.views.models
Sverre Rabbelier <srabbelier@gmail.com>
parents: 514
diff changeset
    49
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
    50
import soc.models.user
860
cfb57fe35d3c Add a clean_agrees_to_tos() validator that requires "Yes" if ToS exists.
Todd Larsen <tlarsen@google.com>
parents: 858
diff changeset
    51
515
fa235f6759f3 Moved the last remnant of soc.views.user.profile to soc.views.models
Sverre Rabbelier <srabbelier@gmail.com>
parents: 514
diff changeset
    52
460
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    53
class View(base.View):
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
    54
  """Views for User own profiles.
460
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    55
  """
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    56
656
a76f1b443ea4 Cleanups in the views module
Sverre Rabbelier <srabbelier@gmail.com>
parents: 650
diff changeset
    57
  def __init__(self, params=None):
460
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    58
    """Defines the fields and methods required for the base View class
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    59
    to provide the user with list, public, create, edit and delete views.
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    60
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    61
    Params:
656
a76f1b443ea4 Cleanups in the views module
Sverre Rabbelier <srabbelier@gmail.com>
parents: 650
diff changeset
    62
      params: a dict with params for this View
460
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    63
    """
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    64
1007
3b66772d21a5 Major refactor of the access module
Sverre Rabbelier <srabbelier@gmail.com>
parents: 973
diff changeset
    65
    rights = access.Checker(params)
3b66772d21a5 Major refactor of the access module
Sverre Rabbelier <srabbelier@gmail.com>
parents: 973
diff changeset
    66
    rights['unspecified'] = ['deny']
3b66772d21a5 Major refactor of the access module
Sverre Rabbelier <srabbelier@gmail.com>
parents: 973
diff changeset
    67
    rights['any_access'] = ['allow']
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
    68
    rights['create_profile'] = ['checkIsUnusedAccount']
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
    69
    rights['edit_profile'] = ['checkHasUserEntity']
1012
73f0b61f2d9d Fold checkAgreesToSiteToS into checkIsUser
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1007
diff changeset
    70
    rights['roles'] = ['checkIsUser']
1007
3b66772d21a5 Major refactor of the access module
Sverre Rabbelier <srabbelier@gmail.com>
parents: 973
diff changeset
    71
    rights['signIn'] = ['checkNotLoggedIn']
1012
73f0b61f2d9d Fold checkAgreesToSiteToS into checkIsUser
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1007
diff changeset
    72
    rights['notification'] = ['checkIsUser']
587
7504504209a3 Fixed some access related bugs
Sverre Rabbelier <srabbelier@gmail.com>
parents: 586
diff changeset
    73
656
a76f1b443ea4 Cleanups in the views module
Sverre Rabbelier <srabbelier@gmail.com>
parents: 650
diff changeset
    74
    new_params = {}
a76f1b443ea4 Cleanups in the views module
Sverre Rabbelier <srabbelier@gmail.com>
parents: 650
diff changeset
    75
    new_params['rights'] = rights
860
cfb57fe35d3c Add a clean_agrees_to_tos() validator that requires "Yes" if ToS exists.
Todd Larsen <tlarsen@google.com>
parents: 858
diff changeset
    76
    new_params['logic'] = user_logic
460
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
    77
656
a76f1b443ea4 Cleanups in the views module
Sverre Rabbelier <srabbelier@gmail.com>
parents: 650
diff changeset
    78
    new_params['name'] = "User"
799
30a912906a57 Construct names automatically from base name.
Sverre Rabbelier <srabbelier@gmail.com>
parents: 787
diff changeset
    79
    new_params['module_name'] = "user_self"
656
a76f1b443ea4 Cleanups in the views module
Sverre Rabbelier <srabbelier@gmail.com>
parents: 650
diff changeset
    80
    new_params['url_name'] = "user"
799
30a912906a57 Construct names automatically from base name.
Sverre Rabbelier <srabbelier@gmail.com>
parents: 787
diff changeset
    81
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
    82
    new_params['create_template'] = 'soc/user/edit_profile.html'
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
    83
    new_params['edit_template'] = 'soc/user/edit_profile.html'
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
    84
    new_params['save_message'] = [ugettext('Profile saved.')]
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
    85
    new_params['edit_redirect'] = '/%(url_name)s/edit_profile'
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
    86
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
    87
    # set the specific fields for the users profile page
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
    88
    new_params['extra_dynaexclude'] = ['former_accounts', 
1164
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
    89
        'account', 'is_developer', 'status', 'agreed_to_tos_on']
1076
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
    90
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
    91
    new_params['create_extra_dynafields'] = {
1144
f89bbc9b20a6 Rename 'Create a new document' links to 'Create a New Document', also rename 'Create a new Program' to 'Create a New Program' in soc.views.models modules.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 1120
diff changeset
    92
        'clean_agreed_to_tos': cleaning.clean_agrees_to_tos('agreed_to_tos'),
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
    93
        'clean_link_id': cleaning.clean_user_not_exist('link_id'),}
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
    94
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
    95
    new_params['edit_extra_dynafields'] = {
1164
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
    96
        'clean_link_id': cleaning.clean_link_id('link_id'),
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
    97
        }
876
0c1329d4b514 Make use of the new decorators in all applicable views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 860
diff changeset
    98
696
0d8515fb5314 Make use of the 'sidebar' param for user_self
Sverre Rabbelier <srabbelier@gmail.com>
parents: 662
diff changeset
    99
    new_params['sidebar_heading'] = 'User (self)'
0d8515fb5314 Make use of the 'sidebar' param for user_self
Sverre Rabbelier <srabbelier@gmail.com>
parents: 662
diff changeset
   100
    new_params['sidebar'] = [
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
   101
        (users.create_login_url("/"), 'Sign In', 'signIn'),
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
   102
        ('/' + new_params['url_name'] + '/create_profile', 'Create Profile', 'create_profile'),
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
   103
        ('/' + new_params['url_name'] + '/edit_profile', 'Edit Profile', 'edit_profile'),
696
0d8515fb5314 Make use of the 'sidebar' param for user_self
Sverre Rabbelier <srabbelier@gmail.com>
parents: 662
diff changeset
   104
        ('/' + new_params['url_name'] + '/roles', 'Roles', 'roles'),
0d8515fb5314 Make use of the 'sidebar' param for user_self
Sverre Rabbelier <srabbelier@gmail.com>
parents: 662
diff changeset
   105
        ]
542
7cc99461b64d Remove redundant dicts for URL patterns and sidebar menu text, and use the
Todd Larsen <tlarsen@google.com>
parents: 531
diff changeset
   106
660
5a381b290691 Introduced django_extra_patterns
Sverre Rabbelier <srabbelier@gmail.com>
parents: 656
diff changeset
   107
    patterns = []
5a381b290691 Introduced django_extra_patterns
Sverre Rabbelier <srabbelier@gmail.com>
parents: 656
diff changeset
   108
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
   109
    page_name = ugettext("Create your profile")
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
   110
    patterns += [(r'^%(url_name)s/(?P<access_type>create_profile)$',
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
   111
                  'soc.views.models.%(module_name)s.create', page_name)]
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
   112
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
   113
    page_name = ugettext("Edit your profile")
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
   114
    patterns += [(r'^%(url_name)s/(?P<access_type>edit_profile)$',
660
5a381b290691 Introduced django_extra_patterns
Sverre Rabbelier <srabbelier@gmail.com>
parents: 656
diff changeset
   115
                  'soc.views.models.%(module_name)s.edit', page_name)]
5a381b290691 Introduced django_extra_patterns
Sverre Rabbelier <srabbelier@gmail.com>
parents: 656
diff changeset
   116
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
   117
    page_name = ugettext("List of your roles")
710
edb5dbb1dea7 Add explicit access_types from the url
Sverre Rabbelier <srabbelier@gmail.com>
parents: 696
diff changeset
   118
    patterns += [(r'^%(url_name)s/(?P<access_type>roles)$',
660
5a381b290691 Introduced django_extra_patterns
Sverre Rabbelier <srabbelier@gmail.com>
parents: 656
diff changeset
   119
                   'soc.views.models.request.list_self', page_name)]
726
ba3d399ec9be Added Notifications.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 710
diff changeset
   120
    
660
5a381b290691 Introduced django_extra_patterns
Sverre Rabbelier <srabbelier@gmail.com>
parents: 656
diff changeset
   121
    new_params['django_patterns_defaults'] = patterns
726
ba3d399ec9be Added Notifications.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 710
diff changeset
   122
    
656
a76f1b443ea4 Cleanups in the views module
Sverre Rabbelier <srabbelier@gmail.com>
parents: 650
diff changeset
   123
    params = dicts.merge(params, new_params)
460
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
   124
656
a76f1b443ea4 Cleanups in the views module
Sverre Rabbelier <srabbelier@gmail.com>
parents: 650
diff changeset
   125
    super(View, self).__init__(params=params)
460
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
   126
1164
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   127
    # create and store the special form when editing your profile after signing the ToS
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   128
    updated_fields = {
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   129
        'agreed_to_tos_on': forms.DateTimeField(
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   130
          widget=widgets.ReadOnlyInput(attrs={'disabled':'true'}),
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   131
          required=False),
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   132
        'clean_agreed_to_tos' : lambda x: True
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   133
          }
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   134
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   135
    signed_tos_edit_form = dynaform.extendDynaForm(
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   136
        dynaform = self._params['edit_form'],
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   137
        dynafields = updated_fields)
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   138
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   139
    params['signed_tos_edit_form'] = signed_tos_edit_form
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   140
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
   141
876
0c1329d4b514 Make use of the new decorators in all applicable views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 860
diff changeset
   142
  @decorators.merge_params
0c1329d4b514 Make use of the new decorators in all applicable views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 860
diff changeset
   143
  @decorators.check_access
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
   144
  def editProfile(self, request, access_type,
710
edb5dbb1dea7 Add explicit access_types from the url
Sverre Rabbelier <srabbelier@gmail.com>
parents: 696
diff changeset
   145
           page_name=None, params=None, seed=None, **kwargs):
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
   146
    """Displays User profile edit page for the current user.
470
7ba510d3fad3 In soc.views.models.user module fix too long line. Delete unused email variable, add missing doc and rename self method and global variable to editSelf and edit_self so it's not confused with "self" used in classes and there is no outerscope variable name overwriting anymore.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 460
diff changeset
   147
7ba510d3fad3 In soc.views.models.user module fix too long line. Delete unused email variable, add missing doc and rename self method and global variable to editSelf and edit_self so it's not confused with "self" used in classes and there is no outerscope variable name overwriting anymore.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 460
diff changeset
   148
    Args:
7ba510d3fad3 In soc.views.models.user module fix too long line. Delete unused email variable, add missing doc and rename self method and global variable to editSelf and edit_self so it's not confused with "self" used in classes and there is no outerscope variable name overwriting anymore.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 460
diff changeset
   149
      request: the standard Django HTTP request object
500
44ea4620c5c0 Replace old page parameter doc string description with new one for page_name.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 499
diff changeset
   150
      page_name: the page name displayed in templates as page and header title
470
7ba510d3fad3 In soc.views.models.user module fix too long line. Delete unused email variable, add missing doc and rename self method and global variable to editSelf and edit_self so it's not confused with "self" used in classes and there is no outerscope variable name overwriting anymore.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 460
diff changeset
   151
      params: a dict with params for this View
7ba510d3fad3 In soc.views.models.user module fix too long line. Delete unused email variable, add missing doc and rename self method and global variable to editSelf and edit_self so it's not confused with "self" used in classes and there is no outerscope variable name overwriting anymore.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 460
diff changeset
   152
      kwargs: The Key Fields for the specified entity
460
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
   153
    """
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
   154
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
   155
    # set the link_id to the current user's link_id
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
   156
    user_entity = user_logic.getForCurrentAccount()
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
   157
    link_id = user_entity.link_id
515
fa235f6759f3 Moved the last remnant of soc.views.user.profile to soc.views.models
Sverre Rabbelier <srabbelier@gmail.com>
parents: 514
diff changeset
   158
1164
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   159
    if user_entity.agreed_to_tos:
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   160
      # use the special form
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   161
      params['edit_form'] = params['signed_tos_edit_form']
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   162
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
   163
    return self.edit(request, access_type,
1164
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   164
         page_name=page_name, params=params, seed=seed, link_id=link_id, **kwargs)
460
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
   165
515
fa235f6759f3 Moved the last remnant of soc.views.user.profile to soc.views.models
Sverre Rabbelier <srabbelier@gmail.com>
parents: 514
diff changeset
   166
1076
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   167
  def editGet(self, request, entity, context, seed, params=None):
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   168
    """Overwrite so we can add the contents of the ToS.
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   169
    For params see base.View.editGet().
479
50bab5e71a66 Make sure the user edit form has the complete mail adress in the user account field when opened. Replace confusing id field in form with email field. Editing the email adress of an existing user will still result in an error but that should be fixed soon.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 473
diff changeset
   170
    """
662
0e89b027b140 Make use of the new generic key_name by lookup up scope_path
Sverre Rabbelier <srabbelier@gmail.com>
parents: 660
diff changeset
   171
1076
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   172
    s_logic = model_logic.site.logic
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   173
    site_tos = s_logic.getToS(s_logic.getSingleton())
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   174
    if site_tos:
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   175
      context['tos_contents'] = site_tos.content
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   176
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   177
    return super(View, self).editGet(request, entity, context, seed, params=params)
460
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
   178
1164
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   179
  def _editGet(self, request, entity, form):
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   180
    """Sets the content of the agreed_to_tos_on field.
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   181
    For params see base.View._editGet().
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   182
    """
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   183
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   184
    if entity.agreed_to_tos:
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   185
      form.fields['agreed_to_tos_on'].initial = entity.agreed_to_tos_on
d0e14654431a User profile now shows the time on which you signed the ToS.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1157
diff changeset
   186
1076
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   187
  def editPost(self, request, entity, context, params=None):
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   188
    """Overwrite so we can add the contents of the ToS.
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   189
    For params see base.View.editPost().
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   190
    """
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   191
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   192
    s_logic = model_logic.site.logic
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   193
    site_tos = s_logic.getToS(s_logic.getSingleton())
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   194
    if site_tos:
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   195
      context['tos_contents'] = site_tos.content
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   196
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   197
    return super(View, self).editPost(request, entity, context, params=params)
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   198
662
0e89b027b140 Make use of the new generic key_name by lookup up scope_path
Sverre Rabbelier <srabbelier@gmail.com>
parents: 660
diff changeset
   199
460
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
   200
  def _editPost(self, request, entity, fields):
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
   201
    """See base.View._editPost().
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
   202
    """
662
0e89b027b140 Make use of the new generic key_name by lookup up scope_path
Sverre Rabbelier <srabbelier@gmail.com>
parents: 660
diff changeset
   203
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
   204
    # fill in the account field with the current User
1047
26fade94886b Changed the Terms Of Service boolean so that it is None as long as the user owning the account has not Agreed to it.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1043
diff changeset
   205
    fields['account'] = users.User()
26fade94886b Changed the Terms Of Service boolean so that it is None as long as the user owning the account has not Agreed to it.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1043
diff changeset
   206
26fade94886b Changed the Terms Of Service boolean so that it is None as long as the user owning the account has not Agreed to it.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1043
diff changeset
   207
    # special actions if there is no ToS present
26fade94886b Changed the Terms Of Service boolean so that it is None as long as the user owning the account has not Agreed to it.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1043
diff changeset
   208
    s_logic = model_logic.site.logic
26fade94886b Changed the Terms Of Service boolean so that it is None as long as the user owning the account has not Agreed to it.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1043
diff changeset
   209
    site_tos = s_logic.getToS(s_logic.getSingleton())
26fade94886b Changed the Terms Of Service boolean so that it is None as long as the user owning the account has not Agreed to it.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1043
diff changeset
   210
    if not site_tos:
26fade94886b Changed the Terms Of Service boolean so that it is None as long as the user owning the account has not Agreed to it.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1043
diff changeset
   211
      # there is no Terms of Service set
26fade94886b Changed the Terms Of Service boolean so that it is None as long as the user owning the account has not Agreed to it.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1043
diff changeset
   212
      if not entity:
26fade94886b Changed the Terms Of Service boolean so that it is None as long as the user owning the account has not Agreed to it.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1043
diff changeset
   213
        # we are a new user so set the agrees_to_tos field to None
1076
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   214
        fields['agreed_to_tos'] = None
1047
26fade94886b Changed the Terms Of Service boolean so that it is None as long as the user owning the account has not Agreed to it.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1043
diff changeset
   215
      else:
1076
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   216
        # editing an existing user so no value changes allowed
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   217
        fields['agreed_to_tos'] = entity.agreed_to_tos
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   218
    else:
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   219
      if not entity or not entity.agreed_to_tos:
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   220
        # set the time of agreement
063194eaf87b Added agreed_to_tos_on field in user and role model.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1047
diff changeset
   221
        fields['agreed_to_tos_on'] = datetime.datetime.now()
460
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
   222
662
0e89b027b140 Make use of the new generic key_name by lookup up scope_path
Sverre Rabbelier <srabbelier@gmail.com>
parents: 660
diff changeset
   223
    super(View, self)._editPost(request, entity, fields)
0e89b027b140 Make use of the new generic key_name by lookup up scope_path
Sverre Rabbelier <srabbelier@gmail.com>
parents: 660
diff changeset
   224
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
   225
1017
6ad4fdb48840 Cache access checks and disable sidebar caching
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1012
diff changeset
   226
  def getSidebarMenus(self, id, user, params=None):
837
bc1c951bf3a0 Add missing blank line in soc.views.helper.params module. Fix docstring typo in soc.views.models.role module. Add missing dots at the end of sentences in soc.logic.cleaning and soc.view.models.user_self modules.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 826
diff changeset
   227
    """See base.View.getSidebarMenus().
826
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
   228
    """
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
   229
970
8b5611d5b053 Use ugettext instead of ugettext_lazy
Sverre Rabbelier <srabbelier@gmail.com>
parents: 890
diff changeset
   230
    link_title = ugettext('Notifications')
826
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
   231
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
   232
    filter = {
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
   233
        'scope': user,
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
   234
        'unread': True,
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
   235
        }
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
   236
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
   237
    notifications = model_logic.notification.logic.getForFields(filter)
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
   238
    count = len(list(notifications))
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
   239
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
   240
    if count > 0:
1120
2b5c976e7edd Add an 'unread' style and add 'new document' link for user
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1079
diff changeset
   241
      link_title = '<span class="unread">%s (%d)</span>' % (force_unicode(link_title), count)
826
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
   242
      link_title = mark_safe(link_title)
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
   243
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
   244
    items = [('/' + 'notification/list', link_title, 'notification')]
1120
2b5c976e7edd Add an 'unread' style and add 'new document' link for user
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1079
diff changeset
   245
    if user:
2b5c976e7edd Add an 'unread' style and add 'new document' link for user
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1079
diff changeset
   246
      items += [(redirects.getCreateDocumentRedirect(user, 'user'),
2b5c976e7edd Add an 'unread' style and add 'new document' link for user
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1079
diff changeset
   247
          "Create a New Document", 'any_access')]
826
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
   248
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
   249
    new_params = {}
840
d3f9fff0860b When constructing the sidebar don't overide 'sidebar'
Sverre Rabbelier <srabbelier@gmail.com>
parents: 837
diff changeset
   250
    new_params['sidebar_additional'] = items
826
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
   251
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
   252
    params = dicts.merge(params, new_params)
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
   253
1017
6ad4fdb48840 Cache access checks and disable sidebar caching
Sverre Rabbelier <srabbelier@gmail.com>
parents: 1012
diff changeset
   254
    return super(View, self).getSidebarMenus(id, user, params=params)
826
c8dbcfd38c03 Add an unread count indication next to the notification link
Sverre Rabbelier <srabbelier@gmail.com>
parents: 825
diff changeset
   255
460
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
   256
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
   257
view = View()
3a508b1ebaac Added a generic user page
Sverre Rabbelier <srabbelier@gmail.com>
parents:
diff changeset
   258
1043
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
   259
create = view.create
5e15994b2033 Redone the user's profile page.
Lennard de Rijk <ljvderijk@gmail.com>
parents: 1017
diff changeset
   260
edit = view.editProfile
858
e79e7a22326f Add an export() view, and implement it as text/text for Document.
Todd Larsen <tlarsen@google.com>
parents: 857
diff changeset
   261
export = view.export
e79e7a22326f Add an export() view, and implement it as text/text for Document.
Todd Larsen <tlarsen@google.com>
parents: 857
diff changeset
   262