]> mj.ucw.cz Git - pynsc.git/commitdiff
Top-of-file comments master
authorMartin Mares <mj@ucw.cz>
Wed, 24 Apr 2024 13:01:07 +0000 (15:01 +0200)
committerMartin Mares <mj@ucw.cz>
Wed, 24 Apr 2024 13:01:07 +0000 (15:01 +0200)
TODO
nsconfig/__init__.py
nsconfig/cli.py
nsconfig/core.py
nsconfig/daemon/__init__.py
nsconfig/daemon/bind.py
nsconfig/sink.py
nsconfig/util.py

diff --git a/TODO b/TODO
index c9db73b1a24a89cf85eb526491cb0e4002935142..9009b862c73953508b74758f74d92f604f2ef733 100644 (file)
--- a/TODO
+++ b/TODO
@@ -2,3 +2,4 @@
 - E-mail addresses with dots in SOA
 - DNSSEC
 - Logging
+- More records
index cb3c32e3e57b62a2ef8ffda869cd1b9a23586f55..8c6154c06d68c47b6f427eaa74a8504f0a089ef7 100755 (executable)
@@ -1,3 +1,6 @@
+# PyNSC: Top-level exports
+# (c) 2024 Martin Mareš <mj@ucw.cz>
+
 from nsconfig.core import Nsc, NscZone, NscZoneConfig, NscNode
 
 pass
index 46f04fdacff66b77508bc71297f3a047b08f62e0..3fd9979c74bdbcc852eb9f32062f2d925df3debc 100644 (file)
@@ -1,3 +1,6 @@
+# PyNSC: Command-line interface
+# (c) 2024 Martin Mareš <mj@ucw.cz>
+
 import argparse
 from argparse import Namespace
 from pathlib import Path
index 88baf6623a16c5677469c03a20f6f960deecc7c3..e476b387988a7637ba954f08c72a7dd1e75924a2 100644 (file)
@@ -1,3 +1,6 @@
+# PyNSC: Main data structures
+# (c) 2024 Martin Mareš <mj@ucw.cz>
+
 from collections import defaultdict
 from datetime import datetime, timedelta
 import dns.name
index 914056100d36340a051788049b2bd7696d78f785..9215d2b5045885cbb02732416f5a2ac33b520dc2 100644 (file)
@@ -1,3 +1,6 @@
+# PyNSC: Generic interface for generating daemon configuration
+# (c) 2024 Martin Mareš <mj@ucw.cz>
+
 from io import StringIO
 from pathlib import Path
 from typing import TextIO
index e5d7b347738bbf4063d5962dbb3c572a9318b484..cf879ac0ee8bc1cfcb235099816a6a6de8ebb554 100644 (file)
@@ -1,3 +1,6 @@
+# PyNSC: Generator of configuration for BIND 9
+# (c) 2024 Martin Mareš <mj@ucw.cz>
+
 from pathlib import Path
 import sys
 from typing import TextIO
index 198a6b74e35eabe42dd6305adab2c4a320505e05..73fcc7e0bec198abfa6c162d3b50d92e763ae6b3 100644 (file)
@@ -1,3 +1,6 @@
+# PyNSC: Generator of sink zones
+# (c) 2024 Martin Mareš <mj@ucw.cz>
+
 from typing import List
 
 from nsconfig.core import Nsc, NscZonePrimary
index 17c67ee29a35dafe2861577dd1a7511f2b3348eb..21cff80f47cb129322f8975a72e13c7a2a949e67 100644 (file)
@@ -1,3 +1,6 @@
+# PyNSC: Utility functions
+# (c) 2024 Martin Mareš <mj@ucw.cz>
+
 import dns.name
 from dns.name import Name
 from ipaddress import ip_address, IPv4Address, IPv6Address, ip_network, IPv4Network, IPv6Network