root / pykota / trunk / NEWS @ 3050

Revision 3050, 81.8 kB (checked in by jerome, 17 years ago)

Fixed date and time parsing, although I was unable to reproduce the problem reported...

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