Created
February 15, 2011 20:39
-
-
Save andersosthus/828198 to your computer and use it in GitHub Desktop.
Revisions
-
andersosthus created this gist
Feb 15, 2011 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ <% @searchresults.each do |movie| %> Found: <%= movie.name %> | <%= movie.id %><br /> <% end %> This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ <center><h1>My movies</h1></center> <%= form_tag movies_path, :method => :get, :remote => true do %> <p> <%= search_field_tag :search, params[:search] %> <%= submit_tag "Search", :name => nil %> </p> <% end %> <div id="searchresults"> <% if not @searchresults.nil? %> <%= render @searchresults %> <% end %> </div> <hr> <%= render 'layouts/movies' %> This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ $("#searchresults").html("<%= escape_javascript(render(@searchresults)) %>"); This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ class MoviesController < ApplicationController def index @title = "My movies" @movies = Movie.all if params[:search] Tmdb.api_key = "XXX" @searchresults = TmdbMovie.find(:title => params[:search], :expand_results => false) end end end