root / pykota / trunk / NEWS @ 1556

Revision 1556, 39.6 kB (checked in by jalet, 20 years ago)

Added "description" attribute for printers

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