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