diff --git a/src/components/postwall.js b/src/components/postwall.js
index 5f3b3ea..53705ed 100644
--- a/src/components/postwall.js
+++ b/src/components/postwall.js
@@ -3,15 +3,8 @@ import { checkConsent, showConsentPopup, setUserConsent } from '../components/co
export async function loadPostwall() {
const container = document.getElementById('postswall-container');
- // Überprüfe, ob Consent erteilt wurde
- if (!checkConsent()) {
- // Consent nicht erteilt – alternative Kachel anzeigen
- renderConsentRequest();
- return; // Beende die Funktion, kein weiterer Datenabruf
- }
-
// Mastodon API-URL für Hashtag-Suche
- const apiUrl = 'https://libori.social/api/v1/timelines/tag/fedikirche?limit=20';
+ const apiUrl = 'https://kirche.social/api/v1/timelines/tag/fedikirche?limit=20';
// Posts laden
async function fetchPosts() {
@@ -106,54 +99,6 @@ export async function loadPostwall() {
fetchPosts();
}
-// Alternative Kachel anzeigen, wenn kein Consent erteilt wurde
-function renderConsentRequest() {
- const container = document.getElementById('postswall-container');
- container.innerHTML = ''; // Vorherige Inhalte leeren
-
- const consentCard = document.createElement('div');
- consentCard.classList.add('post'); // Verwendet die Post-Klasse für Konsistenz
-
- consentCard.innerHTML = `
-
-
-
-
Du musst zuerst zustimmen, um Inhalte anzuzeigen.
-
-
- `;
-
- container.appendChild(consentCard);
-
- // Event-Listener für Button zum erneuten Anzeigen des Consent-Popups
- document.getElementById('open-consent-popup').addEventListener('click', () => {
- showConsentPopup(
- () => {
- setUserConsent(true); // Zustimmung speichern
- loadPostwall(); // Nachträglich Posts laden
- },
- () => {
- setUserConsent(false); // Ablehnung speichern
- console.log('Consent abgelehnt');
- }
- );
- });
-}
-
// Zeitberechnung für Posts
function getTimeAgo(date) {
const now = new Date();
@@ -177,7 +122,7 @@ function getTimeAgo(date) {
function addReadMoreButton() {
const container = document.getElementById('postswall-container');
const readMoreButton = document.createElement('a');
- readMoreButton.href = 'https://libori.social/tags/fedikirche';
+ readMoreButton.href = 'https://kirche.social/tags/fedikirche';
readMoreButton.target = '_blank';
readMoreButton.rel = 'noopener noreferrer';
readMoreButton.classList.add('read-more-button');
diff --git a/src/main.js b/src/main.js
index f4b2235..53276e4 100644
--- a/src/main.js
+++ b/src/main.js
@@ -2,24 +2,10 @@ import { createStarterKitElement, enhanceStarterKits } from './utils/starterkit-
import { seededShuffleChildren } from './utils/shuffle-utils.js';
import { initializeCreateStarterKitPopup } from './utils/create-starterkit.js';
import { loadPostwall } from './components/postwall.js';
-import { checkConsent, setUserConsent, showConsentPopup } from './components/consentManager.js';
document.addEventListener('DOMContentLoaded', async function () {
// Starte sofort den Seitenaufbau
initializeSite();
-
- // Überprüfe parallel den Consent-Status
- const consent = checkConsent();
- if (!consent) {
- showConsentPopup(
- () => {
- setUserConsent(true);
- },
- () => {
- setUserConsent(false);
- }
- );
- }
});
async function initializeSite() {
diff --git a/src/utils/instances.js b/src/utils/instances.js
index 3664e54..66d85e3 100644
--- a/src/utils/instances.js
+++ b/src/utils/instances.js
@@ -10,7 +10,7 @@ export function getServerClass(instance) {
export function extractHostname(url) {
try {
- const hostname = url.match(/^https?:\/\/([^\/]+)/i)[1]; // Regex: extrahiert den Hostnamen
+ const hostname = url.split('@')[1];
return hostname;
} catch (error) {
console.error('Fehler beim Extrahieren des Hostnamens:', error, 'URL:', url);
diff --git a/src/utils/profile-utils.js b/src/utils/profile-utils.js
index 487d2c4..ba3eb63 100644
--- a/src/utils/profile-utils.js
+++ b/src/utils/profile-utils.js
@@ -1,37 +1,16 @@
import { getServerClass } from './instances.js';
-export async function fetchProfile(profileUrl, options = {}) {
- const { updateElement = null, createCard = false } = options;
+export async function fetchProfile(handle, options = {}) {
+ const { returnData = null, createCard = false } = options;
try {
- const url = new URL(profileUrl);
+ const data = await fetchProfileViaMastodon(handle);
- // Schritt 1: Plattform-Erkennung
- const platform = await detectPlatform(url);
-
- // Schritt 2: Profil-Daten abrufen
- let data;
- if (platform === 'mastodon') {
- data = await fetchMastodonProfile(url);
- } else if (platform === 'wordpress') {
- data = await fetchWordpressProfile(url);
- } else {
- throw new Error('Unbekannte Plattform');
- }
-
- // Schritt 3: Ausgabe vorbereiten
- if (updateElement) {
- updateElement.textContent = data.display_name || data.name || data.username;
-
- const avatarImage = document.createElement('img');
- avatarImage.classList.add('account-avatar');
- avatarImage.alt = data.display_name || data.name || 'Profilbild nicht verfügbar';
- avatarImage.src = data.avatar || data.icon?.url || '';
-
- updateElement.prepend(avatarImage);
+ if (returnData) {
return data;
} else if (createCard) {
- const card = createAccountCard(data, profileUrl, url.hostname);
+ const url = new URL(data.url);
+ const card = createAccountCard(data, data.url, url.hostname);
return { card, data };
}
} catch (error) {
@@ -40,81 +19,14 @@ export async function fetchProfile(profileUrl, options = {}) {
}
}
-async function detectPlatform(url) {
- // Test auf Mastodon-API
- try {
- const mastodonTest = await fetch(`${url.origin}/api/v1/instance`);
- if (mastodonTest.ok) return 'mastodon';
- } catch (error) {
- console.warn('Fehler beim Mastodon-Test:', error);
- }
-
- // Test auf WordPress-ActivityPub
- try {
- const wpTest = await fetch(`${url.origin}/wp-json/activitypub/1.0/actors/1`, {
- headers: { Accept: 'application/activity+json' }
- });
- if (wpTest.ok) return 'wordpress';
- } catch (error) {
- console.warn('Fehler beim WordPress-Test:', error);
- }
-
- // Fallback, wenn kein Test erfolgreich war
- return 'unknown';
-}
-
-async function fetchMastodonProfile(url) {
- const handle = url.pathname.split('/')[1].substring(1);
- const lookupUrl = `https://${url.hostname}/api/v1/accounts/lookup?acct=${handle}`;
+async function fetchProfileViaMastodon(handle) {
+ const lookupUrl = `https://kirche.social/api/v1/accounts/lookup?acct=${handle}`;
const response = await fetch(lookupUrl);
- if (!response.ok) throw new Error('Mastodon-Profil nicht gefunden');
+ if (!response.ok) throw new Error(`Mastodon-Profil ${handle} nicht gefunden`);
return await response.json();
}
-async function fetchWordpressProfile(url) {
- const actorId = url.pathname.split('/').pop(); // ID aus der URL extrahieren
- const lookupUrl = `${url.origin}/${actorId}`;
-
- const response = await fetch(lookupUrl, {
- headers: { Accept: 'application/activity+json' }
- });
- if (!response.ok) throw new Error('WordPress-Profil nicht gefunden');
- const data = await response.json();
-
- // Letzten Post aus der Outbox holen
- const lastPostDate = await fetchWordpressLastPost(data.outbox);
-
- // Kompatibilität herstellen
- return {
- username: data.preferredUsername,
- display_name: data.name,
- avatar: data.icon?.url,
- note: data.summary,
- followers_count: data.followers ? data.followers.length : 0,
- last_status_at: lastPostDate || data.published,
- };
-}
-
-async function fetchWordpressLastPost(outboxUrl) {
- try {
- const response = await fetch(`${outboxUrl}?page=1`, {
- headers: { Accept: 'application/activity+json' }
- });
-
- if (!response.ok) throw new Error('Outbox konnte nicht geladen werden');
- const data = await response.json();
-
- if (data.orderedItems && data.orderedItems.length > 0) {
- const latestPost = data.orderedItems[0];
- return latestPost.published || latestPost.object.published;
- }
- } catch (error) {
- console.warn('Fehler beim Abrufen des letzten Beitrags:', error);
- }
- return null;
-}
-
export function createAccountCard(data, href, instance) {
const serverClass = getServerClass(instance);
const link = document.createElement('a');
diff --git a/src/utils/recommendations-utils.js b/src/utils/recommendations-utils.js
index 31c6efb..ca1cba9 100644
--- a/src/utils/recommendations-utils.js
+++ b/src/utils/recommendations-utils.js
@@ -1,6 +1,5 @@
import { fetchProfile } from './profile-utils.js';
import { extractHostname, getServerClass } from './instances.js';
-import { checkConsent } from '../components/consentManager.js';
export function createRecommendationPopup(accounts, title, authors, description) {
const template = document.getElementById('popup-template').content.cloneNode(true);
@@ -115,34 +114,27 @@ export function populateAuthorsContainer(authorsContainer, authors) {
const additionalAuthorsCount = authors.length - authorsToShow.length;
authorsToShow.forEach(author => {
- const authorLink = document.createElement('a');
- authorLink.href = author;
+ const authorLink = document.createElement('a');
authorLink.classList.add('account');
authorLink.target = '_blank'; // Link öffnet neues Fenster
- // Consent prüfen
- if (checkConsent()) {
- // Consent erteilt - Profilbild laden
- fetchProfile(author, { updateElement: authorLink }).then(() => {
- const avatarImage = authorLink.querySelector('.account-avatar');
- if (avatarImage) {
- authorLink.textContent = '';
- authorLink.appendChild(avatarImage);
+ fetchProfile(author, { returnData: true }).then((data) => {
+ authorLink.href = data.url;
- // Server-Klasse für Avatar hinzufügen
- const hostname = extractHostname(author);
- const serverClass = getServerClass(hostname);
- if (serverClass) {
- avatarImage.classList.add(serverClass);
- }
- }
- });
- } else {
- // Kein Consent – Skeleton-Loader anzeigen
- const skeletonAvatar = document.createElement('div');
- skeletonAvatar.classList.add('skeleton', 'avatar-skeleton', 'account-avatar');
- authorLink.appendChild(skeletonAvatar);
- }
+ const avatarImage = document.createElement('img');
+ avatarImage.classList.add('account-avatar');
+ avatarImage.alt = data.display_name || data.name || 'Profilbild nicht verfügbar';
+ avatarImage.src = data.avatar || '';
+
+ authorLink.appendChild(avatarImage);
+
+ // Server-Klasse für Avatar hinzufügen
+ const hostname = extractHostname(author);
+ const serverClass = getServerClass(hostname);
+ if (serverClass) {
+ avatarImage.classList.add(serverClass);
+ }
+ });
authorsContainer.appendChild(authorLink);
});
diff --git a/src/utils/starterkit-utils.js b/src/utils/starterkit-utils.js
index 93ff38b..9a5e245 100644
--- a/src/utils/starterkit-utils.js
+++ b/src/utils/starterkit-utils.js
@@ -1,5 +1,4 @@
import { createRecommendationPopup, populateAuthorsContainer } from './recommendations-utils.js';
-import { checkConsent, showConsentPopup, setUserConsent } from '../components/consentManager.js';
// StarterKit-Element erstellen
export function createStarterKitElement(kit) {
@@ -23,6 +22,7 @@ export function createStarterKitElement(kit) {
populateAuthorsContainer(authorsContainer, kit.authors);
kitElement.dataset.accounts = JSON.stringify(kit.accounts);
+ kitElement.dataset.authors = JSON.stringify(kit.authors);
return kitElement;
}
@@ -40,21 +40,7 @@ export function enhanceStarterKits() {
// StarterKit-Klick behandeln
function handleStarterKitClick(kit) {
- if (checkConsent()) {
- // Zustimmung vorhanden – StarterKit-Popup öffnen
- loadStarterKitProfiles(kit);
- } else {
- // Keine Zustimmung – Consent-Popup anzeigen
- showConsentPopup(
- () => {
- setUserConsent(true); // Zustimmung speichern
- loadStarterKitProfiles(kit); // Nachträglich StarterKit-Popup öffnen
- },
- () => {
- console.log('Consent wurde abgelehnt. StarterKit-Popup wird nicht geöffnet.');
- }
- );
- }
+ loadStarterKitProfiles(kit);
}
// StarterKit-Profile laden
@@ -62,7 +48,7 @@ function loadStarterKitProfiles(kit) {
const title = kit.querySelector('h3').textContent;
const description = kit.querySelector('p').textContent;
const accounts = JSON.parse(kit.dataset.accounts || '[]');
- const authors = Array.from(kit.querySelectorAll('.authors-container .account')).map(author => author.href);
+ const authors = JSON.parse(kit.dataset.authors || '[]');
const popup = createRecommendationPopup(accounts, title, authors, description);
document.body.appendChild(popup);
diff --git a/starterkits/sk-100-morgen-wald.json b/starterkits/sk-100-morgen-wald.json
index 77ba702..9544fd1 100644
--- a/starterkits/sk-100-morgen-wald.json
+++ b/starterkits/sk-100-morgen-wald.json
@@ -2,19 +2,19 @@
"name": "100 Morgen Wald",
"description": "Bildung, viel Bildung.\n",
"authors": [
- "https://kirche.social/@frau_sanders"
+ "frau_sanders@kirche.social"
],
"accounts": [
- "https://social.tchncs.de/@kuketzblog",
- "https://mastodon.social/@bahnkundenv",
- "https://sueden.social/@BlumeEvolution",
- "https://artikel91.eu/@fxneumann",
- "https://social.bund.de/@DLR",
- "https://mastodon.social/@sundogplanets",
- "https://linuxhotel.social/@linuxhotel",
- "https://mastodon.art/@Fuchskind",
- "https://chaos.social/@leah",
- "https://hostsharing.coop/@Pflege42",
- "https://chaos.social/@irgendwiejuna"
+ "kuketzblog@social.tchncs.de",
+ "bahnkundenv@mastodon.social",
+ "BlumeEvolution@sueden.social",
+ "fxneumann@artikel91.eu",
+ "DLR@social.bund.de",
+ "sundogplanets@mastodon.social",
+ "linuxhotel@linuxhotel.social",
+ "Fuchskind@mastodon.art",
+ "leah@chaos.social",
+ "Pflege42@hostsharing.coop",
+ "irgendwiejuna@chaos.social"
]
}
\ No newline at end of file
diff --git a/starterkits/sk-daily-impulse.json b/starterkits/sk-daily-impulse.json
index 9d95d78..387eaf2 100644
--- a/starterkits/sk-daily-impulse.json
+++ b/starterkits/sk-daily-impulse.json
@@ -2,13 +2,13 @@
"name": "tägliche Impulse",
"description": "Tägliche spirituelle Impulse – Inspiration und Besinnung für deinen Alltag.",
"authors": [
- "https://kirche.social/@frau_sanders"
+ "frau_sanders@kirche.social"
],
"accounts": [
- "https://kirche.social/@morgengebet",
- "https://kirche.social/@vaterunser",
- "https://kirche.social/@tagesimpuls",
- "https://social.vivaldi.net/@losungen",
- "https://kirche.social/@bibelvers"
+ "morgengebet@kirche.social",
+ "vaterunser@kirche.social",
+ "tagesimpuls@kirche.social",
+ "losungen@vivaldi.net",
+ "bibelvers@kirche.social"
]
}
diff --git a/starterkits/sk-eb-paderborn.json b/starterkits/sk-eb-paderborn.json
index 4d5a8c0..ac39562 100644
--- a/starterkits/sk-eb-paderborn.json
+++ b/starterkits/sk-eb-paderborn.json
@@ -2,20 +2,20 @@
"name": "Erzbistum Paderborn",
"description": "Menschen, Institutionen und Initiativen aus dem Erzbistum Paderborn.",
"authors": [
- "https://libori.social/@alex"
+ "alex@libori.social"
],
"accounts": [
- "https://libori.social/@news_erzbistum_paderborn",
- "https://libori.social/@wir_erzbistum_paderborn",
- "https://libori.social/@gotteswerker",
- "https://libori.social/@youpax_redaktion",
- "https://libori.social/@attendorn_katholisch",
- "https://libori.social/@koenigsmuenster",
- "https://libori.social/@Franz_Stock_org",
- "https://libori.social/@gemeindepflanzen",
- "https://libori.social/@alex",
- "https://libori.social/@jonathan",
- "https://nrw.social/@pmaurus",
- "https://libori.social/@KatholischeKircheAmPhoenixsee"
+ "news_erzbistum_paderborn@libori.social",
+ "wir_erzbistum_paderborn@libori.social",
+ "gotteswerker@libori.social",
+ "youpax_redaktion@libori.social",
+ "attendorn_katholisch@libori.social",
+ "koenigsmuenster@libori.social",
+ "Franz_Stock_org@libori.social",
+ "gemeindepflanzen@libori.social",
+ "alex@libori.social",
+ "jonathan@libori.social",
+ "pmaurus@nrw.social",
+ "KatholischeKircheAmPhoenixsee@libori.social"
]
}
\ No newline at end of file
diff --git a/starterkits/sk-fedikirche.json b/starterkits/sk-fedikirche.json
index ff7e3af..2457f5c 100644
--- a/starterkits/sk-fedikirche.json
+++ b/starterkits/sk-fedikirche.json
@@ -2,20 +2,20 @@
"name": "#FediKirche",
"description": "Accounts rund um #FediKirche – engagiert für die Stärkung der kirchlichen Community im Fediverse.",
"authors": [
- "https://libori.social/@alex"
+ "alex@libori.social"
],
"accounts": [
- "https://reliverse.social/@comenius",
- "https://katholisch.social/@kdsz_bayern",
- "https://kirche.social/@luki",
- "https://kirche.social/@librechurch",
- "https://libori.social/@alex",
- "https://reliverse.social/@joerglohrer",
- "https://kirche.social/@csett86",
- "https://kirche.social/@Netzwerk_dig_Bildung",
- "https://muenchen.social/@ttarses",
- "https://bildung.social/@ebinger",
- "https://kirche.social/@morgengebet",
- "https://kirche.social/@onlinekirche"
+ "comenius@reliverse.social",
+ "kdsz_bayern@katholisch.social",
+ "luki@kirche.social",
+ "librechurch@kirche.social",
+ "alex@libori.social",
+ "joerglohrer@reliverse.social",
+ "csett86@kirche.social",
+ "Netzwerk_dig_Bildung@kirche.social",
+ "ttarses@muenchen.social",
+ "ebinger@bildung.social",
+ "morgengebet@kirche.social",
+ "onlinekirche@kirche.social"
]
}
diff --git a/starterkits/sk-inklusion.json b/starterkits/sk-inklusion.json
index cceff0d..3724988 100644
--- a/starterkits/sk-inklusion.json
+++ b/starterkits/sk-inklusion.json
@@ -2,14 +2,14 @@
"name": "Inklusion",
"description": "Dickes Brett. Hier bohren schon einige.\nEs geht um Gerechtigkeit, Freiheit und Bildung. Es geht um Inklusion. Für alle.",
"authors": [
- "https://kirche.social/@frau_sanders"
+ "frau_sanders@kirche.social"
],
"accounts": [
- "https://mastodon.cloud/@RaulKrauthausen",
- "https://troet.cafe/@EinAugenschmaus",
- "https://troet.cafe/@Frau_Mensch",
- "https://kirche.social/@SandiPavkovic",
- "https://kirche.social/@inklusion_ruhrbistum",
- "https://bildung.social/@komin"
+ "RaulKrauthausen@mastodon.cloud",
+ "EinAugenschmaus@troet.cafe",
+ "Frau_Mensch@troet.cafe",
+ "SandiPavkovic@kirche.social",
+ "inklusion_ruhrbistum@kirche.social",
+ "komin@bildung.social"
]
}
\ No newline at end of file
diff --git a/starterkits/sk-katholisch.json b/starterkits/sk-katholisch.json
index 90a5485..bcf531e 100644
--- a/starterkits/sk-katholisch.json
+++ b/starterkits/sk-katholisch.json
@@ -2,62 +2,62 @@
"name": "katholisch",
"description": "Eine vielseitige Auswahl aus dem katholischen Umfeld – von engagierten Gläubigen und theologischen Stimmen bis hin zu verschiedenen Bistümern, Institutionen und Einrichtungen.",
"authors": [
- "https://libori.social/@alex"
+ "alex@libori.social"
],
"accounts": [
- "https://libori.social/@news_erzbistum_paderborn",
- "https://libori.social/@wir_erzbistum_paderborn",
- "https://libori.social/@news_katholisch",
- "https://libori.social/@gotteswerker",
- "https://libori.social/@attendorn_katholisch",
- "https://libori.social/@KatholischeKircheAmPhoenixsee",
- "https://libori.social/@koenigsmuenster",
- "https://kirche.social/@bistumwuerzburg",
- "https://katholisch.social/@bistumpassau",
- "https://kirche.social/@medienkompetenzzentrum",
- "https://libori.social/@Franz_Stock_org",
- "https://kirche.social/@weltkirche_de",
- "https://katholisch.social/@kdsz_bayern",
- "https://katholisch.social/@pvpv",
- "https://libori.social/@gemeindepflanzen",
- "https://kirche.social/@himmelwaerts_und_erdverbunden",
- "https://kirche.social/@ebhh_hochschule",
- "https://libori.social/@alex",
- "https://libori.social/@jonathan",
- "https://kirche.social/@missio",
- "https://kirche.social/@inklusion_ruhrbistum",
- "https://kirche.social/@Frau_Sanders",
- "https://bonn.social/@fxneumann",
- "https://nrw.social/@pmaurus",
- "https://wien.rocks/@PfarreWaehring",
- "https://openbiblio.social/@BPS_TR",
- "https://libori.social/@nordwalde",
- "https://colearn.social/@Religionsunterricht",
- "https://kirche.social/@k_le",
- "https://kirche.social/@liebfrauen",
- "https://kirche.social/@marienschule",
- "https://kirche.social/@stellief",
- "https://kirche.social/@proficisci",
- "https://swiss.social/@eva_maria_faber",
- "https://social.regenpfeifer.net/@linkskatholisch",
- "https://mastodon.social/@dieterzitzler",
- "https://openbiblio.social/@DombibliothekKoeln",
- "https://sueden.social/@statiopontis",
- "https://archaeo.social/@hoelschmichel",
- "https://dju.social/@Theowiss",
- "https://reliverse.social/@DigitalRUnde",
- "https://kirche.social/@florian",
- "https://kirche.social/@bf",
- "https://kirche.social/@infoleck",
- "https://kirche.social/@clearingstellemedienkompetenz",
- "https://kirche.social/@andreasbuesch",
- "https://social.cologne/@BroWoelfie",
- "https://mastodon.social/@Kapuziner",
- "https://bildung.social/@menneboy",
- "https://kirche.social/@OratoriumL",
- "https://mastodon.social/@Pallottiner",
- "https://kirche.social/@ludgerus_norderney",
- "https://kirche.social/@bdkj",
- "https://muenchen.social/@rainerhepler"
+ "news_erzbistum_paderborn@libori.social",
+ "wir_erzbistum_paderborn@libori.social",
+ "news_katholisch@libori.social",
+ "gotteswerker@libori.social",
+ "attendorn_katholisch@libori.social",
+ "KatholischeKircheAmPhoenixsee@libori.social",
+ "koenigsmuenster@libori.social",
+ "bistumwuerzburg@kirche.social",
+ "bistumpassau@katholisch.social",
+ "medienkompetenzzentrum@kirche.social",
+ "Franz_Stock_org@libori.social",
+ "weltkirche_de@kirche.social",
+ "kdsz_bayern@katholisch.social",
+ "pvpv@katholisch.social",
+ "gemeindepflanzen@libori.social",
+ "himmelwaerts_und_erdverbunden@kirche.social",
+ "ebhh_hochschule@kirche.social",
+ "alex@libori.social",
+ "jonathan@libori.social",
+ "missio@kirche.social",
+ "inklusion_ruhrbistum@kirche.social",
+ "Frau_Sanders@kirche.social",
+ "fxneumann@bonn.social",
+ "pmaurus@nrw.social",
+ "PfarreWaehring@wien.rocks",
+ "BPS_TR@openbiblio.social",
+ "nordwalde@libori.social",
+ "Religionsunterricht@colearn.social",
+ "k_le@kirche.social",
+ "liebfrauen@kirche.social",
+ "marienschule@kirche.social",
+ "stellief@kirche.social",
+ "proficisci@kirche.social",
+ "eva_maria_faber@swiss.social",
+ "linkskatholisch@social.regenpfeifer.net",
+ "dieterzitzler@mastodon.social",
+ "DombibliothekKoeln@openbiblio.social",
+ "statiopontis@sueden.social",
+ "hoelschmichel@archaeo.social",
+ "Theowiss@dju.social",
+ "DigitalRUnde@reliverse.social",
+ "florian@kirche.social",
+ "bf@kirche.social",
+ "infoleck@kirche.social",
+ "clearingstellemedienkompetenz@kirche.social",
+ "andreasbuesch@kirche.social",
+ "BroWoelfie@social.cologne",
+ "Kapuziner@mastodon.social",
+ "menneboy@bildung.social",
+ "OratoriumL@kirche.social",
+ "Pallottiner@mastodon.social",
+ "ludgerus_norderney@kirche.social",
+ "bdkj@kirche.social",
+ "rainerhepler@muenchen.social"
]
}
diff --git a/starterkits/sk-nachrichten-analysen.json b/starterkits/sk-nachrichten-analysen.json
index b1072f6..8233ebd 100644
--- a/starterkits/sk-nachrichten-analysen.json
+++ b/starterkits/sk-nachrichten-analysen.json
@@ -2,11 +2,11 @@
"name": "Nachrichten, Meinungen & Analysen",
"description": "Redaktionen mit eigenen Inhalten – von Nachrichten und Analysen bis hin zu Meinungsbeiträgen und Hintergrundberichten. Ideal für alle, die fundierte Informationen und journalistische Perspektiven aus erster Hand schätzen.",
"authors": [
- "https://libori.social/@alex"
+ "alex@libori.social"
],
"accounts": [
- "https://mastodon.social/@eulemagazin",
- "https://libori.social/@news_katholisch",
- "https://bonn.social/@fxneumann"
+ "eulemagazin@mastodon.social",
+ "news_katholisch@libori.social",
+ "fxneumann@bonn.social"
]
}
\ No newline at end of file
diff --git a/starterkits/sk-religionsbezogene-bildung.json b/starterkits/sk-religionsbezogene-bildung.json
index 7e53cb1..e9857ce 100644
--- a/starterkits/sk-religionsbezogene-bildung.json
+++ b/starterkits/sk-religionsbezogene-bildung.json
@@ -2,34 +2,34 @@
"name": "religionsbezogene Bildung",
"description": "Eine bunte Auswahl an Profilen zur religionsbezogenen Bildung – von pädagogischen Konzepten und theologischen Impulsen bis zu Projekten, die Dialog und Lernen über Religion fördern.",
"authors": [
- "https://reliverse.social/@joerglohrer"
+ "joerglohrer@reliverse.social"
],
"accounts": [
- "https://reliverse.social/@heller",
- "https://bildung.social/@FrauEmmEn",
- "https://reliverse.social/@relilab",
- "https://reliverse.social/@johappel",
- "https://reliverse.social/@rpi",
- "https://libori.social/@alex",
- "https://reliverse.social/@jens_dechow",
- "https://reliverse.social/@DigitalRUnde",
- "https://kirche.social/@jutta_wa",
- "https://reliverse.social/@comenius",
- "https://reliverse.social/@joerglohrer",
- "https://reliverse.social/@bianca_goes_europe",
- "https://reliverse.social/@Colibri260",
- "https://reliverse.social/@NadineGlage",
- "https://sueden.social/@BlumeEvolution",
- "https://reliverse.social/@farbenspiel_family",
- "https://kirche.social/@Frau_Sanders",
- "https://kirche.social/@manfred",
- "https://kirche.social/@arenzdom",
- "https://bildung.social/@minetestbildung",
- "https://bildung.social/@ebinger",
- "https://colearn.social/@Religionsunterricht",
- "https://bildung.social/@herrlarbig",
- "https://bildung.social/@ViP",
- "https://reliverse.social/@Fl_OhMyGod",
- "https://reliverse.social/@digitale_relitanten"
+ "heller@reliverse.social",
+ "FrauEmmEn@bildung.social",
+ "relilab@reliverse.social",
+ "johappel@reliverse.social",
+ "rpi@reliverse.social",
+ "alex@libori.social",
+ "jens_dechow@reliverse.social",
+ "DigitalRUnde@reliverse.social",
+ "jutta_wa@kirche.social",
+ "comenius@reliverse.social",
+ "joerglohrer@reliverse.social",
+ "bianca_goes_europe@reliverse.social",
+ "Colibri260@reliverse.social",
+ "NadineGlage@reliverse.social",
+ "BlumeEvolution@sueden.social",
+ "farbenspiel_family@reliverse.social",
+ "Frau_Sanders@kirche.social",
+ "manfred@kirche.social",
+ "arenzdom@kirche.social",
+ "minetestbildung@bildung.social",
+ "ebinger@bildung.social",
+ "Religionsunterricht@colearn.social",
+ "herrlarbig@bildung.social",
+ "ViP@bildung.social",
+ "Fl_OhMyGod@reliverse.social",
+ "digitale_relitanten@reliverse.social"
]
}
diff --git a/starterkits/sk-vereine-initiativen.json b/starterkits/sk-vereine-initiativen.json
index 528e1dc..fbdcd86 100644
--- a/starterkits/sk-vereine-initiativen.json
+++ b/starterkits/sk-vereine-initiativen.json
@@ -2,16 +2,16 @@
"name": "Vereine und Initiativen",
"description": "Kirchliche Vereine und Initiativen – von Bibelprojekten und Gemeindegründungen bis hin zu ökumenischen Projekten und Linux in der Kirche. Entdecke Vielfalt und Engagement!",
"authors": [
- "https://libori.social/@alex"
+ "alex@libori.social"
],
"accounts": [
- "https://kirche.social/@offenebibel",
- "https://kirche.social/@luki",
- "https://kirche.social/@librechurch",
- "https://libori.social/@gemeindepflanzen",
- "https://kirche.social/@Netzwerk_dig_Bildung",
- "https://kirche.social/@christians4future",
- "https://libori.social/@Franz_Stock_org",
- "https://kirche.social/@oesg"
+ "offenebibel@kirche.social",
+ "luki@kirche.social",
+ "librechurch@kirche.social",
+ "gemeindepflanzen@libori.social",
+ "Netzwerk_dig_Bildung@kirche.social",
+ "christians4future@kirche.social",
+ "Franz_Stock_org@libori.social",
+ "oesg@kirche.social"
]
}
diff --git a/starterkits/sp-evangelisch.json b/starterkits/sp-evangelisch.json
index ff9f4fe..fb74843 100644
--- a/starterkits/sp-evangelisch.json
+++ b/starterkits/sp-evangelisch.json
@@ -2,28 +2,28 @@
"name": "Evangelische Kirchengemeinden, Dekanate und Kirchspiele",
"description": "Eine Liste von evangelischen Kirchengemeinden, Dekanaten und Kirchspielen.\nFehlt etwas? Wir sind für Info dankbar.",
"authors": [
- "https://kirche.social/@onlinekirche"
+ "onlinekirche@kirche.social"
],
"accounts": [
- "https://kirche.social/@campusgemeinde",
- "https://kirche.social/@dekanatleutershausen",
- "https://kirche.social/@esg_leipzig",
- "https://kirche.social/@EvKgmSiegburg",
- "https://kirche.social/@emmaus",
- "https://kirche.social/@frankenberg",
- "https://kirche.social/@friedenskirche_madrid",
- "https://kirche.social/@Hochdahl_Evangelisch",
- "https://kirche.social/@kirchspiel_probstzella",
- "https://kirche.social/@Laucha",
- "https://kirche.social/@marc",
- "https://kirche.social/@marienberghausen",
- "https://kirche.social/@neunburg_evangelisch",
- "https://kirche.social/@peterskirche",
- "https://kirche.social/@Prediger_EF",
- "https://kirche.social/@Refwohlenvillmergen",
- "https://kirche.social/@ruhrPott",
- "https://kirche.social/@sw_evangelisch",
- "https://kirche.social/@neulussheim",
- "https://rheinneckar.social/@ekilue"
+ "campusgemeinde@kirche.social",
+ "dekanatleutershausen@kirche.social",
+ "esg_leipzig@kirche.social",
+ "EvKgmSiegburg@kirche.social",
+ "emmaus@kirche.social",
+ "frankenberg@kirche.social",
+ "friedenskirche_madrid@kirche.social",
+ "Hochdahl_Evangelisch@kirche.social",
+ "kirchspiel_probstzella@kirche.social",
+ "Laucha@kirche.social",
+ "marc@kirche.social",
+ "marienberghausen@kirche.social",
+ "neunburg_evangelisch@kirche.social",
+ "peterskirche@kirche.social",
+ "Prediger_EF@kirche.social",
+ "Refwohlenvillmergen@kirche.social",
+ "ruhrPott@kirche.social",
+ "sw_evangelisch@kirche.social",
+ "neulussheim@kirche.social",
+ "ekilue@rheinneckar.social"
]
}
\ No newline at end of file
diff --git a/starterkits/sp-gemeinden-und-so.json b/starterkits/sp-gemeinden-und-so.json
index bff58c4..3be42b2 100644
--- a/starterkits/sp-gemeinden-und-so.json
+++ b/starterkits/sp-gemeinden-und-so.json
@@ -2,42 +2,42 @@
"name": "Gemeinden und so",
"description": "Kirche auf Feldebene, katholisch und evangelisch: Pfarr-/Kirchengemeinden, Kirchspiele, Pastoralverbünde, pastorale Räume etc.",
"authors": [
- "https://katholisch.social/@pvpv"
+ "pvpv@katholisch.social"
],
"accounts": [
- "https://libori.social/@attendorn_katholisch",
- "https://kirche.social/@bf",
- "https://kirche.social/@liebfrauen",
- "https://kirche.social/@bottwartal",
- "https://libori.social/@KatholischeKircheAmPhoenixsee",
- "https://kirche.social/@Prediger_EF",
- "https://kirche.social/@marc",
- "https://kirche.social/@k_le",
- "https://rheinneckar.social/@ekilue",
- "https://kirche.social/@neunburg_evangelisch",
- "https://kirche.social/@ludgerus_norderney",
- "https://libori.social/@nordwalde",
- "https://kirche.social/@obernkirchen",
- "https://kirche.social/@kirchspiel_probstzella",
- "https://katholisch.social/@pvpv",
- "https://kirche.social/@fegrenningen",
- "https://kirche.social/@st_martin_sb",
- "https://wien.rocks/@PfarreWaehring",
- "https://kirche.social/@BoniWiesbaden",
- "https://mastodon.social/@fegffb",
- "https://mastodon.social/@fegbruchmuehlen",
- "https://kirche.social/@campusgemeinde",
- "https://kirche.social/@esg_leipzig",
- "https://kirche.social/@EvKgmSiegburg",
- "https://kirche.social/@emmaus",
- "https://kirche.social/@frankenberg",
- "https://kirche.social/@friedenskirche_madrid",
- "https://kirche.social/@Hochdahl_Evangelisch",
- "https://kirche.social/@Laucha",
- "https://kirche.social/@marienberghausen",
- "https://kirche.social/@peterskirche",
- "https://kirche.social/@Refwohlenvillmergen",
- "https://kirche.social/@KathKircheAffaltrach",
- "https://kirche.social/@neulussheim"
+ "attendorn_katholisch@libori.social",
+ "bf@kirche.social",
+ "liebfrauen@kirche.social",
+ "bottwartal@kirche.social",
+ "KatholischeKircheAmPhoenixsee@libori.social",
+ "Prediger_EF@kirche.social",
+ "marc@kirche.social",
+ "k_le@kirche.social",
+ "ekilue@rheinneckar.social",
+ "neunburg_evangelisch@kirche.social",
+ "ludgerus_norderney@kirche.social",
+ "nordwalde@libori.social",
+ "obernkirchen@kirche.social",
+ "kirchspiel_probstzella@kirche.social",
+ "pvpv@katholisch.social",
+ "fegrenningen@kirche.social",
+ "st_martin_sb@kirche.social",
+ "PfarreWaehring@wien.rocks",
+ "BoniWiesbaden@kirche.social",
+ "fegffb@mastodon.social",
+ "fegbruchmuehlen@mastodon.social",
+ "campusgemeinde@kirche.social",
+ "esg_leipzig@kirche.social",
+ "EvKgmSiegburg@kirche.social",
+ "emmaus@kirche.social",
+ "frankenberg@kirche.social",
+ "friedenskirche_madrid@kirche.social",
+ "Hochdahl_Evangelisch@kirche.social",
+ "Laucha@kirche.social",
+ "marienberghausen@kirche.social",
+ "peterskirche@kirche.social",
+ "Refwohlenvillmergen@kirche.social",
+ "KathKircheAffaltrach@kirche.social",
+ "neulussheim@kirche.social"
]
}
\ No newline at end of file