2022-05-10 15:00:06 +02:00
|
|
|
############################################################################
|
|
|
|
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
#
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
#
|
|
|
|
# See the COPYRIGHT file distributed with this work for additional
|
|
|
|
# information regarding copyright ownership.
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
"""
|
|
|
|
Sphinx domain "namedconf". See iscconf.py for details.
|
|
|
|
|
|
|
|
"""
|
2024-04-16 15:13:53 +03:00
|
|
|
|
2022-05-10 14:50:34 +02:00
|
|
|
from docutils import nodes
|
|
|
|
|
2022-05-10 15:00:06 +02:00
|
|
|
import iscconf
|
2022-05-11 10:38:05 +02:00
|
|
|
import mergegrammar
|
2022-05-10 15:00:06 +02:00
|
|
|
|
|
|
|
|
2022-05-10 14:50:34 +02:00
|
|
|
class ToBeReplacedStatementList(nodes.General, nodes.Element):
|
|
|
|
"""
|
|
|
|
Placeholder, does nothing, but must be picklable
|
|
|
|
(= cannot be in generated class).
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2022-05-10 15:00:06 +02:00
|
|
|
def setup(app):
|
2022-05-11 10:38:05 +02:00
|
|
|
grammar = mergegrammar.combine()
|
|
|
|
return iscconf.setup(
|
|
|
|
app, "namedconf", "named.conf", ToBeReplacedStatementList, grammar
|
|
|
|
)
|