added to TODO-items
[PyX/mjg.git] / CHANGES
blob0e5fa786a63eee7a9e89ec19d45ce9cfe4634130
1 PyX
3 TODO:
4   - style module:
5     - default patterns
6     - make dash length available
7   - text module:
8     - SlantFont & Co support
9     - keep an eye on PEP 324 (popen 5): it could make the texrunner much easier
10     - messageparser for replaced fontsizes: Warning
11     - messageparser for size differences at the end: Warning not Exception
12     - messageparser for overfull/underfull vbox/hbox: Warning not Exception
13     - newline removal when not disturbing texmessages only
14   - graph.graph module
15     - common bboxes for different graphs
16     - 3d graphs, circular graphs
17   - graph.style and graph.data modules
18     - exceptions in drawsymbol & friends...
19     - caution: another reorganization round is in progress
20       (its goal is to make graph styles combinable which will also
21       split up the style code in smaller parts -- those will then be
22       easier to substitute by inheritance)
23   - graph.data module:
24     - use csv module (new in 2.3)
25     - Check for "inf" and "nan" in datafiles.
26       (When plotted, the graph does not complain, but the postscript will be broken)
27   - graph.style module:
28     - add styles using curves instead of lines
29     - add "steps" style for histogram-like plots
30   - canvas module:
31     - finish multi page PostScript output
32     - contructor should only take a texrunner keyword argument
33     - set method???
34     - PDF support
35     - SVG support
36   - style and color module:
37     - support modification of existing styles via __call__
38   - bbox module:
39     - height -> getheight, ...
40   - unit module:
41     - maybe we should never convert implicitly into visual/width, etc. lengths
42   - mathtree:
43     - might be moved into the graph
44     - perform calc by means of Python itself (see eval code in graph.data, but
45       we should use compiled code instead of eval)
46   - deco module:
47     - think hard about different paths in decoratedpath class
48     - adjust parameters of cycloid and smoothed
49       AW: I suggest to use cycloid with default curvesperloop=5.
50   - dvifile module:
51     - support single-character mode
52   - path module:
53     - arclentoparam should raise an exception when the arclen is out of range
54     - it seems to be, that epsilon is a feature of normsubpath;
55       AW: Why is there (also) a self.epsilon?
56       JL: What class does self refer to?
57       AW: I'm sorry for not being precise. Both, normpath and normsubpath do
58           have an epsilon. I'm not sure if we should do that (its slightly
59           confusing). In normpath._findsubpath we should refer to the
60           epsilons of the subpath. The only usage of epsilon left in normpath
61           is in the constructor and in append (BTW -- we do have some code
62           dublication here). A possibility would be to add a keyword-argument
63           epsilon to append. The point is, that I would like to get rid of
64           self.epsilon, where self is a normpath instance ...
65   - color module:
66     - what should we do for palette when only one entry
68   Documentation:
69     - path module:
70       - describe + vs <<
71       - more details in path constructor: allowed pathels, first pathel...
72     - deco module:
73       - cycloid decorator
74       - smoothed decorator
75     - graphics section:
76       Attributes (clearing merging ) and changeable attributes should be 
77       explained at a central place.
78     - section titles: "Axes" -> "Axes - module axis" or similar
79     - box module:
80       - linealign and circlealign
82   FAQ:
83     - describe creation and modification (inplace and ``modify by new'') of
84       graph data
86 0.7 (xxxx/xx/xx):
87   - path module:
88     - names of local and member variables now follow the naming convention of
89       having a _pt suffix when containing lengths in points
90   - bbox module:
91     - names of local and member variables now follow the naming convention of
92       having a _pt suffix when containing lengths in points
93     - enlarge was misspelled as enlarged
94     - renamed _bbox -> bbox_pt
95     - new bbox method center, which returns the coordinates of the center
96       of the bbox
97     - enlarge and enlarged do no longer interprete unqualified lengths as
98       being of type visual
99   - unit module:
100     - unit.cm, unit.t_cm, etc. are no longer sub classes but instances
101       of length
102   - canvas module:
103     - added new classes page and document for multipage PostScript output
104   - setup.py and distribution:
105     - create siteconfig on install to store position of the share directory
107 0.6.2 (2004/04/07):
108   - graph module:
109     - fixed title=None + graph key issue reported by Gabriel Vasseur
110     - graph.axis.painter.plain -> graph.axis.painter.regular
111       (as it was in parts of the documentation already)
112     - changeable-gridattrs-become-None-bug fixed
113     - graph style cutting outside lines (double-)fixed
115 0.6.1 (2004/03/31):
116   - fixes missing install of the graph and axis directories introduced in 0.6
117   - some minor updates to the faq
119 0.6 (2004/03/30):
120   - graph module:
121     - reorganisation of the graph structure finished (there might be some
122       small pending issues, but the basic restructuring is done with this release):
123       - graph splitted into several modules in pyx/graph and pyx/graph/axis
124       - painters are using the new attribute scheme including changeable
125         attributes
126       - graph styles rewrite
127       - graph data rewrite
128     - axis zeropath feature has been removed
129     - mergelabels removed; linpart doesn't have a label argument anymore
130     - names and texts removed from baraxis
131     - iteration on graph style, when it is used several times in the same graph
132     - symbols + lines -> symbollines; symbols do not allow setting lineattrs,
133       and lines not symbolattrs
134     - manual line clipping (do not include unneeded line segments when the
135       axis range is set manually etc.)
136     - automatic file key titles
137     - graph.data now also includes the old data module
138     - data.list adds (by default) a line number like data.file
139       (thus regular columns are counted from 1)
140   - path:
141     - added new pathels multilineto_pt and multicurveto which allows to specify
142       a list of points and can thus be much more efficient
143     - internal methods return coordinates in pts
144     - arclentoparam returns only parameters not total length
145     - added path.arclength_pt, path.at_pt, path.begin_pt, path.end_pt (and
146       correspondingly for normpath)
147     - complete refactoring of the normpath class: normpaths now consist of
148       normsubpaths which themselves consist of normlines and normcurves This is
149       much more convenient for any routines working with normpaths.
150     - reversing of closed sub paths does not change the first point of the sub
151       path
152     - renamed: arclength -> arclen
153     - renamed: lentopar -> arclentoparam
154     - renamed: glue -> joined
155     - normpath now supports join, the in-place version of joined
156     - path and normpath method raise exception instead of returning None
157       when parameter is out of range
158     - the accuracy epsilon can now only be specified in normpath and normsubpath
159       constructor and no longer in arguments of path and normpath methods
160     - negative parameters are no longer supported in path and normpath methods
161     - path and normpath methods which accept parameter value param now
162       alternatively accept an arc length
163   - deco module:
164     - cycloid decorator
165     - smoothed decorator
166     - arrow heads are no longer stroked (as suggested by Magnus Lie Hetland)
167   - canvas:
168     - writeEPSfile deprecates writetofile
169     - internally, write methods are renamed in outputPS
170     - canvas constructor no longer accepts variable argument list but
171       expects a list of attrs as first argument (defaulting to []) and
172       a texrunner as second argument (defaulting to text.defaulttexrunner)
173     - set, draw, stroke and fill no longer return self, i.e., the canvas, but None
174   - bbox module:
175      - added inplace add (__iadd__), enlarge and transform methods
176      - callers use inplace add where possible now (yielding a considerable
177        speedup)
178     - "undefined" corners of bounding boxes are no longer supported which makes
179       the bounding box operations much more efficient.
180   - connnector module:
181     - renamed _xxx -> xxx_pt
182   - epsfile module:
183     - removed showbbox argument of epsfile class
184   - text module:
185     - default handling of texmessages as in the new attribute scheme
186     - multiple insert bug fixed
187     - made left, right, width, height, depth information available (x length
188       not taking into account box transformations)
189     - ignore tex message "Please type a command or say `\\end'"
190     - added textboxes that are sequentially filled (experimental)
191   - examples:
192     - mandel.py (contributed by Stephen Phillips)
193   - unit module:
194     - length comparision (David Beach)
195     - x-scale for TeX
196     - more unit tests
197   - mathtree module:
198     - switched to the new parser using pythons parser module
199   - data module:
200     - removed, it all lives in the graph.data module now, while before it
201       was splitted into two separate modules
202   - tex module:
203     - not imported by default anymore
204     - obsolete warning when importing this module
206 0.5.1 (2004/01/22):
207   - distribution:
208     - include missing c-files for optional extension modules
209   - prolog module:
210     - fix unpaired BeginProcSet/EndProcSet in font enconding
212 0.5 (2004/01/20):
213   - setup.py and distribution:
214     - allow customization of the extension modules built (via setup.cfg)
215     - disable building pykpathsea module by default
216     - more detailed description of install process in INSTALL
217     - provide more information and pointers to other files in README
218     - include example data files in distribution (suggested by Andrea Riciputi)
219     - force dvips to write ps files instead of printing them (suggested by Otto Tronarp)
220     - includ pyxfaq.pdf in distribution
221   - text module:
222     - improved is-readable test for lfs files and pyx.def file
223     - explicitly quit (La)TeX in cleantmp (helps when quitting with <Ctrl>C)
224     - showwaitfortex implemented following a suggestion by Fernando Perez
225       (waitfortex is increased to 60 seconds now)
226     - support of TeX extension --ipc for reading dvi results while TeX keeps running
227     - configurable font mapping files (via pyxrc or parameter of the texrunner constructor)
228     - markers to get access to positions within TeX expressions
229     - fix: allow for e-tex in texmessage.start (reported by Andrea Riciputi)
230     - fix: print warning at syntax errors in font mapping file and continue (cf. bug #795271)
231     - remove limitation on number of fonts in dvi file
232     - added native virtual font support
233     - dvicopy support not needed anymore (it is still available, but obsolete and
234       removed from the documentation)
235     - do not include too many glyphs in the eps file
236     - _xxx -> xxx_pt renaming
237   - dvifile module (NEW):
238     - separated from the text module
239     - dvifile class returns standard pyx canvas instances on readpage
240   - graph module:
241     - removed manualpart and partitioners mix keyword
242     - results of the splitting at "=" in graph.function were not stripped
243     - skip title=None in key (cf. bug #821284), properly align a single key entry
244     - another (the last?!) axis redesign: axispos -> class of its own
245     - some axispos name have changed slightly (zeroline -> zeropath etc.)
246     - tick/data-vmin/vmax removed
247     - pathaxis
248     - linkaxis
249     - minor enhancements in exponentionaltexter
250     - axes alongs paths including a set of examples
251     - mixing a partitioner and manual ticks by two distinct keyword arguments now
252     - _xxx -> xxx_pt renaming
253     - part -> parter renaming
254   - canvas module:
255     - stroke, fill, draw, set and insert do no longer accept variable length argument lists but
256       an attribute list as last argument
257     - stroke and fill now support trafos (TODO: documentation)
258     - uppercase version of a4, a3, ... paperformats
259   - config module:
260     - new module for loading PyX configuration information
261   - pyx module:
262     - automatically import main modules into pyx namespace as suggested by Fernando 
263       Perez.
264   - path module:
265     - check for sorting of parameter list passed to path.split method
266     - _xxx -> xxx_pt renaming
267   - deco module (NEW): 
268     - contains decoratedpath and decorators from canvas module
269     - all predefined decorators are instances now (deco.stroked is thus ok) and 
270       attributes have to be passed explicitely, e.g., deco.earrow.small(attrs=color.rgb.red) 
271       and deco.stroked([color.rgb.blue])
272   - style module (NEW):
273     - contains all line- and fillstyles which formerly had been defined in the canvas module
274     - dash now supports relative dash lengths (as suggested by Otto Tronarp)
275   - mathtree module:
276     - fixed incorrect handling of - (for instance -x**2 was not negative)
277   - attrlist module:
278     - contents have been moved to the (obsolete) tex module, which was the only user anyhow, and
279       the module itself was removed
280   - t1strip module:
281     - new fallback solution in pure python
282     - bugfix: pyxadapt.h needs to open files binary under Windows (reported by Gary Pajer)
283   - box module:
284     - _xxx -> xxx_pt renaming
285   - trafo module:
286     - _xxx -> xxx_pt renaming
288 0.4.1 (2003/09/17):
289   - canvas module:
290     - "in" to "inch" in paperformats
291   - text module:
292     - fix pyx.def hack occuring whenever \ProcessOptions* was used by a package
293   - pykpathsea module:
294     - implement different file formats for Python version of module
295   - t1strip module:
296     - python fallback solution should behave the same way as c extension module (closes SF bug #799182 reported
297       by Marcus Mendenhall)
298   - __init__.py:
299     - added "connector" to __all__
301 0.4 (2003/08/22):
302   - graph module:
303     - separate texter out of the axispainter
304     - axis/partitioner/texter/painter/axispos redesign & interfaces
305     - tick.text is renamed to tick.label
306     - ticks and labels are renamed to tickpos/tickdist and labelpos/labeldist in partitioning
307     - ticks can be used in the part to mix a partitioner with some manual ticks
308       -> manualpart and the mix technique is not needed anymore
309          (both things are still available and working, but they will be removed in the future)
310     - _ensurefrac is implemented inside the frac constructor now; initialization is possible by:
311       - a (enum, denom) tuple now (previously there were two arguments)
312       - a string (as before via _ensurefrac)
313       - exponential strings are allowed as well (e.g. "1e10" etc.)
314       - a float (precision is determined by floatprecision -- the number of decimal places)
315     - dense -> density
316     - axis.maxworse
317     - axis interface
318   - text module:
319     - reset() method for the texrunner
320     - automatic restart of a TeX instance with the same preamble (preamble changes are not possible)
321     - texmessage.loadfd for accepting font description loading
322     - don't bail out on width_index == 0, but mark character invalid instead
323     - dvicopy flag
324     - support for specials; pyxgraphics flag
325     - support psfonts.map: font names, font encodings
326     - bugfix \def\ProcessPyXBox -> \long\def\ProcessPyXBox
327     - improved lfs handling
328   - data module:
329     - full documentation via doc strings
330   - connector module:
331     - some preliminary version
332   - box module:
333     - multiple radii (up to two per point) and softnesses
334     - ensurecenter added --- do we always force the creation of a center?
335   - path module:
336     - lentopar methods added including some tests
337   - epsfile module:
338     - new parameter bbox allows to override the bounding box of the eps file
340   bugfixes:
341   - text module:
342     - derive TFMError and DVIError correctly from exceptions.Exception
343     - close files and pipes, if they are no longer used (thanks to Marcus Mendenhall)
344     - remove DeprecationWarning in Python 2.3 (thanks to Marcus Mendenhall)
345   - box module:
346     - correct rounding algorithm (Michael Schindler)
347   - graph module:
348     - refer to the graphs texrunner instead of the defaulttexrunner (cf. #728209)
349     - rounding towards zero bugfix in autolinpart
350     - log axis range rating bugfix
351   - mathtree module:
352     - addarg bugs (#738724)
353   - epsfile module:
354     - fix mixing up of height and width in scale calculation
355   - and various other fixer here and there
357 0.3.1 (2003/04/04):
358   - text module:
359     - fix bug in dvi rule code where width was height
360     - fix preamble attribute checking bug
361     - fix texmessage.load pattern search instead of pattern match bug
362     - renamed vbox to parbox (was done in 0.3 partially only)
363   - data module:
364     - allow for tuples in arguments of the data class
365     - convenience: exchanged order of named parameters in data.data
366   - graph module:
367     - convenience: allow for part=None in _axis (base of linaxis and logaxis)
368   - examples:
369     - added a latex example (requested)
370     - added a attributechange example (requested)
371     - added back the integral example (requested; prior PyX 0.3 it was part of the user manual)
372     - small change in vector example (allow for the access to the texrunner)
373     - examples included in source distribution
374   - canvas module:
375     - correct arrow template calculation for very short paths
377 0.3 (2003/03/31):
378   - examples
379     - new easy to use example generation (will hopefully lead to nice examples)
380   - unit box:
381     - new module for handling of convex polygons (taken out of the graph module)
382   - unit helper:
383     - new module containing a collection of helper functions (taken out of the graph module)
384     - moved the attrlist into helper -- as plain functions; attrlist becomes obsolete
385   - text module:
386     - new module: a new and preferable integration of TeX/LaTeX
387   - t1strip module:
388     - strip glyphs from pfa/pfb-fonts
389     - there is a C implementation taken from pdftex
390     - fallback solution via an external program (pfb2pfa)
391   - pykpathsea module:
392     - (partial) C binding to libkpathsea
393     - fallback solution via an external program (kpsewhich)
394   - graph module:
395     - removed some code duplication (various axis painters)
396     - use text module instead of the obsolete tex module
397     - allow for tailing zeros of automatic generated labels
398     - allow for missing data in bar graphs -> skipmissing parameter
399     - remove the support for variables given as keyword arguments in data constructor
400     - use context instead of extern for extern variables and functions
401     - graph keys; titles in data/function/etc.
402   - unit module:
403     - new classes for visual and width lengths, aliases for user length (u_pt = pt)
404     - all length classes have now by default a quantifier 1 (instead of 0), such that,
405       for instance, 5*unit.t_cm() == unit.t_cm(5)
406     - default_unit now has to be set via unit.set. For instance: unit.set(defaultunit="m").
407     - convert_to is now an internal function, which moreover does not longer accept tuples or lists
408   - bbox module:
409     - new class _bbox (the former bbox) which accepts points in the constructor. This is used
410       for internal purposes.
411     - the bbox constructor now accepts user lengths in the constructor.
412     - new methods height, width, top, bottom, left, right
413     - ll & ur ???, what about ul and lr -> ugly!
414     - enlarge (was enhance) now allows selective enlargement to the left, bottom, right and top
415     - output HiResBoundingBox
416     - never reduce bbox upon output
417   - epsfile module:
418     - new constructor signature, more in line with rest of PyX:
419       epsfile(x, y, filename, **additional_args)
420   - data module:
421     - removed additional column support in addcolumn; removed _addcolumn
422     - line reduction for datafile like the every parameter in gnuplot
423   - canvas module:
424     - new way of PS prolog generation that writes only necessary parts
425     - added support for patterns
426     - canvas.insert() now supports arguments
427     - bbox of canvas can be specified in writetofile command explicitely
428     - writetofile does not return self anymore
429     - arrow template now uses intersection with circle to get size right
430       (as per a suggestion by Michael Schindler)
431   - mathtree module:
432     - added abs function
433     - changed the handling of extern functions and all variables
434   - color module:
435     - gradient renamed to palette
436   - numerous bugfixes:
437     - problem with sizefile on windows (tex module)
438     - allow for strings in graphxy's width and height; allow for width only (graph module)
439     - disable rating for labelattrs equals None (graph module)
440     - defaultstyle selection, when a list of data is provided to the plot function (graph module)
441     - traverse when adding functions as arguments of operators (mathtree module)
442     - allow for extern functions in addcolumn (data module)
443     - just one common place for the version number
444     - fix incorrect exception name MathError (path module)
445     - prevent double return of intersections for closed sub paths
446     - ...
448 0.2 (2003/01/17):
449   - unit module:
450     - allow division of length by numbers
451   - trafo module:
452     - new transformation: slant
453     - renamed all trafo methods to use the participle (i.e translate->translated)
454     - the name of all trafo subclasses are verbs (i.e. translation->translate)
455   - graph module:
456     - mark class renamed to symbol
457     - (text-)box distance measurement
458     - moved axis partitioning to axis and axis painter
459     - automatic axis partitioning (now officially: general cleanup, distance measurement, documentation)
460     - splitaxis
461     - baraxis, baraxispainter, and bar style
462   - data module:
463     - previously named datafile module
464     - class "_datafile" renamed to class "data"
465     - class sectionfile added
466     - testsuite
467   - mathtree module:
468     - extern variables and functions (support in graph.function, graph.paramfunction and data.data)
469     - testsuite
470   - text module:
471     - deferred to Version 0.3
472     - running TeX "on the fly" is basically implemented
473   - numerous bugfixes:
474     - transformation bug (#624068, trafo module)
475     - canvas transformations (canvas module???)
476     - textbox alignment (graph module)
477     - return linewidth upon calculation with linewidths (unit module)
478     - allow column number variables with several digits
479     - ...
480   - british and american spellings (color module, graph module)
481   - small logo modifications
483 0.1 (2002/10/07):
484   - initial release