Skip to content

Commit

Permalink
Added GRILL001 and GRILL002. Fixed some data
Browse files Browse the repository at this point in the history
  • Loading branch information
davorg committed May 12, 2021
1 parent 02ef3b6 commit a0c94ce
Show file tree
Hide file tree
Showing 85 changed files with 4,398 additions and 277 deletions.
6 changes: 3 additions & 3 deletions bin/load
Expand Up @@ -21,10 +21,10 @@ foreach (qw[Track Album Artist Song]) {
my $album;
while (<$dat_fh>) {
chomp;
if (/^\d/) {
load_track($_, $album);
} else {
if (/^GRILL/) {
$album = load_album($_);
} else {
load_track($_, $album);
}
}

Expand Down
36 changes: 32 additions & 4 deletions dat/albums.dat
@@ -1,5 +1,33 @@
GRILL CD 001
GRILL CD 002
GRILL 001 1987 The Cutting Edge
A1 The Oyster Band Hal-an Tow
A2 The Mekons Can't Find My Money
A3 We Free Kings Death Of The Wild Colonial Boy
A4 Malcolms Interview Sea Never Dry
A5 Edward II & the Red Hot Polkas The Walls Of Butlins
A6 Clive Gregson & Christine Collister We're Not Over Yet
B1 Rory McLeod Baksheesh Dance
B2 Mark T. & The Brickbats Green Brooms
B3 Gone To Earth Tippin' It Up To Nancy
B4 Pressgang Flanders
B5 Deighton Family Forked Deer
B6 Black Spot Champions Hopping Down In Kent
B7 Andrew Cronshaw A Debatable Land
GRILL 002 1988 Hot Cookies
A1 The Horseflies Human Fly
A2 Michelle Shocked The L & N Don't Stop Here Anymore
A3 The Oyster Band Hal-An-Tow (Remix)
A4 Sweet Honey in the Rock Chile Your Waters Run Red Through Soweto
A5 S.E. Rogie Koneh Pelelawoe
A6 The Mekons Robin Hood
A7 Edward II & the Red Hot Polkas Dawn Run
A8 Clive Gregson & Christine Collister When My Ship Comes In
B1 The Oyster Band The Oxford Girl
B2 Michelle Shocked Black Widow
B3 The Happy End The Ballad Of John Henry
B4 Rory McLeod Farewell Welfare
B5 Edward II & the Red Hot Polkas Stephen Baldwin's 3 Hand Dub
B6 The Real Sounds Wende Zako
B7 The Mekons And Michelle Shocked Prince Of Darkness
GRILL CD 003 1990 Hootenanny
01 Ancient Beatbox Raining
02 Colorblind James Experience Polka Girl
Expand Down Expand Up @@ -84,7 +112,7 @@ GRILL CD 007 1994 Cooking Vinyl Sampler Volume 3
05 Goats Don't Shave The Evictions
06 Weddings Parties Anything Fathers Day
07 June Tabor False, False
08 Michelle Shocked The L&N Don't Stop Here Anymore
08 Michelle Shocked The L & N Don't Stop Here Anymore
09 Incantation Theme from the Mission
10 Rev Hammer Spanish Lullaby
11 Andy White Street Scenes from My Heart
Expand Down Expand Up @@ -225,7 +253,7 @@ GRILL CD 014 1998 Cooking Vinyl Sampler Volume 7
08 Jackie Leven Night Lillies
09 The Church Louisiana
10 Rev Hammer England's New Chains
11 Waz Swallow
11 WAZ Swallow
12 Savourna Stevenson & Davy Spillane Calman The Wolf
13 Bert Jansch All I Got
14 Pat Gallagher & Goats Don't Shave Gola
Expand Down
Binary file modified dat/cook.db
Binary file not shown.
2 changes: 1 addition & 1 deletion dat/cook.sql
@@ -1,4 +1,4 @@
CREATE TABLE artist (id integer primary key autoincrement, name char(200));
CREATE TABLE album (id integer primary key autoincrement, cat char(20), year integer, title char(100));
CREATE TABLE song (id integer primary key autoincrement, title char(200));
CREATE TABLE track (id integer primary key autoincrement, number integer, song integer, album integer, artist integer, foreign key(song) references song(id), foreign key(album) references album(id), foreign key (artist) references artist(id));
CREATE TABLE track (id integer primary key autoincrement, number char(5), song integer, album integer, artist integer, foreign key(song) references song(id), foreign key(album) references album(id), foreign key (artist) references artist(id));
2 changes: 1 addition & 1 deletion docs/about.html
Expand Up @@ -53,7 +53,7 @@
<h1>About This Site</h1>
<p>Cooking Vinyl Records is an independent record company based in the UK.
They specialise in producing and releasing folk, world and independent music.</p>
<p>Between 1990 and 2008, they released a number of compilation albums which
<p>Between 1987 and 2008, they released a number of compilation albums which
show-cased the best of their artists. For me and a small group of friends,
these compilations became essential listening as they introduced us to a large
number of our favourite acts.</p>
Expand Down
164 changes: 164 additions & 0 deletions docs/albums/grill001.html
@@ -0,0 +1,164 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
<title>GRILL 001: The Cutting Edge</title>
<!-- link rel="stylesheet" href="style.css" type="text/css" / -->
<script type="text/javascript"
src="https://code.jquery.com/jquery-3.1.1.slim.min.js"
integrity="sha256-/SIrNqv8h6QGKDuNoLGA4iret+kyesCkHGzVUUV0shc="
crossorigin="anonymous"></script>
<script type="text/javascript" src="/js/jquery.tablesorter.min.js"></script>
<script type="text/javascritp">
$(document).ready(function() {
$("#datatable").tablesorter();
});
</script>
</head>
<body>
<div class="container">
<div class="header">
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">Cooking Vinyl Compilations</a>
</div>

<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="/albums/">Albums</a></li>
<li><a href="/artists/">Artists</a></li>
<li><a href="/songs/">Songs</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="/about.html">About</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
</div>

<div class="jumbotron">

<h1> The Cutting Edge</h1>

<p><a href="index.html">Return to list</a></p>

<table class="table table-striped table-condensed table-hover table-bordered">
<tr>
<th>Code</th>
<td>GRILL 001</td>
</tr>
<tr>
<th>Released</th>
<td>1987</td>
</tr>
</table>
<table id="datatable" class="tablesorter table table-striped table-condensed table-hover table-bordered">
<thead>
<tr>
<th>&nbsp;</th><th>Title</th><th>Artist</th>
</tr>
</thead>
<tbody>
<tr>
<td>A1</td>
<td><a href="/songs/hal_an_tow.html">Hal-an Tow</a></td>
<td><a href="/artists/the_oyster_band.html">The Oyster Band</a></td>
</tr>
<tr>
<td>A2</td>
<td><a href="/songs/can_t_find_my_money.html">Can't Find My Money</a></td>
<td><a href="/artists/the_mekons.html">The Mekons</a></td>
</tr>
<tr>
<td>A3</td>
<td><a href="/songs/death_of_the_wild_colonial_boy.html">Death Of The Wild Colonial Boy</a></td>
<td><a href="/artists/we_free_kings.html">We Free Kings</a></td>
</tr>
<tr>
<td>A4</td>
<td><a href="/songs/sea_never_dry.html">Sea Never Dry</a></td>
<td><a href="/artists/malcolms_interview.html">Malcolms Interview</a></td>
</tr>
<tr>
<td>A5</td>
<td><a href="/songs/the_walls_of_butlins.html">The Walls Of Butlins</a></td>
<td><a href="/artists/edward_ii_the_red_hot_polkas.html">Edward II & the Red Hot Polkas</a></td>
</tr>
<tr>
<td>A6</td>
<td><a href="/songs/we_re_not_over_yet.html">We're Not Over Yet</a></td>
<td><a href="/artists/clive_gregson_christine_collister.html">Clive Gregson & Christine Collister</a></td>
</tr>
<tr>
<td>B1</td>
<td><a href="/songs/baksheesh_dance.html">Baksheesh Dance</a></td>
<td><a href="/artists/rory_mcleod.html">Rory McLeod</a></td>
</tr>
<tr>
<td>B2</td>
<td><a href="/songs/green_brooms.html">Green Brooms</a></td>
<td><a href="/artists/mark_t_the_brickbats.html">Mark T. & The Brickbats</a></td>
</tr>
<tr>
<td>B3</td>
<td><a href="/songs/tippin_it_up_to_nancy.html">Tippin' It Up To Nancy</a></td>
<td><a href="/artists/gone_to_earth.html">Gone To Earth</a></td>
</tr>
<tr>
<td>B4</td>
<td><a href="/songs/flanders.html">Flanders</a></td>
<td><a href="/artists/pressgang.html">Pressgang</a></td>
</tr>
<tr>
<td>B5</td>
<td><a href="/songs/forked_deer.html">Forked Deer</a></td>
<td><a href="/artists/deighton_family.html">Deighton Family</a></td>
</tr>
<tr>
<td>B6</td>
<td><a href="/songs/hopping_down_in_kent.html">Hopping Down In Kent</a></td>
<td><a href="/artists/black_spot_champions.html">Black Spot Champions</a></td>
</tr>
<tr>
<td>B7</td>
<td><a href="/songs/a_debatable_land.html">A Debatable Land</a></td>
<td><a href="/artists/andrew_cronshaw.html">Andrew Cronshaw</a></td>
</tr>
</tbody>
</table>

</div>

<footer class="footer">
<div class="addthis_native_toolbox"></div>
Site created by <a href="https://twitter.com/davorg">Dave Cross</a><br>
Code on <a href="https://github.com/davorg/cookingvinyl/">Github</a>
</footer>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-56332-58', 'auto');
ga('send', 'pageview');

</script>
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-56165a02d0fe210e" async="async"></script>
</body>
</html>

0 comments on commit a0c94ce

Please sign in to comment.