1 | # $Id$ |
---|
2 | |
---|
3 | PyKota - Print Quota for CUPS and LPRng |
---|
4 | |
---|
5 | (c) 2003-2004 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 2 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, write to the Free Software |
---|
18 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. |
---|
19 | |
---|
20 | ============================================================ |
---|
21 | |
---|
22 | TODO, in no particular order : |
---|
23 | |
---|
24 | - CUPS accepts the "STATE: ..." message as backchannel |
---|
25 | data : use this to tell CUPS what action has been taken |
---|
26 | for current job. |
---|
27 | |
---|
28 | - Add frontbanner and rearbanner directives to pykota.conf |
---|
29 | This directives will allow the launch (if executable) |
---|
30 | or the use of the banner path passed as a parameter. |
---|
31 | If executable, the banner content will be taken from |
---|
32 | the command's output, else from the banner file |
---|
33 | directly. |
---|
34 | |
---|
35 | Maybe allow frontbanner: +somepath and |
---|
36 | frontbanner: -somepath |
---|
37 | to allow/deny accounting of the banner itself |
---|
38 | (not sure because may be VERY DIFFICULT !) |
---|
39 | |
---|
40 | - Add full setting support of the printer's description |
---|
41 | attribute in pkprinters. |
---|
42 | |
---|
43 | - Add support for binary PostScript in generic PDL parser, |
---|
44 | using the BBox method described by Helge Blischke in CUPS' |
---|
45 | developpment mailing list. |
---|
46 | |
---|
47 | - Improve waitprinter.sh |
---|
48 | |
---|
49 | - Re-add support for LPRng. |
---|
50 | |
---|
51 | - Think about some possible client <=> PyKota dialog |
---|
52 | possibilities, like embedding a small web server in |
---|
53 | PyKota for example, or something like that. |
---|
54 | |
---|
55 | - Log something when --add is used with existing entries. |
---|
56 | Maybe add a new command line option to force/not force |
---|
57 | modification of existing entries. |
---|
58 | |
---|
59 | - Finish implementation of quota-then-balance and |
---|
60 | balance-then-quota. |
---|
61 | |
---|
62 | - Test and document a possible workaround for knowing |
---|
63 | if the job is a banner (embed a postscript comment |
---|
64 | in the banner). |
---|
65 | |
---|
66 | - pkusers --nogroup |
---|
67 | pkusers --ingroups gr1,gr2,... --outgroups gr3,gr4,... |
---|
68 | |
---|
69 | - Ensures data are stored in a consistent way with Unicode : |
---|
70 | I can't reproduce the problem. |
---|
71 | |
---|
72 | - Allow the --ingroups command line option to repykota, to |
---|
73 | report only users members of the specified groups. |
---|
74 | |
---|
75 | - Documentation... |
---|
76 | |
---|
77 | - Complete web administrative interface with graphical reports. |
---|
78 | |
---|
79 | - Group administrators (think quotagrpdmins for disk quotas). |
---|
80 | Won't be implemented for now. |
---|
81 | |
---|
82 | - Multidatabase support, e.g. store users in LDAP, quota |
---|
83 | related datas in PostgreSQL, history in text file, |
---|
84 | and so on... For 2.0, probably not before. |
---|
85 | |
---|
86 | |
---|
87 | ============================================================ |
---|
88 | |
---|
89 | Please e-mail bugs to: alet@librelogiciel.com (Jerome Alet) |
---|