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