app/soc/logic/site/map.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sun, 02 Nov 2008 18:10:30 +0000
changeset 430 e7605c7753b1
parent 425 95058c81a065
child 445 31927f21970d
permissions -rw-r--r--
Create a Site Settings sub-menu
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
192
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     1
#!/usr/bin/python2.5
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     2
#
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     3
# Copyright 2008 the Melange authors.
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     4
#
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     5
# Licensed under the Apache License, Version 2.0 (the "License");
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     6
# you may not use this file except in compliance with the License.
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     7
# You may obtain a copy of the License at
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     8
#
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
     9
#   http://www.apache.org/licenses/LICENSE-2.0
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    10
#
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    11
# Unless required by applicable law or agreed to in writing, software
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    12
# distributed under the License is distributed on an "AS IS" BASIS,
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    13
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    14
# See the License for the specific language governing permissions and
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    15
# limitations under the License.
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    16
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    17
"""Site map information, used to generate sidebar menus, urlpatterns, etc.
192
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    18
"""
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    19
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    20
__authors__ = [
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    21
  '"Todd Larsen" <tlarsen@google.com>',
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    22
  ]
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    23
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    24
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    25
from google.appengine.api import users
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    26
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    27
from django.conf.urls import defaults
192
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    28
377
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
    29
from soc.logic import models
305
972d28056d9d Minor style and import fixes
Sverre Rabbelier <srabbelier@gmail.com>
parents: 299
diff changeset
    30
from soc.logic import path_link_name
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    31
from soc.logic.site import page
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    32
377
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
    33
import soc.logic.models.site_settings
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
    34
192
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    35
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    36
# Home Page view
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    37
home = page.Page(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    38
  page.Url(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    39
    r'^$',
377
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
    40
    'soc.views.home.public',
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
    41
    kwargs={
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
    42
      'path': models.site_settings.logic.DEF_SITE_SETTINGS_PATH,
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
    43
      'entity_type': 'SiteSettings',
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
    44
      'template': 'soc/site/home/public.html',
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
    45
    }),
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    46
  'Google Open Source Programs',
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    47
  # it should be obvious that every page comes from the home page
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    48
  in_breadcrumb=False)
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    49
425
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
    50
# User sub-menu, changes depending on if User is signed-in or not
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
    51
user_signin_sub_menu = page.NonPage(
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
    52
  'user-sign-in-sub-menu',
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
    53
  'User',
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
    54
  parent=home)
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
    55
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
    56
user_signout_sub_menu = page.NonPage(
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
    57
  'user-sign-out-sub-menu',
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
    58
  'User',
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
    59
  parent=home)
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
    60
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    61
# User authentication view placeholders
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    62
# (these are not real Django views, but need to appear in menus, etc.)
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    63
user_signin = page.Page(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    64
  page.Url(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    65
    # not a real Django URL regex, just a unique placeholder
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    66
    users.create_login_url('/'),
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    67
    # no view, since App Engine handles this page
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    68
    # (this page will not be placed in urlpatterns)
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    69
    None,
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    70
    # name is alternate string for view when it is not unique
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    71
    name='user-sign-in'),
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    72
  'User (sign in)',
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    73
  link_url=users.create_login_url('/'),
425
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
    74
  parent=user_signin_sub_menu)
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    75
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    76
user_signout = page.Page(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    77
  page.Url(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    78
    # not a real Django URL regex, just a unique placeholder
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    79
    users.create_logout_url('/'),
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    80
    # no view, since App Engine handles this page
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    81
    # (this page will not be placed in urlpatterns)
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    82
    None,
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    83
    # name is alternate string for view when it is not unique
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    84
    name='user-sign-out'),
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    85
  'User (sign out)',
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    86
  link_url=users.create_logout_url('/'),
425
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
    87
  parent=user_signout_sub_menu)
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    88
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    89
# User Profile views
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    90
user_create = page.Page(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    91
  page.Url(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    92
    r'^user/profile$',
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    93
    'soc.views.user.profile.create'),
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    94
  'User: Create a New Profile',
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    95
  short_name='Site-wide User Profile',
425
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
    96
  parent=user_signout_sub_menu)
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    97
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    98
user_edit = page.Page(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
    99
  page.Url(
305
972d28056d9d Minor style and import fixes
Sverre Rabbelier <srabbelier@gmail.com>
parents: 299
diff changeset
   100
    r'^user/profile/%s$' % path_link_name.LINKNAME_ARG_PATTERN,
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   101
    'soc.views.user.profile.edit'),
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   102
  'User: Modify Existing User Profile',
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   103
  parent=user_signout)
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   104
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   105
# Site Home Page views
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   106
site_home = page.Page(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   107
  page.Url(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   108
    r'^site/home$',
377
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
   109
    'soc.views.home.public',
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
   110
    kwargs={
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
   111
      'path': models.site_settings.logic.DEF_SITE_SETTINGS_PATH,
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
   112
      'entity_type': 'SiteSettings',
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
   113
      'template': 'soc/site/home/public.html',
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
   114
    }),
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   115
  'Google Open Source Programs',
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   116
  # it should be obvious that every page comes from the home page
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   117
  in_breadcrumb=False)
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   118
425
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
   119
site_sub_menu = page.NonPage(
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
   120
  'site-sub-menu',
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
   121
  'Site',
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
   122
  parent=home)
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
   123
430
e7605c7753b1 Create a Site Settings sub-menu
Sverre Rabbelier <srabbelier@gmail.com>
parents: 425
diff changeset
   124
site_settings_sub_menu = page.NonPage(
e7605c7753b1 Create a Site Settings sub-menu
Sverre Rabbelier <srabbelier@gmail.com>
parents: 425
diff changeset
   125
  'site-settings-sub-menu',
e7605c7753b1 Create a Site Settings sub-menu
Sverre Rabbelier <srabbelier@gmail.com>
parents: 425
diff changeset
   126
  'Site Settings',
e7605c7753b1 Create a Site Settings sub-menu
Sverre Rabbelier <srabbelier@gmail.com>
parents: 425
diff changeset
   127
  parent=site_sub_menu)
e7605c7753b1 Create a Site Settings sub-menu
Sverre Rabbelier <srabbelier@gmail.com>
parents: 425
diff changeset
   128
425
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
   129
# Site User Profile views
347
52676c696cd4 First phase of making the / (site/home) view generic enough to use it for
Todd Larsen <tlarsen@google.com>
parents: 314
diff changeset
   130
site_settings_edit = page.Page(
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   131
  page.Url(
347
52676c696cd4 First phase of making the / (site/home) view generic enough to use it for
Todd Larsen <tlarsen@google.com>
parents: 314
diff changeset
   132
    r'^site/settings/edit$',
405
f3525c1288ed Add Google Analytics support to Site Settings. The reason I created additional SettingsValidationForm is because you cannot inherit from Form that has already defined Meta class, so it's sort of workaround for that. I didn't want to have same validation functions in both Form classes.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 404
diff changeset
   133
    'soc.views.site.settings.edit',
377
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
   134
    kwargs={
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
   135
      'path': models.site_settings.logic.DEF_SITE_SETTINGS_PATH,
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
   136
      'logic': models.site_settings.logic,
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
   137
    }),
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   138
  'Site: Settings',
430
e7605c7753b1 Create a Site Settings sub-menu
Sverre Rabbelier <srabbelier@gmail.com>
parents: 425
diff changeset
   139
  short_name='Edit Site Settings',
e7605c7753b1 Create a Site Settings sub-menu
Sverre Rabbelier <srabbelier@gmail.com>
parents: 425
diff changeset
   140
  parent=site_settings_sub_menu)
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   141
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   142
# Site User Profile views
372
8595c1129c74 Formalize the concept of a NonPage that can appear in the site-map, useful for
Todd Larsen <tlarsen@google.com>
parents: 350
diff changeset
   143
site_user_sub_menu = page.NonPage(
8595c1129c74 Formalize the concept of a NonPage that can appear in the site-map, useful for
Todd Larsen <tlarsen@google.com>
parents: 350
diff changeset
   144
  'site-user-sub-menu',
8595c1129c74 Formalize the concept of a NonPage that can appear in the site-map, useful for
Todd Larsen <tlarsen@google.com>
parents: 350
diff changeset
   145
  'Site: Users Sub-Menu',
349
bb82a1a3339c A quick-and-dirty way to create non-link sub-menu dividers, plus a TODO on
Todd Larsen <tlarsen@google.com>
parents: 347
diff changeset
   146
  short_name='Site Users',
425
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
   147
  parent=site_sub_menu)
349
bb82a1a3339c A quick-and-dirty way to create non-link sub-menu dividers, plus a TODO on
Todd Larsen <tlarsen@google.com>
parents: 347
diff changeset
   148
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   149
site_user_lookup = page.Page(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   150
  page.Url(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   151
    r'^site/user/lookup$',
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   152
    'soc.views.site.user.profile.lookup'),
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   153
  'Site: Look Up an Existing User',
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   154
  short_name='Look Up Site User',
349
bb82a1a3339c A quick-and-dirty way to create non-link sub-menu dividers, plus a TODO on
Todd Larsen <tlarsen@google.com>
parents: 347
diff changeset
   155
  parent=site_user_sub_menu)
192
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   156
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   157
site_user_create = page.Page(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   158
  page.Url(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   159
    r'^site/user/profile$',
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   160
    'soc.views.site.user.profile.create'),
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   161
  'Site: Create New User Profile',
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   162
  short_name='Create Site User',
349
bb82a1a3339c A quick-and-dirty way to create non-link sub-menu dividers, plus a TODO on
Todd Larsen <tlarsen@google.com>
parents: 347
diff changeset
   163
  parent=site_user_sub_menu)
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   164
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   165
site_user_edit = page.Page(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   166
  page.Url(
305
972d28056d9d Minor style and import fixes
Sverre Rabbelier <srabbelier@gmail.com>
parents: 299
diff changeset
   167
    r'^site/user/profile/%s$' % path_link_name.LINKNAME_ARG_PATTERN,
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   168
    'soc.views.site.user.profile.edit'),
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   169
  'Site: Modify Existing User Profile',
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   170
  short_name='Modify Site User',
349
bb82a1a3339c A quick-and-dirty way to create non-link sub-menu dividers, plus a TODO on
Todd Larsen <tlarsen@google.com>
parents: 347
diff changeset
   171
  parent=site_user_sub_menu)
192
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   172
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   173
site_user_list = page.Page(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   174
  page.Url(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   175
    r'^site/user/list$',
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   176
    'soc.views.site.user.list.all'),
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   177
  'Site: List of Users',
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   178
  short_name='List Site Users',
349
bb82a1a3339c A quick-and-dirty way to create non-link sub-menu dividers, plus a TODO on
Todd Larsen <tlarsen@google.com>
parents: 347
diff changeset
   179
  parent=site_user_sub_menu)
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   180
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   181
# Document views
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   182
docs_show = page.Page(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   183
  page.Url(
305
972d28056d9d Minor style and import fixes
Sverre Rabbelier <srabbelier@gmail.com>
parents: 299
diff changeset
   184
    r'^docs/show/%s$' % path_link_name.PATH_LINKNAME_ARGS_PATTERN,
401
37d0b6c25f3e Make use of the new generic views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 392
diff changeset
   185
    'soc.views.models.docs.public'),
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   186
  'Show Document',
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   187
  parent=home)
403
d3e545a8bd26 Some more improvements to the generic view code
Sverre Rabbelier <srabbelier@gmail.com>
parents: 401
diff changeset
   188
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   189
# Site Document views
372
8595c1129c74 Formalize the concept of a NonPage that can appear in the site-map, useful for
Todd Larsen <tlarsen@google.com>
parents: 350
diff changeset
   190
site_docs_sub_menu = page.NonPage(
8595c1129c74 Formalize the concept of a NonPage that can appear in the site-map, useful for
Todd Larsen <tlarsen@google.com>
parents: 350
diff changeset
   191
  'site-docs-sub-menu',
8595c1129c74 Formalize the concept of a NonPage that can appear in the site-map, useful for
Todd Larsen <tlarsen@google.com>
parents: 350
diff changeset
   192
  'Site: Documents Sub-Menu',
349
bb82a1a3339c A quick-and-dirty way to create non-link sub-menu dividers, plus a TODO on
Todd Larsen <tlarsen@google.com>
parents: 347
diff changeset
   193
  short_name='Site Documents',
425
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
   194
  parent=site_sub_menu)
349
bb82a1a3339c A quick-and-dirty way to create non-link sub-menu dividers, plus a TODO on
Todd Larsen <tlarsen@google.com>
parents: 347
diff changeset
   195
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   196
site_docs_create = page.Page(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   197
  page.Url(
377
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
   198
    r'^docs/edit$',
401
37d0b6c25f3e Make use of the new generic views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 392
diff changeset
   199
    'soc.views.models.docs.create'),
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   200
  'Site: Create New Document',
350
e8f14fde7f0e "new" is a little bit redundant in the short_name of sidebar menu items that
Todd Larsen <tlarsen@google.com>
parents: 349
diff changeset
   201
  'Create Site Document',
349
bb82a1a3339c A quick-and-dirty way to create non-link sub-menu dividers, plus a TODO on
Todd Larsen <tlarsen@google.com>
parents: 347
diff changeset
   202
  parent=site_docs_sub_menu)
192
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   203
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   204
site_docs_edit = page.Page(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   205
  page.Url(
377
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
   206
    r'^docs/edit/%s$' % path_link_name.PATH_LINKNAME_ARGS_PATTERN,
401
37d0b6c25f3e Make use of the new generic views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 392
diff changeset
   207
    'soc.views.models.docs.edit'),
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   208
  'Site: Modify Existing Document',
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   209
  short_name='Modify Site Document',
349
bb82a1a3339c A quick-and-dirty way to create non-link sub-menu dividers, plus a TODO on
Todd Larsen <tlarsen@google.com>
parents: 347
diff changeset
   210
  parent=site_docs_sub_menu)
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   211
314
dfaf249c12b2 Rearrange imports in home.py so they apply to new discussed format (separate "from ..." and "import ..." blocks). Add Delete Document functionality.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 305
diff changeset
   212
site_docs_delete = page.Page(
dfaf249c12b2 Rearrange imports in home.py so they apply to new discussed format (separate "from ..." and "import ..." blocks). Add Delete Document functionality.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 305
diff changeset
   213
  page.Url(
377
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
   214
    r'^docs/delete/%s$' % path_link_name.PATH_LINKNAME_ARGS_PATTERN,
401
37d0b6c25f3e Make use of the new generic views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 392
diff changeset
   215
    'soc.views.models.docs.delete'),
314
dfaf249c12b2 Rearrange imports in home.py so they apply to new discussed format (separate "from ..." and "import ..." blocks). Add Delete Document functionality.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 305
diff changeset
   216
  'Site: Delete Existing Document',
dfaf249c12b2 Rearrange imports in home.py so they apply to new discussed format (separate "from ..." and "import ..." blocks). Add Delete Document functionality.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 305
diff changeset
   217
  short_name='Delete Site Document',
349
bb82a1a3339c A quick-and-dirty way to create non-link sub-menu dividers, plus a TODO on
Todd Larsen <tlarsen@google.com>
parents: 347
diff changeset
   218
  parent=site_docs_sub_menu)
314
dfaf249c12b2 Rearrange imports in home.py so they apply to new discussed format (separate "from ..." and "import ..." blocks). Add Delete Document functionality.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 305
diff changeset
   219
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   220
site_docs_list = page.Page(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   221
  page.Url(
377
d94ec6f104cc Refactor various site views into more generic locations, in preparation for
Todd Larsen <tlarsen@google.com>
parents: 372
diff changeset
   222
    r'^docs/list$',
401
37d0b6c25f3e Make use of the new generic views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 392
diff changeset
   223
    'soc.views.models.docs.list'),
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   224
  'Site: List of Documents',
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   225
  short_name='List Site Documents',
349
bb82a1a3339c A quick-and-dirty way to create non-link sub-menu dividers, plus a TODO on
Todd Larsen <tlarsen@google.com>
parents: 347
diff changeset
   226
  parent=site_docs_sub_menu)
192
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   227
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   228
# Sponsor Group public view
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   229
sponsor_profile = page.Page(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   230
  page.Url(
392
76f130cc16b0 Add "View Sponsor Public Profile" to Sponsor Edit view template. Remove not needed <p> in home/public.html template. Add missing '$' at the end of some urls in site/map.py module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 390
diff changeset
   231
    r'^sponsor/profile/%s$' % path_link_name.LINKNAME_ARG_PATTERN,
401
37d0b6c25f3e Make use of the new generic views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 392
diff changeset
   232
    'soc.views.models.sponsor.public'),
372
8595c1129c74 Formalize the concept of a NonPage that can appear in the site-map, useful for
Todd Larsen <tlarsen@google.com>
parents: 350
diff changeset
   233
  'Sponsor Public Profile',
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   234
  parent=home)
403
d3e545a8bd26 Some more improvements to the generic view code
Sverre Rabbelier <srabbelier@gmail.com>
parents: 401
diff changeset
   235
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   236
# Sponsor Group Site views
372
8595c1129c74 Formalize the concept of a NonPage that can appear in the site-map, useful for
Todd Larsen <tlarsen@google.com>
parents: 350
diff changeset
   237
site_sponsor_sub_menu = page.NonPage(
8595c1129c74 Formalize the concept of a NonPage that can appear in the site-map, useful for
Todd Larsen <tlarsen@google.com>
parents: 350
diff changeset
   238
  'site-sponsor-sub-menu',
8595c1129c74 Formalize the concept of a NonPage that can appear in the site-map, useful for
Todd Larsen <tlarsen@google.com>
parents: 350
diff changeset
   239
  'Site: Sponsors Sub-Menu',
349
bb82a1a3339c A quick-and-dirty way to create non-link sub-menu dividers, plus a TODO on
Todd Larsen <tlarsen@google.com>
parents: 347
diff changeset
   240
  short_name='Site Sponsors',
425
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
   241
  parent=site_sub_menu)
349
bb82a1a3339c A quick-and-dirty way to create non-link sub-menu dividers, plus a TODO on
Todd Larsen <tlarsen@google.com>
parents: 347
diff changeset
   242
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   243
site_sponsor_create = page.Page(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   244
  page.Url(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   245
    r'^site/sponsor/profile$',
401
37d0b6c25f3e Make use of the new generic views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 392
diff changeset
   246
    'soc.views.models.sponsor.create'),
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   247
  'Site: Create New Sponsor',
350
e8f14fde7f0e "new" is a little bit redundant in the short_name of sidebar menu items that
Todd Larsen <tlarsen@google.com>
parents: 349
diff changeset
   248
  short_name='Create Site Sponsor',
349
bb82a1a3339c A quick-and-dirty way to create non-link sub-menu dividers, plus a TODO on
Todd Larsen <tlarsen@google.com>
parents: 347
diff changeset
   249
  parent=site_sponsor_sub_menu)
192
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   250
292
1cece5192e26 Enable recently commited delete Sponsor request handler (added to map.py) and Delete button in Sponsor edit view. Still missing "Are you sure ?" question box.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 282
diff changeset
   251
site_sponsor_delete = page.Page(
1cece5192e26 Enable recently commited delete Sponsor request handler (added to map.py) and Delete button in Sponsor edit view. Still missing "Are you sure ?" question box.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 282
diff changeset
   252
  page.Url(
382
f1be585b894e Change Sponsor delete url from /site/sponsor/profile/<link_name>/delete to /site/sponsor/profile/delete/<link_name> to match convention used in Document delete url.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 377
diff changeset
   253
    r'^site/sponsor/profile/delete/%s$' % path_link_name.LINKNAME_ARG_PATTERN,
401
37d0b6c25f3e Make use of the new generic views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 392
diff changeset
   254
    'soc.views.models.sponsor.delete'),
292
1cece5192e26 Enable recently commited delete Sponsor request handler (added to map.py) and Delete button in Sponsor edit view. Still missing "Are you sure ?" question box.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 282
diff changeset
   255
  'Site: Delete Existing Sponsor',
1cece5192e26 Enable recently commited delete Sponsor request handler (added to map.py) and Delete button in Sponsor edit view. Still missing "Are you sure ?" question box.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 282
diff changeset
   256
  short_name='Delete Site Sponsor',
349
bb82a1a3339c A quick-and-dirty way to create non-link sub-menu dividers, plus a TODO on
Todd Larsen <tlarsen@google.com>
parents: 347
diff changeset
   257
  parent=site_sponsor_sub_menu)
292
1cece5192e26 Enable recently commited delete Sponsor request handler (added to map.py) and Delete button in Sponsor edit view. Still missing "Are you sure ?" question box.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 282
diff changeset
   258
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   259
site_sponsor_edit = page.Page(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   260
  page.Url(
392
76f130cc16b0 Add "View Sponsor Public Profile" to Sponsor Edit view template. Remove not needed <p> in home/public.html template. Add missing '$' at the end of some urls in site/map.py module.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 390
diff changeset
   261
    r'^site/sponsor/profile/%s$' % path_link_name.LINKNAME_ARG_PATTERN,
401
37d0b6c25f3e Make use of the new generic views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 392
diff changeset
   262
    'soc.views.models.sponsor.edit'),
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   263
  'Site: Modify Existing Sponsor',
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   264
  short_name='Modify Site Sponsor',
349
bb82a1a3339c A quick-and-dirty way to create non-link sub-menu dividers, plus a TODO on
Todd Larsen <tlarsen@google.com>
parents: 347
diff changeset
   265
  parent=site_sponsor_sub_menu)
292
1cece5192e26 Enable recently commited delete Sponsor request handler (added to map.py) and Delete button in Sponsor edit view. Still missing "Are you sure ?" question box.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 282
diff changeset
   266
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   267
site_sponsor_list = page.Page(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   268
  page.Url(
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   269
    r'^site/sponsor/list$',
401
37d0b6c25f3e Make use of the new generic views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 392
diff changeset
   270
    'soc.views.models.sponsor.list'),
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   271
  'Site: List of Sponsors',
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   272
  short_name='List Site Sponsors',
349
bb82a1a3339c A quick-and-dirty way to create non-link sub-menu dividers, plus a TODO on
Todd Larsen <tlarsen@google.com>
parents: 347
diff changeset
   273
  parent=site_sponsor_sub_menu)
192
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   274
409
9d24850db88f Addressed comments by Pawel and Todd
Sverre Rabbelier <srabbelier@gmail.com>
parents: 405
diff changeset
   275
# Host public view
404
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   276
host_profile = page.Page(
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   277
  page.Url(
409
9d24850db88f Addressed comments by Pawel and Todd
Sverre Rabbelier <srabbelier@gmail.com>
parents: 405
diff changeset
   278
      r'^host/profile/(?P<sponsor_ln>%(lnp)s)/(?P<user_ln>%(lnp)s)$' % {
9d24850db88f Addressed comments by Pawel and Todd
Sverre Rabbelier <srabbelier@gmail.com>
parents: 405
diff changeset
   279
          'lnp': path_link_name.LINKNAME_PATTERN_CORE},
404
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   280
    'soc.views.models.host.public'),
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   281
  'Host Public Profile',
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   282
  parent=home)
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   283
409
9d24850db88f Addressed comments by Pawel and Todd
Sverre Rabbelier <srabbelier@gmail.com>
parents: 405
diff changeset
   284
# Host Site views
404
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   285
site_host_sub_menu = page.NonPage(
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   286
  'site-host-sub-menu',
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   287
  'Site: Host Sub-Menu',
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   288
  short_name='Site Hosts',
425
95058c81a065 Change Site and User sub-menus so that the "header" entry for those sub-menus
Todd Larsen <tlarsen@google.com>
parents: 409
diff changeset
   289
  parent=site_sub_menu)
404
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   290
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   291
site_host_create = page.Page(
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   292
  page.Url(
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   293
    r'^site/host/profile$',
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   294
    'soc.views.models.host.create'),
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   295
  'Site: Create New Host',
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   296
  short_name='Create Site Host',
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   297
  parent=site_host_sub_menu)
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   298
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   299
site_host_delete = page.Page(
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   300
  page.Url(
409
9d24850db88f Addressed comments by Pawel and Todd
Sverre Rabbelier <srabbelier@gmail.com>
parents: 405
diff changeset
   301
    r'^site/host/delete/(?P<sponsor_ln>%(lnp)s)/(?P<user_ln>%(lnp)s)$' % {
9d24850db88f Addressed comments by Pawel and Todd
Sverre Rabbelier <srabbelier@gmail.com>
parents: 405
diff changeset
   302
          'lnp': path_link_name.LINKNAME_PATTERN_CORE},
404
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   303
    'soc.views.models.host.delete'),
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   304
  'Site: Delete Existing Host',
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   305
  short_name='Delete Site Host',
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   306
  parent=site_host_sub_menu)
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   307
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   308
site_host_edit = page.Page(
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   309
  page.Url(
409
9d24850db88f Addressed comments by Pawel and Todd
Sverre Rabbelier <srabbelier@gmail.com>
parents: 405
diff changeset
   310
    r'^site/host/profile/(?P<sponsor_ln>%(lnp)s)/(?P<user_ln>%(lnp)s)$' % {
9d24850db88f Addressed comments by Pawel and Todd
Sverre Rabbelier <srabbelier@gmail.com>
parents: 405
diff changeset
   311
          'lnp': path_link_name.LINKNAME_PATTERN_CORE},
404
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   312
    'soc.views.models.host.edit'),
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   313
  'Site: Modify Existing Host',
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   314
  short_name='Modify Site Host',
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   315
  parent=site_host_sub_menu)
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   316
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   317
site_host_list = page.Page(
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   318
  page.Url(
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   319
    r'^site/host/list$',
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   320
    'soc.views.models.host.list'),
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   321
  'Site: List of Hosts',
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   322
  short_name='List Site Hosts',
44223e50e1fc Added a Host profile and generalized some views
Sverre Rabbelier <srabbelier@gmail.com>
parents: 403
diff changeset
   323
  parent=site_host_sub_menu)
192
f6bf679dab26 Simple MenuItem and Menu classes for keeping track of ordered menus.
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
   324
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   325
# these are not really used...
298
c76a366c7ab4 Replace almost all occurences of linkname with link_name
Sverre Rabbelier <srabbelier@gmail.com>
parents: 292
diff changeset
   326
#    (r'^org/profile/(?P<program>ghop[_0-9a-z]+)/(?P<link_name>[_0-9a-z]+)/$',
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   327
#     'soc.views.person.profile.edit',
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   328
#     {'template': 'ghop/person/profile/edit.html'}),
298
c76a366c7ab4 Replace almost all occurences of linkname with link_name
Sverre Rabbelier <srabbelier@gmail.com>
parents: 292
diff changeset
   329
#    (r'^org/profile/(?P<program>[_0-9a-z]+)/(?P<link_name>[_0-9a-z]+)/$',
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   330
#     'soc.views.person.profile.edit'),
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   331
403
d3e545a8bd26 Some more improvements to the generic view code
Sverre Rabbelier <srabbelier@gmail.com>
parents: 401
diff changeset
   332
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   333
ROOT_PAGES = [
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   334
  # /, first level of the sidebar menu, excluded from breadcrumbs
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   335
  home,
403
d3e545a8bd26 Some more improvements to the generic view code
Sverre Rabbelier <srabbelier@gmail.com>
parents: 401
diff changeset
   336
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   337
  # alternate view of /, no menu presence
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   338
  site_home,
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   339
]
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   340
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   341
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   342
def getDjangoUrlPatterns(pages=ROOT_PAGES):
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   343
  """Returns Django urlpatterns derived from the site map Pages.
403
d3e545a8bd26 Some more improvements to the generic view code
Sverre Rabbelier <srabbelier@gmail.com>
parents: 401
diff changeset
   344
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   345
  Args:
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   346
    pages: a list of page.Page objects from which to generate urlpatterns
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   347
      (from them and from their child Pages); default is ROOT_PAGES
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   348
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   349
  Raises:
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   350
    KeyError if more than one Page has the same urlpattern.
403
d3e545a8bd26 Some more improvements to the generic view code
Sverre Rabbelier <srabbelier@gmail.com>
parents: 401
diff changeset
   351
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   352
    TODO(tlarsen): this probably does not work correctly, currently, since
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   353
    page.Page.makeDjangoUrls() returns a list, and this routine is
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   354
    combining lists from potentially multiple page hierarchies.  Each list
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   355
    might have a urlpattern that the other contains, but this won't be
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   356
    detected by the current code (will Django catch this?).  This really
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   357
    needs to be detected earlier via a global Page dictionary.
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   358
  """
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   359
  urlpatterns = ['']
403
d3e545a8bd26 Some more improvements to the generic view code
Sverre Rabbelier <srabbelier@gmail.com>
parents: 401
diff changeset
   360
282
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   361
  for page in pages:
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   362
    urlpatterns.extend(page.makeDjangoUrls())
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   363
600e0a9bfa06 A site layout ("site map") of the web application, including URL regular
Todd Larsen <tlarsen@google.com>
parents: 196
diff changeset
   364
  return defaults.patterns(*urlpatterns)