2022-06-29 14:42:10 +00:00
|
|
|
# Configure the Perl DBI driver to allow the templates communicate
|
|
|
|
# with the database.
|
|
|
|
# dbi:<driver name [SQLite, CSV, ADO, mSQL, etc.]>:<database name>
|
|
|
|
[DBI]
|
|
|
|
driver: dbi:SQLite:hpr.db
|
|
|
|
user:
|
|
|
|
password:
|
|
|
|
|
2022-06-29 15:03:32 +00:00
|
|
|
# Configure the root template page which pulls in the navigation and
|
2022-07-31 23:25:56 +00:00
|
|
|
# content templates used by each page. An optional baseurl property may
|
|
|
|
# be defined. This is useful when opening files directly from local
|
|
|
|
# filesystem to allow relative paths to work.
|
2022-06-29 15:03:32 +00:00
|
|
|
[root_template]
|
|
|
|
content: page.tpl.html
|
2022-07-31 23:25:56 +00:00
|
|
|
#baseurl: OPTIONAL [i.e. file://<full path to local website directory>]
|
2022-06-29 15:03:32 +00:00
|
|
|
|
2022-06-28 09:25:36 +00:00
|
|
|
# Configure the navigation menu and the content templates for each page
|
|
|
|
# of the site:
|
2022-08-06 14:51:32 +00:00
|
|
|
#
|
|
|
|
# [page_name] REQUIRED
|
|
|
|
# navigation: REQUIRED <name of navigation template>
|
|
|
|
# content: REQUIRED <name of page content template>
|
2022-07-29 01:59:38 +00:00
|
|
|
|
|
|
|
# Configure filename if default name is not desired
|
|
|
|
# (Default is "ROOT/[page_name].html"):
|
|
|
|
#
|
|
|
|
# filename: OPTIONAL <relative path from ROOT -- optional>
|
|
|
|
# * <directory path> -- Must end in forward slash. File will be created
|
|
|
|
# in this path with the default naming scheme.
|
|
|
|
# * <file name> -- May include a relative path. Should include the file
|
|
|
|
# extension. May have [id] marker in path or name which
|
|
|
|
# will be substituted with a padded page id.
|
|
|
|
|
2022-07-29 02:04:15 +00:00
|
|
|
# Configure pages which use the same content template:
|
|
|
|
#
|
|
|
|
# multipage: OPTIONAL true | false (DEFAULT = false)
|
2022-06-28 09:25:36 +00:00
|
|
|
|
|
|
|
[index]
|
2022-07-02 02:07:06 +00:00
|
|
|
navigation: navigation-main.tpl.html
|
2022-06-28 09:25:36 +00:00
|
|
|
content: content-index.tpl.html
|
|
|
|
|
|
|
|
[about]
|
|
|
|
navigation: navigation-about.tpl.html
|
|
|
|
content: content-about.tpl.html
|
|
|
|
|
|
|
|
[correspondents]
|
|
|
|
navigation: navigation-about.tpl.html
|
|
|
|
content: content-correspondents.tpl.html
|
2022-07-29 01:59:38 +00:00
|
|
|
filename: correspondents/index.html
|
2022-06-28 09:25:36 +00:00
|
|
|
|
|
|
|
[contact]
|
|
|
|
navigation: navigation-about.tpl.html
|
|
|
|
content: content-contact.tpl.html
|
|
|
|
|
2022-07-29 02:04:15 +00:00
|
|
|
[correspondent]
|
|
|
|
navigation: navigation-about.tpl.html
|
|
|
|
content: content-correspondent.tpl.html
|
|
|
|
multipage: true
|
2022-08-06 14:51:32 +00:00
|
|
|
filename: correspondents/[id].html
|
2022-08-03 01:57:56 +00:00
|
|
|
|
|
|
|
[series]
|
|
|
|
navigation: navigation-get-shows.tpl.html
|
|
|
|
content: content-series.tpl.html
|
|
|
|
filename: series/index.html
|
2022-08-05 19:51:59 +00:00
|
|
|
|
2022-08-06 16:14:47 +00:00
|
|
|
[series_episode]
|
2022-08-05 19:51:59 +00:00
|
|
|
navigation: navigation-get-shows.tpl.html
|
2022-08-06 16:14:47 +00:00
|
|
|
content: content-series_episode.tpl.html
|
2022-08-05 19:51:59 +00:00
|
|
|
multipage: true
|
|
|
|
filename: series/[id].html
|
2022-08-05 21:44:58 +00:00
|
|
|
|
|
|
|
[episodes]
|
|
|
|
navigation: navigation-get-shows.tpl.html
|
|
|
|
content: content-episodes.tpl.html
|
2022-08-06 14:51:32 +00:00
|
|
|
filename: eps/index.html
|
|
|
|
|
2022-08-07 18:09:44 +00:00
|
|
|
[episode]
|
|
|
|
navigation: navigation-get-shows.tpl.html
|
|
|
|
content: content-episode.tpl.html
|
|
|
|
multipage: true
|
|
|
|
filename: eps/hpr[id]/index.html
|
2022-08-08 03:47:40 +00:00
|
|
|
|
|
|
|
[syndication]
|
|
|
|
navigation: navigation-get-shows.tpl.html
|
|
|
|
content: content-syndication.tpl.html
|
2022-08-09 00:53:04 +00:00
|
|
|
|
|
|
|
[contribute]
|
|
|
|
navigation: navigation-give-shows.tpl.html
|
|
|
|
content: content-contribute.tpl.html
|
2022-08-09 01:07:34 +00:00
|
|
|
|
|
|
|
[search]
|
|
|
|
navigation: navigation-main.tpl.html
|
|
|
|
content: content-search.tpl.html
|
2022-08-09 02:00:24 +00:00
|
|
|
|
|
|
|
[help_out]
|
|
|
|
navigation: navigation-contribute.tpl.html
|
|
|
|
content: content-help_out.tpl.html
|
2022-08-09 23:06:06 +00:00
|
|
|
|
|
|
|
[download]
|
|
|
|
navigation: navigation-get-shows.tpl.html
|
|
|
|
content: content-download.tpl.html
|
2022-08-10 02:05:06 +00:00
|
|
|
|
|
|
|
[stuff_you_need_to_know]
|
|
|
|
navigation: navigation-give-shows.tpl.html
|
|
|
|
content: content-stuff_you_need_to_know.tpl.html
|
|
|
|
|
2022-08-10 02:06:37 +00:00
|
|
|
[theme]
|
|
|
|
navigation: navigation-give-shows.tpl.html
|
|
|
|
content: content-theme.tpl.html
|
2022-08-11 02:08:38 +00:00
|
|
|
|
|
|
|
[requested_topics]
|
|
|
|
navigation: navigation-give-shows.tpl.html
|
|
|
|
content: content-requested_topics.tpl.html
|
2022-08-11 02:30:11 +00:00
|
|
|
|
|
|
|
[recording]
|
|
|
|
navigation: navigation-give-shows.tpl.html
|
|
|
|
content: content-recording.tpl.html
|
2022-08-11 12:51:13 +00:00
|
|
|
|
|
|
|
[request_a_slot]
|
|
|
|
navigation: navigation-give-shows.tpl.html
|
|
|
|
content: content-request_a_slot.tpl.html
|
2022-08-13 02:59:54 +00:00
|
|
|
|
|
|
|
[podcatchers]
|
|
|
|
navigation: navigation-contribute.tpl.html
|
|
|
|
content: content-podcatchers.tpl.html
|
|
|
|
|
2022-08-13 14:08:55 +00:00
|
|
|
[promote]
|
|
|
|
navigation: navigation-about.tpl.html
|
|
|
|
content: content-promote.tpl.html
|
2022-08-13 17:12:45 +00:00
|
|
|
|
|
|
|
[sitemap]
|
|
|
|
navigation: navigation-about.tpl.html
|
|
|
|
content: content-sitemap.tpl.html
|
2022-08-17 21:12:47 +00:00
|
|
|
|
|
|
|
[hpr_ogg]
|
|
|
|
root_template: rss.tpl.xml
|
|
|
|
content: rss-hpr_ogg.tpl.xml
|
|
|
|
filename: hpr_ogg.rss
|
2022-08-17 21:56:56 +00:00
|
|
|
|
|
|
|
[hpr_mp3]
|
|
|
|
root_template: rss.tpl.xml
|
|
|
|
content: rss-hpr_mp3.tpl.xml
|
|
|
|
filename: hpr_mp3.rss
|
2022-08-17 22:08:45 +00:00
|
|
|
|
|
|
|
[hpr_spx]
|
|
|
|
root_template: rss.tpl.xml
|
|
|
|
content: rss-hpr_spx.tpl.xml
|
|
|
|
filename: hpr_spx.rss
|