1 | #! /usr/bin/python |
---|
2 | |
---|
3 | # PyKota Print Quota Reports generator |
---|
4 | # |
---|
5 | # PyKota - Print Quotas for CUPS |
---|
6 | # |
---|
7 | # (c) 2003 Jerome Alet <alet@librelogiciel.com> |
---|
8 | # This program is free software; you can redistribute it and/or modify |
---|
9 | # it under the terms of the GNU General Public License as published by |
---|
10 | # the Free Software Foundation; either version 2 of the License, or |
---|
11 | # (at your option) any later version. |
---|
12 | # |
---|
13 | # This program is distributed in the hope that it will be useful, |
---|
14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
16 | # GNU General Public License for more details. |
---|
17 | # |
---|
18 | # You should have received a copy of the GNU General Public License |
---|
19 | # along with this program; if not, write to the Free Software |
---|
20 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. |
---|
21 | # |
---|
22 | # $Id$ |
---|
23 | # |
---|
24 | # $Log$ |
---|
25 | # Revision 1.3 2003/03/29 13:45:27 jalet |
---|
26 | # GPL paragraphs were incorrectly (from memory) copied into the sources. |
---|
27 | # Two README files were added. |
---|
28 | # Upgrade script for PostgreSQL pre 1.01 schema was added. |
---|
29 | # |
---|
30 | # Revision 1.2 2003/02/12 11:31:51 jalet |
---|
31 | # doesn't use the jaxml module anymore |
---|
32 | # |
---|
33 | # Revision 1.1 2003/02/10 13:41:38 jalet |
---|
34 | # repykota cgi script added. |
---|
35 | # cleaner doc. |
---|
36 | # |
---|
37 | |
---|
38 | import sys |
---|
39 | import os |
---|
40 | import cgi |
---|
41 | |
---|
42 | header = """Content-type: text/html |
---|
43 | |
---|
44 | <?xml version="1.0" encoding="iso-8859-1"?> |
---|
45 | <html> |
---|
46 | <head> |
---|
47 | <title>Print Quota Report</title> |
---|
48 | </head> |
---|
49 | <body> |
---|
50 | <h2>Print Quota Report</h2> |
---|
51 | <pre>""" |
---|
52 | |
---|
53 | footer = """ |
---|
54 | </pre> |
---|
55 | </body> |
---|
56 | </html>""" |
---|
57 | |
---|
58 | print header |
---|
59 | |
---|
60 | out = os.popen("repykota") |
---|
61 | print out.read().strip() |
---|
62 | out.close() |
---|
63 | |
---|
64 | print footer |
---|