From: Michael Neumann Date: 2005-02-19T19:58:53+09:00 Subject: Re: Yet Another... wait. This is my first Wee Example. :-) Joao Pedrosa wrote: > Hi, > > While studying Wee for the last 5 days, I was joined by a friend > (Caio) and we created an example of Wee that has a mini-blog, a table > editor for the blog, a country/state/city table editor and an about > that shows the code behind the scenes in my preferred syntax colors. > :-) Thanks for the nice examples! For some reason the DBButtons do not work using Konqueror as browser. But in Firefox they work. > Besides an annoying bug which had an alternative approach, Wee and > WEBrick faired very well. But no bug in Wee or WEBrick, right? What was it exactly? Maybe we can put a FAQ together, so that other people can avoid those bugs too. One source of error is: for i in [...] end vs. [...].each do |i| end You should use the second for (#each), if you use callbacks, as the first one (for i in) does not create a new scope for variable "i". Regards, Michael