import time from iwla import IWLA from iplugin import IPlugin from display import * class IWLADisplayTopPages(IPlugin): def __init__(self, iwla): super(IWLADisplayTopPages, self).__init__(iwla) self.API_VERSION = 1 self.requires = ['IWLAPostAnalysisTopPages'] def hook(self): top_pages = self.iwla.getMonthStats()['top_pages'] top_pages = sorted(top_pages.items(), key=lambda t: t[1], reverse=True) # All in a page title = time.strftime('All Pages - %B %Y', self.iwla.getCurTime()) filename = 'top_pages.html' path = self.iwla.getCurDisplayPath(filename) page = DisplayHTMLPage(title, path, self.iwla.getConfValue('css_path', [])) table = DisplayHTMLBlockTable('All Pages', ['URI', 'Entrance']) table.setColsCSSClass(['', 'iwla_hit']) for (uri, entrance) in top_pages: table.appendRow([generateHTMLLink(uri), entrance]) page.appendBlock(table) self.iwla.getDisplay().addPage(page) link = 'All pages' % (filename) title = '%s - %s' % ('Top Pages', link) # Top in index index = self.iwla.getDisplayIndex() table = DisplayHTMLBlockTable(title, ['URI', 'Entrance']) table.setColsCSSClass(['', 'iwla_hit']) for (uri, entrance) in top_pages[:10]: table.appendRow([generateHTMLLink(uri), entrance]) index.appendBlock(table)