root / pykota / trunk / NEWS @ 1575

Revision 1575, 40.9 kB (checked in by jalet, 20 years ago)

PCLXL support now works !

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