move text examples into its own directory
[PyX.git] / CHANGES
blob782f232bbdb5aad0f73da7c6a38efb2b6d77cc0a
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     - messageparser for replaced fontsizes: Warning
10     - messageparser for size differences at the end: Warning not Exception
11     - messageparser for overfull/underfull vbox/hbox: Warning not Exception
12     - newline removal when not disturbing texmessages only
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     - exceptions in drawsymbol & friends...
21     - fix docu (or code) of gridattrs functionality of axis painters
22       (how can one, e.g. draw a grid at the ticks and not at the subticks)
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 postscript will be broken)
27   - graph.style module:
28     - add styles using curves instead of lines
29     - add "steps" style for histogram-like plots
30   - canvas module:
31     - contructor should only take a texrunner keyword argument
32     - set method???
33     - SVG support
34     - stroking of patterns does not work in PDF
35     - patterns call the outputPS method in registerPS and have no writer at that 
36       time -> rewrite this code
37   - style and color module:
38     - support modification of existing styles via __call__
39   - bbox module:
40     - height -> getheight, ...
41   - mathtree:
42     - might be moved into the graph
43     - perform calc by means of Python itself (see eval code in graph.data, but
44       we should use compiled code instead of eval)
45   - dvifile module:
46     - support single-character mode
47   - color module:
48     - what should we do for palette when only one entry
49   - connector module:
50     - is the early conversion with unit.topt unit-modification-save?
51   - deformer module:
52     - better names for the helper functions ?
53   - open discussion:
54     - clearly distingish between readers and writers. dvifile, epsfile, etc. might
55       be renamed to dvireader, epsreader ...
56     - support gsave and grestore in some way to make context handling easier?
58   Documentation:
59     - path module:
60       - describe + vs <<
61       - more details in path constructor: allowed pathels, first pathel...
62       - set method
63     - deco module:
64       - cycloid decorator
65       - smoothed decorator
66     - graphics section:
67       Attributes (clearing merging ) and changeable attributes should be 
68       explained at a central place.
69     - section titles: "Axes" -> "Axes - module axis" or similar
70     - box module:
71       - linealign and circlealign
72     - graph module:
73       styles: document what data name the styles accept (require). Try also to be more
74       userfriendly and not to describe immediately the internals of the implementation:
75       (see e.g. class.style.symbol)
77   FAQ:
78     - describe creation and modification (inplace and ``modify by new'') of
79       graph data
81 TODO before release:
82   - update PyX description in setup.py, README (also update text on prebuilt manual.pdf?),
83     on webpage and later on sf.net project page
85   - Documentation:
86     - canvas module:
87       - move patterns to own module
88   - FAQ:
89     - check examples
91 0.8 (2005/07/??):
92   - path module:
93     - path parameters and argument handling
94     - the arct to arc/arcn conversion (needed for bbox calculation and for conversion into
95       normpath) has been fixed
96   - document module: new
97     - container classes for document and pages
98     - document.paperformat class (strings are deprecated)
99   - canvas module:
100     - writeEPSfile wraps a canvas in a single page document and performs the output
101   - bbox module:
102     - add _pt methods
103   - pdfwriter module:
104     - completely rewritten: support for fonts and patterns has been added
105   - pswriter module: new
106     - separate PS output from canvas
107     - new signature of outputPS methods: writer and context are passed as additional
108       arguments
109   - color module:
110     - allow selection on zero range palette (reported by Francisco Borges, cf. bug #1116257)
111   - graph modules:
112     - modifications on __init__.py in graph and axis subdirectories to
113       make "from pyx.graph import *" working as expected
114     - graph styles:
115       - addontop added to stackedbarpos
116       - column -> columnname renaming where appropriate
117       - histogram style added
118     - graph data:
119       - function needs explicit variable definition (implicit variable definition is deprecated)
120       - column names are inherited by data.data() except when copy=0;
121         unused columns are silently ignored now
122       - dynamic function data on a logarithmic axis uses isinstance check now
123         (although it removes the only (mis)use of axis.inverse, it is a
124         temporary solution only)
125     - graph key:
126       - extend graph keys to allow for several columns
127     - axis data handling refactoring:
128       - introcuded an axis positioner (module graph.axis.positioner)
129       - introduced anchoredaxis to make axis data and positioning local to a graph
130       - linkedaxis is a special version of anchoredaxis and is generic
131         (it uses the new linkpainter provided by an axis)
132       - unification of split and bar axes;
133         removed some black magic in baraxis in favor of a nestedbar axis
134       - x linked to x2 etc. is now possible
135       - axis.inverse was removed (the only place it was (mis)used was by a function)
136     - graphxy:
137       - allow to transform axis after layout
138       - [xy]axisat arguments in the constructor to easily move [xy]-axes
139         to a position defined the orthogonal axis
140       - remove axispos (use the axis dictionary now, since it now contains
141         anchored axis instances and those have shortcuts for the axis positioner
142         methods)
143   - prolog module: deleted (replaced by resource module)
144   - dvifile:
145     - minimal dvitype.py
146     - dvitype unit test
147     - tfm->dvi conversion rounding bugfix
148     - fix parsing of empty strings ("") in fontmap files (reported by John Owens, bug #1218983)
149   - changed requirements to python 2.1:
150     - nested scopes are needed without fallback solution by the path module
151     - use warning module for warnings
152   - tex module:
153     - the very old tex module finally got removed completely
154   - style module:
155     - correctly call base class constructor in linewidth
156   - epsfile module:
157     - correct EOL handling while reading DSC's (reported by Markus Meyer)
158   - pattern module: new
159     - moved canvas.pattern to its own module together with the new PDFpattern class
160     - add some default patterns: hatched and crosshatched
161   - update address of FSF all over the place
164 0.7.1 (2004/12/15):
165   - canvas module:
166     - EPS header fixed (reported by Russell Lang, cf. bug #1065099)
167   - Makefile fixes:
168     - use CURDIR instead of PWD (reported by David M. Cooke, bug #1070285)
169   - pykpathsea module:
170     - support windows line endings (patch by Hans-Andreas Engel, cf. bug #1071160)
171   - graph modules:
172     - line attributes handling fixed (reported by Andrea Riciputi)
173     - fix typos in predefined symbols (reported by Andrea Riciputi)
174     - cut column name list at the max. number of columns (reported by Arnd Baecker)
175   - examples:
176     - add INDEX and README files to distribution
177     - new errorbar and julia example
178   - faq:
179     - pdf snippets for tipa based phonetic transliterations
182 0.7 (2004/10/21):
183   - bitmap module:
184     - new module for inclusion of bitmap images
185   - path module:
186     - names of local and member variables now follow the naming convention of
187       having a _pt suffix when containing lengths in points
188   - bbox module:
189     - names of local and member variables now follow the naming convention of
190       having a _pt suffix when containing lengths in points
191     - enlarge was misspelled as enlarged
192     - renamed _bbox -> bbox_pt
193     - new bbox method center, which returns the coordinates of the center
194       of the bbox
195     - enlarge and enlarged do no longer interprete unqualified lengths as
196       being of type visual
197   - unit module:
198     - unit.cm, unit.t_cm, etc. are no longer sub classes but instances
199       of length
200     - never convert implicitly into visual/width, etc. lengths (this is more
201       about usage of the unit module in various other modules) (TODO: update
202       documentation)
203     - support for string initialization removed
204     - support for initialisation with other length removed
205     - lengths can now be divided by other lengths (as suggested by Michael Gruber
206       and Magnus Lie HHetland)
207   - text module:
208     - postpone reading of fontmap files until TeX/LaTeX is started
209     - sign of font number in dvifile (reported by Michael Gruber)
210     - phantom attribute
211   - canvas module:
212     - added new classes page and document for multipage PostScript output
213     - apply deformers (instead of trafos) in draw method
214   - style module:
215     - decrease interval for dotted and dash-dotted lines for better visual
216       appearance
217   - setup.py and distribution:
218     - create siteconfig on install to store positions of the shared data
219       and the global pyxrc
220   - graph modules:
221     - graph style + data reorganization
222       - modularization of the graph styles by separating data handling and drawing tasks
223       - several graph styles can now be combined together
224       - graph data can internally now combine different data sources
225         (by that, some nasty side effects could have been removed)
226     - enum -> num renaming
227     - allow for horizontally and vertically centered graph key alignment and a key background
228     - fix bug that graph was not finished automatically when a bbox was specified
229       manually (reported by David Barton)
230   - path module:
231     - pathel -> pathitem, etc. renaming
232     - methods accepting a parameter value / arc length now also allow the user to 
233       pass a tuple (subpath, param) / (subpath, arclen)
234     - normpath constructor no longer accepts a path or normpath as argument but only a list
235       of normsubpaths. Use the new normpath method of the path instead to construct a normpath
236       from a path.
237     - normsubpath can now deal with short (i.e. shorter than epsilon) segments correctly
238     - the intersect and split methods of normpath and normsubpath have been completely rewritten and
239       now take the accuracy epsilon correctly into account. Note that for a closed subpath the
240       split function now returns the segment containing the closing point as first element
241       in the result list (before, it was returned as last element).
242     - normsubpathitems and normsubpath now implement much more methods also provided by
243       path and normpath instances
244     - normpath.append no longer accepts pathitems but only normsubpaths
245   - deformer module: new
246     - moved cycloid and smoothed from deco into deformer
247   - bbox module:
248     - handle "BoundingBox: (atend)" (cf. bug #945621 reported by Jim Boyle)
249     - kpsearch option to search for file using the kpathsea library (contributed by Michael Gruber)
250   - base module:
251     - PSCmd and PSOp are now joined in a new class canvasitem
252   - deco module: 
253     - decorated path no longer allows modification of its path
254     - new method excluderange which allows to remove certain parameter ranges from the stroked path
255     - additional canvas provided by decorated path is now called ornaments
256     - constriction=None now indicates an arrowhead without constriction
257   - trafo module:
258     - trafos are now deformers
259   - examples:
260     - a bunch of bargraph examples have been added
263 0.6.x (????/??/??):
264    - graph/axis module:
265      - fix errorbar range adjustment
266      - fix empty tick lists bug (reported by Marko Vendelin, cf. bug #977323)
267    - graph/style module:
268      - symbolline drawing order in graph key (cf. bug #990687)
269    - graph/data module:
270      - access to builtin list (reported by Marcus Mendenhall, cf. bug #1042458)
273 0.6.3 (2004/04/27):
274    - graph module:
275      - fix drawing with background
276      - fix insertion of a zero length path when the whole line is outside
277        the valid axis range (reported by Marko Vendelin)
278    - distribution:
279      - include source for faq and manual
280      - distribute the pdf instead of postscript (manual, faq, examples)
283 0.6.2 (2004/04/07):
284   - graph module:
285     - fixed title=None + graph key issue reported by Gabriel Vasseur
286     - graph.axis.painter.plain -> graph.axis.painter.regular
287       (as it was in parts of the documentation already)
288     - changeable-gridattrs-become-None-bug fixed
289     - graph style cutting outside lines (double-)fixed
292 0.6.1 (2004/03/31):
293   - fixes missing install of the graph and axis directories introduced in 0.6
294   - some minor updates to the faq
297 0.6 (2004/03/30):
298   - graph module:
299     - reorganisation of the graph structure finished (there might be some
300       small pending issues, but the basic restructuring is done with this release):
301       - graph splitted into several modules in pyx/graph and pyx/graph/axis
302       - painters are using the new attribute scheme including changeable
303         attributes
304       - graph styles rewrite
305       - graph data rewrite
306     - axis zeropath feature has been removed
307     - mergelabels removed; linpart doesn't have a label argument anymore
308     - names and texts removed from baraxis
309     - iteration on graph style, when it is used several times in the same graph
310     - symbols + lines -> symbollines; symbols do not allow setting lineattrs,
311       and lines not symbolattrs
312     - manual line clipping (do not include unneeded line segments when the
313       axis range is set manually etc.)
314     - automatic file key titles
315     - graph.data now also includes the old data module
316     - data.list adds (by default) a line number like data.file
317       (thus regular columns are counted from 1)
318   - path:
319     - added new pathels multilineto_pt and multicurveto which allows to specify
320       a list of points and can thus be much more efficient
321     - internal methods return coordinates in pts
322     - arclentoparam returns only parameters not total length
323     - added path.arclength_pt, path.at_pt, path.begin_pt, path.end_pt (and
324       correspondingly for normpath)
325     - complete refactoring of the normpath class: normpaths now consist of
326       normsubpaths which themselves consist of normlines and normcurves This is
327       much more convenient for any routines working with normpaths.
328     - reversing of closed sub paths does not change the first point of the sub
329       path
330     - renamed: arclength -> arclen
331     - renamed: lentopar -> arclentoparam
332     - renamed: glue -> joined
333     - normpath now supports join, the in-place version of joined
334     - path and normpath method raise exception instead of returning None
335       when parameter is out of range
336     - the accuracy epsilon can now only be specified in normpath and normsubpath
337       constructor and no longer in arguments of path and normpath methods
338     - negative parameters are no longer supported in path and normpath methods
339     - path and normpath methods which accept parameter value param now
340       alternatively accept an arc length
341   - deco module:
342     - cycloid decorator
343     - smoothed decorator
344     - arrow heads are no longer stroked (as suggested by Magnus Lie Hetland)
345   - canvas:
346     - writeEPSfile deprecates writetofile
347     - internally, write methods are renamed in outputPS
348     - canvas constructor no longer accepts variable argument list but
349       expects a list of attrs as first argument (defaulting to []) and
350       a texrunner as second argument (defaulting to text.defaulttexrunner)
351     - set, draw, stroke and fill no longer return self, i.e., the canvas, but None
352   - bbox module:
353      - added inplace add (__iadd__), enlarge and transform methods
354      - callers use inplace add where possible now (yielding a considerable
355        speedup)
356     - "undefined" corners of bounding boxes are no longer supported which makes
357       the bounding box operations much more efficient.
358   - connnector module:
359     - renamed _xxx -> xxx_pt
360   - epsfile module:
361     - removed showbbox argument of epsfile class
362   - text module:
363     - default handling of texmessages as in the new attribute scheme
364     - multiple insert bug fixed
365     - made left, right, width, height, depth information available (x length
366       not taking into account box transformations)
367     - ignore tex message "Please type a command or say `\\end'"
368     - added textboxes that are sequentially filled (experimental)
369   - examples:
370     - mandel.py (contributed by Stephen Phillips)
371   - unit module:
372     - length comparision (David Beach)
373     - x-scale for TeX
374     - more unit tests
375   - mathtree module:
376     - switched to the new parser using pythons parser module
377   - data module:
378     - removed, it all lives in the graph.data module now, while before it
379       was splitted into two separate modules
380   - tex module:
381     - not imported by default anymore
382     - obsolete warning when importing this module
384 0.5.1 (2004/01/22):
385   - distribution:
386     - include missing c-files for optional extension modules
387   - prolog module:
388     - fix unpaired BeginProcSet/EndProcSet in font enconding
390 0.5 (2004/01/20):
391   - setup.py and distribution:
392     - allow customization of the extension modules built (via setup.cfg)
393     - disable building pykpathsea module by default
394     - more detailed description of install process in INSTALL
395     - provide more information and pointers to other files in README
396     - include example data files in distribution (suggested by Andrea Riciputi)
397     - force dvips to write ps files instead of printing them (suggested by Otto Tronarp)
398     - includ pyxfaq.pdf in distribution
399   - text module:
400     - improved is-readable test for lfs files and pyx.def file
401     - explicitly quit (La)TeX in cleantmp (helps when quitting with <Ctrl>C)
402     - showwaitfortex implemented following a suggestion by Fernando Perez
403       (waitfortex is increased to 60 seconds now)
404     - support of TeX extension --ipc for reading dvi results while TeX keeps running
405     - configurable font mapping files (via pyxrc or parameter of the texrunner constructor)
406     - markers to get access to positions within TeX expressions
407     - fix: allow for e-tex in texmessage.start (reported by Andrea Riciputi)
408     - fix: print warning at syntax errors in font mapping file and continue (cf. bug #795271)
409     - remove limitation on number of fonts in dvi file
410     - added native virtual font support
411     - dvicopy support not needed anymore (it is still available, but obsolete and
412       removed from the documentation)
413     - do not include too many glyphs in the eps file
414     - _xxx -> xxx_pt renaming
415   - dvifile module (NEW):
416     - separated from the text module
417     - dvifile class returns standard pyx canvas instances on readpage
418   - graph module:
419     - removed manualpart and partitioners mix keyword
420     - results of the splitting at "=" in graph.function were not stripped
421     - skip title=None in key (cf. bug #821284), properly align a single key entry
422     - another (the last?!) axis redesign: axispos -> class of its own
423     - some axispos name have changed slightly (zeroline -> zeropath etc.)
424     - tick/data-vmin/vmax removed
425     - pathaxis
426     - linkaxis
427     - minor enhancements in exponentionaltexter
428     - axes alongs paths including a set of examples
429     - mixing a partitioner and manual ticks by two distinct keyword arguments now
430     - _xxx -> xxx_pt renaming
431     - part -> parter renaming
432   - canvas module:
433     - stroke, fill, draw, set and insert do no longer accept variable length argument lists but
434       an attribute list as last argument
435     - stroke and fill now support trafos (TODO: documentation)
436     - uppercase version of a4, a3, ... paperformats
437   - config module:
438     - new module for loading PyX configuration information
439   - pyx module:
440     - automatically import main modules into pyx namespace as suggested by Fernando 
441       Perez.
442   - path module:
443     - check for sorting of parameter list passed to path.split method
444     - _xxx -> xxx_pt renaming
445   - deco module (NEW): 
446     - contains decoratedpath and decorators from canvas module
447     - all predefined decorators are instances now (deco.stroked is thus ok) and 
448       attributes have to be passed explicitely, e.g., deco.earrow.small(attrs=color.rgb.red) 
449       and deco.stroked([color.rgb.blue])
450   - style module (NEW):
451     - contains all line- and fillstyles which formerly had been defined in the canvas module
452     - dash now supports relative dash lengths (as suggested by Otto Tronarp)
453   - mathtree module:
454     - fixed incorrect handling of - (for instance -x**2 was not negative)
455   - attrlist module:
456     - contents have been moved to the (obsolete) tex module, which was the only user anyhow, and
457       the module itself was removed
458   - t1strip module:
459     - new fallback solution in pure python
460     - bugfix: pyxadapt.h needs to open files binary under Windows (reported by Gary Pajer)
461   - box module:
462     - _xxx -> xxx_pt renaming
463   - trafo module:
464     - _xxx -> xxx_pt renaming
466 0.4.1 (2003/09/17):
467   - canvas module:
468     - "in" to "inch" in paperformats
469   - text module:
470     - fix pyx.def hack occuring whenever \ProcessOptions* was used by a package
471   - pykpathsea module:
472     - implement different file formats for Python version of module
473   - t1strip module:
474     - python fallback solution should behave the same way as c extension module (closes SF bug #799182 reported
475       by Marcus Mendenhall)
476   - __init__.py:
477     - added "connector" to __all__
479 0.4 (2003/08/22):
480   - graph module:
481     - separate texter out of the axispainter
482     - axis/partitioner/texter/painter/axispos redesign & interfaces
483     - tick.text is renamed to tick.label
484     - ticks and labels are renamed to tickpos/tickdist and labelpos/labeldist in partitioning
485     - ticks can be used in the part to mix a partitioner with some manual ticks
486       -> manualpart and the mix technique is not needed anymore
487          (both things are still available and working, but they will be removed in the future)
488     - _ensurefrac is implemented inside the frac constructor now; initialization is possible by:
489       - a (enum, denom) tuple now (previously there were two arguments)
490       - a string (as before via _ensurefrac)
491       - exponential strings are allowed as well (e.g. "1e10" etc.)
492       - a float (precision is determined by floatprecision -- the number of decimal places)
493     - dense -> density
494     - axis.maxworse
495     - axis interface
496   - text module:
497     - reset() method for the texrunner
498     - automatic restart of a TeX instance with the same preamble (preamble changes are not possible)
499     - texmessage.loadfd for accepting font description loading
500     - don't bail out on width_index == 0, but mark character invalid instead
501     - dvicopy flag
502     - support for specials; pyxgraphics flag
503     - support psfonts.map: font names, font encodings
504     - bugfix \def\ProcessPyXBox -> \long\def\ProcessPyXBox
505     - improved lfs handling
506   - data module:
507     - full documentation via doc strings
508   - connector module:
509     - some preliminary version
510   - box module:
511     - multiple radii (up to two per point) and softnesses
512     - ensurecenter added --- do we always force the creation of a center?
513   - path module:
514     - lentopar methods added including some tests
515   - epsfile module:
516     - new parameter bbox allows to override the bounding box of the eps file
518   bugfixes:
519   - text module:
520     - derive TFMError and DVIError correctly from exceptions.Exception
521     - close files and pipes, if they are no longer used (thanks to Marcus Mendenhall)
522     - remove DeprecationWarning in Python 2.3 (thanks to Marcus Mendenhall)
523   - box module:
524     - correct rounding algorithm (Michael Schindler)
525   - graph module:
526     - refer to the graphs texrunner instead of the defaulttexrunner (cf. #728209)
527     - rounding towards zero bugfix in autolinpart
528     - log axis range rating bugfix
529   - mathtree module:
530     - addarg bugs (#738724)
531   - epsfile module:
532     - fix mixing up of height and width in scale calculation
533   - and various other fixer here and there
535 0.3.1 (2003/04/04):
536   - text module:
537     - fix bug in dvi rule code where width was height
538     - fix preamble attribute checking bug
539     - fix texmessage.load pattern search instead of pattern match bug
540     - renamed vbox to parbox (was done in 0.3 partially only)
541   - data module:
542     - allow for tuples in arguments of the data class
543     - convenience: exchanged order of named parameters in data.data
544   - graph module:
545     - convenience: allow for part=None in _axis (base of linaxis and logaxis)
546   - examples:
547     - added a latex example (requested)
548     - added a attributechange example (requested)
549     - added back the integral example (requested; prior PyX 0.3 it was part of the user manual)
550     - small change in vector example (allow for the access to the texrunner)
551     - examples included in source distribution
552   - canvas module:
553     - correct arrow template calculation for very short paths
555 0.3 (2003/03/31):
556   - examples
557     - new easy to use example generation (will hopefully lead to nice examples)
558   - unit box:
559     - new module for handling of convex polygons (taken out of the graph module)
560   - unit helper:
561     - new module containing a collection of helper functions (taken out of the graph module)
562     - moved the attrlist into helper -- as plain functions; attrlist becomes obsolete
563   - text module:
564     - new module: a new and preferable integration of TeX/LaTeX
565   - t1strip module:
566     - strip glyphs from pfa/pfb-fonts
567     - there is a C implementation taken from pdftex
568     - fallback solution via an external program (pfb2pfa)
569   - pykpathsea module:
570     - (partial) C binding to libkpathsea
571     - fallback solution via an external program (kpsewhich)
572   - graph module:
573     - removed some code duplication (various axis painters)
574     - use text module instead of the obsolete tex module
575     - allow for tailing zeros of automatic generated labels
576     - allow for missing data in bar graphs -> skipmissing parameter
577     - remove the support for variables given as keyword arguments in data constructor
578     - use context instead of extern for extern variables and functions
579     - graph keys; titles in data/function/etc.
580   - unit module:
581     - new classes for visual and width lengths, aliases for user length (u_pt = pt)
582     - all length classes have now by default a quantifier 1 (instead of 0), such that,
583       for instance, 5*unit.t_cm() == unit.t_cm(5)
584     - default_unit now has to be set via unit.set. For instance: unit.set(defaultunit="m").
585     - convert_to is now an internal function, which moreover does not longer accept tuples or lists
586   - bbox module:
587     - new class _bbox (the former bbox) which accepts points in the constructor. This is used
588       for internal purposes.
589     - the bbox constructor now accepts user lengths in the constructor.
590     - new methods height, width, top, bottom, left, right
591     - ll & ur ???, what about ul and lr -> ugly!
592     - enlarge (was enhance) now allows selective enlargement to the left, bottom, right and top
593     - output HiResBoundingBox
594     - never reduce bbox upon output
595   - epsfile module:
596     - new constructor signature, more in line with rest of PyX:
597       epsfile(x, y, filename, **additional_args)
598   - data module:
599     - removed additional column support in addcolumn; removed _addcolumn
600     - line reduction for datafile like the every parameter in gnuplot
601   - canvas module:
602     - new way of PS prolog generation that writes only necessary parts
603     - added support for patterns
604     - canvas.insert() now supports arguments
605     - bbox of canvas can be specified in writetofile command explicitely
606     - writetofile does not return self anymore
607     - arrow template now uses intersection with circle to get size right
608       (as per a suggestion by Michael Schindler)
609   - mathtree module:
610     - added abs function
611     - changed the handling of extern functions and all variables
612   - color module:
613     - gradient renamed to palette
614   - numerous bugfixes:
615     - problem with sizefile on windows (tex module)
616     - allow for strings in graphxy's width and height; allow for width only (graph module)
617     - disable rating for labelattrs equals None (graph module)
618     - defaultstyle selection, when a list of data is provided to the plot function (graph module)
619     - traverse when adding functions as arguments of operators (mathtree module)
620     - allow for extern functions in addcolumn (data module)
621     - just one common place for the version number
622     - fix incorrect exception name MathError (path module)
623     - prevent double return of intersections for closed sub paths
624     - ...
626 0.2 (2003/01/17):
627   - unit module:
628     - allow division of length by numbers
629   - trafo module:
630     - new transformation: slant
631     - renamed all trafo methods to use the participle (i.e translate->translated)
632     - the name of all trafo subclasses are verbs (i.e. translation->translate)
633   - graph module:
634     - mark class renamed to symbol
635     - (text-)box distance measurement
636     - moved axis partitioning to axis and axis painter
637     - automatic axis partitioning (now officially: general cleanup, distance measurement, documentation)
638     - splitaxis
639     - baraxis, baraxispainter, and bar style
640   - data module:
641     - previously named datafile module
642     - class "_datafile" renamed to class "data"
643     - class sectionfile added
644     - testsuite
645   - mathtree module:
646     - extern variables and functions (support in graph.function, graph.paramfunction and data.data)
647     - testsuite
648   - text module:
649     - deferred to Version 0.3
650     - running TeX "on the fly" is basically implemented
651   - numerous bugfixes:
652     - transformation bug (#624068, trafo module)
653     - canvas transformations (canvas module???)
654     - textbox alignment (graph module)
655     - return linewidth upon calculation with linewidths (unit module)
656     - allow column number variables with several digits
657     - ...
658   - british and american spellings (color module, graph module)
659   - small logo modifications
661 0.1 (2002/10/07):
662   - initial release