From 310fbcdb07063b74875850b97b3209bdf7f820dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Soutad=C3=A9?= Date: Fri, 4 Nov 2022 20:14:22 +0100 Subject: [PATCH] Remove deprecated track users plugin --- plugins/display/track_users.py | 62 ---------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 plugins/display/track_users.py diff --git a/plugins/display/track_users.py b/plugins/display/track_users.py deleted file mode 100644 index ef1c481..0000000 --- a/plugins/display/track_users.py +++ /dev/null @@ -1,62 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright Grégory Soutadé 2015 - -# This file is part of iwla - -# iwla 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 3 of the License, or -# (at your option) any later version. -# -# iwla 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 iwla. If not, see . -# - -from iwla import IWLA -from iplugin import IPlugin -from display import * - -import awstats_data - -""" -Display hook - -Track users - -Plugin requirements : - None - -Conf values needed : - tracked_ip - create_tracked_page* - -Output files : - OUTPUT_ROOT/year/month/index.html - OUTPUT_ROOT/year/month/tracked_users.html - -Statistics creation : - None - -Statistics update : - None - -Statistics deletion : - None -""" - -class IWLADisplayTrackUsers(IPlugin): - def __init__(self, iwla): - super(IWLADisplayTrackUsers, self).__init__(iwla) - self.API_VERSION = 1 - - def load(self): - raise Exception('Track users is deprecated, use filter_users instead') - - def hook(self): - pass