This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
glasnost/glasnost-web/orphanedArticles.py

119 lines
4.1 KiB
Python

# -*- 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.
__doc__ = """Glasnost Orphaned Articles Web Page"""
__version__ = '$Revision$'[11:-2]
from glasnost.web.tools import *
def index():
dispatcherId = context.getVar('dispatcherId')
articlesProxy = getProxyForServerRole('articles')
articles = articlesProxy.getObjects()
d = {}
for id in articles.keys():
d[id] = 0
# Getting rubrics
rubricsProxy = getProxyForServerRole('rubrics')
rubrics = rubricsProxy.getObjects()
# Getting pagenames
pagenamesProxy = getProxyForServerRole('pagenames')
pagenames = pagenamesProxy.getObjects()
pagenamesD = {}
for p in pagenames.values():
pagenamesD[p.name] = p.mappedId
pagenames = pagenamesD
# Marking articles that are part of rubrics
for r in rubrics.values():
if r.contentId:
d[r.contentId] = 1
if not r.membersSet:
continue
for id in r.membersSet:
d[id] = 1
# Parsing every articles for links
import re
for article in articles.values():
if article.format == 'spip':
links = [x[10:].strip() for x in re.findall(r'->article +\d+', article.body)]
for l in links:
id = '%s/articles/%s' % (dispatcherId, l)
d[id] = 1
links = [x[8:].strip() for x in re.findall(r'->alias +[\w\-_]+', article.body)]
for l in links:
if not pagenames.has_key(l):
print 'Wrong pagename: %s' % l
continue
d[pagenames[l]] = 1
elif article.format == 'rst':
links = [x[10:].strip() for x in re.findall(r'<article +\d+', article.body)]
for l in links:
id = '%s/articles/%s' % (dispatcherId, l)
d[id] = 1
links = [x[8:].strip() for x in re.findall(r'<alias +[\w\-_]+', article.body)]
for l in links:
if not pagenames.has_key(l):
# print 'Wrong pagename: %s' % l
continue
d[pagenames[l]] = 1
# Results
layout = X.ul()
for id in d.keys():
if d[id]:
continue
layout += X.li(X.objectHypertextLabel(id))
return writePageLayout(layout, _('Orphaned Articles'))