itunes_link_maker 1.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/itunes_link_maker.rb +12 -16
- data/lib/result.rb +3 -9
- data/spec/fixtures/has_results.html +15 -485
- data/spec/fixtures/no_results.html +3 -263
- data/spec/itunes_link_maker_spec.rb +7 -7
- data/spec/result_spec.rb +2 -17
- metadata +31 -11
- data/spec/fixtures/result.html +0 -206
data/lib/itunes_link_maker.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'rubygems'
|
2
2
|
require 'open-uri'
|
3
3
|
require 'cgi'
|
4
|
-
require '
|
4
|
+
require 'json'
|
5
5
|
|
6
6
|
require File.join(File.dirname(__FILE__), 'result')
|
7
7
|
|
@@ -24,7 +24,7 @@ class ItunesLinkMaker
|
|
24
24
|
'country' => 'US',
|
25
25
|
'WOURLEncoding' => 'ISO8859_1',
|
26
26
|
'lang' => '1',
|
27
|
-
'output' => '
|
27
|
+
'output' => 'json'
|
28
28
|
}
|
29
29
|
|
30
30
|
def self.default_options
|
@@ -32,8 +32,8 @@ class ItunesLinkMaker
|
|
32
32
|
end
|
33
33
|
|
34
34
|
def self.search(query, options={})
|
35
|
-
|
36
|
-
|
35
|
+
json = get_json(query, default_options.merge(options))
|
36
|
+
parse_json(json).uniq
|
37
37
|
end
|
38
38
|
|
39
39
|
def self.quick_search(query, options={})
|
@@ -41,21 +41,17 @@ class ItunesLinkMaker
|
|
41
41
|
end
|
42
42
|
|
43
43
|
private
|
44
|
-
def self.
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
type = TYPE_INDICES[i]
|
51
|
-
url = element['href']
|
52
|
-
|
53
|
-
result << Result.new(name, type, url)
|
44
|
+
def self.parse_json(json)
|
45
|
+
results = []
|
46
|
+
unless json.empty?
|
47
|
+
parser = JSON.parse(json)
|
48
|
+
# FIXME: don't need type argument
|
49
|
+
results = parser["results"].collect { |e| Result.new(e["itemName"], :name, e["itemLinkUrl"]) }
|
54
50
|
end
|
55
|
-
|
51
|
+
results
|
56
52
|
end
|
57
53
|
|
58
|
-
def self.
|
54
|
+
def self.get_json(query, options={})
|
59
55
|
open(url_for(options.merge('term' => query))).read
|
60
56
|
end
|
61
57
|
|
data/lib/result.rb
CHANGED
@@ -1,17 +1,16 @@
|
|
1
1
|
class ItunesLinkMaker
|
2
2
|
class Result
|
3
|
-
URL_ROOT = "http://ax.phobos.apple.com.edgesuite.net"
|
4
3
|
|
5
4
|
attr_reader :name, :type
|
6
5
|
|
7
6
|
def initialize(name, type, display_url)
|
8
7
|
@name = name
|
9
8
|
@type = type
|
10
|
-
@display_url =
|
9
|
+
@display_url = display_url
|
11
10
|
end
|
12
11
|
|
13
12
|
def url
|
14
|
-
@
|
13
|
+
@display_url
|
15
14
|
end
|
16
15
|
|
17
16
|
def eql?(result)
|
@@ -24,11 +23,6 @@ class ItunesLinkMaker
|
|
24
23
|
def hash
|
25
24
|
"#{@name}#{@type}#{@display_url}".hash
|
26
25
|
end
|
27
|
-
|
28
|
-
private
|
29
|
-
def get_url
|
30
|
-
doc = Hpricot(open(@display_url))
|
31
|
-
(doc/'textarea a').first['href']
|
32
|
-
end
|
26
|
+
|
33
27
|
end
|
34
28
|
end
|
@@ -1,490 +1,20 @@
|
|
1
|
-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
2
|
-
<HTML>
|
3
|
-
<HEAD>
|
4
|
-
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
5
|
-
<STYLE TYPE="text/css">
|
6
1
|
|
7
|
-
A {
|
8
|
-
text-decoration: none;
|
9
|
-
}
|
10
|
-
|
11
|
-
A:link {
|
12
|
-
color: #3366cc;
|
13
|
-
text-decoration: none;
|
14
|
-
}
|
15
|
-
|
16
|
-
A:visited {
|
17
|
-
color: #663399;
|
18
|
-
text-decoration: none;
|
19
|
-
}
|
20
|
-
|
21
|
-
A:active {
|
22
|
-
color: #cccccc;
|
23
|
-
text-decoration: none;
|
24
|
-
}
|
25
2
|
|
26
|
-
A:Hover {
|
27
|
-
text-decoration: underline;
|
28
|
-
}
|
29
|
-
|
30
|
-
BODY, TD, CENTER, P {
|
31
|
-
font-family: Geneva, Verdana, Arial, Helvetica;
|
32
|
-
font-size: 10px;
|
33
|
-
color: #333333;
|
34
|
-
}
|
35
|
-
|
36
|
-
.body {
|
37
|
-
font-family: Geneva, Verdana, Arial, Helvetica;
|
38
|
-
font-size: 10px;
|
39
|
-
color: #333333;
|
40
|
-
}
|
41
|
-
|
42
|
-
.content {
|
43
|
-
font-family: Arial, Helvetica, sans-serif;
|
44
|
-
font-size: 11px;
|
45
|
-
font-weight: normal;
|
46
|
-
color: #000000;
|
47
|
-
}
|
48
3
|
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
4
|
+
{
|
5
|
+
"resultCount":12,
|
6
|
+
"results": [
|
7
|
+
{"wrapperType":"track", "mediaType":"song", "artistName":"The Postal Service", "itemParentName":"Give Up", "itemParentCensoredName":"Give Up", "itemCensoredName":"Such Great Heights", "itemName":"Such Great Heights", "artistLinkUrl":"http://itunes.apple.com/us/artist/the-postal-service/id2522312?uo=4", "artworkUrl60":"http://a1.phobos.apple.com/us/r1000/035/Music/y2003/m09/d17/h18/s03.hwnrykoq.60x60-50.jpg", "artworkUrl100":"http://a1.phobos.apple.com/us/r1000/035/Music/y2003/m09/d17/h18/s03.hwnrykoq.100x100-75.jpg", "country":"USA", "currency":"USD", "discCount":1, "discNumber":1, "itemExplicitness":"notExplicit", "itemLinkUrl":"http://itunes.apple.com/us/album/such-great-heights/id2522333?i=2522315&uo=4", "itemPrice":"0.99000", "itemParentExplicitness":"notExplicit", "itemParentLinkUrl":"http://itunes.apple.com/us/album/such-great-heights/id2522333?i=2522315&uo=4", "itemParentPrice":"9.99000", "previewUrl":"http://a1.phobos.apple.com/us/r1000/049/Music/8d/c8/aa/mzm.smvfnzwo.aac.p.m4a", "primaryGenreName":"Electronic", "trackCount":10, "trackNumber":2, "trackTime":266347},
|
8
|
+
{"wrapperType":"track", "mediaType":"song", "artistName":"The Postal Service", "itemParentName":"Such Great Heights - EP", "itemParentCensoredName":"Such Great Heights - EP", "itemCensoredName":"Such Great Heights", "itemName":"Such Great Heights", "artistLinkUrl":"http://itunes.apple.com/us/artist/the-postal-service/id2522312?uo=4", "artworkUrl60":"http://a1.phobos.apple.com/us/r1000/018/Music/y2004/m08/d19/h20/s05.zwohcfmq.60x60-50.jpg", "artworkUrl100":"http://a1.phobos.apple.com/us/r1000/018/Music/y2004/m08/d19/h20/s05.zwohcfmq.100x100-75.jpg", "country":"USA", "currency":"USD", "discCount":1, "discNumber":1, "itemExplicitness":"notExplicit", "itemLinkUrl":"http://itunes.apple.com/us/album/such-great-heights/id20922902?i=20922894&uo=4", "itemPrice":"0.99000", "itemParentExplicitness":"notExplicit", "itemParentLinkUrl":"http://itunes.apple.com/us/album/such-great-heights/id20922902?i=20922894&uo=4", "itemParentPrice":"3.96000", "previewUrl":"http://a1.phobos.apple.com/us/r1000/032/Music/c9/ad/f6/mzm.nryvwklu.aac.p.m4a", "primaryGenreName":"Electronic", "trackCount":4, "trackNumber":1, "trackTime":267467},
|
9
|
+
{"wrapperType":"track", "mediaType":"song", "artistName":"Postal Service", "itemParentName":"Grey's Anatomy", "itemParentCensoredName":"Grey's Anatomy (Original Soundtrack)", "itemCensoredName":"Such Great Heights", "itemName":"Such Great Heights", "artistLinkUrl":"http://itunes.apple.com/us/artist/postal-service/id54068405?uo=4", "artworkUrl60":"http://a1.phobos.apple.com/us/r1000/035/Music/y2005/m09/d15/h00/mzi.sngtngvx.60x60-50.jpg", "artworkUrl100":"http://a1.phobos.apple.com/us/r1000/035/Music/y2005/m09/d15/h00/mzi.sngtngvx.100x100-75.jpg", "country":"USA", "currency":"USD", "discCount":1, "discNumber":1, "itemExplicitness":"notExplicit", "itemLinkUrl":"http://itunes.apple.com/us/album/such-great-heights/id80567412?i=80567414&uo=4", "itemPrice":"-1.00000", "itemParentExplicitness":"notExplicit", "itemParentLinkUrl":"http://itunes.apple.com/us/album/such-great-heights/id80567412?i=80567414&uo=4", "itemParentPrice":"9.99000", "previewUrl":"http://a1.phobos.apple.com/us/r1000/030/Music/76/1b/2a/mzm.upjnheqc.aac.p.m4a", "primaryGenreName":"Soundtrack", "trackCount":15, "trackNumber":1, "trackTime":266167},
|
10
|
+
{"wrapperType":"track", "mediaType":"song", "artistName":"The Postal Service", "itemParentName":"Such Great Heights - EP", "itemParentCensoredName":"Such Great Heights - EP", "itemCensoredName":"There's Never Enough Time", "itemName":"There's Never Enough Time", "artistLinkUrl":"http://itunes.apple.com/us/artist/the-postal-service/id2522312?uo=4", "artworkUrl60":"http://a1.phobos.apple.com/us/r1000/018/Music/y2004/m08/d19/h20/s05.zwohcfmq.60x60-50.jpg", "artworkUrl100":"http://a1.phobos.apple.com/us/r1000/018/Music/y2004/m08/d19/h20/s05.zwohcfmq.100x100-75.jpg", "country":"USA", "currency":"USD", "discCount":1, "discNumber":1, "itemExplicitness":"notExplicit", "itemLinkUrl":"http://itunes.apple.com/us/album/theres-never-enough-time/id20922902?i=20922896&uo=4", "itemPrice":"0.99000", "itemParentExplicitness":"notExplicit", "itemParentLinkUrl":"http://itunes.apple.com/us/album/theres-never-enough-time/id20922902?i=20922896&uo=4", "itemParentPrice":"3.96000", "previewUrl":"http://a1.phobos.apple.com/us/r1000/037/Music/88/d4/fc/mzm.kkxojssd.aac.p.m4a", "primaryGenreName":"Electronic", "trackCount":4, "trackNumber":2, "trackTime":213227},
|
11
|
+
{"wrapperType":"track", "mediaType":"song", "artistName":"The Postal Service", "itemParentName":"The District Sleeps Alone Tonight - EP", "itemParentCensoredName":"The District Sleeps Alone Tonight - EP", "itemCensoredName":"Such Great Heights (Remix by John Tejada)", "itemName":"Such Great Heights", "artistLinkUrl":"http://itunes.apple.com/us/artist/the-postal-service/id2522312?uo=4", "artworkUrl60":"http://a1.phobos.apple.com/us/r1000/003/Music/y2004/m08/d19/h17/s05.gsywpsqz.60x60-50.jpg", "artworkUrl100":"http://a1.phobos.apple.com/us/r1000/003/Music/y2004/m08/d19/h17/s05.gsywpsqz.100x100-75.jpg", "country":"USA", "currency":"USD", "discCount":1, "discNumber":1, "itemExplicitness":"notExplicit", "itemLinkUrl":"http://itunes.apple.com/us/album/such-great-heights-remix-by/id20920002?i=20919979&uo=4", "itemPrice":"0.99000", "itemParentExplicitness":"notExplicit", "itemParentLinkUrl":"http://itunes.apple.com/us/album/such-great-heights-remix-by/id20920002?i=20919979&uo=4", "itemParentPrice":"3.96000", "previewUrl":"http://a1.phobos.apple.com/us/r1000/006/Music/fc/8f/b9/mzm.hkwtsryh.aac.p.m4a", "primaryGenreName":"Electronic", "trackCount":4, "trackNumber":3, "trackTime":349160},
|
12
|
+
{"wrapperType":"track", "mediaType":"music-video", "artistName":"The Postal Service", "itemParentName":"Give Up", "itemParentCensoredName":"Give Up", "itemCensoredName":"Such Great Heights", "itemName":"Such Great Heights", "artistLinkUrl":"http://itunes.apple.com/us/artist/the-postal-service/id2522312?uo=4", "artworkUrl60":"http://a1.phobos.apple.com/us/r1000/029/Music/09/5a/11/mzi.gzvvdzhc.80x60-75.jpg", "artworkUrl100":"http://a1.phobos.apple.com/us/r1000/029/Music/09/5a/11/mzi.gzvvdzhc.133x100-99.jpg", "country":"USA", "currency":"USD", "discCount":1, "discNumber":1, "itemExplicitness":"notExplicit", "itemLinkUrl":"http://itunes.apple.com/us/video/such-great-heights/id118712451?uo=4", "itemPrice":"1.49000", "itemParentExplicitness":"notExplicit", "itemParentLinkUrl":"http://itunes.apple.com/us/video/such-great-heights/id118712451?uo=4", "itemParentPrice":"9.99000", "previewUrl":"http://a1497.v.phobos.apple.com/us/r1000/014/Video/de/81/e5/mzi.frgsdhbz..640x480.h264lc.D2.p.m4v", "primaryGenreName":"Electronic", "trackCount":13, "trackNumber":12, "trackTime":null},
|
13
|
+
{"wrapperType":"track", "mediaType":"song", "artistName":"Postal Service", "itemParentName":"Grey's Anatomy, Vol. 1, 2 & 3 (Original Soundtrack)", "itemParentCensoredName":"Grey's Anatomy, Vol. 1, 2 & 3 (Original Soundtrack)", "itemCensoredName":"Such Great Heights", "itemName":"Such Great Heights", "artistLinkUrl":"http://itunes.apple.com/us/artist/postal-service/id54068405?uo=4", "artworkUrl60":"http://a1.phobos.apple.com/us/r1000/032/Music/41/0e/19/mzi.sjqecioc.60x60-50.jpg", "artworkUrl100":"http://a1.phobos.apple.com/us/r1000/032/Music/41/0e/19/mzi.sjqecioc.100x100-75.jpg", "country":"USA", "currency":"USD", "discCount":3, "discNumber":1, "itemExplicitness":"notExplicit", "itemLinkUrl":"http://itunes.apple.com/us/album/such-great-heights/id332438367?i=332438414&uo=4", "itemPrice":"-1.00000", "itemParentExplicitness":"cleaned", "itemParentLinkUrl":"http://itunes.apple.com/us/album/such-great-heights/id332438367?i=332438414&uo=4", "itemParentPrice":"24.99000", "previewUrl":"http://a1.phobos.apple.com/us/r1000/056/Music/51/77/8b/mzm.tuhotdfc.aac.p.m4a", "primaryGenreName":"Soundtrack", "trackCount":15, "trackNumber":1, "trackTime":266167},
|
14
|
+
{"wrapperType":"track", "mediaType":"song", "artistName":"The Original Hit Makers", "itemParentName":"Sing It Like a Rock Star: Rock Band Alternative Rock, Vol. 2 (Karoake Version)", "itemParentCensoredName":"Sing It Like a Rock Star: Rock Band Alternative Rock, Vol. 2 (Karoake Version)", "itemCensoredName":"Such Great Heights (As Made Famous By the Postal Service) [Karaoke Version Without Backing", "itemName":"Such Great Heights (As Made Famous By the Postal Service) [Karaoke Version Without Backing", "artistLinkUrl":"http://itunes.apple.com/us/artist/the-original-hit-makers/id298136965?uo=4", "artworkUrl60":"http://a1.phobos.apple.com/us/r1000/053/Music/c6/7c/73/mzi.yxjvfeqn.60x60-50.jpg", "artworkUrl100":"http://a1.phobos.apple.com/us/r1000/053/Music/c6/7c/73/mzi.yxjvfeqn.100x100-75.jpg", "country":"USA", "currency":"USD", "discCount":1, "discNumber":1, "itemExplicitness":"notExplicit", "itemLinkUrl":"http://itunes.apple.com/us/album/such-great-heights-as-made/id338412933?i=338412948&uo=4", "itemPrice":"0.99000", "itemParentExplicitness":"notExplicit", "itemParentLinkUrl":"http://itunes.apple.com/us/album/such-great-heights-as-made/id338412933?i=338412948&uo=4", "itemParentPrice":"9.99000", "previewUrl":"http://a1.phobos.apple.com/us/r1000/051/Music/da/d1/50/mzm.sahaahuk.aac.p.m4a", "primaryGenreName":"Rock", "trackCount":15, "trackNumber":14, "trackTime":269125},
|
15
|
+
{"wrapperType":"track", "mediaType":"song", "artistName":"3rd Below", "itemParentName":"Lions! Tigers! Covers! Oh My!", "itemParentCensoredName":"Lions! Tigers! Covers! Oh My!", "itemCensoredName":"Such Great Heights (Postal Service)", "itemName":"Such Great Heights (Postal Service)", "artistLinkUrl":"http://itunes.apple.com/us/artist/3rd-below/id340954642?uo=4", "artworkUrl60":"http://a1.phobos.apple.com/us/r1000/041/Music/3d/1a/c6/mzi.prgsnbof.60x60-50.jpg", "artworkUrl100":"http://a1.phobos.apple.com/us/r1000/041/Music/3d/1a/c6/mzi.prgsnbof.100x100-75.jpg", "country":"USA", "currency":"USD", "discCount":1, "discNumber":1, "itemExplicitness":"notExplicit", "itemLinkUrl":"http://itunes.apple.com/us/album/such-great-heights-postal/id340954610?i=340954716&uo=4", "itemPrice":"0.99000", "itemParentExplicitness":"explicit", "itemParentLinkUrl":"http://itunes.apple.com/us/album/such-great-heights-postal/id340954610?i=340954716&uo=4", "itemParentPrice":"3.96000", "previewUrl":"http://a1.phobos.apple.com/us/r1000/000/Music/d0/f9/8c/mzm.dlsaoras.aac.p.m4a", "primaryGenreName":"Pop", "trackCount":4, "trackNumber":3, "trackTime":181820},
|
16
|
+
{"wrapperType":"track", "mediaType":"song", "artistName":"The Original Hit Makers", "itemParentName":"Sing It Like a Rock Star: Rock Band Pure Rock Vol. 8 [Karaoke Version]", "itemParentCensoredName":"Sing It Like a Rock Star: Rock Band Pure Rock Vol. 8 [Karaoke Version]", "itemCensoredName":"Such Great Heights (As Made Famous By the Postal Service) [Karaoke Version Without Guitar Track]", "itemName":"Such Great Heights (As Made Famous By the Postal Service) [Karaoke Version Without Guitar Track]", "artistLinkUrl":"http://itunes.apple.com/us/artist/the-original-hit-makers/id298136965?uo=4", "artworkUrl60":"http://a1.phobos.apple.com/us/r1000/021/Music/05/ba/a7/mzi.yncchirk.60x60-50.jpg", "artworkUrl100":"http://a1.phobos.apple.com/us/r1000/021/Music/05/ba/a7/mzi.yncchirk.100x100-75.jpg", "country":"USA", "currency":"USD", "discCount":1, "discNumber":1, "itemExplicitness":"notExplicit", "itemLinkUrl":"http://itunes.apple.com/us/album/such-great-heights-as-made/id339010113?i=339010237&uo=4", "itemPrice":"0.99000", "itemParentExplicitness":"notExplicit", "itemParentLinkUrl":"http://itunes.apple.com/us/album/such-great-heights-as-made/id339010113?i=339010237&uo=4", "itemParentPrice":"9.99000", "previewUrl":"http://a1.phobos.apple.com/us/r1000/022/Music/15/65/29/mzm.ocjjpcts.aac.p.m4a", "primaryGenreName":"Rock", "trackCount":16, "trackNumber":14, "trackTime":269125},
|
17
|
+
{"wrapperType":"track", "mediaType":"song", "artistName":"Chart Toppers", "itemParentName":"Karaoke Chart Toppers: Alt Rock", "itemParentCensoredName":"Karaoke Chart Toppers: Alt Rock", "itemCensoredName":"Such Great Heights (Made Famous By The Postal Service) [Karaoke Version]", "itemName":"Such Great Heights (Made Famous By The Postal Service) [Karaoke Version]", "artistLinkUrl":"http://itunes.apple.com/us/artist/chart-toppers/id349607696?uo=4", "artworkUrl60":"http://a1.phobos.apple.com/us/r1000/000/Music/3e/cb/da/mzi.ylqqmhtz.60x60-50.jpg", "artworkUrl100":"http://a1.phobos.apple.com/us/r1000/000/Music/3e/cb/da/mzi.ylqqmhtz.100x100-75.jpg", "country":"USA", "currency":"USD", "discCount":1, "discNumber":1, "itemExplicitness":"notExplicit", "itemLinkUrl":"http://itunes.apple.com/us/album/such-great-heights-made-famous/id367415944?i=367415962&uo=4", "itemPrice":"0.99000", "itemParentExplicitness":"notExplicit", "itemParentLinkUrl":"http://itunes.apple.com/us/album/such-great-heights-made-famous/id367415944?i=367415962&uo=4", "itemParentPrice":"9.99000", "previewUrl":"http://a1.phobos.apple.com/us/r1000/018/Music/62/04/e1/mzi.efawnqny.aac.p.m4a", "primaryGenreName":"Rock", "trackCount":20, "trackNumber":3, "trackTime":269125},
|
18
|
+
{"wrapperType":"track", "mediaType":"song", "artistName":"The Original Hit Makers", "itemParentName":"Sing It Like a Rock Star: Rock Band Alternative Rock, Vol. 2 (Karoake Version)", "itemParentCensoredName":"Sing It Like a Rock Star: Rock Band Alternative Rock, Vol. 2 (Karoake Version)", "itemCensoredName":"Such Great Heights (As Made Famous By the Postal Service) [Karaoke Version]", "itemName":"Such Great Heights (As Made Famous By the Postal Service) [Karaoke Version]", "artistLinkUrl":"http://itunes.apple.com/us/artist/the-original-hit-makers/id298136965?uo=4", "artworkUrl60":"http://a1.phobos.apple.com/us/r1000/053/Music/c6/7c/73/mzi.yxjvfeqn.60x60-50.jpg", "artworkUrl100":"http://a1.phobos.apple.com/us/r1000/053/Music/c6/7c/73/mzi.yxjvfeqn.100x100-75.jpg", "country":"USA", "currency":"USD", "discCount":1, "discNumber":1, "itemExplicitness":"notExplicit", "itemLinkUrl":"http://itunes.apple.com/us/album/such-great-heights-as-made/id338412933?i=338412947&uo=4", "itemPrice":"0.99000", "itemParentExplicitness":"notExplicit", "itemParentLinkUrl":"http://itunes.apple.com/us/album/such-great-heights-as-made/id338412933?i=338412947&uo=4", "itemParentPrice":"9.99000", "previewUrl":"http://a1.phobos.apple.com/us/r1000/013/Music/03/8a/98/mzm.pnivphao.aac.p.m4a", "primaryGenreName":"Rock", "trackCount":15, "trackNumber":13, "trackTime":269125}]
|
54
19
|
}
|
55
20
|
|
56
|
-
td.searchResults {
|
57
|
-
border-style: solid;
|
58
|
-
border-right-width: 1px;
|
59
|
-
border-color: #cccccc;
|
60
|
-
}
|
61
|
-
|
62
|
-
div.searchResults {
|
63
|
-
margin: 0px 5px 0px 5px;
|
64
|
-
color: black;
|
65
|
-
}
|
66
|
-
|
67
|
-
.searchResults a {
|
68
|
-
color: black;
|
69
|
-
text-decoration: none;
|
70
|
-
}
|
71
|
-
|
72
|
-
.sr_goButton img {
|
73
|
-
vertical-align: middle;
|
74
|
-
}
|
75
|
-
|
76
|
-
.sr_goButton {
|
77
|
-
float: right;
|
78
|
-
vertical-align: middle;
|
79
|
-
}
|
80
|
-
|
81
|
-
</style>
|
82
|
-
|
83
|
-
<META NAME="ITMS Link Maker" CONTENT="WebObjects 5.2">
|
84
|
-
<TITLE>ITMS Link Maker</TITLE>
|
85
|
-
</HEAD>
|
86
|
-
|
87
|
-
<BODY BGCOLOR="#FFFFFF">
|
88
|
-
<TABLE HEIGHT="100%" WIDTH="100%">
|
89
|
-
<TR><TD ALIGN=CENTER VALIGN=TOP>
|
90
|
-
<br/><br/>
|
91
|
-
<form name="itmsLinkForm" method="get" action="/WebObjects/MZStoreServices.woa/wa/itmsSearch">
|
92
|
-
|
93
|
-
|
94
|
-
<input type=hidden value="ISO8859_1" name="WOURLEncoding">
|
95
|
-
<input type=hidden value="1" name="lang">
|
96
|
-
<input type="hidden" value="lm" name="output"/>
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
<TABLE WIDTH="448" BORDER="0" BORDERCOLOR="#CCCCCC" CELLSPACING="0" CELLPADDING="0">
|
102
|
-
|
103
|
-
<TR HEIGHT="36">
|
104
|
-
<TD ALIGN="center" WIDTH="721" HEIGHT="36"><img width="721" height="60" alt="" border="0" src="/images/linkmaker/linkmaker.gif"></TD>
|
105
|
-
</TR>
|
106
|
-
<TR HEIGHT="50">
|
107
|
-
<TD ALIGN="center" VALIGN="middle" WIDTH="721" HEIGHT="50" BACKGROUND="/images/linkmaker/bg_gray.gif">
|
108
|
-
<TABLE CELLSPACING=2 BORDER=0 CELLPADDING=2>
|
109
|
-
|
110
|
-
<TR><TD width="5%"/><TD width="90%"><BR>Welcome to iTunes Link Maker. This simple web interface will automatically generate html you can copy-and-paste into your own code to create deep links to any music on the iTunes Store. Simply enter a song name, album name, artist name, or any combination of the three to get started:</TD><TD width="5%"/></TR>
|
111
|
-
|
112
|
-
</TABLE><BR>
|
113
|
-
|
114
|
-
<TABLE WIDTH="608" BORDER="0" CELLSPACING="0" CELLPADDING="2">
|
115
|
-
<TR>
|
116
|
-
<TD VALIGN="bottom">
|
117
|
-
<FONT SIZE="2" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular"><B>
|
118
|
-
Country
|
119
|
-
</B></FONT>
|
120
|
-
</TD>
|
121
|
-
<TD VALIGN="bottom">
|
122
|
-
<FONT SIZE="2" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular"><B>
|
123
|
-
|
124
|
-
Search
|
125
|
-
</B></FONT>
|
126
|
-
</TD>
|
127
|
-
<TD VALIGN="bottom">
|
128
|
-
<FONT SIZE="2" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular"><B>
|
129
|
-
Media Type
|
130
|
-
</B></FONT>
|
131
|
-
</TD>
|
132
|
-
<TD></TD>
|
133
|
-
</TR>
|
134
|
-
|
135
|
-
<TR>
|
136
|
-
<TD VALIGN="top"><select name="country">
|
137
|
-
<option value="AU">Australia</option>
|
138
|
-
<option value="AT">Austria</option>
|
139
|
-
<option value="BE">Belgium</option>
|
140
|
-
<option value="CA">Canada</option>
|
141
|
-
<option value="DK">Denmark</option>
|
142
|
-
<option value="FI">Finland</option>
|
143
|
-
<option value="FR">France</option>
|
144
|
-
|
145
|
-
<option value="DE">Germany</option>
|
146
|
-
<option value="GR">Greece</option>
|
147
|
-
<option value="IE">Ireland</option>
|
148
|
-
<option value="IT">Italy</option>
|
149
|
-
<option value="JP">Japan</option>
|
150
|
-
<option value="LU">Luxembourg</option>
|
151
|
-
<option value="NL">Netherlands</option>
|
152
|
-
<option value="NZ">New Zealand</option>
|
153
|
-
<option value="NO">Norway</option>
|
154
|
-
|
155
|
-
<option value="PT">Portugal</option>
|
156
|
-
<option value="ES">Spain</option>
|
157
|
-
<option value="SE">Sweden</option>
|
158
|
-
<option value="CH">Switzerland</option>
|
159
|
-
<option value="GB">UK</option>
|
160
|
-
<option selected value="US">USA</option></select> </TD>
|
161
|
-
<TD VALIGN="top"><input size="22" type=text value="postal service such great heights" name="term"> </TD>
|
162
|
-
<TD VALIGN="top"><select name="media">
|
163
|
-
<option value="all">All Results</option>
|
164
|
-
|
165
|
-
<option selected value="music">Music</option>
|
166
|
-
<option value="movie">Movies</option>
|
167
|
-
<option value="shortFilm">Short Films</option>
|
168
|
-
<option value="tvShow">TV Shows</option>
|
169
|
-
<option value="musicVideo">Music Videos</option>
|
170
|
-
<option value="audiobook">Audiobooks</option>
|
171
|
-
<option value="podcast">Podcasts</option>
|
172
|
-
<option value="iTunesU">iTunes U</option></select> </TD>
|
173
|
-
<TD VALIGN="top"><span onClick="itmsLinkForm.submit();"><img src="/images/linkmaker/btn_search.gif"><span></TD>
|
174
|
-
|
175
|
-
</TR>
|
176
|
-
|
177
|
-
<TR height="90"><TD> </TD></TR>
|
178
|
-
|
179
|
-
</TABLE>
|
180
|
-
|
181
|
-
|
182
|
-
<TABLE CELLSPACING=2 BORDER=0 CELLPADDING=2>
|
183
|
-
<TR>
|
184
|
-
<TD>
|
185
|
-
<font color="#bbbbbb">Step 1: Enter the song, album, and/or artist to which you wish to link. Click "Search".</font><BR>
|
186
|
-
|
187
|
-
|
188
|
-
Step 2: Click the drill down arrow
|
189
|
-
<IMG SRC="/images/linkmaker/arrow_999999_r.gif" BORDER=0 WIDTH=12 ALT="" HEIGHT=12/>
|
190
|
-
associated with a specific link on the page.
|
191
|
-
<BR>
|
192
|
-
<font color="#bbbbbb">Step 3: Copy and paste the HTML link into your web page.</font>
|
193
|
-
</TD>
|
194
|
-
</TR>
|
195
|
-
</TABLE>
|
196
|
-
|
197
|
-
<br/><br/>
|
198
|
-
|
199
|
-
</TD>
|
200
|
-
</TR>
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
<TR HEIGHT="13">
|
205
|
-
<TD ALIGN="center" VALIGN="top" WIDTH="721" HEIGHT="13">
|
206
|
-
<TABLE WIDTH="721" BORDER="0" CELLSPACING="0" CELLPADDING="0" HEIGHT="13">
|
207
|
-
<TR>
|
208
|
-
<TD><img width="247" height="13" alt="" border="0" src="/images/linkmaker/name.gif"></TD>
|
209
|
-
<TD><img width="246" height="13" alt="" border="0" src="/images/linkmaker/album.gif"></TD>
|
210
|
-
|
211
|
-
<TD><img width="228" height="13" alt="" border="0" src="/images/linkmaker/artist.gif"></TD>
|
212
|
-
</TR>
|
213
|
-
</TABLE>
|
214
|
-
</TD>
|
215
|
-
</TR>
|
216
|
-
<TR>
|
217
|
-
<TD ALIGN="center" VALIGN="top" WIDTH="721">
|
218
|
-
<TABLE CELLSPACING=1 CELLPADDING=0 BORDER=0 WIDTH=721 BACKGROUND="/images/linkmaker/bg_gray.gif"><tr><td>
|
219
|
-
<TABLE CELLSPACING=0 CELLPADDING=0 BORDER=0 WIDTH="100%">
|
220
|
-
|
221
|
-
<tr height="20" bgColor="#ffffff">
|
222
|
-
|
223
|
-
<TD class="searchResults" WIDTH="233" HEIGHT="20"><FONT SIZE="1" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular">
|
224
|
-
<div class="searchResults"><a class="searchResults" href="/WebObjects/MZStoreServices.woa/wa/itmsSearchDisplayUrl?desc=The+Postal+Service+-+Give+Up+-+Such+Great+Heights&WOURLEncoding=ISO8859_1&lang=1&url=http%3A%2F%2Fphobos.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewAlbum%3Fi%3D2522315%26id%3D2522333%26s%3D143441">
|
225
|
-
<div class="sr_goButton">
|
226
|
-
|
227
|
-
<IMG SRC="/images/linkmaker/arrow_999999_r.gif" ALT="" WIDTH="12" HEIGHT="12" BORDER="0"/>
|
228
|
-
</div>
|
229
|
-
<span class="searchResults">Such Great Heights</span>
|
230
|
-
|
231
|
-
</a></div>
|
232
|
-
</FONT></TD>
|
233
|
-
|
234
|
-
<TD class="searchResults" WIDTH="232" HEIGHT="20"><FONT SIZE="1" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular">
|
235
|
-
<div class="searchResults"><a class="searchResults" href="/WebObjects/MZStoreServices.woa/wa/itmsSearchDisplayUrl?desc=The+Postal+Service+-+Give+Up&WOURLEncoding=ISO8859_1&lang=1&url=http%3A%2F%2Fphobos.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewAlbum%3Fi%3D2522315%26id%3D2522333%26s%3D143441">
|
236
|
-
<div class="sr_goButton">
|
237
|
-
<IMG SRC="/images/linkmaker/arrow_999999_r.gif" ALT="" WIDTH="12" HEIGHT="12" BORDER="0"/>
|
238
|
-
</div>
|
239
|
-
<span class="searchResults">Give Up</span>
|
240
|
-
|
241
|
-
</a></div>
|
242
|
-
</FONT></TD>
|
243
|
-
|
244
|
-
<TD class="searchResults" WIDTH="211" HEIGHT="20"><FONT SIZE="1" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular">
|
245
|
-
<div class="searchResults">
|
246
|
-
<a class="searchResults" href="/WebObjects/MZStoreServices.woa/wa/itmsSearchDisplayUrl?desc=The+Postal+Service&WOURLEncoding=ISO8859_1&lang=1&url=http%3A%2F%2Fphobos.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewArtist%3Fid%3D2522312">
|
247
|
-
<div class="sr_goButton">
|
248
|
-
<IMG SRC="/images/linkmaker/arrow_999999_r.gif" ALT="" WIDTH="12" HEIGHT="12" BORDER="0"/>
|
249
|
-
</div>
|
250
|
-
|
251
|
-
<span class="searchResults">The Postal Service</span>
|
252
|
-
</a>
|
253
|
-
|
254
|
-
|
255
|
-
</div>
|
256
|
-
</FONT></TD>
|
257
|
-
|
258
|
-
</tr><tr height="20" bgColor="#edf3fe">
|
259
|
-
|
260
|
-
<TD class="searchResults" WIDTH="233" HEIGHT="20"><FONT SIZE="1" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular">
|
261
|
-
<div class="searchResults"><a class="searchResults" href="/WebObjects/MZStoreServices.woa/wa/itmsSearchDisplayUrl?desc=Postal+Service+-+Grey%27s+Anatomy+-+Such+Great+Heights&WOURLEncoding=ISO8859_1&lang=1&url=http%3A%2F%2Fphobos.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewAlbum%3Fi%3D80567414%26id%3D80567412%26s%3D143441">
|
262
|
-
|
263
|
-
<div class="sr_goButton">
|
264
|
-
|
265
|
-
<IMG SRC="/images/linkmaker/arrow_999999_r.gif" ALT="" WIDTH="12" HEIGHT="12" BORDER="0"/>
|
266
|
-
</div>
|
267
|
-
<span class="searchResults">Such Great Heights</span>
|
268
|
-
</a></div>
|
269
|
-
</FONT></TD>
|
270
|
-
|
271
|
-
<TD class="searchResults" WIDTH="232" HEIGHT="20"><FONT SIZE="1" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular">
|
272
|
-
<div class="searchResults"><a class="searchResults" href="/WebObjects/MZStoreServices.woa/wa/itmsSearchDisplayUrl?desc=Postal+Service+-+Grey%27s+Anatomy&WOURLEncoding=ISO8859_1&lang=1&url=http%3A%2F%2Fphobos.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewAlbum%3Fi%3D80567414%26id%3D80567412%26s%3D143441">
|
273
|
-
|
274
|
-
<div class="sr_goButton">
|
275
|
-
<IMG SRC="/images/linkmaker/arrow_999999_r.gif" ALT="" WIDTH="12" HEIGHT="12" BORDER="0"/>
|
276
|
-
</div>
|
277
|
-
<span class="searchResults">Grey's Anatomy</span>
|
278
|
-
</a></div>
|
279
|
-
</FONT></TD>
|
280
|
-
|
281
|
-
<TD class="searchResults" WIDTH="211" HEIGHT="20"><FONT SIZE="1" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular">
|
282
|
-
<div class="searchResults">
|
283
|
-
|
284
|
-
<a class="searchResults" href="/WebObjects/MZStoreServices.woa/wa/itmsSearchDisplayUrl?desc=Postal+Service&WOURLEncoding=ISO8859_1&lang=1&url=http%3A%2F%2Fphobos.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewArtist%3Fid%3D54068405">
|
285
|
-
<div class="sr_goButton">
|
286
|
-
<IMG SRC="/images/linkmaker/arrow_999999_r.gif" ALT="" WIDTH="12" HEIGHT="12" BORDER="0"/>
|
287
|
-
</div>
|
288
|
-
<span class="searchResults">Postal Service</span>
|
289
|
-
</a>
|
290
|
-
|
291
|
-
|
292
|
-
</div>
|
293
|
-
</FONT></TD>
|
294
|
-
|
295
|
-
</tr><tr height="20" bgColor="#ffffff">
|
296
|
-
|
297
|
-
<TD class="searchResults" WIDTH="233" HEIGHT="20"><FONT SIZE="1" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular">
|
298
|
-
<div class="searchResults"><a class="searchResults" href="/WebObjects/MZStoreServices.woa/wa/itmsSearchDisplayUrl?desc=The+Postal+Service+-+Give+Up+-+Such+Great+Heights&WOURLEncoding=ISO8859_1&lang=1&url=http%3A%2F%2Fphobos.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewVideo%3Fid%3D118712451%26s%3D143441">
|
299
|
-
<div class="sr_goButton">
|
300
|
-
[V]
|
301
|
-
<IMG SRC="/images/linkmaker/arrow_999999_r.gif" ALT="" WIDTH="12" HEIGHT="12" BORDER="0"/>
|
302
|
-
</div>
|
303
|
-
<span class="searchResults">Such Great Heights</span>
|
304
|
-
|
305
|
-
</a></div>
|
306
|
-
</FONT></TD>
|
307
|
-
|
308
|
-
<TD class="searchResults" WIDTH="232" HEIGHT="20"><FONT SIZE="1" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular">
|
309
|
-
<div class="searchResults"><a class="searchResults" href="/WebObjects/MZStoreServices.woa/wa/itmsSearchDisplayUrl?desc=The+Postal+Service+-+Give+Up&WOURLEncoding=ISO8859_1&lang=1&url=http%3A%2F%2Fphobos.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewVideo%3Fid%3D118712451%26s%3D143441">
|
310
|
-
<div class="sr_goButton">
|
311
|
-
<IMG SRC="/images/linkmaker/arrow_999999_r.gif" ALT="" WIDTH="12" HEIGHT="12" BORDER="0"/>
|
312
|
-
</div>
|
313
|
-
<span class="searchResults">Give Up</span>
|
314
|
-
|
315
|
-
</a></div>
|
316
|
-
</FONT></TD>
|
317
|
-
|
318
|
-
<TD class="searchResults" WIDTH="211" HEIGHT="20"><FONT SIZE="1" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular">
|
319
|
-
<div class="searchResults">
|
320
|
-
<a class="searchResults" href="/WebObjects/MZStoreServices.woa/wa/itmsSearchDisplayUrl?desc=The+Postal+Service&WOURLEncoding=ISO8859_1&lang=1&url=http%3A%2F%2Fphobos.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewArtist%3Fid%3D2522312">
|
321
|
-
<div class="sr_goButton">
|
322
|
-
<IMG SRC="/images/linkmaker/arrow_999999_r.gif" ALT="" WIDTH="12" HEIGHT="12" BORDER="0"/>
|
323
|
-
</div>
|
324
|
-
|
325
|
-
<span class="searchResults">The Postal Service</span>
|
326
|
-
</a>
|
327
|
-
|
328
|
-
|
329
|
-
</div>
|
330
|
-
</FONT></TD>
|
331
|
-
|
332
|
-
</tr><tr height="20" bgColor="#edf3fe">
|
333
|
-
|
334
|
-
<TD class="searchResults" WIDTH="233" HEIGHT="20"><FONT SIZE="1" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular">
|
335
|
-
<div class="searchResults"><a class="searchResults" href="/WebObjects/MZStoreServices.woa/wa/itmsSearchDisplayUrl?desc=The+Postal+Service+-+Such+Great+Heights+-+EP+-+Such+Great+Heights&WOURLEncoding=ISO8859_1&lang=1&url=http%3A%2F%2Fphobos.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewAlbum%3Fi%3D20922894%26id%3D20922902%26s%3D143441">
|
336
|
-
|
337
|
-
<div class="sr_goButton">
|
338
|
-
|
339
|
-
<IMG SRC="/images/linkmaker/arrow_999999_r.gif" ALT="" WIDTH="12" HEIGHT="12" BORDER="0"/>
|
340
|
-
</div>
|
341
|
-
<span class="searchResults">Such Great Heights</span>
|
342
|
-
</a></div>
|
343
|
-
</FONT></TD>
|
344
|
-
|
345
|
-
<TD class="searchResults" WIDTH="232" HEIGHT="20"><FONT SIZE="1" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular">
|
346
|
-
<div class="searchResults"><a class="searchResults" href="/WebObjects/MZStoreServices.woa/wa/itmsSearchDisplayUrl?desc=The+Postal+Service+-+Such+Great+Heights+-+EP&WOURLEncoding=ISO8859_1&lang=1&url=http%3A%2F%2Fphobos.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewAlbum%3Fi%3D20922894%26id%3D20922902%26s%3D143441">
|
347
|
-
|
348
|
-
<div class="sr_goButton">
|
349
|
-
<IMG SRC="/images/linkmaker/arrow_999999_r.gif" ALT="" WIDTH="12" HEIGHT="12" BORDER="0"/>
|
350
|
-
</div>
|
351
|
-
<span class="searchResults">Such Great Heights - EP</span>
|
352
|
-
</a></div>
|
353
|
-
</FONT></TD>
|
354
|
-
|
355
|
-
<TD class="searchResults" WIDTH="211" HEIGHT="20"><FONT SIZE="1" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular">
|
356
|
-
<div class="searchResults">
|
357
|
-
|
358
|
-
<a class="searchResults" href="/WebObjects/MZStoreServices.woa/wa/itmsSearchDisplayUrl?desc=The+Postal+Service&WOURLEncoding=ISO8859_1&lang=1&url=http%3A%2F%2Fphobos.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewArtist%3Fid%3D2522312">
|
359
|
-
<div class="sr_goButton">
|
360
|
-
<IMG SRC="/images/linkmaker/arrow_999999_r.gif" ALT="" WIDTH="12" HEIGHT="12" BORDER="0"/>
|
361
|
-
</div>
|
362
|
-
<span class="searchResults">The Postal Service</span>
|
363
|
-
</a>
|
364
|
-
|
365
|
-
|
366
|
-
</div>
|
367
|
-
</FONT></TD>
|
368
|
-
|
369
|
-
</tr><tr height="20" bgColor="#ffffff">
|
370
|
-
|
371
|
-
<TD class="searchResults" WIDTH="233" HEIGHT="20"><FONT SIZE="1" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular">
|
372
|
-
<div class="searchResults"><a class="searchResults" href="/WebObjects/MZStoreServices.woa/wa/itmsSearchDisplayUrl?desc=The+Postal+Service+-+Such+Great+Heights+-+EP+-+There%27s+Never+Enough+Time&WOURLEncoding=ISO8859_1&lang=1&url=http%3A%2F%2Fphobos.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewAlbum%3Fi%3D20922896%26id%3D20922902%26s%3D143441">
|
373
|
-
<div class="sr_goButton">
|
374
|
-
|
375
|
-
<IMG SRC="/images/linkmaker/arrow_999999_r.gif" ALT="" WIDTH="12" HEIGHT="12" BORDER="0"/>
|
376
|
-
</div>
|
377
|
-
<span class="searchResults">There's Never Enough Time</span>
|
378
|
-
|
379
|
-
</a></div>
|
380
|
-
</FONT></TD>
|
381
|
-
|
382
|
-
<TD class="searchResults" WIDTH="232" HEIGHT="20"><FONT SIZE="1" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular">
|
383
|
-
<div class="searchResults"><a class="searchResults" href="/WebObjects/MZStoreServices.woa/wa/itmsSearchDisplayUrl?desc=The+Postal+Service+-+Such+Great+Heights+-+EP&WOURLEncoding=ISO8859_1&lang=1&url=http%3A%2F%2Fphobos.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewAlbum%3Fi%3D20922896%26id%3D20922902%26s%3D143441">
|
384
|
-
<div class="sr_goButton">
|
385
|
-
<IMG SRC="/images/linkmaker/arrow_999999_r.gif" ALT="" WIDTH="12" HEIGHT="12" BORDER="0"/>
|
386
|
-
</div>
|
387
|
-
<span class="searchResults">Such Great Heights - EP</span>
|
388
|
-
|
389
|
-
</a></div>
|
390
|
-
</FONT></TD>
|
391
|
-
|
392
|
-
<TD class="searchResults" WIDTH="211" HEIGHT="20"><FONT SIZE="1" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular">
|
393
|
-
<div class="searchResults">
|
394
|
-
<a class="searchResults" href="/WebObjects/MZStoreServices.woa/wa/itmsSearchDisplayUrl?desc=The+Postal+Service&WOURLEncoding=ISO8859_1&lang=1&url=http%3A%2F%2Fphobos.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewArtist%3Fid%3D2522312">
|
395
|
-
<div class="sr_goButton">
|
396
|
-
<IMG SRC="/images/linkmaker/arrow_999999_r.gif" ALT="" WIDTH="12" HEIGHT="12" BORDER="0"/>
|
397
|
-
</div>
|
398
|
-
|
399
|
-
<span class="searchResults">The Postal Service</span>
|
400
|
-
</a>
|
401
|
-
|
402
|
-
|
403
|
-
</div>
|
404
|
-
</FONT></TD>
|
405
|
-
|
406
|
-
</tr><tr height="20" bgColor="#edf3fe">
|
407
|
-
|
408
|
-
<TD class="searchResults" WIDTH="233" HEIGHT="20"><FONT SIZE="1" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular">
|
409
|
-
<div class="searchResults"><a class="searchResults" href="/WebObjects/MZStoreServices.woa/wa/itmsSearchDisplayUrl?desc=The+Postal+Service+-+The+District+Sleeps+Alone+Tonight+-+EP+-+Such+Great+Heights&WOURLEncoding=ISO8859_1&lang=1&url=http%3A%2F%2Fphobos.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewAlbum%3Fi%3D20919979%26id%3D20920002%26s%3D143441">
|
410
|
-
|
411
|
-
<div class="sr_goButton">
|
412
|
-
|
413
|
-
<IMG SRC="/images/linkmaker/arrow_999999_r.gif" ALT="" WIDTH="12" HEIGHT="12" BORDER="0"/>
|
414
|
-
</div>
|
415
|
-
<span class="searchResults">Such Great Heights</span>
|
416
|
-
</a></div>
|
417
|
-
</FONT></TD>
|
418
|
-
|
419
|
-
<TD class="searchResults" WIDTH="232" HEIGHT="20"><FONT SIZE="1" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular">
|
420
|
-
<div class="searchResults"><a class="searchResults" href="/WebObjects/MZStoreServices.woa/wa/itmsSearchDisplayUrl?desc=The+Postal+Service+-+The+District+Sleeps+Alone+Tonight+-+EP&WOURLEncoding=ISO8859_1&lang=1&url=http%3A%2F%2Fphobos.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewAlbum%3Fi%3D20919979%26id%3D20920002%26s%3D143441">
|
421
|
-
|
422
|
-
<div class="sr_goButton">
|
423
|
-
<IMG SRC="/images/linkmaker/arrow_999999_r.gif" ALT="" WIDTH="12" HEIGHT="12" BORDER="0"/>
|
424
|
-
</div>
|
425
|
-
<span class="searchResults">The District Sleeps Alone Tonight - EP</span>
|
426
|
-
</a></div>
|
427
|
-
</FONT></TD>
|
428
|
-
|
429
|
-
<TD class="searchResults" WIDTH="211" HEIGHT="20"><FONT SIZE="1" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular">
|
430
|
-
<div class="searchResults">
|
431
|
-
|
432
|
-
<a class="searchResults" href="/WebObjects/MZStoreServices.woa/wa/itmsSearchDisplayUrl?desc=The+Postal+Service&WOURLEncoding=ISO8859_1&lang=1&url=http%3A%2F%2Fphobos.apple.com%2FWebObjects%2FMZStore.woa%2Fwa%2FviewArtist%3Fid%3D2522312">
|
433
|
-
<div class="sr_goButton">
|
434
|
-
<IMG SRC="/images/linkmaker/arrow_999999_r.gif" ALT="" WIDTH="12" HEIGHT="12" BORDER="0"/>
|
435
|
-
</div>
|
436
|
-
<span class="searchResults">The Postal Service</span>
|
437
|
-
</a>
|
438
|
-
|
439
|
-
|
440
|
-
</div>
|
441
|
-
</FONT></TD>
|
442
|
-
|
443
|
-
</tr>
|
444
|
-
|
445
|
-
<TR HEIGHT="20"/>
|
446
|
-
|
447
|
-
</TABLE></td></tr></table>
|
448
|
-
</TD>
|
449
|
-
</TR>
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
<TR HEIGHT="28">
|
454
|
-
<TD ALIGN="center" VALIGN="middle" WIDTH="721" HEIGHT="28" BACKGROUND="/images/linkmaker/box_bottom.gif">
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
<TABLE WIDTH="180" BORDER="0" CELLSPACING="0" CELLPADDING="2"><TR>
|
459
|
-
<TD></TD>
|
460
|
-
<TD ALIGN="center"><FONT SIZE="1" FACE="Helvetica,Arial,Geneva,Swiss,SunSans-Regular"><B>
|
461
|
-
6 Hits
|
462
|
-
</B></FONT></TD>
|
463
|
-
<TD></TD>
|
464
|
-
</TR></TABLE>
|
465
|
-
|
466
|
-
|
467
|
-
</TD>
|
468
|
-
|
469
|
-
</TR>
|
470
|
-
</TABLE>
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
</form>
|
476
|
-
<P></P>
|
477
|
-
</TD></TR>
|
478
|
-
<TR><TD ALIGN=CENTER>
|
479
|
-
The iTunes Link Maker is provided by Apple as an accommodation only.<br>Apple assumes no responsibility for your use of any links, and makes no representation regarding their accuracy or performance. <br>Nothing shall be construed as permission or a grant by Apple in relation to the use of any artist, track or album name,<br> and you agree that any use by you, or result from your use, shall be solely your responsibility.<br>Apple reserves the right to de-activate links at its sole discretion.
|
480
|
-
<br/><br/>
|
481
|
-
|
482
|
-
|
483
|
-
<!-- <a href="MHITMSLinkGeneratorWrapper.FaqUrl">FAQ</a> | -->
|
484
|
-
<a href="mailto:musicstore@apple.com">Contact Us</a>
|
485
|
-
<BR>Copyright © 2008 Apple Inc. All rights reserved.</td></tr>
|
486
|
-
<img width="1" height="1" src="http://metrics.apple.com/b/ss/applesuperglobal/1/G.6--NS?pageName=Generator-US-term%3Apostal+service+such+great+heights&pccr=true&h5=appleitmsna%2Cappleitmsus&g=http%3A%2F%2Fax.phobos.apple.com.edgesuite.net%2FWebObjects%2FMZStoreServices.woa%2Fwa%2FitmsSearch%3FWOURLEncoding%3DISO8859_1%26lang%3D1%26output%3Dlm%26country%3DUS%26term%3Dpostal%2Bservice%2Bsuch%2Bgreat%2Bheights%26media%3Dmusic">
|
487
|
-
|
488
|
-
</BODY>
|
489
|
-
</HTML>
|
490
|
-
|