Open Up Your Love
Open Up Your Love is an album by The Whispers. Released in 1977, this album reached number 23 on the Billboard Soul Albums chart. This was their last album on Don Cornelius's Soul Train Records before transitioning over to manager Dick Griffey's SOLAR Records.
Open Up Your Love | ||||
---|---|---|---|---|
Studio album by | ||||
Released | 1977 | |||
Genre | Soul, funk, disco | |||
Label | Soul Train | |||
Producer | Don Cornelius, Dick Griffey, The Whispers | |||
The Whispers chronology | ||||
|
Review scores | |
---|---|
Source | Rating |
Allmusic |
The single "I'm Gonna Make You My Wife" was featured in the motion picture Waiting to Exhale, but did not appear on the soundtrack.
Track listing
No. | Title | Writer(s) | Length |
---|---|---|---|
1. | "Make It with You" | David Gates | 4:59 |
2. | "Chocolate Girl" | Wayne Bell | 3:38 |
3. | "Love Is a Dream" | Wayne Bell | 4:49 |
4. | "Open Up Your Love" | Wayne Bell | 4:41 |
No. | Title | Writer(s) | Length |
---|---|---|---|
5. | "I Fell in Love Last Night (At the Disco)" | Malcolm Anthony | 4:27 |
6. | "You Are Number One" | Malcolm Anthony | 3:59 |
7. | "You Never Miss The Water ('Til Your Well Runs Dry)" | Don Cornelius | 3:34 |
8. | "I'm Gonna Make You My Wife" | Wayne Bell | 4:59 |
Charts
Chart (1977) | Peak position |
---|---|
Billboard Pop Albums[2] | 65 |
Billboard Top Soul Albums[2] | 23 |
Singles
Year | Single | Chart positions[3] | |
---|---|---|---|
US Pop |
US R&B | ||
1977 | "Make It With You" | 94 | 10 |
1978 | "I'm Gonna Make You My Wife" | - | 54 |
gollark: As of now, my code does```nimproc renderToHtml*(input: string): string = let wlRegex = re"\[\[([^:\]]+):?([^\]]+)?\]\]" let opt = CMARK_OPT_UNSAFE or CMARK_OPT_FOOTNOTES or CMARK_OPT_STRIKETHROUGH_DOUBLE_TILDE or CMARK_OPT_TABLE_PREFER_STYLE_ATTRIBUTES # create parser instance let str: cstring = input len: csize_t = len(input).csize_t parser: ParserPtr = cmark_parser_new(opt.cint) if parser == nil: raise newException(CatchableError, "failed to initialize parser") defer: cmark_parser_free(parser) [further initialization stuff] # parse document, get AST cmark_parser_feed(parser, str, len) let doc = cmark_parser_finish(parser) defer: cmark_node_free(doc) if doc == nil: raise newException(CatchableError, "parsing failed - should not occur") # iterate over AST using built-in cmark-gfm AST iteration thing for (evType, node) in cmarkTree(doc): # if it is a text node [OPERATIONS ON RELEVANT NODE THING] let html: cstring = cmark_render_html(doc, opt.cint, cmark_parser_get_syntax_extensions(parser)) defer: free(html) result = $html```
gollark: cmark. I will explain.
gollark: Hmm. Gibson, you use nim, yes? How can I nicely™ abstract this C library?
gollark: Hi.
gollark: Why are you not just... using an actual IRC client?
References
- Hamilton, Andrew. The Whispers: Open Up Your Love > Review at AllMusic. Retrieved 18 October 2011.
- "The Whispers US albums chart history". allmusic.com. Retrieved 2011-04-14.
- "The Whispers US singles chart history". allmusic.com. Retrieved 2011-04-14.
External links
- Open Up Your Love at Discogs (list of releases)
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.