root / pykota / trunk / NEWS @ 1595

Revision 1595, 42.0 kB (checked in by jalet, 20 years ago)

Introduction of the pykosd command

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