root / pykota / trunk / NEWS @ 978

Revision 978, 9.5 kB (checked in by jalet, 21 years ago)

Comment

  • 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.05alpha3 :
25   
26        - A 'stupid' and unreliable accounting method was
27          implemented to serve as an example on how to
28          do this sort of things. This method only counts
29          the 'showpage' statements in the input data.
30          See sample configuration file for details.
31          Pluggable accounting methods work, but I advise
32          you TO NOT USE THIS ONE WHICH IS JUST AN EXAMPLE.
33          It is not reliable enough to be used.
34          Use the 'querying' accounting method instead.
35         
36    - 1.05alpha2 :
37   
38        - Pluggable accounting methods.
39       
40        - Better error handling.
41       
42    - 1.05alpha1 :
43   
44        - SECURITY file added to help improve PyKota's security.
45       
46        - Extracting the printer's internal page counter is now
47          tried several times, waiting several seconds between
48          two tries. This lets the time to warm up for some printers
49          which don't answer when they are sleeping (my Apple
50          LaserWriter 16/600 PS is in this case, maybe others too)
51         
52        - Small display bug fixed in repykota
53         
54    - 1.04 :
55   
56        - Default print policy for users/groups unknown from
57          the print quota system is now DENY instead of ALLOW,
58          since ALLOW can generate inaccurate results
59          (incorrect job sizes charged to the wrong persons)
60         
61        - LPRng support works !
62       
63        - A bug was introduced some time ago wrt printers' default
64          policy for unknown users. It is now corrected.
65       
66        - repykota now displays prices per job and per page for each
67          printer, if they are defined.
68         
69        - Minor display bug fixed in repykota.
70       
71        - Problem when running repykota with an empty database was fixed.
72       
73    - 1.03 :
74   
75        - Upgrade script included for earlier versions.
76          Please look inside the initscripts subdirectory.
77          THE DATABASE SCHEMA HAS CHANGED, PLEASE UPGRADE.
78         
79        - repykota now reports account balances too.
80       
81        - PyKota now has a nice logo, see the logos
82          subdirectory.
83       
84        - Manual pages were finally updated.
85       
86        - Group quotas seem to work now !
87       
88        - The new database schema allows to keep an history of all
89          jobs as well as charge users per page and/or per job,
90          and track users' account balance.
91         
92        - edpykota now accepts much more command line options to 
93          use the new functionnalities. See edpykota --help for
94          details.
95         
96        - The installation script now allows to install the sample
97          configuration file during first installation.
98         
99        - More group quota code works, but still not finished. 
100       
101        - The CGI script displays a link to PyKota's website.
102       
103        - The job history is now kept, this will allow per-period
104          reports in the future.
105         
106        - After having modified the quota for an user with edpykota,
107          a quota check is done to eventually warn the user/admin about
108          a quota which is too low to print.
109         
110        - A workaround is provided for HP Printers : their internal
111          page counter is only saved to NVRAM in a 10 increment, so
112          if you switch them off and then on, the reported page counter
113          may be lower than the real number of pages printed.
114          See http://web.mit.edu/source/third/lprng/doc/LPRng-HOWTO-15.html
115          We unconditionnally set the last job's page count to
116          abs(int((10 - abs(lastcounter(snmp) - lastcounter(storage)) / 2))
117          in this case.
118          For a more accurate accounting, never switch your HP printers
119          off.
120         
121        - A fix is provided for printers which only have a volatile 
122          page counter (reset to 0 every time you switch the printer on)
123          This should allow PyKota to work reasonably fine with HP Laserjet
124          4L/5L/6L, not perfect, but better than nothing.
125          See http://web.mit.edu/source/third/lprng/doc/LPRng-HOWTO-15.html
126          For a more accurate accounting, never switch your HP printers
127          off. This is untested, please report any problem.
128         
129        - A bug was fixed when edpykota --add was used with users who already
130          had a quota on the specified printer.
131         
132        - A small display bug in repykota was introduced in preliminary
133          1.03 versions, and fixed later on.
134         
135        - Some minor bugs which happened in rare situations were fixed.
136       
137        - Support for AppleTalk printers was added, see sample configuration
138          file for details.
139         
140        - Users and group printing can now be controlled (limited) either by 
141          print quota or by account balance.
142       
143    - 1.02 :
144   
145        - The installation script now checks for software availability
146          and in case a software is missing asks the user if he
147          wants to continue with the installation or abort it.
148         
149        - The configuration file pykota.conf is now expected to be
150          found in /etc instead of in /etc/cups
151          The installation script prompts the user to see if he
152          wants to move an old configuration file to the new location
153          if needed.
154         
155        - Improved documentation.
156       
157        - You can now set the tcp/ip port on which the Quota Storage
158          Server is listening, see sample configuration file for details.
159       
160        - Better general error handling.
161       
162        - Upgrade script for pre 1.01 PostgreSQL database schema is now
163          included as well.
164       
165    - 1.01 :
166   
167        - The configuration file now accepts an option   
168          to choose the recipient(s) of the email messages :
169         
170            - DevNull means no one will receive them.
171            - User means only the user will receive them.
172            - Admin means only the admin will receive them.
173            - Both means the User and the Admin will receive them.
174           
175        - The configuration file now uses hard-coded default values
176          when an option is not set. See sample configuration file
177          for details.
178         
179        - Manual pages are included since 1.00, but I forgot to   
180          add this information to this file.
181         
182        - Redistribution terms for the official package have 
183          softened and are now fully GPL compatible :
184          unrestricted modification is now allowed even for
185          the version number.
186         
187    - 1.00 :
188   
189        - edpykota now accepts a --noquota option. This
190          disable quota checking while still doing page
191          accounting. This is really useful for people
192          who don't want to limit their users but want
193          to know how much pages they print.
194         
195        - Some untested scripts were added to retrieve
196          the life time page counter of non-SNMP printers.
197         
198        - Every directory now has a specific README file. 
199       
200    - 0.99 :
201   
202        - Under some circumstances while the user wasn't allowed
203          to print, he didn't receive any email message. It is
204          now fixed.
205         
206        - When an user wasn't allowed to print, the quota for
207          the previous user wasn't updated. This is now fixed.
208         
209    - 0.98 :
210   
211        - Correctly handle the case where the printer is switched off.
212       
213        - Small bug wrt syslog fixed.
214       
215    - 0.97 :
216   
217        - edpykota accepts wildcards on its command line for users/groups too
218          if the --add option is not set, e.g. :
219         
220              $ edpykota --printer lp --softlimit 50 --hardlimit 100 "jer*"
221             
222        - If no user name is passed at all, then a default wildcard of "*"
223          which means apply the command on ALL users for this printer is used.
224         
225        - Small bug fixes.
226       
227    - 0.96 :
228
229        - Options requester, policy, admin, adminmail and gracedelay can now
230          be set either globally or per printer. The printer option has
231          priority if both are defined.
232
233        - More powerful configuration parser.
234       
235        - If all options are defined globally, there's no need to
236          define a section for each printer in the configuration
237          file anymore. Just define a [global] section and it's ok.
238
239    - 0.95 :
240
241        - External requesters for printers finally added.
242
243        - Full internationalization (english and french are supported)
244 
245        - More complete quota usage report
246
247        - CGI script to access to the quota usage report
248
249        - Several bugs fixed.
250
251
252    - 0.9 :
253
254        - First public version
Note: See TracBrowser for help on using the browser.