Compare commits

...

2 commits

Author SHA1 Message Date
803abfaf97 moved the *.py files to pelican/plugins/activitypub
we want them to install in the pelican package in other projects
2024-10-15 09:39:14 +02:00
21207918bb another bugfix, as article.tags is no longer valid 2024-10-15 09:39:14 +02:00
3 changed files with 7 additions and 4 deletions

View file

@ -12,7 +12,7 @@ from pelican import signals
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
__version__ = '0.1.1' __version__ = '0.1.2'
pagination = 25 pagination = 25
@ -106,7 +106,7 @@ def ap_article(generator: pelican.ArticlesGenerator, writer: pelican.writers.Wri
path = os.path.join(writer.output_path, 'activitypub/tags', t.slug) path = os.path.join(writer.output_path, 'activitypub/tags', t.slug)
articles = [] articles = []
for article in generator.articles: for article in generator.articles:
if t.name not in article.tags: if t.name not in article.metadata.get('tags', []):
continue continue
articles.append( articles.append(
os.path.join(generator.settings['SITEURL'], 'activitypub/posts', article.slug) os.path.join(generator.settings['SITEURL'], 'activitypub/posts', article.slug)
@ -126,7 +126,7 @@ def ap_article(generator: pelican.ArticlesGenerator, writer: pelican.writers.Wri
aurl = os.path.join(generator.settings['SITEURL'], 'activitypub/posts', article.slug) aurl = os.path.join(generator.settings['SITEURL'], 'activitypub/posts', article.slug)
apath = os.path.join(writer.output_path, 'activitypub/posts', article.slug) apath = os.path.join(writer.output_path, 'activitypub/posts', article.slug)
tags = [] tags = []
for tag in article.tags: for tag in article.metadata.get('tags', []):
tags.append({ tags.append({
'type': 'Hashtag', 'type': 'Hashtag',
'name': '#' + tag.slug, 'name': '#' + tag.slug,

View file

@ -4,7 +4,7 @@
[project] [project]
name = "pelican-plugin-activitypub" name = "pelican-plugin-activitypub"
version = "0.1.1" dynamic = ["version"]
description = "Pelican plugin implementing Activitypub" description = "Pelican plugin implementing Activitypub"
authors = [{name = "s3lph", email = "s3lph@kabelsalat.ch"}, {name = "Tobias Schmidl", email = "tobias@schmidl.dev"}] authors = [{name = "s3lph", email = "s3lph@kabelsalat.ch"}, {name = "Tobias Schmidl", email = "tobias@schmidl.dev"}]
license = { text = "MIT" } license = { text = "MIT" }
@ -37,3 +37,6 @@ Tracker = "https://git.kabelsalat.ch/s3lph/pelican-plugin-activitypub/issues"
[build-system] [build-system]
requires = ["setuptools >= 61.0"] requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta" build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "pelican.plugins.activitypub.activitypub.__version__"}