netbox-plugin-dns 1.2.8__py3-none-any.whl → 1.2.10__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of netbox-plugin-dns might be problematic. Click here for more details.
- netbox_dns/__init__.py +1 -1
- netbox_dns/api/serializers_/dnssec_policy.py +0 -1
- netbox_dns/api/serializers_/zone.py +1 -0
- netbox_dns/filtersets/dnssec_policy.py +0 -21
- netbox_dns/filtersets/zone.py +18 -0
- netbox_dns/forms/dnssec_policy.py +0 -20
- netbox_dns/forms/zone.py +21 -0
- netbox_dns/graphql/types.py +1 -1
- netbox_dns/locale/de/LC_MESSAGES/django.mo +0 -0
- netbox_dns/locale/fr/LC_MESSAGES/django.mo +0 -0
- netbox_dns/migrations/0020_remove_dnssecpolicy_parental_agents_and_more.py +29 -0
- netbox_dns/models/dnssec_policy.py +0 -9
- netbox_dns/models/zone.py +10 -0
- netbox_dns/templates/netbox_dns/dnssecpolicy.html +0 -10
- netbox_dns/templates/netbox_dns/zone.html +10 -0
- netbox_dns/validators/dns_name.py +1 -1
- {netbox_plugin_dns-1.2.8.dist-info → netbox_plugin_dns-1.2.10.dist-info}/METADATA +1 -1
- {netbox_plugin_dns-1.2.8.dist-info → netbox_plugin_dns-1.2.10.dist-info}/RECORD +21 -20
- {netbox_plugin_dns-1.2.8.dist-info → netbox_plugin_dns-1.2.10.dist-info}/WHEEL +1 -1
- {netbox_plugin_dns-1.2.8.dist-info → netbox_plugin_dns-1.2.10.dist-info}/licenses/LICENSE +0 -0
- {netbox_plugin_dns-1.2.8.dist-info → netbox_plugin_dns-1.2.10.dist-info}/top_level.txt +0 -0
netbox_dns/__init__.py
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
import netaddr
|
|
2
|
-
from netaddr.core import AddrFormatError
|
|
3
|
-
|
|
4
1
|
import django_filters
|
|
5
2
|
|
|
6
3
|
from django.db.models import Q
|
|
@@ -38,7 +35,6 @@ class DNSSECPolicyFilterSet(TenancyFilterSet, NetBoxModelFilterSet):
|
|
|
38
35
|
"create_cdnskey",
|
|
39
36
|
"parent_ds_ttl",
|
|
40
37
|
"parent_propagation_delay",
|
|
41
|
-
"parental_agents",
|
|
42
38
|
"use_nsec3",
|
|
43
39
|
"nsec3_iterations",
|
|
44
40
|
"nsec3_opt_out",
|
|
@@ -88,10 +84,6 @@ class DNSSECPolicyFilterSet(TenancyFilterSet, NetBoxModelFilterSet):
|
|
|
88
84
|
to_field_name="id",
|
|
89
85
|
label=_("Zone Template IDs"),
|
|
90
86
|
)
|
|
91
|
-
parental_agents = MultiValueCharFilter(
|
|
92
|
-
method="filter_parental_agents",
|
|
93
|
-
label=_("Parental Agents"),
|
|
94
|
-
)
|
|
95
87
|
|
|
96
88
|
def filter_cds_digest_types(self, queryset, name, value):
|
|
97
89
|
if not value:
|
|
@@ -99,19 +91,6 @@ class DNSSECPolicyFilterSet(TenancyFilterSet, NetBoxModelFilterSet):
|
|
|
99
91
|
|
|
100
92
|
return queryset.filter(cds_digest_types__overlap=value)
|
|
101
93
|
|
|
102
|
-
def filter_parental_agents(self, queryset, name, value):
|
|
103
|
-
if not value:
|
|
104
|
-
return queryset
|
|
105
|
-
|
|
106
|
-
query_values = []
|
|
107
|
-
for v in value:
|
|
108
|
-
try:
|
|
109
|
-
query_values.append(str(netaddr.IPAddress(v)))
|
|
110
|
-
except (AddrFormatError, ValueError):
|
|
111
|
-
pass
|
|
112
|
-
|
|
113
|
-
return queryset.filter(parental_agents__overlap=query_values)
|
|
114
|
-
|
|
115
94
|
def search(self, queryset, name, value):
|
|
116
95
|
if not value.strip():
|
|
117
96
|
return queryset
|
netbox_dns/filtersets/zone.py
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import netaddr
|
|
2
|
+
from netaddr.core import AddrFormatError
|
|
2
3
|
|
|
3
4
|
import django_filters
|
|
4
5
|
from django.db.models import Q
|
|
@@ -68,6 +69,10 @@ class ZoneFilterSet(TenancyFilterSet, NetBoxModelFilterSet):
|
|
|
68
69
|
to_field_name="name",
|
|
69
70
|
label=_("DNSSEC Policy"),
|
|
70
71
|
)
|
|
72
|
+
parental_agents = MultiValueCharFilter(
|
|
73
|
+
method="filter_parental_agents",
|
|
74
|
+
label=_("Parental Agents"),
|
|
75
|
+
)
|
|
71
76
|
rfc2317_prefix = MultiValueCharFilter(
|
|
72
77
|
method="filter_rfc2317_prefix",
|
|
73
78
|
label=_("RFC2317 Prefix"),
|
|
@@ -167,6 +172,19 @@ class ZoneFilterSet(TenancyFilterSet, NetBoxModelFilterSet):
|
|
|
167
172
|
"domain_status",
|
|
168
173
|
)
|
|
169
174
|
|
|
175
|
+
def filter_parental_agents(self, queryset, name, value):
|
|
176
|
+
if not value:
|
|
177
|
+
return queryset
|
|
178
|
+
|
|
179
|
+
query_values = []
|
|
180
|
+
for v in value:
|
|
181
|
+
try:
|
|
182
|
+
query_values.append(str(netaddr.IPAddress(v)))
|
|
183
|
+
except (AddrFormatError, ValueError):
|
|
184
|
+
pass
|
|
185
|
+
|
|
186
|
+
return queryset.filter(parental_agents__overlap=query_values)
|
|
187
|
+
|
|
170
188
|
def filter_arpa_network(self, queryset, name, value):
|
|
171
189
|
if not value:
|
|
172
190
|
return queryset
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
from packaging.version import Version
|
|
2
2
|
|
|
3
3
|
from django import forms
|
|
4
|
-
from django.contrib.postgres.forms import SimpleArrayField
|
|
5
4
|
from django.utils.translation import gettext_lazy as _
|
|
6
5
|
|
|
7
6
|
from netbox.forms import (
|
|
@@ -66,7 +65,6 @@ class DNSSECPolicyForm(TenancyForm, NetBoxModelForm):
|
|
|
66
65
|
"cds_digest_types",
|
|
67
66
|
"parent_ds_ttl",
|
|
68
67
|
"parent_propagation_delay",
|
|
69
|
-
"parental_agents",
|
|
70
68
|
name=_("Parent Delegation"),
|
|
71
69
|
),
|
|
72
70
|
FieldSet(
|
|
@@ -147,11 +145,6 @@ class DNSSECPolicyForm(TenancyForm, NetBoxModelForm):
|
|
|
147
145
|
label=_("Parent Propagation Delay"),
|
|
148
146
|
placeholder=DNSSECPolicy.get_fallback_setting("parent_propagation_delay"),
|
|
149
147
|
)
|
|
150
|
-
parental_agents = SimpleArrayField(
|
|
151
|
-
required=False,
|
|
152
|
-
base_field=forms.GenericIPAddressField(),
|
|
153
|
-
label=_("Parental Agents"),
|
|
154
|
-
)
|
|
155
148
|
|
|
156
149
|
class Meta:
|
|
157
150
|
model = DNSSECPolicy
|
|
@@ -174,7 +167,6 @@ class DNSSECPolicyForm(TenancyForm, NetBoxModelForm):
|
|
|
174
167
|
"cds_digest_types",
|
|
175
168
|
"parent_ds_ttl",
|
|
176
169
|
"parent_propagation_delay",
|
|
177
|
-
"parental_agents",
|
|
178
170
|
"use_nsec3",
|
|
179
171
|
"nsec3_iterations",
|
|
180
172
|
"nsec3_opt_out",
|
|
@@ -219,7 +211,6 @@ class DNSSECPolicyFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
|
|
|
219
211
|
"cds_digest_types",
|
|
220
212
|
"parent_ds_ttl",
|
|
221
213
|
"parent_propagation_delay",
|
|
222
|
-
"parental_agents",
|
|
223
214
|
name=_("Parent Delegation"),
|
|
224
215
|
),
|
|
225
216
|
FieldSet(
|
|
@@ -320,10 +311,6 @@ class DNSSECPolicyFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
|
|
|
320
311
|
required=False,
|
|
321
312
|
label=_("Parent Propagation Delay"),
|
|
322
313
|
)
|
|
323
|
-
parental_agents = forms.GenericIPAddressField(
|
|
324
|
-
required=False,
|
|
325
|
-
label=_("Parental Agent"),
|
|
326
|
-
)
|
|
327
314
|
use_nsec3 = forms.NullBooleanField(
|
|
328
315
|
required=False,
|
|
329
316
|
widget=forms.Select(choices=BOOLEAN_WITH_BLANK_CHOICES),
|
|
@@ -427,7 +414,6 @@ class DNSSECPolicyImportForm(NetBoxModelImportForm):
|
|
|
427
414
|
"cds_digest_types",
|
|
428
415
|
"parent_ds_ttl",
|
|
429
416
|
"parent_propagation_delay",
|
|
430
|
-
"parental_agents",
|
|
431
417
|
"use_nsec3",
|
|
432
418
|
"nsec3_iterations",
|
|
433
419
|
"nsec3_opt_out",
|
|
@@ -508,11 +494,6 @@ class DNSSECPolicyBulkEditForm(NetBoxModelBulkEditForm):
|
|
|
508
494
|
required=False,
|
|
509
495
|
label=_("Parent Propagation Delay"),
|
|
510
496
|
)
|
|
511
|
-
parental_agents = SimpleArrayField(
|
|
512
|
-
required=False,
|
|
513
|
-
base_field=forms.GenericIPAddressField(),
|
|
514
|
-
label=_("Parental Agents"),
|
|
515
|
-
)
|
|
516
497
|
use_nsec3 = forms.NullBooleanField(
|
|
517
498
|
required=False,
|
|
518
499
|
widget=BulkEditNullBooleanSelect(),
|
|
@@ -566,7 +547,6 @@ class DNSSECPolicyBulkEditForm(NetBoxModelBulkEditForm):
|
|
|
566
547
|
"cds_digest_types",
|
|
567
548
|
"parent_ds_ttl",
|
|
568
549
|
"parent_propagation_delay",
|
|
569
|
-
"parental_agents",
|
|
570
550
|
name=_("Parent Delegation"),
|
|
571
551
|
),
|
|
572
552
|
FieldSet(
|
netbox_dns/forms/zone.py
CHANGED
|
@@ -5,6 +5,7 @@ from django.db import transaction
|
|
|
5
5
|
from django.conf import settings
|
|
6
6
|
from django.core.validators import MinValueValidator, MaxValueValidator
|
|
7
7
|
from django.core.exceptions import ValidationError
|
|
8
|
+
from django.contrib.postgres.forms import SimpleArrayField
|
|
8
9
|
from django.utils.translation import gettext_lazy as _
|
|
9
10
|
|
|
10
11
|
from netbox.forms import (
|
|
@@ -242,6 +243,12 @@ class ZoneForm(ZoneTemplateUpdateMixin, TenancyForm, NetBoxModelForm):
|
|
|
242
243
|
label=_("SOA Serial"),
|
|
243
244
|
)
|
|
244
245
|
|
|
246
|
+
parental_agents = SimpleArrayField(
|
|
247
|
+
required=False,
|
|
248
|
+
base_field=forms.GenericIPAddressField(),
|
|
249
|
+
label=_("Parental Agents"),
|
|
250
|
+
)
|
|
251
|
+
|
|
245
252
|
rfc2317_prefix = RFC2317NetworkFormField(
|
|
246
253
|
required=False,
|
|
247
254
|
validators=[validate_ipv4, validate_prefix, validate_rfc2317],
|
|
@@ -282,6 +289,7 @@ class ZoneForm(ZoneTemplateUpdateMixin, TenancyForm, NetBoxModelForm):
|
|
|
282
289
|
FieldSet(
|
|
283
290
|
"dnssec_policy",
|
|
284
291
|
"inline_signing",
|
|
292
|
+
"parental_agents",
|
|
285
293
|
name=_("DNSSEC"),
|
|
286
294
|
),
|
|
287
295
|
FieldSet(
|
|
@@ -386,6 +394,7 @@ class ZoneForm(ZoneTemplateUpdateMixin, TenancyForm, NetBoxModelForm):
|
|
|
386
394
|
"rfc2317_parent_managed",
|
|
387
395
|
"dnssec_policy",
|
|
388
396
|
"inline_signing",
|
|
397
|
+
"parental_agents",
|
|
389
398
|
"registrar",
|
|
390
399
|
"registry_domain_id",
|
|
391
400
|
"expiration_date",
|
|
@@ -425,6 +434,7 @@ class ZoneFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
|
|
|
425
434
|
FieldSet(
|
|
426
435
|
"dnssec_policy_id",
|
|
427
436
|
"inline_signing",
|
|
437
|
+
"parental_agents",
|
|
428
438
|
name=_("DNSSEC"),
|
|
429
439
|
),
|
|
430
440
|
FieldSet(
|
|
@@ -517,6 +527,10 @@ class ZoneFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
|
|
|
517
527
|
widget=forms.Select(choices=BOOLEAN_WITH_BLANK_CHOICES),
|
|
518
528
|
label=_("Use Inline Signing"),
|
|
519
529
|
)
|
|
530
|
+
parental_agents = forms.GenericIPAddressField(
|
|
531
|
+
required=False,
|
|
532
|
+
label=_("Parental Agents"),
|
|
533
|
+
)
|
|
520
534
|
registrar_id = DynamicModelMultipleChoiceField(
|
|
521
535
|
queryset=Registrar.objects.all(),
|
|
522
536
|
required=False,
|
|
@@ -756,6 +770,7 @@ class ZoneImportForm(ZoneTemplateUpdateMixin, NetBoxModelImportForm):
|
|
|
756
770
|
"soa_minimum",
|
|
757
771
|
"dnssec_policy",
|
|
758
772
|
"inline_signing",
|
|
773
|
+
"parental_agents",
|
|
759
774
|
"rfc2317_prefix",
|
|
760
775
|
"rfc2317_parent_managed",
|
|
761
776
|
"registrar",
|
|
@@ -886,6 +901,11 @@ class ZoneBulkEditForm(NetBoxModelBulkEditForm):
|
|
|
886
901
|
widget=BulkEditNullBooleanSelect(),
|
|
887
902
|
label=_("Use Inline Signing"),
|
|
888
903
|
)
|
|
904
|
+
parental_agents = SimpleArrayField(
|
|
905
|
+
required=False,
|
|
906
|
+
base_field=forms.GenericIPAddressField(),
|
|
907
|
+
label=_("Parental Agents"),
|
|
908
|
+
)
|
|
889
909
|
registrar = DynamicModelChoiceField(
|
|
890
910
|
queryset=Registrar.objects.all(),
|
|
891
911
|
required=False,
|
|
@@ -962,6 +982,7 @@ class ZoneBulkEditForm(NetBoxModelBulkEditForm):
|
|
|
962
982
|
FieldSet(
|
|
963
983
|
"dnssec_policy",
|
|
964
984
|
"inline_signing",
|
|
985
|
+
"parental_agents",
|
|
965
986
|
name=_("DNSSEC"),
|
|
966
987
|
),
|
|
967
988
|
FieldSet(
|
netbox_dns/graphql/types.py
CHANGED
|
@@ -90,6 +90,7 @@ class NetBoxDNSZoneType(NetBoxObjectType):
|
|
|
90
90
|
| None
|
|
91
91
|
)
|
|
92
92
|
inline_signing: bool
|
|
93
|
+
parental_agents: List[str]
|
|
93
94
|
registrar: (
|
|
94
95
|
Annotated["NetBoxDNSRegistrarType", strawberry.lazy("netbox_dns.graphql.types")]
|
|
95
96
|
| None
|
|
@@ -214,7 +215,6 @@ class NetBoxDNSDNSSECPolicyType(NetBoxObjectType):
|
|
|
214
215
|
cds_digest_types: List[str]
|
|
215
216
|
parent_ds_ttl: BigInt | None
|
|
216
217
|
parent_propagation_delay: BigInt | None
|
|
217
|
-
parental_agents: List[str]
|
|
218
218
|
use_nsec3: bool
|
|
219
219
|
nsec3_iterations: BigInt | None
|
|
220
220
|
nsec3_opt_out: bool
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Generated by Django 5.1.8 on 2025-04-22 21:45
|
|
2
|
+
|
|
3
|
+
import django.contrib.postgres.fields
|
|
4
|
+
from django.db import migrations, models
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class Migration(migrations.Migration):
|
|
8
|
+
|
|
9
|
+
dependencies = [
|
|
10
|
+
("netbox_dns", "0019_dnssecpolicy_parental_agents"),
|
|
11
|
+
]
|
|
12
|
+
|
|
13
|
+
operations = [
|
|
14
|
+
migrations.RemoveField(
|
|
15
|
+
model_name="dnssecpolicy",
|
|
16
|
+
name="parental_agents",
|
|
17
|
+
),
|
|
18
|
+
migrations.AddField(
|
|
19
|
+
model_name="zone",
|
|
20
|
+
name="parental_agents",
|
|
21
|
+
field=django.contrib.postgres.fields.ArrayField(
|
|
22
|
+
base_field=models.GenericIPAddressField(),
|
|
23
|
+
blank=True,
|
|
24
|
+
default=list,
|
|
25
|
+
null=True,
|
|
26
|
+
size=None,
|
|
27
|
+
),
|
|
28
|
+
),
|
|
29
|
+
]
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
from django.db import models
|
|
2
2
|
from django.urls import reverse
|
|
3
|
-
from django.contrib.postgres.fields import ArrayField
|
|
4
3
|
from django.utils.translation import gettext_lazy as _
|
|
5
4
|
|
|
6
5
|
from netbox.models import NetBoxModel
|
|
@@ -118,14 +117,6 @@ class DNSSECPolicy(ContactsMixin, NetBoxModel):
|
|
|
118
117
|
blank=True,
|
|
119
118
|
null=True,
|
|
120
119
|
)
|
|
121
|
-
parental_agents = ArrayField(
|
|
122
|
-
base_field=models.GenericIPAddressField(
|
|
123
|
-
protocol="both",
|
|
124
|
-
),
|
|
125
|
-
blank=True,
|
|
126
|
-
null=True,
|
|
127
|
-
default=list,
|
|
128
|
-
)
|
|
129
120
|
|
|
130
121
|
use_nsec3 = models.BooleanField(
|
|
131
122
|
verbose_name=_("Use NSEC3"),
|
netbox_dns/models/zone.py
CHANGED
|
@@ -17,6 +17,7 @@ from django.db.models.signals import m2m_changed
|
|
|
17
17
|
from django.urls import reverse
|
|
18
18
|
from django.dispatch import receiver
|
|
19
19
|
from django.conf import settings
|
|
20
|
+
from django.contrib.postgres.fields import ArrayField
|
|
20
21
|
from django.utils.translation import gettext_lazy as _
|
|
21
22
|
|
|
22
23
|
from netbox.models import NetBoxModel
|
|
@@ -193,6 +194,14 @@ class Zone(ObjectModificationMixin, ContactsMixin, NetBoxModel):
|
|
|
193
194
|
help_text=_("Use inline signing for DNSSEC"),
|
|
194
195
|
default=True,
|
|
195
196
|
)
|
|
197
|
+
parental_agents = ArrayField(
|
|
198
|
+
base_field=models.GenericIPAddressField(
|
|
199
|
+
protocol="both",
|
|
200
|
+
),
|
|
201
|
+
blank=True,
|
|
202
|
+
null=True,
|
|
203
|
+
default=list,
|
|
204
|
+
)
|
|
196
205
|
registrar = models.ForeignKey(
|
|
197
206
|
verbose_name=_("Registrar"),
|
|
198
207
|
to="Registrar",
|
|
@@ -310,6 +319,7 @@ class Zone(ObjectModificationMixin, ContactsMixin, NetBoxModel):
|
|
|
310
319
|
"status",
|
|
311
320
|
"dnssec_policy",
|
|
312
321
|
"inline_signing",
|
|
322
|
+
"parental_agents",
|
|
313
323
|
"registrar",
|
|
314
324
|
"registry_domain_id",
|
|
315
325
|
"expiration_date",
|
|
@@ -118,16 +118,6 @@
|
|
|
118
118
|
<th scope="row">{% trans "Parent Propagation Delay" %}</th>
|
|
119
119
|
<td>{{ object.parent_propagation_delay|placeholder }}</td>
|
|
120
120
|
</tr>
|
|
121
|
-
<tr>
|
|
122
|
-
<th scope="row">{% trans "Parental Agents" %}</th>
|
|
123
|
-
<td>
|
|
124
|
-
<table>
|
|
125
|
-
{% for parental_agent in object.parental_agents %}
|
|
126
|
-
<tr><td>{{ parental_agent }}</td></tr>
|
|
127
|
-
{% endfor %}
|
|
128
|
-
</table>
|
|
129
|
-
</td>
|
|
130
|
-
</tr>
|
|
131
121
|
</table>
|
|
132
122
|
</div>
|
|
133
123
|
<div class="card">
|
|
@@ -108,6 +108,16 @@
|
|
|
108
108
|
<th scope="row">{% trans "Use Inline Signing" %}</th>
|
|
109
109
|
<td>{% checkmark object.inline_signing %}</td>
|
|
110
110
|
</tr>
|
|
111
|
+
<tr>
|
|
112
|
+
<th scope="row">{% trans "Parental Agents" %}</th>
|
|
113
|
+
<td>
|
|
114
|
+
<table>
|
|
115
|
+
{% for parental_agent in object.parental_agents %}
|
|
116
|
+
<tr><td>{{ parental_agent }}</td></tr>
|
|
117
|
+
{% endfor %}
|
|
118
|
+
</table>
|
|
119
|
+
</td>
|
|
120
|
+
</tr>
|
|
111
121
|
</table>
|
|
112
122
|
</div>
|
|
113
123
|
{% endif %}
|
|
@@ -49,7 +49,7 @@ def _get_label(tolerate_leading_underscores=False, always_tolerant=False):
|
|
|
49
49
|
|
|
50
50
|
|
|
51
51
|
def _has_invalid_double_dash(name):
|
|
52
|
-
return bool(re.findall(r"
|
|
52
|
+
return bool(re.findall(r"(^|\.)(?!xn)..--", name, re.IGNORECASE))
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
def validate_fqdn(name, always_tolerant=False):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: netbox-plugin-dns
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.10
|
|
4
4
|
Summary: NetBox DNS is a NetBox plugin for managing DNS data.
|
|
5
5
|
Author-email: Peter Eckel <pete@netbox-dns.org>
|
|
6
6
|
Project-URL: Homepage, https://github.com/peteeckel/netbox-plugin-dns
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
netbox_dns/__init__.py,sha256=
|
|
1
|
+
netbox_dns/__init__.py,sha256=w4xDLTTEhlT5JSrBAHJDwPKMvyuCpka8IHuRFLHnfnM,4891
|
|
2
2
|
netbox_dns/apps.py,sha256=JCW5eS-AQBUubDJve1DjP-IRFKTFGQh1NLGWzJpC5MI,151
|
|
3
3
|
netbox_dns/navigation.py,sha256=u90MwWBySg1Z9yfZEdvUctYWEkab5z1Y3019J7U_-3g,7741
|
|
4
4
|
netbox_dns/template_content.py,sha256=irgHJe91TnmmL9K1Xnv07uGmOeJMn9zTrIKtJev88XI,4283
|
|
@@ -10,7 +10,7 @@ netbox_dns/api/urls.py,sha256=-kQaei47yZeGbDpQ9RaFaFlFb682ThuPA5h321_2cgM,1000
|
|
|
10
10
|
netbox_dns/api/views.py,sha256=w71SRyZue5zPD1C64TIr496nYFA_ARjHTlpSVFTZ76o,4522
|
|
11
11
|
netbox_dns/api/serializers_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
12
|
netbox_dns/api/serializers_/dnssec_key_template.py,sha256=QQUvbDwvYP05d_XB7Tcqi9XSR2Zq_ddq0wTBllo3LE0,1585
|
|
13
|
-
netbox_dns/api/serializers_/dnssec_policy.py,sha256=
|
|
13
|
+
netbox_dns/api/serializers_/dnssec_policy.py,sha256=FCsmeJrBGaS3GC7_io3uJLZ2RYuoLvdfRkzSSy6gO6U,3917
|
|
14
14
|
netbox_dns/api/serializers_/nameserver.py,sha256=DMkUaLNDt3UtpAD6JDHfo1NMngHWRqHh2-xQeOPlfFM,1171
|
|
15
15
|
netbox_dns/api/serializers_/prefix.py,sha256=kZ1DjDly6VFZamXSxGa57YC6MfZZcI5S7jmGBkVB2_I,551
|
|
16
16
|
netbox_dns/api/serializers_/record.py,sha256=U3N92qHITIUAN6vXn1cSusstGKlwsWJiqOU1uaSUU9I,2515
|
|
@@ -18,7 +18,7 @@ netbox_dns/api/serializers_/record_template.py,sha256=tvfSlG31X4qn-FjgJespyfkGnb
|
|
|
18
18
|
netbox_dns/api/serializers_/registrar.py,sha256=xLIaeBJ5ckV1Jf-uyCTFcvsLlsRMlpDtIg6q79vXZic,842
|
|
19
19
|
netbox_dns/api/serializers_/registration_contact.py,sha256=3IGWW5xB9XEBGApCGZCZIxpCmy1Y5jQUbA4GzmtaCik,1024
|
|
20
20
|
netbox_dns/api/serializers_/view.py,sha256=nnWeQugoqMdn-NGGC7ykbVPwmBrcBma_ZKwdDxUgJ24,1809
|
|
21
|
-
netbox_dns/api/serializers_/zone.py,sha256=
|
|
21
|
+
netbox_dns/api/serializers_/zone.py,sha256=AataMW3EkDpG-MCZ50wJU5C6kDOEq71HD7n3L36_Auc,6236
|
|
22
22
|
netbox_dns/api/serializers_/zone_template.py,sha256=gYlP6wBSVoTZ-DVxJHzGz2fyLdcyibTYR1O9czEKl_k,4374
|
|
23
23
|
netbox_dns/choices/__init__.py,sha256=K3JfawICeoUny8O_Dqexr7DOxwyg3QqijZ4DO6j5yP8,106
|
|
24
24
|
netbox_dns/choices/dnssec_key_template.py,sha256=khU1gJF1GlBfk1YGCkm56LPvr7SLXEwqaB-SdD-8Zi0,1425
|
|
@@ -35,33 +35,33 @@ netbox_dns/fields/rfc2317.py,sha256=y72PZKlXZ8_6P4eeWZ8IF3gqOMjPxW48gk3AB81XboE,
|
|
|
35
35
|
netbox_dns/fields/timeperiod.py,sha256=InK3FVc8gHNQjx101a7HsGfrHxvoG1y6drYwuRjRSIE,941
|
|
36
36
|
netbox_dns/filtersets/__init__.py,sha256=bKppz_w3X2xNNHOcxZZiIO7zSkDaNTrZJ__k1U7rKik,275
|
|
37
37
|
netbox_dns/filtersets/dnssec_key_template.py,sha256=qu1c2MzBKEflcU-QkWrGGf6aU8iYDgfeKPCcxxfdRkY,1565
|
|
38
|
-
netbox_dns/filtersets/dnssec_policy.py,sha256=
|
|
38
|
+
netbox_dns/filtersets/dnssec_policy.py,sha256=jNlib02OwOVkktLvh9MmxDv9OPL2u7FmoM2h_VhMGe4,3070
|
|
39
39
|
netbox_dns/filtersets/nameserver.py,sha256=7hk9Wh4v4-IHP44rQC4nhdvpYbDYNYYf-XZp6Yo72xE,1203
|
|
40
40
|
netbox_dns/filtersets/record.py,sha256=Ao2666F6z435TXD_hV2dgItI0sWXlS-jyQ1TQZEL8Yc,3913
|
|
41
41
|
netbox_dns/filtersets/record_template.py,sha256=wir5s2QWfDnw0M1wWnzJs9im5ok4l5cTbWPMBSM8aEg,1604
|
|
42
42
|
netbox_dns/filtersets/registrar.py,sha256=Wh_l-IXRHnJhW7Pyokp3czQZISDKzXnWeSQKp512Drc,977
|
|
43
43
|
netbox_dns/filtersets/registration_contact.py,sha256=903sOcHPRCI0dVzqn1i0pn5VPr_4YpHPh5QE2-akR-Y,1139
|
|
44
44
|
netbox_dns/filtersets/view.py,sha256=IlQz3k2J_N6eSbT9op0KOu3sKLrn-HTsJCcrIqoYgyY,1047
|
|
45
|
-
netbox_dns/filtersets/zone.py,sha256=
|
|
45
|
+
netbox_dns/filtersets/zone.py,sha256=DKSQitUGElcxmuOr6uxy5GOliZEnMLT22GKShuM9xvM,7602
|
|
46
46
|
netbox_dns/filtersets/zone_template.py,sha256=7pmS7gd1JdsUgu7ICrq5d5gTuIsxMFSejEKZ2VLwwn8,4737
|
|
47
47
|
netbox_dns/forms/__init__.py,sha256=tObkTOHw_6kVtEcwdyshN0Ql-8VGhwsgQw7owL_s2lI,273
|
|
48
48
|
netbox_dns/forms/dnssec_key_template.py,sha256=BChWsbShkm72tnZGh5ClStN6SG-XPMAeMeu7mQzoCDk,5249
|
|
49
|
-
netbox_dns/forms/dnssec_policy.py,sha256=
|
|
49
|
+
netbox_dns/forms/dnssec_policy.py,sha256=mZWfyV2WD03oHBUcgUEAiXswsydAxyP5-iLgNe2MGXE,17040
|
|
50
50
|
netbox_dns/forms/nameserver.py,sha256=v0nvG4MmpbYypde5KG5TkoXYkwibMhmqi4I8ugNbDXc,3459
|
|
51
51
|
netbox_dns/forms/record.py,sha256=wkl3YpbKfq0bH6U8atNYrYwrV-kNPRqG1PRQG3X1eHA,8389
|
|
52
52
|
netbox_dns/forms/record_template.py,sha256=2wNS0LvxX6Zv9uELWmJyL-hIzaVTItNFHv4xDI3qwAk,6505
|
|
53
53
|
netbox_dns/forms/registrar.py,sha256=GaRH3w5zlhrpwy_U0pxlrl1DrAEaMB78MUlnGxBRwZI,3949
|
|
54
54
|
netbox_dns/forms/registration_contact.py,sha256=IhNAqElY7hOdpDG0jwWMdy3y2mB43xmjUhj3lsgJ3SE,5906
|
|
55
55
|
netbox_dns/forms/view.py,sha256=GacwKHXSDvxQEs-d3ys7rietqA_MzpSd0XjWaSsIbU0,10339
|
|
56
|
-
netbox_dns/forms/zone.py,sha256=
|
|
56
|
+
netbox_dns/forms/zone.py,sha256=YIBSmtKOMLvUSpivNOBTqCJbXo8I-5YrLsPgVXNkR1g,30042
|
|
57
57
|
netbox_dns/forms/zone_template.py,sha256=0VXGG59EH9IJJ-Nq5Bn-eiNJNqT_ZiLADSDyuYWXSLE,11280
|
|
58
58
|
netbox_dns/graphql/__init__.py,sha256=0xg_5d1PPFTadBOZo752t5sfZeLFrqs2jM51Rbf8ti4,652
|
|
59
59
|
netbox_dns/graphql/filters.py,sha256=Cyi8_Jz_5cMZfwsiZaAqsdWQM7Hsp-TmoZkvXOa_-S8,2237
|
|
60
60
|
netbox_dns/graphql/schema.py,sha256=KlbJmlfQEqZhvb6-cYmq94mrMFcQoCh3MldaUD5eVV4,2904
|
|
61
|
-
netbox_dns/graphql/types.py,sha256=
|
|
62
|
-
netbox_dns/locale/de/LC_MESSAGES/django.mo,sha256=
|
|
61
|
+
netbox_dns/graphql/types.py,sha256=119sdeUAFIII85LZluBTKeZDEH5pnQ3JSYwUJOUVkAk,10192
|
|
62
|
+
netbox_dns/locale/de/LC_MESSAGES/django.mo,sha256=lwJghKXnXryPoDpC8TpvN2QyzY8vCBfF-Bmf_MWhZYs,29944
|
|
63
63
|
netbox_dns/locale/en/LC_MESSAGES/django.mo,sha256=GDnSZkfHs3yjtTsll7dksEEej4B50F8pc9RGytZNubM,393
|
|
64
|
-
netbox_dns/locale/fr/LC_MESSAGES/django.mo,sha256=
|
|
64
|
+
netbox_dns/locale/fr/LC_MESSAGES/django.mo,sha256=vL8TcVYyBiDFZ3GVdZe4Kkc42mmtbMF3fot8maY-Q_s,30088
|
|
65
65
|
netbox_dns/management/commands/cleanup_database.py,sha256=1-tAl0Sht80qaNZyfFyUW19Eh9gBUuc7GdbHN4aemGU,5935
|
|
66
66
|
netbox_dns/management/commands/cleanup_rrset_ttl.py,sha256=UFRURLBcFeGHUS2lrYFv7UWIebjI72aG1EUQJt0XsXw,2046
|
|
67
67
|
netbox_dns/management/commands/rebuild_dnssync.py,sha256=Tcl385u6kJTX47SvSyRzKm1RIx4nYRYCMcKr3uVnV60,1246
|
|
@@ -88,6 +88,7 @@ netbox_dns/migrations/0017_dnssec_policy_zone_zone_template.py,sha256=m36a08UMLz
|
|
|
88
88
|
netbox_dns/migrations/0018_zone_domain_status_zone_expiration_date.py,sha256=P_JaNl3NhTPgX7pgA-ZyBJpujrg4HzPcpW6X3FbghMk,595
|
|
89
89
|
netbox_dns/migrations/0019_dnssecpolicy_parental_agents.py,sha256=ENbj3lhsCYHBflUnb2LrfUyTxwvPwcACmL8sUsm7P7A,655
|
|
90
90
|
netbox_dns/migrations/0020_netbox_3_4.py,sha256=UMcHdn8ZAuQjUaM_3rEGpktYrM0TuvhccD7Jt7WQnPs,1271
|
|
91
|
+
netbox_dns/migrations/0020_remove_dnssecpolicy_parental_agents_and_more.py,sha256=Fq2Tv-yz4TAY0yzyVs6j79ztIJa1wOm5oSdbPosYdh0,756
|
|
91
92
|
netbox_dns/migrations/0021_record_ip_address.py,sha256=EqdhWXmq7aiK4X79xTRUZng3zFncCl-8JoO65HqlJKw,3244
|
|
92
93
|
netbox_dns/migrations/0022_search.py,sha256=KW1ffEZ4-0dppGQ_KD1EN7iw8eQJOnDco-xfJFRZqKQ,172
|
|
93
94
|
netbox_dns/migrations/0023_alter_record_value.py,sha256=4_4v8YZzU8_jadJqIUUjH6SIhNTeALWhclozTqYDmv0,378
|
|
@@ -102,14 +103,14 @@ netbox_dns/mixins/__init__.py,sha256=LxTEfpod_RHCyMtnzDljv0_dwqp2z3Q6tqbXW8LTGD8
|
|
|
102
103
|
netbox_dns/mixins/object_modification.py,sha256=AR64fU5f7g-scNAj9b54eSoS9dpjyOpqrxXVXPcOhY8,1807
|
|
103
104
|
netbox_dns/models/__init__.py,sha256=CuwFENIVUv0FNMDlY18Am-mvN5kBGkPOGavCP0cle7c,273
|
|
104
105
|
netbox_dns/models/dnssec_key_template.py,sha256=h6YniKfLx1ILAbvko6Mps-bhsI743uHIOiLgtfStZTI,2790
|
|
105
|
-
netbox_dns/models/dnssec_policy.py,sha256=
|
|
106
|
+
netbox_dns/models/dnssec_policy.py,sha256=eD13F_zTUgpP8fNGg0FssMNBUtpBRvkJiM6ZSYh1Pws,5466
|
|
106
107
|
netbox_dns/models/nameserver.py,sha256=ivZpIVfgQLdDhrtqYPi-zRbygVgl3aff2FMsq1M3qA8,4044
|
|
107
108
|
netbox_dns/models/record.py,sha256=GAl4JQCGX5Ip_R4zAQ-ZA-2Kn-Pr7zBmSgFCGsfbM5M,29806
|
|
108
109
|
netbox_dns/models/record_template.py,sha256=kt-_sMFSMKmuKU8voVqz1-Lh7Wi7lPcA2ExPFQYLoxM,5345
|
|
109
110
|
netbox_dns/models/registrar.py,sha256=L5tbO8rtOa0VCs_y90nHYLKSRKBnnUhh_6sxZ3Mm2kk,1942
|
|
110
111
|
netbox_dns/models/registration_contact.py,sha256=O7T1clUjuilZnDjvhJKaHZdmNEF4aLg2h8K5p4llWOs,3825
|
|
111
112
|
netbox_dns/models/view.py,sha256=gQvKNr_FmhG2EMz2T8kWbdK4b8CyqI-Qc67-Dgrx2SI,4808
|
|
112
|
-
netbox_dns/models/zone.py,sha256=
|
|
113
|
+
netbox_dns/models/zone.py,sha256=oKPWEFfe6AHea4mV1Z28U4TpusMK7-o-mEsch4rZkKE,35830
|
|
113
114
|
netbox_dns/models/zone_template.py,sha256=TpM4LNBStwoyHXkvMGa8zUdBp28ZnauolkbFntt9hPk,5249
|
|
114
115
|
netbox_dns/signals/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
116
|
netbox_dns/signals/dnssec.py,sha256=o4MOEg6ftxoDWFAhDtajkXzb7Nb6KuUHjtx1zNu7C1w,1040
|
|
@@ -127,14 +128,14 @@ netbox_dns/tables/view.py,sha256=gsuWQWAk3RstNIKzBDOHNHR2D3ykX6WigYLMj0VhQFs,114
|
|
|
127
128
|
netbox_dns/tables/zone.py,sha256=TEQcSiuCuWpVtDnPa9oh-IDfrap-Plfi4qK40bGeDzA,2432
|
|
128
129
|
netbox_dns/tables/zone_template.py,sha256=TU45sNYPHxs1xJTKj57e1s-jxLENCOAgE6S6lconWMc,1751
|
|
129
130
|
netbox_dns/templates/netbox_dns/dnsseckeytemplate.html,sha256=dSEyHgUp0k_5JSdR4s4m_7Rom67TqvRIQN0zbQKYfjE,2839
|
|
130
|
-
netbox_dns/templates/netbox_dns/dnssecpolicy.html,sha256=
|
|
131
|
+
netbox_dns/templates/netbox_dns/dnssecpolicy.html,sha256=dXHAt8ISsSWv-vK_kaJMcAzUBh4TZ2hAmeaYa47u0PU,7694
|
|
131
132
|
netbox_dns/templates/netbox_dns/nameserver.html,sha256=MawPiuAmjFrbv0zRi-7xkm8vr-dT1tlEno8EcoQ9peU,1714
|
|
132
133
|
netbox_dns/templates/netbox_dns/record.html,sha256=1KBT4xDooTX9kt1cUoPD2-6QnMizPmbItA0JAAgRzfw,6550
|
|
133
134
|
netbox_dns/templates/netbox_dns/recordtemplate.html,sha256=a29PAUl-KI_I1lxWpVdPp2loJtzgis9DG9erOWrOZM0,3708
|
|
134
135
|
netbox_dns/templates/netbox_dns/registrar.html,sha256=4kJuj3biiDxQrIMQEQUEmF4iGRE4psr6Fh0CBP1evz8,2308
|
|
135
136
|
netbox_dns/templates/netbox_dns/registrationcontact.html,sha256=sljVp_MrPSJRc2vJCPFXq9MiWOw4wjbr1kI_YStBntw,3094
|
|
136
137
|
netbox_dns/templates/netbox_dns/view.html,sha256=1MuzOYNQezRrryNjlklgxErjGTFoVnwqcxf4qceuglw,3320
|
|
137
|
-
netbox_dns/templates/netbox_dns/zone.html,sha256=
|
|
138
|
+
netbox_dns/templates/netbox_dns/zone.html,sha256=3G80d3_oJM8LfLZNBGR2mO_UHadGK4Glr1sk5MO92dA,7997
|
|
138
139
|
netbox_dns/templates/netbox_dns/zonetemplate.html,sha256=a3QD0O_8CW2MUBnU_nXGweGhCwo5pYDVlwJHzovC1RU,4344
|
|
139
140
|
netbox_dns/templates/netbox_dns/record/managed.html,sha256=uwpxQTxyfAXkWqThLT-T2ZssKNUhXTDDMnLWJSVuDNU,119
|
|
140
141
|
netbox_dns/templates/netbox_dns/record/related.html,sha256=R59aPhE4CyIZtTH0ncwDyS6_wAe_Y-oZjuN_j4qk8iA,1158
|
|
@@ -157,7 +158,7 @@ netbox_dns/utilities/conversions.py,sha256=qYnzecmR28l8Je_H0vFvzJ2sikTiEiyxr6drl
|
|
|
157
158
|
netbox_dns/utilities/dns.py,sha256=UBiyQe8thiOTnKOmU9e2iRHHnGF9toVLe4efU623kX4,322
|
|
158
159
|
netbox_dns/utilities/ipam_dnssync.py,sha256=_yuHoah_QN-opsZB51yGCkwjkij7nrmTgKHUZ-bQrBI,9625
|
|
159
160
|
netbox_dns/validators/__init__.py,sha256=X0hPZlC3VZcXMcvXKZ2_5LSoEJdXPNSBr4QtEIFSBJ0,94
|
|
160
|
-
netbox_dns/validators/dns_name.py,sha256=
|
|
161
|
+
netbox_dns/validators/dns_name.py,sha256=1MKnYAmkSTIQGf6zInqkpbIj5SCeCM0YGKmYOqFzUK4,3770
|
|
161
162
|
netbox_dns/validators/dns_value.py,sha256=cADhgTohXAtOLPzaoMKO9DahEUiDanpdiuKonrwFw0E,5278
|
|
162
163
|
netbox_dns/validators/dnssec.py,sha256=FzWLXX3qwS9ZMaLWHaBJStwJ_D96wp7GI4LYoKjoegc,4909
|
|
163
164
|
netbox_dns/validators/rfc2317.py,sha256=uKkwxpakiFFKdYA0qy8WSlEnbFwJD4MDw6gGV4F6skg,706
|
|
@@ -172,8 +173,8 @@ netbox_dns/views/registration_contact.py,sha256=c9KrNkfFNsb55pL74A5rN1CNx32M82V6
|
|
|
172
173
|
netbox_dns/views/view.py,sha256=VfrKaLC9D_KNZNmRyFVohRlmMlMbtblAuPgNg0LNyf8,3421
|
|
173
174
|
netbox_dns/views/zone.py,sha256=DU_esPOMHGMRQIgy5vS8miZe-FNozBcIyMLZPwZK4_c,7453
|
|
174
175
|
netbox_dns/views/zone_template.py,sha256=IIW1lr6RQmhShtqJu6A6LnHdxdBrkkZQHxIDSTqQeyc,2705
|
|
175
|
-
netbox_plugin_dns-1.2.
|
|
176
|
-
netbox_plugin_dns-1.2.
|
|
177
|
-
netbox_plugin_dns-1.2.
|
|
178
|
-
netbox_plugin_dns-1.2.
|
|
179
|
-
netbox_plugin_dns-1.2.
|
|
176
|
+
netbox_plugin_dns-1.2.10.dist-info/licenses/LICENSE,sha256=I3tDu11bZfhFm3EkV4zOD5TmWgLjnUNLEFwrdjniZYs,1112
|
|
177
|
+
netbox_plugin_dns-1.2.10.dist-info/METADATA,sha256=4N4_t42C4RkxxCvd9rm2ZzbuYuH8v01OnWIT-WQJM4k,7659
|
|
178
|
+
netbox_plugin_dns-1.2.10.dist-info/WHEEL,sha256=wXxTzcEDnjrTwFYjLPcsW_7_XihufBwmpiBeiXNBGEA,91
|
|
179
|
+
netbox_plugin_dns-1.2.10.dist-info/top_level.txt,sha256=sA1Rwl1mRKvMC6XHe2ylZ1GF-Q1NGd08XedK9Y4xZc4,11
|
|
180
|
+
netbox_plugin_dns-1.2.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|