root / pykota / trunk / NEWS @ 1568

Revision 1568, 40.2 kB (checked in by jalet, 20 years ago)

More debug info in PCLXL parser

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