fix/news-podcasts (#5400)
All checks were successful
continuous-integration/drone/push Build is passing

Should close #2471

Move podcasts to a per year structure. This allows for them to be displayed in the archive properly and all that jazz.

This required some enhancements of the subdir script to properly handle more nesting levels, but that is all acceptable.

Also move the transcripts, to a year structure, for consistency.

I have added rewrite rules for the old locations of the podcast episodes, breakage should be minimal.

I am going to keep this as WIP until @bonnie approves it, as it is possible there are breaking issues with this I have failed to notice.

It is also deployed to [test.fsfe.org](https://test.fsfe.org), so feel free to take a look there.

Co-authored-by: Darragh Elliott <me@delliott.net>
Reviewed-on: #5400
Reviewed-by: bonnie <bonnie@fsfe.org>
Reviewed-by: tobiasd <tobiasd@fsfe.org>
Co-authored-by: delliott <delliott@fsfe.org>
Co-committed-by: delliott <delliott@fsfe.org>
This commit was merged in pull request #5400.
This commit is contained in:
2025-11-18 13:59:00 +00:00
committed by tobiasd
parent 4cd97fa78c
commit 0f5dd4e558
187 changed files with 175 additions and 125 deletions

2
fsfe.org/.gitignore vendored
View File

@@ -7,7 +7,7 @@ events/????/index.xsl
news/????/index.??.xhtml
news/????/index.sources
news/????/index.xsl
news/*/.*.??.xml
news/**/.*.??.xml
# search index
search/index.js
#tags

View File

@@ -75,6 +75,48 @@ RewriteRule ^translators(.*) /contribute/translators/translators.html [R=301,L]
RewriteRule ^news/podcast/?$ /news/podcast.html [R=301,L]
RewriteRule ^news/podcast.rss$ /news/podcast.en.rss [L,R=301]
RewriteRule ^news/podcast-opus.rss$ /news/podcast-opus.en.rss [L,R=301]
RewriteRule ^news/podcast/episode-1.html$ news/podcast/2019/episode-1.html [L,R=301]
RewriteRule ^news/podcast/episode-10.html$ news/podcast/2021/episode-10.html [L,R=301]
RewriteRule ^news/podcast/episode-11.html$ news/podcast/2021/episode-11.html [L,R=301]
RewriteRule ^news/podcast/episode-12.html$ news/podcast/2021/episode-12.html [L,R=301]
RewriteRule ^news/podcast/episode-13.html$ news/podcast/2022/episode-13.html [L,R=301]
RewriteRule ^news/podcast/episode-14.html$ news/podcast/2022/episode-14.html [L,R=301]
RewriteRule ^news/podcast/episode-15.html$ news/podcast/2022/episode-15.html [L,R=301]
RewriteRule ^news/podcast/episode-16.html$ news/podcast/2022/episode-16.html [L,R=301]
RewriteRule ^news/podcast/episode-17.html$ news/podcast/2022/episode-17.html [L,R=301]
RewriteRule ^news/podcast/episode-18.html$ news/podcast/2022/episode-18.html [L,R=301]
RewriteRule ^news/podcast/episode-19.html$ news/podcast/2023/episode-19.html [L,R=301]
RewriteRule ^news/podcast/episode-2.html$ news/podcast/2019/episode-2.html [L,R=301]
RewriteRule ^news/podcast/episode-20.html$ news/podcast/2023/episode-20.html [L,R=301]
RewriteRule ^news/podcast/episode-21.html$ news/podcast/2023/episode-21.html [L,R=301]
RewriteRule ^news/podcast/episode-22.html$ news/podcast/2023/episode-22.html [L,R=301]
RewriteRule ^news/podcast/episode-23.html$ news/podcast/2023/episode-23.html [L,R=301]
RewriteRule ^news/podcast/episode-24.html$ news/podcast/2024/episode-24.html [L,R=301]
RewriteRule ^news/podcast/episode-25.html$ news/podcast/2024/episode-25.html [L,R=301]
RewriteRule ^news/podcast/episode-26.html$ news/podcast/2024/episode-26.html [L,R=301]
RewriteRule ^news/podcast/episode-27.html$ news/podcast/2024/episode-27.html [L,R=301]
RewriteRule ^news/podcast/episode-28.html$ news/podcast/2025/episode-28.html [L,R=301]
RewriteRule ^news/podcast/episode-29.html$ news/podcast/2025/episode-29.html [L,R=301]
RewriteRule ^news/podcast/episode-3.html$ news/podcast/2019/episode-3.html [L,R=301]
RewriteRule ^news/podcast/episode-30.html$ news/podcast/2025/episode-30.html [L,R=301]
RewriteRule ^news/podcast/episode-31.html$ news/podcast/2025/episode-31.html [L,R=301]
RewriteRule ^news/podcast/episode-32.html$ news/podcast/2025/episode-32.html [L,R=301]
RewriteRule ^news/podcast/episode-33.html$ news/podcast/2025/episode-33.html [L,R=301]
RewriteRule ^news/podcast/episode-34.html$ news/podcast/2025/episode-34.html [L,R=301]
RewriteRule ^news/podcast/episode-35.html$ news/podcast/2025/episode-35.html [L,R=301]
RewriteRule ^news/podcast/episode-36.html$ news/podcast/2025/episode-36.html [L,R=301]
RewriteRule ^news/podcast/episode-37.html$ news/podcast/2025/episode-37.html [L,R=301]
RewriteRule ^news/podcast/episode-38.html$ news/podcast/2025/episode-38.html [L,R=301]
RewriteRule ^news/podcast/episode-39.html$ news/podcast/2025/episode-39.html [L,R=301]
RewriteRule ^news/podcast/episode-4.html$ news/podcast/2020/episode-4.html [L,R=301]
RewriteRule ^news/podcast/episode-40.html$ news/podcast/2025/episode-40.html [L,R=301]
RewriteRule ^news/podcast/episode-41.html$ news/podcast/2025/episode-41.html [L,R=301]
RewriteRule ^news/podcast/episode-5.html$ news/podcast/2020/episode-5.html [L,R=301]
RewriteRule ^news/podcast/episode-6.html$ news/podcast/2020/episode-6.html [L,R=301]
RewriteRule ^news/podcast/episode-7.html$ news/podcast/2020/episode-7.html [L,R=301]
RewriteRule ^news/podcast/episode-8.html$ news/podcast/2020/episode-8.html [L,R=301]
RewriteRule ^news/podcast/episode-9.html$ news/podcast/2021/episode-9.html [L,R=301]
RewriteRule ^news/podcast/episode-special-1.html$ news/podcast/2020/episode-special-1.html [L,R=301]
# ILoveFS
# TODO for new news-item: update links for latest news-item

View File

@@ -6,8 +6,10 @@ fsfe.org/news/nl/nl-$thisyear*:[front-page]
fsfe.org/news/nl/nl-$lastyear*:[front-page]
fsfe.org/news/nl/.nl-$thisyear*:[front-page]
fsfe.org/news/nl/.nl-$lastyear*:[front-page]
fsfe.org/news/podcast/episode-*:[front-page]
fsfe.org/news/podcast/.episode-*:[front-page]
fsfe.org/news/podcast/$thisyear/episode-*:[front-page]
fsfe.org/news/podcast/$thisyear/.episode-*:[front-page]
fsfe.org/news/podcast/$lastyear/episode-*:[front-page]
fsfe.org/news/podcast/$lastyear/.episode-*:[front-page]
fsfe.org/about/people/data/testimonials/*:[]
fsfe.org/events/$thisyear/event-*:[front-page]
fsfe.org/events/$nextyear/event-*:[front-page]

View File

@@ -6,5 +6,7 @@ fsfe.org/news/nl/nl-$thisyear*:[]
fsfe.org/news/nl/nl-$lastyear*:[]
fsfe.org/news/nl/.nl-$thisyear*:[]
fsfe.org/news/nl/.nl-$lastyear*:[]
fsfe.org/news/podcast/episode-*:[]
fsfe.org/news/podcast/.episode-*:[]
fsfe.org/news/podcast/$thisyear/episode-*:[]
fsfe.org/news/podcast/$thisyear/.episode-*:[]
fsfe.org/news/podcast/$lastyear/episode-*:[]
fsfe.org/news/podcast/$lastyear/.episode-*:[]

View File

@@ -1,2 +1,2 @@
fsfe.org/news/podcast/episode-*:[]
fsfe.org/news/podcast/.episode-*:[]
fsfe.org/news/podcast/*/episode-*:[]
fsfe.org/news/podcast/*/.episode-*:[]

View File

@@ -1,2 +1,2 @@
fsfe.org/news/podcast/episode-*:[]
fsfe.org/news/podcast/.episode-*:[]
fsfe.org/news/podcast/*/episode-*:[]
fsfe.org/news/podcast/*/.episode-*:[]

View File

@@ -69,7 +69,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-1.html</url>
<url>/news/podcast/transcript/2019/episode-1.html</url>
</transcript>
<chapters>

View File

@@ -72,7 +72,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-1.html</url>
<url>/news/podcast/transcript/2019/episode-1.html</url>
</transcript>
<chapters>

View File

@@ -59,7 +59,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-1.html</url>
<url>/news/podcast/transcript/2019/episode-1.html</url>
</transcript>
<chapters>

View File

@@ -57,7 +57,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-1.html</url>
<url>/news/podcast/transcript/2019/episode-1.html</url>
</transcript>
<chapters>
<chapter start="0:00">Welcome to the podcast</chapter>

View File

@@ -67,7 +67,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-2.html</url>
<url>/news/podcast/transcript/2019/episode-2.html</url>
</transcript>
<chapters>

View File

@@ -56,7 +56,7 @@ Una volta al mese, parliamo con persone che hanno ispirato idee per la libertà
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-2.html</url>
<url>/news/podcast/transcript/2019/episode-2.html</url>
</transcript>
<chapters>
<chapter start="0:00">Benvenuti al podcast</chapter>

View File

@@ -53,7 +53,7 @@ Bij het plannen van deze tweede aflevering van de Software Freedom Podcast wilde
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-2.html</url>
<url>/news/podcast/transcript/2019/episode-2.html</url>
</transcript>
<chapters>
<chapter start="0:00">Welkom bij de podcast</chapter>

View File

@@ -62,7 +62,7 @@ One of the main topics this year was and still is the coming implementation of t
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-3.html</url>
<url>/news/podcast/transcript/2019/episode-3.html</url>
</transcript>
<chapters>
<chapter start="0:00">Welcome to the podcast</chapter>

View File

@@ -60,7 +60,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-3.html</url>
<url>/news/podcast/transcript/2019/episode-3.html</url>
</transcript>
<chapters>
<chapter start="0:00">Benvenuti al podcast</chapter>

View File

@@ -57,7 +57,7 @@ Een van de belangrijkste onderwerpen dit jaar was en is de komende implementatie
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-3.html</url>
<url>/news/podcast/transcript/2019/episode-3.html</url>
</transcript>
<chapters>
<chapter start="0:00">Welkom bij de podcast</chapter>

View File

@@ -56,7 +56,7 @@ In the monthly Software Freedom Podcast we talk with people who have inspiring i
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-4.html</url>
<url>/news/podcast/transcript/2020/episode-4.html</url>
</transcript>
<chapters>
<chapter start="0:00">Welcome to the podcast</chapter>

View File

@@ -53,7 +53,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-4.html</url>
<url>/news/podcast/transcript/2020/episode-4.html</url>
</transcript>
<chapters>
<chapter start="0:00">Benvenuti al podcast</chapter>

View File

@@ -56,7 +56,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-4.html</url>
<url>/news/podcast/transcript/2020/episode-4.html</url>
</transcript>
<chapters>
<chapter start="0:00">Welcome to the podcast</chapter>

View File

@@ -65,7 +65,7 @@ This fifth episode of the Software Freedom Podcast covers the complicated topic
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-5.html</url>
<url>/news/podcast/transcript/2020/episode-5.html</url>
</transcript>
<chapters>
<chapter start="0:00">Welcome to the podcast</chapter>

View File

@@ -80,7 +80,7 @@ Entrevista con el Profesor Lawrence Lessig acerca de la regulación de la socied
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-5.html</url>
<url>/news/podcast/transcript/2020/episode-5.html</url>
</transcript>
<chapters>

View File

@@ -63,7 +63,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-5.html</url>
<url>/news/podcast/transcript/2020/episode-5.html</url>
</transcript>
<chapters>
<chapter start="0:00">Benvenuti al podcast</chapter>

View File

@@ -62,7 +62,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-5.html</url>
<url>/news/podcast/transcript/2020/episode-5.html</url>
</transcript>
<chapters>
<chapter start="0:00">Welcome to the podcast</chapter>

View File

@@ -55,7 +55,7 @@ repositories</a></li>
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-6.html</url>
<url>/news/podcast/transcript/2020/episode-6.html</url>
</transcript>
<chapters>
<chapter start="0:00">Welcome to the podcast</chapter>

View File

@@ -54,7 +54,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-6.html</url>
<url>/news/podcast/transcript/2020/episode-6.html</url>
</transcript>
<chapters>

View File

@@ -55,7 +55,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-6.html</url>
<url>/news/podcast/transcript/2020/episode-6.html</url>
</transcript>
<chapters>

View File

@@ -61,7 +61,7 @@ Our guest for the seventh episode of the Software Freedom Podcast is Vincent Leq
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-7.html</url>
<url>/news/podcast/transcript/2020/episode-7.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welcome to the podcast</chapter>

View File

@@ -72,7 +72,7 @@ technologie dans notre vie quotidienne.
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-7.html</url>
<url>/news/podcast/transcript/2020/episode-7.html</url>
</transcript>
<chapters>

View File

@@ -59,7 +59,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-7.html</url>
<url>/news/podcast/transcript/2020/episode-7.html</url>
</transcript>
<chapters>
<chapter start="00:00">Benvenuti al podcast</chapter>

View File

@@ -60,7 +60,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-7.html</url>
<url>/news/podcast/transcript/2020/episode-7.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welcome to the podcast</chapter>

View File

@@ -56,7 +56,7 @@ For this episode we talk about why Free Software can cost money. Bonnie Mehring
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-8.html</url>
<url>/news/podcast/transcript/2020/episode-8.html</url>
</transcript>
<chapters>
<chapter start="0:00">Intro</chapter>

View File

@@ -53,7 +53,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-8.html</url>
<url>/news/podcast/transcript/2020/episode-8.html</url>
</transcript>
<chapters>
<chapter start="0:00">Introduzione</chapter>

View File

@@ -56,7 +56,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-8.html</url>
<url>/news/podcast/transcript/2020/episode-8.html</url>
</transcript>
<chapters>
<chapter start="0:00">Intro</chapter>

View File

@@ -69,7 +69,7 @@ In this special episode of the Software Freedom Podcast we talk about some of th
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-special-1.html</url>
<url>/news/podcast/transcript/2020/episode-special-1.html</url>
</transcript>
<chapters>
<chapter start="0:00">Preface</chapter>

View File

@@ -69,7 +69,7 @@ In questa puntata speciale del podcast Software Freedom discutiamo di alcuni van
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-special-1.html</url>
<url>/news/podcast/transcript/2020/episode-special-1.html</url>
</transcript>
<chapters>
<chapter start="0:00">Avvertimenti</chapter>

View File

@@ -68,7 +68,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-special-1.html</url>
<url>/news/podcast/transcript/2020/episode-special-1.html</url>
</transcript>
<chapters>
<chapter start="0:00">Preface</chapter>

View File

@@ -62,7 +62,7 @@ For this episode Matthias Kirschner and Bonnie Mehring talk with Elisa Lindinger
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-10.html</url>
<url>/news/podcast/transcript/2021/episode-10.html</url>
</transcript>
<chapters>
<chapter start="00:00">Intro</chapter>

View File

@@ -61,7 +61,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-10.html</url>
<url>/news/podcast/transcript/2021/episode-10.html</url>
</transcript>
<chapters>
<chapter start="00:00">Introduzione</chapter>

View File

@@ -50,7 +50,7 @@ Voor deze aflevering praten Matthias Kirschner en Bonnie Mehring met Elisa Lindi
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-10.html</url>
<url>/news/podcast/transcript/2021/episode-10.html</url>
</transcript>
<chapters>
<chapter start="00:00">Intro</chapter>

View File

@@ -58,7 +58,7 @@ Max Mehl and Bonnie Mehring talk about the REUSE initiative and the newly launch
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-11.html</url>
<url>/news/podcast/transcript/2021/episode-11.html</url>
</transcript>
<chapters>
<chapter start="0:00">Welcome to the podcast</chapter>

View File

@@ -58,7 +58,7 @@ Max Mehl e Bonnie Mehring parlano dell'iniziativa REUSE e del nuovo programma RE
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-11.html</url>
<url>/news/podcast/transcript/2021/episode-11.html</url>
</transcript>
<chapters>
<chapter start="0:00">Benvenuti al podcast</chapter>

View File

@@ -58,7 +58,7 @@ Max Mehl en Bonnie Mehring praten over het REUSE-initiatief en het onlangs gelan
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-11.html</url>
<url>/news/podcast/transcript/2021/episode-11.html</url>
</transcript>
<chapters>
<chapter start="0:00">Welcome to the podcast</chapter>

View File

@@ -95,7 +95,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-12.html</url>
<url>/news/podcast/transcript/2021/episode-12.html</url>
</transcript>
<chapters>

View File

@@ -84,7 +84,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-12.html</url>
<url>/news/podcast/transcript/2021/episode-12.html</url>
</transcript>
<chapters>

View File

@@ -85,7 +85,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-12.html</url>
<url>/news/podcast/transcript/2021/episode-12.html</url>
</transcript>
<chapters>

View File

@@ -55,7 +55,7 @@ In this ninth episode, Bonnie Mehring and Matthias Kirschner cover one of the ol
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-9.html</url>
<url>/news/podcast/transcript/2021/episode-9.html</url>
</transcript>
<chapters>
<chapter start="00:00">Intro</chapter>

View File

@@ -53,7 +53,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-9.html</url>
<url>/news/podcast/transcript/2021/episode-9.html</url>
</transcript>
<chapters>
<chapter start="00:00">Introduzione</chapter>

View File

@@ -55,7 +55,7 @@ In deze negende aflevering behandelen Bonnie Mehring en Matthias Kirschner een v
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-9.html</url>
<url>/news/podcast/transcript/2021/episode-9.html</url>
</transcript>
<chapters>
<chapter start="00:00">Intro</chapter>

View File

@@ -82,7 +82,7 @@ Diese Podcastepisode nimmt Sie mit auf eine Reise durch die Entwicklung des Spie
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-13.html</url>
<url>/news/podcast/transcript/2022/episode-13.html</url>
</transcript>
<chapters>

View File

@@ -83,7 +83,7 @@ This podcast episode takes you on a journey through the game's development and i
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-13.html</url>
<url>/news/podcast/transcript/2022/episode-13.html</url>
</transcript>
<chapters>

View File

@@ -80,7 +80,7 @@
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-13.html</url>
<url>/news/podcast/transcript/2022/episode-13.html</url>
</transcript>
<chapters>

View File

@@ -44,7 +44,7 @@ Deze podcast-aflevering neemt u mee op een reis door de ontwikkeling van het spe
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-13.html</url>
<url>/news/podcast/transcript/2022/episode-13.html</url>
</transcript>
<chapters>

View File

@@ -67,7 +67,7 @@ With this episode the Software Freedom Podcast opens the door to the fascinating
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-14.html</url>
<url>/news/podcast/transcript/2022/episode-14.html</url>
</transcript>
<chapters>

View File

@@ -47,7 +47,7 @@ Avec cet épisode, le podcast Liberté des Logiciels ouvre la porte au fascinant
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-14.html</url>
<url>/news/podcast/transcript/2022/episode-14.html</url>
</transcript>
<chapters>
<chapter start="00:00">Introduction</chapter>

View File

@@ -65,7 +65,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-14.html</url>
<url>/news/podcast/transcript/2022/episode-14.html</url>
</transcript>
<chapters>

View File

@@ -48,7 +48,7 @@ Met deze aflevering opent de Software Freedom Podcast de deur naar de fascineren
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-14.html</url>
<url>/news/podcast/transcript/2022/episode-14.html</url>
</transcript>
<chapters>
<chapter start="00:00">Intro</chapter>

View File

@@ -76,7 +76,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-15.html</url>
<url>/news/podcast/transcript/2022/episode-15.html</url>
</transcript>
<chapters>

View File

@@ -97,7 +97,7 @@ lavoro per la libertà del software, aiutaci con una
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-15.html</url>
<url>/news/podcast/transcript/2022/episode-15.html</url>
</transcript>
<chapters>

View File

@@ -41,7 +41,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-15.html</url>
<url>/news/podcast/transcript/2022/episode-15.html</url>
</transcript>
<chapters>
<chapter start="00:00">Intro</chapter>

View File

@@ -55,7 +55,7 @@ Hugo has been a volunteer for the FSFE for over 10 years now. Have you ever wond
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-16.html</url>
<url>/news/podcast/transcript/2022/episode-16.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welcome to the podcast</chapter>

View File

@@ -55,7 +55,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-16.html</url>
<url>/news/podcast/transcript/2022/episode-16.html</url>
</transcript>
<chapters>
<chapter start="00:00">Benvenuti al podcast</chapter>

View File

@@ -55,7 +55,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-16.html</url>
<url>/news/podcast/transcript/2022/episode-16.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welkom bij de podcast</chapter>

View File

@@ -55,7 +55,7 @@ Petter Joelson is the director of <a href="https://digidemlab.org/">Digidem Lab<
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-17.html</url>
<url>/news/podcast/transcript/2022/episode-17.html</url>
</transcript>
<chapters>

View File

@@ -55,7 +55,7 @@ Petter Joelson è il direttore di <a href="https://digidemlab.org/">Digidem Lab<
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-17.html</url>
<url>/news/podcast/transcript/2022/episode-17.html</url>
</transcript>
<chapters>
<chapter start="00:00">Benvenuti al podcast</chapter>

View File

@@ -56,7 +56,7 @@ Petter Joelson is de directeur van <a href="https://digidemlab.org/">Digidem Lab
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-17.html</url>
<url>/news/podcast/transcript/2022/episode-17.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welkom bij de podcast</chapter>

View File

@@ -64,7 +64,7 @@ software freedom, please help us with a
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-18.html</url>
<url>/news/podcast/transcript/2022/episode-18.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welcome to the podcast</chapter>

View File

@@ -54,7 +54,7 @@ discutiamo delle basi della crittografia e scopriamo di cosa si occupa una speci
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-18.html</url>
<url>/news/podcast/transcript/2022/episode-18.html</url>
</transcript>
<chapters>
<chapter start="00:00">Benvenuti al podcast</chapter>

View File

@@ -55,7 +55,7 @@ softwarevrijheid wilt steunen, help ons dan alstublieft met een
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-18.html</url>
<url>/news/podcast/transcript/2022/episode-18.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welkom bij de podcast</chapter>

View File

@@ -70,7 +70,7 @@ Karen's heartwarming story of software freedom.
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-19.html</url>
<url>/news/podcast/transcript/2023/episode-19.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welcome to the podcast</chapter>

View File

@@ -77,7 +77,7 @@ lavoro per la libertà del software, aiutaci con una
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-19.html</url>
<url>/news/podcast/transcript/2023/episode-19.html</url>
</transcript>
<chapters>
<chapter start="00:00">Benvenuti al podcast</chapter>

View File

@@ -59,7 +59,7 @@ In haar dagelijks leven vertrouwt Karen op een defibrillator om haar te helpen h
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-19.html</url>
<url>/news/podcast/transcript/2023/episode-19.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welkom bij de podcast</chapter>

View File

@@ -80,7 +80,7 @@ software freedom, please help us with a
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-20.html</url>
<url>/news/podcast/transcript/2023/episode-20.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welcome to the podcast</chapter>

View File

@@ -81,7 +81,7 @@ controllare i propri dispositivi e l'accesso a Internet.
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-20.html</url>
<url>/news/podcast/transcript/2023/episode-20.html</url>
</transcript>
<chapters>
<chapter start="00:00">Benvenuti al podcast</chapter>

View File

@@ -60,7 +60,7 @@ Dit is de perfecte aflevering voor iedereen die geïnteresseerd is in het contro
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-20.html</url>
<url>/news/podcast/transcript/2023/episode-20.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welkom bij de podcast</chapter>

View File

@@ -61,7 +61,7 @@ Listen to our new Software Freedom Podcast episode with Lina Ceballos. Lina and
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-21.html</url>
<url>/news/podcast/transcript/2023/episode-21.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welcome to the podcast</chapter>

View File

@@ -81,7 +81,7 @@ lavoro per la libertà del software, aiutaci con una
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-21.html</url>
<url>/news/podcast/transcript/2023/episode-21.html</url>
</transcript>
<chapters>
<chapter start="00:00">Benvenuti al podcast</chapter>

View File

@@ -61,7 +61,7 @@ Luister naar onze nieuwe Software Freedom Podcast-aflevering met Lina Ceballos.
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-21.html</url>
<url>/news/podcast/transcript/2023/episode-21.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welkom bij de podcast</chapter>

View File

@@ -60,7 +60,7 @@ The "Public Money? Public Code!" initiative advocates for public bodies to switc
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-22.html</url>
<url>/news/podcast/transcript/2023/episode-22.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welcome to the podcast</chapter>

View File

@@ -60,7 +60,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-22.html</url>
<url>/news/podcast/transcript/2023/episode-22.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welkom bij de podcast</chapter>

View File

@@ -61,7 +61,7 @@ These days are quite special, right? So is our Christmas Software Freedom Podcas
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-23.html</url>
<url>/news/podcast/transcript/2023/episode-23.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welcome to the podcast</chapter>

View File

@@ -61,7 +61,7 @@ Deze dagen zijn erg speciaal, toch? En dat is de kerstaflevering van onze Softwa
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-23.html</url>
<url>/news/podcast/transcript/2023/episode-23.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welkom bij de podcast</chapter>

View File

@@ -70,7 +70,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-24.html</url>
<url>/news/podcast/transcript/2024/episode-24.html</url>
</transcript>
<chapters>

View File

@@ -71,7 +71,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-24.html</url>
<url>/news/podcast/transcript/2024/episode-24.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welkom bij de podcast</chapter>

View File

@@ -58,7 +58,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-25.html</url>
<url>/news/podcast/transcript/2024/episode-25.html</url>
</transcript>
<chapters>
<chapter start="00:00">Willkommen beim Software Freedom Podcast</chapter>

View File

@@ -57,7 +57,7 @@
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-25.html</url>
<url>/news/podcast/transcript/2024/episode-25.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welcome to the podcast</chapter>

View File

@@ -59,7 +59,7 @@
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-26.html</url>
<url>/news/podcast/transcript/2024/episode-26.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welcome to the podcast</chapter>

View File

@@ -56,7 +56,7 @@
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-27.html</url>
<url>/news/podcast/transcript/2024/episode-27.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welcome to the podcast</chapter>

View File

@@ -64,7 +64,7 @@ addressing pressing and relevant topics.</p>
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-28.html</url>
<url>/news/podcast/transcript/2025/episode-28.html</url>
</transcript>
<chapters>

View File

@@ -63,7 +63,7 @@ on 4500 computers.</p>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-29.html</url>
<url>/news/podcast/transcript/2025/episode-29.html</url>
</transcript>
<chapters>
<chapter start="00:00">Welcome to the podcast</chapter>

View File

@@ -70,7 +70,7 @@ Together, they unravel how the <a href="/activities/dma/dma.html">Digital Market
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-30.html</url>
<url>/news/podcast/transcript/2025/episode-30.html</url>
</transcript>
<chapters>

View File

@@ -72,7 +72,7 @@ core a great community with four freedoms, to use, study, share and improve. ❤
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-31.html</url>
<url>/news/podcast/transcript/2025/episode-31.html</url>
</transcript>
<chapters>

View File

@@ -68,7 +68,7 @@ your digital rights. Together with Bonnie, Alex and Lucas you can find out more
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-32.html</url>
<url>/news/podcast/transcript/2025/episode-32.html</url>
</transcript>
<chapters>

View File

@@ -75,7 +75,7 @@ Free Software! Help us to protect software freedom by <fsfe-cd-donate-link>donat
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-33.html</url>
<url>/news/podcast/transcript/2025/episode-33.html</url>
</transcript>
<chapters>

View File

@@ -68,7 +68,7 @@ sovereignty and digital infrastructure INI</a></li>
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-34.html</url>
<url>/news/podcast/transcript/2025/episode-34.html</url>
</transcript>
<chapters>

View File

@@ -71,7 +71,7 @@ sovereignty and digital infrastructure INI</a></li>
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-35.html</url>
<url>/news/podcast/transcript/2025/episode-35.html</url>
</transcript>
<chapters>

View File

@@ -45,7 +45,7 @@ work by <fsfe-cd-donate-link>donating</fsfe-cd-donate-link>.</p>
</ul>
<p>We are happy to receive your feedback on the Software Freedom Podcast and especially on the <a href="/news/podcast/transcript/episode-36.html?ref=download">transcript of the episode</a>. Please, send us an email to:
<p>We are happy to receive your feedback on the Software Freedom Podcast and especially on the <a href="/news/podcast/transcript/2025/episode-36.html?ref=download">transcript of the episode</a>. Please, send us an email to:
<email mailto="yes">podcast@fsfe.org</email>. If you liked this episode and want to support our continuous work for software freedom, please help us with a <fsfe-cd-donate-link>donation</fsfe-cd-donate-link>.</p>
</body>
@@ -76,7 +76,7 @@ work by <fsfe-cd-donate-link>donating</fsfe-cd-donate-link>.</p>
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-36.html</url>
<url>/news/podcast/transcript/2025/episode-36.html</url>
</transcript>
<chapters>

View File

@@ -36,7 +36,7 @@ work by <fsfe-cd-donate-link>donating</fsfe-cd-donate-link>.</p>
</ul>
<p>We are happy to receive your feedback on the Software Freedom Podcast and especially on the <a href="/news/podcast/transcript/episode-37.html?ref=download">transcript of the episode</a>. Please, send us an email to:
<p>We are happy to receive your feedback on the Software Freedom Podcast and especially on the <a href="/news/podcast/transcript/2025/episode-37.html?ref=download">transcript of the episode</a>. Please, send us an email to:
<email mailto="yes">podcast@fsfe.org</email>. If you liked this episode and want to support our continuous work for software freedom, please help us with a <fsfe-cd-donate-link>donation</fsfe-cd-donate-link>.</p>
</body>
@@ -67,7 +67,7 @@ work by <fsfe-cd-donate-link>donating</fsfe-cd-donate-link>.</p>
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-37.html</url>
<url>/news/podcast/transcript/2025/episode-37.html</url>
</transcript>
<chapters>

View File

@@ -39,7 +39,7 @@ work by <fsfe-cd-donate-link>donating</fsfe-cd-donate-link>.</p>
</ul>
<p>We are happy to receive your feedback on the Software Freedom Podcast and especially on the <a href="/news/podcast/transcript/episode-38.html?ref=download">transcript of the episode</a>. Please, send us an email to:
<p>We are happy to receive your feedback on the Software Freedom Podcast and especially on the <a href="/news/podcast/transcript/2025/episode-38.html?ref=download">transcript of the episode</a>. Please, send us an email to:
<email mailto="yes">podcast@fsfe.org</email>. If you liked this episode and want to support our continuous work for software freedom, please help us with a <fsfe-cd-donate-link>donation</fsfe-cd-donate-link>.</p>
</body>
@@ -69,7 +69,7 @@ work by <fsfe-cd-donate-link>donating</fsfe-cd-donate-link>.</p>
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-38.html</url>
<url>/news/podcast/transcript/2025/episode-38.html</url>
</transcript>
<chapters>

View File

@@ -40,7 +40,7 @@ You can support our work by <fsfe-cd-donate-link>donating</fsfe-cd-donate-link>.
</ul>
<p>We are happy to receive your feedback on the Software Freedom Podcast and especially on the <a href="/news/podcast/transcript/episode-39.html?ref=download">transcript of the episode</a>. Please, send us an email to:
<p>We are happy to receive your feedback on the Software Freedom Podcast and especially on the <a href="/news/podcast/transcript/2025/episode-39.html?ref=download">transcript of the episode</a>. Please, send us an email to:
<email mailto="yes">podcast@fsfe.org</email>. If you liked this episode and want to support our continuous work for software freedom, please help us with a <fsfe-cd-donate-link>donation</fsfe-cd-donate-link>.</p>
</body>
@@ -71,7 +71,7 @@ You can support our work by <fsfe-cd-donate-link>donating</fsfe-cd-donate-link>.
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-39.html</url>
<url>/news/podcast/transcript/2025/episode-39.html</url>
</transcript>
<chapters>

View File

@@ -43,7 +43,7 @@ charity advocate for software freedom. You can support our work by
</ul>
<p>We are happy to receive your feedback on the Software Freedom Podcast and
especially on the <a href="/news/podcast/transcript/episode-40.html?ref=download">transcript of the episode</a>.
especially on the <a href="/news/podcast/transcript/2025/episode-40.html?ref=download">transcript of the episode</a>.
Please, send us an email to: <email mailto="yes">podcast@fsfe.org</email>.
If you liked this episode and want to support our continuous work for software freedom,
please help us with a <fsfe-cd-donate-link>donation</fsfe-cd-donate-link>.</p>
@@ -74,7 +74,7 @@ please help us with a <fsfe-cd-donate-link>donation</fsfe-cd-donate-link>.</p>
</mp3>
<!-- Transcript -->
<transcript>
<url>/news/podcast/transcript/episode-40.html</url>
<url>/news/podcast/transcript/2025/episode-40.html</url>
</transcript>
<chapters>

Some files were not shown because too many files have changed in this diff Show More