/usr/share/pyshared/schooltool/skin/skin.py is in python-schooltool 1:2.1.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 | #
# SchoolTool - common information systems platform for school administration
# Copyright (c) 2005 Shuttleworth Foundation
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
"""
SchoolTool skin.
"""
from zope.component import getAdapter, getMultiAdapter, subscribers
from zope.interface import Interface, implements
from zope.schema import Object
from zope.i18n.interfaces import IUserPreferredLanguages
from zope.publisher.interfaces.browser import IDefaultBrowserLayer
from zope.publisher.interfaces.browser import IBrowserRequest
from zope.viewlet.interfaces import IViewletManager
from zope.viewlet.manager import ViewletManagerBase
from zope.viewlet.metadirectives import IViewletDirective
from zope.configuration.fields import MessageID
from zope.publisher.browser import BrowserView
from zope.browsermenu.menu import getMenu
from zope.traversing.browser.absoluteurl import absoluteURL
from z3c.form.interfaces import IFormLayer
from z3c.formui.interfaces import ICSS as IZ3cFormCSS
from schooltool.app.interfaces import ICookieLanguageSelector
from schooltool.securitypolicy.crowds import Crowd
from schooltool.securitypolicy.interfaces import ICrowd
from schooltool.app.interfaces import ISchoolToolApplication
from schooltool.skin.interfaces import IBreadcrumbInfo
class IJavaScriptManager(IViewletManager):
"""Provides a viewlet hook for the javascript link entries."""
class ICSSManager(IZ3cFormCSS):
"""Provides a viewlet hook for the CSS link entries."""
class IHeaderManager(IViewletManager):
"""Provides a viewlet hook for the header of a page."""
class INavigationManager(IViewletManager):
"""Provides a viewlet hook for the navigation section of a page."""
class IActionMenuManager(IViewletManager):
"""Provides a viewlet hook for the action menu."""
def title():
"""Title that will be displayed before the action menu or submenu."""
def subItems():
"""Sub items that will have their own menus in the main action menu.
Returns a list of ISubMenuItem objects.
"""
class IMenuBarMenuManager(IViewletManager):
"""Provides a viewlet hook for the entire menu bar."""
class IActionMenuContext(Interface):
"""Schema for attributes required by ActionMenuViewletManager."""
target = Object(Interface)
class OrderedViewletManager(ViewletManagerBase):
"""Viewlet manager that orders viewlets by their 'order' attribute.
The order attribute can be a string, but it will be sorted numerically
(i.e. '1' before '5' before '20'). The attribute is optional; viewlets
without an ``order`` attribute will be sorted alphabetically by their
``title`` attribute, and placed below all the ordered viewlets.
"""
def sort(self, viewlets):
"""Sort the viewlets.
``viewlets`` is a list of tuples of the form (name, viewlet).
"""
def key_func((name, viewlet)):
if hasattr(viewlet, 'order'):
return (0, int(viewlet.order))
elif hasattr(viewlet, 'title'):
return (1, viewlet.title)
else:
raise AttributeError('%r viewlet has neither order nor title'
% name)
return sorted(viewlets, key=key_func)
def filter(self, viewlets):
viewlets = ViewletManagerBase.filter(self, viewlets)
return [(name, viewlet) for (name, viewlet) in viewlets
if not IDisableViewlet.providedBy(viewlet)]
def render(self):
"""See zope.contentprovider.interfaces.IContentProvider"""
# Now render the view
viewlets_with_content = []
for viewlet in self.viewlets:
content = viewlet.render()
if content and content.strip():
viewlets_with_content.append(viewlet)
# XXX we render the content twice, hope it's not affecting
# anything
if self.template:
return self.template(viewlets=viewlets_with_content)
else:
return u'\n'.join([viewlet.render()
for viewlet in viewlets_with_content])
class NavigationViewlet(object):
"""A navigation viewlet base class."""
def actualContext(self):
return ISchoolToolApplication(None)
def appURL(self):
return absoluteURL(ISchoolToolApplication(None), self.request)
class TopLevelContainerNavigationViewlet(NavigationViewlet):
"""A base class of navigation viewlet for top level containers."""
def actualContext(self):
"""Actual context is the container this viewlet links to."""
return ISchoolToolApplication(None)[self.link]
class ISubMenuItem(Interface):
"""Marker interface for objects that will be displayed as items in submenus.
"""
class MenuBarMenuViewletManager(OrderedViewletManager):
"""Viewlet manager for displaying the various menus at the top of a page."""
implements(IMenuBarMenuManager)
class ActionMenuViewletManager(OrderedViewletManager):
"""Viewlet manager for displaying the action menu."""
implements(IActionMenuContext, IActionMenuManager)
def title(self):
breadcrumb = getMultiAdapter((self.context, self.request),
IBreadcrumbInfo)
return breadcrumb.name
def getSubItems(self, context):
"""Collect all items that should be displayed in the submenu of context.
Submenu items are registered as subscribers with interface
ISubMenuItem.
"""
return list(subscribers((context, ), ISubMenuItem))
def update(self):
# set the right context for menu items that will be set up by
# OrderedViewletManager.update
self.context = self.target
# We could just check for ISubMenuItem on self.context, though
# that would be less reliable.
sub_items = self.getSubItems(self.context.__parent__)
in_submenu_of_parent = self.context in sub_items
displayed_in_submenu = IActionMenuManager.providedBy(self.__parent__)
if (in_submenu_of_parent and not displayed_in_submenu):
# display menu as if looking at the parent object
self.context = self.context.__parent__
self.orderedViewletManagerUpdate()
def orderedViewletManagerUpdate(self):
OrderedViewletManager.update(self)
def subItems(self):
"""See zope.contentprovider.interfaces.IContentProvider"""
return self.getSubItems(self.context)
class ActionMenuViewlet(object):
def getMenu(self):
return getMenu(self.menu, self.context, self.request)
class NavigationViewletViewCrowd(Crowd):
"""A crowd for navigation viewlets.
Checks permissions on the actual context rather than the parent. Parents
of viewlets are pretty useless in this case as NavigationViewlets
are used in a global navigation menu.
"""
def contains(self, principal):
context = self.context.actualContext()
crowd = getAdapter(context, ICrowd, name='schooltool.view')
return crowd.contains(principal)
class NavigationViewletEditCrowd(Crowd):
"""A crowd for navigation viewlets."""
def contains(self, principal):
context = self.context.actualContext()
crowd = getAdapter(context, ICrowd, name='schooltool.edit')
return crowd.contains(principal)
class ISchoolToolLayer(IDefaultBrowserLayer, IFormLayer):
"""SchoolTool layer."""
class ISchoolToolSkin(ISchoolToolLayer):
"""The same SchoolTool layer. BBB naming."""
class LanguageSelectorViewlet(BrowserView):
def selected_lang(self):
upl = IUserPreferredLanguages(self.request)
return upl.getSelectedLanguage()
def languages(self):
upl = IUserPreferredLanguages(self.request)
if ICookieLanguageSelector.providedBy(upl):
return upl.getLanguageList()
return None
class INavigationMenuItemDirective(IViewletDirective):
"""An interface that makes title attribute of a viewlet translatable."""
title = MessageID(
title=u"The title for the menu item",
required=False
)
# Arbitrary keys and values are allowed to be passed to the viewlet.
INavigationMenuItemDirective.setTaggedValue('keyword_arguments', True)
class IDisableViewlet(Interface):
pass
class DisableNavigationViewlet(BrowserView):
implements(IDisableViewlet)
|