root / pykota / trunk / NEWS @ 1564

Revision 1564, 40.0 kB (checked in by jalet, 20 years ago)

Fixed PCL5 parser according to the sources of rastertohp

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