comparison etc/TODO @ 90737:95d0cdf160ea

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 586-614) - Update from CVS - Update from erc--emacs--22 - Merge from gnus--rel--5.10 - Merge from erc--main--0 - Make byte compiler correctly write circular constants * gnus--rel--5.10 (patch 186-196) - Update from CVS - Merge from emacs--devo--0 Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-162
author Miles Bader <miles@gnu.org>
date Fri, 26 Jan 2007 06:16:11 +0000
parents bc10a33dd40b 0259a1711394
children 52a7f3f50b89
comparison
equal deleted inserted replaced
90736:ef1369583937 90737:95d0cdf160ea
1 Emacs TODO List -*-outline-*- 1 Emacs TODO List -*-outline-*-
2 2
3 Copyright (c) 2003, 2004, 2005, 2006 3 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007
4 Free software Foundation, Inc. 4 Free Software Foundation, Inc.
5 See the end of the file for copying permissions. 5 See the end of the file for copying permissions.
6 6
7 If you are ready to start working on any of these TODO items, we 7 If you are ready to start working on any of these TODO items, we
8 appreciate your help; please write to emacs-devel@gnu.org so we can be 8 appreciate your help; please write to emacs-devel@gnu.org so we can be
9 aware that the problem is being addressed, and talk with you how to do 9 aware that the problem is being addressed, and talk with you how to do
76 76
77 ** In Emacs Info, examples of using Customize should be clickable 77 ** In Emacs Info, examples of using Customize should be clickable
78 and they should create Custom buffers. 78 and they should create Custom buffers.
79 79
80 ** The toolbar should show keyboard equivalents in its tooltips. 80 ** The toolbar should show keyboard equivalents in its tooltips.
81
82 ** Add function to redraw the tool bar.
81 83
82 ** Modify allout.el to use overlays, like outline.el. 84 ** Modify allout.el to use overlays, like outline.el.
83 85
84 ** M-! M-n should fetch the buffer-file-name as the default. 86 ** M-! M-n should fetch the buffer-file-name as the default.
85 87
192 function that has advice. The overlay could have `after-text' like 194 function that has advice. The overlay could have `after-text' like
193 " [Function has advice]". It might look like (defun foo [Function 195 " [Function has advice]". It might look like (defun foo [Function
194 has advice] (x y) The overlay could also be a button that you could 196 has advice] (x y) The overlay could also be a button that you could
195 use to view the advice. 197 use to view the advice.
196 198
199 ** Add a function to get the insertion-type of the markers in an overlay.
200
197 ** ange-ftp 201 ** ange-ftp
198 *** understand sftp 202 *** understand sftp
199 This is hard to make work because sftp doesn't print status 203 This is hard to make work because sftp doesn't print status
200 messages. 204 messages.
201 205
336 ** Add support for SVG (Scalable Vector Graphics) rendering to 340 ** Add support for SVG (Scalable Vector Graphics) rendering to
337 Emacs. 341 Emacs.
338 342
339 ** Allow unknown image types to be rendered via an external program 343 ** Allow unknown image types to be rendered via an external program
340 converting them to, say, PBM (in the same way as PostScript?). 344 converting them to, say, PBM (in the same way as PostScript?).
345
346 ** Display images with alpha channels, such as png, with the current
347 background color of whatever frame it is displayed in. Currently, we
348 use the default background color if specified in the png file, or, if
349 that is unspecified, the background color of the frame in which the
350 image was first created. Ideally, the image should display the
351 background color of whichever frame it is being displayed in. The
352 main complication is that this will require the loading of a new image
353 object for each different background color.
341 354
342 ** Allow displaying an X window from an external program in a buffer, 355 ** Allow displaying an X window from an external program in a buffer,
343 e.g. to render graphics from Java applets. [gerd and/or wmperry 356 e.g. to render graphics from Java applets. [gerd and/or wmperry
344 thought this was feasible.] 357 thought this was feasible.]
345 358