metal-archives 0.1.8 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,159 +2,80 @@
2
2
  require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
3
3
 
4
4
  describe "MetalArchives" do
5
- describe "with an agent" do
6
- describe "that searches by year" do
7
- before do
8
- search_results_html = File.open(File.dirname(__FILE__) + '/html/search_results.html')
9
- @search_results = Nokogiri::HTML(search_results_html)
10
- @mechanize = stub('Mechanize')
11
- Mechanize.stub!(:new).and_return(@mechanize)
12
- end
13
-
14
- it "should find the total number of albums" do
15
- @mechanize.stub!(:get).and_return(@search_results)
16
- agent = MetalArchives::Agent.new(2011)
17
-
18
- agent.total_albums.should == 757
19
- end
20
-
21
- it "should get the results page" do
22
- @mechanize.stub!(:get).and_return(@search_results)
23
- agent = MetalArchives::Agent.new(2011)
24
-
25
- agent.search_by_year.should == @search_results
26
- end
27
-
28
- context "with a results page" do
29
- it "should find the paginated result urls" do
30
- agent = MetalArchives::Agent.new(2011)
31
- agent.stub!(:search_by_year).and_return(@search_results)
32
-
33
- urls = (1..16).collect do |i|
34
- "/advanced.php?release_year=2011&p=#{i}"
35
- end
36
- agent.paginated_result_urls.should == urls
37
- end
38
-
39
- it "should find the album urls" do
40
- @mechanize.stub!(:get).and_return(@search_results)
41
- agent = MetalArchives::Agent.new(2011)
42
- agent.stub!(:search_by_year).and_return(@search_results)
5
+ before do
6
+ json = JSON.parse(File.read(File.dirname(__FILE__) + '/json/search_results.json'))
7
+ @results = JSON.parse(json.to_json)
8
+ @agent = MetalArchives::Agent.new
9
+ end
43
10
 
44
- urls = [
45
- "release.php?id=296061", "release.php?id=295756", "release.php?id=294429", "release.php?id=295451", "release.php?id=295197",
46
- "release.php?id=289824", "release.php?id=295519", "release.php?id=295457", "release.php?id=288298", "release.php?id=296048",
47
- "release.php?id=290116", "release.php?id=295059", "release.php?id=291931", "release.php?id=296081", "release.php?id=295301",
48
- "release.php?id=294242", "release.php?id=294032", "release.php?id=295436", "release.php?id=295797", "release.php?id=294481",
49
- "release.php?id=290911", "release.php?id=295988", "release.php?id=295717", "release.php?id=293534", "release.php?id=295111",
50
- "release.php?id=290063", "release.php?id=294761", "release.php?id=293839", "release.php?id=295202", "release.php?id=294083",
51
- "release.php?id=294702", "release.php?id=265276", "release.php?id=293421", "release.php?id=295295", "release.php?id=293910",
52
- "release.php?id=295567", "release.php?id=296037", "release.php?id=296064", "release.php?id=288749", "release.php?id=290749",
53
- "release.php?id=295806", "release.php?id=294017", "release.php?id=296098", "release.php?id=294092", "release.php?id=295551",
54
- "release.php?id=290740", "release.php?id=295410", "release.php?id=293189", "release.php?id=296140", "release.php?id=291295"
55
- ]
56
- agent.album_urls(agent.paginated_result_urls.first).should == urls
57
- end
58
- end
11
+ describe "#total_albums" do
12
+ it "shows the total amount of albums" do
13
+ @agent.stub(:json_results).and_return(@results)
14
+ @agent.total_albums.should == 2939
59
15
  end
16
+ end
60
17
 
61
- describe "with an album page" do
62
- context "when a page has no content" do
63
- it "should find the band information" do
64
- @mechanize = stub('Mechanize')
65
- Mechanize.stub!(:new).and_return(@mechanize)
66
- @mechanize.stub!(:get).and_return('page not found')
67
- agent = MetalArchives::Agent.new(2011)
68
- album_url = "release.php?id=000001"
69
-
70
- agent.album_from_url(album_url).should == {}
71
- end
72
- end
18
+ describe "#paginated_albums" do
19
+ it "finds all the albums" do
20
+ @agent.stub(:json_results).and_return(@results)
21
+ @agent.paginated_albums.first[0].should == ["<a href=\"http://www.metal-archives.com/bands/...Do_Fundo..._Abismo/3540326997\" title=\"...Do Fundo... Abismo (BR)\">...Do Fundo... Abismo</a>", "<a href=\"http://www.metal-archives.com/albums/...Do_Fundo..._Abismo/Da_Escurid%C3%A3o/304910\">Da Escuridão</a>", "Demo", "April 2011 <!-- 2011-04-00 -->"]
22
+ @agent.paginated_albums.last[99].should == ["<a href=\"http://www.metal-archives.com/bands/Alcoholism/3540326304\" title=\"Alcoholism (DE)\">Alcoholism</a>", "<a href=\"http://www.metal-archives.com/albums/Alcoholism/Abh%C3%A4ngigkeit/303798\">Abhängigkeit</a>", "Demo", "April 2011 <!-- 2011-04-00 -->"]
23
+ end
24
+ end
73
25
 
74
- context "with only a release year" do
75
- it "should find the band information" do
76
- search_results_html = File.open(File.dirname(__FILE__) + '/html/album_result.html')
77
- @search_results = Nokogiri::HTML(search_results_html)
78
- @mechanize = stub('Mechanize')
79
- Mechanize.stub!(:new).and_return(@mechanize)
80
- @mechanize.stub!(:get).and_return(@search_results)
81
- agent = MetalArchives::Agent.new(2011)
82
- album_url = "release.php?id=000001"
26
+ describe "#band_url" do
27
+ it "shows the band's url" do
28
+ album = ["<a href=", "http://www.metal-archives.com/bands/Alcoholism/3540326304", " title=", "Alcoholism (DE)", ">Alcoholism</a>"]
29
+ @agent.stub(:band_array).and_return(album)
30
+ @agent.band_url(album).should == 'http://www.metal-archives.com/bands/Alcoholism/3540326304'
31
+ end
32
+ end
83
33
 
84
- agent.album_from_url(album_url).should == {
85
- :album => 'Fn-2+Fn-1=Fn',
86
- :band => 'A Tree',
87
- :label => 'Nazgûl Distro & Prod.',
88
- :release_date => 'December 31st, 2011',
89
- :release_type => 'Demo',
90
- :url => 'release.php?id=000001'
91
- }
92
- end
93
- end
34
+ describe "#band_name" do
35
+ it "shows the band's name" do
36
+ album = ["<a href=", "http://www.metal-archives.com/bands/Alcoholism/3540326304", " title=", "Alcoholism (DE)", ">Alcoholism</a>"]
37
+ @agent.stub(:band_array).and_return(album)
38
+ @agent.band_name(album).should == 'Alcoholism'
39
+ end
40
+ end
94
41
 
95
- context "with only a release month and year" do
96
- it "should find the band information" do
97
- search_results_html = File.open(File.dirname(__FILE__) + '/html/album_result3.html')
98
- @search_results = Nokogiri::HTML(search_results_html)
99
- @mechanize = stub('Mechanize')
100
- Mechanize.stub!(:new).and_return(@mechanize)
101
- @mechanize.stub!(:get).and_return(@search_results)
102
- agent = MetalArchives::Agent.new(2011)
103
- album_url = "release.php?id=000001"
42
+ describe "#country" do
43
+ it "shows the band's country" do
44
+ album = ["<a href=", "http://www.metal-archives.com/bands/Alcoholism/3540326304", " title=", "Alcoholism (DE)", ">Alcoholism</a>"]
45
+ @agent.stub(:band_array).and_return(album)
46
+ @agent.country(album).should == 'DE'
47
+ end
48
+ end
104
49
 
105
- agent.album_from_url(album_url).should == {
106
- :album => 'Flesh Torn in Twilight',
107
- :band => 'Acephalix',
108
- :label => 'Deific Mourning',
109
- :release_date => 'April 30th, 2011',
110
- :release_type => 'Demo',
111
- :url => 'release.php?id=000001'
112
- }
113
- end
114
- end
50
+ describe "#album_url" do
51
+ it "shows the album's url" do
52
+ album = ["<a href=\"http://www.metal-archives.com/bands/Alcoholism/3540326304\" title=\"Alcoholism (DE)\">Alcoholism</a>", "<a href=\"http://www.metal-archives.com/albums/Alcoholism/Abh%C3%A4ngigkeit/303798\">Abhängigkeit</a>", "Demo", "April 2011 <!-- 2011-04-00 -->"]
53
+ @agent.stub(:album).and_return(album)
54
+ @agent.album_url(album).should == 'http://www.metal-archives.com/albums/Alcoholism/Abh%C3%A4ngigkeit/303798'
55
+ end
56
+ end
115
57
 
116
- context "with a release month, day, and year" do
117
- it "should find the band information" do
118
- search_results_html = File.open(File.dirname(__FILE__) + '/html/album_result2.html')
119
- @search_results = Nokogiri::HTML(search_results_html)
120
- @mechanize = stub('Mechanize')
121
- Mechanize.stub!(:new).and_return(@mechanize)
122
- @mechanize.stub!(:get).and_return(@search_results)
123
- agent = MetalArchives::Agent.new(2011)
124
- album_url = "release.php?id=000001"
58
+ describe "#album_name" do
59
+ it "shows the album's name" do
60
+ album = ["<a href=\"http://www.metal-archives.com/bands/Alcoholism/3540326304\" title=\"Alcoholism (DE)\">Alcoholism</a>", "<a href=\"http://www.metal-archives.com/albums/Alcoholism/Abh%C3%A4ngigkeit/303798\">Abhängigkeit</a>", "Demo", "April 2011 <!-- 2011-04-00 -->"]
61
+ @agent.stub(:band_array).and_return(album)
62
+ @agent.album_name(album).should == 'Abhängigkeit'
63
+ end
64
+ end
125
65
 
126
- agent.album_from_url(album_url).should == {
127
- :album => 'The Mirror of Deliverance',
128
- :band => 'A Dream of Poe',
129
- :label => 'ARX Productions',
130
- :release_date => 'February 25th, 2011',
131
- :release_type => 'Full-length',
132
- :url => 'release.php?id=000001'
133
- }
134
- end
135
- end
66
+ describe "#release_type" do
67
+ it "shows the release type" do
68
+ album = ["<a href=\"http://www.metal-archives.com/bands/Alcoholism/3540326304\" title=\"Alcoholism (DE)\">Alcoholism</a>", "<a href=\"http://www.metal-archives.com/albums/Alcoholism/Abh%C3%A4ngigkeit/303798\">Abhängigkeit</a>", "Demo", "April 2011 <!-- 2011-04-00 -->"]
69
+ @agent.stub(:band_array).and_return(album)
70
+ @agent.release_type(album).should == 'Demo'
136
71
  end
137
72
  end
138
73
 
139
- it "ordinalizes a number" do
140
- numbers = {
141
- 1 => '1st',
142
- 2 => '2nd',
143
- 3 => '3rd',
144
- 4 => '4th',
145
- 5 => '5th',
146
- 6 => '6th',
147
- 7 => '7th',
148
- 8 => '8th',
149
- 9 => '9th',
150
- 10 => '10th',
151
- 32 => '32nd',
152
- 43 => '43rd',
153
- 64 => '64th',
154
- 100 => '100th'
155
- }
156
- numbers.each do |k, v|
157
- MetalArchives.ordinalize(k).should == v
74
+ describe "#release_date" do
75
+ it "shows the release date" do
76
+ album = ["<a href=\"http://www.metal-archives.com/bands/Alcoholism/3540326304\" title=\"Alcoholism (DE)\">Alcoholism</a>", "<a href=\"http://www.metal-archives.com/albums/Alcoholism/Abh%C3%A4ngigkeit/303798\">Abhängigkeit</a>", "Demo", "April 2011 <!-- 2011-04-00 -->"]
77
+ @agent.stub(:band_array).and_return(album)
78
+ @agent.release_date(album).should == Date.parse('2011-04-30')
158
79
  end
159
80
  end
160
81
  end
metadata CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 0
7
- - 1
8
- - 8
9
- version: 0.1.8
7
+ - 2
8
+ - 0
9
+ version: 0.2.0
10
10
  platform: ruby
11
11
  authors:
12
12
  - Danny Olson
@@ -14,11 +14,11 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2011-03-30 00:00:00 -07:00
17
+ date: 2011-06-01 00:00:00 -07:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
- name: mechanize
21
+ name: json
22
22
  requirement: &id001 !ruby/object:Gem::Requirement
23
23
  none: false
24
24
  requirements:
@@ -75,22 +75,9 @@ dependencies:
75
75
  type: :development
76
76
  prerelease: false
77
77
  version_requirements: *id004
78
- - !ruby/object:Gem::Dependency
79
- name: rcov
80
- requirement: &id005 !ruby/object:Gem::Requirement
81
- none: false
82
- requirements:
83
- - - ">="
84
- - !ruby/object:Gem::Version
85
- segments:
86
- - 0
87
- version: "0"
88
- type: :development
89
- prerelease: false
90
- version_requirements: *id005
91
78
  - !ruby/object:Gem::Dependency
92
79
  name: mechanize
93
- requirement: &id006 !ruby/object:Gem::Requirement
80
+ requirement: &id005 !ruby/object:Gem::Requirement
94
81
  none: false
95
82
  requirements:
96
83
  - - ~>
@@ -102,7 +89,7 @@ dependencies:
102
89
  version: 1.0.0
103
90
  type: :runtime
104
91
  prerelease: false
105
- version_requirements: *id006
92
+ version_requirements: *id005
106
93
  description: metal-archives provides an interface to search for album releases for a specific year, defaulting to the current one if none is provided.
107
94
  email: dbolson@gmail.com
108
95
  executables: []
@@ -123,10 +110,7 @@ files:
123
110
  - VERSION
124
111
  - lib/metal-archives.rb
125
112
  - metal-archives.gemspec
126
- - spec/html/album_result.html
127
- - spec/html/album_result2.html
128
- - spec/html/album_result3.html
129
- - spec/html/search_results.html
113
+ - spec/json/search_results.json
130
114
  - spec/metal-archives_spec.rb
131
115
  - spec/spec_helper.rb
132
116
  has_rdoc: true
@@ -143,7 +127,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
143
127
  requirements:
144
128
  - - ">="
145
129
  - !ruby/object:Gem::Version
146
- hash: -2267341529679193989
130
+ hash: 2717275916367877092
147
131
  segments:
148
132
  - 0
149
133
  version: "0"
@@ -1,123 +0,0 @@
1
- <html>
2
- <head>
3
- <title>Encyclopaedia Metallum - A Tree - Fn-2+Fn-1=Fn</title>
4
- <meta name="keywords" content="A Tree Fn-2+Fn-1=Fn Uruk-Hai - Vocals and all instruments ({\link Nefertum}, {\link Omnia Malis Est}, {\link Infernal Angels}, Tavern-Hell) Depressive Black Metal/Rock Italy Nazg&ucirc;l Distro &amp; Prod. album cover information discography lyrics links reviews">
5
- <meta name="description" content="A Tree - Fn-2+Fn-1=Fn - songs/tracklisting, lyrics, details, reviews">
6
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
7
- <link rel="stylesheet" type="text/css" href="/css/basic.css" />
8
- <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
9
- <script language="Javascript" type="text/Javascript">
10
- <!--
11
- var flags = new Array();
12
- function toggle(id) {
13
- if (flags[id] == undefined) {
14
- flags[id] = false;
15
- }
16
- var list = document.getElementById(id);
17
- if (flags[id]) {
18
- list.style.display = 'none';
19
- } else {
20
- list.style.display = 'block';
21
- }
22
- flags[id] = !flags[id];
23
- return false;
24
- }
25
-
26
- function openLyrics(x)
27
- {
28
- var popup;
29
- popup = window.open("viewlyrics.php?id="+x, "Lyrics", "width=500,height=500,resizable,scrollbars,top=50");
30
- }
31
-
32
- // -->
33
- </script>
34
-
35
- <!--[if IE]>
36
- <script type="text/javascript" src="/js/utils.js"></script>
37
- <script type="text/javascript">
38
- function resizeCover() {
39
- resizeImage("coverArt", 250, 250);
40
- }
41
-
42
- window.onload = resizeCover;
43
- </script>
44
- <![endif]-->
45
- </head>
46
-
47
- <body>
48
- <center>
49
- <table border='3' bordercolor='#551521' cellspacing='3' cellpadding='4'>
50
- <tr><td colspan='2' class='tt'>A Tree - Fn-2+Fn-1=Fn </td></tr></table><br>
51
- <table>
52
- <tr> <td valign="top">
53
- <b>Demo</b>, Nazgûl Distro & Prod.<br>
54
-
55
- <b>2011</b> </td>
56
- <td valign="top">
57
- <table cellpadding="4">
58
- <tr>
59
- <td valign="top">[<a href='newreview.php?id=295756'>add/edit review</a>] </td>
60
- <td valign="top">
61
-
62
- </td>
63
- </tr>
64
- </table>
65
- </td>
66
- </tr>
67
- <tr><td colspan="2" class="trt" height="2"></td></tr>
68
- <tr><td colspan="2" height="6"></td></tr>
69
- <tr>
70
- <td valign="top"><table cellpadding="2">
71
- <tr><td>1.</td><td>Evolution Begins</td><td align='center'></td><td align='center' nowrap='true'></tr><tr><td>2.</td><td>Among Trees</td><td align='center'></td><td align='center' nowrap='true'></tr><tr><td>3.</td><td>The Deal Between Nature and Myself</td><td align='center'></td><td align='center' nowrap='true'></tr><tr><td>4.</td><td>Math(er) Nature</td><td align='center'></td><td align='center' nowrap='true'></tr><tr><td>5.</td><td>Empty Words as Empty we Are</td><td align='center'></td><td align='center' nowrap='true'></tr><tr><td>6.</td><td>Rainroom (Katatonia Cover)</td><td align='center'></td><td align='center' nowrap='true'></tr> </table></td>
72
-
73
- <td valign="top">
74
- <a href="http://www.metal-archives.com/images/2/9/5/7/295756.jpg">
75
- <img border='0' src='http://www.metal-archives.com/images/2/9/5/7/295756.jpg' alt="Fn-2+Fn-1=Fn cover (Click to see larger picture)" title="Fn-2+Fn-1=Fn cover (Click to see larger picture)" id="coverArt" class="coverArt">
76
- </a>
77
- <!--[if IE]><script type="text/javascript">document.getElementById("coverArt").style.visibility = "hidden";</script><![endif]-->
78
- </td>
79
- </tr>
80
- <tr><td colspan="2" class="trt" height="2"></td></tr>
81
- <tr><td colspan="2">Buy from...</td></tr>
82
-
83
- <tr><td colspan="2"><ul style="padding-bottom:0px; margin-bottom:0px;">
84
- <li>
85
- <a target="_blank" href="/redirect.php?pid=29&rid=295756">search on eBay</a>&nbsp;&nbsp; more... <a href="more" onclick="return toggle('subEbay');">>></a><br />
86
- <ul id="subEbay" style="display: none; margin-top: 0px; margin-bottom: 0px;">
87
- <li><a target="_blank" href="/redirect.php?pid=39&rid=295756">search on Half.com</a></li>
88
- <li><a target="_blank" href="/redirect.php?pid=23&rid=295756">eBay Canada</a></li>
89
-
90
- <li><a target="_blank" href="/redirect.php?pid=24&rid=295756">eBay France</a></li>
91
- <li><a target="_blank" href="/redirect.php?pid=25&rid=295756">eBay UK</a></li>
92
- <li><a target="_blank" href="/redirect.php?pid=37&rid=295756">eBay Spain</a></li>
93
- <li><a target="_blank" href="/redirect.php?pid=35&rid=295756">eBay Belgium</a></li>
94
- <li><a target="_blank" href="/redirect.php?pid=26&rid=295756">eBay Netherlands</a></li>
95
- <li><a target="_blank" href="/redirect.php?pid=27&rid=295756">eBay Italy</a></li>
96
-
97
- <li><a target="_blank" href="/redirect.php?pid=28&rid=295756">eBay Australia</a></li>
98
- </ul>
99
- </li>
100
- <li><a target="_blank" href="/redirect.php?pid=7&rid=295756">search on Gemm.com</a></li>
101
- </ul>
102
- </td></tr>
103
- </table>
104
- <br><br>
105
- <a href="band.php?id=3540321251">Back to A Tree's page</a>
106
-
107
- </center>
108
- <!--
109
- script type="text/javascript">
110
- var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
111
- document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
112
- </script>
113
- -->
114
- <script type="text/javascript" src="http://www.google-analytics.com/ga.js"></script>
115
- <script type="text/javascript">
116
- try {
117
- var pageTracker = _gat._getTracker("UA-4046749-1");
118
- pageTracker._initData();
119
- pageTracker._trackPageview();
120
- }
121
- catch(e) {}
122
- </script></body>
123
- </html>
@@ -1,146 +0,0 @@
1
- <html>
2
- <head>
3
- <title>Encyclopaedia Metallum - A Dream of Poe - The Mirror of Deliverance</title>
4
- <meta name="keywords" content="A Dream of Poe The Mirror of Deliverance Paulo Pacheco - Vocals
5
- Bruno &quot;Spell&quot; Santos - All Instruments ({\link In Peccatum})
6
-
7
-
8
- Live/Session Musicians:
9
- Ant&oacute;nio Neves - Guitar ({\link In Peccatum})
10
- Andr&eacute; Gouveia - Bass ({\link In Peccatum})
11
- Stephan Kobi&aacute;kin - Keyboards (Summoned Hell)
12
- David Melo - Drums (Neurolag) Gothic/Doom Metal Edgar Allan Poe literature Portugal ARX Productions album cover information discography lyrics links reviews">
13
- <meta name="description" content="A Dream of Poe - The Mirror of Deliverance - songs/tracklisting, lyrics, details, reviews">
14
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
15
- <link rel="stylesheet" type="text/css" href="/css/basic.css" />
16
- <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
17
- <script language="Javascript" type="text/Javascript">
18
- <!--
19
- var flags = new Array();
20
- function toggle(id) {
21
- if (flags[id] == undefined) {
22
- flags[id] = false;
23
- }
24
- var list = document.getElementById(id);
25
- if (flags[id]) {
26
- list.style.display = 'none';
27
- } else {
28
- list.style.display = 'block';
29
- }
30
- flags[id] = !flags[id];
31
- return false;
32
- }
33
-
34
- function openLyrics(x)
35
- {
36
- var popup;
37
- popup = window.open("viewlyrics.php?id="+x, "Lyrics", "width=500,height=500,resizable,scrollbars,top=50");
38
- }
39
-
40
- // -->
41
- </script>
42
-
43
- <!--[if IE]>
44
- <script type="text/javascript" src="/js/utils.js"></script>
45
- <script type="text/javascript">
46
- function resizeCover() {
47
- resizeImage("coverArt", 250, 250);
48
- }
49
-
50
- window.onload = resizeCover;
51
- </script>
52
- <![endif]-->
53
- </head>
54
-
55
- <body>
56
- <center>
57
- <table border='3' bordercolor='#551521' cellspacing='3' cellpadding='4'>
58
- <tr><td colspan='2' class='tt'>A Dream of Poe - The Mirror of Deliverance </td></tr></table><br>
59
- <table>
60
- <tr> <td valign="top">
61
- <b>Full-length</b>, ARX Productions<br>
62
-
63
- February 25th, <b>2011</b> </td>
64
- <td valign="top">
65
- <table cellpadding="4">
66
- <tr>
67
- <td valign="top">[<a href='newreview.php?id=296061'>add/edit review</a>] </td>
68
- <td valign="top">
69
-
70
- </td>
71
- </tr>
72
- </table>
73
- </td>
74
- </tr>
75
- <tr><td colspan="2" class="trt" height="2"></td></tr>
76
- <tr><td colspan="2" height="6"></td></tr>
77
- <tr>
78
- <td colspan="2">
79
- <i>All instruments were recorded by Miguel Santos, the vocals were recorded by João<br />
80
-
81
- Melo and lyrics written by Paulo Pacheco.<br />
82
- <br />
83
- <u>Guest musicians:</u><br />
84
- Nelson Félix - solos<br />
85
- Paulo Bettencourt - solos <br />
86
- António Neves - additional vocals<br />
87
- Paulo Pacheco - additional vocals<br />
88
- <br />
89
- This album was recorded between January and December 2010.</i> </td>
90
-
91
- </tr>
92
- <tr>
93
- <td valign="top"><table cellpadding="2">
94
- <tr><td>1.</td><td>Neophyte</td><td align='center'></td><td align='center' nowrap='true'></tr><tr><td>2.</td><td>Os Vultos</td><td align='center'></td><td align='center' nowrap='true'></tr><tr><td>3.</td><td>Lady of Shalott</td><td align='center'></td><td align='center' nowrap='true'></tr><tr><td>4.</td><td>Liber XLIX</td><td align='center'></td><td align='center' nowrap='true'></tr><tr><td>5.</td><td>The Lost King of the Lyre</td><td align='center'></td><td align='center' nowrap='true'></tr><tr><td>6.</td><td>Chrysopoeia</td><td align='center'></td><td align='center' nowrap='true'></tr> </table></td>
95
-
96
- <td valign="top">
97
- <a href="http://www.metal-archives.com/images/2/9/6/0/296061.jpg">
98
- <img border='0' src='http://www.metal-archives.com/images/2/9/6/0/296061.jpg' alt="The Mirror of Deliverance cover (Click to see larger picture)" title="The Mirror of Deliverance cover (Click to see larger picture)" id="coverArt" class="coverArt">
99
- </a>
100
- <!--[if IE]><script type="text/javascript">document.getElementById("coverArt").style.visibility = "hidden";</script><![endif]-->
101
- </td>
102
- </tr>
103
- <tr><td colspan="2" class="trt" height="2"></td></tr>
104
- <tr><td colspan="2">Buy from...</td></tr>
105
-
106
- <tr><td colspan="2"><ul style="padding-bottom:0px; margin-bottom:0px;">
107
- <li>
108
- <a target="_blank" href="/redirect.php?pid=29&rid=296061">search on eBay</a>&nbsp;&nbsp; more... <a href="more" onclick="return toggle('subEbay');">>></a><br />
109
- <ul id="subEbay" style="display: none; margin-top: 0px; margin-bottom: 0px;">
110
- <li><a target="_blank" href="/redirect.php?pid=39&rid=296061">search on Half.com</a></li>
111
- <li><a target="_blank" href="/redirect.php?pid=23&rid=296061">eBay Canada</a></li>
112
-
113
- <li><a target="_blank" href="/redirect.php?pid=24&rid=296061">eBay France</a></li>
114
- <li><a target="_blank" href="/redirect.php?pid=25&rid=296061">eBay UK</a></li>
115
- <li><a target="_blank" href="/redirect.php?pid=37&rid=296061">eBay Spain</a></li>
116
- <li><a target="_blank" href="/redirect.php?pid=35&rid=296061">eBay Belgium</a></li>
117
- <li><a target="_blank" href="/redirect.php?pid=26&rid=296061">eBay Netherlands</a></li>
118
- <li><a target="_blank" href="/redirect.php?pid=27&rid=296061">eBay Italy</a></li>
119
-
120
- <li><a target="_blank" href="/redirect.php?pid=28&rid=296061">eBay Australia</a></li>
121
- </ul>
122
- </li>
123
- <li><a target="_blank" href="/redirect.php?pid=7&rid=296061">search on Gemm.com</a></li>
124
- </ul>
125
- </td></tr>
126
- </table>
127
- <br><br>
128
- <a href="band.php?id=79756">Back to A Dream of Poe's page</a>
129
-
130
- </center>
131
- <!--
132
- script type="text/javascript">
133
- var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
134
- document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
135
- </script>
136
- -->
137
- <script type="text/javascript" src="http://www.google-analytics.com/ga.js"></script>
138
- <script type="text/javascript">
139
- try {
140
- var pageTracker = _gat._getTracker("UA-4046749-1");
141
- pageTracker._initData();
142
- pageTracker._trackPageview();
143
- }
144
- catch(e) {}
145
- </script></body>
146
- </html>