# File femto.rb, line 288
  def fetch(q)
    id = q['id']
    q.out(
          "type"    => 'text/plain',
          "expires" => Time.now
          ) { 
      begin
        CGI::escapeHTML($its.find_item(id).description())
      rescue Exception
        "No description found"
      end
    }
  end