metal-archives 0.1.8 → 0.2.0
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/Gemfile +1 -2
- data/Gemfile.lock +2 -6
- data/VERSION +1 -1
- data/lib/metal-archives.rb +46 -153
- data/metal-archives.gemspec +6 -12
- data/spec/json/search_results.json +707 -0
- data/spec/metal-archives_spec.rb +62 -141
- metadata +9 -25
- data/spec/html/album_result.html +0 -123
- data/spec/html/album_result2.html +0 -146
- data/spec/html/album_result3.html +0 -121
- data/spec/html/search_results.html +0 -389
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -7,11 +7,8 @@ GEM
|
|
7
7
|
bundler (~> 1.0.0)
|
8
8
|
git (>= 1.2.5)
|
9
9
|
rake
|
10
|
-
|
11
|
-
nokogiri (>= 1.2.1)
|
12
|
-
nokogiri (1.4.4)
|
10
|
+
json (1.5.1)
|
13
11
|
rake (0.8.7)
|
14
|
-
rcov (0.9.9)
|
15
12
|
rspec (2.3.0)
|
16
13
|
rspec-core (~> 2.3.0)
|
17
14
|
rspec-expectations (~> 2.3.0)
|
@@ -27,6 +24,5 @@ PLATFORMS
|
|
27
24
|
DEPENDENCIES
|
28
25
|
bundler (~> 1.0.0)
|
29
26
|
jeweler (~> 1.5.2)
|
30
|
-
|
31
|
-
rcov
|
27
|
+
json
|
32
28
|
rspec (~> 2.3.0)
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.2.0
|
data/lib/metal-archives.rb
CHANGED
@@ -1,186 +1,79 @@
|
|
1
|
-
require '
|
1
|
+
require 'json'
|
2
|
+
require 'net/http'
|
2
3
|
|
3
4
|
module MetalArchives
|
4
|
-
SITE_URL = 'http://metal-archives.com'
|
5
|
-
|
6
5
|
class Agent
|
6
|
+
SITE_URL = 'http://metal-archives.com'
|
7
|
+
NO_BAND_REGEXP = /span.+<\/span>/
|
8
|
+
BAND_NAME_AND_COUNTRY_REGEXP = /(.+)\s{1}\(([a-zA-Z]{2})\)/
|
9
|
+
ALBUM_URL_AND_NAME_REGEXP = /"(.+)">(.+)<\/a>/
|
10
|
+
RELEASE_DATE_REGEXP = /<!--\s(.{10})\s-->/
|
11
|
+
|
7
12
|
# An agent accesses the website and holds the HTML source.
|
8
13
|
def initialize(year=Time.now.year)
|
9
|
-
begin
|
10
|
-
@agent = Mechanize.new
|
11
|
-
rescue Exception => e
|
12
|
-
puts "\nError accessing metal-archives.com on initialization: #{e}"
|
13
|
-
return nil
|
14
|
-
end
|
15
14
|
@year = year
|
15
|
+
@total_results = 0
|
16
16
|
end
|
17
17
|
|
18
|
-
#
|
19
|
-
def
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
return nil
|
25
|
-
end
|
18
|
+
# Find the total results to search through and memoize it.
|
19
|
+
def total_albums
|
20
|
+
return @total_results if @total_results > 0
|
21
|
+
results = json_results("http://www.metal-archives.com/search/ajax-advanced/searching/albums/?&releaseYearFrom=#{@year}&releaseMonthFrom=1&releaseYearTo=#{@year}&releaseMonthTo=12&_=1&sEcho=0&iColumns=4&sColumns=&iDisplayStart=1&iDisplayLength=100&sNames=%2C%2C%2C")
|
22
|
+
@total_results = results['iTotalRecords']
|
23
|
+
@total_results
|
26
24
|
end
|
27
25
|
|
28
26
|
# Finds all the url to the search results pages as they are paginated.
|
29
|
-
def
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
end
|
36
|
-
rescue Exception => e
|
37
|
-
puts "\nError accessing metal-archives.com's paginated result urls: #{e}"
|
38
|
-
ensure
|
39
|
-
return urls
|
27
|
+
def paginated_albums
|
28
|
+
albums = []
|
29
|
+
(total_albums / 100 + 1).times do |i|
|
30
|
+
display_start = i * 100
|
31
|
+
results = json_results("http://www.metal-archives.com/search/ajax-advanced/searching/albums/?&releaseYearFrom=#{@year}&releaseMonthFrom=1&releaseYearTo=#{@year}&releaseMonthTo=12&_=1&sEcho=0&iColumns=4&sColumns=&iDisplayStart=#{display_start}&iDisplayLength=100&sNames=%2C%2C%2C")
|
32
|
+
albums << results['aaData']
|
40
33
|
end
|
34
|
+
albums
|
41
35
|
end
|
42
36
|
|
43
|
-
|
44
|
-
|
45
|
-
urls = []
|
46
|
-
begin
|
47
|
-
page = @agent.get(SITE_URL + url)
|
48
|
-
if page
|
49
|
-
page.encoding = 'iso-8859-1' if !page.nil? && page.encoding != 'iso-8859-1' # needed for foreign characters
|
50
|
-
page.search('body table:nth-child(2n) tr td:nth-child(3n) a').each do |link|
|
51
|
-
urls << link['href']
|
52
|
-
end
|
53
|
-
end
|
54
|
-
rescue Exception => e
|
55
|
-
puts "\nError accessing metal-archives.com's album urls: #{e}"
|
56
|
-
return nil
|
57
|
-
end
|
58
|
-
return urls
|
37
|
+
def band_url(album)
|
38
|
+
band_array(album)[1]
|
59
39
|
end
|
60
40
|
|
61
|
-
|
62
|
-
|
63
|
-
# band name
|
64
|
-
# album's record label
|
65
|
-
# album's release date
|
66
|
-
# album's release type (full-length, demo, split, DVD, etc.)
|
67
|
-
def album_from_url(url)
|
68
|
-
begin
|
69
|
-
page = @agent.get(SITE_URL + '/' + url)
|
70
|
-
if page
|
71
|
-
page.encoding = 'iso-8859-1' if !page.nil? && page.encoding != 'iso-8859-1' # needed for foreign characters
|
72
|
-
band_and_album = page.search('body table tr:first-child .tt').text
|
73
|
-
album_fields = page.search('body table:nth-child(2n) tr:first-child > td:first-child').first.children
|
74
|
-
end
|
75
|
-
rescue NoMethodError => e
|
76
|
-
# this is an unusual error that occurs when a page only has the content "page not found"
|
77
|
-
# this should return an empty hash so the calling method doens't stop searching on this page
|
78
|
-
# or else it will never get past it
|
79
|
-
puts "\nError accessing metal-archives.com's album information: page not found"
|
80
|
-
return {}
|
81
|
-
rescue Exception => e
|
82
|
-
puts "\nError accessing metal-archives.com's album information: #{e}"
|
83
|
-
return nil
|
84
|
-
end
|
85
|
-
|
86
|
-
# these fields can be in one of the following forms, so we need to find the specific fields appropriately:
|
87
|
-
# "\n\t\t", "Demo", ", Nazgûl Distro & Prod.", "", "2011", "\t\t\t"
|
88
|
-
# "\n\t\t", "Demo", ", Deific Mourning", "", "\n\n\t\tJanuary ", "2011", "\t\t\t"
|
89
|
-
# "Full-length", ", ARX Productions", "", "\n\n\t\tFebruary 25th, ", "2011", "\t\t\t"
|
90
|
-
{
|
91
|
-
:album => album_from_content(band_and_album),
|
92
|
-
:band => band_from_content(band_and_album),
|
93
|
-
:label => label_from_content(album_fields),
|
94
|
-
:release_date => release_date_from_content(album_fields),
|
95
|
-
:release_type => release_type_from_content(album_fields),
|
96
|
-
:url => url
|
97
|
-
}
|
41
|
+
def band_name(album)
|
42
|
+
band_array(album)[3].match(BAND_NAME_AND_COUNTRY_REGEXP)[1]
|
98
43
|
end
|
99
44
|
|
100
|
-
def
|
101
|
-
|
102
|
-
page = search_by_year
|
103
|
-
album_total = page.search('body table:nth-child(2n) tr:first-child b').first.content.match(/\sof\s(\d+)/)
|
104
|
-
if album_total.nil?
|
105
|
-
0
|
106
|
-
else
|
107
|
-
album_total[1].to_i
|
108
|
-
end
|
109
|
-
rescue Exception => e
|
110
|
-
puts "\nError accessing metal-archives.com's paginated result urls: #{e}"
|
111
|
-
return nil
|
112
|
-
end
|
45
|
+
def country(album)
|
46
|
+
band_array(album)[3].match(BAND_NAME_AND_COUNTRY_REGEXP)[2]
|
113
47
|
end
|
114
48
|
|
115
|
-
|
116
|
-
|
117
|
-
# The band and and album fields are together, so we need to split them apart.
|
118
|
-
def album_from_content(content)
|
119
|
-
content.split(' - ')[1].strip
|
49
|
+
def album_url(album)
|
50
|
+
album[1].match(ALBUM_URL_AND_NAME_REGEXP)[1]
|
120
51
|
end
|
121
52
|
|
122
|
-
|
123
|
-
|
124
|
-
content.split(' - ')[0].strip
|
53
|
+
def album_name(album)
|
54
|
+
album[1].match(ALBUM_URL_AND_NAME_REGEXP)[2]
|
125
55
|
end
|
126
56
|
|
127
|
-
|
128
|
-
|
129
|
-
def label_from_content(content)
|
130
|
-
label = content[2].text
|
131
|
-
label.match(/,\s(.+)/) ? $1 : label
|
57
|
+
def release_type(album)
|
58
|
+
album[2]
|
132
59
|
end
|
133
60
|
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
def release_date_from_content(content)
|
139
|
-
date = content[4].text
|
140
|
-
if content.size == 7
|
141
|
-
date << content[5].text
|
142
|
-
|
143
|
-
split_date = date.split(' ')
|
144
|
-
if split_date.size == 2 # only have month and year
|
145
|
-
date = DateTime.
|
146
|
-
new(
|
147
|
-
split_date[1].to_i,
|
148
|
-
Date::MONTHNAMES.find_index(split_date[0]),
|
149
|
-
-1
|
150
|
-
).
|
151
|
-
strftime('%B %e %Y')
|
152
|
-
|
153
|
-
# need to use block to get s, the current captured backreference of the regexp because
|
154
|
-
# gsub doesn't see the $n-style references
|
155
|
-
date.gsub!(/\s(\d{1,2})\s/) do |s|
|
156
|
-
"#{MetalArchives.ordinalize(s.rstrip)}, "
|
157
|
-
end
|
158
|
-
end
|
159
|
-
|
160
|
-
else # only have year
|
161
|
-
date = "December 31st, #{date}"
|
162
|
-
end
|
163
|
-
date.strip
|
61
|
+
def release_date(album)
|
62
|
+
release_date_string = album[3].match(RELEASE_DATE_REGEXP)[1] # "2011-04-00"
|
63
|
+
year, month, day = release_date_string.split('-')
|
64
|
+
(day == '00') ? Date.civil(year.to_i, month.to_i, -1) : release_date = Date.parse(release_date_string)
|
164
65
|
end
|
165
66
|
|
166
|
-
|
167
|
-
|
168
|
-
|
67
|
+
private
|
68
|
+
|
69
|
+
def json_results(url)
|
70
|
+
response = Net::HTTP.get_response(URI.parse(url))
|
71
|
+
data = response.body
|
72
|
+
JSON.parse(data)
|
169
73
|
end
|
170
|
-
end
|
171
74
|
|
172
|
-
|
173
|
-
|
174
|
-
def self.ordinalize(number)
|
175
|
-
if (11..13).include?(number.to_i % 100)
|
176
|
-
"#{number}th"
|
177
|
-
else
|
178
|
-
case number.to_i % 10
|
179
|
-
when 1; "#{number}st"
|
180
|
-
when 2; "#{number}nd"
|
181
|
-
when 3; "#{number}rd"
|
182
|
-
else "#{number}th"
|
183
|
-
end
|
75
|
+
def band_array(album)
|
76
|
+
album[0].split('"')
|
184
77
|
end
|
185
78
|
end
|
186
79
|
end
|
data/metal-archives.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{metal-archives}
|
8
|
-
s.version = "0.
|
8
|
+
s.version = "0.2.0"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Danny Olson"]
|
12
|
-
s.date = %q{2011-
|
12
|
+
s.date = %q{2011-06-01}
|
13
13
|
s.description = %q{metal-archives provides an interface to search for album releases for a specific year, defaulting to the current one if none is provided.}
|
14
14
|
s.email = %q{dbolson@gmail.com}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -27,10 +27,7 @@ Gem::Specification.new do |s|
|
|
27
27
|
"VERSION",
|
28
28
|
"lib/metal-archives.rb",
|
29
29
|
"metal-archives.gemspec",
|
30
|
-
"spec/
|
31
|
-
"spec/html/album_result2.html",
|
32
|
-
"spec/html/album_result3.html",
|
33
|
-
"spec/html/search_results.html",
|
30
|
+
"spec/json/search_results.json",
|
34
31
|
"spec/metal-archives_spec.rb",
|
35
32
|
"spec/spec_helper.rb"
|
36
33
|
]
|
@@ -49,26 +46,23 @@ Gem::Specification.new do |s|
|
|
49
46
|
s.specification_version = 3
|
50
47
|
|
51
48
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
52
|
-
s.add_runtime_dependency(%q<
|
49
|
+
s.add_runtime_dependency(%q<json>, [">= 0"])
|
53
50
|
s.add_development_dependency(%q<rspec>, ["~> 2.3.0"])
|
54
51
|
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
|
55
52
|
s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"])
|
56
|
-
s.add_development_dependency(%q<rcov>, [">= 0"])
|
57
53
|
s.add_runtime_dependency(%q<mechanize>, ["~> 1.0.0"])
|
58
54
|
else
|
59
|
-
s.add_dependency(%q<
|
55
|
+
s.add_dependency(%q<json>, [">= 0"])
|
60
56
|
s.add_dependency(%q<rspec>, ["~> 2.3.0"])
|
61
57
|
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
62
58
|
s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
|
63
|
-
s.add_dependency(%q<rcov>, [">= 0"])
|
64
59
|
s.add_dependency(%q<mechanize>, ["~> 1.0.0"])
|
65
60
|
end
|
66
61
|
else
|
67
|
-
s.add_dependency(%q<
|
62
|
+
s.add_dependency(%q<json>, [">= 0"])
|
68
63
|
s.add_dependency(%q<rspec>, ["~> 2.3.0"])
|
69
64
|
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
70
65
|
s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
|
71
|
-
s.add_dependency(%q<rcov>, [">= 0"])
|
72
66
|
s.add_dependency(%q<mechanize>, ["~> 1.0.0"])
|
73
67
|
end
|
74
68
|
end
|
@@ -0,0 +1,707 @@
|
|
1
|
+
{
|
2
|
+
"error": "",
|
3
|
+
"iTotalRecords": 2939,
|
4
|
+
"iTotalDisplayRecords": 2939,
|
5
|
+
"sEcho": 0,
|
6
|
+
"aaData": [
|
7
|
+
[
|
8
|
+
"<a href=\"http://www.metal-archives.com/bands/...Do_Fundo..._Abismo/3540326997\" title=\"...Do Fundo... Abismo (BR)\">...Do Fundo... Abismo</a>",
|
9
|
+
"<a href=\"http://www.metal-archives.com/albums/...Do_Fundo..._Abismo/Da_Escurid%C3%A3o/304910\">Da Escuridão</a>" ,
|
10
|
+
"Demo" ,
|
11
|
+
"April 2011 <!-- 2011-04-00 -->"
|
12
|
+
]
|
13
|
+
,
|
14
|
+
[
|
15
|
+
"<a href=\"http://www.metal-archives.com/bands/037/3540277845\" title=\"037 (ES)\">037</a>",
|
16
|
+
"<a href=\"http://www.metal-archives.com/albums/037/Tantas_Vidas/306172\">Tantas Vidas</a>" ,
|
17
|
+
"Single" ,
|
18
|
+
"May 6th, 2011 <!-- 2011-05-06 -->"
|
19
|
+
]
|
20
|
+
,
|
21
|
+
[
|
22
|
+
"<a href=\"http://www.metal-archives.com/bands/0N0/3540325569\" title=\"0N0 (SK)\">0N0</a>",
|
23
|
+
"<a href=\"http://www.metal-archives.com/albums/0N0/Path/302471\">Path</a>" ,
|
24
|
+
"Full-length" ,
|
25
|
+
"March 29th, 2011 <!-- 2011-03-29 -->"
|
26
|
+
]
|
27
|
+
,
|
28
|
+
[
|
29
|
+
"<a href=\"http://www.metal-archives.com/bands/1000_Funerals/3540326834\" title=\"1000 Funerals (IR)\">1000 Funerals</a>",
|
30
|
+
"<a href=\"http://www.metal-archives.com/albums/1000_Funerals/Butterfly_Decadence/304516\">Butterfly Decadence</a>" ,
|
31
|
+
"Full-length" ,
|
32
|
+
"April 11th, 2011 <!-- 2011-04-11 -->"
|
33
|
+
]
|
34
|
+
,
|
35
|
+
[
|
36
|
+
"<a href=\"http://www.metal-archives.com/bands/1389/3540270259\" title=\"1389 (BA)\">1389</a>",
|
37
|
+
"<a href=\"http://www.metal-archives.com/albums/1389/Cold_Winter_Spirit/298798\">Cold Winter Spirit</a>" ,
|
38
|
+
"Demo" ,
|
39
|
+
"January 30th, 2011 <!-- 2011-01-30 -->"
|
40
|
+
]
|
41
|
+
,
|
42
|
+
[
|
43
|
+
"<a href=\"http://www.metal-archives.com/bands/3/7860\" title=\"3 (IT)\">3</a>",
|
44
|
+
"<a href=\"http://www.metal-archives.com/albums/3/Il_Braccio_Sinistro/303152\">Il Braccio Sinistro</a>" ,
|
45
|
+
"Demo" ,
|
46
|
+
"April 22nd, 2011 <!-- 2011-04-22 -->"
|
47
|
+
]
|
48
|
+
,
|
49
|
+
[
|
50
|
+
"<a href=\"http://www.metal-archives.com/bands/3_Inches_of_Blood/8571\" title=\"3 Inches of Blood (CA)\">3 Inches of Blood</a>",
|
51
|
+
"<a href=\"http://www.metal-archives.com/albums/3_Inches_of_Blood/Anthems_for_the_Victorious/306018\">Anthems for the Victorious</a>" ,
|
52
|
+
"EP" ,
|
53
|
+
"May 3rd, 2011 <!-- 2011-05-03 -->"
|
54
|
+
]
|
55
|
+
,
|
56
|
+
[
|
57
|
+
"<a href=\"http://www.metal-archives.com/bands/40_Watt_Sun/3540323963\" title=\"40 Watt Sun (GB)\">40 Watt Sun</a>",
|
58
|
+
"<a href=\"http://www.metal-archives.com/albums/40_Watt_Sun/The_Inside_Room/300030\">The Inside Room</a>" ,
|
59
|
+
"Full-length" ,
|
60
|
+
"March 4th, 2011 <!-- 2011-03-04 -->"
|
61
|
+
]
|
62
|
+
,
|
63
|
+
[
|
64
|
+
"<a href=\"http://www.metal-archives.com/bands/4th_Dimension/3540325167\" title=\"4th Dimension (IT)\">4th Dimension</a>",
|
65
|
+
"<a href=\"http://www.metal-archives.com/albums/4th_Dimension/The_White_Path_to_Rebirth/301873\">The White Path to Rebirth</a>" ,
|
66
|
+
"Full-length" ,
|
67
|
+
"March 25th, 2011 <!-- 2011-03-25 -->"
|
68
|
+
]
|
69
|
+
,
|
70
|
+
[
|
71
|
+
"<a href=\"http://www.metal-archives.com/bands/5_%D0%A1%D1%82%D0%B8%D1%85%D0%B8%D0%B9/117681\" title=\"5 Стихий (RU)\">5 Стихий</a>",
|
72
|
+
"<a href=\"http://www.metal-archives.com/albums/5_%D0%A1%D1%82%D0%B8%D1%85%D0%B8%D0%B9/%D0%9F%D0%B5%D0%BF%D0%B5%D0%BB_%D0%B8_%D0%A1%D0%BD%D0%B5%D0%B3/300748\">Пепел и Снег</a>" ,
|
73
|
+
"Full-length" ,
|
74
|
+
"March 31st, 2011 <!-- 2011-03-31 -->"
|
75
|
+
]
|
76
|
+
,
|
77
|
+
[
|
78
|
+
"<a href=\"http://www.metal-archives.com/bands/A_Dream_of_Poe/79756\" title=\"A Dream of Poe (PT)\">A Dream of Poe</a>",
|
79
|
+
"<a href=\"http://www.metal-archives.com/albums/A_Dream_of_Poe/The_Mirror_of_Deliverance/296061\">The Mirror of Deliverance</a>" ,
|
80
|
+
"Full-length" ,
|
81
|
+
"February 25th, 2011 <!-- 2011-02-25 -->"
|
82
|
+
]
|
83
|
+
,
|
84
|
+
[
|
85
|
+
"<a href=\"http://www.metal-archives.com/bands/A_Hill_to_Die_Upon/3540256497\" title=\"A Hill to Die Upon (US)\">A Hill to Die Upon</a>",
|
86
|
+
"<a href=\"http://www.metal-archives.com/albums/A_Hill_to_Die_Upon/Omens/305820\">Omens</a>" ,
|
87
|
+
"Full-length" ,
|
88
|
+
"June 2011 <!-- 2011-06-00 -->"
|
89
|
+
]
|
90
|
+
,
|
91
|
+
[
|
92
|
+
"<a href=\"http://www.metal-archives.com/bands/A_Million_Dead_Birds_Laughing/3540324237\" title=\"A Million Dead Birds Laughing (AU)\">A Million Dead Birds Laughing</a>",
|
93
|
+
"<a href=\"http://www.metal-archives.com/albums/A_Million_Dead_Birds_Laughing/Force_Fed_Enlightenment/300486\">Force Fed Enlightenment</a>" ,
|
94
|
+
"Full-length" ,
|
95
|
+
"March 10th, 2011 <!-- 2011-03-10 -->"
|
96
|
+
]
|
97
|
+
,
|
98
|
+
[
|
99
|
+
"<a href=\"http://www.metal-archives.com/bands/A_Storm_of_Light/3540255510\" title=\"A Storm of Light (US)\">A Storm of Light</a>",
|
100
|
+
"<a href=\"http://www.metal-archives.com/albums/A_Storm_of_Light/As_the_Valley_of_Death_Becomes_Us%2C_Our_Silver_Memories_Fade/299967\">As the Valley of Death Becomes Us, Our Silver Memories Fade</a>" ,
|
101
|
+
"Full-length" ,
|
102
|
+
"May 17th, 2011 <!-- 2011-05-17 -->"
|
103
|
+
]
|
104
|
+
,
|
105
|
+
[
|
106
|
+
"<a href=\"http://www.metal-archives.com/bands/A_Walk_with_the_Wicked/3540321652\" title=\"A Walk with the Wicked (ZA)\">A Walk with the Wicked</a>",
|
107
|
+
"<a href=\"http://www.metal-archives.com/albums/A_Walk_with_the_Wicked/Architects_of_Sadism/296292\">Architects of Sadism</a>" ,
|
108
|
+
"EP" ,
|
109
|
+
"January 28th, 2011 <!-- 2011-01-28 -->"
|
110
|
+
]
|
111
|
+
,
|
112
|
+
[
|
113
|
+
"<a href=\"http://www.metal-archives.com/bands/Aamunkajo/3540268003\" title=\"Aamunkajo (FI)\">Aamunkajo</a>",
|
114
|
+
"<a href=\"http://www.metal-archives.com/albums/Aamunkajo/Avaruuden_tyhjyydess%C3%A4/298200\">Avaruuden tyhjyydessä</a>" ,
|
115
|
+
"Full-length" ,
|
116
|
+
"February 15th, 2011 <!-- 2011-02-15 -->"
|
117
|
+
]
|
118
|
+
,
|
119
|
+
[
|
120
|
+
"<a href=\"http://www.metal-archives.com/bands/Aasgard/126033\" title=\"Aasgard (GR)\">Aasgard</a>",
|
121
|
+
"<a href=\"http://www.metal-archives.com/albums/Aasgard/Nekriki_Mistagogia/301710\">Nekriki Mistagogia</a>" ,
|
122
|
+
"EP" ,
|
123
|
+
"May 1st, 2011 <!-- 2011-05-01 -->"
|
124
|
+
]
|
125
|
+
,
|
126
|
+
[
|
127
|
+
"<a href=\"http://www.metal-archives.com/bands/Aaskereia/3343\" title=\"Aaskereia (DE)\">Aaskereia</a>",
|
128
|
+
"<a href=\"http://www.metal-archives.com/albums/Aaskereia/Dort%2C_wo_das_alte_B%C3%B6se_ruht/298055\">Dort, wo das alte Böse ruht</a>" ,
|
129
|
+
"Full-length" ,
|
130
|
+
"February 18th, 2011 <!-- 2011-02-18 -->"
|
131
|
+
]
|
132
|
+
,
|
133
|
+
[
|
134
|
+
"<a href=\"http://www.metal-archives.com/bands/Ab_Aeterno/3540326638\" title=\"Ab Aeterno (US)\">Ab Aeterno</a>",
|
135
|
+
"<a href=\"http://www.metal-archives.com/albums/Ab_Aeterno/Omnipresence/304263\">Omnipresence</a>" ,
|
136
|
+
"Demo" ,
|
137
|
+
"February 2011 <!-- 2011-02-00 -->"
|
138
|
+
]
|
139
|
+
,
|
140
|
+
[
|
141
|
+
"<a href=\"http://www.metal-archives.com/bands/Abacinate/53985\" title=\"Abacinate (US)\">Abacinate</a>",
|
142
|
+
"<a href=\"http://www.metal-archives.com/albums/Abacinate/Genesis/294429\">Genesis</a>" ,
|
143
|
+
"Full-length" ,
|
144
|
+
"January 18th, 2011 <!-- 2011-01-18 -->"
|
145
|
+
]
|
146
|
+
,
|
147
|
+
[
|
148
|
+
"<a href=\"http://www.metal-archives.com/bands/Abaddon_Incarnate/2299\" title=\"Abaddon Incarnate (IE)\">Abaddon Incarnate</a>",
|
149
|
+
"<a href=\"http://www.metal-archives.com/albums/Abaddon_Incarnate/Abaddon_Incarnate-Phobia/305355\">Abaddon Incarnate/Phobia</a>" ,
|
150
|
+
"Split" ,
|
151
|
+
"February 25th, 2011 <!-- 2011-02-25 -->"
|
152
|
+
]
|
153
|
+
,
|
154
|
+
[
|
155
|
+
"<a href=\"http://www.metal-archives.com/bands/Aberrance/3540322869\" title=\"Aberrance (US)\">Aberrance</a>",
|
156
|
+
"<a href=\"http://www.metal-archives.com/albums/Aberrance/The_Obese_Shall_Feast/298229\">The Obese Shall Feast</a>" ,
|
157
|
+
"Full-length" ,
|
158
|
+
"February 12th, 2011 <!-- 2011-02-12 -->"
|
159
|
+
]
|
160
|
+
,
|
161
|
+
[
|
162
|
+
"<a href=\"http://www.metal-archives.com/bands/Abhorrent/25853\" title=\"Abhorrent (CL)\">Abhorrent</a>",
|
163
|
+
"<a href=\"http://www.metal-archives.com/albums/Abhorrent/Heridas/304711\">Heridas</a>" ,
|
164
|
+
"Full-length" ,
|
165
|
+
"April 1st, 2011 <!-- 2011-04-01 -->"
|
166
|
+
]
|
167
|
+
,
|
168
|
+
[
|
169
|
+
"<a href=\"http://www.metal-archives.com/bands/Abhorrot/122343\" title=\"Abhorrot (AT)\">Abhorrot</a>",
|
170
|
+
"<a href=\"http://www.metal-archives.com/albums/Abhorrot/Promo-Tape_2011/300537\">Promo-Tape 2011</a>" ,
|
171
|
+
"Demo" ,
|
172
|
+
"March 5th, 2011 <!-- 2011-03-05 -->"
|
173
|
+
]
|
174
|
+
,
|
175
|
+
[
|
176
|
+
"<a href=\"http://www.metal-archives.com/bands/Abigail/1282\" title=\"Abigail (JP)\">Abigail</a> | <a href=\"http://www.metal-archives.com/bands/Fornication/3540291799\" title=\"Fornication (CA)\">Fornication</a>",
|
177
|
+
"<a href=\"http://www.metal-archives.com/albums/Abigail%7E%7EFornication/Drink_Beer._Listen_Hell_Metal%21/304716\">Drink Beer. Listen Hell Metal!</a>" ,
|
178
|
+
"Split" ,
|
179
|
+
"April 2011 <!-- 2011-04-00 -->"
|
180
|
+
]
|
181
|
+
,
|
182
|
+
[
|
183
|
+
"<a href=\"http://www.metal-archives.com/bands/Abigail/1282\" title=\"Abigail (JP)\">Abigail</a> | <a href=\"http://www.metal-archives.com/bands/Retaliation/111887\" title=\"Retaliation (US)\">Retaliation</a> | <a href=\"http://www.metal-archives.com/bands/Camlann/3540263580\" title=\"Camlann (US)\">Camlann</a>",
|
184
|
+
"<a href=\"http://www.metal-archives.com/albums/Abigail%7E%7ERetaliation%7E%7ECamlann/Camlann-Retaliation-Abigail/302159\">Camlann/Retaliation/Abigail</a>" ,
|
185
|
+
"Split" ,
|
186
|
+
"March 2011 <!-- 2011-03-00 -->"
|
187
|
+
]
|
188
|
+
,
|
189
|
+
[
|
190
|
+
"<a href=\"http://www.metal-archives.com/bands/Abinchova/3540285117\" title=\"Abinchova (CH)\">Abinchova</a>",
|
191
|
+
"<a href=\"http://www.metal-archives.com/albums/Abinchova/Versteckte_Pfade/295451\">Versteckte Pfade</a>" ,
|
192
|
+
"Full-length" ,
|
193
|
+
"March 11th, 2011 <!-- 2011-03-11 -->"
|
194
|
+
]
|
195
|
+
,
|
196
|
+
[
|
197
|
+
"<a href=\"http://www.metal-archives.com/bands/About%3A_Blank/3540267633\" title=\"About: Blank (BE)\">About: Blank</a>",
|
198
|
+
"<a href=\"http://www.metal-archives.com/albums/About%3A_Blank/Qualia/300562\">Qualia</a>" ,
|
199
|
+
"Full-length" ,
|
200
|
+
"February 2011 <!-- 2011-02-00 -->"
|
201
|
+
]
|
202
|
+
,
|
203
|
+
[
|
204
|
+
"<a href=\"http://www.metal-archives.com/bands/Abrasive/7342\" title=\"Abrasive (DE)\">Abrasive</a>",
|
205
|
+
"<a href=\"http://www.metal-archives.com/albums/Abrasive/The_Birth...Born_In_Sodom/303704\">The Birth...Born In Sodom</a>" ,
|
206
|
+
"Full-length" ,
|
207
|
+
"April 15th, 2011 <!-- 2011-04-15 -->"
|
208
|
+
]
|
209
|
+
,
|
210
|
+
[
|
211
|
+
"<a href=\"http://www.metal-archives.com/bands/Absconder/3540322387\" title=\"Absconder (US)\">Absconder</a>",
|
212
|
+
"<a href=\"http://www.metal-archives.com/albums/Absconder/Demo_2011/297801\">Demo 2011</a>" ,
|
213
|
+
"Demo" ,
|
214
|
+
"February 2011 <!-- 2011-02-00 -->"
|
215
|
+
]
|
216
|
+
,
|
217
|
+
[
|
218
|
+
"<a href=\"http://www.metal-archives.com/bands/Absent-Minded/3540321681\" title=\"Absent/Minded (DE)\">Absent/Minded</a>",
|
219
|
+
"<a href=\"http://www.metal-archives.com/albums/Absent-Minded/Pulsar/296354\">Pulsar</a>" ,
|
220
|
+
"Full-length" ,
|
221
|
+
"January 9th, 2011 <!-- 2011-01-09 -->"
|
222
|
+
]
|
223
|
+
,
|
224
|
+
[
|
225
|
+
"<a href=\"http://www.metal-archives.com/bands/Abstract_Agony/92636\" title=\"Abstract Agony (FR)\">Abstract Agony</a>",
|
226
|
+
"<a href=\"http://www.metal-archives.com/albums/Abstract_Agony/Collapse/306776\">Collapse</a>" ,
|
227
|
+
"EP" ,
|
228
|
+
"February 18th, 2011 <!-- 2011-02-18 -->"
|
229
|
+
]
|
230
|
+
,
|
231
|
+
[
|
232
|
+
"<a href=\"http://www.metal-archives.com/bands/Abstract_Spirit/117242\" title=\"Abstract Spirit (RU)\">Abstract Spirit</a>",
|
233
|
+
"<a href=\"http://www.metal-archives.com/albums/Abstract_Spirit/Horror_Vacui/302012\">Horror Vacui</a>" ,
|
234
|
+
"Full-length" ,
|
235
|
+
"April 25th, 2011 <!-- 2011-04-25 -->"
|
236
|
+
]
|
237
|
+
,
|
238
|
+
[
|
239
|
+
"<a href=\"http://www.metal-archives.com/bands/Abstrusa_Unde/3540259485\" title=\"Abstrusa Unde (FR)\">Abstrusa Unde</a>",
|
240
|
+
"<a href=\"http://www.metal-archives.com/albums/Abstrusa_Unde/Introspection/304467\">Introspection</a>" ,
|
241
|
+
"Full-length" ,
|
242
|
+
"April 18th, 2011 <!-- 2011-04-18 -->"
|
243
|
+
]
|
244
|
+
,
|
245
|
+
[
|
246
|
+
"<a href=\"http://www.metal-archives.com/bands/Absu/41\" title=\"Absu (US)\">Absu</a>",
|
247
|
+
"<a href=\"http://www.metal-archives.com/albums/Absu/Abzu/303924\">Abzu</a>" ,
|
248
|
+
"Full-length" ,
|
249
|
+
"June 2011 <!-- 2011-06-00 -->"
|
250
|
+
]
|
251
|
+
,
|
252
|
+
[
|
253
|
+
"<a href=\"http://www.metal-archives.com/bands/Absurdity/22647\" title=\"Absurdity (FR)\">Absurdity</a>",
|
254
|
+
"<a href=\"http://www.metal-archives.com/albums/Absurdity/D%3AEvolution/300087\">D:Evolution</a>" ,
|
255
|
+
"Full-length" ,
|
256
|
+
"March 14th, 2011 <!-- 2011-03-14 -->"
|
257
|
+
]
|
258
|
+
,
|
259
|
+
[
|
260
|
+
"<a href=\"http://www.metal-archives.com/bands/Abvul_Abashy/8759\" title=\"Abvul Abashy (SG)\">Abvul Abashy</a> | <a href=\"http://www.metal-archives.com/bands/Maleventum/3540275703\" title=\"Maleventum (CO)\">Maleventum</a>",
|
261
|
+
"<a href=\"http://www.metal-archives.com/albums/Abvul_Abashy%7E%7EMaleventum/Christkrushing_Warkommanders_ov_Satan/295196\">Christkrushing Warkommanders ov Satan</a>" ,
|
262
|
+
"Split" ,
|
263
|
+
"January 15th, 2011 <!-- 2011-01-15 -->"
|
264
|
+
]
|
265
|
+
,
|
266
|
+
[
|
267
|
+
"<a href=\"http://www.metal-archives.com/bands/Abysmal_Darkening/29915\" title=\"Abysmal Darkening (NL)\">Abysmal Darkening</a>",
|
268
|
+
"<a href=\"http://www.metal-archives.com/albums/Abysmal_Darkening/No_Light_Behind/302290\">No Light Behind</a>" ,
|
269
|
+
"Full-length" ,
|
270
|
+
"April 10th, 2011 <!-- 2011-04-10 -->"
|
271
|
+
]
|
272
|
+
,
|
273
|
+
[
|
274
|
+
"<a href=\"http://www.metal-archives.com/bands/Abysmal_Dawn/27821\" title=\"Abysmal Dawn (US)\">Abysmal Dawn</a>",
|
275
|
+
"<a href=\"http://www.metal-archives.com/albums/Abysmal_Dawn/Leveling_the_Plane_of_Existence/289824\">Leveling the Plane of Existence</a>" ,
|
276
|
+
"Full-length" ,
|
277
|
+
"February 1st, 2011 <!-- 2011-02-01 -->"
|
278
|
+
]
|
279
|
+
,
|
280
|
+
[
|
281
|
+
"<a href=\"http://www.metal-archives.com/bands/Abyzmal/3540313738\" title=\"Abyzmal (AU)\">Abyzmal</a>",
|
282
|
+
"<a href=\"http://www.metal-archives.com/albums/Abyzmal/This_Day_Will_Come/304573\">This Day Will Come</a>" ,
|
283
|
+
"EP" ,
|
284
|
+
"April 9th, 2011 <!-- 2011-04-09 -->"
|
285
|
+
]
|
286
|
+
,
|
287
|
+
[
|
288
|
+
"<a href=\"http://www.metal-archives.com/bands/Accursed_Christ/3540324899\" title=\"Accursed Christ (RU)\">Accursed Christ</a> | <a href=\"http://www.metal-archives.com/bands/Decadence/3540324913\" title=\"Decadence (RU)\">Decadence</a>",
|
289
|
+
"<a href=\"http://www.metal-archives.com/albums/Accursed_Christ%7E%7EDecadence/...in_Spite_of_Torment_in_Eternity/301460\">...in Spite of Torment in Eternity</a>" ,
|
290
|
+
"Split" ,
|
291
|
+
"March 15th, 2011 <!-- 2011-03-15 -->"
|
292
|
+
]
|
293
|
+
,
|
294
|
+
[
|
295
|
+
"<a href=\"http://www.metal-archives.com/bands/Acephalix/3540320647\" title=\"Acephalix (US)\">Acephalix</a>",
|
296
|
+
"<a href=\"http://www.metal-archives.com/albums/Acephalix/Flesh_Torn_in_Twilight/295519\">Flesh Torn in Twilight</a>" ,
|
297
|
+
"Demo" ,
|
298
|
+
"January 13th, 2011 <!-- 2011-01-13 -->"
|
299
|
+
]
|
300
|
+
,
|
301
|
+
[
|
302
|
+
"<a href=\"http://www.metal-archives.com/bands/Acephalix/3540320647\" title=\"Acephalix (US)\">Acephalix</a>",
|
303
|
+
"<a href=\"http://www.metal-archives.com/albums/Acephalix/Interminable_Night/304914\">Interminable Night</a>" ,
|
304
|
+
"Full-length" ,
|
305
|
+
"April 6th, 2011 <!-- 2011-04-06 -->"
|
306
|
+
]
|
307
|
+
,
|
308
|
+
[
|
309
|
+
"<a href=\"http://www.metal-archives.com/bands/Acherontas/112532\" title=\"Acherontas (GR)\">Acherontas</a>",
|
310
|
+
"<a href=\"http://www.metal-archives.com/albums/Acherontas/15_Years_Anniversary_of_Left_Hand_Path_Esoterica/306713\">15 Years Anniversary of Left Hand Path Esoterica</a>" ,
|
311
|
+
"Compilation" ,
|
312
|
+
"May 1st, 2011 <!-- 2011-05-01 -->"
|
313
|
+
]
|
314
|
+
,
|
315
|
+
[
|
316
|
+
"<a href=\"http://www.metal-archives.com/bands/Achren/14900\" title=\"Achren (GB)\">Achren</a>",
|
317
|
+
"<a href=\"http://www.metal-archives.com/albums/Achren/Impaled_at_Bloodstock-Open-Air_2010/306514\">Impaled at Bloodstock-Open-Air 2010</a>" ,
|
318
|
+
"DVD" ,
|
319
|
+
"April 2nd, 2011 <!-- 2011-04-02 -->"
|
320
|
+
]
|
321
|
+
,
|
322
|
+
[
|
323
|
+
"<a href=\"http://www.metal-archives.com/bands/Acid_Death/517\" title=\"Acid Death (GR)\">Acid Death</a>",
|
324
|
+
"<a href=\"http://www.metal-archives.com/albums/Acid_Death/Promo/295457\">Promo</a>" ,
|
325
|
+
"Demo" ,
|
326
|
+
"January 2011 <!-- 2011-01-00 -->"
|
327
|
+
]
|
328
|
+
,
|
329
|
+
[
|
330
|
+
"<a href=\"http://www.metal-archives.com/bands/Acid_Rain/108315\" title=\"Acid Rain (AR)\">Acid Rain</a>",
|
331
|
+
"<a href=\"http://www.metal-archives.com/albums/Acid_Rain/Shallow_Paradise/304806\">Shallow Paradise</a>" ,
|
332
|
+
"Full-length" ,
|
333
|
+
"March 2011 <!-- 2011-03-00 -->"
|
334
|
+
]
|
335
|
+
,
|
336
|
+
[
|
337
|
+
"<a href=\"http://www.metal-archives.com/bands/Acid_Witch/3540265808\" title=\"Acid Witch (US)\">Acid Witch</a>",
|
338
|
+
"<a href=\"http://www.metal-archives.com/albums/Acid_Witch/Stoned/288298\">Stoned</a>" ,
|
339
|
+
"Full-length" ,
|
340
|
+
"January 18th, 2011 <!-- 2011-01-18 -->"
|
341
|
+
]
|
342
|
+
,
|
343
|
+
[
|
344
|
+
"<a href=\"http://www.metal-archives.com/bands/Acral_Necrosis/97009\" title=\"Acral Necrosis (GB)\">Acral Necrosis</a>",
|
345
|
+
"<a href=\"http://www.metal-archives.com/albums/Acral_Necrosis/Live_Alcoholocaust/302380\">Live Alcoholocaust</a>" ,
|
346
|
+
"Live album" ,
|
347
|
+
"March 2011 <!-- 2011-03-00 -->"
|
348
|
+
]
|
349
|
+
,
|
350
|
+
[
|
351
|
+
"<a href=\"http://www.metal-archives.com/bands/Acrasia/3540326111\" title=\"Acrasia (US)\">Acrasia</a>",
|
352
|
+
"<a href=\"http://www.metal-archives.com/albums/Acrasia/Acrasia/303464\">Acrasia</a>" ,
|
353
|
+
"Full-length" ,
|
354
|
+
"February 25th, 2011 <!-- 2011-02-25 -->"
|
355
|
+
]
|
356
|
+
,
|
357
|
+
[
|
358
|
+
"<a href=\"http://www.metal-archives.com/bands/Across_Tundras/42704\" title=\"Across Tundras (US)\">Across Tundras</a>",
|
359
|
+
"<a href=\"http://www.metal-archives.com/albums/Across_Tundras/Sage/301457\">Sage</a>" ,
|
360
|
+
"Full-length" ,
|
361
|
+
"May 17th, 2011 <!-- 2011-05-17 -->"
|
362
|
+
]
|
363
|
+
,
|
364
|
+
[
|
365
|
+
"<a href=\"http://www.metal-archives.com/bands/Acrybia/112742\" title=\"Acrybia (PL)\">Acrybia</a>",
|
366
|
+
"<a href=\"http://www.metal-archives.com/albums/Acrybia/Jesus_Bloody_Jesus_Promo_2011/302613\">Jesus Bloody Jesus Promo 2011</a>" ,
|
367
|
+
"Demo" ,
|
368
|
+
"March 30th, 2011 <!-- 2011-03-30 -->"
|
369
|
+
]
|
370
|
+
,
|
371
|
+
[
|
372
|
+
"<a href=\"http://www.metal-archives.com/bands/Act_of_God/11540\" title=\"Act of God (CZ)\">Act of God</a>",
|
373
|
+
"<a href=\"http://www.metal-archives.com/albums/Act_of_God/Vzpom%C3%ADnky_V_Zrcadlech/306399\">Vzpomínky V Zrcadlech</a>" ,
|
374
|
+
"Full-length" ,
|
375
|
+
"February 17th, 2011 <!-- 2011-02-17 -->"
|
376
|
+
]
|
377
|
+
,
|
378
|
+
[
|
379
|
+
"<a href=\"http://www.metal-archives.com/bands/Actum_Inferni/3540263485\" title=\"Actum Inferni (PL)\">Actum Inferni</a>",
|
380
|
+
"<a href=\"http://www.metal-archives.com/albums/Actum_Inferni/The_Embodiment_Of_Death/296048\">The Embodiment Of Death</a>" ,
|
381
|
+
"Full-length" ,
|
382
|
+
"February 2011 <!-- 2011-02-00 -->"
|
383
|
+
]
|
384
|
+
,
|
385
|
+
[
|
386
|
+
"<a href=\"http://www.metal-archives.com/bands/Acute_Mind/3540323094\" title=\"Acute Mind (PL)\">Acute Mind</a>",
|
387
|
+
"<a href=\"http://www.metal-archives.com/albums/Acute_Mind/Acute_Mind/298559\">Acute Mind</a>" ,
|
388
|
+
"Full-length" ,
|
389
|
+
"January 28th, 2011 <!-- 2011-01-28 -->"
|
390
|
+
]
|
391
|
+
,
|
392
|
+
[
|
393
|
+
"<a href=\"http://www.metal-archives.com/bands/Ad_Astra/32599\" title=\"Ad Astra (GR)\">Ad Astra</a>",
|
394
|
+
"<a href=\"http://www.metal-archives.com/albums/Ad_Astra/One_Single_Cause/277428\">One Single Cause</a>" ,
|
395
|
+
"Full-length" ,
|
396
|
+
"April 15th, 2011 <!-- 2011-04-15 -->"
|
397
|
+
]
|
398
|
+
,
|
399
|
+
[
|
400
|
+
"<a href=\"http://www.metal-archives.com/bands/Ad_Inferna/3184\" title=\"Ad Inferna (FR)\">Ad Inferna</a>",
|
401
|
+
"<a href=\"http://www.metal-archives.com/albums/Ad_Inferna/There_Is_No_Cure/302534\">There Is No Cure</a>" ,
|
402
|
+
"Full-length" ,
|
403
|
+
"April 26th, 2011 <!-- 2011-04-26 -->"
|
404
|
+
]
|
405
|
+
,
|
406
|
+
[
|
407
|
+
"<a href=\"http://www.metal-archives.com/bands/Ad_Intra/3540278623\" title=\"Ad Intra (VE)\">Ad Intra</a>",
|
408
|
+
"<a href=\"http://www.metal-archives.com/albums/Ad_Intra/We_Aren%27t_Ready_To_Take_Off/305296\">We Aren't Ready To Take Off</a>" ,
|
409
|
+
"Single" ,
|
410
|
+
"April 17th, 2011 <!-- 2011-04-17 -->"
|
411
|
+
]
|
412
|
+
,
|
413
|
+
[
|
414
|
+
"<a href=\"http://www.metal-archives.com/bands/Adamantine/3540301722\" title=\"Adamantine (PT)\">Adamantine</a>",
|
415
|
+
"<a href=\"http://www.metal-archives.com/albums/Adamantine/Thrash_And_Devastate/300883\">Thrash And Devastate</a>" ,
|
416
|
+
"Single" ,
|
417
|
+
"January 11th, 2011 <!-- 2011-01-11 -->"
|
418
|
+
]
|
419
|
+
,
|
420
|
+
[
|
421
|
+
"<a href=\"http://www.metal-archives.com/bands/Adamantivm/3540276912\" title=\"Adamantivm (ES)\">Adamantivm</a>",
|
422
|
+
"<a href=\"http://www.metal-archives.com/albums/Adamantivm/Atajo_a_la_Locura/303178\">Atajo a la Locura</a>" ,
|
423
|
+
"Full-length" ,
|
424
|
+
"April 25th, 2011 <!-- 2011-04-25 -->"
|
425
|
+
]
|
426
|
+
,
|
427
|
+
[
|
428
|
+
"<a href=\"http://www.metal-archives.com/bands/Adamantra/84533\" title=\"Adamantra (FI)\">Adamantra</a>",
|
429
|
+
"<a href=\"http://www.metal-archives.com/albums/Adamantra/Promo_2011/305208\">Promo 2011</a>" ,
|
430
|
+
"Demo" ,
|
431
|
+
"March 31st, 2011 <!-- 2011-03-31 -->"
|
432
|
+
]
|
433
|
+
,
|
434
|
+
[
|
435
|
+
"<a href=\"http://www.metal-archives.com/bands/Adrenicide/72273\" title=\"Adrenicide (GB)\">Adrenicide</a>",
|
436
|
+
"<a href=\"http://www.metal-archives.com/albums/Adrenicide/Power_Shift/299565\">Power Shift</a>" ,
|
437
|
+
"Full-length" ,
|
438
|
+
"March 20th, 2011 <!-- 2011-03-20 -->"
|
439
|
+
]
|
440
|
+
,
|
441
|
+
[
|
442
|
+
"<a href=\"http://www.metal-archives.com/bands/Adversarial/3540273266\" title=\"Adversarial (CA)\">Adversarial</a>",
|
443
|
+
"<a href=\"http://www.metal-archives.com/albums/Adversarial/Prophetic_Plain_of_Abyssal_Revelation/296800\">Prophetic Plain of Abyssal Revelation</a>" ,
|
444
|
+
"EP" ,
|
445
|
+
"March 17th, 2011 <!-- 2011-03-17 -->"
|
446
|
+
]
|
447
|
+
,
|
448
|
+
[
|
449
|
+
"<a href=\"http://www.metal-archives.com/bands/Adyta/3540282823\" title=\"Adyta (NO)\">Adyta</a>",
|
450
|
+
"<a href=\"http://www.metal-archives.com/albums/Adyta/Katarsis/290116\">Katarsis</a>" ,
|
451
|
+
"EP" ,
|
452
|
+
"July 15th, 2011 <!-- 2011-07-15 -->"
|
453
|
+
]
|
454
|
+
,
|
455
|
+
[
|
456
|
+
"<a href=\"http://www.metal-archives.com/bands/Aegeon/3540320822\" title=\"Aegeon (FI)\">Aegeon</a>",
|
457
|
+
"<a href=\"http://www.metal-archives.com/albums/Aegeon/Portals_-_Demo_2011/295059\">Portals - Demo 2011</a>" ,
|
458
|
+
"Demo" ,
|
459
|
+
"January 15th, 2011 <!-- 2011-01-15 -->"
|
460
|
+
]
|
461
|
+
,
|
462
|
+
[
|
463
|
+
"<a href=\"http://www.metal-archives.com/bands/Aenaon/3540291245\" title=\"Aenaon (GR)\">Aenaon</a>",
|
464
|
+
"<a href=\"http://www.metal-archives.com/albums/Aenaon/Cendres_Et_Sang/306305\">Cendres Et Sang</a>" ,
|
465
|
+
"Full-length" ,
|
466
|
+
"June 14th, 2011 <!-- 2011-06-14 -->"
|
467
|
+
]
|
468
|
+
,
|
469
|
+
[
|
470
|
+
"<a href=\"http://www.metal-archives.com/bands/Aethenor/84374\" title=\"Aethenor (CH)\">Aethenor</a>",
|
471
|
+
"<a href=\"http://www.metal-archives.com/albums/Aethenor/En_Form_for_Bl%C3%A5/291931\">En Form for Blå</a>" ,
|
472
|
+
"Full-length" ,
|
473
|
+
"January 18th, 2011 <!-- 2011-01-18 -->"
|
474
|
+
]
|
475
|
+
,
|
476
|
+
[
|
477
|
+
"<a href=\"http://www.metal-archives.com/bands/Aethra/25032\" title=\"Aethra (MX)\">Aethra</a>",
|
478
|
+
"<a href=\"http://www.metal-archives.com/albums/Aethra/Time_For_Eternity/301280\">Time For Eternity</a>" ,
|
479
|
+
"EP" ,
|
480
|
+
"March 2011 <!-- 2011-03-00 -->"
|
481
|
+
]
|
482
|
+
,
|
483
|
+
[
|
484
|
+
"<a href=\"http://www.metal-archives.com/bands/Aethyr/3540319275\" title=\"Aethyr (RU)\">Aethyr</a>",
|
485
|
+
"<a href=\"http://www.metal-archives.com/albums/Aethyr/Ave_A/301846\">Ave A</a>" ,
|
486
|
+
"EP" ,
|
487
|
+
"February 13th, 2011 <!-- 2011-02-13 -->"
|
488
|
+
]
|
489
|
+
,
|
490
|
+
[
|
491
|
+
"<a href=\"http://www.metal-archives.com/bands/Aevum/10117\" title=\"Aevum (PE)\">Aevum</a>",
|
492
|
+
"<a href=\"http://www.metal-archives.com/albums/Aevum/The_Creation_Of_Power/296949\">The Creation Of Power</a>" ,
|
493
|
+
"Full-length" ,
|
494
|
+
"February 3rd, 2011 <!-- 2011-02-03 -->"
|
495
|
+
]
|
496
|
+
,
|
497
|
+
[
|
498
|
+
"<a href=\"http://www.metal-archives.com/bands/After_All/6571\" title=\"After All (BE)\">After All</a>",
|
499
|
+
"<a href=\"http://www.metal-archives.com/albums/After_All/Becoming_the_Martyr/298512\">Becoming the Martyr</a>" ,
|
500
|
+
"EP" ,
|
501
|
+
"March 3rd, 2011 <!-- 2011-03-03 -->"
|
502
|
+
]
|
503
|
+
,
|
504
|
+
[
|
505
|
+
"<a href=\"http://www.metal-archives.com/bands/After_Oblivion/118976\" title=\"After Oblivion (BA)\">After Oblivion</a>",
|
506
|
+
"<a href=\"http://www.metal-archives.com/albums/After_Oblivion/Vultures/304746\">Vultures</a>" ,
|
507
|
+
"EP" ,
|
508
|
+
"March 2011 <!-- 2011-03-00 -->"
|
509
|
+
]
|
510
|
+
,
|
511
|
+
[
|
512
|
+
"<a href=\"http://www.metal-archives.com/bands/Aftergod/3540295504\" title=\"Aftergod (CL)\">Aftergod</a>",
|
513
|
+
"<a href=\"http://www.metal-archives.com/albums/Aftergod/The_New_Lead/296081\">The New Lead</a>" ,
|
514
|
+
"Demo" ,
|
515
|
+
"January 28th, 2011 <!-- 2011-01-28 -->"
|
516
|
+
]
|
517
|
+
,
|
518
|
+
[
|
519
|
+
"<a href=\"http://www.metal-archives.com/bands/Against_Nature/46156\" title=\"Against Nature (US)\">Against Nature</a>",
|
520
|
+
"<a href=\"http://www.metal-archives.com/albums/Against_Nature/Stone_Over_Stone/299098\">Stone Over Stone</a>" ,
|
521
|
+
"Full-length" ,
|
522
|
+
"February 24th, 2011 <!-- 2011-02-24 -->"
|
523
|
+
]
|
524
|
+
,
|
525
|
+
[
|
526
|
+
"<a href=\"http://www.metal-archives.com/bands/Agalloch/305\" title=\"Agalloch (US)\">Agalloch</a>",
|
527
|
+
"<a href=\"http://www.metal-archives.com/albums/Agalloch/Whitedivisiongrey/301685\">Whitedivisiongrey</a>" ,
|
528
|
+
"Compilation" ,
|
529
|
+
"February 21st, 2011 <!-- 2011-02-21 -->"
|
530
|
+
]
|
531
|
+
,
|
532
|
+
[
|
533
|
+
"<a href=\"http://www.metal-archives.com/bands/Agathocles/2649\" title=\"Agathocles (BE)\">Agathocles</a>",
|
534
|
+
"<a href=\"http://www.metal-archives.com/albums/Agathocles/Acoustic_Grinder_-_Agathocles/301477\">Acoustic Grinder / Agathocles</a>" ,
|
535
|
+
"Split" ,
|
536
|
+
"March 4th, 2011 <!-- 2011-03-04 -->"
|
537
|
+
]
|
538
|
+
,
|
539
|
+
[
|
540
|
+
"<a href=\"http://www.metal-archives.com/bands/Agathocles/2649\" title=\"Agathocles (BE)\">Agathocles</a>",
|
541
|
+
"<a href=\"http://www.metal-archives.com/albums/Agathocles/Agathocles_-_Ebola_Disco/301476\">Agathocles / Ebola Disco</a>" ,
|
542
|
+
"Split" ,
|
543
|
+
"February 11th, 2011 <!-- 2011-02-11 -->"
|
544
|
+
]
|
545
|
+
,
|
546
|
+
[
|
547
|
+
"<a href=\"http://www.metal-archives.com/bands/Agathocles/2649\" title=\"Agathocles (BE)\">Agathocles</a>",
|
548
|
+
"<a href=\"http://www.metal-archives.com/albums/Agathocles/Agathocles_-_Kerenaneko_-_Prosuck_-_Rvota/301551\">Agathocles / Kerenaneko / Prosuck / Rvota</a>" ,
|
549
|
+
"Split" ,
|
550
|
+
"January 23rd, 2011 <!-- 2011-01-23 -->"
|
551
|
+
]
|
552
|
+
,
|
553
|
+
[
|
554
|
+
"<a href=\"http://www.metal-archives.com/bands/Agathocles/2649\" title=\"Agathocles (BE)\">Agathocles</a>",
|
555
|
+
"<a href=\"http://www.metal-archives.com/albums/Agathocles/Agathocles_-_Violent_Gorge/301582\">Agathocles / Violent Gorge</a>" ,
|
556
|
+
"Split" ,
|
557
|
+
"March 1st, 2011 <!-- 2011-03-01 -->"
|
558
|
+
]
|
559
|
+
,
|
560
|
+
[
|
561
|
+
"<a href=\"http://www.metal-archives.com/bands/Agathocles/2649\" title=\"Agathocles (BE)\">Agathocles</a>",
|
562
|
+
"<a href=\"http://www.metal-archives.com/albums/Agathocles/Mince_Core_History_1997-1999/301547\">Mince Core History 1997-1999</a>" ,
|
563
|
+
"Compilation" ,
|
564
|
+
"March 18th, 2011 <!-- 2011-03-18 -->"
|
565
|
+
]
|
566
|
+
,
|
567
|
+
[
|
568
|
+
"<a href=\"http://www.metal-archives.com/bands/Agathocles/2649\" title=\"Agathocles (BE)\">Agathocles</a>",
|
569
|
+
"<a href=\"http://www.metal-archives.com/albums/Agathocles/Scorn_Of_Mother_Earth/302637\">Scorn Of Mother Earth</a>" ,
|
570
|
+
"EP" ,
|
571
|
+
"March 19th, 2011 <!-- 2011-03-19 -->"
|
572
|
+
]
|
573
|
+
,
|
574
|
+
[
|
575
|
+
"<a href=\"http://www.metal-archives.com/bands/Agathocles/2649\" title=\"Agathocles (BE)\">Agathocles</a> | <a href=\"http://www.metal-archives.com/bands/Laserguys/3540324974\" title=\"Laserguys (NO)\">Laserguys</a>",
|
576
|
+
"<a href=\"http://www.metal-archives.com/albums/Agathocles%7E%7ELaserguys/Agathocles_-_Laserguys/303511\">Agathocles / Laserguys</a>" ,
|
577
|
+
"Split" ,
|
578
|
+
"January 2011 <!-- 2011-01-00 -->"
|
579
|
+
]
|
580
|
+
,
|
581
|
+
[
|
582
|
+
"<a href=\"http://www.metal-archives.com/bands/Age_of_Sinfonia/3540322473\" title=\"Age of Sinfonia (SG)\">Age of Sinfonia</a>",
|
583
|
+
"<a href=\"http://www.metal-archives.com/albums/Age_of_Sinfonia/Capriccio%3A_An_End_%26_a_Beginning/297655\">Capriccio: An End & a Beginning</a>" ,
|
584
|
+
"EP" ,
|
585
|
+
"February 11th, 2011 <!-- 2011-02-11 -->"
|
586
|
+
]
|
587
|
+
,
|
588
|
+
[
|
589
|
+
"<a href=\"http://www.metal-archives.com/bands/Ageless_Oblivion/3540322190\" title=\"Ageless Oblivion (GB)\">Ageless Oblivion</a>",
|
590
|
+
"<a href=\"http://www.metal-archives.com/albums/Ageless_Oblivion/Temples_of_Transcendent_Evolution/297240\">Temples of Transcendent Evolution</a>" ,
|
591
|
+
"Full-length" ,
|
592
|
+
"February 7th, 2011 <!-- 2011-02-07 -->"
|
593
|
+
]
|
594
|
+
,
|
595
|
+
[
|
596
|
+
"<a href=\"http://www.metal-archives.com/bands/Aggression_Tales/102113\" title=\"Aggression Tales (BR)\">Aggression Tales</a>",
|
597
|
+
"<a href=\"http://www.metal-archives.com/albums/Aggression_Tales/Random_Acts_of_Physical_Disgust/302873\">Random Acts of Physical Disgust</a>" ,
|
598
|
+
"Full-length" ,
|
599
|
+
"March 31st, 2011 <!-- 2011-03-31 -->"
|
600
|
+
]
|
601
|
+
,
|
602
|
+
[
|
603
|
+
"<a href=\"http://www.metal-archives.com/bands/Agincourt/3540278533\" title=\"Agincourt (GB)\">Agincourt</a>",
|
604
|
+
"<a href=\"http://www.metal-archives.com/albums/Agincourt/Angels_of_Mons/295301\">Angels of Mons</a>" ,
|
605
|
+
"Full-length" ,
|
606
|
+
"March 1st, 2011 <!-- 2011-03-01 -->"
|
607
|
+
]
|
608
|
+
,
|
609
|
+
[
|
610
|
+
"<a href=\"http://www.metal-archives.com/bands/Agorphos/3540324922\" title=\"Agorphos (FR)\">Agorphos</a>",
|
611
|
+
"<a href=\"http://www.metal-archives.com/albums/Agorphos/Origins/301468\">Origins</a>" ,
|
612
|
+
"EP" ,
|
613
|
+
"January 27th, 2011 <!-- 2011-01-27 -->"
|
614
|
+
]
|
615
|
+
,
|
616
|
+
[
|
617
|
+
"<a href=\"http://www.metal-archives.com/bands/Ah_Ciliz/3540324610\" title=\"Ah Ciliz (US)\">Ah Ciliz</a>",
|
618
|
+
"<a href=\"http://www.metal-archives.com/albums/Ah_Ciliz/Reawakening_Ancient_Sorrow/301011\">Reawakening Ancient Sorrow</a>" ,
|
619
|
+
"Full-length" ,
|
620
|
+
"March 10th, 2011 <!-- 2011-03-10 -->"
|
621
|
+
]
|
622
|
+
,
|
623
|
+
[
|
624
|
+
"<a href=\"http://www.metal-archives.com/bands/Ah-Puch/3540320268\" title=\"Ah-Puch (MX)\">Ah-Puch</a> | <a href=\"http://www.metal-archives.com/bands/Cold/3540322720\" title=\"Cold (DE)\">Cold</a>",
|
625
|
+
"<a href=\"http://www.metal-archives.com/albums/Ah-Puch%7E%7ECold/Depressive_Way_of_My_Life/298030\">Depressive Way of My Life</a>" ,
|
626
|
+
"Split" ,
|
627
|
+
"February 15th, 2011 <!-- 2011-02-15 -->"
|
628
|
+
]
|
629
|
+
,
|
630
|
+
[
|
631
|
+
"<a href=\"http://www.metal-archives.com/bands/Airs/3540301744\" title=\"Airs (US)\">Airs</a>",
|
632
|
+
"<a href=\"http://www.metal-archives.com/albums/Airs/Airs_-_Lunaire/300203\">Airs / Lunaire</a>" ,
|
633
|
+
"Split" ,
|
634
|
+
"April 2011 <!-- 2011-04-00 -->"
|
635
|
+
]
|
636
|
+
,
|
637
|
+
[
|
638
|
+
"<a href=\"http://www.metal-archives.com/bands/Ajattara/2052\" title=\"Ajattara (FI)\">Ajattara</a>",
|
639
|
+
"<a href=\"http://www.metal-archives.com/albums/Ajattara/Murhat/294032\">Murhat</a>" ,
|
640
|
+
"Full-length" ,
|
641
|
+
"February 2nd, 2011 <!-- 2011-02-02 -->"
|
642
|
+
]
|
643
|
+
,
|
644
|
+
[
|
645
|
+
"<a href=\"http://www.metal-archives.com/bands/Akem_Manah/3540310322\" title=\"Akem Manah (US)\">Akem Manah</a>",
|
646
|
+
"<a href=\"http://www.metal-archives.com/albums/Akem_Manah/Horror_In_The_Eyes/302300\">Horror In The Eyes</a>" ,
|
647
|
+
"EP" ,
|
648
|
+
"March 29th, 2011 <!-- 2011-03-29 -->"
|
649
|
+
]
|
650
|
+
,
|
651
|
+
[
|
652
|
+
"<a href=\"http://www.metal-archives.com/bands/Akin/19061\" title=\"Akin (FR)\">Akin</a>",
|
653
|
+
"<a href=\"http://www.metal-archives.com/albums/Akin/The_Way_Things_End/304650\">The Way Things End</a>" ,
|
654
|
+
"Full-length" ,
|
655
|
+
"April 18th, 2011 <!-- 2011-04-18 -->"
|
656
|
+
]
|
657
|
+
,
|
658
|
+
[
|
659
|
+
"<a href=\"http://www.metal-archives.com/bands/Akitsa/2224\" title=\"Akitsa (CA)\">Akitsa</a>",
|
660
|
+
"<a href=\"http://www.metal-archives.com/albums/Akitsa/Aupr%C3%A8s_de_la_mort%2C_triomphant%21/302154\">Auprès de la mort, triomphant!</a>" ,
|
661
|
+
"EP" ,
|
662
|
+
"March 23rd, 2011 <!-- 2011-03-23 -->"
|
663
|
+
]
|
664
|
+
,
|
665
|
+
[
|
666
|
+
"<a href=\"http://www.metal-archives.com/bands/Aksumite/3540327724\" title=\"Aksumite (US)\">Aksumite</a>",
|
667
|
+
"<a href=\"http://www.metal-archives.com/albums/Aksumite/The_Gleam_of_Wetted_Lips/305934\">The Gleam of Wetted Lips</a>" ,
|
668
|
+
"Full-length" ,
|
669
|
+
"May 3rd, 2011 <!-- 2011-05-03 -->"
|
670
|
+
]
|
671
|
+
,
|
672
|
+
[
|
673
|
+
"<a href=\"http://www.metal-archives.com/bands/Akuma/3540325570\" title=\"Akuma (BR)\">Akuma</a>",
|
674
|
+
"<a href=\"http://www.metal-archives.com/albums/Akuma/Pagan_Warrior/302478\">Pagan Warrior</a>" ,
|
675
|
+
"EP" ,
|
676
|
+
"February 10th, 2011 <!-- 2011-02-10 -->"
|
677
|
+
]
|
678
|
+
,
|
679
|
+
[
|
680
|
+
"<a href=\"http://www.metal-archives.com/bands/Al_Azif/70795\" title=\"Al Azif (ES)\">Al Azif</a>",
|
681
|
+
"<a href=\"http://www.metal-archives.com/albums/Al_Azif/La_Nueva_Plaga/300716\">La Nueva Plaga</a>" ,
|
682
|
+
"EP" ,
|
683
|
+
"January 2011 <!-- 2011-01-00 -->"
|
684
|
+
]
|
685
|
+
,
|
686
|
+
[
|
687
|
+
"<a href=\"http://www.metal-archives.com/bands/Alarido/3540323653\" title=\"Alarido (US)\">Alarido</a>",
|
688
|
+
"<a href=\"http://www.metal-archives.com/albums/Alarido/Demo_I/299455\">Demo I</a>" ,
|
689
|
+
"Demo" ,
|
690
|
+
"January 2011 <!-- 2011-01-00 -->"
|
691
|
+
]
|
692
|
+
,
|
693
|
+
[
|
694
|
+
"<a href=\"http://www.metal-archives.com/bands/Alcoholic_Nightmare/3540256837\" title=\"Alcoholic Nightmare (BE)\">Alcoholic Nightmare</a>",
|
695
|
+
"<a href=\"http://www.metal-archives.com/albums/Alcoholic_Nightmare/Demo/303082\">Demo</a>" ,
|
696
|
+
"Demo" ,
|
697
|
+
"April 2nd, 2011 <!-- 2011-04-02 -->"
|
698
|
+
]
|
699
|
+
,
|
700
|
+
[
|
701
|
+
"<a href=\"http://www.metal-archives.com/bands/Alcoholism/3540326304\" title=\"Alcoholism (DE)\">Alcoholism</a>",
|
702
|
+
"<a href=\"http://www.metal-archives.com/albums/Alcoholism/Abh%C3%A4ngigkeit/303798\">Abhängigkeit</a>" ,
|
703
|
+
"Demo" ,
|
704
|
+
"April 2011 <!-- 2011-04-00 -->"
|
705
|
+
]
|
706
|
+
]
|
707
|
+
}
|