root / pykota / trunk / NEWS @ 1044

Revision 1044, 13.7 kB (checked in by jalet, 21 years ago)

Forgotten important change.

  • 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.09beta :
25   
26        - edpykota finalized
27       
28    - 1.09alpha2 :
29   
30        - LDAP schema modified a bit. Please upgrade.
31       
32        - LDAP backend works !
33       
34        - repykota and warnpykota allow the root user to pass
35          users or groups names on the command line. Users
36          and groups names may contain wildcards.
37         
38        - repykota and warnpykota only reports or warns the
39          current user when launched by non-root users.
40         
41        - Minor bug fixes. 
42   
43    - 1.09alpha1 :
44   
45        - More work on LDAP storage backend. Many options
46          were added to /etc/pykota.conf to give some
47          hints to the LDAP storage backend.
48         
49        - Severe database access optimizations were done by
50          rewriting most of the Quota Storage backends drivers.
51     
52    - 1.08 :
53   
54        - Major bug fix wrt LPRng support for remote jobs.
55       
56        - Major bug fix wrt increase/decrease account balances.
57       
58    - 1.08alpha8 :
59   
60        - Code refactoring.
61       
62        - A single user/password pair is used to connect
63          to the database backend. The storageuser configuration
64          field, and its associated passwords storageuserpw, are
65          not used anymore.
66         
67        - You can now set PyKota in debug mode, see sample configuration 
68          file for details.
69          WARNING : only Quota Storage backend queries are logged in
70          debug mode, for now.
71       
72    - 1.08alpha7 :
73   
74        - Very latest LDAP schema.
75       
76        - Code enhancement wrt easy pluggability of PyKota attributes
77          and object classes into an existing LDAP directory.
78       
79    - 1.08alpha6 :
80   
81        - Minor bug corrections
82       
83        - More work on LDAP : new schema
84       
85    - 1.08alpha5 :
86   
87        - More good work on LDAP storage.
88          repykota now works reasonably well with the sample LDAP directory.
89       
90    - 1.08alpha4 :
91   
92        - LDAP schema included.
93          THIS IS JUST FOR PEOPLE TO DISCUSS ABOUT THIS.
94          LDAP SUPPORT DOESN'T WORK YET, AND THE SCHEMA
95          MAY CHANGE IN THE FUTURE. PLEASE TELL US
96          WHAT YOU THINK ABOUT THIS SCHEMA ON THE
97          MAILING LIST.
98         
99    - 1.08alpha3 :
100   
101        - External accounting methods were partly rewritten :
102         
103          - No more "broken pipe" should happen.
104         
105          - They now take care of the number of copies
106            This may be unneeded though, if the postscript
107            file already does this, because this would
108            overcharge users (number of copies counted
109            two times). NEEDS MORE TESTING.
110           
111          - The sample configuration file now contains 
112            an external accounting method example which should
113            work with all DSC compliant Postscript files.
114           
115        - Some small bugs were fixed.   
116       
117    - 1.08alpha2 :
118   
119        - Now works with net-snmp v5.0 and above.
120          It already worked, but the sample configuration
121          file didn't contain appropriate values...
122       
123    - 1.07 : Release of the Shame !
124   
125        - The external accounting methods driver was left out of
126          the CVS tree. Nobody could use it since it wasn't included !
127         
128    - 1.06 :
129   
130        - Severe bug fixed : if you had a printer in
131          power saving state which couldn't answer immediately,
132          a bug was triggered.
133          It was caused by a bad copy/paste which
134          forgot to import a Python module at run time.
135         
136    - 1.05 :
137   
138        - External accounters are finally available !
139          This means that you can plug any page accounting
140          method you like by setting the appropriate
141          'accounter' field in /etc/pykota.conf
142          See the sample conf/pykota.conf.sample to
143          learn how to do.
144         
145          NB : Both 'external' and 'stupid' accounting methods
146               account a job size just before *this* job is
147               sent to the printer.
148               The original 'querying' method accounts a job
149               size just before *the next* job is sent to
150               the printer.
151       
152    - 1.05alpha3 :
153   
154        - A 'stupid' and unreliable accounting method was
155          implemented to serve as an example on how to
156          do this sort of things. This method only counts
157          the 'showpage' statements in the input data.
158          See sample configuration file for details.
159          Pluggable accounting methods work, but I advise
160          you TO NOT USE THIS ONE WHICH IS JUST AN EXAMPLE.
161          It is not reliable enough to be used.
162          Use the 'querying' accounting method instead.
163         
164    - 1.05alpha2 :
165   
166        - Pluggable accounting methods.
167       
168        - Better error handling.
169       
170    - 1.05alpha1 :
171   
172        - SECURITY file added to help improve PyKota's security.
173       
174        - Extracting the printer's internal page counter is now
175          tried several times, waiting several seconds between
176          two tries. This lets the time to warm up for some printers
177          which don't answer when they are sleeping (my Apple
178          LaserWriter 16/600 PS is in this case, maybe others too)
179         
180        - Small display bug fixed in repykota
181         
182    - 1.04 :
183   
184        - Default print policy for users/groups unknown from
185          the print quota system is now DENY instead of ALLOW,
186          since ALLOW can generate inaccurate results
187          (incorrect job sizes charged to the wrong persons)
188         
189        - LPRng support works !
190       
191        - A bug was introduced some time ago wrt printers' default
192          policy for unknown users. It is now corrected.
193       
194        - repykota now displays prices per job and per page for each
195          printer, if they are defined.
196         
197        - Minor display bug fixed in repykota.
198       
199        - Problem when running repykota with an empty database was fixed.
200       
201    - 1.03 :
202   
203        - Upgrade script included for earlier versions.
204          Please look inside the initscripts subdirectory.
205          THE DATABASE SCHEMA HAS CHANGED, PLEASE UPGRADE.
206         
207        - repykota now reports account balances too.
208       
209        - PyKota now has a nice logo, see the logos
210          subdirectory.
211       
212        - Manual pages were finally updated.
213       
214        - Group quotas seem to work now !
215       
216        - The new database schema allows to keep an history of all
217          jobs as well as charge users per page and/or per job,
218          and track users' account balance.
219         
220        - edpykota now accepts much more command line options to 
221          use the new functionnalities. See edpykota --help for
222          details.
223         
224        - The installation script now allows to install the sample
225          configuration file during first installation.
226         
227        - More group quota code works, but still not finished. 
228       
229        - The CGI script displays a link to PyKota's website.
230       
231        - The job history is now kept, this will allow per-period
232          reports in the future.
233         
234        - After having modified the quota for an user with edpykota,
235          a quota check is done to eventually warn the user/admin about
236          a quota which is too low to print.
237         
238        - A workaround is provided for HP Printers : their internal
239          page counter is only saved to NVRAM in a 10 increment, so
240          if you switch them off and then on, the reported page counter
241          may be lower than the real number of pages printed.
242          See http://web.mit.edu/source/third/lprng/doc/LPRng-HOWTO-15.html
243          We unconditionnally set the last job's page count to
244          abs(int((10 - abs(lastcounter(snmp) - lastcounter(storage)) / 2))
245          in this case.
246          For a more accurate accounting, never switch your HP printers
247          off.
248         
249        - A fix is provided for printers which only have a volatile 
250          page counter (reset to 0 every time you switch the printer on)
251          This should allow PyKota to work reasonably fine with HP Laserjet
252          4L/5L/6L, not perfect, but better than nothing.
253          See http://web.mit.edu/source/third/lprng/doc/LPRng-HOWTO-15.html
254          For a more accurate accounting, never switch your HP printers
255          off. This is untested, please report any problem.
256         
257        - A bug was fixed when edpykota --add was used with users who already
258          had a quota on the specified printer.
259         
260        - A small display bug in repykota was introduced in preliminary
261          1.03 versions, and fixed later on.
262         
263        - Some minor bugs which happened in rare situations were fixed.
264       
265        - Support for AppleTalk printers was added, see sample configuration
266          file for details.
267         
268        - Users and group printing can now be controlled (limited) either by 
269          print quota or by account balance.
270       
271    - 1.02 :
272   
273        - The installation script now checks for software availability
274          and in case a software is missing asks the user if he
275          wants to continue with the installation or abort it.
276         
277        - The configuration file pykota.conf is now expected to be
278          found in /etc instead of in /etc/cups
279          The installation script prompts the user to see if he
280          wants to move an old configuration file to the new location
281          if needed.
282         
283        - Improved documentation.
284       
285        - You can now set the tcp/ip port on which the Quota Storage
286          Server is listening, see sample configuration file for details.
287       
288        - Better general error handling.
289       
290        - Upgrade script for pre 1.01 PostgreSQL database schema is now
291          included as well.
292       
293    - 1.01 :
294   
295        - The configuration file now accepts an option   
296          to choose the recipient(s) of the email messages :
297         
298            - DevNull means no one will receive them.
299            - User means only the user will receive them.
300            - Admin means only the admin will receive them.
301            - Both means the User and the Admin will receive them.
302           
303        - The configuration file now uses hard-coded default values
304          when an option is not set. See sample configuration file
305          for details.
306         
307        - Manual pages are included since 1.00, but I forgot to   
308          add this information to this file.
309         
310        - Redistribution terms for the official package have 
311          softened and are now fully GPL compatible :
312          unrestricted modification is now allowed even for
313          the version number.
314         
315    - 1.00 :
316   
317        - edpykota now accepts a --noquota option. This
318          disable quota checking while still doing page
319          accounting. This is really useful for people
320          who don't want to limit their users but want
321          to know how much pages they print.
322         
323        - Some untested scripts were added to retrieve
324          the life time page counter of non-SNMP printers.
325         
326        - Every directory now has a specific README file. 
327       
328    - 0.99 :
329   
330        - Under some circumstances while the user wasn't allowed
331          to print, he didn't receive any email message. It is
332          now fixed.
333         
334        - When an user wasn't allowed to print, the quota for
335          the previous user wasn't updated. This is now fixed.
336         
337    - 0.98 :
338   
339        - Correctly handle the case where the printer is switched off.
340       
341        - Small bug wrt syslog fixed.
342       
343    - 0.97 :
344   
345        - edpykota accepts wildcards on its command line for users/groups too
346          if the --add option is not set, e.g. :
347         
348              $ edpykota --printer lp --softlimit 50 --hardlimit 100 "jer*"
349             
350        - If no user name is passed at all, then a default wildcard of "*"
351          which means apply the command on ALL users for this printer is used.
352         
353        - Small bug fixes.
354       
355    - 0.96 :
356
357        - Options requester, policy, admin, adminmail and gracedelay can now
358          be set either globally or per printer. The printer option has
359          priority if both are defined.
360
361        - More powerful configuration parser.
362       
363        - If all options are defined globally, there's no need to
364          define a section for each printer in the configuration
365          file anymore. Just define a [global] section and it's ok.
366
367    - 0.95 :
368
369        - External requesters for printers finally added.
370
371        - Full internationalization (english and french are supported)
372 
373        - More complete quota usage report
374
375        - CGI script to access to the quota usage report
376
377        - Several bugs fixed.
378
379
380    - 0.9 :
381
382        - First public version
Note: See TracBrowser for help on using the browser.