root / pykota / trunk / pykota / reporters / html.py @ 3411

Revision 3411, 4.0 kB (checked in by jerome, 16 years ago)

Minor change to please emacs...

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1# -*- coding: utf-8 -*-*-
2#
3# PyKota : Print Quotas for CUPS
4#
5# (c) 2003, 2004, 2005, 2006, 2007, 2008 Jerome Alet <alet@librelogiciel.com>
6# This program is free software: you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program.  If not, see <http://www.gnu.org/licenses/>.
18#
19# $Id$
20#
21#
22
23"""This module defines a class for HTML reporting."""
24
25import os
26import urllib
27
28from pykota.reporter import BaseReporter
29   
30class Reporter(BaseReporter) :   
31    """HTML reporter."""
32    def generateReport(self) :
33        """Produces a simple HTML report."""
34        self.report = []
35        if self.isgroup :
36            prefix = "Group"
37        else :   
38            prefix = "User"
39        for printer in self.printers :
40            phistoryurl = { "printername" : printer.Name, "history" : 1 }
41            self.report.append('<a href="%s?%s"><h2 class="printername">%s</h2></a>' % (os.environ.get("SCRIPT_NAME", ""), urllib.urlencode(phistoryurl), self.getPrinterTitle(printer)))
42            self.report.append('<h3 class="printergracedelay">%s</h3>' % self.getPrinterGraceDelay(printer))
43            (pjob, ppage) = self.getPrinterPrices(printer)
44            self.report.append('<h4 class="priceperjob">%s</h4>' % pjob)
45            self.report.append('<h4 class="priceperpage">%s</h4>' % ppage)
46            total = 0
47            totalmoney = 0.0
48            self.report.append('<table class="pykotatable" border="1">')
49            headers = self.getReportHeader().split()
50            headers.insert(1, "LimitBy")
51            self.report.append('<tr class="pykotacolsheader">%s</tr>' % "".join(["<th>%s</th>" % h for h in headers]))
52            oddeven = 0
53            for (entry, entrypquota) in getattr(self.tool.storage, "getPrinter%ssAndQuotas" % prefix)(printer, self.ugnames) :
54                oddeven += 1
55                if oddeven % 2 :
56                    oddevenclass = "odd"
57                else :   
58                    oddevenclass = "even"
59                (pages, money, name, reached, pagecounter, soft, hard, balance, datelimit, lifepagecounter, lifetimepaid, overcharge, warncount) = self.getQuota(entry, entrypquota)
60                if datelimit :
61                    if datelimit == "DENY" :
62                        oddevenclass = "deny"
63                    else :   
64                        oddevenclass = "warn"
65                if (not self.tool.config.getDisableHistory()) and (not self.isgroup) :
66                    name = '<a href="%s?username=%s&printername=%s&history=1">%s</a>' % (os.environ.get("SCRIPT_NAME", ""), name, printer.Name, name)
67                self.report.append('<tr class="%s">%s</tr>' % (oddevenclass, "".join(["<td>%s</td>" % h for h in (name, reached, overcharge, pagecounter, soft, hard, balance, datelimit or "&nbsp;", lifepagecounter, lifetimepaid, warncount)])))
68                total += pages
69                totalmoney += money
70               
71            if total or totalmoney :       
72                (tpage, tmoney) = self.getTotals(total, totalmoney)
73                self.report.append('<tr class="totals"><td colspan="8">&nbsp;</td><td align="right">%s</td><td align="right">%s</td><td>&nbsp;</td></tr>' % (tpage, tmoney))
74            self.report.append('<tr class="realpagecounter"><td colspan="8">&nbsp;</td><td align="right">%s</td><td>&nbsp;</td></tr>' % self.getPrinterRealPageCounter(printer))
75            self.report.append('</table>')
76        if self.isgroup :   
77            self.report.append('<p class="warning">%s</p>' % _("Totals may be inaccurate if some users are members of several groups."))
78        return "\n".join(self.report)   
79                       
Note: See TracBrowser for help on using the browser.