porras-imdb 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: porras-imdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sergio Gil
@@ -11,8 +11,25 @@ cert_chain: []
11
11
 
12
12
  date: 2008-08-13 00:00:00 -07:00
13
13
  default_executable:
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: hpricot
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: "0.6"
23
+ version:
24
+ - !ruby/object:Gem::Dependency
25
+ name: chronic
26
+ version_requirement:
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ requirements:
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: "0"
32
+ version:
16
33
  description:
17
34
  email: sgilperez@gmail.com
18
35
  executables: []
@@ -26,7 +43,6 @@ files:
26
43
  - lib/imdb/imdb_search.rb
27
44
  - lib/imdb.rb
28
45
  - lib/string_extensions.rb
29
- - Rakefile
30
46
  - README
31
47
  has_rdoc: false
32
48
  homepage:
@@ -54,12 +70,5 @@ rubygems_version: 1.2.0
54
70
  signing_key:
55
71
  specification_version: 2
56
72
  summary: Internet Movie DataBase
57
- test_files:
58
- - spec/imdb_movie_spec.rb
59
- - spec/imdb_search_spec.rb
60
- - spec/samples/sample_incomplete_movie.html
61
- - spec/samples/sample_movie.html
62
- - spec/samples/sample_search.html
63
- - spec/spec_helper.rb
64
- - spec/string_extensions_spec.rb
65
- - spec.html
73
+ test_files: []
74
+
data/Rakefile DELETED
@@ -1,37 +0,0 @@
1
- require 'rake'
2
- require 'spec/rake/spectask'
3
-
4
- desc "Run all specs"
5
- Spec::Rake::SpecTask.new('spec') do |t|
6
- t.spec_files = FileList['spec/**/*.rb']
7
- end
8
-
9
- desc "Run all specs and generate HTML report"
10
- Spec::Rake::SpecTask.new('spec:html') do |t|
11
- t.spec_files = FileList['spec/**/*.rb']
12
- t.spec_opts = ["--format", "html:spec.html"]
13
- end
14
-
15
- desc "Run all specs and dump the result to README"
16
- Spec::Rake::SpecTask.new('spec:readme') do |t|
17
- t.spec_files = FileList['spec/**/*.rb']
18
- t.spec_opts = ["--format", "specdoc:README"]
19
- end
20
-
21
- namespace :gem do
22
- desc "Increments the Gem version in imdb.gemspec"
23
- task :increment do
24
- lines = File.new('imdb.gemspec').readlines
25
- lines.each do |line|
26
- next unless line =~ /version = '\d+\.\d+\.(\d+)'/
27
- line.gsub!(/\d+'/, "#{$1.to_i + 1}'")
28
- end
29
- File.open('imdb.gemspec', 'w') do |f|
30
- lines.each do |line|
31
- f.write(line)
32
- end
33
- end
34
- end
35
- end
36
-
37
-
@@ -1,182 +0,0 @@
1
- require File.dirname(__FILE__) + '/spec_helper'
2
-
3
- describe ImdbMovie do
4
-
5
- describe 'Indiana Jones and the Last Crusade' do
6
-
7
- before(:each) do
8
- @imdb_movie = ImdbMovie.new('0097576', 'Indiana Jones and the Last Crusade')
9
- @imdb_movie.stub!(:open).and_return(open("#{$samples_dir}/sample_movie.html"))
10
- end
11
-
12
- it "should query IMDB url" do
13
- @imdb_movie.should_receive(:open).with("http://www.imdb.com/title/tt0097576/").and_return(open("#{$samples_dir}/sample_movie.html"))
14
- @imdb_movie.send(:document)
15
- end
16
-
17
- it "should get director" do
18
- @imdb_movie.director.should == 'Steven Spielberg'
19
- end
20
-
21
- it "should get the poster" do
22
- @imdb_movie.poster.should == 'http://ia.media-imdb.com/images/M/MV5BMTkzODA5ODYwOV5BMl5BanBnXkFtZTcwMjAyNDYyMQ@@._V1._SX95_SY140_.jpg'
23
- end
24
-
25
- it "should get cast members" do
26
- @imdb_movie.cast_members.should include('Harrison Ford')
27
- @imdb_movie.cast_members.should include('Sean Connery')
28
- @imdb_movie.cast_members.should include('Denholm Elliott')
29
- @imdb_movie.cast_members.should include('Alison Doody')
30
- @imdb_movie.cast_members.should include('John Rhys-Davies')
31
- @imdb_movie.cast_members.should_not include('more')
32
- end
33
-
34
- it "should get the writers" do
35
- @imdb_movie.writers.should include('George Lucas')
36
- @imdb_movie.writers.should include('Philip Kaufman')
37
- @imdb_movie.writers.should_not include('more')
38
- end
39
-
40
- it "should get the release date" do
41
- @imdb_movie.release_date.should be_an_instance_of(Date)
42
- @imdb_movie.release_date.should == Date.new(1989, 9, 1)
43
- end
44
-
45
- it "should get the genres" do
46
- @imdb_movie.genres.should have(2).strings
47
- @imdb_movie.genres.should include('Action')
48
- @imdb_movie.genres.should include('Adventure')
49
- end
50
-
51
- it "should get the plot" do
52
- @imdb_movie.plot.should == "When Dr. Henry Jones Sr. suddenly goes missing while pursuing the Holy Grail, eminent archaeologist Indiana Jones must follow in his father's footsteps and stop the Nazis."
53
- end
54
-
55
- it "should get the length" do
56
- @imdb_movie.length.should == '127 min'
57
- end
58
-
59
- it "should get the countries" do
60
- @imdb_movie.countries.should have(1).string
61
- @imdb_movie.countries.should include('USA')
62
- end
63
-
64
- it "should get the languages" do
65
- @imdb_movie.languages.should have(3).strings
66
- @imdb_movie.languages.should include('English')
67
- @imdb_movie.languages.should include('German')
68
- @imdb_movie.languages.should include('Greek')
69
- end
70
-
71
- it "should get the color" do
72
- @imdb_movie.color.should == 'Color'
73
- end
74
-
75
- it "should get the company" do
76
- @imdb_movie.company.should == 'Lucasfilm'
77
- end
78
-
79
- it "should get some photos" do
80
- @imdb_movie.photos.should have(10).strings
81
- @imdb_movie.photos.should include('http://ia.media-imdb.com/images/M/MV5BMTY4MzY3OTY0MF5BMl5BanBnXkFtZTYwODM0OTE3._V1._CR82,0,320,320_SS90_.jpg')
82
- @imdb_movie.photos.should include('http://ia.media-imdb.com/images/M/MV5BMjAwNTM4ODc3Nl5BMl5BanBnXkFtZTYwNzU0OTE3._V1._CR82,0,320,320_SS90_.jpg')
83
- end
84
-
85
- it "should get the tagline" do
86
- @imdb_movie.tagline.should == "He's back in an all new adventure. Memorial Day 1989."
87
- end
88
-
89
- it "should get the aspect ratio" do
90
- @imdb_movie.aspect_ratio.should == "2.20 : 1"
91
- end
92
-
93
- describe "title pre-caching & get_data" do
94
-
95
- it "should have the original title before querying anything" do
96
- @imdb_movie.should_not_receive(:open)
97
- @imdb_movie.title.should == 'Indiana Jones and the Last Crusade'
98
- end
99
-
100
- it "should have the updated title after calling get_data" do
101
- @imdb_movie.should_receive(:open).with("http://www.imdb.com/title/tt0097576/").and_return(open("#{$samples_dir}/sample_movie.html"))
102
- @imdb_movie.get_data
103
- @imdb_movie.title.should == 'Indiana Jones and the Last Crusade'
104
- end
105
-
106
- end
107
-
108
- end
109
-
110
-
111
- describe 'Han robado una estrella' do
112
-
113
- before(:each) do
114
- @imdb_movie = ImdbMovie.new('0054961', 'Han robado una estrella')
115
- @imdb_movie.stub!(:open).and_return(open("#{$samples_dir}/sample_incomplete_movie.html"))
116
- end
117
-
118
- it "should query IMDB url" do
119
- @imdb_movie.should_receive(:open).with("http://www.imdb.com/title/tt0054961/").and_return(open("#{$samples_dir}/sample_incomplete_movie.html"))
120
- @imdb_movie.send(:document)
121
- end
122
-
123
- it "should get director" do
124
- @imdb_movie.director.should == 'Javier Setó'
125
- end
126
-
127
- it "should not get the poster" do
128
- @imdb_movie.poster.should be_nil
129
- end
130
-
131
- it "should get cast members" do
132
- @imdb_movie.cast_members.should include('Rafaela Aparicio')
133
- @imdb_movie.cast_members.should include('Marujita Díaz')
134
- @imdb_movie.cast_members.should include('Espartaco Santoni')
135
- @imdb_movie.cast_members.should_not include('more')
136
- end
137
-
138
- it "should get the writers" do
139
- @imdb_movie.writers.should have(1).string
140
- @imdb_movie.writers.should include('Paulino Rodrigo')
141
- end
142
-
143
- it "should get the release date" do
144
- @imdb_movie.release_date.should be_an_instance_of(Date)
145
- @imdb_movie.release_date.should == Date.new(1963, 9, 9)
146
- end
147
-
148
- it "should get the genres" do
149
- @imdb_movie.genres.should == ['Comedy', 'Musical']
150
- end
151
-
152
- it "should not get the plot" do
153
- @imdb_movie.plot.should be_nil
154
- end
155
-
156
- it "should get the length" do
157
- @imdb_movie.length.should == '93 min'
158
- end
159
-
160
- it "should get the countries" do
161
- @imdb_movie.countries.should == ['Spain']
162
- end
163
-
164
- it "should get the languages" do
165
- @imdb_movie.languages.should == ['Spanish']
166
- end
167
-
168
- it "should not get the color" do
169
- @imdb_movie.color.should be_nil
170
- end
171
-
172
- it "should get the company" do
173
- @imdb_movie.company.should == 'Brepi Films'
174
- end
175
-
176
- it "should not get any photos" do
177
- @imdb_movie.photos.should be_empty
178
- end
179
-
180
- end
181
-
182
- end
@@ -1,64 +0,0 @@
1
- require File.dirname(__FILE__) + '/spec_helper'
2
-
3
- describe ImdbSearch do
4
-
5
- describe 'Indiana Jones' do
6
-
7
- before(:each) do
8
- @imdb_search = ImdbSearch.new('indiana jones')
9
- @imdb_search.stub!(:open).and_return(open("#{$samples_dir}/sample_search.html"))
10
- end
11
-
12
- it "should query IMDB url" do
13
- @imdb_search.should_receive(:open).with("http://www.imdb.com/find?q=indiana+jones;s=tt").and_return(open("#{$samples_dir}/sample_search.html"))
14
- @imdb_search.send(:document)
15
- end
16
-
17
- describe "movies" do
18
-
19
- it "should be a collection of ImdbMovie instances" do
20
- @imdb_search.movies.should be_an_instance_of(Array)
21
- @imdb_search.movies.should_not be_empty
22
- @imdb_search.movies.each do |movie|
23
- movie.should be_an_instance_of(ImdbMovie)
24
- end
25
- end
26
-
27
- it "should include 'Indiana Jones and the Last Crusade'" do
28
- @imdb_search.movies.map { |m| m.title }.should include('Indiana Jones and the Last Crusade')
29
- end
30
-
31
- it "should have titles" do
32
- @imdb_search.movies.each do |movie|
33
- movie.title.should_not be_empty
34
- end
35
- end
36
-
37
- it "should not have titles with HTML tags" do
38
- @imdb_search.movies.each do |movie|
39
- movie.title.should_not match(/<.+>/)
40
- end
41
- end
42
-
43
- end
44
-
45
- end
46
-
47
- describe 'searches with potential encoding issues' do
48
-
49
- before(:each) do
50
- @imdb_search = ImdbSearch.new('torrente')
51
- @imdb_search.stub!(:open).and_return(open("#{$samples_dir}/sample_spanish_search.html"))
52
- end
53
-
54
- describe "movies" do
55
-
56
- it "should include 'Misión en Marbella'" do
57
- @imdb_search.movies.map { |m| m.title }.should include('Misión en Marbella')
58
- end
59
-
60
- end
61
-
62
- end
63
-
64
- end
@@ -1,588 +0,0 @@
1
-
2
- <html>
3
- <head>
4
- <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
5
- <title>Han robado una estrella (1963)</title>
6
- <meta name="title" content="Han robado una estrella (1963)">
7
- <meta name="description" content="Directed by Javier Set&#243;. With Rafaela Aparicio, Frank Bra&#241;a, Antonio Casal. Visit IMDb for Photos, Showtimes, Cast, Crew, Reviews, Plot Summary, Comments, Discussions, Taglines, Trailers, Posters, Fan Sites">
8
-
9
- <meta name="keywords" content="Reviews, Showtimes, DVDs, Photos, Message Boards, User Ratings, Synopsis, Trailers, Credits">
10
- <link rel="stylesheet" type="text/css" media="screen" href="http://i.media-imdb.com/images/SFf399dbc3948ab005b0ed6e733d294c7c/css2/consumersite.css" />
11
- <script type="text/javascript" src="http://i.media-imdb.com/images/SF610e15ec156625e0a3c5607e605cedb2/a/js/ads.js"></script>
12
- <link rel="icon" href="http://i.imdb.com/favicon.ico" />
13
- <link rel="apple-touch-icon" href="http://i.media-imdb.com/apple-touch-icon.png" />
14
- <style type="text/css">.showtimes { font-family: Arial, Helvetica, sans-serif }.showtimes .heading { font-size: 16px; font-weight: bold }.showtimes .time { color: #ff0000 }.tabular { border-collapse: collapse; border: 1px solid #9999ff }.tabular td.heading { background: #bbbbff }.tabular td.heading-right { background: #bbbbff; text-align: right; font-size: small }.tabular td.address { font-size: small; color: #666666; background: #eeeeee }.tabular td.detail { font-size: small; background: #eeeeee }.tabular tr.alternate { background: #eeeeee }.tabular td.item { border: 1px solid #9999ff }</style><link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SF5d4481184287c28f595f029a66c964c6/tn15/tn15.css" />
15
-
16
- <!--[if IE]>
17
- <link rel="stylesheet" type="text/css" media="screen" href="/images/wheel/ie.css" />
18
- <![endif]-->
19
- </head>
20
- <!-- h=iop614 i=2008-08-31 s=legacy(default) t='Mon Sep 1 04:10:55 2008' -->
21
-
22
- <body bgcolor="#ffffff" text="#000000" >
23
- <div id="wrapper">
24
-
25
-
26
-
27
- <!-- sid : 35988 : TOP_BANNER --><div id="lea_728x90" style="height:90;" align="center"></div>
28
-
29
- <div id="root">
30
- <layer name="root">
31
-
32
- <div id="nb15">
33
-
34
- <div id="nb15home">
35
- <a href="/" onClick="(new Image()).src='/rg/nav-home/navbar/images/b.gif?link=/';"><img src="http://i.media-imdb.com/images/nb15/logo2.gif" alt="Home"
36
- title="The Internet Movie Database" border="0" width="177" height="78"></a>
37
- </div>
38
- <div id="nb15botbg">
39
-
40
- <div id="nb15tabs">
41
- <a id="nb15nowplaying" href="/nowplaying/" onClick="(new Image()).src='/rg/nav-nowplaying/navbar/images/b.gif?link=/nowplaying/';"><i>Now Playing</i></a>
42
- <a id="nb15news" href="/news/" onClick="(new Image()).src='/rg/nav-news/navbar/images/b.gif?link=/news/';"><i>Movie/TV News</i></a>
43
- <a id="nb15mm" href="/mymovies/list" onClick="(new Image()).src='/rg/nav-mymovies/navbar/images/b.gif?link=/mymovies/list';"><i>My Movies</i></a>
44
- <a id="nb15dvd" href="/sections/dvd/" onClick="(new Image()).src='/rg/nav-video/navbar/images/b.gif?link=/sections/dvd/';"><i>DVD New Releases</i></a>
45
- <a id="nb15imdbtv" href="/sections/tv/" onClick="(new Image()).src='/rg/nav-imdbtv/navbar/images/b.gif?link=/sections/tv/';"><i>IMDbTV</i></a>
46
- <a id="nb15boards" href="/boards/" onClick="(new Image()).src='/rg/nav-boards/navbar/images/b.gif?link=/boards/';"><i>Message Boards</i></a>
47
- <a id="nb15showtimes" href="/showtimes/" onClick="(new Image()).src='/rg/nav-showtimes/navbar/images/b.gif?link=/showtimes/';"><i>Showtimes &amp; Tickets</i></a>
48
- <a id="nb15pro" href="http://pro.imdb.com/r/imdb-nav/" onClick="(new Image()).src='/rg/nav-pro/navbar/images/b.gif?link=http://pro.imdb.com/r/imdb-nav/';"><i>IMDbPro</i></a>
49
- <a id="nb15resume" href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/nav-resume/navbar/images/b.gif?link=http://resume.imdb.com/';"><i>IMDb Resume</i></a>
50
- </div>
51
-
52
- <div id="nb15topbg">
53
- <div id="nb15iesux">
54
- <div id="nb15personal">
55
-
56
- &nbsp;<span><a href="/register/login" onClick="(new Image()).src='/rg/sub-login/navbar/images/b.gif?link=/register/login';">Login</a> |
57
- <a href="/register/?why=personalize" onClick="(new Image()).src='/rg/sub-register/navbar/images/b.gif?link=/register/?why=personalize';">Register</a></span>
58
-
59
- </div>
60
- </div>
61
- </div>
62
- <div id="nb15sub">
63
- <div>
64
- <a href="/" onClick="(new Image()).src='/rg/sub-home/navbar/images/b.gif?link=/';">Home</a> |
65
-
66
- <a href="/chart/" onClick="(new Image()).src='/rg/sub-top/navbar/images/b.gif?link=/chart/';">Top&nbsp;Movies</a> |
67
- <a href="/sections/gallery/" onClick="(new Image()).src='/rg/sub-gallery/navbar/images/b.gif?link=/sections/gallery/';">Photos</a> |
68
- <a href="/indie/" onClick="(new Image()).src='/rg/sub-indie/navbar/images/b.gif?link=/indie/';">Independent&nbsp;Film</a> |
69
- <a href="/sections/games/" onClick="(new Image()).src='/rg/sub-gamebase/navbar/images/b.gif?link=/sections/games/';">GameBase</a> |
70
- <a href="/Browse/" onClick="(new Image()).src='/rg/sub-browse/navbar/images/b.gif?link=/Browse/';">Browse</a> |
71
-
72
- <a href="/help/" onClick="(new Image()).src='/rg/sub-help/navbar/images/b.gif?link=/help/';">Help</a>
73
- </div>
74
- </div>
75
- <div id="nb15search">
76
- <span class=search><a href="/search" onClick="(new Image()).src='/rg/search-img/navbar/images/b.gif?link=/search';">search</a></span>
77
- <form method="get" action="/find" name="find">
78
- <select name="s">
79
- <option value="all" selected>All</option>
80
- <option value="tt">Titles</option>
81
- <option value="ep">TV Episodes</option>
82
-
83
- <option>My Movies</option>
84
-
85
- <option value="nm">Names</option>
86
- <option value="co">Companies</option>
87
-
88
- <option value="kw">Keywords</option>
89
-
90
-
91
- <option value="char">Characters</option>
92
-
93
- <option>Quotes</option>
94
- <option>Bios</option>
95
- <option>Plots</option>
96
-
97
- </select>
98
- <input name="q" size="28" value="">
99
-
100
-
101
- <input type="image" id="nb15go_image" src="http://i.media-imdb.com/images/intl/en/go.gif" alt="go" value="go" title="go">
102
-
103
-
104
- <span id="nb15searchlinks">
105
-
106
- <a href="/search" onClick="(new Image()).src='/rg/search-more/navbar/images/b.gif?link=/search';">more</a> |
107
- <a href="/help/show_leaf?searchtips" onClick="(new Image()).src='/rg/search-tips/navbar/images/b.gif?link=/help/show_leaf?searchtips';">tips</a>
108
-
109
-
110
-
111
-
112
- </span>
113
- </form>
114
- </div>
115
- </div>
116
- </div>
117
-
118
-
119
- <div id="pagecontent">
120
-
121
- <div id="tn15" class="maindetails">
122
-
123
- <div id="tn15shopbox" class="title us">
124
- <div class="left edge"></div><div class="right edge"></div>
125
-
126
- <div class="label">SHOP <i>HAN ROBADO...</i></div>
127
- <div class="logo"></div>
128
- <div class="flags">
129
- <script type="text/javascript">
130
- <!--
131
- function switchStore(co) {
132
- try {
133
- var box = document.getElementById('tn15shopbox');
134
- box.className = box.className.replace(/\b..\b$/, co);
135
- } catch (e) { return true; }
136
- return false;
137
- }
138
- //-->
139
- </script>
140
- <a class="us" onclick="return switchStore('us')" href="sales"><b>Amazon.com</b></a>
141
- <a class="ca" onclick="return switchStore('ca')" href="sales"><b>Amazon.ca</b></a>
142
- <a class="uk" onclick="return switchStore('uk')" href="sales"><b>Amazon.co.uk</b></a>
143
- <a class="de" onclick="return switchStore('de')" href="sales"><b>Amazon.de</b></a>
144
- <a class="fr" onclick="return switchStore('fr')" href="sales"><b>Amazon.fr</b></a>
145
- </div>
146
- <div class="stores">
147
- <div class="us">
148
- <a href="/r/50403000000050a0904747030353439363130000001036a03046674600000010d6a02057370000001037a0104700000010f5a0403786f6070000001047" class="dvd"><b>DVD</b></a><a href="/r/50403000000050a0904747030353439363130000001036a03067863700000010d6a02057370000001037a0104700000010f5a0403786f6070000001047" class="vhs"><b>VHS</b></a><a href="/r/50403000000050a0904747030353439363130000001036a0a037f657e64647271636b600000010d6a02057370000001037a0104700000010f5a0403786f6070000001047" class="soundtrack"><b>CD</b></a><a href="/r/50403000000050a0904747030353439363130000001036a03016c6c600000010d6a02057370000001037a0104700000010f5a0403786f6070000001047" title="Search Amazon.com for all 'Han robado una estrella' products" class="all allon"><b>All</b></a>
149
- </div>
150
- <div class="uk">
151
- <a href="/r/50403000000050a0904747030353439363130000001036a03046674600000010d6a02057b60000001037a0104700000010f5a0403786f6070000001047" class="dvd"><b>DVD</b></a><a href="/r/50403000000050a0904747030353439363130000001036a03067863700000010d6a02057b60000001037a0104700000010f5a0403786f6070000001047" class="vhs"><b>VHS</b></a><a href="/r/50403000000050a0904747030353439363130000001036a0a037f657e64647271636b600000010d6a02057b60000001037a0104700000010f5a0403786f6070000001047" class="soundtrack"><b>CD</b></a><a href="/r/50403000000050a0904747030353439363130000001036a03016c6c600000010d6a02057b60000001037a0104700000010f5a0403786f6070000001047" title="Search Amazon.co.uk for all 'Han robado una estrella' products" class="all allon"><b>All</b></a>
152
- </div>
153
- <div class="ca"><a href="/r/50403000000050a0904747030353439363130000001036a03046674600000010d6a02036160000001037a0104700000010f5a0403786f6070000001047" class="dvd"><b>DVD</b></a><a href="/r/50403000000050a0904747030353439363130000001036a03067863700000010d6a02036160000001037a0104700000010f5a0403786f6070000001047" class="vhs"><b>VHS</b></a><a href="/r/50403000000050a0904747030353439363130000001036a0a037f657e64647271636b600000010d6a02036160000001037a0104700000010f5a0403786f6070000001047" class="soundtrack"><b>CD</b></a><a href="/r/50403000000050a0904747030353439363130000001036a03016c6c600000010d6a02036160000001037a0104700000010f5a0403786f6070000001047" title="Search Amazon.ca for all 'Han robado una estrella' products" class="all allon"><b>All</b></a></div>
154
- <div class="de"><a href="/r/50403000000050a0904747030353439363130000001036a03046674600000010d6a02046560000001037a0104700000010f5a0403786f6070000001047" class="dvd"><b>DVD</b></a><a href="/r/50403000000050a0904747030353439363130000001036a03067863700000010d6a02046560000001037a0104700000010f5a0403786f6070000001047" class="vhs"><b>VHS</b></a><a href="/r/50403000000050a0904747030353439363130000001036a0a037f657e64647271636b600000010d6a02046560000001037a0104700000010f5a0403786f6070000001047" class="soundtrack"><b>CD</b></a><a href="/r/50403000000050a0904747030353439363130000001036a03016c6c600000010d6a02046560000001037a0104700000010f5a0403786f6070000001047" title="Search Amazon.de for all 'Han robado una estrella' products" class="all allon"><b>All</b></a></div>
155
- <div class="fr"><a href="/r/50403000000050a0904747030353439363130000001036a03046674600000010d6a02066270000001037a0104700000010f5a0403786f6070000001047" class="dvd"><b>DVD</b></a><a href="/r/50403000000050a0904747030353439363130000001036a03067863700000010d6a02066270000001037a0104700000010f5a0403786f6070000001047" class="vhs"><b>VHS</b></a><a href="/r/50403000000050a0904747030353439363130000001036a0a037f657e64647271636b600000010d6a02066270000001037a0104700000010f5a0403786f6070000001047" class="soundtrack"><b>CD</b></a><a href="/r/50403000000050a0904747030353439363130000001036a03016c6c600000010d6a02066270000001037a0104700000010f5a0403786f6070000001047" title="Search Amazon.fr for all 'Han robado una estrella' products" class="all allon"><b>All</b></a></div>
156
- </div>
157
- </div>
158
-
159
- <div id="tn15crumbs">
160
- <a href="/">IMDb</a> &gt;
161
- <b>Han robado una estrella (1963)</b>
162
- </div>
163
- <div id="tn15lhs">
164
-
165
-
166
- <div class="photo">
167
-
168
- <a href="/publicity/" onClick="(new Image()).src='/rg/title_noposter2//images/b.gif?link=/publicity/';" title="Poster Not Submitted"><img border="0" src="http://ia.media-imdb.com/media/imdb/01/I/37/58/83/10.gif" width="100" height="150" alt="Poster Not Submitted" title="Poster Not Submitted"></a>
169
-
170
- </div>
171
-
172
- <a href="/mymovies/list?pending&amp;add=0054961" onClick="(new Image()).src='/rg/title-lhs/mymovies/images/b.gif?link=/mymovies/list?pending&amp;add=0054961';">
173
- <img src="http://i.media-imdb.com/images//tn15/button_addtomymovies.gif" width="115" height="32" border="0" alt="[Add to My Movies]">
174
- </a>
175
- <h6 style="margin-top: 4px">Quicklinks</h6><form><select id="quicklinks_select" onchange="document.location = this.options[this.selectedIndex].value">
176
- <option value="maindetails" selected>main details</option><option value="combined">combined details</option><option value="fullcredits">full cast and crew</option><option value="companycredits">company credits</option><option value="recommendations">recommendations</option><option value="soundtrack">soundtrack listing</option><option value="business">box office/business</option><option value="releaseinfo">release dates</option><option value="locations">filming locations</option><option value="technical">technical specs</option>
177
- </select></form>
178
- <h6>Top Links</h6>
179
- <a onClick="(new Image()).src='/rg/title-top-links/trailers/images/b.gif?link=/title/tt0054961/trailers';" href="/title/tt0054961/trailers" class="link empty">trailers and videos</a><a onClick="(new Image()).src='/rg/title-top-links/fullcredits/images/b.gif?link=/title/tt0054961/fullcredits';" href="/title/tt0054961/fullcredits" class="link">full cast and crew</a><a onClick="(new Image()).src='/rg/title-top-links/trivia/images/b.gif?link=/title/tt0054961/trivia';" href="/title/tt0054961/trivia" class="link empty">trivia</a><a onClick="(new Image()).src='/rg/title-top-links/officialsites/images/b.gif?link=/title/tt0054961/officialsites';" href="/title/tt0054961/officialsites" class="link empty">official sites</a><a onClick="(new Image()).src='/rg/title-top-links/quotes/images/b.gif?link=/title/tt0054961/quotes';" href="/title/tt0054961/quotes" class="link empty">memorable quotes</a>
180
- <h6>Overview</h6>
181
- <a href="maindetails" class="link selected">main details</a><a href="combined" class="link">combined details</a><a href="fullcredits" class="link">full cast and crew</a><a href="companycredits" class="link">company credits</a><a href="tvschedule" class="link empty">tv schedule</a>
182
- <h6>Awards & Reviews</h6>
183
- <a href="usercomments" class="link empty">user comments</a><a href="externalreviews" class="link empty">external reviews</a><a href="newsgroupreviews" class="link empty">newsgroup reviews</a><a href="awards" class="link empty">awards</a><a href="ratings" class="link empty">user ratings</a><a href="parentalguide" class="link empty">parents guide</a><a href="recommendations" class="link">recommendations</a><a href="board" class="link empty">message board</a>
184
- <h6>Plot & Quotes</h6>
185
- <a href="plotsummary" class="link empty">plot summary</a><a href="synopsis" class="link empty">plot synopsis</a><a href="keywords" class="link empty">plot keywords</a><a href="amazon" class="link empty">Amazon.com summary</a><a href="quotes" class="link empty">memorable quotes</a>
186
- <h6>Fun Stuff</h6>
187
- <a href="trivia" class="link empty">trivia</a><a href="goofs" class="link empty">goofs</a><a href="soundtrack" class="link">soundtrack listing</a><a href="crazycredits" class="link empty">crazy credits</a><a href="alternateversions" class="link empty">alternate versions</a><a href="movieconnections" class="link empty">movie connections</a><a href="faq" class="link empty">FAQ</a>
188
- <h6>Other Info</h6>
189
-
190
- <a href="sales" class="link empty">merchandising links</a><a href="business" class="link">box office/business</a><a href="releaseinfo" class="link">release dates</a><a href="locations" class="link">filming locations</a><a href="technical" class="link">technical specs</a><a href="laserdisc" class="link empty">laserdisc details</a><a href="dvd" class="link empty">DVD details</a><a href="literature" class="link empty">literature listings</a><a href="news" class="link empty">NewsDesk</a>
191
- <h6>Promotional</h6>
192
- <a href="taglines" class="link empty">taglines</a>
193
- <a href="trailers" class="link empty">trailers and videos</a>
194
- <a href="posters" class="link empty">posters</a>
195
- <a href="photogallery" class="link empty">photo gallery</a>
196
-
197
-
198
- <h6>External Links</h6>
199
- <a href="cinemashowtimes" class="link empty">showtimes</a><a href="officialsites" class="link empty">official sites</a><a href="miscsites" class="link empty">miscellaneous</a><a href="photosites" class="link empty">photographs</a><a href="soundsites" class="link empty">sound clips</a><a href="videosites" class="link empty">video clips</a>
200
-
201
-
202
- <script language="JavaScript" type="text/javascript">ord=Math.random()*10000000000000000; </script><iframe src="http://content.pulse360.com/305177CC-4930-11DD-A7FA-39723BF8694A" width="115" height="600" frameborder="0" scrolling="no"></iframe>
203
- </div>
204
- <div id="tn15main">
205
-
206
- <div id="tn15title">
207
- <h1>Han robado una estrella <span>(<a href="/Sections/Years/1963/">1963</a>)</span></h1>
208
- </div>
209
-
210
- <div id="tn15adrhs">
211
- <!-- sid : 78891 : TOP_RHS --><div id="lea_300x250"></div>
212
- advertisement
213
- </div>
214
-
215
- <div id="tn15content">
216
-
217
- <div class="strip toplinks">
218
- <table><tr>
219
- <td>
220
- <a href="/title/tt0054961/mediaindex" onClick="(new Image()).src='/rg/title-top/photos/images/b.gif?link=/title/tt0054961/mediaindex';">
221
- <img src="http://i.media-imdb.com/images/tn15/icon_photos_faded.gif" width="16" height="22" alt="*" border="0">
222
- <b class="faded">photos</b>
223
- </a>
224
- </td>
225
- <td>
226
- <a href="/title/tt0054961/board" onClick="(new Image()).src='/rg/title-top/boards/images/b.gif?link=/title/tt0054961/board';">
227
- <img src="http://i.media-imdb.com/images/tn15/icon_messageboard.gif" width="21" height="22" alt="*" border="0">
228
- <b>board</b>
229
- </a>
230
- </td>
231
- <td>
232
- <a href="/title/tt0054961/trailers" onClick="(new Image()).src='/rg/title-top/trailers/images/b.gif?link=/title/tt0054961/trailers';">
233
- <img src="http://i.media-imdb.com/images/tn15/icon_trailer_faded.gif" width="20" height="22" alt="*" border="0">
234
- <b class="faded">trailer</b>
235
- </a>
236
- </td>
237
- <td>
238
- <a href="http://pro.imdb.com/title/tt0054961/" onClick="(new Image()).src='/rg/title-top/pro/images/b.gif?link=http://pro.imdb.com/title/tt0054961/';">
239
- <img src="http://i.media-imdb.com/images/tn15/icon_pro.gif" width="25" height="22" alt="*" border="0">
240
- <b>details</b>
241
- </a>
242
- </td>
243
- </tr></table>
244
- </div>
245
-
246
-
247
-
248
-
249
- <div id="tn15rating" class="two guest unrated">
250
- <div class="usr rating">
251
- <a href="/register/?why=vote">Register</a> or <a href="/register/login">login</a> to rate this title
252
- </div>
253
- <div class="general rating">
254
- <div class="starbar static"><div class="outer"><div class="inner" style="width: 0px"></div></div></div>
255
- <b>User Rating:</b>
256
- <small>(awaiting 5 votes)</small>
257
- </div>
258
-
259
- </div>
260
-
261
- <script>
262
- <!--
263
- function tn15resize(timeout, chain) {
264
- var timer;
265
- return function() {
266
- window.clearTimeout(timer);
267
- timer = window.setTimeout(function() { try {
268
- var w;
269
- if (self.innerWidth) w = self.innerWidth;
270
- else if (document.documentElement && document.documentElement.clientWidth) w = document.documentElement.clientWidth;
271
- else if (document.body) w = document.body.clientWidth;
272
- document.getElementById('tn15content').className = w < 950 ? 'thin' : 'wide';
273
- } catch (e) { } }, timeout);
274
- if (chain) chain();
275
- }
276
- }
277
- window.onload = tn15resize(1000, window.onload);
278
- window.onresize = tn15resize(100, window.onresize);
279
- (tn15resize(100))();
280
- //-->
281
- </script>
282
-
283
-
284
- <hr/>
285
-
286
- <h3>Overview</h3>
287
-
288
- <div class="info">
289
- <h5>Director:</h5>
290
- <a href="/name/nm0786174/">Javier Set&#243;</a><br/>
291
- </div>
292
-
293
- <div class="info">
294
- <h5>Writers:</h5>
295
- <a href="/name/nm0735015/">Paulino Rodrigo</a> (screenplay)<br/><a href="/name/nm0735015/">Paulino Rodrigo</a> (story)<br/><a class="tn15more" href="fullcredits#writers">more</a>
296
- </div>
297
-
298
- <div class="info">
299
- <h5>Release Date:</h5>
300
- 9 September 1963 (Spain)
301
- <a class="tn15more inline" href="/title/tt0054961/releaseinfo" onClick="(new Image()).src='/rg/title-tease/releasedates/images/b.gif?link=/title/tt0054961/releaseinfo';">more</a>
302
-
303
- </div>
304
-
305
- <div class="info">
306
- <h5>Genre:</h5>
307
- <a href="/Sections/Genres/Comedy/">Comedy</a> | <a href="/Sections/Genres/Musical/">Musical</a>
308
- </div>
309
-
310
- <hr/>
311
- <div class="headerinline"><h3>Cast</h3>&nbsp;<small style="position: relative; bottom: 1px">(Credited cast)</small></div><div class="info"><table class="cast"> <tr class="odd"><td class="hs"><a href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/title-tease/resumehead/images/b.gif?link=http://resume.imdb.com/';"><img src="http://i.media-imdb.com/images/tn15/addtiny.gif" width="25" height="31" border="0"></td><td class="nm"><a href="/name/nm0031958/">Rafaela Aparicio</a></td><td class="ddd"></td><td class="char"></td></tr><tr class="even"><td class="hs"><a href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/title-tease/resumehead/images/b.gif?link=http://resume.imdb.com/';"><img src="http://i.media-imdb.com/images/tn15/addtiny.gif" width="25" height="31" border="0"></td><td class="nm"><a href="/name/nm0106394/">Frank Bra&#241;a</a></td><td class="ddd"></td><td class="char"></td></tr><tr class="odd"><td class="hs"><a href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/title-tease/resumehead/images/b.gif?link=http://resume.imdb.com/';"><img src="http://i.media-imdb.com/images/tn15/addtiny.gif" width="25" height="31" border="0"></td><td class="nm"><a href="/name/nm0142776/">Antonio Casal</a></td><td class="ddd"></td><td class="char"></td></tr><tr class="even"><td class="hs"><a href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/title-tease/resumehead/images/b.gif?link=http://resume.imdb.com/';"><img src="http://i.media-imdb.com/images/tn15/addtiny.gif" width="25" height="31" border="0"></td><td class="nm"><a href="/name/nm0246675/">Marujita D&#237;az</a></td><td class="ddd"></td><td class="char"></td></tr><tr class="odd"><td class="hs"><a href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/title-tease/resumehead/images/b.gif?link=http://resume.imdb.com/';"><img src="http://i.media-imdb.com/images/tn15/addtiny.gif" width="25" height="31" border="0"></td><td class="nm"><a href="/name/nm0261904/">Estrellita</a></td><td class="ddd"></td><td class="char"></td></tr><tr class="even"><td class="hs"><a href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/title-tease/resumehead/images/b.gif?link=http://resume.imdb.com/';"><img src="http://i.media-imdb.com/images/tn15/addtiny.gif" width="25" height="31" border="0"></td><td class="nm"><a href="/name/nm0495905/">Goyo Lebrero</a></td><td class="ddd"></td><td class="char"></td></tr><tr class="odd"><td class="hs"><a href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/title-tease/resumehead/images/b.gif?link=http://resume.imdb.com/';"><img src="http://i.media-imdb.com/images/tn15/addtiny.gif" width="25" height="31" border="0"></td><td class="nm"><a href="/name/nm0551520/">Paula Martel</a></td><td class="ddd"></td><td class="char"></td></tr><tr class="even"><td class="hs"><a href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/title-tease/resumehead/images/b.gif?link=http://resume.imdb.com/';"><img src="http://i.media-imdb.com/images/tn15/addtiny.gif" width="25" height="31" border="0"></td><td class="nm"><a href="/name/nm0598871/">Francisco Montalvo</a></td><td class="ddd"></td><td class="char"></td></tr><tr class="odd"><td class="hs"><a href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/title-tease/resumehead/images/b.gif?link=http://resume.imdb.com/';"><img src="http://i.media-imdb.com/images/tn15/addtiny.gif" width="25" height="31" border="0"></td><td class="nm"><a href="/name/nm0616344/">Matilde Mu&#241;oz Sampedro</a></td><td class="ddd"></td><td class="char"></td></tr><tr class="even"><td class="hs"><a href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/title-tease/resumehead/images/b.gif?link=http://resume.imdb.com/';"><img src="http://i.media-imdb.com/images/tn15/addtiny.gif" width="25" height="31" border="0"></td><td class="nm"><a href="/name/nm0649892/">Jos&#233; Orjas</a></td><td class="ddd"></td><td class="char"></td></tr><tr class="odd"><td class="hs"><a href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/title-tease/resumehead/images/b.gif?link=http://resume.imdb.com/';"><img src="http://i.media-imdb.com/images/tn15/addtiny.gif" width="25" height="31" border="0"></td><td class="nm"><a href="/name/nm0671559/">Julio Pe&#241;a</a></td><td class="ddd"></td><td class="char"></td></tr><tr class="even"><td class="hs"><a href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/title-tease/resumehead/images/b.gif?link=http://resume.imdb.com/';"><img src="http://i.media-imdb.com/images/tn15/addtiny.gif" width="25" height="31" border="0"></td><td class="nm"><a href="/name/nm0672592/">Hugo Pimentel</a></td><td class="ddd"></td><td class="char"></td></tr><tr class="odd"><td class="hs"><a href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/title-tease/resumehead/images/b.gif?link=http://resume.imdb.com/';"><img src="http://i.media-imdb.com/images/tn15/addtiny.gif" width="25" height="31" border="0"></td><td class="nm"><a href="/name/nm0692383/">Joaqu&#237;n Portillo 'Top'</a></td><td class="ddd"></td><td class="char"></td></tr><tr class="even"><td class="hs"><a href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/title-tease/resumehead/images/b.gif?link=http://resume.imdb.com/';"><img src="http://i.media-imdb.com/images/tn15/addtiny.gif" width="25" height="31" border="0"></td><td class="nm"><a href="/name/nm0697391/">Antonio Prieto</a></td><td class="ddd"></td><td class="char"></td></tr><tr class="odd"><td class="hs"><a href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/title-tease/resumehead/images/b.gif?link=http://resume.imdb.com/';"><img src="http://i.media-imdb.com/images/tn15/addtiny.gif" width="25" height="31" border="0"></td><td class="nm"><a href="/name/nm0721158/">Roberto Rey</a></td><td class="ddd"></td><td class="char"></td></tr><tr class="even"><td class="hs"><a href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/title-tease/resumehead/images/b.gif?link=http://resume.imdb.com/';"><img src="http://i.media-imdb.com/images/tn15/addtiny.gif" width="25" height="31" border="0"></td><td class="nm"><a href="/name/nm0844766/">Luis S&#225;nchez Polack</a></td><td class="ddd"></td><td class="char"></td></tr><tr class="odd"><td class="hs"><a href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/title-tease/resumehead/images/b.gif?link=http://resume.imdb.com/';"><img src="http://i.media-imdb.com/images/tn15/addtiny.gif" width="25" height="31" border="0"></td><td class="nm"><a href="/name/nm0763852/">Espartaco Santoni</a></td><td class="ddd"></td><td class="char"></td></tr><tr class="even"><td class="hs"><a href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/title-tease/resumehead/images/b.gif?link=http://resume.imdb.com/';"><img src="http://i.media-imdb.com/images/tn15/addtiny.gif" width="25" height="31" border="0"></td><td class="nm"><a href="/name/nm0904779/">Francisco V&#225;zquez</a></td><td class="ddd"></td><td class="char"></td></tr></table><a class="tn15more" href="fullcredits#cast">more</a></div>
312
- <hr/>
313
-
314
- <h3>Additional Details</h3>
315
-
316
- <div class="info">
317
- <h5>Parents Guide:</h5>
318
- <a href="parentalguide">Add content advisory for parents</a>
319
- </div>
320
-
321
- <div class="info">
322
- <h5>Runtime:</h5>
323
- 93 min
324
- </div>
325
-
326
- <div class="info">
327
- <h5>Country:</h5>
328
-
329
- <a href="/Sections/Countries/Spain/">
330
- Spain</a>
331
-
332
- </div>
333
-
334
- <div class="info">
335
- <h5>Language:</h5>
336
-
337
- <a href="/Sections/Languages/Spanish/">
338
- Spanish</a>
339
-
340
- </div>
341
-
342
- <div class="info">
343
- <h5>Filming Locations:</h5>
344
-
345
- <a href="/List?endings=on&&locations=Madrid,%20Spain&&heading=18;with+locations+including;Madrid,%20Spain">
346
- Madrid, Spain</a>
347
-
348
- </div>
349
-
350
- <div class="info">
351
- <h5>MOVIEmeter: <a href="/help/show_leaf?prowhatisstarmeter"><img src="http://i.media-imdb.com/images/tn15/meter_help.gif" width="12" height="12" border="0" alt="?"></a></h5>
352
- <span class="meter">
353
- <span class="down"><img src="http://i.media-imdb.com/images/tn15/meter_down.gif" width="9" height="8" alt="V" valign="middle"/> 28% </span>since last week
354
- <a href="http://pro.imdb.com/title/tt0054961/graph-data" onClick="(new Image()).src='/rg/meter-tease/title/images/b.gif?link=http://pro.imdb.com/title/tt0054961/graph-data';">why?</a>
355
- </span>
356
- </div>
357
-
358
- <div class="info">
359
- <h5>Company:</h5>
360
- <a href="/company/co0032095/">Brepi Films</a>
361
-
362
- <a class="tn15more inline" href="/title/tt0054961/companycredits">more</a>
363
- </div>
364
-
365
- <hr/>
366
- <h3>Fun Stuff</h3>
367
-
368
- <div class="info">
369
- <h5>Soundtrack:</h5>
370
- Yo vendo unos ojos negros
371
- <a class="tn15more inline" href="/title/tt0054961/soundtrack" onClick="(new Image()).src='/rg/title-tease/soundtrack/images/b.gif?link=/title/tt0054961/soundtrack';">more</a>
372
- </div>
373
-
374
- <hr/>
375
-
376
- <h3>FAQ</h3>
377
-
378
- <a href="/title/tt0054961/faq" onClick="(new Image()).src='/rg/title-tease/faq-empty/images/b.gif?link=/title/tt0054961/faq';">This FAQ is empty. Add the first question.</a>
379
-
380
- <hr/>
381
- <div class="headerinline">
382
- <a name="comment"><h3>User Comments</h3></a>&nbsp;&nbsp;&nbsp;<a href="usercomments-enter"><span>(Comment on this title)</span></a>
383
- </div>
384
-
385
- <hr/>
386
- <h3>Message Boards</h3>
387
- Discuss this title with other users on <a href="/title/tt0054961/board" onClick="(new Image()).src='/rg/title-tease/boards-top/images/b.gif?link=/title/tt0054961/board';">IMDb message board for Han robado una estrella (1963)</a>
388
-
389
- <hr/>
390
-
391
- <h3>Recommendations</h3>
392
- <div class="strip">
393
- If you enjoyed this title, our database also recommends:
394
- <table class="recs">
395
- <tr class="poster">
396
-
397
- <td><a href="/title/tt0054595/"><img class="poster" alt="-" width="93" src="http://ia.media-imdb.com/media/imdb/01/I/56/67/12/10.gif"></a></td>
398
-
399
- <td><a href="/title/tt0056028/"><img class="poster" alt="-" width="93" src="http://ia.media-imdb.com/media/imdb/01/I/56/67/12/10.gif"></a></td>
400
-
401
- <td><a href="/title/tt0063238/"><img class="poster" alt="-" width="93" src="http://ia.media-imdb.com/media/imdb/01/I/56/67/12/10.gif"></a></td>
402
-
403
- <td><a href="/title/tt0058436/"><img class="poster" alt="-" width="93" src="http://ia.media-imdb.com/media/imdb/01/I/56/67/12/10.gif"></a></td>
404
-
405
- <td><a href="/title/tt0050685/"><img class="poster" alt="-" width="93" src="http://ia.media-imdb.com/media/imdb/01/I/56/67/12/10.gif"></a></td>
406
-
407
- </tr>
408
- <tr>
409
-
410
- <td><a href="/title/tt0054595/">Abuelita Charlest&#243;n</a></td>
411
-
412
- <td><a href="/title/tt0056028/">Globo azul, El</a></td>
413
-
414
- <td><a href="/title/tt0063238/">Long-Play</a></td>
415
-
416
- <td><a href="/title/tt0058436/">Tardone, Le</a></td>
417
-
418
- <td><a href="/title/tt0050685/">Maravilla</a></td>
419
-
420
- </tr>
421
- <tr class="rating">
422
-
423
- <td class="first">
424
- <small>IMDb User Rating:</small>
425
- <br/>
426
- <div class="tinystarbar"><div style="width: px"></div></div>
427
- </td>
428
-
429
- <td>
430
- <small>IMDb User Rating:</small>
431
- <br/>
432
- <div class="tinystarbar"><div style="width: px"></div></div>
433
- </td>
434
-
435
- <td>
436
- <small>IMDb User Rating:</small>
437
- <br/>
438
- <div class="tinystarbar"><div style="width: px"></div></div>
439
- </td>
440
-
441
- <td>
442
- <small>IMDb User Rating:</small>
443
- <br/>
444
- <div class="tinystarbar"><div style="width: px"></div></div>
445
- </td>
446
-
447
- <td>
448
- <small>IMDb User Rating:</small>
449
- <br/>
450
- <div class="tinystarbar"><div style="width: px"></div></div>
451
- </td>
452
-
453
- </tr>
454
- </table>
455
- <a href="/title/tt0054961/recommendations" onClick="(new Image()).src='/rg/title-tease/recommendations/images/b.gif?link=/title/tt0054961/recommendations';">Show more recommendations</a>
456
- </div>
457
- <h3>Related Links</h3><table>
458
- <tr><td width="33%" style="width: 400px"> <a href="/title/tt0054961/fullcredits" onClick="(new Image()).src='/rg/title-related/maindetails-fullcredits/images/b.gif?link=/title/tt0054961/fullcredits';">Full cast and crew</a></td><td width="33%" style="width: 400px"> <a href="/title/tt0054961/companycredits" onClick="(new Image()).src='/rg/title-related/maindetails-companycredits/images/b.gif?link=/title/tt0054961/companycredits';">Company credits</a></td><td width="33%" style="width: 400px"> <a href="/Sections/Genres/Comedy/" onClick="(new Image()).src='/rg/title-related/maindetails-genre/images/b.gif?link=/Sections/Genres/Comedy/';">IMDb Comedy section</a></td></tr><tr><td width="33%" style="width: 400px"> <a href="/Sections/Countries/Spain/" onClick="(new Image()).src='/rg/title-related/maindetails-country/images/b.gif?link=/Sections/Countries/Spain/';">IMDb Spain section</a></td><td width="33%" style="width: 400px"> <a href="/mymovies/list?pending&amp;add=0054961" onClick="(new Image()).src='/rg/title-related/maindetails-mymovies/images/b.gif?link=/mymovies/list?pending&amp;add=0054961';">Add this title to MyMovies</a></td>
459
- </table>
460
- <div id="tn15bot">
461
- <div class="right">
462
-
463
-
464
-
465
- <center><iframe src="http://content.pulse360.com/C6C7561A-492E-11DD-9179-2C743BF8694A" width="410" height="245" frameborder="0" scrolling="no"></iframe></center>
466
- </div>
467
- <div class="left">
468
- <p><form method="post" action="/updates"><input type="hidden" name="auto" value="legacy/title/tt0054961/"><input type="image" width="67" height="21" name="Update" src="http://i.media-imdb.com/images/tn15/update.gif" border="0" alt="Update"></p><p><i>You may report errors and omissions on this page to the IMDb database managers. They will be examined and if approved will be included in a future update. Clicking the 'Update' button will take you through a step-by-step process.</i></p></form>
469
-
470
- </div>
471
- <br clear="right"/>
472
- </div>
473
-
474
- </div>
475
- </div>
476
- </div>
477
- <br style="clear:left;" />
478
- </div>
479
-
480
- <div id="footer" class="ft">
481
- <hr width="100%" size=1>
482
- <p class="footer" align="center">
483
- <a href="/">Home</a>&nbsp;
484
- | <a href="/search">Search</A>&nbsp;
485
- | <a href="/NowPlaying/">Now Playing</a>&nbsp;
486
- | <a href="/News/">News</A>&nbsp;
487
- | <a href="/register/?why=mymovies_footer">My Movies</A>&nbsp;
488
- | <a href="/Games/">Games</A>&nbsp;
489
- | <a href="/boards/">Boards</A>&nbsp;
490
- | <a href="/help/">Help</a>&nbsp;
491
- | <A HREF="/Showtimes">US&nbsp;Movie&nbsp;Showtimes</A>&nbsp;
492
- | <A HREF="/top_250_films">Top 250</A>&nbsp;
493
- | <a href="/register/?why=footer">Register</a>&nbsp;
494
- | <A HREF="/recommends/">Recommendations</A>&nbsp;
495
- | <A HREF="/widgets/">Widgets</A><br>
496
- <A HREF="/Charts/">Box&nbsp;Office</A>
497
- | <A HREF="/a2z">Index</A>
498
- | <A HREF="/Sections/Trailers/">Trailers</A>
499
-
500
- | <a href="/jobs"><b>Jobs</b></a>&nbsp;
501
- | <a href="https://secure.imdb.com/register/subscribe?c=a394d4442664f6f6475627" onClick="(new Image()).src='/rg/PRO_FOOT/FOOTER/images/b.gif?link=https://secure.imdb.com/register/subscribe?c=a394d4442664f6f6475627';">
502
- <span style="color:#cc3333"><b>IMDbPro.com&nbsp;-&nbsp;Free&nbsp;Trial</b></span></a>
503
- | <a href="http://resume.imdb.com" onClick="(new Image()).src='/rg/resume-footer/footer/images/b.gif?link=http://resume.imdb.com';"><span style="color:#cc3333"><b>IMDb Resume</b></span></a>
504
- <br><br>
505
- <a href="/help/show_article?conditions">Copyright &copy;</a> 1990-2008
506
- <a href="/help/">IMDb.com, Inc.</a><br>
507
- <a href="/help/show_article?conditions">Terms</a> and <a href="/privacy">Privacy Policy</a> under which this service is provided to you.<br>
508
- An <a href="http://www.amazon.com/exec/obidos/redirect-home/internetmoviedat">
509
- <img align="middle" width="86" height="18" border="0" src="http://i.imdb.com/amazon_logo.gif" alt="Amazon.com"></a> company.&nbsp;
510
- <a href="/advertising/">Advertise</a> on IMDb.&nbsp;
511
- <a href="/tiger_redirect?FT_LIC&/licensing/">License</a> our content.
512
- </p>
513
- <p class="footer" align="center">IMDb is powered by Perl and <b><a href="/rg/jobs/footer-pbp/help/show_leaf?jobatimdb">we are hiring</a></b>!</p>
514
- </div>
515
-
516
- </layer>
517
- </div>
518
- <div align="center">
519
-
520
-
521
-
522
- <!-- begin BOTTOM_AD -->
523
- <div id="bottom_ad_wrapper">
524
- <script language="JavaScript" type="text/javascript">
525
-
526
- //<![CDATA[
527
- document.write('<iframe src="/images/a/ifb/doubleclick/expand.html?imdb.us.main/;tile=3;sz=728x90;p=b;section=title;id=tt0054961;genre=Comedy;ttype=feature;genre=Musical;ord=' + ord + '?" id="bottom_ad" name="bottom_ad" width="0" height="0" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.resize_iframe(this)">');
528
- if (navigator.userAgent.indexOf("Gecko")==-1)
529
- {document.write('<script language="JavaScript" src="http://ad.doubleclick.net/adj/imdb.us.main/;tile=3;sz=728x90;abr=!ie;p=b;section=title;id=tt0054961;genre=Comedy;ttype=feature;genre=Musical;ord=' + ord + '?" type="text/javascript"><\/script>');
530
- }
531
- document.write('</iframe>');
532
-
533
- //]]>
534
- </script>
535
- <noscript><a href="http://ad.doubleclick.net/jump/imdb.us.main/;tile=3;sz=728x90;p=b;section=title;id=tt0054961;genre=Comedy;ttype=feature;genre=Musical;ord=681129469541?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb.us.main/;tile=3;sz=728x90;p=b;section=title;id=tt0054961;genre=Comedy;ttype=feature;genre=Musical;ord=681129469541?" border="0" alt="advertisement" /></a></noscript>
536
-
537
- </div>
538
- <!-- End BOTTOM_AD -->
539
- </div>
540
-
541
- <!-- sid : 36094 : BOTTOM_SCRIPT --> <script type="text/javascript">
542
- function lycos_census ()
543
- {
544
- _rsCI='lycos-es';
545
- _rsCG='0';
546
- _rsDT=1;
547
- _rsSI=escape(window.location);
548
- var _rsLP=location.protocol.indexOf('https')>-1?'https:':'http:';
549
- _rsRP=escape(document.referrer);
550
- _rsND=_rsLP+'//secure-uk.imrworldwide.com/';
551
-
552
- if (parseInt(navigator.appVersion)>=4) {
553
- _rsRD=(new Date()).getTime();
554
- _rsSE=0;
555
- _rsSV='';
556
- _rsSM=0;
557
- _rsCL='<scr'+'ipt language="JavaScript" type="text/javascript" src="'+_rsND+'v5.js"><\/scr'+'ipt>';
558
- } else {
559
- _rsCL='<img src="'+_rsND+'cgi-bin/m?ci='+_rsCI+'&cg='+_rsCG+'&si='+_rsSI+'&rp='+_rsRP+'">';
560
- }
561
- document.write(_rsCL);
562
- document.write('<noscript><img src="//secure-uk.imrworldwide.com/cgi-bin/m?ci=lycos-es&amp;cg=0" alt=""></noscript>');
563
- }
564
- var alldiv = document.body.getElementsByTagName('div');
565
- var call_lycos = 0;
566
- for (i=0;i<alldiv.length;i++) {
567
- if (alldiv[i].id.indexOf('lea_') == 0) { call_lycos = 1; break;}
568
- }
569
- if (call_lycos == 1) {
570
- document.write('<scr'+'ipt src="http://fe.lea.lycos.es/ats/adfunction.js"></scr'+'ipt>')
571
- }
572
- </script>
573
- <script type="text/javascript">
574
- if (call_lycos == 1) {
575
- var refurl = document.URL;
576
- //var other = "ee=0";
577
- var other = "ee=0|ly12=Comedy|ly12=Musical";
578
- lea_getter(refurl,other,"es");
579
- lycos_census();
580
- }
581
- </script>
582
-
583
-
584
- <img src="/rd/?q=50403000000030a090f29616f226e276966600000010c6a0a12303038303930313c27383839313c23363039343c233539383830000001037a040379646370000001047&cb=12202674557558" width="1" height="1" alt="" border="0">
585
- </div> <!-- id="wrapper" -->
586
-
587
- </body>
588
- </html>