plan du site dorénavant géré par un fichier .py (plus .tal)

This commit is contained in:
fpeters 2003-11-19 14:25:21 +00:00
parent 01c4b3d9f3
commit 38cb449f59
3 changed files with 70 additions and 27 deletions

70
glasnost-web/siteMap.py Normal file
View File

@ -0,0 +1,70 @@
# -*- coding: iso-8859-15 -*-
# Glasnost
# By: Odile Bénassy <obenassy@entrouvert.com>
# Romain Chantereau <rchantereau@entrouvert.com>
# Nicolas Clapiès <nclapies@easter-eggs.org>
# Pierre-Antoine Dejace <padejace@entrouvert.be>
# Thierry Dulieu <tdulieu@easter-eggs.com>
# Florent Monnier <monnier@codelutin.com>
# Cédric Musso <cmusso@easter-eggs.org>
# Frédéric Péters <fpeters@entrouvert.be>
# Benjamin Poussin <poussin@codelutin.com>
# Emmanuel Raviart <eraviart@entrouvert.com>
# Sébastien Régnier <regnier@codelutin.com>
# Emmanuel Saracco <esaracco@easter-eggs.com>
#
# Copyright (C) 2000, 2001 Easter-eggs & Emmanuel Raviart
# Copyright (C) 2002 Odile Bénassy, Code Lutin, Thierry Dulieu, Easter-eggs,
# Entr'ouvert, Frédéric Péters, Benjamin Poussin, Emmanuel Raviart,
# Emmanuel Saracco & Théridion
# Copyright (C) 2003 Odile Bénassy, Romain Chantereau, Nicolas Clapiès,
# Code Lutin, Pierre-Antoine Dejace, Thierry Dulieu, Easter-eggs,
# Entr'ouvert, Florent Monnier, Cédric Musso, Ouvaton, Frédéric Péters,
# Benjamin Poussin, Rodolphe Quiédeville, Emmanuel Raviart, Sébastien
# Régnier, Emmanuel Saracco, Théridion & Vecam
#
# 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.
__version__ = '$Revision$'[11:-2]
import glasnost.common.tools_new as commonTools
from glasnost.web.tools import *
def _getRubricLayout(object, done = None):
done.append(object.id)
ul = X.ul()
for itemId in object.membersSet or []:
li = X.li(X.objectHypertextLabel(itemId))
ul += li
if commonTools.extractRole(itemId) == 'rubrics' and not itemId in done:
try:
li += _getRubricLayout(getObject(itemId), done)
except faults.UserAccessDenied:
pass
return ul
def index():
rubricsWeb = getWebForServerRole('rubrics')
try:
mainRubric = rubricsWeb.getMainObject()
except (faults.MissingMainRubric, faults.UserAccessDenied):
return accessForbidden()
layout = _getRubricLayout(mainRubric, [])
return writePageLayout(layout, N_('Site Map'))

View File

@ -1,21 +0,0 @@
<doc metal:use-macro="StandardLookAndFeel.html/pre"/>
<html xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
metal:use-macro="StandardLookAndFeel.html/master">
<head>
<title metal:fill-slot="title" tal:translate="">Site map</title>
</head>
<body>
<div metal:fill-slot="main">
<h1 tal:translate="">Site map</h1>
<ul>
<div tal:replace="structure template('siteMapItem.tal', tree=getTree(getMainRubric()))" />
</ul>
</div>
</body>
</html>

View File

@ -1,6 +0,0 @@
<li><a tal:attributes="href tree[0].getUrl()" tal:content="tree[0]">item</a>
<ul tal:condition="tree[1]" tal:repeat="t tree[1]">
<li tal:replace="structure template('siteMapItem.tal', tree=t)">subitem</li>
</ul>
</li>