root / pykota / trunk / NEWS @ 1550

Revision 1550, 39.2 kB (checked in by jalet, 20 years ago)

Added native fast PDF parsing method

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