root / pykota / trunk / NEWS @ 927

Revision 927, 7.7 kB (checked in by jalet, 21 years ago)

Groups quota work now !

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1# $Id$
2
3PyKota - Print Quota for CUPS
4
5(c) 2003 Jerome Alet <alet@librelogiciel.com>
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
19
20============================================================
21
22PyKota NEWS :
23
24    - 1.03beta :
25   
26        - Group quotas seem to work now !
27       
28    - 1.03alpha :
29   
30        - IMPORTANT : DataBase schema has changed.
31          DON'T TRY TO UPGRADE AN EXISTING PYKOTA INSTALLATION !
32          The upgrade script will be finalized ASAP, be patient,
33          or drop your old quota database to start anew.
34          Upgrade script will be provided when 1.03final will
35          be out.
36         
37        - The new database schema allows to keep an history of all
38          jobs as well as charge users per page and/or per job,
39          and track users' account balance.
40         
41        - edpykota now accepts much more command line options to 
42          use the new functionnalities. See edpykota --help for
43          details.
44         
45        - The installation script now allows to install the sample
46          configuration file during first installation.
47         
48        - More group quota code works, but still not finished. 
49       
50        - The CGI script displays a link to PyKota's website.
51       
52        - The job history is now kept, this will allow per-period
53          reports in the future.
54         
55        - After having modified the quota for an user with edpykota,
56          a quota check is done to eventually warn the user/admin about
57          a quota which is too low to print.
58         
59        - A workaround is provided for HP Printers : their internal
60          page counter is only saved to NVRAM in a 10 increment, so
61          if you switch them off and then on, the reported page counter
62          may be lower than the real number of pages printed.
63          See http://web.mit.edu/source/third/lprng/doc/LPRng-HOWTO-15.html
64          We unconditionnally set the last job's page count to
65          abs(int((10 - abs(lastcounter(snmp) - lastcounter(storage)) / 2))
66          in this case.
67          For a more accurate accounting, never switch your HP printers
68          off.
69         
70        - A fix is provided for printers which only have a volatile 
71          page counter (reset to 0 every time you switch the printer on)
72          This should allow PyKota to work reasonably fine with HP Laserjet
73          4L/5L/6L, not perfect, but better than nothing.
74          See http://web.mit.edu/source/third/lprng/doc/LPRng-HOWTO-15.html
75          For a more accurate accounting, never switch your HP printers
76          off. This is untested, please report any problem.
77         
78        - A bug was fixed when edpykota --add was used with users who already
79          had a quota on the specified printer.
80         
81        - A small display bug in repykota was introduced in preliminary
82          1.03 versions, and fixed later on.
83         
84        - Some minor bugs which happened in rare situations were fixed.
85       
86        - Support for AppleTalk printers was added, see sample configuration
87          file for details.
88         
89        - Users and group printing can now be controlled (limited) either by 
90          print quota or by account balance.
91       
92    - 1.02 :
93   
94        - The installation script now checks for software availability
95          and in case a software is missing asks the user if he
96          wants to continue with the installation or abort it.
97         
98        - The configuration file pykota.conf is now expected to be
99          found in /etc instead of in /etc/cups
100          The installation script prompts the user to see if he
101          wants to move an old configuration file to the new location
102          if needed.
103         
104        - Improved documentation.
105       
106        - You can now set the tcp/ip port on which the Quota Storage
107          Server is listening, see sample configuration file for details.
108       
109        - Better general error handling.
110       
111        - Upgrade script for pre 1.01 PostgreSQL database schema is now
112          included as well.
113       
114    - 1.01 :
115   
116        - The configuration file now accepts an option   
117          to choose the recipient(s) of the email messages :
118         
119            - DevNull means no one will receive them.
120            - User means only the user will receive them.
121            - Admin means only the admin will receive them.
122            - Both means the User and the Admin will receive them.
123           
124        - The configuration file now uses hard-coded default values
125          when an option is not set. See sample configuration file
126          for details.
127         
128        - Manual pages are included since 1.00, but I forgot to   
129          add this information to this file.
130         
131        - Redistribution terms for the official package have 
132          softened and are now fully GPL compatible :
133          unrestricted modification is now allowed even for
134          the version number.
135         
136    - 1.00 :
137   
138        - edpykota now accepts a --noquota option. This
139          disable quota checking while still doing page
140          accounting. This is really useful for people
141          who don't want to limit their users but want
142          to know how much pages they print.
143         
144        - Some untested scripts were added to retrieve
145          the life time page counter of non-SNMP printers.
146         
147        - Every directory now has a specific README file. 
148       
149    - 0.99 :
150   
151        - Under some circumstances while the user wasn't allowed
152          to print, he didn't receive any email message. It is
153          now fixed.
154         
155        - When an user wasn't allowed to print, the quota for
156          the previous user wasn't updated. This is now fixed.
157         
158    - 0.98 :
159   
160        - Correctly handle the case where the printer is switched off.
161       
162        - Small bug wrt syslog fixed.
163       
164    - 0.97 :
165   
166        - edpykota accepts wildcards on its command line for users/groups too
167          if the --add option is not set, e.g. :
168         
169              $ edpykota --printer lp --softlimit 50 --hardlimit 100 "jer*"
170             
171        - If no user name is passed at all, then a default wildcard of "*"
172          which means apply the command on ALL users for this printer is used.
173         
174        - Small bug fixes.
175       
176    - 0.96 :
177
178        - Options requester, policy, admin, adminmail and gracedelay can now
179          be set either globally or per printer. The printer option has
180          priority if both are defined.
181
182        - More powerful configuration parser.
183       
184        - If all options are defined globally, there's no need to
185          define a section for each printer in the configuration
186          file anymore. Just define a [global] section and it's ok.
187
188    - 0.95 :
189
190        - External requesters for printers finally added.
191
192        - Full internationalization (english and french are supported)
193 
194        - More complete quota usage report
195
196        - CGI script to access to the quota usage report
197
198        - Several bugs fixed.
199
200
201    - 0.9 :
202
203        - First public version
Note: See TracBrowser for help on using the browser.