root / pykota / trunk / NEWS @ 933

Revision 932, 7.8 kB (checked in by jalet, 21 years ago)

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