add TODO
[PyX/mjg.git] / CHANGES
blobdbbc1b3c62f199968be84b9cfcf4d60af10b532b
1 PyX
3 TODO:
4   - style module:
5     - make dash length available
6   - text module:
7     - SlantFont & Co support
8     - keep an eye on PEP 324 (popen 5): it could make the texrunner much easier
9     - discuss reltransform: https://sourceforge.net/mailarchive/forum.php?thread_id=9137692&forum_id=23700
10     - add encoding; check whether encoding=ascii works well for the common existing cases
11     - we need output-specific map files (see Palatino example
12       http://sourceforge.net/mailarchive/message.php?msg_id=14863643)
13     - write graphics driver for pgf.sty from LaTeX
14     - ignore "(Please type a command or say `\end')" in preamble method
15   - graph.graph module
16     - common bboxes for different graphs
17     - 3d graphs, circular graphs
18     - axis painter labelattrs=None + automatic axis partitioning leads to no valid partitioning
19     - when all titles are None, a graph key currently raises an exception
20     - translatecanvas should be the default in graph.style.symbol
21     - automatic scaling of y-axis according to subset of data shown on x-axis
22     - add support for grids and/or add/document interface to access tick positions
23   - graph.style and graph.data modules
24     - fix docu of gridattrs functionality of axis painters
25       (how can one, e.g. draw a grid at the ticks and not at the subticks)
26     - make graph.style.symbol.diamond a graph.style.symbol instance (to be discussed)
27   - graph.data module:
28     - use csv module (new in 2.3)
29     - Check for "inf" and "nan" in datafiles.
30       (When plotted, the graph does not complain, but the output will be broken;
31       this depends on the plattform and is not only an issue within the graph system)
32   - graph.style module:
33     - add styles using curves instead of lines
34   - canvas module:
35     - contructor should only take a texrunner keyword argument
36     - SVG support
37     - stroking of patterns does not work in PDF
38   - style and color module:
39     - support modification of existing styles via __call__
40   - bbox module:
41     - rewrite height, etc. using properties
42   - dvifile module:
43     - support single-character mode
44   - deformer module:
45     - move helper path routines to some more generic place for paths?
46   - pdffile module needed (similar to epsfile)
47   - open discussion:
48     - clearly distingish between readers and writers. dvifile, epsfile, etc. might
49       be renamed to dvireader, epsreader ...
50     - support gsave and grestore in some way to make context handling easier?
51   - ps/pdfwriters:
52     - support colorspace argument (like c.writeEPSfile("bla", colorspace="cmyk"))
53   - move pyx.def, lfs-files etc. into a new share directory
54   - write fakepattern.py which substitutes some of the pattern functionality using
55     re-usable canvases
57   Documentation:
58     - path module:
59       - describe + vs << vs join
60       - more details in path constructor: allowed pathels, first pathel...
61       - set method
62     - pattern module:
63       - check and update
64     - graphics section:
65       Changeable attributes should be explained at a central place.
66     - box module:
67       - linealign and circlealign
68       - need to be redone anyway
69     - graph module:
70       styles: document what data name the styles accept (require). Try also to be more
71       userfriendly and not to describe immediately the internals of the implementation:
72       (see e.g. class.style.symbol)
74   Examples:
75     - add an epsfile example (suggested by Stathis Sideris)
76     - add a small example line on y="f($1)" in one of the plot examples
78   FAQ:
79     - describe creation and modification (inplace and ``modify by new'') of
80       graph data
82 0.10 (200X/XX/XX):
83   - color module:
84     - renamed: palette->gradient, functionpalette->functiongradient, linearpalette->lineargradient
85     - new class palette representing a discrete ordered list of colors
87 0.9 (2006/05/24):
88   - most important changes (to be included in the release notes):
89     - mathtree removal (warning about integer division)
90     - barpos style does not build tuples for nestedbar axes automatically
91     - new deformers for path manipulation (for smoothing, shifting, ... paths)
92   - font modules:
93     - new framework for font handling
94     - own implementation of type1 font stripping (old pdftex code fragments removed)
95     - complete type1 font command representation and glyph path extraction from font programs
96     - t1code extension module (C version of de-/encoding routines used in Type 1 font files)
97     - AFM file parser
98   - graph modules:
99     - data module:
100       - mathtree removal: more flexibility due to true python expressions
101       - default style instantiation bug (reported by Gregory Novak)
102     - style module:
103       - automatic subaxis tuple creation removed in barpos (create tuples
104         in expressions now; subnames argument removed since it became pointless;
105         adujstaxis became independend from selectstyle for all styles now)
106       - remove multiple painting of frompath in histogram and barpos styles
107       - fix missing attribute select when using a bar style once only (reported by Alan Isaac)
108       - fix histograms for negative y-coordinates (reported by Dominic Ford, bug #1492548)
109       - fix histogram to stroke lines to the baseline for steps=0 when two subsequent values are equal
110       - add key method for histogram style (reported by Hagemann, bug #1371554)
111       - implement a changebar style
112     - graph, axis and style module:
113       - support for mutual linking of axes between graphs
114       - new domethods dependency handling
115       - separate axis range calculation from dolayout
116     - axis.parter module:
117       - linear and logarthmic partitioners always need lists now
118         (as it was documented all the time; renamed tickdist/labeldist
119         to tickdists/labeldists; renamed tickpos/labelpos to
120         tickpreexps/labelpreexps)
121     - axis module:
122       - patch to tickpos and vtickpos (reported by Wojciech Smigaj, cf. patch #1286112)
123       - anchoredpathaxis added (suggested by Wojciech Smigaj)
124       - properly handle range rating on inversed axis (reported by Dominic Ford, cf. bug #1461513)
125       - invalidate axis partitions with a single label only by the distance rater
126       - fallback (with warning) to linear partitioner on a small logarithmics scale
127     - painter module:
128       - patch to allow for tickattrs=None (reported by Wojciech Smigaj, cf. patch #1286116)
129   - color module:
130     - transparency support (PDF only)
131     - conversion between colorspaces
132     - nonlinear palettes added
133     - the former palette must now be initialized as linearpalette
134     - remove min and max arguments of palettes
135   - text module:
136     - improve escapestring to handle all ascii characters
137     - correct vshift when text size is modified by a text.size instance
138     - recover from exceptions (reported by Alan Isaac)
139     - handle missing italic angle information in tfm for pdf output (reported by Brett Calcott)
140     - allow for .def and .fd files in texmessage.loaddef (new name for
141       texmessage.loadfd, which was restricted to .fd files)
142   - path module:
143     - correct closepath (do not invalidate currentpoint but set it to the
144       beginning of the current subpath); structural rework of pathitems
145     - calculate real bboxes for Bezier curves
146     - fix intersection due to non-linear parametrization of bezier curves
147     - add rotate methods to path, normpath, normsubpath, and normsubpathitems
148     - add flushskippedline to normsubpath
149     - add arclentoparam to normsubpath and normsubpathitems
150     - path is no longer a canvasitem
151     - reduce number of parameters of outputPS/outputPDF methods (do not pass context and registry)
152   - normpath module:
153     - contains normpath, normsubpath and normpathparam which have originally
154       been in the path module
155     - return "invalid" for certain path operations when the curve "speed" is
156       below a certain threshold
157     - normpath is no longer a canvasitem
158     - reduce number of parameters of outputPS/outputPDF methods (do not pass context and registry)
159   - deformer module:
160     - rewritten smoothed to make use of the subnormpath facilities
161     - rewritten parallel for arbitrary paths
162   - deco module:
163     - add basic text decorator
164     - allow arrows at arbitrary positions along the path
165   - connector module:
166     - boxdists parameter need to be a list/tuple of two items now
167     - changed the orientation of the angle parameters
168   - trafo module:
169     - renamed _apply to apply_pt
170     - introduce _epsilon for checking the singularity of a trafo
171   - epsfile module:
172     - use rectclip instead of clip to remove the clipping path from the
173       PostScript stack, which otherwise might create strange effects for
174       certain PostScript files (reported by Gert Ingold)
175   - dvifile module:
176     - silently ignore TrueType fonts in font mapping files (reported by Gabriel Vasseur)
177   - type1font module:
178     - accept [ and ] as separators in encoding files (reported by Mojca Miklavec, cf. bug #1429524)
179   - canvas module:
180     - remove registerPS/registerPDF in favour of registering resourcing during the outputPS/outputPDF run
181     - move bbox handling to registry
182     - rename outputPS/outputPDF -> processPS/processPDF
183     - remove set method of canvas
184     - add a pipeGS method to directly pass the PyX output to ghostscript
185     - allow file instances as parameter of the writeXXXfile methods (feature request #1419658 by Jason Pratt)
186   - document modules:
187     - allow file instances as parameter of the writeXXXfile methods (feature request #1419658 by Jason Pratt)
188   - style module:
189     - make rellength the default for dash styles
190   - random notes:
191     - switched to subversion on 2006/03/09
193 0.8.1 (2005/08/13):
194   - deco module:
195     - fix bug in postscript deco code for stroking only attributes
196   - path module:
197     - fix multicurveto._normalized
198     - fix path.paramtoarclen and path.paramtoarclen_pt 
199     - remove unused method-local function
200     - fix linestyle rellength in PostScript
201     - correction to the rounding problems in circles (reported by Uwe Fabricius)
202   - epsfile module:
203     - fix a typo
204   - pattern module:
205     - issue a warning when not using a stroke color for patterns
206   - text module:
207     - postpone PDFfontdescriptor information, since it raises an error on certain
208       fonts even when PostScript output was requested (reported by Gert Ingold)
209     - remove spurious spaces when checking for empty texmessages
210   - kpathsea module:
211     - caching in fallback to lower system call bottleneck
212   - canvas module:
213     - add missing writePSfile wrapper
214     - add *args to writeEPSfile and writePDFfile wrappers
215   - writer modules:
216     - writebbox option to write bbox information (disabled by default)
217       even when a paper format is specified (PS and PDF writers only)
218   - use arclen in spring example
219   - add knot example
220   - use pdf graphic files for pdf version of the manual
221   - use PyX to create tipa fallbacks for FAQ
222   - correct description regarding the manual in the README file
225 0.8 (2005/07/13):
226   - changed requirements to python 2.1 or newer:
227     - nested scopes are needed without fallback solution by the path module
228       (at other places fallback solutions for missing nested scopes are missing as well)
229     - use warning module for warnings
230   - path module:
231     - path parameters and argument handling
232     - the arct to arc/arcn conversion (needed for bbox calculation and for conversion into
233       normpath) has been fixed
234   - document module: new
235     - container classes for document and pages
236     - document.paperformat class (strings are deprecated)
237   - canvas module:
238     - writeEPSfile wraps a canvas in a single page document and performs the output
239   - bbox module:
240     - add _pt methods
241   - pdfwriter module:
242     - completely rewritten: support for fonts and patterns has been added
243   - pswriter module: new
244     - separate PS output from canvas
245     - new signature of outputPS methods: writer and context are passed as additional
246       arguments
247   - color module:
248     - allow selection on zero range palette (reported by Francisco Borges, cf. bug #1116257)
249   - prolog module: removed due to code reorganisation
250   - graph modules:
251     - modifications on __init__.py in graph and axis subdirectories to
252       make "from pyx.graph import *" working as expected
253     - graph styles:
254       - addontop added to stackedbarpos
255       - column -> columnname renaming where appropriate
256       - histogram style added
257     - graph data:
258       - function needs explicit variable definition (implicit variable definition is deprecated)
259       - column names are inherited by data.data() except when copy=0;
260         unused columns are silently ignored now
261       - dynamic function data on a logarithmic axis uses isinstance check now
262         (although it removes the only (mis)use of axis.inverse, it is a
263         temporary solution only)
264     - graph key:
265       - extend graph keys to allow for several columns
266     - axis data handling refactoring:
267       - introcuded an axis positioner (module graph.axis.positioner)
268       - introduced anchoredaxis to make axis data and positioning local to a graph
269       - linkedaxis is a special version of anchoredaxis and is generic
270         (it uses the new linkpainter provided by an axis)
271       - unification of split and bar axes;
272         removed some black magic in baraxis in favor of a nestedbar axis
273       - x linked to x2 etc. is now possible
274       - axis.inverse was removed (the only place it was (mis)used was by a function)
275     - graphxy:
276       - allow to transform axis after layout
277       - [xy]axisat arguments in the constructor to easily move [xy]-axes
278         to a position defined the orthogonal axis
279       - remove axispos (use the axis dictionary now, since it now contains
280         anchored axis instances and those have shortcuts for the axis positioner
281         methods)
282   - dvifile:
283     - tfm->dvi conversion rounding bugfix
284     - fix parsing of empty strings ("") in fontmap files (reported by John Owens, bug #1218983)
285   - text module:
286     - support for halign of boxes and content of boxes (see halign example)
287     - take units xscale into account in parbox
288     - messageparser for replaced fontsizes: Warning -> implemented by texmessage.fontwarning
289     - messageparser for size differences at the end: Warning not Exception -> implemented by texmessage.fontwarning
290     - messageparser for overfull/underfull vbox/hbox: Warning not Exception -> implemented by texmessage.boxwarning
291     - dvicopy flag removed
292     - allow argument of set to be None
293     - rename nomathmode and nophantom to clearmathmode and clearphantom
294     - texmessagepattern for easy creation of simple TeX message parsers
295     - allow long file names in file checking TeX message parsers
296     - no newline removal to not disturbe TeX messages when reporting errors
297     - reworked documentation to use the python documentation standards
298   - style module:
299     - linewidth is no longer a unit.length subclass but expects a such as first argument
300   - epsfile module:
301     - correct EOL handling while reading DSC's (reported by Markus Meyer)
302   - pattern module: new
303     - moved canvas.pattern to its own module together with the new PDFpattern class
304     - add some default patterns: hatched and crosshatched
305   - deformer module:
306     - improve the smoothing deformer
307     - add a parallel deformer
308   - tex module:
309     - the very old tex module finally got removed completely
310   - contrib directory:
311     - a simple converter from dvi to EPS/PS/PDF files (dviconvert.py) has been added
312     - a simple imagine to EPS/PS/PDF converter (imgconvert.py) has been added
313     - a simple dvitype.py has been added
314   - update address of FSF all over the place
317 0.7.1 (2004/12/15):
318   - canvas module:
319     - EPS header fixed (reported by Russell Lang, cf. bug #1065099)
320   - Makefile fixes:
321     - use CURDIR instead of PWD (reported by David M. Cooke, bug #1070285)
322   - pykpathsea module:
323     - support windows line endings (patch by Hans-Andreas Engel, cf. bug #1071160)
324   - graph modules:
325     - line attributes handling fixed (reported by Andrea Riciputi)
326     - fix typos in predefined symbols (reported by Andrea Riciputi)
327     - cut column name list at the max. number of columns (reported by Arnd Baecker)
328   - examples:
329     - add INDEX and README files to distribution
330     - new errorbar and julia example
331   - faq:
332     - pdf snippets for tipa based phonetic transliterations
335 0.7 (2004/10/21):
336   - bitmap module:
337     - new module for inclusion of bitmap images
338   - path module:
339     - names of local and member variables now follow the naming convention of
340       having a _pt suffix when containing lengths in points
341   - bbox module:
342     - names of local and member variables now follow the naming convention of
343       having a _pt suffix when containing lengths in points
344     - enlarge was misspelled as enlarged
345     - renamed _bbox -> bbox_pt
346     - new bbox method center, which returns the coordinates of the center
347       of the bbox
348     - enlarge and enlarged do no longer interprete unqualified lengths as
349       being of type visual
350   - unit module:
351     - unit.cm, unit.t_cm, etc. are no longer sub classes but instances
352       of length
353     - never convert implicitly into visual/width, etc. lengths (this is more
354       about usage of the unit module in various other modules) (TODO: update
355       documentation)
356     - support for string initialization removed
357     - support for initialisation with other length removed
358     - lengths can now be divided by other lengths (as suggested by Michael Gruber
359       and Magnus Lie Hetland)
360   - text module:
361     - postpone reading of fontmap files until TeX/LaTeX is started
362     - sign of font number in dvifile (reported by Michael Gruber)
363     - phantom attribute
364   - canvas module:
365     - added new classes page and document for multipage PostScript output
366     - apply deformers (instead of trafos) in draw method
367   - style module:
368     - decrease interval for dotted and dash-dotted lines for better visual
369       appearance
370   - setup.py and distribution:
371     - create siteconfig on install to store positions of the shared data
372       and the global pyxrc
373   - graph modules:
374     - graph style + data reorganization
375       - modularization of the graph styles by separating data handling and drawing tasks
376       - several graph styles can now be combined together
377       - graph data can internally now combine different data sources
378         (by that, some nasty side effects could have been removed)
379     - enum -> num renaming
380     - allow for horizontally and vertically centered graph key alignment and a key background
381     - fix bug that graph was not finished automatically when a bbox was specified
382       manually (reported by David Barton)
383   - path module:
384     - pathel -> pathitem, etc. renaming
385     - methods accepting a parameter value / arc length now also allow the user to 
386       pass a tuple (subpath, param) / (subpath, arclen)
387     - normpath constructor no longer accepts a path or normpath as argument but only a list
388       of normsubpaths. Use the new normpath method of the path instead to construct a normpath
389       from a path.
390     - normsubpath can now deal with short (i.e. shorter than epsilon) segments correctly
391     - the intersect and split methods of normpath and normsubpath have been completely rewritten and
392       now take the accuracy epsilon correctly into account. Note that for a closed subpath the
393       split function now returns the segment containing the closing point as first element
394       in the result list (before, it was returned as last element).
395     - normsubpathitems and normsubpath now implement much more methods also provided by
396       path and normpath instances
397     - normpath.append no longer accepts pathitems but only normsubpaths
398   - deformer module: new
399     - moved cycloid and smoothed from deco into deformer
400   - bbox module:
401     - handle "BoundingBox: (atend)" (cf. bug #945621 reported by Jim Boyle)
402     - kpsearch option to search for file using the kpathsea library (contributed by Michael Gruber)
403   - base module:
404     - PSCmd and PSOp are now joined in a new class canvasitem
405   - deco module: 
406     - decorated path no longer allows modification of its path
407     - new method excluderange which allows to remove certain parameter ranges from the stroked path
408     - additional canvas provided by decorated path is now called ornaments
409     - constriction=None now indicates an arrowhead without constriction
410   - trafo module:
411     - trafos are now deformers
412   - examples:
413     - a bunch of bargraph examples have been added
416 0.6.x (????/??/??):
417    - graph/axis module:
418      - fix errorbar range adjustment
419      - fix empty tick lists bug (reported by Marko Vendelin, cf. bug #977323)
420    - graph/style module:
421      - symbolline drawing order in graph key (cf. bug #990687)
422    - graph/data module:
423      - access to builtin list (reported by Marcus Mendenhall, cf. bug #1042458)
426 0.6.3 (2004/04/27):
427    - graph module:
428      - fix drawing with background
429      - fix insertion of a zero length path when the whole line is outside
430        the valid axis range (reported by Marko Vendelin)
431    - distribution:
432      - include source for faq and manual
433      - distribute the pdf instead of postscript (manual, faq, examples)
436 0.6.2 (2004/04/07):
437   - graph module:
438     - fixed title=None + graph key issue reported by Gabriel Vasseur
439     - graph.axis.painter.plain -> graph.axis.painter.regular
440       (as it was in parts of the documentation already)
441     - changeable-gridattrs-become-None-bug fixed
442     - graph style cutting outside lines (double-)fixed
445 0.6.1 (2004/03/31):
446   - fixes missing install of the graph and axis directories introduced in 0.6
447   - some minor updates to the faq
450 0.6 (2004/03/30):
451   - graph module:
452     - reorganisation of the graph structure finished (there might be some
453       small pending issues, but the basic restructuring is done with this release):
454       - graph splitted into several modules in pyx/graph and pyx/graph/axis
455       - painters are using the new attribute scheme including changeable
456         attributes
457       - graph styles rewrite
458       - graph data rewrite
459     - axis zeropath feature has been removed
460     - mergelabels removed; linpart doesn't have a label argument anymore
461     - names and texts removed from baraxis
462     - iteration on graph style, when it is used several times in the same graph
463     - symbols + lines -> symbollines; symbols do not allow setting lineattrs,
464       and lines not symbolattrs
465     - manual line clipping (do not include unneeded line segments when the
466       axis range is set manually etc.)
467     - automatic file key titles
468     - graph.data now also includes the old data module
469     - data.list adds (by default) a line number like data.file
470       (thus regular columns are counted from 1)
471   - path:
472     - added new pathels multilineto_pt and multicurveto which allows to specify
473       a list of points and can thus be much more efficient
474     - internal methods return coordinates in pts
475     - arclentoparam returns only parameters not total length
476     - added path.arclength_pt, path.at_pt, path.begin_pt, path.end_pt (and
477       correspondingly for normpath)
478     - complete refactoring of the normpath class: normpaths now consist of
479       normsubpaths which themselves consist of normlines and normcurves This is
480       much more convenient for any routines working with normpaths.
481     - reversing of closed sub paths does not change the first point of the sub
482       path
483     - renamed: arclength -> arclen
484     - renamed: lentopar -> arclentoparam
485     - renamed: glue -> joined
486     - normpath now supports join, the in-place version of joined
487     - path and normpath method raise exception instead of returning None
488       when parameter is out of range
489     - the accuracy epsilon can now only be specified in normpath and normsubpath
490       constructor and no longer in arguments of path and normpath methods
491     - negative parameters are no longer supported in path and normpath methods
492     - path and normpath methods which accept parameter value param now
493       alternatively accept an arc length
494   - deco module:
495     - cycloid decorator
496     - smoothed decorator
497     - arrow heads are no longer stroked (as suggested by Magnus Lie Hetland)
498   - canvas:
499     - writeEPSfile deprecates writetofile
500     - internally, write methods are renamed in outputPS
501     - canvas constructor no longer accepts variable argument list but
502       expects a list of attrs as first argument (defaulting to []) and
503       a texrunner as second argument (defaulting to text.defaulttexrunner)
504     - set, draw, stroke and fill no longer return self, i.e., the canvas, but None
505   - bbox module:
506      - added inplace add (__iadd__), enlarge and transform methods
507      - callers use inplace add where possible now (yielding a considerable
508        speedup)
509     - "undefined" corners of bounding boxes are no longer supported which makes
510       the bounding box operations much more efficient.
511   - connnector module:
512     - renamed _xxx -> xxx_pt
513   - epsfile module:
514     - removed showbbox argument of epsfile class
515   - text module:
516     - default handling of texmessages as in the new attribute scheme
517     - multiple insert bug fixed
518     - made left, right, width, height, depth information available (x length
519       not taking into account box transformations)
520     - ignore tex message "Please type a command or say `\\end'"
521     - added textboxes that are sequentially filled (experimental)
522   - examples:
523     - mandel.py (contributed by Stephen Phillips)
524   - unit module:
525     - length comparision (David Beach)
526     - x-scale for TeX
527     - more unit tests
528   - mathtree module:
529     - switched to the new parser using pythons parser module
530   - data module:
531     - removed, it all lives in the graph.data module now, while before it
532       was splitted into two separate modules
533   - tex module:
534     - not imported by default anymore
535     - obsolete warning when importing this module
537 0.5.1 (2004/01/22):
538   - distribution:
539     - include missing c-files for optional extension modules
540   - prolog module:
541     - fix unpaired BeginProcSet/EndProcSet in font enconding
543 0.5 (2004/01/20):
544   - setup.py and distribution:
545     - allow customization of the extension modules built (via setup.cfg)
546     - disable building pykpathsea module by default
547     - more detailed description of install process in INSTALL
548     - provide more information and pointers to other files in README
549     - include example data files in distribution (suggested by Andrea Riciputi)
550     - force dvips to write ps files instead of printing them (suggested by Otto Tronarp)
551     - includ pyxfaq.pdf in distribution
552   - text module:
553     - improved is-readable test for lfs files and pyx.def file
554     - explicitly quit (La)TeX in cleantmp (helps when quitting with <Ctrl>C)
555     - showwaitfortex implemented following a suggestion by Fernando Perez
556       (waitfortex is increased to 60 seconds now)
557     - support of TeX extension --ipc for reading dvi results while TeX keeps running
558     - configurable font mapping files (via pyxrc or parameter of the texrunner constructor)
559     - markers to get access to positions within TeX expressions
560     - fix: allow for e-tex in texmessage.start (reported by Andrea Riciputi)
561     - fix: print warning at syntax errors in font mapping file and continue (cf. bug #795271)
562     - remove limitation on number of fonts in dvi file
563     - added native virtual font support
564     - dvicopy support not needed anymore (it is still available, but obsolete and
565       removed from the documentation)
566     - do not include too many glyphs in the eps file
567     - _xxx -> xxx_pt renaming
568   - dvifile module (NEW):
569     - separated from the text module
570     - dvifile class returns standard pyx canvas instances on readpage
571   - graph module:
572     - removed manualpart and partitioners mix keyword
573     - results of the splitting at "=" in graph.function were not stripped
574     - skip title=None in key (cf. bug #821284), properly align a single key entry
575     - another (the last?!) axis redesign: axispos -> class of its own
576     - some axispos name have changed slightly (zeroline -> zeropath etc.)
577     - tick/data-vmin/vmax removed
578     - pathaxis
579     - linkaxis
580     - minor enhancements in exponentionaltexter
581     - axes alongs paths including a set of examples
582     - mixing a partitioner and manual ticks by two distinct keyword arguments now
583     - _xxx -> xxx_pt renaming
584     - part -> parter renaming
585   - canvas module:
586     - stroke, fill, draw, set and insert do no longer accept variable length argument lists but
587       an attribute list as last argument
588     - stroke and fill now support trafos (TODO: documentation)
589     - uppercase version of a4, a3, ... paperformats
590   - config module:
591     - new module for loading PyX configuration information
592   - pyx module:
593     - automatically import main modules into pyx namespace as suggested by Fernando 
594       Perez.
595   - path module:
596     - check for sorting of parameter list passed to path.split method
597     - _xxx -> xxx_pt renaming
598   - deco module (NEW): 
599     - contains decoratedpath and decorators from canvas module
600     - all predefined decorators are instances now (deco.stroked is thus ok) and 
601       attributes have to be passed explicitely, e.g., deco.earrow.small(attrs=color.rgb.red) 
602       and deco.stroked([color.rgb.blue])
603   - style module (NEW):
604     - contains all line- and fillstyles which formerly had been defined in the canvas module
605     - dash now supports relative dash lengths (as suggested by Otto Tronarp)
606   - mathtree module:
607     - fixed incorrect handling of - (for instance -x**2 was not negative)
608   - attrlist module:
609     - contents have been moved to the (obsolete) tex module, which was the only user anyhow, and
610       the module itself was removed
611   - t1strip module:
612     - new fallback solution in pure python
613     - bugfix: pyxadapt.h needs to open files binary under Windows (reported by Gary Pajer)
614   - box module:
615     - _xxx -> xxx_pt renaming
616   - trafo module:
617     - _xxx -> xxx_pt renaming
619 0.4.1 (2003/09/17):
620   - canvas module:
621     - "in" to "inch" in paperformats
622   - text module:
623     - fix pyx.def hack occuring whenever \ProcessOptions* was used by a package
624   - pykpathsea module:
625     - implement different file formats for Python version of module
626   - t1strip module:
627     - python fallback solution should behave the same way as c extension module (closes SF bug #799182 reported
628       by Marcus Mendenhall)
629   - __init__.py:
630     - added "connector" to __all__
632 0.4 (2003/08/22):
633   - graph module:
634     - separate texter out of the axispainter
635     - axis/partitioner/texter/painter/axispos redesign & interfaces
636     - tick.text is renamed to tick.label
637     - ticks and labels are renamed to tickpos/tickdist and labelpos/labeldist in partitioning
638     - ticks can be used in the part to mix a partitioner with some manual ticks
639       -> manualpart and the mix technique is not needed anymore
640          (both things are still available and working, but they will be removed in the future)
641     - _ensurefrac is implemented inside the frac constructor now; initialization is possible by:
642       - a (enum, denom) tuple now (previously there were two arguments)
643       - a string (as before via _ensurefrac)
644       - exponential strings are allowed as well (e.g. "1e10" etc.)
645       - a float (precision is determined by floatprecision -- the number of decimal places)
646     - dense -> density
647     - axis.maxworse
648     - axis interface
649   - text module:
650     - reset() method for the texrunner
651     - automatic restart of a TeX instance with the same preamble (preamble changes are not possible)
652     - texmessage.loadfd for accepting font description loading
653     - don't bail out on width_index == 0, but mark character invalid instead
654     - dvicopy flag
655     - support for specials; pyxgraphics flag
656     - support psfonts.map: font names, font encodings
657     - bugfix \def\ProcessPyXBox -> \long\def\ProcessPyXBox
658     - improved lfs handling
659   - data module:
660     - full documentation via doc strings
661   - connector module:
662     - some preliminary version
663   - box module:
664     - multiple radii (up to two per point) and softnesses
665     - ensurecenter added --- do we always force the creation of a center?
666   - path module:
667     - lentopar methods added including some tests
668   - epsfile module:
669     - new parameter bbox allows to override the bounding box of the eps file
671   bugfixes:
672   - text module:
673     - derive TFMError and DVIError correctly from exceptions.Exception
674     - close files and pipes, if they are no longer used (thanks to Marcus Mendenhall)
675     - remove DeprecationWarning in Python 2.3 (thanks to Marcus Mendenhall)
676   - box module:
677     - correct rounding algorithm (Michael Schindler)
678   - graph module:
679     - refer to the graphs texrunner instead of the defaulttexrunner (cf. #728209)
680     - rounding towards zero bugfix in autolinpart
681     - log axis range rating bugfix
682   - mathtree module:
683     - addarg bugs (#738724)
684   - epsfile module:
685     - fix mixing up of height and width in scale calculation
686   - and various other fixer here and there
688 0.3.1 (2003/04/04):
689   - text module:
690     - fix bug in dvi rule code where width was height
691     - fix preamble attribute checking bug
692     - fix texmessage.load pattern search instead of pattern match bug
693     - renamed vbox to parbox (was done in 0.3 partially only)
694   - data module:
695     - allow for tuples in arguments of the data class
696     - convenience: exchanged order of named parameters in data.data
697   - graph module:
698     - convenience: allow for part=None in _axis (base of linaxis and logaxis)
699   - examples:
700     - added a latex example (requested)
701     - added a attributechange example (requested)
702     - added back the integral example (requested; prior PyX 0.3 it was part of the user manual)
703     - small change in vector example (allow for the access to the texrunner)
704     - examples included in source distribution
705   - canvas module:
706     - correct arrow template calculation for very short paths
708 0.3 (2003/03/31):
709   - examples
710     - new easy to use example generation (will hopefully lead to nice examples)
711   - unit box:
712     - new module for handling of convex polygons (taken out of the graph module)
713   - unit helper:
714     - new module containing a collection of helper functions (taken out of the graph module)
715     - moved the attrlist into helper -- as plain functions; attrlist becomes obsolete
716   - text module:
717     - new module: a new and preferable integration of TeX/LaTeX
718   - t1strip module:
719     - strip glyphs from pfa/pfb-fonts
720     - there is a C implementation taken from pdftex
721     - fallback solution via an external program (pfb2pfa)
722   - pykpathsea module:
723     - (partial) C binding to libkpathsea
724     - fallback solution via an external program (kpsewhich)
725   - graph module:
726     - removed some code duplication (various axis painters)
727     - use text module instead of the obsolete tex module
728     - allow for tailing zeros of automatic generated labels
729     - allow for missing data in bar graphs -> skipmissing parameter
730     - remove the support for variables given as keyword arguments in data constructor
731     - use context instead of extern for extern variables and functions
732     - graph keys; titles in data/function/etc.
733   - unit module:
734     - new classes for visual and width lengths, aliases for user length (u_pt = pt)
735     - all length classes have now by default a quantifier 1 (instead of 0), such that,
736       for instance, 5*unit.t_cm() == unit.t_cm(5)
737     - default_unit now has to be set via unit.set. For instance: unit.set(defaultunit="m").
738     - convert_to is now an internal function, which moreover does not longer accept tuples or lists
739   - bbox module:
740     - new class _bbox (the former bbox) which accepts points in the constructor. This is used
741       for internal purposes.
742     - the bbox constructor now accepts user lengths in the constructor.
743     - new methods height, width, top, bottom, left, right
744     - ll & ur ???, what about ul and lr -> ugly!
745     - enlarge (was enhance) now allows selective enlargement to the left, bottom, right and top
746     - output HiResBoundingBox
747     - never reduce bbox upon output
748   - epsfile module:
749     - new constructor signature, more in line with rest of PyX:
750       epsfile(x, y, filename, **additional_args)
751   - data module:
752     - removed additional column support in addcolumn; removed _addcolumn
753     - line reduction for datafile like the every parameter in gnuplot
754   - canvas module:
755     - new way of PS prolog generation that writes only necessary parts
756     - added support for patterns
757     - canvas.insert() now supports arguments
758     - bbox of canvas can be specified in writetofile command explicitely
759     - writetofile does not return self anymore
760     - arrow template now uses intersection with circle to get size right
761       (as per a suggestion by Michael Schindler)
762   - mathtree module:
763     - added abs function
764     - changed the handling of extern functions and all variables
765   - color module:
766     - gradient renamed to palette
767   - numerous bugfixes:
768     - problem with sizefile on windows (tex module)
769     - allow for strings in graphxy's width and height; allow for width only (graph module)
770     - disable rating for labelattrs equals None (graph module)
771     - defaultstyle selection, when a list of data is provided to the plot function (graph module)
772     - traverse when adding functions as arguments of operators (mathtree module)
773     - allow for extern functions in addcolumn (data module)
774     - just one common place for the version number
775     - fix incorrect exception name MathError (path module)
776     - prevent double return of intersections for closed sub paths
777     - ...
779 0.2 (2003/01/17):
780   - unit module:
781     - allow division of length by numbers
782   - trafo module:
783     - new transformation: slant
784     - renamed all trafo methods to use the participle (i.e translate->translated)
785     - the name of all trafo subclasses are verbs (i.e. translation->translate)
786   - graph module:
787     - mark class renamed to symbol
788     - (text-)box distance measurement
789     - moved axis partitioning to axis and axis painter
790     - automatic axis partitioning (now officially: general cleanup, distance measurement, documentation)
791     - splitaxis
792     - baraxis, baraxispainter, and bar style
793   - data module:
794     - previously named datafile module
795     - class "_datafile" renamed to class "data"
796     - class sectionfile added
797     - testsuite
798   - mathtree module:
799     - extern variables and functions (support in graph.function, graph.paramfunction and data.data)
800     - testsuite
801   - text module:
802     - deferred to Version 0.3
803     - running TeX "on the fly" is basically implemented
804   - numerous bugfixes:
805     - transformation bug (#624068, trafo module)
806     - canvas transformations (canvas module???)
807     - textbox alignment (graph module)
808     - return linewidth upon calculation with linewidths (unit module)
809     - allow column number variables with several digits
810     - ...
811   - british and american spellings (color module, graph module)
812   - small logo modifications
814 0.1 (2002/10/07):
815   - initial release