Replaces LICENSE (GPLv3 -> AGPLv3) and prepends `SPDX-License-Identifier: AGPL-3.0-or-later` to every source file across decnet/, decnet_web/, tests/, scripts/, and tools/. Rationale: closes the GPLv3 ASP loophole so any party operating a modified DECNET as a network service must offer their modified source. Personal copyright (Samuel Paschuan) + inbound=outbound contributions make a future unilateral relicense infeasible. - LICENSE: full AGPL-3.0 text (gnu.org/licenses/agpl-3.0.txt) - COPYRIGHT: project copyright notice - tools/add_spdx_headers.py: idempotent header injector (shebang- and PEP 263-aware) Touches 1565 source files (.py, .ts, .tsx, .js, .jsx, .css, .sh). No behavior change; comments only.
24 lines
1.0 KiB
Python
24 lines
1.0 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""Vulture whitelist — names that look unused but aren't.
|
|
|
|
Run via:
|
|
|
|
vulture decnet vulture_whitelist.py --min-confidence 80
|
|
|
|
Each entry suppresses a known false positive. Add a comment with the
|
|
file:line and the reason so future-you can revisit.
|
|
"""
|
|
|
|
# FastAPI auth dependencies — `Depends()` runs for the side effect
|
|
# (auth/RBAC enforcement) even when the injected value is unused inside
|
|
# the handler body. Vulture can't see that.
|
|
viewer # decnet/web/router/canary/api_tokens.py:176, 198, 284 — Depends(require_viewer)
|
|
admin # any handler with admin: dict = Depends(require_admin) where the body doesn't read it
|
|
user # any handler with user: dict = Depends(require_user) where the body doesn't read it
|
|
|
|
# IMAP stub — UID SEARCH vs sequence SEARCH is a real protocol
|
|
# differentiator, but in this honeypot stub UID == seq number (see the
|
|
# "UID == sequence number" comment at the top of the email fixtures), so
|
|
# the parameter is intentionally a no-op.
|
|
uid_mode # decnet/templates/imap/server.py:646
|