root / pykota / trunk / NEWS @ 1675

Revision 1675, 44.0 kB (checked in by jalet, 20 years ago)

Fixed index problem in PCLXL parser when retrieving number of copies for
each page

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