3 - ATT: refactoring of attributes in progress!!!
7 - rect style (and errorbars?) should use clipping (TODO: should they or do the now?)
8 - do not include unneeded line segments when the axis range is set manually
9 - allow for an iteration of a graph style, when it is used several times
10 - symbols should become decorators
11 - common bboxes for different graphs
12 - automatic datafile key title
13 - exceptions in drawsymbol & friends...
14 - 3d graphs, circular graphs
15 - symbols + lines -> symbollines (??). Symbols should not allow setting lineattrs, and
17 - allow for graph.changesymbol.square(size=0.15) etc.
18 - rect style (and errorbars?) should use clipping
19 - paths are to be drawn instead of inserted
22 - make dash length available
24 - SlantFont & Co support
25 - keep an eye on PEP 324 (popen 5): it could make the texrunner stuff much easier
27 - consider rewrite using the python compiler module
29 - __iadd__ and inplace enlarge, transform,...
31 - reverse needs to be fixed
32 - there should be a path._at, path._begin, path._end
33 - use math.degrees and math.radians
35 - data.data should add line number like data.datafile
36 - use csv module (new in 2.3)
38 - multi page PostScript output
40 - use math.degrees and math.radians instead of self-written functions
41 (try to be compatible with old python versions, we should consider
42 support down to python2.0!)
45 - setup.py and distribution:
46 - allow customization of the extension modules built (via setup.cfg)
47 - disable building pykpathsea module by default
48 - more detailed description of install process in INSTALL
49 - include example data files in distribution (suggested by Andrea Riciputi)
50 - force dvips to write ps files instead of printing them (suggested by Otto Tronarp)
52 - improved is-readable test for lfs files and pyx.def file
53 - explicitly quit (La)TeX in cleantmp (helps when quitting with <Ctrl>C)
54 - showwaitfortex implemented following a suggestion by Fernando Perez
55 (waitfortex is increased to 60 seconds now)
56 - support of TeX extention --ipc for reading dvi results while TeX keeps running
57 - configurable font mapping files (via pyxrc or parameter of the texrunner constructor)
58 - markers to get access to positions within TeX expressions
59 - fix: allow for e-tex in texmessage.start (reported by Andrea Riciputi)
60 - fix: print warning at syntax errors in font mapping file and continue (cf. bug #795271)
61 - remove limitation on number of fonts in dvi file
62 - added native virtual font support
63 - dvicopy support not needed anymore (it is still available, but obsolete and
64 removed from the documentation)
65 - do not include too many glyphs in the eps file
66 - _xxx -> xxx_pt renaming
67 - dvifile module (NEW):
68 - separated from the text module
69 - dvifile class returns standard pyx canvas instances on readpage
71 - removed manualpart and partitioners mix keyword
72 - results of the splitting at "=" in graph.function were not stripped
73 - skip title=None in key (cf. bug #821284), properly align a single key entry
74 - another (the last?!) axis redesign: axispos -> class of its own
75 - some axispos name have changed slightly (zeroline -> zeropath etc.)
76 - tick/data-vmin/vmax removed (TODO: documentation)
77 - pathaxis (TODO: example and documentation)
78 - various linkaxis (TODO: example and documentation, FAQ?)
79 - minor enhancements in exponentionaltexter (TODO: documentation)
80 - axes alongs paths including a set of examples (TODO: not in the manual)
81 - mixing a partitioner and manual ticks by two distinct keyword arguments now (TODO: documentation)
82 - _xxx -> xxx_pt renaming
83 - part -> parter renaming
85 - stroke and fill now support trafos (TODO: documentation)
86 - uppercase version of a4, a3, ... paperformats
88 - new module for loading PyX configuration information
90 - automatically import main modules into pyx namespace as suggested by Fernando
93 - check for sorting of parameter list passed to path.split method
95 - contains decoratedpath and decorators from canvas module
96 - all predefined arrows are classes now (like all decorators) and
97 attributes have to be passed explicitely (e.g. earrow.small(attrs=color.rgb.red))
100 - contains all line- and fillstyles which formerly had been defined in the canvas module
101 - dash now supports relative dash lengths (as suggested by Otto Tronarp)
104 - fixed incorrect handling of - (for instance -x**2 was not negative)
106 - contents have been moved to the (obsolete) tex module, which was the only user anyhow, and
107 the module itself was removed
109 - new fallback solution in pure python
110 - bugfix: pyxadapt.h needs to open files binary under Windows (reported by Gary Pajer)
112 - _xxx -> xxx_pt renaming
114 TODO for PyX 0.5 (please feel free to move items up to the general TODO list)
116 - path.split takes several points (as *args) while lentopar takes a list of points (done, but fix docu)
117 - path.tangent is missing in the documentation
119 - should colors and palettes exclude each other?
121 - multiple finish calles in linkaxis!
127 - "in" to "inch" in paperformats
129 - fix pyx.def hack occuring whenever \ProcessOptions* was used by a package
131 - implement different file formats for Python version of module
133 - python fallback solution should behave the same way as c extension module (closes SF bug #799182 reported
134 by Marcus Mendenhall)
136 - added "connector" to __all__
140 - separate texter out of the axispainter
141 - axis/partitioner/texter/painter/axispos redesign & interfaces
142 - tick.text is renamed to tick.label
143 - ticks and labels are renamed to tickpos/tickdist and labelpos/labeldist in partitioning
144 - ticks can be used in the part to mix a partitioner with some manual ticks
145 -> manualpart and the mix technique is not needed anymore
146 (both things are still available and working, but they will be removed in the future)
147 - _ensurefrac is implemented inside the frac constructor now; initialization is possible by:
148 - a (enum, denom) tuple now (previously there were two arguments)
149 - a string (as before via _ensurefrac)
150 - exponential strings are allowed as well (e.g. "1e10" etc.)
151 - a float (precision is determined by floatprecision -- the number of decimal places)
156 - reset() method for the texrunner
157 - automatic restart of a TeX instance with the same preamble (preamble changes are not possible)
158 - texmessage.loadfd for accepting font description loading
159 - don't bail out on width_index == 0, but mark character invalid instead
161 - support for specials; pyxgraphics flag
162 - support psfonts.map: font names, font encodings
163 - bugfix \def\ProcessPyXBox -> \long\def\ProcessPyXBox
164 - improved lfs handling
166 - full documentation via doc strings
168 - some preliminary version
170 - multiple radii (up to two per point) and softnesses
171 - ensurecenter added --- do we always force the creation of a center?
173 - lentopar methods added including some tests
175 - new parameter bbox allows to override the bounding box of the eps file
179 - derive TFMError and DVIError correctly from exceptions.Exception
180 - close files and pipes, if they are no longer used (thanks to Marcus Mendenhall)
181 - remove DeprecationWarning in Python 2.3 (thanks to Marcus Mendenhall)
183 - correct rounding algorithm (Michael Schindler)
185 - refer to the graphs texrunner instead of the defaulttexrunner (cf. #728209)
186 - rounding towards zero bugfix in autolinpart
187 - log axis range rating bugfix
189 - addarg bugs (#738724)
191 - fix mixing up of height and width in scale calculation
192 - and various other fixer here and there
196 - fix bug in dvi rule code where width was height
197 - fix preamble attribute checking bug
198 - fix texmessage.load pattern search instead of pattern match bug
199 - renamed vbox to parbox (was done in 0.3 partially only)
201 - allow for tuples in arguments of the data class
202 - convenience: exchanged order of named parameters in data.data
204 - convenience: allow for part=None in _axis (base of linaxis and logaxis)
206 - added a latex example (requested)
207 - added a attributechange example (requested)
208 - added back the integral example (requested; prior PyX 0.3 it was part of the user manual)
209 - small change in vector example (allow for the access to the texrunner)
210 - examples included in source distribution
212 - correct arrow template calculation for very short paths
216 - new easy to use example generation (will hopefully lead to nice examples)
218 - new module for handling of convex polygons (taken out of the graph module)
220 - new module containing a collection of helper functions (taken out of the graph module)
221 - moved the attrlist into helper -- as plain functions; attrlist becomes obsolete
223 - new module: a new and preferable integration of TeX/LaTeX
225 - strip glyphs from pfa/pfb-fonts
226 - there is a C implementation taken from pdftex
227 - fallback solution via an external program (pfb2pfa)
229 - (partial) C binding to libkpathsea
230 - fallback solution via an external program (kpsewhich)
232 - removed some code duplication (various axis painters)
233 - use text module instead of the obsolete tex module
234 - allow for tailing zeros of automatic generated labels
235 - allow for missing data in bar graphs -> skipmissing parameter
236 - remove the support for variables given as keyword arguments in data constructor
237 - use context instead of extern for extern variables and functions
238 - graph keys; titles in data/function/etc.
240 - new classes for visual and width lengths, aliases for user length (u_pt = pt)
241 - all length classes have now by default a quantifier 1 (instead of 0), such that,
242 for instance, 5*unit.t_cm() == unit.t_cm(5)
243 - default_unit now has to be set via unit.set. For instance: unit.set(defaultunit="m").
244 - convert_to is now an internal function, which moreover does not longer accept tuples or lists
246 - new class _bbox (the former bbox) which accepts points in the constructor. This is used
247 for internal purposes.
248 - the bbox constructor now accepts user lengths in the constructor.
249 - new methods height, width, top, bottom, left, right
250 - ll & ur ???, what about ul and lr -> ugly!
251 - enlarge (was enhance) now allows selective enlargement to the left, bottom, right and top
252 - output HiResBoundingBox
253 - never reduce bbox upon output
255 - new constructor signature, more in line with rest of PyX:
256 epsfile(x, y, filename, **additional_args)
258 - removed additional column support in addcolumn; removed _addcolumn
259 - line reduction for datafile like the every parameter in gnuplot
261 - new way of PS prolog generation that writes only necessary parts
262 - added support for patterns
263 - canvas.insert() now supports arguments
264 - bbox of canvas can be specified in writetofile command explicitely
265 - writetofile does not return self anymore
266 - arrow template now uses intersection with circle to get size right
267 (as per a suggestion by Michael Schindler)
270 - changed the handling of extern functions and all variables
272 - gradient renamed to palette
274 - problem with sizefile on windows (tex module)
275 - allow for strings in graphxy's width and height; allow for width only (graph module)
276 - disable rating for labelattrs equals None (graph module)
277 - defaultstyle selection, when a list of data is provided to the plot function (graph module)
278 - traverse when adding functions as arguments of operators (mathtree module)
279 - allow for extern functions in addcolumn (data module)
280 - just one common place for the version number
281 - fix incorrect exception name MathError (path module)
282 - prevent double return of intersections for closed sub paths
287 - allow division of length by numbers
289 - new transformation: slant
290 - renamed all trafo methods to use the participle (i.e translate->translated)
291 - the name of all trafo subclasses are verbs (i.e. translation->translate)
293 - mark class renamed to symbol
294 - (text-)box distance measurement
295 - moved axis partitioning to axis and axis painter
296 - automatic axis partitioning (now officially: general cleanup, distance measurement, documentation)
298 - baraxis, baraxispainter, and bar style
300 - previously named datafile module
301 - class "_datafile" renamed to class "data"
302 - class sectionfile added
305 - extern variables and functions (support in graph.function, graph.paramfunction and data.data)
308 - deferred to Version 0.3
309 - running TeX "on the fly" is basically implemented
311 - transformation bug (#624068, trafo module)
312 - canvas transformations (canvas module???)
313 - textbox alignment (graph module)
314 - return linewidth upon calculation with linewidths (unit module)
315 - allow column number variables with several digits
317 - british and american spellings (color module, graph module)
318 - small logo modifications