root / pykota / trunk / NEWS @ 1591

Revision 1591, 41.7 kB (checked in by jalet, 20 years ago)

Fix for number of copies for each page in PCLXL parser

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