Custom Query (1630 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (73 - 75 of 1630)

Ticket Resolution Summary Owner Reporter
#796 fixed If there is a page called "foo", then trying to create a page called "foo/bar" emits an unfriendly 500 error page sjamaan Alaric Snell-Pym
Description

I tried to create a new page (events/chicken-uk-2012), thereby inaugurating the new "events" directory, but got a 500 error when attempting to actually save the new page.

Apparently this used to work, with missing path components being automatically generated...

#935 fixed test egg's approx-equal? cannot distinguish -1. and 1. foof Alaric Snell-Pym
Description
#;1> (define (approx-equal? a b epsilon)
>  (< (abs (- 1 (abs (if (zero? b) (+ 1 a) (/ a b)))))
>    epsilon))
#;2> (approx-equal? -1. 1. 1e-05)
#t

Looking at the code, the problem is clear: the inner abs destroys the difference between 1. (a and b are near-identical) and -1. (a and b are near-identical apart from differing signs), and should be removed:

(define (approx-equal? a b epsilon)
  (< (abs (- 1 (if (zero? b) (+ 1 a) (/ a b))))
    epsilon))
#1391 invalid bb library, chicken 4.9.0.1, xubuntu x86, window title is random garbled non-ascii text Alex S. alex_s
Description

Hello,

In the bb library, on xubuntu x86, when I pass (text "title") or (text 'title) I do not see the string "title" at the top of the screen, but rather a random string of non-ASCII characters in the title bar of the window. Anytime I restart the program, the random string will change. I have installed chicken-bin from the synaptic repos and have version 4.9.0.1 installed. Any of the example code on the bb egg-ref is also affected by this bug on my machine.

Please let me know if any further explanation is required, if you'd like me to upload screenshots, or if I can assist in debugging this issue in any way.

Thanks very much, Alex S.

Note: See TracQuery for help on using queries.