def show
  @user = User.find(params[:id])

  respond_to do |format|
    format.html # show.rhtml
    format.js   # renders show.rjs
    format.xml       { render :xml => @user.to_xml }
    format.yaml      { render :inline => @user.to_yaml }
    format.mobile    { render :layout => "mobile" }
    format.csv       { render :action => "show_csv" }
    format.vcard     { render :inline => @user.to_vcard }
    format.mycompany { render :mycompany => @user.to_mycompany_file_format }
  end
end