Replace # for module description by """ (help auto extraction)
This commit is contained in:
@@ -24,30 +24,30 @@ from iwla import IWLA
|
||||
from iplugin import IPlugin
|
||||
from display import *
|
||||
|
||||
#
|
||||
# Display hook
|
||||
#
|
||||
# Create All visits page
|
||||
#
|
||||
# Plugin requirements :
|
||||
# None
|
||||
#
|
||||
# Conf values needed :
|
||||
# display_visitor_ip*
|
||||
#
|
||||
# Output files :
|
||||
# OUTPUT_ROOT/year/month/all_visits.html
|
||||
# OUTPUT_ROOT/year/month/index.html
|
||||
#
|
||||
# Statistics creation :
|
||||
# None
|
||||
#
|
||||
# Statistics update :
|
||||
# None
|
||||
#
|
||||
# Statistics deletion :
|
||||
# None
|
||||
#
|
||||
"""
|
||||
Display hook
|
||||
|
||||
Create All visits page
|
||||
|
||||
Plugin requirements :
|
||||
None
|
||||
|
||||
Conf values needed :
|
||||
display_visitor_ip*
|
||||
|
||||
Output files :
|
||||
OUTPUT_ROOT/year/month/all_visits.html
|
||||
OUTPUT_ROOT/year/month/index.html
|
||||
|
||||
Statistics creation :
|
||||
None
|
||||
|
||||
Statistics update :
|
||||
None
|
||||
|
||||
Statistics deletion :
|
||||
None
|
||||
"""
|
||||
|
||||
class IWLADisplayAllVisits(IPlugin):
|
||||
def __init__(self, iwla):
|
||||
|
@@ -22,34 +22,34 @@ from iwla import IWLA
|
||||
from iplugin import IPlugin
|
||||
from display import *
|
||||
|
||||
#
|
||||
# Display hook
|
||||
#
|
||||
# Create Referers page
|
||||
#
|
||||
# Plugin requirements :
|
||||
# post_analysis/referers
|
||||
#
|
||||
# Conf values needed :
|
||||
# max_referers_displayed*
|
||||
# create_all_referers_page*
|
||||
# max_key_phrases_displayed*
|
||||
# create_all_key_phrases_page*
|
||||
#
|
||||
# Output files :
|
||||
# OUTPUT_ROOT/year/month/referers.html
|
||||
# OUTPUT_ROOT/year/month/key_phrases.html
|
||||
# OUTPUT_ROOT/year/month/index.html
|
||||
#
|
||||
# Statistics creation :
|
||||
# None
|
||||
#
|
||||
# Statistics update :
|
||||
# None
|
||||
#
|
||||
# Statistics deletion :
|
||||
# None
|
||||
#
|
||||
"""
|
||||
Display hook
|
||||
|
||||
Create Referers page
|
||||
|
||||
Plugin requirements :
|
||||
post_analysis/referers
|
||||
|
||||
Conf values needed :
|
||||
max_referers_displayed*
|
||||
create_all_referers_page*
|
||||
max_key_phrases_displayed*
|
||||
create_all_key_phrases_page*
|
||||
|
||||
Output files :
|
||||
OUTPUT_ROOT/year/month/referers.html
|
||||
OUTPUT_ROOT/year/month/key_phrases.html
|
||||
OUTPUT_ROOT/year/month/index.html
|
||||
|
||||
Statistics creation :
|
||||
None
|
||||
|
||||
Statistics update :
|
||||
None
|
||||
|
||||
Statistics deletion :
|
||||
None
|
||||
"""
|
||||
|
||||
class IWLADisplayReferers(IPlugin):
|
||||
def __init__(self, iwla):
|
||||
|
@@ -22,31 +22,31 @@ from iwla import IWLA
|
||||
from iplugin import IPlugin
|
||||
from display import *
|
||||
|
||||
#
|
||||
# Display hook
|
||||
#
|
||||
# Create TOP downloads page
|
||||
#
|
||||
# Plugin requirements :
|
||||
# post_analysis/top_downloads
|
||||
#
|
||||
# Conf values needed :
|
||||
# max_downloads_displayed*
|
||||
# create_all_downloads_page*
|
||||
#
|
||||
# Output files :
|
||||
# OUTPUT_ROOT/year/month/top_downloads.html
|
||||
# OUTPUT_ROOT/year/month/index.html
|
||||
#
|
||||
# Statistics creation :
|
||||
# None
|
||||
#
|
||||
# Statistics update :
|
||||
# None
|
||||
#
|
||||
# Statistics deletion :
|
||||
# None
|
||||
#
|
||||
"""
|
||||
Display hook
|
||||
|
||||
Create TOP downloads page
|
||||
|
||||
Plugin requirements :
|
||||
post_analysis/top_downloads
|
||||
|
||||
Conf values needed :
|
||||
max_downloads_displayed*
|
||||
create_all_downloads_page*
|
||||
|
||||
Output files :
|
||||
OUTPUT_ROOT/year/month/top_downloads.html
|
||||
OUTPUT_ROOT/year/month/index.html
|
||||
|
||||
Statistics creation :
|
||||
None
|
||||
|
||||
Statistics update :
|
||||
None
|
||||
|
||||
Statistics deletion :
|
||||
None
|
||||
"""
|
||||
|
||||
class IWLADisplayTopDownloads(IPlugin):
|
||||
def __init__(self, iwla):
|
||||
|
@@ -22,31 +22,31 @@ from iwla import IWLA
|
||||
from iplugin import IPlugin
|
||||
from display import *
|
||||
|
||||
#
|
||||
# Display hook
|
||||
#
|
||||
# Create TOP hits page
|
||||
#
|
||||
# Plugin requirements :
|
||||
# post_analysis/top_hits
|
||||
#
|
||||
# Conf values needed :
|
||||
# max_hits_displayed*
|
||||
# create_all_hits_page*
|
||||
#
|
||||
# Output files :
|
||||
# OUTPUT_ROOT/year/month/top_hits.html
|
||||
# OUTPUT_ROOT/year/month/index.html
|
||||
#
|
||||
# Statistics creation :
|
||||
# None
|
||||
#
|
||||
# Statistics update :
|
||||
# None
|
||||
#
|
||||
# Statistics deletion :
|
||||
# None
|
||||
#
|
||||
"""
|
||||
Display hook
|
||||
|
||||
Create TOP hits page
|
||||
|
||||
Plugin requirements :
|
||||
post_analysis/top_hits
|
||||
|
||||
Conf values needed :
|
||||
max_hits_displayed*
|
||||
create_all_hits_page*
|
||||
|
||||
Output files :
|
||||
OUTPUT_ROOT/year/month/top_hits.html
|
||||
OUTPUT_ROOT/year/month/index.html
|
||||
|
||||
Statistics creation :
|
||||
None
|
||||
|
||||
Statistics update :
|
||||
None
|
||||
|
||||
Statistics deletion :
|
||||
None
|
||||
"""
|
||||
|
||||
class IWLADisplayTopHits(IPlugin):
|
||||
def __init__(self, iwla):
|
||||
|
@@ -22,31 +22,31 @@ from iwla import IWLA
|
||||
from iplugin import IPlugin
|
||||
from display import *
|
||||
|
||||
#
|
||||
# Display hook
|
||||
#
|
||||
# Create TOP pages page
|
||||
#
|
||||
# Plugin requirements :
|
||||
# post_analysis/top_pages
|
||||
#
|
||||
# Conf values needed :
|
||||
# max_pages_displayed*
|
||||
# create_all_pages_page*
|
||||
#
|
||||
# Output files :
|
||||
# OUTPUT_ROOT/year/month/top_pages.html
|
||||
# OUTPUT_ROOT/year/month/index.html
|
||||
#
|
||||
# Statistics creation :
|
||||
# None
|
||||
#
|
||||
# Statistics update :
|
||||
# None
|
||||
#
|
||||
# Statistics deletion :
|
||||
# None
|
||||
#
|
||||
"""
|
||||
Display hook
|
||||
|
||||
Create TOP pages page
|
||||
|
||||
Plugin requirements :
|
||||
post_analysis/top_pages
|
||||
|
||||
Conf values needed :
|
||||
max_pages_displayed*
|
||||
create_all_pages_page*
|
||||
|
||||
Output files :
|
||||
OUTPUT_ROOT/year/month/top_pages.html
|
||||
OUTPUT_ROOT/year/month/index.html
|
||||
|
||||
Statistics creation :
|
||||
None
|
||||
|
||||
Statistics update :
|
||||
None
|
||||
|
||||
Statistics deletion :
|
||||
None
|
||||
"""
|
||||
|
||||
class IWLADisplayTopPages(IPlugin):
|
||||
def __init__(self, iwla):
|
||||
|
@@ -24,29 +24,29 @@ from iwla import IWLA
|
||||
from iplugin import IPlugin
|
||||
from display import *
|
||||
|
||||
#
|
||||
# Display hook
|
||||
#
|
||||
# Create TOP visitors block
|
||||
#
|
||||
# Plugin requirements :
|
||||
# None
|
||||
#
|
||||
# Conf values needed :
|
||||
# display_visitor_ip*
|
||||
#
|
||||
# Output files :
|
||||
# OUTPUT_ROOT/year/month/index.html
|
||||
#
|
||||
# Statistics creation :
|
||||
# None
|
||||
#
|
||||
# Statistics update :
|
||||
# None
|
||||
#
|
||||
# Statistics deletion :
|
||||
# None
|
||||
#
|
||||
"""
|
||||
Display hook
|
||||
|
||||
Create TOP visitors block
|
||||
|
||||
Plugin requirements :
|
||||
None
|
||||
|
||||
Conf values needed :
|
||||
display_visitor_ip*
|
||||
|
||||
Output files :
|
||||
OUTPUT_ROOT/year/month/index.html
|
||||
|
||||
Statistics creation :
|
||||
None
|
||||
|
||||
Statistics update :
|
||||
None
|
||||
|
||||
Statistics deletion :
|
||||
None
|
||||
"""
|
||||
|
||||
class IWLADisplayTopVisitors(IPlugin):
|
||||
def __init__(self, iwla):
|
||||
|
Reference in New Issue
Block a user