aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNguyễn Gia Phong <cnx@loang.net>2025-06-22 11:17:14 +0900
committerNguyễn Gia Phong <cnx@loang.net>2025-06-22 11:17:43 +0900
commiteb568a7a09cc35dde7b0d2a0828523ec724cddae (patch)
treede3d714901957645057b8a2ee1bc56c2c9aebef3
parent026a991233d30579d62c5b4deac36a5d05324e2e (diff)
downloadscadere-eb568a7a09cc35dde7b0d2a0828523ec724cddae.tar.gz
Fix malformed XML0.2.1
-rw-r--r--doc/Makefile1
-rw-r--r--src/scadere/__init__.py3
-rw-r--r--src/scadere/atom2xhtml.xslt9
-rw-r--r--src/scadere/check.py1
-rw-r--r--src/scadere/listen.py1
-rw-r--r--tst/test_check.py1
-rw-r--r--tst/test_help.py1
-rw-r--r--tst/test_listen.py1
8 files changed, 4 insertions, 14 deletions
diff --git a/doc/Makefile b/doc/Makefile
index fce9597..740d6af 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -1,5 +1,4 @@
# Makefile for manual pages
-#
# SPDX-FileCopyrightText: 2025 Nguyễn Gia Phong
# SPDX-License-Identifier: AGPL-3.0-or-later
diff --git a/src/scadere/__init__.py b/src/scadere/__init__.py
index 157166e..22aa273 100644
--- a/src/scadere/__init__.py
+++ b/src/scadere/__init__.py
@@ -1,5 +1,4 @@
# Root package, with some helpers
-#
# SPDX-FileCopyrightText: 2025 Nguyễn Gia Phong
# SPDX-License-Identifier: AGPL-3.0-or-later
@@ -9,7 +8,7 @@ from importlib.resources import files
__all__ = ['__version__', 'GNUHelpFormatter', 'NetLoc',
'atom2xhtml', 'format_epilog', 'format_version']
-__version__ = '0.2.0'
+__version__ = '0.2.1'
EXAMPLE_PREFIX = ' ' * 2
# help2man's implementation detail
diff --git a/src/scadere/atom2xhtml.xslt b/src/scadere/atom2xhtml.xslt
index 5bcc864..6cbe090 100644
--- a/src/scadere/atom2xhtml.xslt
+++ b/src/scadere/atom2xhtml.xslt
@@ -1,10 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
-<!--
- -- Atom-to-XHTML transformation
- --
- -- SPDX-FileCopyrightText: 2025 Nguyễn Gia Phong
- -- SPDX-License-Identifier: AGPL-3.0-or-later
- -->
+<!-- Atom-to-XHTML transformation
+ SPDX-FileCopyrightText: 2025 Nguyễn Gia Phong
+ SPDX-License-Identifier: AGPL-3.0-or-later -->
<xsl:stylesheet version='1.0'
xmlns:atom='http://www.w3.org/2005/Atom'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
diff --git a/src/scadere/check.py b/src/scadere/check.py
index 97b98b2..2442700 100644
--- a/src/scadere/check.py
+++ b/src/scadere/check.py
@@ -1,5 +1,4 @@
# TLS certificate expiration checker
-#
# SPDX-FileCopyrightText: 2025 Nguyễn Gia Phong
# SPDX-License-Identifier: AGPL-3.0-or-later
diff --git a/src/scadere/listen.py b/src/scadere/listen.py
index dcf4754..a435bdc 100644
--- a/src/scadere/listen.py
+++ b/src/scadere/listen.py
@@ -1,5 +1,4 @@
# HTTP server for Atom feed of TLS certificate expirations
-#
# SPDX-FileCopyrightText: 2025 Nguyễn Gia Phong
# SPDX-License-Identifier: AGPL-3.0-or-later
diff --git a/tst/test_check.py b/tst/test_check.py
index aeb4a9e..e6bf862 100644
--- a/tst/test_check.py
+++ b/tst/test_check.py
@@ -1,5 +1,4 @@
# Tests for the TLS client
-#
# SPDX-FileCopyrightText: 2025 Nguyễn Gia Phong
# SPDX-License-Identifier: AGPL-3.0-or-later
diff --git a/tst/test_help.py b/tst/test_help.py
index 544e731..cd41d53 100644
--- a/tst/test_help.py
+++ b/tst/test_help.py
@@ -1,5 +1,4 @@
# Tests for CLI help formatting
-#
# SPDX-FileCopyrightText: 2025 Nguyễn Gia Phong
# SPDX-License-Identifier: AGPL-3.0-or-later
diff --git a/tst/test_listen.py b/tst/test_listen.py
index d13475d..f0557d4 100644
--- a/tst/test_listen.py
+++ b/tst/test_listen.py
@@ -1,5 +1,4 @@
# Tests for the HTTP server
-#
# SPDX-FileCopyrightText: 2025 Nguyễn Gia Phong
# SPDX-License-Identifier: AGPL-3.0-or-later