Hey, not sure if this has been reported already, but it seems like
link() causes the the app to hang in the latest Intel OS X build on
Leopard and Tiger.
Going backwards to the r327 build seems to fix the problem.

The code I was working with is from the (quite wonderful) book:

class BookList < Shoes
  url '/', :index
  url '/twain', :twain
  url '/kv', :vonnegut

  def index
    para "Books I've read: ",
      link("by Mark Twain", :click => "/twain"),
      link("by Kurt Vonnegut", :click => "/kv")
  end

  def twain
    para "Just Huck Finn.\n", link("Go back.", :click => "/")
  end

  def vonnegut
    para "Cat's Cradle.  Sirens of Titan.  ",
      "Breakfast of Champions.\n", link("Go back.", :click => "/")
  end


end

Shoes.app :width => 400, :height => 500

#------------------------------

I'm a total shoes n00b, so sorry I can't be of more help, but figured
I'd mention this.

Also... is there a mailing list archive?  I couldn't find one.

-greg

Reply via email to