Compare commits
4 Commits
ae5bfc12b4
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 904d14d083 | |||
|
7170015a0e
|
|||
|
23f91a0410
|
|||
|
2be718287f
|
@@ -755,9 +755,12 @@ fieldset > table td input[type="radio"] {
|
|||||||
}
|
}
|
||||||
#show_notes pre
|
#show_notes pre
|
||||||
{
|
{
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
#show_notes code {
|
||||||
|
display: inline-block;
|
||||||
background-color: var(--show-notes-pre-background);
|
background-color: var(--show-notes-pre-background);
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
overflow: scroll;
|
|
||||||
padding: 0.1em 0;
|
padding: 0.1em 0;
|
||||||
}
|
}
|
||||||
nav.episodes {
|
nav.episodes {
|
||||||
|
|||||||
12
site.cfg
12
site.cfg
@@ -171,15 +171,3 @@ media_file_extension: spx
|
|||||||
[comments]
|
[comments]
|
||||||
root_template: rss-comments.tpl.xml
|
root_template: rss-comments.tpl.xml
|
||||||
filename: comments.rss
|
filename: comments.rss
|
||||||
|
|
||||||
[correspondent_m3u]
|
|
||||||
root_template: m3u.tpl.m3u8
|
|
||||||
content: m3u-correspondent.tpl.m3u8
|
|
||||||
filename: correspondents/[id]/playlist.m3u8
|
|
||||||
multipage: true
|
|
||||||
|
|
||||||
[series_episodes_m3u]
|
|
||||||
root_template: m3u.tpl.m3u8
|
|
||||||
content: m3u-series_episodes.tpl.m3u8
|
|
||||||
filename: series/[id].m3u8
|
|
||||||
multipage: true
|
|
||||||
|
|||||||
@@ -29,7 +29,7 @@
|
|||||||
<p><label>email:</label> <u><!--% this_host.email %--></u></p>
|
<p><label>email:</label> <u><!--% this_host.email %--></u></p>
|
||||||
<div><label>profile:</label> <!--% this_host.profile %--></div>
|
<div><label>profile:</label> <!--% this_host.profile %--></div>
|
||||||
<p><label>episodes:</label> <strong><!--% hpr_show_count + twt_show_count %--></strong></p>
|
<p><label>episodes:</label> <strong><!--% hpr_show_count + twt_show_count %--></strong></p>
|
||||||
<p><a href="<!--% absolute_url(baseurl,'//correspondents') %-->/<!--% zero_pad_left(this_host.hostid) %-->/playlist.m3u8">Download the M3U playlist</a>.</p>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="lane stack">
|
<div class="lane stack">
|
||||||
<!--% FOREACH hpr_show IN hpr_shows; %-->
|
<!--% FOREACH hpr_show IN hpr_shows; %-->
|
||||||
|
|||||||
@@ -13,7 +13,6 @@
|
|||||||
<li>Date of earliest show: <!--% series.earliest_show %--></li>
|
<li>Date of earliest show: <!--% series.earliest_show %--></li>
|
||||||
<li>Date of latest show: <!--% series.latest_show %--></li>
|
<li>Date of latest show: <!--% series.latest_show %--></li>
|
||||||
<li>Series RSS feeds: <a href="<!--% absolute_path(baseurl) %-->hpr_ogg_rss.php?series=<!--% series.id %-->&full=1&gomax=1">ogg</a>, <a href="<!--% absolute_path(baseurl) %-->hpr_spx_rss.php?series=<!--% series.id %-->&full=1&gomax=1">spx</a>, <a href="<!--% absolute_path(baseurl) %-->hpr_mp3_rss.php?series=<!--% series.id %-->&full=1&gomax=1">mp3</a></li>
|
<li>Series RSS feeds: <a href="<!--% absolute_path(baseurl) %-->hpr_ogg_rss.php?series=<!--% series.id %-->&full=1&gomax=1">ogg</a>, <a href="<!--% absolute_path(baseurl) %-->hpr_spx_rss.php?series=<!--% series.id %-->&full=1&gomax=1">spx</a>, <a href="<!--% absolute_path(baseurl) %-->hpr_mp3_rss.php?series=<!--% series.id %-->&full=1&gomax=1">mp3</a></li>
|
||||||
<li><a href="<!--% absolute_url(baseurl,'//series') %-->/<!--% zero_pad_left(series.id) %-->.m3u8">Download the M3U playlist</a></li>
|
|
||||||
</ul>
|
</ul>
|
||||||
<p><em><!--% series.description %--></em></p>
|
<p><em><!--% series.description %--></em></p>
|
||||||
<section id="series_episodes" class="lane stack">
|
<section id="series_episodes" class="lane stack">
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
<!--% USE DBI(constants.driver) %-->
|
|
||||||
<!--% FOREACH host IN DBI.query(
|
|
||||||
'select h.hostid from hosts as h'
|
|
||||||
) %-->
|
|
||||||
,<!--% host.hostid %-->
|
|
||||||
<!--% END %-->
|
|
||||||
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
<!--% USE DBI(constants.driver, constants.user, constants.password) %-->
|
|
||||||
<!--% FOREACH series IN DBI.query(
|
|
||||||
'select s.id from miniseries as s'
|
|
||||||
) %-->
|
|
||||||
,<!--% series.id %-->
|
|
||||||
<!--% END %-->
|
|
||||||
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
<!--% PROCESS 'shared-utils.tpl.html' %-->
|
|
||||||
<!--% PROCESS 'queries-correspondent.tpl.html' %-->
|
|
||||||
<!--% USE DBI(constants.driver) %-->
|
|
||||||
<!--% results_hpr_shows = DBI.prepare(query_hpr_shows) %-->
|
|
||||||
<!--% hpr_shows = results_hpr_shows.execute(id); %-->
|
|
||||||
<!--% FOREACH hpr_show IN hpr_shows; %-->
|
|
||||||
#EXTINF: <!--% hpr_show.duration %-->,<!--% hpr_show.host %--> - <!--% hpr_show.title %-->
|
|
||||||
|
|
||||||
|
|
||||||
<!--% media_path(hpr_show.id, 'hpr', 'mp3', baseurl, media_baseurl) %-->
|
|
||||||
|
|
||||||
|
|
||||||
<!--% END %-->
|
|
||||||
<!--% results_hpr_shows = DBI.prepare(query_twt_shows) %-->
|
|
||||||
<!--% twt_result_status = results_twt_show_count.execute(id); %-->
|
|
||||||
<!--% twt_shows = results_hpr_shows.execute(id); %-->
|
|
||||||
<!--% FOREACH hpr_show IN twt_shows; %-->
|
|
||||||
#EXTINF: <!--% hpr_show.duration %-->,<!--% hpr_show.host %--> - <!--% hpr_show.title %-->
|
|
||||||
|
|
||||||
|
|
||||||
<!--% media_path(hpr_show.id, 'twt', 'mp3', baseurl, media_baseurl) %-->
|
|
||||||
|
|
||||||
|
|
||||||
<!--% END %-->
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
<!--% PROCESS 'shared-utils.tpl.html' %-->
|
|
||||||
<!--% PROCESS 'queries-series_episodes.tpl.html' %-->
|
|
||||||
<!--% USE DBI(constants.driver) %-->
|
|
||||||
<!--% results_hpr_shows = DBI.prepare(query_shows_sql) %-->
|
|
||||||
<!--% hpr_shows = results_hpr_shows.execute(id); %-->
|
|
||||||
<!--% FOREACH hpr_show IN hpr_shows; %-->
|
|
||||||
#EXTINF: <!--% hpr_show.duration %-->,<!--% hpr_show.host %--> - <!--% hpr_show.title %-->
|
|
||||||
|
|
||||||
|
|
||||||
<!--% media_path(hpr_show.id, 'hpr', 'mp3', baseurl, media_baseurl) %-->
|
|
||||||
|
|
||||||
|
|
||||||
<!--% END %-->
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
#EXTM3U
|
|
||||||
<!--% INCLUDE $content %-->
|
|
||||||
Reference in New Issue
Block a user