Jump to content

Module:Link and The Parable: Difference between pages

(Difference between pages)
658 bytes added ,  28 May 2020
No edit summary
 
 
Line 1: Line 1:
local str = {}
{{Infobox album
| name      = The Parable
| type      = studio
| artist    = [[Jimmy Chamberlin Complex]]
| cover      = JimmyCCParable.JPG
| alt        =
| released  = November 6, 2017
| recorded  = 2017
| venue      =
| studio    =
| genre      = Jazz fusion
| length    = 36:09
| label      = Make Records
| producer  = [[Billy Mohler]]
| prev_title = [[Life Begins Again]]
| prev_year  = 2005
| next_title =
| next_year  =
}}


function str.producer( frame )
'''''The Parable''''' is the second studio album by the [[Jimmy Chamberlin Complex]] (side project band of [[The Smashing Pumpkins]]/[[Zwan]] drummer [[Jimmy Chamberlin]]). It was released on November 6, 2017 as a digital download, and the physical edition was released 2 weeks after the digital download's release.<ref>[https://www.popmatters.com/jimmy-chamberlin-complex-the-parable-2510165457.html PopMatters]</ref> This is the first album since the 2005 debut, ''[[Life Begins Again]]''. The album was produced by Chamberlin's longtime collaborator, Billy Mohler.
local new_args = str._getParameters( frame.args, { 'source' } )
local content = new_args['source'] or ''
if content == '' then
return content
end


for _i, subject in ipairs({ 'Billy Corgan', 'Butch Vig' }) do
== Track listing ==
mw.ustring.gsub( content, subject, '[[:Category:Songs produced by ' .. subject .. '|' .. subject .. ']]' )
{{track listing
end
| all_writing = [[Jimmy Chamberlin]]
| title1 = [[Horus and the Pharaoh]]
| length1 = 6:19
| title2 = [[The Parable (song)|The Parable]]
| length2 = 6:50
| title3 = [[Thoughts of Days Long Past]]
| length3 = 4:17
| title4 = [[El Born]]
| length4 = 6:12
| title5 = [[Magick Moon]]
| length5 = 4:52
| title6 = [[Dance of the Grebe]]
| length6 = 7:40
}}


return content
== Personnel ==
end
* [[Jimmy Chamberlin]] – drums, percussion
* Billy Mohler – bass guitar, production
* Chris Speed – clarinet, saxophone
* Sean Woolstenhulme – guitar
* Randy Ingram – keyboard
* Husky Hoskulds – engineering
* Nate Wood – mastering


--[[
== References ==
Helper function that populates the argument list given that user may need to use a mix of
{{reflist}}
named and unnamed parameters.  This is relevant because named parameters are not
{{DEFAULTSORT:Parable (album), The}}
identical to unnamed parameters due to string trimming, and when dealing with strings
we sometimes want to either preserve or remove that whitespace depending on the application.
]]
function str._getParameters( frame_args, arg_list )
local new_args = {}
local index = 1
local value
 
for _, arg in ipairs( arg_list ) do
value = frame_args[arg]
if value == nil then
value = frame_args[index]
index = index + 1
end
new_args[arg] = value
end
 
return new_args
end
 
return str