root / pykota / trunk / NEWS @ 1546

Revision 1546, 38.8 kB (checked in by jalet, 20 years ago)

Now all tracebacks include PyKota's version number

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