root / pykota / trunk / NEWS @ 1600

Revision 1600, 42.3 kB (checked in by jalet, 20 years ago)

LPRng support early version

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