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