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