root / pykota / trunk / NEWS @ 1494

Revision 1494, 34.9 kB (checked in by jalet, 20 years ago)

Revert to old polling loop. Will need optimisations

  • 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-2004 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.19alpha13 :
25   
26        - Get back to an old version of the polling loop which
27          worked fine, but non-optimally. Will be optimized
28          as time permits.
29         
30    - 1.19alpha12 :
31   
32        - Job's size is now precomputed unconditionnally using
33          the generic PDL analyzer.
34          NB : This value is not yet used to pre-allow/deny the
35          job.
36       
37    - 1.19alpha11 :
38   
39        - The pykota filter is now completely deprecated and
40          can't be used anymore. LPRng users MUST download
41          an older version of PyKota. CUPS users MUST use
42          cupspykota. Better support for LPRng will come
43          in the near future.
44         
45    - 1.19alpha10 :
46   
47        - pykotme now uses generic PDL Analyzer directly instead
48          of spawning a new process.
49         
50        - Improvements to generic PDL Analyzer.
51       
52        - 25% Speedup in PCL parser. Getting more of the Python version
53          will probably be difficult, since the completely table driven
54          parser I wrote is slower than the original algorithm. Then,
55          the original algorithm is still used for now.
56          Probable that more speed could be achieved using mmap, at the
57          expense of severe memory consumption.
58       
59        - configuration simplifications : the "accounter" directive's
60          'hardware' arguments now accepts what was in the "requester"
61          directive as it's content. The "requester" directive is not
62          supported anymore. See sample configuration file for details.
63       
64    - 1.19alpha9 :
65       
66        - pkpgcounter is now just a wrapper around the PDLAnalyzer class
67       
68        - pykotaOptions LDAP attribute now accepts non-ascii characters
69          too.
70         
71        - First try at cupspykota main loop rewrite
72       
73    - 1.19alpha8 :
74   
75        - 'querying' accounting method is now called 'hardware'
76       
77        - 'external' accounting method is now called 'software'
78       
79        - 'stupid' accounting method doesn't exist anymore
80       
81        - 'snmp' requester doesn't exist anymore
82       
83        - code simplifications in external requester
84       
85    - 1.19alpha7 :
86     
87        - Database schema change (both LDAP and PostgreSQL) to
88          allow storage of the job-originating-hostname attribute.
89          An SQL upgrade script is present. The code is not yet
90          capable of setting/retrieving this attribute. Support
91          for this functionnality will be added in the future.
92         
93    - 1.19alpha6 :
94   
95        - problems connecting to SMTP servers are now catched.
96       
97        - pykotme now uses pkpgcounter to compute the size of the
98          job. This modification adds PCL5 and soon PCLXL (PCL6)
99          support. You can now get quotes for PCL in addition to
100          PostScript.
101         
102        - pkpgcounter now includes first try at PCLXL parser. 
103          It is currently disabled until it's finished.
104         
105    - 1.19alpha5 :
106   
107        - cupspykota polling loop fix for MacOSX (at least)
108       
109        - logging subsystem now logs PID too, to ease diagnosing
110          problems under heavy load.
111         
112        - pkpgcounter enhancements.
113       
114        - pkprinters --skipexisting now tells pkprinters to not
115          modify existing printers when --add is used.
116          pkprinters logs a warning message whenever --add is
117          used and a printer already exists.
118         
119        - LDAP schema now allows accented chars in pykotaFileName
120          and pykotaTitle attributes.
121       
122    - 1.19alpha4 :
123   
124        - a bad copy&paste prevented pkpgcounter to work at all, this
125          is now fixed.
126         
127        - improved PCL support in pkpgcounter, with the use of
128          HP PCL/PJL Reference Set
129          PCL5 Printer Language Technical Quick Reference Guide
130       
131        - pkpgcounter now uses mmap to speed things up : duration
132          is halved with the sample 87 pages PCL document I use for
133          testing.
134         
135    - 1.19alpha3 :
136   
137        - pkprinters now accepts the --list command line argument
138          to list informations about printers.
139         
140    - 1.19alpha2 :
141   
142        - pkpgcounter is now included as a smart external
143          accounter which can handle both PostScript and PCL.
144         
145    - 1.19alpha1 :
146   
147        - PYKOTALIMITBY environment variable is now exported too.
148       
149        - Inclusion of Michele Baldessari's work on autotools.
150       
151    - 1.18 :
152   
153        - Improved documentation
154       
155    - 1.18beta2 :
156     
157        - Fix for raw jobs with cupspykota
158       
159    - 1.18beta :
160   
161        - Small fix for new waitprinter.sh script
162       
163        - Better tracebacks on error conditions
164       
165        - Improved translations
166       
167        - Improved documentation
168       
169    - 1.18alpha15 :
170
171        - waitprinter.sh replaced by a new and possibly faster
172          and more powerful one.
173   
174        - Names can now begin with a digit.
175       
176        - Stability improvement for quotas set on printers groups.
177       
178    - 1.18alpha14 :
179   
180        - Catches more (all ?) problems with SMTP servers instead
181          of breaking.
182         
183        - Italian translation added.
184       
185    - 1.18alpha13 :
186   
187        - Pre and Post hooks are now available in the pykota
188          filter as well.
189         
190        - The pykota filter doesn't check last user's quota
191          anymore when delayed hardware accounting is used :
192          this will be done anyway the next time the last
193          user will print again. This saves some database
194          queries which are unneeded.
195       
196    - 1.18alpha12 :
197   
198        - Pre and Post hooks to external commands with many
199          many environment variables available are useable
200          from the cupspykota backend.
201          See sample configuration file for details and help.
202         
203    - 1.18alpha11 :
204   
205        - Hopefully final fix wrt groups (users and printers)
206       
207    - 1.18alpha10 :
208   
209        - Fixed nested printer groups accounting.
210       
211        - Fixed user groups + printer groups problem.
212       
213    - 1.18alpha9 :
214   
215        - Fix for LDAP problem when job price was 0.
216       
217        - Fix for empty user groups with LDAP.
218       
219        - Preliminary version of the snmpprinterstatus command added.
220       
221    - 1.18alpha8 :
222   
223        - Don't retrieve data when not needed.
224          This avoids many database queries.
225       
226    - 1.18alpha7 :
227   
228        - New experimental ldapcache directive to improve
229          LDAP caching.
230         
231    - 1.18alpha6 :
232       
233        - New configuration directive added : maildomain
234          to specify the domain to send mail to when user
235          email address is not set in PyKota database.
236         
237        - More complete email message headers. 
238         
239    - 1.18alpha5 :
240   
241        - Debian packaging specific files, contributed by
242          Peter Hawkins are now included in the project's tree.
243         
244        - Preliminary work on future low-level LDAP caching to speed
245          up modifications (at least).
246         
247    - 1.18alpha4 :
248   
249        - Applied some of the modifications suggested by
250          Peter Hawkins, for better Debian integration.
251          Most notably cupspykota, pykota, and the shell
252          scripts are now installed into /usr/share/pykota
253          instead of into /usr/bin
254          BEWARE : double check that your symbolic link
255          to cupspykota is correct, and that your pykota.conf
256          file use correct path for the shell scripts like
257          waitprinter.sh and al.
258         
259        - pkhint command added, to help in configuring correct
260          accounting method for PyKota.
261         
262    - 1.18alpha3 :
263   
264        - Fixed a rare bug in cupspykota backend which gave
265          incorrect "CUPS backend died abnormally" messages.
266       
267    - 1.18alpha2 :
268   
269        - Added the pkprinters command line tool to manage printers
270          exclusively.
271       
272    - 1.18alpha1 :
273   
274        - Preliminary work on Relationnal Database Independance.
275       
276        - Sample report made from OpenOffice.org added as PDF and SXC.
277       
278    - 1.17 :
279   
280        - Finalized release.
281       
282    - 1.17alpha2 :
283   
284        - Fix stupid software accounting bug in the CUPS backend.
285       
286    - 1.17alpha1 :
287   
288        - User/Group deletion code in edpykota rewritten.
289       
290    - 1.16 :
291   
292        - Preliminary documentation on how to use OpenOffice.org
293          to create personnalized reports for PyKota + PostgreSQL.
294         
295        - Spanish installation guide for CUPS+PyKota+PostgreSQL
296          added to the documentation. Doesn't yet document v1.16
297          though.
298       
299        - Portuguese Portuguese translation replaces Brasilian
300          Portuguese Translation. Brasilian portuguese
301          translation is still available under the 'br' locale.
302       
303    - 1.16beta3 :
304   
305        - Swedish translation added.
306       
307        - Small fix in documentation.
308       
309    - 1.16beta2 :
310   
311        - Small fix for job cancelling code while job already
312          printing in CUPS backend.
313         
314        - Big fix wrt printing policies for unknown users. 
315       
316    - 1.16beta1 :
317   
318        - Manpages upgraded.
319       
320    - 1.16alpha26 :
321   
322        - Job price is now computed like this :
323       
324          SUM((NbPages * PricePerPage) + PricePerJob)
325         
326          For current printer and all the printers groups it is
327          a member of, if any.
328         
329          This may be difficult to grasp, but offers unprecedented
330          flexibility.
331         
332    - 1.16alpha25 :
333   
334        - Email address can be set at user creation time,
335          using the following syntax :
336         
337            $ edpykota --add username/email@yourdomain.com
338       
339    - 1.16alpha24 :
340   
341        - CGI script now can show the printing history.
342       
343        - Bug wrt number of copies should be fixed.
344       
345        - Major code refactoring => It is now possible to
346          automatically add printers on first print.
347       
348    - 1.16alpha23 :
349   
350        - Fixed potential accuracy problem if a user printed on
351          several printers at the very same time.
352       
353    - 1.16alpha22 :
354   
355        - edpykota now allows adding printers to printer groups
356       
357    - 1.16alpha21 :
358   
359        - Allows the dot in user and printer names.
360       
361        - Printer groups are now cached too.
362       
363    - 1.16alpha20 :
364   
365        - Fixed several small bugs with the help of PyChecker.
366       
367    - 1.16alpha19 :
368     
369        - Fixed a bug in PostgreSQL backend's code.
370       
371    - 1.16alpha18 :
372   
373        - Initial code for printer groups support. Printer groups have
374          to be added with external tools like psql or gq for example.
375          Printer groups seems to work fine with users. Untested with user
376          groups for now.
377
378        - Several minor visual problems fixed in reports.
379       
380        - Fixed a bug in LDAP date handling.
381       
382        - Fix for LDAP problem with some combination of OpenLDAP + Python-LDAP
383          + some particular settings.
384         
385        - mailandpopup.sh shell script added. See sample configuration file
386          for details.
387       
388        - Several environment variables are now exported when executing
389          external commands (accounters, requesters, mailers) :
390           
391            PYKOTAUSERNAME => user who is printing
392            PYKOTAPRINTERNAME => printer on which the job is being sent
393            PYKOTATITLE => Job's title
394            PYKOTAFILENAME => Job's filename
395            PYKOTACOPIES => number of copies asked
396            PYKOTAOPTIONS => print command options (-o with CUPS)
397         
398    - 1.16alpha17 :
399   
400        - Added portugues translation.
401       
402        - Major code refactoring in accounters.
403       
404    - 1.16alpha16 :
405   
406        - Code refactoring, and addition of a real HTML reporter, to
407          have nice looking and useful web based reports (in the future).
408       
409        - Added utolower configuration option to convert all usernames
410          to lowercase during printing.
411         
412    - 1.15alpha15 :
413   
414        - Now includes the papwaitprinter.sh shell script to wait for
415          AppleTalk enabled printers.
416         
417    - 1.16alpha14 :
418   
419        - Now printing on a printer not defined in the Quota Storage,
420          results in the job being cancelled or stopped, depending
421          on the printing system.
422         
423    - 1.16alpha13 :
424   
425        - Small bugfix wrt Python v2.1
426       
427        - If username is an empty string, user root is assumed.
428       
429        - 'postgresql' is not recognized anymore as a storage backend,
430          you have to use 'pgstorage' instead. 'postgresql' used to
431          be supported for compatibility with very old PyKota versions,
432          this is not the case anymore.
433         
434    - 1.16alpha12 :
435   
436        - Job price added to job history, to keep accounting correct
437          if a printer price per page or per job is modified and the
438          history is not reset : the history would have given a false
439          amount of money charged before the printer's prices were
440          modified, this addition solves the problem.
441         
442    - 1.16alpha11 :
443   
444        - Some preliminary modifications to the database structure for
445          PostgreSQL and OpenLDAP. A script to upgrade a PostgreSQL
446          database is now provided. LDAP attributes now support
447          eq, pres and sub indexes.
448         
449        - Job history now contains additional informations : 
450          number of copies, filename, title and print options.
451         
452    - 1.16alpha10 :
453       
454        - Some modifications done to external policy handling.
455          See sample configuration file for details.
456   
457        - Spanish translation added.
458       
459    - 1.16alpha9 :
460   
461        - mailto can be set to external(...) to warn users above
462          quota with any command of your choice (e.g. linpopup).
463          Several parameters are available, see sample configuration
464          file for details.
465         
466    - 1.16alpha8 :
467   
468        - Now cupspykota transmits SIGTERMS to the original 
469          backend when the user deletes a job being processed.
470         
471        - The documentation is now licensed under the terms of the
472          GNU GPL too.
473         
474    - 1.16alpha7 :
475   
476        - The CUPS backend is now fully functionnal (it seems).
477       
478        - From now on, the use of the pykota filter with CUPS
479          is deprecated. The pykota filter still has to be
480          used with LPRng though.
481       
482    - 1.16alpha6 :
483   
484        - Bug fixed : when edpykota was used to add a printer
485          with no user or group name, a bad user/group name "*" was
486          added to the database.
487         
488    - 1.16alpha5 :
489   
490        - New CUPS backend supports device enumeration !
491          This means that NO manual CUPS configuration has to
492          be done. All can now be done from CUPS web interface.
493       
494    - 1.16alpha4 :
495   
496        - New CUPS backend added.
497       
498    - 1.16alpha3 :
499       
500        - Minimal FAQ document added.
501       
502    - 1.16alpha2 :
503   
504        - CGI script now partially supports browser's language preference
505       
506    - 1.16alpha1 :
507   
508        - Ensures that the LDAP connection is really closed at end.
509       
510        - More complete error messages in case of LDAP operation failure.
511       
512    - 1.15 :
513     
514        - Documentation improved.
515       
516    - 1.15beta :
517   
518        - Command line tools now accept multiple printer
519          names or wildcards, separated with commas.
520         
521    - 1.15alpha9 :
522   
523        - External policy can be used to auto-add unknown users
524          and any other interesting things you may want to do.
525          WARNING : You can't auto-add printers for now.
526          They have to be created manually before.
527          Look at sample configuration file for examples.
528         
529    - 1.15alpha8 :
530   
531        - Job history can be disabled if needed.
532          This feature may be useful for people who use the LDAP
533          backend and don't want their LDAP tree to grow out of
534          control.
535       
536    - 1.15alpha7 :
537   
538        - More work done on caching wrt groups.
539       
540    - 1.15alpha6 :
541   
542        - Performance bottleneck with LDAP solved.
543       
544    - 1.15alpha5 :
545   
546        - Caching mechanism for all database queries.
547
548    - 1.15alpha4 :
549   
550        - Problem with Python 2.3 fixed. Needs some definitive
551          modification.
552         
553    - 1.15alpha3 :
554   
555        - CGI script now tries to restrict view when the
556          REMOTE_USER environment variable is set. This allows
557          people to protect its use with .htaccess files.
558          When unprotected, or if REMOTE_USER is 'root', then
559          unrestricted access is granted.
560          NB : REMOTE_USER is automatically set by the web server
561          (e.g. Apache) when a page with restricted access is viewed.
562         
563    - 1.15alpha2 :
564   
565        - Better detection of LPRng.
566       
567        - Outputs a warning if printing system is unknown.
568       
569    - 1.15alpha1 :
570   
571        - Bug fix in SQL code.
572       
573    - 1.14 :
574   
575        - The PostgreSQL database connection is now always closed before
576          exit. The LDAP database connection too, but it didn't suffer
577          from the problem anyway, AFAICT.
578       
579    - 1.14beta2 :
580   
581        - An LDAP-specific configuration field was introduced, usermail.
582          Use it to specify which LDAP attribute contains a valid email
583          address for the user. See sample configuration file for
584          details.
585       
586    - 1.14beta :
587   
588        - Two new LDAP-specific configuration fields were introduced,
589          newuser and newgroup. Use them to specify if you want to add
590          quota information to existing entries or elsewhere.
591          See sample configuration file for details.
592         
593    - 1.14alpha9 :
594   
595        - Documentation improved.
596       
597        - pykotme now also prints the user's account balance value
598          if the user is registered in the Quota Storage and his
599          limiting factor is "balance".
600         
601    - 1.14alpha8 :
602   
603        - bin/waitprinter.sh is now included to wait for
604          SNMP enabled printers to be idle again before
605          asking for their internal page counter.
606          See sample configuration file for details.
607         
608    - 1.14alpha7 :
609   
610        - edpykota now doesn't check if the user/group is above
611          quota. The check is only done at print time. This
612          prevents the sending of email messages when creating
613          user quotas if quota is already reached at creation
614          time.
615         
616    - 1.14alpha6 :
617   
618        - Configuration file split and moved to /etc/pykota/pykota.conf
619          and /etc/pykota/pykotadmin.conf to prevent simple users to
620          have Read/Write access to the Quota Database.
621          Don't forget to :
622         
623                $ chmod 640 /etc/pykota/pykotadmin.conf
624               
625        - storageuser and storageuserpw configuration fields reintroduced
626          for the same reason.
627         
628        - Code cleaning for future implementation of email addresses
629          support in the PostgreSQL and LDAP backends.
630         
631    - 1.14alpha5 :
632       
633        - Big bug fixed when changing the prices for a printer
634       
635    - 1.14alpha4 :
636   
637        - When adding an user, the user itself and its account balance
638          are now added in the same LDAP entry. Before they were added
639          as two different LDAP entries.
640         
641    - 1.14alpha3 :
642   
643        - Email field added to PostgreSQL database. An upgrade script
644          is included in initscripts/postgresql.
645       
646    - 1.14alpha2 :
647   
648        - Typo fixed when using the --prototype option to edpykota
649       
650    - 1.14alpha1 :
651   
652        - Poor man's treshold included : users with a low account
653          balance (below 1.0 by default, configurable) are sent
654          a warning message.
655         
656        - All warning messages to users are now configurable. 
657          NB : Warning messages to the administrator are not.
658       
659    - 1.13 :
660   
661        - Some small fixes wrt group handling.
662       
663        - The whole module code was passed through PyChecker and
664          several small code inconsistencies were fixed,
665          as well as a bug in the groups code.
666         
667    - 1.13alpha1 :
668   
669        - Bug fix wrt LDAP.
670       
671    - 1.12 :
672   
673        - More complete test added in edpykota.
674       
675    - 1.12alpha2 :
676   
677        - The previous bug fix was incomplete. This is corrected.
678       
679    - 1.12alpha1 :
680   
681        - Small bug fix.
682       
683    - 1.11 :
684   
685        - Now includes the pykotme command line tool, to produce
686          printing quotes for users.
687         
688    - 1.10 :
689   
690        - Bug fixed wrt quota reports when print limiting is by
691          account balance.
692         
693    - 1.09 :
694   
695        - Translations finalized.
696       
697        - Manpages updated.
698       
699        - Installation documentation improved wrt LDAP support.
700       
701    - 1.09beta2 :
702   
703        - The CGI script for quota reports works again, and
704          is much more powerful.
705       
706    - 1.09beta :
707   
708        - edpykota finalized
709       
710    - 1.09alpha2 :
711   
712        - LDAP schema modified a bit. Please upgrade.
713       
714        - LDAP backend works !
715       
716        - repykota and warnpykota allow the root user to pass
717          users or groups names on the command line. Users
718          and groups names may contain wildcards.
719         
720        - repykota and warnpykota only reports or warns the
721          current user when launched by non-root users.
722         
723        - Minor bug fixes. 
724   
725    - 1.09alpha1 :
726   
727        - More work on LDAP storage backend. Many options
728          were added to /etc/pykota.conf to give some
729          hints to the LDAP storage backend.
730         
731        - Severe database access optimizations were done by
732          rewriting most of the Quota Storage backends drivers.
733     
734    - 1.08 :
735   
736        - Major bug fix wrt LPRng support for remote jobs.
737       
738        - Major bug fix wrt increase/decrease account balances.
739       
740    - 1.08alpha8 :
741   
742        - Code refactoring.
743       
744        - A single user/password pair is used to connect
745          to the database backend. The storageuser configuration
746          field, and its associated passwords storageuserpw, are
747          not used anymore.
748         
749        - You can now set PyKota in debug mode, see sample configuration 
750          file for details.
751          WARNING : only Quota Storage backend queries are logged in
752          debug mode, for now.
753       
754    - 1.08alpha7 :
755   
756        - Very latest LDAP schema.
757       
758        - Code enhancement wrt easy pluggability of PyKota attributes
759          and object classes into an existing LDAP directory.
760       
761    - 1.08alpha6 :
762   
763        - Minor bug corrections
764       
765        - More work on LDAP : new schema
766       
767    - 1.08alpha5 :
768   
769        - More good work on LDAP storage.
770          repykota now works reasonably well with the sample LDAP directory.
771       
772    - 1.08alpha4 :
773   
774        - LDAP schema included.
775          THIS IS JUST FOR PEOPLE TO DISCUSS ABOUT THIS.
776          LDAP SUPPORT DOESN'T WORK YET, AND THE SCHEMA
777          MAY CHANGE IN THE FUTURE. PLEASE TELL US
778          WHAT YOU THINK ABOUT THIS SCHEMA ON THE
779          MAILING LIST.
780         
781    - 1.08alpha3 :
782   
783        - External accounting methods were partly rewritten :
784         
785          - No more "broken pipe" should happen.
786         
787          - They now take care of the number of copies
788            This may be unneeded though, if the postscript
789            file already does this, because this would
790            overcharge users (number of copies counted
791            two times). NEEDS MORE TESTING.
792           
793          - The sample configuration file now contains 
794            an external accounting method example which should
795            work with all DSC compliant Postscript files.
796           
797        - Some small bugs were fixed.   
798       
799    - 1.08alpha2 :
800   
801        - Now works with net-snmp v5.0 and above.
802          It already worked, but the sample configuration
803          file didn't contain appropriate values...
804       
805    - 1.07 : Release of the Shame !
806   
807        - The external accounting methods driver was left out of
808          the CVS tree. Nobody could use it since it wasn't included !
809         
810    - 1.06 :
811   
812        - Severe bug fixed : if you had a printer in
813          power saving state which couldn't answer immediately,
814          a bug was triggered.
815          It was caused by a bad copy/paste which
816          forgot to import a Python module at run time.
817         
818    - 1.05 :
819   
820        - External accounters are finally available !
821          This means that you can plug any page accounting
822          method you like by setting the appropriate
823          'accounter' field in /etc/pykota.conf
824          See the sample conf/pykota.conf.sample to
825          learn how to do.
826         
827          NB : Both 'external' and 'stupid' accounting methods
828               account a job size just before *this* job is
829               sent to the printer.
830               The original 'querying' method accounts a job
831               size just before *the next* job is sent to
832               the printer.
833       
834    - 1.05alpha3 :
835   
836        - A 'stupid' and unreliable accounting method was
837          implemented to serve as an example on how to
838          do this sort of things. This method only counts
839          the 'showpage' statements in the input data.
840          See sample configuration file for details.
841          Pluggable accounting methods work, but I advise
842          you TO NOT USE THIS ONE WHICH IS JUST AN EXAMPLE.
843          It is not reliable enough to be used.
844          Use the 'querying' accounting method instead.
845         
846    - 1.05alpha2 :
847   
848        - Pluggable accounting methods.
849       
850        - Better error handling.
851       
852    - 1.05alpha1 :
853   
854        - SECURITY file added to help improve PyKota's security.
855       
856        - Extracting the printer's internal page counter is now
857          tried several times, waiting several seconds between
858          two tries. This lets the time to warm up for some printers
859          which don't answer when they are sleeping (my Apple
860          LaserWriter 16/600 PS is in this case, maybe others too)
861         
862        - Small display bug fixed in repykota
863         
864    - 1.04 :
865   
866        - Default print policy for users/groups unknown from
867          the print quota system is now DENY instead of ALLOW,
868          since ALLOW can generate inaccurate results
869          (incorrect job sizes charged to the wrong persons)
870         
871        - LPRng support works !
872       
873        - A bug was introduced some time ago wrt printers' default
874          policy for unknown users. It is now corrected.
875       
876        - repykota now displays prices per job and per page for each
877          printer, if they are defined.
878         
879        - Minor display bug fixed in repykota.
880       
881        - Problem when running repykota with an empty database was fixed.
882       
883    - 1.03 :
884   
885        - Upgrade script included for earlier versions.
886          Please look inside the initscripts subdirectory.
887          THE DATABASE SCHEMA HAS CHANGED, PLEASE UPGRADE.
888         
889        - repykota now reports account balances too.
890       
891        - PyKota now has a nice logo, see the logos
892          subdirectory.
893       
894        - Manual pages were finally updated.
895       
896        - Group quotas seem to work now !
897       
898        - The new database schema allows to keep an history of all
899          jobs as well as charge users per page and/or per job,
900          and track users' account balance.
901         
902        - edpykota now accepts much more command line options to 
903          use the new functionnalities. See edpykota --help for
904          details.
905         
906        - The installation script now allows to install the sample
907          configuration file during first installation.
908         
909        - More group quota code works, but still not finished. 
910       
911        - The CGI script displays a link to PyKota's website.
912       
913        - The job history is now kept, this will allow per-period
914          reports in the future.
915         
916        - After having modified the quota for an user with edpykota,
917          a quota check is done to eventually warn the user/admin about
918          a quota which is too low to print.
919         
920        - A workaround is provided for HP Printers : their internal
921          page counter is only saved to NVRAM in a 10 increment, so
922          if you switch them off and then on, the reported page counter
923          may be lower than the real number of pages printed.
924          See http://web.mit.edu/source/third/lprng/doc/LPRng-HOWTO-15.html
925          We unconditionnally set the last job's page count to
926          abs(int((10 - abs(lastcounter(snmp) - lastcounter(storage)) / 2))
927          in this case.
928          For a more accurate accounting, never switch your HP printers
929          off.
930         
931        - A fix is provided for printers which only have a volatile 
932          page counter (reset to 0 every time you switch the printer on)
933          This should allow PyKota to work reasonably fine with HP Laserjet
934          4L/5L/6L, not perfect, but better than nothing.
935          See http://web.mit.edu/source/third/lprng/doc/LPRng-HOWTO-15.html
936          For a more accurate accounting, never switch your HP printers
937          off. This is untested, please report any problem.
938         
939        - A bug was fixed when edpykota --add was used with users who already
940          had a quota on the specified printer.
941         
942        - A small display bug in repykota was introduced in preliminary
943          1.03 versions, and fixed later on.
944         
945        - Some minor bugs which happened in rare situations were fixed.
946       
947        - Support for AppleTalk printers was added, see sample configuration
948          file for details.
949         
950        - Users and group printing can now be controlled (limited) either by 
951          print quota or by account balance.
952       
953    - 1.02 :
954   
955        - The installation script now checks for software availability
956          and in case a software is missing asks the user if he
957          wants to continue with the installation or abort it.
958         
959        - The configuration file pykota.conf is now expected to be
960          found in /etc instead of in /etc/cups
961          The installation script prompts the user to see if he
962          wants to move an old configuration file to the new location
963          if needed.
964         
965        - Improved documentation.
966       
967        - You can now set the tcp/ip port on which the Quota Storage
968          Server is listening, see sample configuration file for details.
969       
970        - Better general error handling.
971       
972        - Upgrade script for pre 1.01 PostgreSQL database schema is now
973          included as well.
974       
975    - 1.01 :
976   
977        - The configuration file now accepts an option   
978          to choose the recipient(s) of the email messages :
979         
980            - DevNull means no one will receive them.
981            - User means only the user will receive them.
982            - Admin means only the admin will receive them.
983            - Both means the User and the Admin will receive them.
984           
985        - The configuration file now uses hard-coded default values
986          when an option is not set. See sample configuration file
987          for details.
988         
989        - Manual pages are included since 1.00, but I forgot to   
990          add this information to this file.
991         
992        - Redistribution terms for the official package have 
993          softened and are now fully GPL compatible :
994          unrestricted modification is now allowed even for
995          the version number.
996         
997    - 1.00 :
998   
999        - edpykota now accepts a --noquota option. This
1000          disable quota checking while still doing page
1001          accounting. This is really useful for people
1002          who don't want to limit their users but want
1003          to know how much pages they print.
1004         
1005        - Some untested scripts were added to retrieve
1006          the life time page counter of non-SNMP printers.
1007         
1008        - Every directory now has a specific README file. 
1009       
1010    - 0.99 :
1011   
1012        - Under some circumstances while the user wasn't allowed
1013          to print, he didn't receive any email message. It is
1014          now fixed.
1015         
1016        - When an user wasn't allowed to print, the quota for
1017          the previous user wasn't updated. This is now fixed.
1018         
1019    - 0.98 :
1020   
1021        - Correctly handle the case where the printer is switched off.
1022       
1023        - Small bug wrt syslog fixed.
1024       
1025    - 0.97 :
1026   
1027        - edpykota accepts wildcards on its command line for users/groups too
1028          if the --add option is not set, e.g. :
1029         
1030              $ edpykota --printer lp --softlimit 50 --hardlimit 100 "jer*"
1031             
1032        - If no user name is passed at all, then a default wildcard of "*"
1033          which means apply the command on ALL users for this printer is used.
1034         
1035        - Small bug fixes.
1036       
1037    - 0.96 :
1038
1039        - Options requester, policy, admin, adminmail and gracedelay can now
1040          be set either globally or per printer. The printer option has
1041          priority if both are defined.
1042
1043        - More powerful configuration parser.
1044       
1045        - If all options are defined globally, there's no need to
1046          define a section for each printer in the configuration
1047          file anymore. Just define a [global] section and it's ok.
1048
1049    - 0.95 :
1050
1051        - External requesters for printers finally added.
1052
1053        - Full internationalization (english and french are supported)
1054 
1055        - More complete quota usage report
1056
1057        - CGI script to access to the quota usage report
1058
1059        - Several bugs fixed.
1060
1061
1062    - 0.9 :
1063
1064        - First public version
Note: See TracBrowser for help on using the browser.