root / pykota / trunk / NEWS @ 3048

Revision 3048, 81.7 kB (checked in by jerome, 17 years ago)

Locking code should now work as expected, even when CUPS is stopped and
the cupspykota backend killed uncleanly.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1# $Id$
2
3PyKota - Print Quotas for CUPS and LPRng
4
5(c) 2003, 2004, 2005, 2006 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19
20============================================================
21
22PyKota NEWS :
23       
24    - 1.25alpha15 (2006-11-06) :   
25   
26        - Finally simplified the locking code again, and checked that no
27          stalled lock can persist. The lock files remain on disk though,
28          but it is a small price to pay.
29         
30    - 1.25alpha14 (2006-10-13) :
31     
32        - Removed some locking code which would have prevented multi-server
33          configuration to work correctly with a shared lock directory.
34         
35        - First useable release with the computation of ink
36          usage, through the introduction of the 'ink(cspace, resolution)'
37          value for the 'preaccounter' and 'accounter' directives in
38          pykota.conf
39         
40    - 1.25alpha13 (2006-10-04) :
41     
42        - The dumpykota.cgi script now does basic form checking
43          to immediately avoid incompatible dump options and
44          alerts the end user if Javascript is enabled.
45         
46        - The filter keys in dumpykota can now be specified in
47          lower or upper case.
48         
49        - Introduced the 'noprintingmaxdelay' directive to workaround
50          some buggy printers when hardware accounting is used.
51         
52        - Improved the reliability of hardware accounting. 
53         
54    - 1.25alpha12 (2006-09-15) :
55   
56        - Fixes encoding of username and billingcode when they
57          are overwritten by a subprocess.
58         
59    - 1.25alpha11 (2006-09-06) :
60   
61        - Now fails in an helpful manner if python-mysqldb is too old.
62       
63        - Now exports the original username and billing code (i.e.
64          their values before they are eventually overwritten) in
65          two additionnal environment variables.
66         
67    - 1.25alpha10 (2006-09-03) :
68   
69        - Rewrote the locking mechanism to try to fix the problem
70          some people reported.
71         
72        - Permissions on cupspykota are now correctly set after
73          installation.
74         
75        - Added a workaround to incorrect charset through the add
76          of the python-chardet module as a dependency.
77         
78    - 1.25alpha9 (2006-08-10) :
79   
80        - Fixed a problem when an SMTP error occured and the recovery
81          routine failed to handle it correctly.
82         
83    - 1.25alpha8 (2006-07-11) :
84   
85        - Fixed a problem in the MySQL schema.
86       
87    - 1.25alpha7 (2006-06-20) :
88   
89        - Fixed some date formatting problems when retrieving the
90          printing history with MySQL.
91         
92        - Began code cleaning. 
93         
94    - 1.25alpha6 (2006-06-13) :
95   
96        - pkusers now supports the --email command line switch.
97          The old method to set the email address is still supported,
98          but the new one allows the email address to be modified
99          as well.
100         
101    - 1.25alpha6 (2006-06-09) :
102   
103        - Fixed the incorrect overwriting of the original billing
104          code if the overwrite_jobticket directive was used.
105         
106    - 1.25alpha5 (2006-06-03) :
107   
108        - Fixed minor issues with pkipplib's usage.
109       
110        - Fixed MySQL schema to workaround some "features"...
111       
112    - 1.25alpha4 (2006-05-23) :
113   
114        - Introduced the 'askconfirmation' directive to interact with
115          the end user through any script (pknotify is recommended)
116          and see if he really wants to print when knowing the cost
117          of the job.
118         
119        - Now uses pkipplib if present to directly retrieve the job
120          information from the CUPS server over IPP.
121         
122    - 1.25alpha3 (2006-05-11) :
123   
124        - Added a lock to ensure that a single cupspykota backend
125          is processing datas for a particular print queue at any
126          given time.
127         
128        - Now exports more environment variables for the subprocesses.
129         
130    - 1.25alpha2 (2006-05-03) :
131   
132        - Fixed some problems with DateTime objects.
133       
134        - Added support for PySNMP v4.x in addition to 3.4.x.
135       
136    - 1.25alpha1 (2006-04-14) :
137   
138        - Make the MySQL schema work with old releases of MySQL.
139       
140        - Fixed several character encoding problems.
141         
142        - Ensures that the denied banners counter is properly initialized
143          with relationnal databases.
144         
145    - 1.24 (2006-04-08) :
146   
147        - Improved documentation and packaging stuff.
148       
149    - 1.24beta (2006-03-26) :
150   
151        - Finalized the pknotify command.
152       
153        - Updated the messages catalogs for translations.
154       
155    - 1.24alpha18 (2006-03-15) :
156   
157        - Now uses MIME encapsulation for email messages to avoid
158          some problems with 8 bits messages being rejected.
159         
160    - 1.24alpha17 (2006-03-06) :
161   
162        - Fixed a major problem in the PostgreSQL backend.
163       
164        - pknotify can now check a remote user's name and password.
165       
166    - 1.24alpha16 (2006-03-02) :
167   
168        - Introduced the pknotify command line tool to dialog
169          with remote PyKotIcon applications.
170         
171    - 1.24alpha15 (2006-03-02) :
172       
173        - optimized pkbcodes, pkprinters and pkusers using edpykota as
174          the model.
175       
176        - 'edpykota --list' and 'pkusers --list' are now authorized
177          to mere mortal users, but the list is restricted to informations
178          about the current user.
179       
180        - Extended the functionnality of the 'onbackenderror' directive to
181          allow for configurable retries.
182         
183    - 1.24alpha14 :
184   
185        - Finished optimizations in edpykota and fixed some minor
186          problems with LDAP.
187         
188    - 1.24alpha13 :
189   
190        - Introduced the pkusers command line tool to manage users and 
191          users groups. This command doesn't deal with print quota entries,
192          which continue to be managed through the edpykota command line
193          tool.
194         
195        - Major rewrite and incompatible changes to command line options
196          in edpykota. This command now only deals with print quota
197          entries. Printers, users (or users groups) now have to be created
198          first using pkprinters or pkusers.
199         
200    - 1.24alpha12 :
201   
202        - Introduced the 'duplicatesdelay' directive to specify after
203          which duration two duplicate jobs are not considered duplicate
204          jobs anymore.
205         
206        - Introduced the 'balancezero' directive to specify any value 
207          as the balance limit instead of 0.0. This can allow admins to
208          give a few free credits to users, for example.
209         
210    - 1.24alpha11 :
211   
212        - Huge speed improvements when modifying billing codes and
213          printers.
214       
215        - Both pkbcodes and pkprinters now display the percent done
216          for all actions.
217         
218        - The pkinvoice invoice generator command line utility is now
219          included.
220         
221    - 1.24alpha10 :   
222   
223        - Huge speed improvements when deleting users, printers, and
224          billing codes.
225         
226    - 1.24alpha9 :
227   
228        - Preliminary support for MySQL, thanks to Matt Hyclak.
229       
230    - 1.24alpha8 :
231   
232        - The 'preaccounter' configuration directive was introduced to control
233          which parser to use for precomputation of the job's size. When unset,
234          the internal parser is used just like it was previously. See
235          conf/pykota.conf.sample for more details.
236         
237        - Now subprocesses launched through the overwrite_jobticket directive
238          can also output 'CANCEL', to represent the user's own choice to
239          cancel the print job.
240         
241    - 1.24alpha7 :
242     
243        - pkbanner now handles new print limiting modes correctly.
244       
245        - The cupspykota backend wrapper now accepts to be interrupted
246          with a kill -INT. This causes an immediate and clean abort
247          of the current print job.
248         
249        - Matt Hyclak contributed the possibility to store the printing
250          history in a MySQL database. See the contributed/ directory
251          for details.
252         
253        - Added 2006 to the copyright's years.
254       
255    - 1.24alpha6 :
256   
257        - Fixed internal SNMP and PJL handling code for very fast
258          printers : PyKota didn't see them going from 'idle'
259          to 'printing' to 'idle' again.
260         
261        - Now waitprinter.sh accepts SNMP version number and
262          community name as arguments, thanks to Brandon
263          Holbrook.
264         
265        - Now command line errors and Ctrl+C repectively cause
266          PyKota commands to exit with status -2 and -3.
267         
268    - 1.24alpha5 :
269   
270        - All command line tools now accept -A | --arguments filename.args
271          as a way to bypass the shell's maximal command line size :
272          just put each argument on a line by itself in a file, and
273          pass the file's name as the -A | --arguments command line
274          option's argument. For now this won't be documented in
275          commands' helps.
276         
277        - dumpykota can now dump the complete database in XML
278          format.
279         
280    - 1.24alpha4 :
281   
282        - Added support for the SQLite3 backend.
283          See pykota/initscripts/sqlite/README.sqlite
284       
285    - 1.24alpha3 :
286   
287        - Fix for mailandpopup.sh : smbstatus can't be run setuid,
288          so we regain priviledges before running an external
289          mailto directive.
290       
291    - 1.24alpha2 :
292   
293        - Introduce the "onbackenderror" directive in pykota.conf, to
294          control if the user must be charged or not whenever a real
295          CUPS backend fails. The default value is 'nocharge'.
296          Set it to 'charge' if you think your users can cause a CUPS
297          backend to fail.
298         
299        - Now mark original backends related problems as such in the
300          printing history. Modified printquota.cgi and pykota.css
301          to make them be more visible.
302         
303    - 1.24alpha1 :
304   
305        - Fixed a problem which caused backend errors to be ignored.
306       
307        - The sample LDIF file now contains the two necessary user
308          entries to have an LDAP PyKota Admin and an LDAP PyKota
309          ReadOnly user. The sample configuration files were updated
310          to contain the default passwords used in the LDIF file.
311         
312        - dumpykota is now more strict when checking arguments.   
313       
314    - 1.23 :
315   
316        - Many minor bug fixes and code cleaning.
317       
318        - Improved documentation.
319       
320        - Added Polish translation.
321       
322        - Improved French and Swedish translations.
323       
324    - 1.23beta :
325   
326        - Now the mailto directive is honored in all cases where the job is
327          denied or a warning has to be issued, and the correct reason
328          can be sent back to the user.
329         
330        - The PYKOTAREASON environment variable, if defined, contains the 
331          textual reason why the job was denied or a warning has to be
332          issued.
333       
334    - 1.23alpha31 :
335   
336        - Added support for --maxjobsize, --passthrough and --nopassthrough
337          in pkprinters. These modes are now also honored when printing.
338         
339        - Allows the admin to restrict the number of print queues which will
340          be treated by pkturnkey by passing queues' names as additionnal
341          arguments on pkturnkey's command line.
342         
343        - pkturnkey now supersedes pkhint with the help of the -c | --doconf
344          command line option.   
345         
346    - 1.23alpha30 :
347   
348        - Database changes : you MUST use upgrade-to-1.23.sql again if you
349          use PostgreSQL, or copy the new schema and restart your LDAP
350          server if you use LDAP.
351         
352        - The -C | --comment command line switch was added to edpykota to 
353          attach textual information to modifications done to a user's
354          account balance.
355         
356        - The -l | --limitby command line switch to edpykota was modified 
357          to allow 'noquota', 'nochange', and 'noprint'. See the edpykota
358          command's help or manual page for details.
359         
360        - The -i | --ingroups command line switch to repykota allows 
361          PyKota Administrators to only lists members of the specified
362          group or groups (separated with commas).
363         
364        - The -I | --increase command line switch to edpykota allows
365          to increase or decrease page limits.
366         
367        - Added the precomputed job's size and price to the history
368          for controlling purpose.
369       
370    - 1.23alpha29 :
371   
372        - Fixed a small problem with billing codes.
373       
374        - Exports some environment variables earlier, to render the script
375          launched by the overwrite_jobticket directive more powerful.
376         
377        - Now autopykota also creates print quota entries for the user on the
378          printers groups the current printer is a member of.
379         
380    - 1.23alpha28 :
381   
382        - Added users groups management to pkturnkey.
383       
384        - Fixed umask in setup script.
385       
386    - 1.23alpha27 :
387   
388        - Replaced the --dryrun command line option by the --force
389          command line option in pkturnkey, with exactly the opposite
390          effect (for security reasons).
391         
392    - 1.23alpha26 :
393   
394        - Allows parametrized pjl and snmp hardware accounting methods,
395          to be able to respectively set the TCP port and the SNMP
396          community.
397         
398    - 1.23alpha25 :
399   
400        - Added a --dryrun command line switch to pkturnkey.
401       
402        - Improved pkturnkey's general usability.
403       
404        - Added a manpage for pkturnkey.
405       
406    - 1.23alpha24 :
407   
408        - Allows different databases to be used depending on the
409          user's rights. This allows PyKota admins to directly
410          use a master LDAP server for read+write, while letting
411          normal users using the replicas for readonly access.
412          NB : using different storage backends is also possible,
413          but you're on your own there.
414         
415    - 1.23alpha23 :
416   
417        - Fixed a problem with banner accounting.
418   
419        - Introduction of the new 'pkturnkey' command line tool.
420       
421    - 1.23alpha22 :
422   
423        - The cupspykota backend was almost entirely rewritten from scratch.
424          It's now much more readable, maintainable, etc...
425         
426        - LPRng support is OFFICIALLY dropped for now. LPRng users are 
427          advised to download earlier releases or purchase the
428          PyKota v1.22HotFix1 Official release. LPRng support
429          MIGHT be re-added later.
430       
431    - 1.23alpha21 :
432     
433        - Fix for IPP requests which contain more than a single
434          job-originating-host-name attribute.
435         
436    - 1.23alpha20 :
437   
438        - Added the overwrite_jobticket directive. See pykota.conf.sample
439          for how to use it.
440         
441    - 1.23alpha19 :
442   
443        - Fixed an LDAP filtering problem when managing billing codes.
444       
445        - Added the unknown_billingcode directive. See pykota.conf.sample
446          for how to use it.
447       
448    - 1.23alpha18 :
449     
450        - Added the dump_bfd.php contribution.
451       
452        - Several fixes in the internal PJL accounter.
453       
454        - Now autopykota doesn't create unneeded print quota entries anymore.
455       
456        - Increased the timeout in the PJL hardware accounting code to
457          accomodate some printers (HP5000 at least).
458         
459    - 1.23alpha17 :
460   
461        - pkpgcounter is now distributed separately only. This
462          means that people must now download and install pkpgcounter
463          v1.56 or higher prior to being able to run PyKota.
464         
465        - Removed all the autoconf/automake stuff which was outdated 
466          and confusing.
467         
468    - 1.23alpha16 :
469     
470        - Extracted the GPL blurb from all commands' help, and use
471          a static version only once. This saves space big time, and
472          eases future translations.
473         
474    - 1.23alpha15 :
475   
476        - pkbcodes now works with the PostgreSQL backend.
477          NB : PLEASE RUN upgrade-to-1.23.sql AGAIN !!!
478       
479    - 1.23alpha14 :
480   
481        - Logs a warning when the user/group doesn't exist when running
482          edpykota.
483         
484    - 1.23alpha13 :
485   
486        - Minor fix for user groups because of latest database changes.
487       
488    - 1.23alpha12 :
489   
490        - Big database changes, use the migration scripts !
491       
492    - 1.23alpha11 :
493   
494        - Small fix to the PCL3/4/5 parser for some drivers.
495       
496    - 1.23alpha10 :
497   
498        - Fixed a bad exception name in cupspykota when parsing IPP messages.
499       
500        - Improved the IPP messages module : it can now generate IPP messages
501          in addition to parsing them.
502       
503    - 1.23alpha9 :   
504   
505        - The denyduplicates directive now accepts a command line as an
506          argument beside yes/no. The command is launched and must
507          print either ALLOW or DENY to its standard output. Then the
508          job gets allowed or denied by PyKota.
509          This will allow user interaction in the near future.
510         
511        - Introduced the new 'striptitle' directive to remove ugly prefixes
512          from print job's titles whenever a new print job is submitted.
513         
514        - Fixed internal SNMP accounter for printers which only have a life time
515          page counter, and not a volatile page counter.
516         
517    - 1.23alpha8 :
518   
519        - The data dumper can now summarize payments and history with the
520          help of the --sum command line option (or checkbox in the CGI).
521         
522        - The message used when the job's filename, title and options are
523          hidden because of the privacy directive is now translated at
524          retrieval time, instead of at saving time.
525         
526        - Minor fix in the LDAP backend code. 
527         
528    - 1.23alpha7 :
529   
530        - Improvements to the internal PJL and SNMP accounter : now should
531          support more printers and waste less time.
532         
533    - 1.23alpha6 :
534   
535        - The data dumper's start= and end= date filtering options now
536          accept a positive or negative offset to be added to the special
537          keywords 'yesterday', 'today', 'now', 'tomorrow'.
538          e.g. : dumpykota --data history start=yesterday-5 end=today
539         
540    - 1.23alpha5 :
541   
542        - The data dumper's start= and end= date filtering options now accept
543          the special keywords 'yesterday', 'today', 'now' and 'tomorrow'.
544         
545    - 1.23alpha4 :
546   
547        - The data dumper now accept start= and end= to specify the starting
548          and ending dates to dump the history.
549         
550    - 1.23alpha3 :
551   
552        - The destination link for the logo used in CGI scripts is
553          configurable.
554         
555        - Data dumper improved : it's faster and now datas are correctly
556          escaped.
557       
558        - The URL to the logo displayed in the CGI scripts is configurable.
559       
560    - 1.23alpha2 :
561   
562        - Fixed edpykota --prototype with balance.
563       
564        - Major rewrite of the IPP message parsing code to definitely
565          fix the job-originating-hostname IPP attribute problem.
566       
567    - 1.23alpha1 :   
568   
569        - Sets current username to the user CUPS runs as instead of "root"
570          when printing test pages from CUPS' web interface (because
571          the username is empty in this case).
572         
573        - Fix for strange values in job-originating-hostname
574       
575    - 1.22 :
576   
577        - Big improvements to the documentation.
578       
579    - 1.22beta :
580   
581        - Improved stability in pykotme and pykotme.cgi.
582       
583        - Fixed a permission problem in pykotme and pykosd.
584       
585        - Fixed an inconsitency between SQL and LDAP backends'
586          behavior in edpykota.
587         
588        - Improved stability and allowed tracebacks in CGI scripts.
589       
590        - Improved pykotme.cgi
591         
592    - 1.22alpha8 :
593   
594        - Fixed history retrieval for nonexisting printers or users.
595       
596        - Clicking on the billing code in printquota.cgi's job history
597          now shows all jobs matching this billing code.
598         
599        - Fixed the dump in CUPS' page_log format which didn't
600          dump the oldest entry.
601         
602        - The data dumper now accepts billingcode= and hostname= as
603          filters when dumping the job history.
604         
605        - The job billing code if present is now saved into the database,
606          and exported to subprocesses as the PYKOTAJOBBILLING environment
607          variable.
608         
609        - Ctrl+C now makes PyKota commands exit without a traceback.
610       
611        - Fixed an i18n problem with Python 2.1
612       
613    - 1.22alpha7 :
614   
615        - Fixed some problems with the retrieval of the history from LDAP.
616       
617    - 1.22alpha6 :
618   
619        - Early errors now produce meaningful error messages (finally !)
620       
621    - 1.22alpha5 :
622       
623        - SNMP and PJL improvements with regard to PowerSave / StandBy.
624       
625    - 1.22alpha4 :
626   
627        - Fixed charset problem under MacOSX.
628       
629        - Allows pkbanner to accept more info to display on its
630          command line.
631         
632    - 1.22alpha3 :
633   
634        - Fixes some case related problems with some LDAP backends.
635       
636        - Fixes some problem for printers which directly go from
637          "idle" to "warmup" and never to "printing" before
638          returning to "idle".
639         
640        - Some permissions settings may have prevented cupspykota
641          from parsing cupsd.conf, this is now fixed.
642         
643    - 1.22alpha2 :
644   
645        - Introduction of the web enabled print quote generator.
646       
647        - Fixed a potential race condition when several backend
648          wrappers were present in CUPS' backend directory.
649         
650        - Fixed dumpykota's output in CUPS' page_log format to better
651          match CUPS format.
652         
653    - 1.22alpha1 :
654   
655        - Import into Subversion.
656       
657    - 1.21 :
658   
659        - Improved documentation.
660       
661        - Improved dependencies checker.
662       
663        - Updated some translation files.
664       
665    - 1.21beta2 :
666   
667        - Fixed an LPRng specific bug.
668       
669        - Several improvements on stability issues with manually modified
670          LDAP trees.
671         
672        - Documentation improvements. 
673       
674    - 1.21beta :
675   
676        - Prepared translation files for next release.
677       
678    - 1.21alpha27 :
679   
680        - Allows software() (no arguments) to the software accounting
681          directive. This saves a lot of CPU since the job is not
682          parsed again : the precomputed size is used directly in this
683          case.
684         
685        - epykota's --prototype option now works fine with accounts
686          limited by balance.
687         
688    - 1.21alpha26 :
689   
690        - Fixed the handling of the 'maxdenybanners' directive.
691       
692        - Introduced the 'denyduplicates' directive.
693       
694        - Fixed some database related glitches.
695       
696    - 1.21alpha25 :
697   
698        - The job's size is now always precomputed, even when
699          'enforcement' is not set to 'strict'.
700         
701        - Introduction of the new 'trustjobsize' configuration directive
702          to workaround some problematic printers. See the sample
703          configuration file for details.
704         
705    - 1.21alpha24 :
706   
707        - Big database structure changes. An upgrade script
708          is now included for PostgreSQL. LDAP users may just
709          want to copy the new schema in place.
710         
711        - edpykota now recognizes the -o | --overcharge command line
712          option to set an overcharging or undercharging factor
713          on each print job's cost for a particular user.
714         
715        - repykota's output format has changed an is not limited to 
716          80 characters wide anymore. People who used to parse
717          repykota's output in their own tools are strongly advised
718          to parse dumpykota's output instead.
719         
720        - Introduction of the new 'maxdenybanners' configuration directive
721          to allow up to N (the directive's value) deny banners to be
722          printed even if the print account is forbidden to print.
723         
724        - Better detection of the number of copies in the PostScript parser.
725       
726    - 1.21alpha23 :
727   
728        - Traditional Chinese translation added.
729   
730        - Several fixes and performance improvements with the LDAP backend.
731       
732    - 1.21alpha22 :
733   
734        - edpykota's --delete command line option doesn't consider
735          '*' to be the default argument anymore :-)
736         
737    - 1.21alpha21 :
738   
739        - dumpykota.cgi can now be run as a normal user as opposed to
740          a PyKota administrator. No read access to pykotadmin.conf is
741          necessary anymore. This CGI scripts now honors the REMOTE_USER
742          environment variable just like printquota.cgi does, see
743          the file cgi-bin/README for details.
744          The command line tool dumpykota must still be run by a PyKota
745          administrator.
746         
747        - Fix exception's name error due to a change in recent versions
748          of PygreSQL.   
749         
750    - 1.21alpha20 :
751         
752        - Big bug fix wrt the datelimit field which was never reset.
753         
754    - 1.21alpha19 :
755   
756        - Introduction of the new dumpykota.cgi CGI script, which
757          allows third party tools like phpPrintAnalyzer to be
758          interfaced in real time with PyKota. To use it you
759          may have to change your web server's configuration,
760          please see pykota/cgi-bin/README
761         
762    - 1.21alpha18 :
763   
764        - Now dumpykota can dump the job history into CUPS' page_log
765          format (even when the printing system is LPRng). This allows
766          people to use tools like PrintAnalyzer or phpPrintAnalyzer
767          (two completely different beasts) with PyKota.
768         
769    - 1.21alpha17 :
770     
771        - Fixed field type's name in XML dumps.
772       
773        - Now drops priviledges to user 'pykota' when launched as root
774          (directly or as a CUPS backend), if such an user exists.
775         
776        - Fixed PCL3/4/5 parser for some drivers' output.
777       
778    - 1.21alpha16 :
779   
780        - fixed several recently introduced bugs in LDAP backend code,
781          thanks to Matt Hyclak.
782         
783    - 1.21alpha15 :
784     
785        - Normalized field names between LDAP and PostgreSQL backends
786          in dumpykota's output.
787         
788        - dumpykota filtering capabilities are now supported within
789          the LDAP backend too.
790         
791    - 1.21alpha14 :
792   
793        - dumpykota now supports extended filtering possibilities
794          with the PostgreSQL backend (LDAP support will come soon).
795         
796    - 1.21alpha13 :
797   
798        - Added a --debug command line option to pkpgcounter, so
799          that people may see what really happens, and what will
800          be available in the future :-)
801         
802    - 1.21alpha12 :
803   
804        - Fixed a bug with non standard pkbanner command lines.
805       
806        - Now logs as errors the differences between precomputed and
807          computed job sizes. **CUPS only for now**
808         
809    - 1.21alpha11 :
810   
811        - Now user and group print quota entries can be stored directly
812          below the user or group with the LDAP backend, using them
813          as branches. Thanks to Stefan Wold for the patch.
814          See the sample configuration file for details.
815         
816        - TLS is now supported with the LDAP backend. Thanks to Stefan
817          Wold for the patch.
818          See the sample configuration file for details.
819         
820        - edpkota now accepts the -U | --used value command line argument
821          to preset the page counters to an initial value. Thanks to
822          Wilson Roberto Afonso and Matt Hyclak for the patch.
823         
824    - 1.21alpha10 :
825   
826        - Now automatically reconnects up to three times if the LDAP server
827          returned an error, possibly due to a timeout.
828         
829    - 1.21alpha9 :
830   
831        - Now searches the configuration files in 'pykota' system user's
832          home directory. The 'pykota' system user and group have
833          to be created by the system administrator, and given
834          sufficient permissions to PyKota's configuration files.
835         
836    - 1.21alpha8 :
837   
838        - Added the new reject_unknown directive to reject the
839          creation of user or groups which are unknown to the system.
840         
841    - 1.21alpha7 :
842   
843        - Introduction of the pkmail email gateway.
844       
845    - 1.21alpha6 :
846   
847        - Fix for LPRng filenames.
848       
849        - Added Turkish translation thanks to Baris Cicek.
850       
851    - 1.21alpha5 :
852   
853        - Improved ESC/P2 miniparser for Stylus Photo printers.
854       
855        - Implemented the --savetoner command line option to pkbanner.
856       
857        - Improved pkbanner's help and messages.
858       
859    - 1.21alpha4 :
860   
861        - Fixed job's data file detection code for LPRng.
862       
863        - Fixed a problem with PJL and PowerSave mode,
864          thanks to Wilson Roberto Afonso.
865       
866    - 1.21alpha3 :
867   
868        - PyKota can now generate its own banners, and either account
869          for them or not, depending on newly introduced directives
870          in pykota.conf
871          Thanks to Matt Hyclak for the patch.
872         
873    - 1.21alpha2 :
874   
875        - Installation script is now non interactive again, as it should
876          have stayed from the beginning. Dependencies checking can
877          be done by launching the checkdeps.py command.
878         
879    - 1.21alpha1 :
880   
881        - added an IPP messages miniparser. Extraction of the client
882          hostname is now considered to be fiable, at least until
883          the CUPS developpers change something...
884       
885    - 1.20 :
886   
887        - Version number changed.
888       
889    - 1.20beta :
890   
891        - Norwegian (Bokm� preliminary translation added.
892       
893        - German translation was finalized.
894       
895        - Greek translation was finalized.
896       
897        - For urgent legal reasons, a "privacy" directive has been added
898          to pykota.conf, to hide jobs' title, filename and options
899          in the history.
900         
901        - Minor changes in the debian directory.
902       
903    - 1.20alpha27 :
904   
905        - Fixed many problems with translation files. In particular
906          the Brazilian Portuguese translation file was incorrectly
907          installed into the french "breton" locale directory.
908         
909        - Finished French translation. 
910         
911    - 1.20alpha26 :
912   
913        - LPRng support code should now better detect network
914          printers' hostnames or IP addresses.
915         
916        - Fix for recently introduced bug in LPRng support.
917       
918        - Fix for incorrect locale setting when starting.
919       
920    - 1.20alpha25 :
921   
922        - pkprinters allows --list to normal users, but require user
923          to be a PyKota administrator when another command line
924          option is used.
925         
926        - pkhint doesn't use absolute path to search for helper commands
927          anymore.
928         
929        - Spanish translation ready for 1.20.   
930       
931    - 1.20alpha24 :
932   
933        - Now warnpykota only warns users limited by balance once.
934       
935        - Now warnpykota only warns users who have ever printed,
936          to not cause confusion to users who have just opened
937          their account.
938       
939        - Prepared help messages for translations.
940       
941    - 1.20alpha23 :
942   
943        - Add workaround for locale problem.
944       
945    - 1.20alpha22 :
946   
947        - Hopefully final fix for data encoding charset.
948       
949        - edpykota now refuse to work if the user is not a PyKota admin.
950       
951        - Fixes a recently introduced bug with users groups and PostgreSQL.
952       
953    - 1.20alpha21 :
954   
955        - Now dumpykota refuses to launch if the current user is not
956          a PyKota administrator (a PyKota administrator is an user
957          allowed to read the pykotadmin.conf file).
958         
959        - Now any PyKota administrator can use repykota and warnpykota
960          with additionnal arguments, not only the root user.
961         
962        - Improved documentation a bit.
963       
964    - 1.20alpha20 :
965   
966        - Reduced delay in internal SNMP and PJL_over_TCP handlers
967          from 2 to 1 second.
968       
969        - dumpykota can now output XML.
970       
971    - 1.20alpha19 :
972   
973        - Improved user groups and user groups quotas dumps in dumpykota.
974       
975        - Finished implementation of LDAP support in dumpykota.
976       
977        - The md5 sum of the job's datas is now available as an
978          hexadecimal digest in the PYKOTAMD5SUM environment variable.
979         
980        - The description, filename, title, and options fields
981          are now stored as UTF-8 strings in both LDAP and PostgreSQL.
982          Proper charset is used during extraction from the database.
983         
984    - 1.20alpha18 :
985   
986        - Experimental autopykota command to initialize user
987          account and quota entries on first print while not
988          resetting the balance value if not needed.
989         
990        - Added the new "winbind_separator" directive to strip
991          out the Samba/Winbind domain name while printing if
992          needed (Off by default).
993         
994    - 1.20alpha17 :
995   
996        - Added --hardreset command line option to edpykota.
997       
998        - Fixed problem with accented chars in title, filename
999          or options and LDAP backend.
1000         
1001    - 1.20alpha16 :
1002   
1003        - Internal handling of socket based PJL queries over
1004          port tcp/9100 is now available with the magic
1005          'pjl' value in the hardware accounter.
1006         
1007    - 1.20alpha15 :
1008   
1009        - LDAP pykotaAccountBalance objects were always created
1010          attached to the pykotaUser objects. This is now
1011          fixed and the value of balancebase in pykota.conf
1012          is now correctly used.
1013         
1014    - 1.20alpha14 :
1015   
1016        - Belgian translations added (copy of the french ones).
1017       
1018        - External hardware accounter now loops until
1019          a result can be read correctly.
1020         
1021        - pkhint now suggest the internal snmp handling instead
1022          of the external one.
1023         
1024    - 1.20alpha13 :
1025     
1026        - Hardware accounter now accepts the special
1027          'snmp' value, meaning ALL is done from main code
1028          without launching any subprocess.
1029          You need the http://pysnmp.sf.net Python module
1030          for this to work (tested with v3.4.2)
1031         
1032        - Increased delay between two loops iterations 
1033          to 2 seconds in waitprinter.sh to diminish
1034          CPU load.
1035         
1036    - 1.20alpha12 :
1037   
1038        - waitprinter.sh rewritten from scratch to wait
1039          for printer status stabilization.
1040       
1041    - 1.20alpha11 :
1042   
1043        - Generic data dumper 'dumpykota' introduced.
1044          Works only with PostgreSQL backend for now.
1045         
1046    - 1.20alpha10 :
1047   
1048        - Added fix for incorrect job's size computation when
1049          hardware accounting fails.
1050         
1051    - 1.20alpha9 :
1052   
1053        - Small fixes wrt subprocesses.
1054       
1055    - 1.20alpha8 :
1056   
1057        - Added full support of PCL3 : HP Deskjet printers are now
1058          supported.
1059       
1060    - 1.20alpha7 :
1061   
1062        - First draft of PCL3GUI (Deskjet 640C for example) analyzer.
1063          Needs more work, but no documentation is available.
1064       
1065    - 1.20alpha6 :
1066     
1067        - Improved mailandpopup.sh script.
1068       
1069        - Small fixes for LPRng.
1070       
1071        - Now exports PYKOTAPRINTERHOSTNAME for network printers'
1072          hostname or IP address. Set to 'localhost' when not
1073          meaningful.
1074         
1075        - Fixed issue with how mod_auth_ldap Apache modules
1076          fills the REMOTE_USER environment variable.
1077         
1078        - Fixed a bug in LDAP user deletion code.
1079       
1080    - 1.20alpha5 :
1081     
1082        - Introduces the new configuration directive 'onaccountererror'
1083          to specify what must be done whenever the software or
1084          hardware accounter fails. Allowed values are 'continue' and
1085          'stop' (default).
1086         
1087        - Minor fix in software accounter for a recently introduced
1088          problem.
1089         
1090    - 1.20alpha4 :
1091   
1092        - Added support for more ghostscript devices in ESC/P2
1093          analyzer : stcolor, st800, escp, escpc are now supported.
1094         
1095    - 1.20alpha3 :
1096       
1097        - Small improvement in PostScript parser to avoid being
1098          fooled by a change in number of copies :
1099          The user can't ask for 200 copies of page 1 and 1 copy
1100          of page 2 to fool PyKota anymore :
1101          this would have been accounted for as 1 copy only, but
1102          now the maximum value seen is used.
1103         
1104        - Relax checks for PCL5 header to accomodate some strange
1105          printer drivers.
1106         
1107        - Now hardware accounting method works like software
1108          accounting method wrt the subprocess' output.
1109         
1110        - Hardware and Software accounting stop the print queue 
1111          when the accounting subprocess didn't work. This will
1112          be configurable in the near future.
1113         
1114    - 1.20alpha2 :
1115   
1116        - Now software accounting method reads accounter's
1117          answer until a line with a single integer is
1118          obtained or until all of its output has been read.
1119          This should fix the problem some people have
1120          when strange locale related messages are sent
1121          when running subprocesses (Solaris only ?).
1122         
1123        - First version of ESC/P2 analyzer. Seems to work
1124          ok at least with 'epson', 'epsonc', 'eps9mid'
1125          and 'esp9high' ghostscript devices. Needs more
1126          work to correctly analyze other devices.
1127       
1128    - 1.20alpha1 :
1129   
1130        - Fixed problem with number of copies in PCLXL parser.
1131       
1132        - Fixed problem with number of copies in PCL5 parser,
1133          when number of copies was set outside of and before first
1134          page.
1135       
1136        - Added workaround for number of copies directly set in
1137          PostScript code.
1138         
1139        - Added german translation.
1140       
1141        - Fixed problem on first print for user group quota when
1142          "enforcement: strict" is used.
1143       
1144        - Fixed interpolation problem in french translation.
1145       
1146    - 1.19 :
1147   
1148        - Updated existing translations.   
1149       
1150        - Added final Thai and Greek translations.
1151       
1152        - Minor last minute bug fixes.
1153       
1154    - 1.19beta :
1155   
1156        - LPRng support for both software and hardware accounting seems
1157          to be OK.
1158         
1159        - Translation files fixed because of fuzzy matching problem. 
1160       
1161        - Fixed path to Swedish translation: 'sv' instead of 'se'.
1162       
1163        - Added first draft of Thai translation.
1164       
1165        - Fixed some minor bugs with Pychecker.
1166       
1167    - 1.19alpha35 :
1168   
1169        - Generic PDL analyzer now supports Binary PostScript documents
1170          in addition to DSC compliant ones.
1171       
1172    - 1.19alpha34 :
1173   
1174        - LPRng support : software accounting seems to work fine,
1175          but hardware accounting doesn't work yet.
1176   
1177    - 1.19alpha33 :
1178   
1179        - pykosd now accepts command line arguments. Enjoy !
1180          NB : due to a bug in xosd, you need xosd version 2.2.8
1181          or higher if you don't use the default C locale.
1182         
1183    - 1.19alpha32 :
1184   
1185        - Early (not working) version of the LPRng support rewrite.
1186       
1187        - Saner default configuration file.
1188       
1189    - 1.19alpha31 :
1190   
1191        - Fixed a double Python2.1 incompatibility with newer versions,
1192          which prevented the PCL5 and the PCLXL parsers to work with
1193          this older version of Python.
1194         
1195    - 1.19alpha30 :
1196   
1197        - Introduction of preliminary version of the pykosd command
1198       
1199        - Usernames, Groupnames and Printernames can now contain
1200          ANY character, expected '/' and '@'.
1201       
1202        - Integrated most of the Debian work from Sergio
1203          Gonz�z Gonz�z
1204         
1205    - 1.19alpha29 :
1206   
1207        - PCLXL parser should now correctly handle number of
1208          copies set for each page.
1209         
1210        - Added testsuite for generic PDL analyzer.
1211       
1212        - Typo fixed in PCLXL parser.
1213       
1214        - Correctly dispatches error messages depending on the
1215          situation : tools which can be run interactively will
1216          ALWAYS output their logs to stderr, excepted for
1217          their DEBUG messages, for which the "logger:"
1218          directive as set in pykota.conf will be honored.
1219          Tools which can't be run interactively will ALWAYS
1220          honor the "logger:" directive as set in pykota.conf
1221         
1222    - 1.19alpha28 :
1223   
1224        - The description field for printers can now be set,
1225          and is displayed in reports.
1226         
1227        - Fixed a small problem in SQL backend code.
1228         
1229        - Improved pkhint
1230       
1231        - First working PCL6 (aka PCLXL) parser !
1232          Doesn't handle copies yet.
1233       
1234    - 1.19alpha27 :
1235   
1236        - Additionnal 10% speed increase in PCL5 parser for GhostScript
1237          generated files (untested yet with other PCL files).
1238         
1239        - Reintroduced the use of mmap in PCL5 parser : this speedups
1240          PCL5 parsing by almost 4 times.
1241          This 4x with the 3x below give us in fact a twelvefold increase
1242          in performance for PCL5 parsing !
1243         
1244        - The Python accelerator Psyco is now used if available
1245          in the generic PDL parser : it speedups PCL5 parsing by
1246          almost three times automagically.
1247         
1248    - 1.19alpha26 :
1249   
1250        - Fixed PCL5 parser according to the sources of rastertohp.
1251       
1252        - Fixed number of copies handling in PCL5 parser : the number
1253          of copies could vary from page to page.
1254         
1255        - Added more debug information to PCLXL parser. 
1256       
1257    - 1.19alpha25 :
1258   
1259        - Added new "description" field to printers in both
1260          PostgreSQL and LDAP. No code to handle this yet.
1261         
1262        - Reversed the fix for power save mode in printers : 
1263          no paper or tray open would have caused people to
1264          be undercharged.
1265         
1266        - Preliminary version of MySQL initialization script.
1267         
1268    - 1.19alpha24 :
1269   
1270        - Native PDF parsing code now works perfectly with
1271          Python 2.1 and above, and is way faster than before.
1272          GhostScript is not used anymore to convert PDF to PS,
1273          because PDF is parsed directly.
1274         
1275    - 1.19alpha23 :
1276   
1277        - Fixed waitprinter.sh wrt PowerSave mode and some
1278          printers. Thanks to Ryan Suarez.
1279       
1280        - Smart PDL analyzer now recognizes PDF too : two
1281          PDF parsing methods are used : a native one which
1282          is very fast but requires Python 2.3 or above, and
1283          a slower one which uses Ghostscript. PyKota detects
1284          automatically which method to use depending on your
1285          version of Python.
1286       
1287        - All tracebacks now include PyKota's version number.
1288         
1289    - 1.19alpha22 :
1290   
1291        - Ensures that the file pointer for job's data is
1292          reset to the start of the job's datas after the
1293          job's size pre-computation phase.
1294         
1295        - Improved PostScript detection code for bad drivers
1296          which don't correctly switch languages between PJL
1297          and PS.
1298       
1299        - Even better debugging code.
1300       
1301    - 1.19alpha21 :
1302   
1303        - Additionnal check.
1304       
1305    - 1.19alpha20 :
1306   
1307        - More complete logging messages wrt accounters.
1308       
1309        - Now catches early failures occuring when the configuration
1310          files are parsed.
1311       
1312    - 1.19alpha19 :
1313   
1314        - Fixed over-verbose exits when displaying help
1315          or version.
1316         
1317        - Extended some PATH in the shell scripts 
1318       
1319        - Deleting an user now also deletes his payments history.
1320       
1321        - Doesn't explicitely ignore SIGCHLD anymore. This seems to
1322          cause problems.
1323
1324    - 1.19alpha18 :
1325   
1326        - History of payments is now stored in the database, and
1327          updated each time an user's balance is modified with
1328          edpykota --balance. This history represents each time
1329          the user was given some positive or negative credit,
1330          but doesn't reflect price paid for jobs, which appear
1331          in the jobs history instead.
1332         
1333        - Jobs history web reports now include the job's size in
1334          bytes. Also columns were reordered to render the report
1335          more easily readable.
1336         
1337    - 1.19alpha17 :
1338   
1339        - Mysterious bug (program exited unexpectedly without leaving
1340          any log message) which occured once in a while when
1341          cancelling jobs should be fixed now.
1342         
1343        - New 'crashrecipient' directive. Disabled by 
1344          default. See sample configuration file to see how
1345          to activate it. It is suggested that you activate it.
1346         
1347        - New PYKOTAJOBSIZEBYTES environment variable exported, 
1348          which contains the job's size in bytes. Empty jobs
1349          are now denied. This value is now stored in the job
1350          history (but not yet displayed from the web interface)
1351         
1352        - Preliminary work on payments storage : the PostgreSQL 
1353          and LDAP schemas should be OK now, but no code is written
1354          yet to support this functionnality.
1355         
1356    - 1.19alpha16 :
1357   
1358        - the newuser and newgroup LDAP specific directives now accept
1359          a second parameter to attach(), "fail" or "warn". If no entry
1360          is found to attach PyKota attributes to, and "fail" was used,
1361          then action is aborted and program exits in error. If "warn"
1362          is used, a new entry is created but a warning message is logged.
1363         
1364        - The job's originating hostname is now stored in the database,
1365          and exported as PYKOTAJOBORIGINATINGHOSTNAME in the environment.
1366       
1367    - 1.19alpha15 :
1368   
1369        - The old pykota filter is now removed. This means that
1370          currently PyKota doesn't support LPRng anymore, but
1371          LPRng support will be re-added, improved, in the near future.
1372         
1373    - 1.19alpha14 :
1374   
1375        - PYKOTAPRECOMPUTEDJOBSIZE and PYKOTAPRECOMPUTEDJOBPRICE
1376          are now exported as environment variables.
1377         
1378        - Heavy CPU usage is now completely fixed it seems, by
1379          introducing some 0.01 second sleeping when nothing to do.
1380         
1381        - Pre-computation of the job's size is now only
1382          done when enforcement is "STRICT", this saves
1383          CPU for people who don't want to use this new
1384          feature.
1385         
1386        - New 'enforcement' directive which accepts either
1387          STRICT or LAXIST. See sample configuration file
1388          for details.
1389         
1390    - 1.19alpha13 :
1391   
1392        - Get back to an old version of the polling loop which
1393          worked fine, but non-optimally. Will be optimized
1394          as time permits.
1395         
1396    - 1.19alpha12 :
1397   
1398        - Job's size is now precomputed unconditionnally using
1399          the generic PDL analyzer.
1400          NB : This value is not yet used to pre-allow/deny the
1401          job.
1402       
1403    - 1.19alpha11 :
1404   
1405        - The pykota filter is now completely deprecated and
1406          can't be used anymore. LPRng users MUST download
1407          an older version of PyKota. CUPS users MUST use
1408          cupspykota. Better support for LPRng will come
1409          in the near future.
1410         
1411    - 1.19alpha10 :
1412   
1413        - pykotme now uses generic PDL Analyzer directly instead
1414          of spawning a new process.
1415         
1416        - Improvements to generic PDL Analyzer.
1417       
1418        - 25% Speedup in PCL parser. Getting more of the Python version
1419          will probably be difficult, since the completely table driven
1420          parser I wrote is slower than the original algorithm. Then,
1421          the original algorithm is still used for now.
1422          Probable that more speed could be achieved using mmap, at the
1423          expense of severe memory consumption.
1424       
1425        - configuration simplifications : the "accounter" directive's
1426          'hardware' arguments now accepts what was in the "requester"
1427          directive as it's content. The "requester" directive is not
1428          supported anymore. See sample configuration file for details.
1429       
1430    - 1.19alpha9 :
1431       
1432        - pkpgcounter is now just a wrapper around the PDLAnalyzer class
1433       
1434        - pykotaOptions LDAP attribute now accepts non-ascii characters
1435          too.
1436         
1437        - First try at cupspykota main loop rewrite
1438       
1439    - 1.19alpha8 :
1440   
1441        - 'querying' accounting method is now called 'hardware'
1442       
1443        - 'external' accounting method is now called 'software'
1444       
1445        - 'stupid' accounting method doesn't exist anymore
1446       
1447        - 'snmp' requester doesn't exist anymore
1448       
1449        - code simplifications in external requester
1450       
1451    - 1.19alpha7 :
1452     
1453        - Database schema change (both LDAP and PostgreSQL) to
1454          allow storage of the job-originating-hostname attribute.
1455          An SQL upgrade script is present. The code is not yet
1456          capable of setting/retrieving this attribute. Support
1457          for this functionnality will be added in the future.
1458         
1459    - 1.19alpha6 :
1460   
1461        - problems connecting to SMTP servers are now catched.
1462       
1463        - pykotme now uses pkpgcounter to compute the size of the
1464          job. This modification adds PCL5 and soon PCLXL (PCL6)
1465          support. You can now get quotes for PCL in addition to
1466          PostScript.
1467         
1468        - pkpgcounter now includes first try at PCLXL parser. 
1469          It is currently disabled until it's finished.
1470         
1471    - 1.19alpha5 :
1472   
1473        - cupspykota polling loop fix for MacOSX (at least)
1474       
1475        - logging subsystem now logs PID too, to ease diagnosing
1476          problems under heavy load.
1477         
1478        - pkpgcounter enhancements.
1479       
1480        - pkprinters --skipexisting now tells pkprinters to not
1481          modify existing printers when --add is used.
1482          pkprinters logs a warning message whenever --add is
1483          used and a printer already exists.
1484         
1485        - LDAP schema now allows accented chars in pykotaFileName
1486          and pykotaTitle attributes.
1487       
1488    - 1.19alpha4 :
1489   
1490        - a bad copy&paste prevented pkpgcounter to work at all, this
1491          is now fixed.
1492         
1493        - improved PCL support in pkpgcounter, with the use of
1494          HP PCL/PJL Reference Set
1495          PCL5 Printer Language Technical Quick Reference Guide
1496       
1497        - pkpgcounter now uses mmap to speed things up : duration
1498          is halved with the sample 87 pages PCL document I use for
1499          testing.
1500         
1501    - 1.19alpha3 :
1502   
1503        - pkprinters now accepts the --list command line argument
1504          to list informations about printers.
1505         
1506    - 1.19alpha2 :
1507   
1508        - pkpgcounter is now included as a smart external
1509          accounter which can handle both PostScript and PCL.
1510         
1511    - 1.19alpha1 :
1512   
1513        - PYKOTALIMITBY environment variable is now exported too.
1514       
1515        - Inclusion of Michele Baldessari's work on autotools.
1516       
1517    - 1.18 :
1518   
1519        - Improved documentation
1520       
1521    - 1.18beta2 :
1522     
1523        - Fix for raw jobs with cupspykota
1524       
1525    - 1.18beta :
1526   
1527        - Small fix for new waitprinter.sh script
1528       
1529        - Better tracebacks on error conditions
1530       
1531        - Improved translations
1532       
1533        - Improved documentation
1534       
1535    - 1.18alpha15 :
1536
1537        - waitprinter.sh replaced by a new and possibly faster
1538          and more powerful one.
1539   
1540        - Names can now begin with a digit.
1541       
1542        - Stability improvement for quotas set on printers groups.
1543       
1544    - 1.18alpha14 :
1545   
1546        - Catches more (all ?) problems with SMTP servers instead
1547          of breaking.
1548         
1549        - Italian translation added.
1550       
1551    - 1.18alpha13 :
1552   
1553        - Pre and Post hooks are now available in the pykota
1554          filter as well.
1555         
1556        - The pykota filter doesn't check last user's quota
1557          anymore when delayed hardware accounting is used :
1558          this will be done anyway the next time the last
1559          user will print again. This saves some database
1560          queries which are unneeded.
1561       
1562    - 1.18alpha12 :
1563   
1564        - Pre and Post hooks to external commands with many
1565          many environment variables available are useable
1566          from the cupspykota backend.
1567          See sample configuration file for details and help.
1568         
1569    - 1.18alpha11 :
1570   
1571        - Hopefully final fix wrt groups (users and printers)
1572       
1573    - 1.18alpha10 :
1574   
1575        - Fixed nested printer groups accounting.
1576       
1577        - Fixed user groups + printer groups problem.
1578       
1579    - 1.18alpha9 :
1580   
1581        - Fix for LDAP problem when job price was 0.
1582       
1583        - Fix for empty user groups with LDAP.
1584       
1585        - Preliminary version of the snmpprinterstatus command added.
1586       
1587    - 1.18alpha8 :
1588   
1589        - Don't retrieve data when not needed.
1590          This avoids many database queries.
1591       
1592    - 1.18alpha7 :
1593   
1594        - New experimental ldapcache directive to improve
1595          LDAP caching.
1596         
1597    - 1.18alpha6 :
1598       
1599        - New configuration directive added : maildomain
1600          to specify the domain to send mail to when user
1601          email address is not set in PyKota database.
1602         
1603        - More complete email message headers. 
1604         
1605    - 1.18alpha5 :
1606   
1607        - Debian packaging specific files, contributed by
1608          Peter Hawkins are now included in the project's tree.
1609         
1610        - Preliminary work on future low-level LDAP caching to speed
1611          up modifications (at least).
1612         
1613    - 1.18alpha4 :
1614   
1615        - Applied some of the modifications suggested by
1616          Peter Hawkins, for better Debian integration.
1617          Most notably cupspykota, pykota, and the shell
1618          scripts are now installed into /usr/share/pykota
1619          instead of into /usr/bin
1620          BEWARE : double check that your symbolic link
1621          to cupspykota is correct, and that your pykota.conf
1622          file use correct path for the shell scripts like
1623          waitprinter.sh and al.
1624         
1625        - pkhint command added, to help in configuring correct
1626          accounting method for PyKota.
1627         
1628    - 1.18alpha3 :
1629   
1630        - Fixed a rare bug in cupspykota backend which gave
1631          incorrect "CUPS backend died abnormally" messages.
1632       
1633    - 1.18alpha2 :
1634   
1635        - Added the pkprinters command line tool to manage printers
1636          exclusively.
1637       
1638    - 1.18alpha1 :
1639   
1640        - Preliminary work on Relationnal Database Independance.
1641       
1642        - Sample report made from OpenOffice.org added as PDF and SXC.
1643       
1644    - 1.17 :
1645   
1646        - Finalized release.
1647       
1648    - 1.17alpha2 :
1649   
1650        - Fix stupid software accounting bug in the CUPS backend.
1651       
1652    - 1.17alpha1 :
1653   
1654        - User/Group deletion code in edpykota rewritten.
1655       
1656    - 1.16 :
1657   
1658        - Preliminary documentation on how to use OpenOffice.org
1659          to create personnalized reports for PyKota + PostgreSQL.
1660         
1661        - Spanish installation guide for CUPS+PyKota+PostgreSQL
1662          added to the documentation. Doesn't yet document v1.16
1663          though.
1664       
1665        - Portuguese Portuguese translation replaces Brazilian
1666          Portuguese Translation. Brazilian portuguese
1667          translation is still available under the 'br' locale.
1668       
1669    - 1.16beta3 :
1670   
1671        - Swedish translation added.
1672       
1673        - Small fix in documentation.
1674       
1675    - 1.16beta2 :
1676   
1677        - Small fix for job cancelling code while job already
1678          printing in CUPS backend.
1679         
1680        - Big fix wrt printing policies for unknown users. 
1681       
1682    - 1.16beta1 :
1683   
1684        - Manpages upgraded.
1685       
1686    - 1.16alpha26 :
1687   
1688        - Job price is now computed like this :
1689       
1690          SUM((NbPages * PricePerPage) + PricePerJob)
1691         
1692          For current printer and all the printers groups it is
1693          a member of, if any.
1694         
1695          This may be difficult to grasp, but offers unprecedented
1696          flexibility.
1697         
1698    - 1.16alpha25 :
1699   
1700        - Email address can be set at user creation time,
1701          using the following syntax :
1702         
1703            $ edpykota --add username/email@yourdomain.com
1704       
1705    - 1.16alpha24 :
1706   
1707        - CGI script now can show the printing history.
1708       
1709        - Bug wrt number of copies should be fixed.
1710       
1711        - Major code refactoring => It is now possible to
1712          automatically add printers on first print.
1713       
1714    - 1.16alpha23 :
1715   
1716        - Fixed potential accuracy problem if a user printed on
1717          several printers at the very same time.
1718       
1719    - 1.16alpha22 :
1720   
1721        - edpykota now allows adding printers to printer groups
1722       
1723    - 1.16alpha21 :
1724   
1725        - Allows the dot in user and printer names.
1726       
1727        - Printer groups are now cached too.
1728       
1729    - 1.16alpha20 :
1730   
1731        - Fixed several small bugs with the help of PyChecker.
1732       
1733    - 1.16alpha19 :
1734     
1735        - Fixed a bug in PostgreSQL backend's code.
1736       
1737    - 1.16alpha18 :
1738   
1739        - Initial code for printer groups support. Printer groups have
1740          to be added with external tools like psql or gq for example.
1741          Printer groups seems to work fine with users. Untested with user
1742          groups for now.
1743
1744        - Several minor visual problems fixed in reports.
1745       
1746        - Fixed a bug in LDAP date handling.
1747       
1748        - Fix for LDAP problem with some combination of OpenLDAP + Python-LDAP
1749          + some particular settings.
1750         
1751        - mailandpopup.sh shell script added. See sample configuration file
1752          for details.
1753       
1754        - Several environment variables are now exported when executing
1755          external commands (accounters, requesters, mailers) :
1756           
1757            PYKOTAUSERNAME => user who is printing
1758            PYKOTAPRINTERNAME => printer on which the job is being sent
1759            PYKOTATITLE => Job's title
1760            PYKOTAFILENAME => Job's filename
1761            PYKOTACOPIES => number of copies asked
1762            PYKOTAOPTIONS => print command options (-o with CUPS)
1763         
1764    - 1.16alpha17 :
1765   
1766        - Added portugues translation.
1767       
1768        - Major code refactoring in accounters.
1769       
1770    - 1.16alpha16 :
1771   
1772        - Code refactoring, and addition of a real HTML reporter, to
1773          have nice looking and useful web based reports (in the future).
1774       
1775        - Added utolower configuration option to convert all usernames
1776          to lowercase during printing.
1777         
1778    - 1.15alpha15 :
1779   
1780        - Now includes the papwaitprinter.sh shell script to wait for
1781          AppleTalk enabled printers.
1782         
1783    - 1.16alpha14 :
1784   
1785        - Now printing on a printer not defined in the Quota Storage,
1786          results in the job being cancelled or stopped, depending
1787          on the printing system.
1788         
1789    - 1.16alpha13 :
1790   
1791        - Small bugfix wrt Python v2.1
1792       
1793        - If username is an empty string, user root is assumed.
1794       
1795        - 'postgresql' is not recognized anymore as a storage backend,
1796          you have to use 'pgstorage' instead. 'postgresql' used to
1797          be supported for compatibility with very old PyKota versions,
1798          this is not the case anymore.
1799         
1800    - 1.16alpha12 :
1801   
1802        - Job price added to job history, to keep accounting correct
1803          if a printer price per page or per job is modified and the
1804          history is not reset : the history would have given a false
1805          amount of money charged before the printer's prices were
1806          modified, this addition solves the problem.
1807         
1808    - 1.16alpha11 :
1809   
1810        - Some preliminary modifications to the database structure for
1811          PostgreSQL and OpenLDAP. A script to upgrade a PostgreSQL
1812          database is now provided. LDAP attributes now support
1813          eq, pres and sub indexes.
1814         
1815        - Job history now contains additional informations : 
1816          number of copies, filename, title and print options.
1817         
1818    - 1.16alpha10 :
1819       
1820        - Some modifications done to external policy handling.
1821          See sample configuration file for details.
1822   
1823        - Spanish translation added.
1824       
1825    - 1.16alpha9 :
1826   
1827        - mailto can be set to external(...) to warn users above
1828          quota with any command of your choice (e.g. linpopup).
1829          Several parameters are available, see sample configuration
1830          file for details.
1831         
1832    - 1.16alpha8 :
1833   
1834        - Now cupspykota transmits SIGTERMS to the original 
1835          backend when the user deletes a job being processed.
1836         
1837        - The documentation is now licensed under the terms of the
1838          GNU GPL too.
1839         
1840    - 1.16alpha7 :
1841   
1842        - The CUPS backend is now fully functionnal (it seems).
1843       
1844        - From now on, the use of the pykota filter with CUPS
1845          is deprecated. The pykota filter still has to be
1846          used with LPRng though.
1847       
1848    - 1.16alpha6 :
1849   
1850        - Bug fixed : when edpykota was used to add a printer
1851          with no user or group name, a bad user/group name "*" was
1852          added to the database.
1853         
1854    - 1.16alpha5 :
1855   
1856        - New CUPS backend supports device enumeration !
1857          This means that NO manual CUPS configuration has to
1858          be done. All can now be done from CUPS web interface.
1859       
1860    - 1.16alpha4 :
1861   
1862        - New CUPS backend added.
1863       
1864    - 1.16alpha3 :
1865       
1866        - Minimal FAQ document added.
1867       
1868    - 1.16alpha2 :
1869   
1870        - CGI script now partially supports browser's language preference
1871       
1872    - 1.16alpha1 :
1873   
1874        - Ensures that the LDAP connection is really closed at end.
1875       
1876        - More complete error messages in case of LDAP operation failure.
1877       
1878    - 1.15 :
1879     
1880        - Documentation improved.
1881       
1882    - 1.15beta :
1883   
1884        - Command line tools now accept multiple printer
1885          names or wildcards, separated with commas.
1886         
1887    - 1.15alpha9 :
1888   
1889        - External policy can be used to auto-add unknown users
1890          and any other interesting things you may want to do.
1891          WARNING : You can't auto-add printers for now.
1892          They have to be created manually before.
1893          Look at sample configuration file for examples.
1894         
1895    - 1.15alpha8 :
1896   
1897        - Job history can be disabled if needed.
1898          This feature may be useful for people who use the LDAP
1899          backend and don't want their LDAP tree to grow out of
1900          control.
1901       
1902    - 1.15alpha7 :
1903   
1904        - More work done on caching wrt groups.
1905       
1906    - 1.15alpha6 :
1907   
1908        - Performance bottleneck with LDAP solved.
1909       
1910    - 1.15alpha5 :
1911   
1912        - Caching mechanism for all database queries.
1913
1914    - 1.15alpha4 :
1915   
1916        - Problem with Python 2.3 fixed. Needs some definitive
1917          modification.
1918         
1919    - 1.15alpha3 :
1920   
1921        - CGI script now tries to restrict view when the
1922          REMOTE_USER environment variable is set. This allows
1923          people to protect its use with .htaccess files.
1924          When unprotected, or if REMOTE_USER is 'root', then
1925          unrestricted access is granted.
1926          NB : REMOTE_USER is automatically set by the web server
1927          (e.g. Apache) when a page with restricted access is viewed.
1928         
1929    - 1.15alpha2 :
1930   
1931        - Better detection of LPRng.
1932       
1933        - Outputs a warning if printing system is unknown.
1934       
1935    - 1.15alpha1 :
1936   
1937        - Bug fix in SQL code.
1938       
1939    - 1.14 :
1940   
1941        - The PostgreSQL database connection is now always closed before
1942          exit. The LDAP database connection too, but it didn't suffer
1943          from the problem anyway, AFAICT.
1944       
1945    - 1.14beta2 :
1946   
1947        - An LDAP-specific configuration field was introduced, usermail.
1948          Use it to specify which LDAP attribute contains a valid email
1949          address for the user. See sample configuration file for
1950          details.
1951       
1952    - 1.14beta :
1953   
1954        - Two new LDAP-specific configuration fields were introduced,
1955          newuser and newgroup. Use them to specify if you want to add
1956          quota information to existing entries or elsewhere.
1957          See sample configuration file for details.
1958         
1959    - 1.14alpha9 :
1960   
1961        - Documentation improved.
1962       
1963        - pykotme now also prints the user's account balance value
1964          if the user is registered in the Quota Storage and his
1965          limiting factor is "balance".
1966         
1967    - 1.14alpha8 :
1968   
1969        - bin/waitprinter.sh is now included to wait for
1970          SNMP enabled printers to be idle again before
1971          asking for their internal page counter.
1972          See sample configuration file for details.
1973         
1974    - 1.14alpha7 :
1975   
1976        - edpykota now doesn't check if the user/group is above
1977          quota. The check is only done at print time. This
1978          prevents the sending of email messages when creating
1979          user quotas if quota is already reached at creation
1980          time.
1981         
1982    - 1.14alpha6 :
1983   
1984        - Configuration file split and moved to /etc/pykota/pykota.conf
1985          and /etc/pykota/pykotadmin.conf to prevent simple users to
1986          have Read/Write access to the Quota Database.
1987          Don't forget to :
1988         
1989                $ chmod 640 /etc/pykota/pykotadmin.conf
1990               
1991        - storageuser and storageuserpw configuration fields reintroduced
1992          for the same reason.
1993         
1994        - Code cleaning for future implementation of email addresses
1995          support in the PostgreSQL and LDAP backends.
1996         
1997    - 1.14alpha5 :
1998       
1999        - Big bug fixed when changing the prices for a printer
2000       
2001    - 1.14alpha4 :
2002   
2003        - When adding an user, the user itself and its account balance
2004          are now added in the same LDAP entry. Before they were added
2005          as two different LDAP entries.
2006         
2007    - 1.14alpha3 :
2008   
2009        - Email field added to PostgreSQL database. An upgrade script
2010          is included in initscripts/postgresql.
2011       
2012    - 1.14alpha2 :
2013   
2014        - Typo fixed when using the --prototype option to edpykota
2015       
2016    - 1.14alpha1 :
2017   
2018        - Poor man's treshold included : users with a low account
2019          balance (below 1.0 by default, configurable) are sent
2020          a warning message.
2021         
2022        - All warning messages to users are now configurable. 
2023          NB : Warning messages to the administrator are not.
2024       
2025    - 1.13 :
2026   
2027        - Some small fixes wrt group handling.
2028       
2029        - The whole module code was passed through PyChecker and
2030          several small code inconsistencies were fixed,
2031          as well as a bug in the groups code.
2032         
2033    - 1.13alpha1 :
2034   
2035        - Bug fix wrt LDAP.
2036       
2037    - 1.12 :
2038   
2039        - More complete test added in edpykota.
2040       
2041    - 1.12alpha2 :
2042   
2043        - The previous bug fix was incomplete. This is corrected.
2044       
2045    - 1.12alpha1 :
2046   
2047        - Small bug fix.
2048       
2049    - 1.11 :
2050   
2051        - Now includes the pykotme command line tool, to produce
2052          printing quotes for users.
2053         
2054    - 1.10 :
2055   
2056        - Bug fixed wrt quota reports when print limiting is by
2057          account balance.
2058         
2059    - 1.09 :
2060   
2061        - Translations finalized.
2062       
2063        - Manpages updated.
2064       
2065        - Installation documentation improved wrt LDAP support.
2066       
2067    - 1.09beta2 :
2068   
2069        - The CGI script for quota reports works again, and
2070          is much more powerful.
2071       
2072    - 1.09beta :
2073   
2074        - edpykota finalized
2075       
2076    - 1.09alpha2 :
2077   
2078        - LDAP schema modified a bit. Please upgrade.
2079       
2080        - LDAP backend works !
2081       
2082        - repykota and warnpykota allow the root user to pass
2083          users or groups names on the command line. Users
2084          and groups names may contain wildcards.
2085         
2086        - repykota and warnpykota only reports or warns the
2087          current user when launched by non-root users.
2088         
2089        - Minor bug fixes. 
2090   
2091    - 1.09alpha1 :
2092   
2093        - More work on LDAP storage backend. Many options
2094          were added to /etc/pykota.conf to give some
2095          hints to the LDAP storage backend.
2096         
2097        - Severe database access optimizations were done by
2098          rewriting most of the Quota Storage backends drivers.
2099     
2100    - 1.08 :
2101   
2102        - Major bug fix wrt LPRng support for remote jobs.
2103       
2104        - Major bug fix wrt increase/decrease account balances.
2105       
2106    - 1.08alpha8 :
2107   
2108        - Code refactoring.
2109       
2110        - A single user/password pair is used to connect
2111          to the database backend. The storageuser configuration
2112          field, and its associated passwords storageuserpw, are
2113          not used anymore.
2114         
2115        - You can now set PyKota in debug mode, see sample configuration 
2116          file for details.
2117          WARNING : only Quota Storage backend queries are logged in
2118          debug mode, for now.
2119       
2120    - 1.08alpha7 :
2121   
2122        - Very latest LDAP schema.
2123       
2124        - Code enhancement wrt easy pluggability of PyKota attributes
2125          and object classes into an existing LDAP directory.
2126       
2127    - 1.08alpha6 :
2128   
2129        - Minor bug corrections
2130       
2131        - More work on LDAP : new schema
2132       
2133    - 1.08alpha5 :
2134   
2135        - More good work on LDAP storage.
2136          repykota now works reasonably well with the sample LDAP directory.
2137       
2138    - 1.08alpha4 :
2139   
2140        - LDAP schema included.
2141          THIS IS JUST FOR PEOPLE TO DISCUSS ABOUT THIS.
2142          LDAP SUPPORT DOESN'T WORK YET, AND THE SCHEMA
2143          MAY CHANGE IN THE FUTURE. PLEASE TELL US
2144          WHAT YOU THINK ABOUT THIS SCHEMA ON THE
2145          MAILING LIST.
2146         
2147    - 1.08alpha3 :
2148   
2149        - External accounting methods were partly rewritten :
2150         
2151          - No more "broken pipe" should happen.
2152         
2153          - They now take care of the number of copies
2154            This may be unneeded though, if the postscript
2155            file already does this, because this would
2156            overcharge users (number of copies counted
2157            two times). NEEDS MORE TESTING.
2158           
2159          - The sample configuration file now contains 
2160            an external accounting method example which should
2161            work with all DSC compliant Postscript files.
2162           
2163        - Some small bugs were fixed.   
2164       
2165    - 1.08alpha2 :
2166   
2167        - Now works with net-snmp v5.0 and above.
2168          It already worked, but the sample configuration
2169          file didn't contain appropriate values...
2170       
2171    - 1.07 : Release of the Shame !
2172   
2173        - The external accounting methods driver was left out of
2174          the CVS tree. Nobody could use it since it wasn't included !
2175         
2176    - 1.06 :
2177   
2178        - Severe bug fixed : if you had a printer in
2179          power saving state which couldn't answer immediately,
2180          a bug was triggered.
2181          It was caused by a bad copy/paste which
2182          forgot to import a Python module at run time.
2183         
2184    - 1.05 :
2185   
2186        - External accounters are finally available !
2187          This means that you can plug any page accounting
2188          method you like by setting the appropriate
2189          'accounter' field in /etc/pykota.conf
2190          See the sample conf/pykota.conf.sample to
2191          learn how to do.
2192         
2193          NB : Both 'external' and 'stupid' accounting methods
2194               account a job size just before *this* job is
2195               sent to the printer.
2196               The original 'querying' method accounts a job
2197               size just before *the next* job is sent to
2198               the printer.
2199       
2200    - 1.05alpha3 :
2201   
2202        - A 'stupid' and unreliable accounting method was
2203          implemented to serve as an example on how to
2204          do this sort of things. This method only counts
2205          the 'showpage' statements in the input data.
2206          See sample configuration file for details.
2207          Pluggable accounting methods work, but I advise
2208          you TO NOT USE THIS ONE WHICH IS JUST AN EXAMPLE.
2209          It is not reliable enough to be used.
2210          Use the 'querying' accounting method instead.
2211         
2212    - 1.05alpha2 :
2213   
2214        - Pluggable accounting methods.
2215       
2216        - Better error handling.
2217       
2218    - 1.05alpha1 :
2219   
2220        - SECURITY file added to help improve PyKota's security.
2221       
2222        - Extracting the printer's internal page counter is now
2223          tried several times, waiting several seconds between
2224          two tries. This lets the time to warm up for some printers
2225          which don't answer when they are sleeping (my Apple
2226          LaserWriter 16/600 PS is in this case, maybe others too)
2227         
2228        - Small display bug fixed in repykota
2229         
2230    - 1.04 :
2231   
2232        - Default print policy for users/groups unknown from
2233          the print quota system is now DENY instead of ALLOW,
2234          since ALLOW can generate inaccurate results
2235          (incorrect job sizes charged to the wrong persons)
2236         
2237        - LPRng support works !
2238       
2239        - A bug was introduced some time ago wrt printers' default
2240          policy for unknown users. It is now corrected.
2241       
2242        - repykota now displays prices per job and per page for each
2243          printer, if they are defined.
2244         
2245        - Minor display bug fixed in repykota.
2246       
2247        - Problem when running repykota with an empty database was fixed.
2248       
2249    - 1.03 :
2250   
2251        - Upgrade script included for earlier versions.
2252          Please look inside the initscripts subdirectory.
2253          THE DATABASE SCHEMA HAS CHANGED, PLEASE UPGRADE.
2254         
2255        - repykota now reports account balances too.
2256       
2257        - PyKota now has a nice logo, see the logos
2258          subdirectory.
2259       
2260        - Manual pages were finally updated.
2261       
2262        - Group quotas seem to work now !
2263       
2264        - The new database schema allows to keep an history of all
2265          jobs as well as charge users per page and/or per job,
2266          and track users' account balance.
2267         
2268        - edpykota now accepts much more command line options to 
2269          use the new functionnalities. See edpykota --help for
2270          details.
2271         
2272        - The installation script now allows to install the sample
2273          configuration file during first installation.
2274         
2275        - More group quota code works, but still not finished. 
2276       
2277        - The CGI script displays a link to PyKota's website.
2278       
2279        - The job history is now kept, this will allow per-period
2280          reports in the future.
2281         
2282        - After having modified the quota for an user with edpykota,
2283          a quota check is done to eventually warn the user/admin about
2284          a quota which is too low to print.
2285         
2286        - A workaround is provided for HP Printers : their internal
2287          page counter is only saved to NVRAM in a 10 increment, so
2288          if you switch them off and then on, the reported page counter
2289          may be lower than the real number of pages printed.
2290          See http://web.mit.edu/source/third/lprng/doc/LPRng-HOWTO-15.html
2291          We unconditionnally set the last job's page count to
2292          abs(int((10 - abs(lastcounter(snmp) - lastcounter(storage)) / 2))
2293          in this case.
2294          For a more accurate accounting, never switch your HP printers
2295          off.
2296         
2297        - A fix is provided for printers which only have a volatile 
2298          page counter (reset to 0 every time you switch the printer on)
2299          This should allow PyKota to work reasonably fine with HP Laserjet
2300          4L/5L/6L, not perfect, but better than nothing.
2301          See http://web.mit.edu/source/third/lprng/doc/LPRng-HOWTO-15.html
2302          For a more accurate accounting, never switch your HP printers
2303          off. This is untested, please report any problem.
2304         
2305        - A bug was fixed when edpykota --add was used with users who already
2306          had a quota on the specified printer.
2307         
2308        - A small display bug in repykota was introduced in preliminary
2309          1.03 versions, and fixed later on.
2310         
2311        - Some minor bugs which happened in rare situations were fixed.
2312       
2313        - Support for AppleTalk printers was added, see sample configuration
2314          file for details.
2315         
2316        - Users and group printing can now be controlled (limited) either by 
2317          print quota or by account balance.
2318       
2319    - 1.02 :
2320   
2321        - The installation script now checks for software availability
2322          and in case a software is missing asks the user if he
2323          wants to continue with the installation or abort it.
2324         
2325        - The configuration file pykota.conf is now expected to be
2326          found in /etc instead of in /etc/cups
2327          The installation script prompts the user to see if he
2328          wants to move an old configuration file to the new location
2329          if needed.
2330         
2331        - Improved documentation.
2332       
2333        - You can now set the tcp/ip port on which the Quota Storage
2334          Server is listening, see sample configuration file for details.
2335       
2336        - Better general error handling.
2337       
2338        - Upgrade script for pre 1.01 PostgreSQL database schema is now
2339          included as well.
2340       
2341    - 1.01 :
2342   
2343        - The configuration file now accepts an option   
2344          to choose the recipient(s) of the email messages :
2345         
2346            - DevNull means no one will receive them.
2347            - User means only the user will receive them.
2348            - Admin means only the admin will receive them.
2349            - Both means the User and the Admin will receive them.
2350           
2351        - The configuration file now uses hard-coded default values
2352          when an option is not set. See sample configuration file
2353          for details.
2354         
2355        - Manual pages are included since 1.00, but I forgot to   
2356          add this information to this file.
2357         
2358        - Redistribution terms for the official package have 
2359          softened and are now fully GPL compatible :
2360          unrestricted modification is now allowed even for
2361          the version number.
2362         
2363    - 1.00 :
2364   
2365        - edpykota now accepts a --noquota option. This
2366          disable quota checking while still doing page
2367          accounting. This is really useful for people
2368          who don't want to limit their users but want
2369          to know how much pages they print.
2370         
2371        - Some untested scripts were added to retrieve
2372          the life time page counter of non-SNMP printers.
2373         
2374        - Every directory now has a specific README file. 
2375       
2376    - 0.99 :
2377   
2378        - Under some circumstances while the user wasn't allowed
2379          to print, he didn't receive any email message. It is
2380          now fixed.
2381         
2382        - When an user wasn't allowed to print, the quota for
2383          the previous user wasn't updated. This is now fixed.
2384         
2385    - 0.98 :
2386   
2387        - Correctly handle the case where the printer is switched off.
2388       
2389        - Small bug wrt syslog fixed.
2390       
2391    - 0.97 :
2392   
2393        - edpykota accepts wildcards on its command line for users/groups too
2394          if the --add option is not set, e.g. :
2395         
2396              $ edpykota --printer lp --softlimit 50 --hardlimit 100 "jer*"
2397             
2398        - If no user name is passed at all, then a default wildcard of "*"
2399          which means apply the command on ALL users for this printer is used.
2400         
2401        - Small bug fixes.
2402       
2403    - 0.96 :
2404
2405        - Options requester, policy, admin, adminmail and gracedelay can now
2406          be set either globally or per printer. The printer option has
2407          priority if both are defined.
2408
2409        - More powerful configuration parser.
2410       
2411        - If all options are defined globally, there's no need to
2412          define a section for each printer in the configuration
2413          file anymore. Just define a [global] section and it's ok.
2414
2415    - 0.95 :
2416
2417        - External requesters for printers finally added.
2418
2419        - Full internationalization (english and french are supported)
2420 
2421        - More complete quota usage report
2422
2423        - CGI script to access to the quota usage report
2424
2425        - Several bugs fixed.
2426
2427
2428    - 0.9 :
2429
2430        - First public version
Note: See TracBrowser for help on using the browser.