Just add the method below to the RedirectionTool and call it from the browser as:
http://localhost:8080/site/portal_redirection/getAllRedirects
Assuming that the site is running at loaclhost:8080 that is :-S
That will show a list of redirects that can be imported into plone 4.x
http://localhost:8080/site/portal_redirection/getAllRedirects
Assuming that the site is running at loaclhost:8080 that is :-S
That will show a list of redirects that can be imported into plone 4.x
security.declareProtected(View, 'getAllRedirects')
def getAllRedirects(self):
"get'm'all"
result = []
reference_tool = getToolByName(self, 'reference_catalog')
for k,uuid in self._redirectionmap.items():
obj = reference_tool.lookupObject(uuid)
if obj is None:
print 'could not find redirect from: %s to %s' % (k, uuid)
else:
path = '/'.join(('',)+obj.getPhysicalPath()[2:])
result.append( '%s,%s' % (k,path) )
return '\n'.join(result)