root / pykota / trunk / NEWS @ 973

Revision 973, 8.9 kB (checked in by jalet, 21 years ago)

Pluggable accounting methods (actually doesn't support external scripts)

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