no more OPENBUGS; Help Desk points to the bug report db

svn: r1506
This commit is contained in:
Matthew Flatt 2005-12-02 22:36:38 +00:00
parent 59d4fddc08
commit b03ea39c2a
5 changed files with 0 additions and 78 deletions

View File

@ -13,18 +13,6 @@
(define stupid-internal-define-syntax (report-errors-to-browser send/finish))
(define (make-bug-link name)
(let ([dir (string-copy name)])
(string-lowercase! dir)
`(LI (A ((HREF ,(string-append
"/servlets/doc-anchor.ss?file="
(hexify-string
(path->string
(build-path (collection-path "mzlib") 'up 'up "notes" dir "OPENBUGS")))
"&caption=Open " name " bugs"
"&name=" name)))
,name " bugs"))))
`(HTML
(HEAD ,hd-css
,@hd-links
@ -32,11 +20,6 @@
(BODY
(H1 "Known Bugs in PLT Scheme")
(A ((NAME "bugs") (VALUE "Bugs")))
"Significant known bugs in the current release (v" ,(version) "):"
(UL
,@(map make-bug-link
'("DrScheme" "MzScheme" "MrEd" "Stepper")))
(P)
"For an up-to-date list of bug reports, see the "
(A ((HREF "http://bugs.plt-scheme.org/query/")
(TARGET "_top")) "PLT bug report query page")) ".")))

View File

@ -1,16 +0,0 @@
Check Syntax alpha-renaming does not work with `define-struct'.
After breaking a long interaction several times, one of the breaks
may carry over to the next interaction.
The yellow execute warning in the interactions window does not go away
if the user undoes all changes to the defintions window.
Backup files don't preserve file permissions.
Standalone executables do not support files with images (or
any kind of graphical syntax).
For a more complete listing of known bugs, see our
<a href="http://bugs.plt-scheme.org/query/">
online bug report database</a>

View File

@ -1,11 +0,0 @@
Windows and Mac OS: "primitive" dialogs don't get closed by
custodian-shutdown-all
Mac OS: std file dialog and print dialogs block MzScheme threads
Windows 95/98/Me: System menu navigation in a menuless MDI window
leads to a crash.
The result from get-x, get-y, and is-iconized? of
top-level-window<%> are not completely reliable.

View File

@ -1,11 +0,0 @@
(let loop ([x 0]) (call/cc loop)) accumulates memory
Under Unix and Mac OS, a DNS lookup by tcp-connect blocks all
MzScheme threads; note that the "net" collection contains a
partial DNS client implementation that does not have this problem
Under Windows, if other OS-level processes write to or read from the
same end of pipe as MzScheme, MzScheme may incorrectly report that
the pipe is ready for reading/writing or it may prematurely read
input (preventing the other process from receiving it)

View File

@ -1,23 +0,0 @@
The reduction of 'recur' does not conform to a sensible reduction
semantics. Can you figure out why? (For the answer, see the comment
in the 'recur' section of collects/tests/stepper/through-tests.ss.)
Primitives like 'make-number/make-numeric' that are renamed
as module provides are not displayed using their renamed
names.
Inexact numbers are not printed with a leading #i.
Expansion of quasiquote uses 'the-cons' rather than 'cons'.
This is essentially an instance of the renaming difficulty.
XML boxes evaluate successfully but are printed poorly.
non-integers are printed as fractions, rather than decimal expansions.
For a more complete listing of known bugs, see our
<a href="http://bugs.plt-scheme.org/query/">
online bug report database</a>, or click on the
"Query bug reports" link in the Help Desk search
frame.