Comment [% row.comment_number %]:
[% row.comment_author_name FILTER html_entity -%] on [% date.format(row.comment_timestamp_ut,'%Y-%m-%d','UTC') -%]:
[%- IF row.comment_title.length > 0 %]
"[% row.comment_title %]"
@@ -199,17 +199,16 @@ There were no comments this month.
[%- END %]
[%# ---------------------------------------------------------------------------------------- -%]
-[%- IF includefile.defined -%]
+[%- IF mailnotes == 1 -%]
Mailing List discussions
Policy decisions surrounding HPR are taken by the community as a whole. This
-discussion takes place on the Mail List which is open to all HPR listeners and
-contributors. The discussions are open and available on the HPR server under
-Mailman.
+discussion takes place on the Mailing List
+which is open to all HPR listeners and contributors. The discussions are open
+and available on the HPR server under Mailman.
The threaded discussions this month can be found here:
-[% INCLUDE $includefile -%]
+[% mailthreads %]
[%- END %]
[%# ---------------------------------------------------------------------------------------- -%]
@@ -231,4 +230,3 @@ page.
[%#
# vim: syntax=tt2:ts=8:sw=4:ai:et:tw=78:fo=tcrqn21
-%]
-
diff --git a/Community_News/shownote_template12.tpl b/Community_News/shownote_template12.tpl
new file mode 100644
index 0000000..0929319
--- /dev/null
+++ b/Community_News/shownote_template12.tpl
@@ -0,0 +1,226 @@
+[%# shownote_template12.tpl Updated: 2025-03-31 -%]
+[%# -------------------------------------------------------------------------------- -%]
+[%# Makes either an HTML snippet for insertion into the database or a full -%]
+[%# listing with full comments for circulation to the hosts recording the episode -%]
+[%# This one uses the new format for the mailing list data, and partitions -%]
+[%# comments into past and current. It also marks comments that don't need -%]
+[%# to be read when mark_comments is true. It requires make_shownotes >= V0.0.30 -%]
+[%# -------------------------------------------------------------------------------- -%]
+[%- USE date -%]
+[%- USE pad4 = format('%04d') -%]
+[%- correspondents = "https://hackerpublicradio.org/correspondents"
+ mailinglist = "https://lists.hackerpublicradio.com/mailman/listinfo/hpr"
+ mailbase="https://lists.hackerpublicradio.com/pipermail/hpr"
+ mailthreads = "$mailbase/$review_year-$review_month/thread.html" -%]
+[%- DEFAULT skip_comments = 0
+ mark_comments = 0
+ ctext = 0
+ ignore_count = 0
+ missed_count = 0
+ past_count = 0
+-%]
+[%# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -%]
+[%# Embedded CSS. The 'table' and 'hr' settings are always there but the rest is -%]
+[%# only for when we are marking comments -%]
+
+[%# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -%]
+New hosts
+
+[% IF hosts.size > 0 -%]
+Welcome to our new host[%- hosts.size > 1 ? 's' : '' -%]:
+[%- count = 0 %]
+[%# List the new hosts. If a name contains a comma quote it. -%]
+[%- FOREACH row IN hosts %]
+ [%- count = count + 1 %]
+ [%- hostname = (row.host.search(',') ? row.host.replace('^(.*)$','"$1"') : row.host) %]
+ [% hostname %]
+ [%- count < hosts.size ? ', ' : '.' %]
+[%- END %]
+[% ELSE -%]
+There were no new hosts this month.
+[% END -%]
+
+
+Last Month's Shows
+[%# The id 't01' is in the HPR CSS but might give trouble on the IA -%]
+
+
+[%# ---------------------------------------------------------------------------------------- -%]
+[%# Skip comments if told to by the caller -%]
+[%- IF skip_comments == 0 -%]
+[%# Handle any missed comments if mark_comments is true -%]
+[%- IF (mark_comments == 1) AND (missed_count > 0) -%]
+
+
Missed comment[%- missed_comments.size > 1 ? 's' : '' -%] last month
+
Note to Volunteers: These are comments for shows last month that were not read in the last show because they arrived on or after the recording started. This section will be removed before these notes are released.
+
+[%- FOREACH comment IN missed_comments -%]
+- hpr[% pad4(comment.episode) %]
+([% comment.date %]) "[% comment.title %]" by [% comment.host %].
+Summary: "[% comment.summary %]"
+From: [% comment.comment_author_name FILTER html_entity -%] on [% date.format(comment.comment_timestamp_ut,'%Y-%m-%d','UTC') -%]:
+[%- IF comment.comment_title.length > 0 %]
+"[% comment.comment_title %]"
+[%- ELSE -%]
+"[no title]"
+[%- END -%]
+
[% comment.comment_text FILTER html_line_break %]
+
+[%- END -%]
+
+[%- END -%]
+[%# ---------------------------------------------------------------------------------------- -%]
+Comments this month
+
+[% IF comment_count > 0 -%]
+[%- IF (mark_comments == 1) AND (ignore_count > 0) -%]
+Note to Volunteers: Comments marked in green were read in the last
+Community News show and should be ignored in this one.
+[%- END -%]
+These are comments which have been made during the past month, either to shows released during the month or to past shows.
+There [%- comment_count == 1 ? "is $comment_count comment" : "are $comment_count comments" -%] in total.
+[% IF past_count > 0 -%]
+Past shows
+There [% past_count == 1 ? "is $past_count comment" : "are $past_count comments" %] on
+[% past.size %] previous [% past.size == 1 ? "show" : "shows" %]:
+
+[%# Loop through by episode then by comment relating to that episode -%]
+[%- FOREACH ep IN past.keys.nsort -%]
+[%- arr = past.$ep -%]
+- hpr[% pad4(arr.0.episode) %]
+([% arr.0.date %]) "[% arr.0.title %]"
+by [% arr.0.host %].
+[%- IF mark_comments == 1 || ctext == 1 -%]
+Summary: "[% arr.0.summary %]"
+[%- END %]
+-
+
+[%- FOREACH row IN arr -%]
+[%# IF mark_comments == 1 && ((row.comment_timestamp_ut <= last_recording) && (arr.0.date.substr(0,7) == last_month)) -%]
+[%# IF mark_comments == 1 && ((row.comment_released_ut <= last_recording) && (arr.0.date.substr(0,7) == last_month)) -%]
+[%- IF mark_comments == 1 && row.ignore == 1 -%]
+-
+[%- ELSE %]
+
-
+[%- END %]
+Comment [% row.comment_number %]:
+[% row.comment_author_name FILTER html_entity -%] on [% date.format(row.comment_timestamp_ut,'%Y-%m-%d','UTC') -%]:
+[%- IF row.comment_title.length > 0 %]
+"[% row.comment_title %]"
+[%- ELSE -%]
+"[no title]"
+[%- END -%]
+[%# Add the comment body in too if ctext is true -%]
+[%- IF ctext == 1 %]
+
[% row.comment_text FILTER html_line_break %]
+
+[%- ELSE -%]
+
+[%- END -%]
+[%- END -%]
+
+
+[%- END -%]
+