Rename Feedser to Concelier

This commit is contained in:
2025-10-18 20:04:15 +03:00
parent 7e1b10d3b2
commit 0137856fdb
1208 changed files with 4370 additions and 4370 deletions

View File

@@ -67,7 +67,7 @@ class CertBundClient:
raise RuntimeError(
"CERT-Bund XSRF token not available. Provide --xsrf-token or a cookie file "
"containing XSRF-TOKEN (see docs/ops/feedser-certbund-operations.md)."
"containing XSRF-TOKEN (see docs/ops/concelier-certbund-operations.md)."
)
def fetch_search_pages(
@@ -281,7 +281,7 @@ def _build_search_record(path: Path) -> Dict[str, Any]:
return {
"type": "search",
"path": path,
"source": "feedser.cert-bund.search",
"source": "concelier.cert-bund.search",
"itemCount": len(content),
"from": range_from,
"to": range_to,
@@ -301,7 +301,7 @@ def _build_export_record(path: Path) -> Dict[str, Any]:
return {
"type": "export",
"path": path,
"source": "feedser.cert-bund.export",
"source": "concelier.cert-bund.export",
"itemCount": None,
"from": from_value,
"to": to_value,
@@ -358,7 +358,7 @@ def build_manifest(root: Path, records: Iterable[Dict[str, Any]], manifest_path:
manifest_path.parent.mkdir(parents=True, exist_ok=True)
manifest_document = {
"source": "feedser.cert-bund",
"source": "concelier.cert-bund",
"generatedAt": dt.datetime.now(tz=UTC).isoformat(),
"artifacts": manifest_entries,
}