factor/TODO.FACTOR.txt

130 lines
4.3 KiB
Plaintext
Raw Normal View History

2006-06-14 22:58:17 -04:00
+ io:
2006-06-08 18:29:15 -04:00
2006-06-14 22:58:17 -04:00
- unix i/o: problems with passing f to syscalls
2006-06-04 15:35:00 -04:00
- factorcode httpd started using 99% CPU, but still received connections;
closing read-fds solved it
- sometimes darcs get fails with the httpd
2006-05-09 21:37:07 -04:00
- gdb triggers 'mutliple i/o ops on port' error
- "localhost" 50 <client> won't fail
+ ui:
2006-07-28 00:58:44 -04:00
- "benchmark/help" runs out of memory
2006-07-25 21:33:56 -04:00
- shortcuts:
- find a listener
- find a browser
- find a help window
- they'll either focus such a window, or if the current window is of
that type, cycle
- thumb min size
- support x11's large selections, if needed
2006-07-24 02:23:15 -04:00
- own-selection violates ICCCM
- one-column table doesn't need borders...?
2006-07-19 23:10:02 -04:00
- make-frame should compile
2006-07-19 19:30:02 -04:00
- editor:
- undo and redo
- transpose char/word/line
- autoscroll
- page up/down
- search and replace
- only redraw visible lines
- more efficient multi-line inserts
2006-07-25 21:33:56 -04:00
- editor should support stream output protocol
2006-07-28 00:50:09 -04:00
- scroll to caret
- better listener multi-line expression handling
- history doesn't work in a good way if you ^K the input
- history: move caret to end
2006-07-10 20:12:40 -04:00
- finish gui stepper
2006-07-25 16:30:40 -04:00
- cocoa: windows are not updated while resizing
2006-07-09 21:57:19 -04:00
- graphical module manager tool
2006-07-06 18:08:14 -04:00
- add some handy services:
- base conversion
- search help for selection
- make factor a services client
- services do not launch if factor not running
2006-07-05 17:12:30 -04:00
- grid slows down with 2000 lines
- integrated error documentation
- roundoff is still not quite right with tracks
- 'show' doesn't work if invoked from a listener on an object which is
itself inspected in the listener
- ui uses too much cpu time idling
2006-07-05 17:12:30 -04:00
- see if its possible to only repaint dirty regions
2006-06-14 22:58:17 -04:00
- x11 title bars are funny
- fix top level window positioning
- prettyprinter's highlighting of non-leaves doesn't really work
- rollover is not updated on window focus changes
2006-05-27 18:11:39 -04:00
- x11 input methods
2006-03-22 02:43:59 -05:00
- cocoa:
2006-06-12 03:21:08 -04:00
- horizontal wheel scrolling
- polish OS X menu bar code
2006-03-22 02:43:59 -05:00
- variable width word wrap
2006-07-19 20:32:51 -04:00
- slider needs to be modelized
2006-07-23 18:51:25 -04:00
+ module system:
- 'see' should show tuple constructors
- forgetting a class should remove its methods from all generic words
2006-07-25 16:30:40 -04:00
- offer to remove generic words which are not called and have no
methods
2006-07-23 18:51:25 -04:00
- forgetting a tuple class should forget the constructor
- seeing a tuple class should show the constructor
- C types should be words
- TYPEDEF: float { ... } { ... } ; ==> \ float T{ c-type ... } "c-type" swp
- TYPEDEF: float FTFloat ; ==> \ float \ FTFloat "c-type" swp
- make typedef aliasing explicit
- seeing a C struct word should show its def
- see by itself only shows the G: def
- { class generic } see supports forms:
{ f generic } to show all methods
{ class f } to show all methods
- modularize core
- TUPLE: module files tests articles article main ;
- methods: remember their file/line
- { class generic } jedit, reload DTRT
- requesting a list of assets loaded from a specific file
- T{ link f "foo" "bar" } see
- T{ link f "foo" "bar" } jedit
- T{ link f "foo" "bar" } reload
2006-07-26 15:03:49 -04:00
- generic 'define ( asset def -- )'
2006-07-23 18:51:25 -04:00
- file out
- make 'forget' generic
+ compiler/ffi:
2006-07-28 00:50:09 -04:00
- nasty inference regressions
- [ [ dup call ] dup call ] infer hangs
- the invalid recursion form case needs to be fixed, for inlines too
2006-07-25 16:30:40 -04:00
- instead of decompiling words, add them to a 'recompile' set; compiler
treats words in the recompile set as if they were not compiled
2006-07-06 18:08:14 -04:00
- mac intel: struct returns from objc methods
- see if alien calls can be made faster
2006-07-05 17:12:30 -04:00
- faster sequence= for UI
2006-06-14 22:58:17 -04:00
- fix compiled gc check
- there was a performance hit, investigate
- float boxing and overflow checks need a gc check too
- constant branch folding
2006-05-27 18:11:39 -04:00
- type inference at branch merge points
- float= doesn't consider nans equal
- intrinsic fixnum>float float>fixnum
- remove literal table
- C functions returning structs by value
- code gc
2006-07-25 02:08:06 -04:00
- infer which variables are read, written in a quotation
+ misc:
2006-07-14 01:00:59 -04:00
- consider: swap tail --> tail, swap head --> head
- mach_signal: fault address reporting is not reliable
2006-07-06 18:08:14 -04:00
- slice: if sequence or seq start is changed, abstraction violation
2006-07-05 17:12:30 -04:00
- hashed generic method dispatch
2006-06-14 22:58:17 -04:00
- fix this:
[ 1 2 3 4 5 6 7 8 9 10 10 10 10 10 10 10 10 10 10 11 11 11 113 ] .
[ 1 2 3 4 5 6 7 8 9 10 10 10 10 10 10 10 10 10 10 11 11 11 113
]
- code walker & exceptions -- test and debug problems
2006-05-27 17:56:11 -04:00
- break: perhaps use current stdio to run break listener
2006-07-28 00:50:09 -04:00
- httpd search tools
- remaining HTML issues need fixing