root / pykota / trunk / NEWS @ 976

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

Stupid accounting method was added.

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