root / pykota / trunk / NEWS @ 1521

Revision 1521, 37.2 kB (checked in by jalet, 20 years ago)

Missing comment

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