root / pykota / trunk / bin / pkpgcounter @ 1487

Revision 1487, 2.0 kB (checked in by jalet, 20 years ago)

All the code for pkpgcounter is now in pdlanalyzer.py

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
RevLine 
[1430]1#! /usr/bin/env python
2# -*- coding: ISO-8859-15 -*-
3
4# pkpgcounter, a smart software page counter
5#
6# PyKota - Print Quotas for CUPS and LPRng
7#
8# (c) 2003-2004 Jerome Alet <alet@librelogiciel.com>
9# This program is free software; you can redistribute it and/or modify
10# it under the terms of the GNU General Public License as published by
11# the Free Software Foundation; either version 2 of the License, or
12# (at your option) any later version.
13#
14# This program is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17# GNU General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with this program; if not, write to the Free Software
21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
22#
23# $Id$
24#
25# $Log$
[1487]26# Revision 1.11  2004/05/21 20:40:07  jalet
27# All the code for pkpgcounter is now in pdlanalyzer.py
28#
[1482]29# Revision 1.10  2004/05/18 09:59:54  jalet
30# pkpgcounter is now just a wrapper around the PDLAnalyzer class
31#
[1463]32# Revision 1.9  2004/05/10 07:23:21  jalet
33# pykotme now uses pkpgcounter to compute the job's size.
34#
[1462]35# Revision 1.8  2004/05/08 15:12:23  jalet
36# Improved PCL6 support
37#
[1461]38# Revision 1.7  2004/05/07 23:08:21  jalet
39# Skeleton for PCLXL aka PCL6
40# Added the "potential" fix for rastertoprinter's output
41#
[1456]42# Revision 1.6  2004/05/06 21:19:27  jalet
43# Doesn't exit anymore on the first nul byte
44#
[1451]45# Revision 1.5  2004/05/06 12:37:29  jalet
46# pkpgcounter : comments
47# pkprinters : when --add is used, existing printers are now skipped.
48#
[1449]49# Revision 1.4  2004/05/04 12:21:55  jalet
50# Now uses mmap in PCL mode
51#
[1448]52# Revision 1.3  2004/05/04 04:39:26  jalet
53# Better PCL support
54#
[1447]55# Revision 1.2  2004/05/04 03:14:26  jalet
56# fixed copy&paste problem in pkpgcounter
57#
[1430]58# Revision 1.1  2004/04/08 17:07:42  jalet
59# pkpgcounter added
60#
61#
62
[1482]63from pykota import pdlanalyzer
[1462]64   
[1430]65if __name__ == "__main__" :   
[1487]66    pdlanalyzer.main()
Note: See TracBrowser for help on using the browser.