Added Organization View for GHOP.
authorMadhusudan.C.S <madhusudancs@gmail.com>
Sat, 22 Aug 2009 04:00:56 +0530
changeset 2785 bb6064b9fc9d
parent 2784 801eee4eda9a
child 2786 b06313c87817
Added Organization View for GHOP. Along with adding the View, the View is also registered with sitemap in the GHOP module's callback.py
app/soc/modules/ghop/callback.py
app/soc/modules/ghop/views/models/organization.py
--- a/app/soc/modules/ghop/callback.py	Sat Aug 22 03:56:25 2009 +0530
+++ b/app/soc/modules/ghop/callback.py	Sat Aug 22 04:00:56 2009 +0530
@@ -21,6 +21,7 @@
   ]
 
 
+from soc.modules.ghop.views.models import organization
 from soc.modules.ghop.views.models import program
 from soc.modules.ghop.views.models import timeline
 
@@ -43,6 +44,7 @@
 
     self.core.requireUniqueService('registerWithSitemap')
 
+    self.core.registerSitemapEntry(organization.view.getDjangoURLPatterns())
     self.core.registerSitemapEntry(program.view.getDjangoURLPatterns())
     self.core.registerSitemapEntry(timeline.view.getDjangoURLPatterns())
 
@@ -53,5 +55,6 @@
     # require that we had the chance to register the urls we need with the sitemap
     self.core.requireUniqueService('registerWithSidebar')
 
+    self.core.registerSidebarEntry(organization.view.getExtraMenus)
+    self.core.registerSidebarEntry(organization.view.getSidebarMenus)
     self.core.registerSidebarEntry(program.view.getSidebarMenus)
-
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/soc/modules/ghop/views/models/organization.py	Sat Aug 22 04:00:56 2009 +0530
@@ -0,0 +1,84 @@
+#!/usr/bin/python2.5
+#
+# Copyright 2009 the Melange authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+"""GHOP specific views for Organizations.
+"""
+
+__authors__ = [
+    '"Madhusudan.C.S" <madhusudancs@gmail.com>'
+  ]
+
+
+import datetime
+
+from django import forms
+
+from soc.logic import cleaning
+from soc.logic import dicts
+from soc.views.helper import decorators
+from soc.views.models import organization
+from soc.views.sitemap import sidebar
+
+import soc.cache.logic
+
+from soc.modules.ghop.views.models import program as ghop_program_view
+
+import soc.modules.ghop.logic.models.organization
+
+
+class View(organization.View):
+  """View methods for the GHOP Program model.
+  """
+
+  def __init__(self, params=None):
+    """Defines the fields and methods required for the program View class
+    to provide the user with list, public, create, edit and delete views.
+
+    Params:
+      params: a dict with params for this View
+    """
+
+    new_params = {}
+    new_params['logic'] = soc.modules.ghop.logic.models.organization.logic
+    new_params['scope_view'] = ghop_program_view
+
+    new_params['name'] = "GHOP Organization"
+    new_params['module_name'] = "organization"
+    new_params['sidebar_grouping'] = 'Organizations'
+
+    new_params['module_package'] = 'soc.modules.ghop.views.models'
+    new_params['url_name'] = 'ghop/org'
+
+    new_params['extra_dynaexclude'] = ['slots', 'slots_calculated',
+                                       'nr_applications', 'nr_mentors',
+                                       'slots_desired', 'ideas',
+                                       'task_quota_limit']
+
+    params = dicts.merge(params, new_params, sub_merge=True)
+
+    super(View, self).__init__(params=params)
+
+
+view = View()
+
+admin = decorators.view(view.admin)
+create = decorators.view(view.create)
+delete = decorators.view(view.delete)
+edit = decorators.view(view.edit)
+list = decorators.view(view.list)
+public = decorators.view(view.public)
+export = decorators.view(view.export)
+home = decorators.view(view.home)