netbox-plugin-dns 1.0.5__py3-none-any.whl → 1.0.6__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.

Files changed (63) hide show
  1. netbox_dns/__init__.py +1 -1
  2. netbox_dns/api/nested_serializers.py +1 -1
  3. netbox_dns/api/serializers_/contact.py +1 -1
  4. netbox_dns/api/serializers_/nameserver.py +1 -1
  5. netbox_dns/api/serializers_/record.py +1 -1
  6. netbox_dns/api/serializers_/record_template.py +2 -1
  7. netbox_dns/api/serializers_/registrar.py +1 -1
  8. netbox_dns/api/serializers_/view.py +1 -1
  9. netbox_dns/api/serializers_/zone.py +2 -1
  10. netbox_dns/api/serializers_/zone_template.py +2 -1
  11. netbox_dns/choices/record.py +1 -1
  12. netbox_dns/choices/zone.py +1 -1
  13. netbox_dns/fields/address.py +1 -1
  14. netbox_dns/fields/network.py +1 -1
  15. netbox_dns/fields/rfc2317.py +4 -1
  16. netbox_dns/filtersets/contact.py +1 -1
  17. netbox_dns/filtersets/nameserver.py +1 -1
  18. netbox_dns/filtersets/record.py +1 -1
  19. netbox_dns/filtersets/record_template.py +1 -1
  20. netbox_dns/filtersets/registrar.py +1 -1
  21. netbox_dns/filtersets/view.py +1 -1
  22. netbox_dns/filtersets/zone.py +1 -1
  23. netbox_dns/filtersets/zone_template.py +1 -1
  24. netbox_dns/forms/contact.py +1 -1
  25. netbox_dns/forms/nameserver.py +14 -3
  26. netbox_dns/forms/record.py +2 -2
  27. netbox_dns/forms/record_template.py +1 -1
  28. netbox_dns/forms/registrar.py +1 -1
  29. netbox_dns/forms/view.py +1 -1
  30. netbox_dns/forms/zone.py +17 -6
  31. netbox_dns/forms/zone_template.py +1 -1
  32. netbox_dns/mixins/object_modification.py +3 -1
  33. netbox_dns/models/contact.py +1 -1
  34. netbox_dns/models/nameserver.py +1 -1
  35. netbox_dns/models/record.py +4 -1
  36. netbox_dns/models/record_template.py +1 -1
  37. netbox_dns/models/registrar.py +1 -1
  38. netbox_dns/models/view.py +1 -1
  39. netbox_dns/models/zone.py +9 -8
  40. netbox_dns/models/zone_template.py +2 -1
  41. netbox_dns/tables/contact.py +1 -1
  42. netbox_dns/tables/nameserver.py +1 -1
  43. netbox_dns/tables/record.py +1 -1
  44. netbox_dns/tables/record_template.py +1 -1
  45. netbox_dns/tables/registrar.py +1 -1
  46. netbox_dns/tables/view.py +1 -1
  47. netbox_dns/tables/zone.py +1 -1
  48. netbox_dns/tables/zone_template.py +1 -1
  49. netbox_dns/validators/dns_name.py +1 -1
  50. netbox_dns/validators/dns_value.py +1 -1
  51. netbox_dns/validators/rfc2317.py +1 -1
  52. netbox_dns/views/contact.py +2 -1
  53. netbox_dns/views/nameserver.py +2 -1
  54. netbox_dns/views/record.py +1 -1
  55. netbox_dns/views/record_template.py +1 -1
  56. netbox_dns/views/registrar.py +1 -1
  57. netbox_dns/views/view.py +1 -1
  58. netbox_dns/views/zone.py +1 -1
  59. netbox_dns/views/zone_template.py +1 -1
  60. {netbox_plugin_dns-1.0.5.dist-info → netbox_plugin_dns-1.0.6.dist-info}/METADATA +1 -1
  61. {netbox_plugin_dns-1.0.5.dist-info → netbox_plugin_dns-1.0.6.dist-info}/RECORD +63 -63
  62. {netbox_plugin_dns-1.0.5.dist-info → netbox_plugin_dns-1.0.6.dist-info}/LICENSE +0 -0
  63. {netbox_plugin_dns-1.0.5.dist-info → netbox_plugin_dns-1.0.6.dist-info}/WHEEL +0 -0
netbox_dns/__init__.py CHANGED
@@ -1,6 +1,6 @@
1
1
  from netbox.plugins import PluginConfig
2
2
 
3
- __version__ = "1.0.5"
3
+ __version__ = "1.0.6"
4
4
 
5
5
 
6
6
  class DNSConfig(PluginConfig):
@@ -6,7 +6,7 @@ from netbox_dns.models import Zone, Record, ZoneTemplate, RecordTemplate
6
6
  from netbox_dns.api.serializers_.view import ViewSerializer
7
7
 
8
8
 
9
- __ALL__ = (
9
+ __all__ = (
10
10
  "NestedZoneSerializer",
11
11
  "NestedRecordSerializer",
12
12
  "NestedZoneTemplateSerializer",
@@ -5,7 +5,7 @@ from netbox.api.serializers import NetBoxModelSerializer
5
5
  from netbox_dns.models import Contact
6
6
 
7
7
 
8
- __ALL__ = ("ContactSerializer",)
8
+ __all__ = ("ContactSerializer",)
9
9
 
10
10
 
11
11
  class ContactSerializer(NetBoxModelSerializer):
@@ -8,7 +8,7 @@ from netbox_dns.models import NameServer
8
8
  from ..nested_serializers import NestedZoneSerializer
9
9
 
10
10
 
11
- __ALL__ = ("NameServerSerializer",)
11
+ __all__ = ("NameServerSerializer",)
12
12
 
13
13
 
14
14
  class NameServerSerializer(NetBoxModelSerializer):
@@ -9,7 +9,7 @@ from netbox_dns.models import Record
9
9
  from ..nested_serializers import NestedZoneSerializer, NestedRecordSerializer
10
10
 
11
11
 
12
- __ALL__ = ("RecordSerializer",)
12
+ __all__ = ("RecordSerializer",)
13
13
 
14
14
 
15
15
  class RecordSerializer(NetBoxModelSerializer):
@@ -7,7 +7,8 @@ from netbox_dns.models import RecordTemplate
7
7
 
8
8
  from ..nested_serializers import NestedZoneTemplateSerializer
9
9
 
10
- __ALL__ = ("RecordTemplateSerializer",)
10
+
11
+ __all__ = ("RecordTemplateSerializer",)
11
12
 
12
13
 
13
14
  class RecordTemplateSerializer(NetBoxModelSerializer):
@@ -5,7 +5,7 @@ from netbox.api.serializers import NetBoxModelSerializer
5
5
  from netbox_dns.models import Registrar
6
6
 
7
7
 
8
- __ALL__ = ("RegistrarSerializer",)
8
+ __all__ = ("RegistrarSerializer",)
9
9
 
10
10
 
11
11
  class RegistrarSerializer(NetBoxModelSerializer):
@@ -6,7 +6,7 @@ from tenancy.api.serializers_.tenants import TenantSerializer
6
6
  from netbox_dns.models import View
7
7
 
8
8
 
9
- __ALL__ = ("ViewSerializer",)
9
+ __all__ = ("ViewSerializer",)
10
10
 
11
11
 
12
12
  class ViewSerializer(NetBoxModelSerializer):
@@ -13,7 +13,8 @@ from ..nested_serializers import NestedZoneSerializer
13
13
 
14
14
  from netbox_dns.models import Zone
15
15
 
16
- __ALL__ = ("NameServerSerializer",)
16
+
17
+ __all__ = ("ZoneSerializer",)
17
18
 
18
19
 
19
20
  class ZoneSerializer(NetBoxModelSerializer):
@@ -10,7 +10,8 @@ from .nameserver import NameServerSerializer
10
10
  from .registrar import RegistrarSerializer
11
11
  from .contact import ContactSerializer
12
12
 
13
- __ALL__ = ("ZoneTemplateSerializer",)
13
+
14
+ __all__ = ("ZoneTemplateSerializer",)
14
15
 
15
16
 
16
17
  class ZoneTemplateSerializer(NetBoxModelSerializer):
@@ -9,7 +9,7 @@ def initialize_choice_names(cls):
9
9
  return cls
10
10
 
11
11
 
12
- __ALL__ = (
12
+ __all__ = (
13
13
  "RecordTypeChoices",
14
14
  "RecordClassChoices",
15
15
  "RecordStatusChoices",
@@ -1,7 +1,7 @@
1
1
  from utilities.choices import ChoiceSet
2
2
 
3
3
 
4
- __ALL__ = ("ZoneStatusChoices",)
4
+ __all__ = ("ZoneStatusChoices",)
5
5
 
6
6
 
7
7
  class ZoneStatusChoices(ChoiceSet):
@@ -5,7 +5,7 @@ from django.core.exceptions import ValidationError
5
5
  from netaddr import AddrFormatError, IPAddress
6
6
 
7
7
 
8
- __ALL__ = (
8
+ __all__ = (
9
9
  "AddressFormField",
10
10
  "AddressField",
11
11
  )
@@ -6,7 +6,7 @@ from django.core.exceptions import ValidationError
6
6
  from netaddr import AddrFormatError, IPNetwork
7
7
 
8
8
 
9
- __ALL__ = ()
9
+ __all__ = ("NetworkField",)
10
10
 
11
11
 
12
12
  class NetContains(Lookup):
@@ -10,7 +10,10 @@ from .network import NetContains, NetContained, NetOverlap, NetMaskLength
10
10
  INVALID_RFC2317 = "RFC2317 requires an IPv4 prefix with a length of at least 25 bits."
11
11
 
12
12
 
13
- __ALL__ = ()
13
+ __all__ = (
14
+ "RFC2317NetworkField",
15
+ "RFC2317NetworkFormField",
16
+ )
14
17
 
15
18
 
16
19
  class RFC2317NetworkFormField(forms.Field):
@@ -5,7 +5,7 @@ from netbox.filtersets import NetBoxModelFilterSet
5
5
  from netbox_dns.models import Contact
6
6
 
7
7
 
8
- __ALL__ = ("ContactFilterSet",)
8
+ __all__ = ("ContactFilterSet",)
9
9
 
10
10
 
11
11
  class ContactFilterSet(NetBoxModelFilterSet):
@@ -7,7 +7,7 @@ from tenancy.filtersets import TenancyFilterSet
7
7
  from netbox_dns.models import NameServer, Zone
8
8
 
9
9
 
10
- __ALL__ = ("NameServerFilterSet",)
10
+ __all__ = ("NameServerFilterSet",)
11
11
 
12
12
 
13
13
  class NameServerFilterSet(TenancyFilterSet, NetBoxModelFilterSet):
@@ -13,7 +13,7 @@ from netbox_dns.models import View, Zone, Record
13
13
  from netbox_dns.choices import RecordTypeChoices, RecordStatusChoices
14
14
 
15
15
 
16
- __ALL__ = ("RecordFilterSet",)
16
+ __all__ = ("RecordFilterSet",)
17
17
 
18
18
 
19
19
  class RecordFilterSet(TenancyFilterSet, NetBoxModelFilterSet):
@@ -8,7 +8,7 @@ from netbox_dns.models import RecordTemplate, ZoneTemplate
8
8
  from netbox_dns.choices import RecordTypeChoices, RecordStatusChoices
9
9
 
10
10
 
11
- __ALL__ = ("RecordTemplateFilterSet",)
11
+ __all__ = ("RecordTemplateFilterSet",)
12
12
 
13
13
 
14
14
  class RecordTemplateFilterSet(TenancyFilterSet, NetBoxModelFilterSet):
@@ -5,7 +5,7 @@ from netbox.filtersets import NetBoxModelFilterSet
5
5
  from netbox_dns.models import Registrar
6
6
 
7
7
 
8
- __ALL__ = ("RegistrarFilterSet",)
8
+ __all__ = ("RegistrarFilterSet",)
9
9
 
10
10
 
11
11
  class RegistrarFilterSet(NetBoxModelFilterSet):
@@ -6,7 +6,7 @@ from tenancy.filtersets import TenancyFilterSet
6
6
  from netbox_dns.models import View
7
7
 
8
8
 
9
- __ALL__ = ("ViewFilterSet",)
9
+ __all__ = ("ViewFilterSet",)
10
10
 
11
11
 
12
12
  class ViewFilterSet(NetBoxModelFilterSet, TenancyFilterSet):
@@ -11,7 +11,7 @@ from netbox_dns.models import View, Zone, Registrar, Contact, NameServer
11
11
  from netbox_dns.choices import ZoneStatusChoices
12
12
 
13
13
 
14
- __ALL__ = ("ZoneFilterSet",)
14
+ __all__ = ("ZoneFilterSet",)
15
15
 
16
16
 
17
17
  class ZoneFilterSet(TenancyFilterSet, NetBoxModelFilterSet):
@@ -14,7 +14,7 @@ from netbox_dns.models import (
14
14
  )
15
15
 
16
16
 
17
- __ALL__ = ("ZoneTemplateFilterSet",)
17
+ __all__ = ("ZoneTemplateFilterSet",)
18
18
 
19
19
 
20
20
  class ZoneTemplateFilterSet(TenancyFilterSet, NetBoxModelFilterSet):
@@ -12,7 +12,7 @@ from utilities.forms.rendering import FieldSet
12
12
  from netbox_dns.models import Contact
13
13
 
14
14
 
15
- __ALL__ = (
15
+ __all__ = (
16
16
  "ContactForm",
17
17
  "ContactFilterForm",
18
18
  "ContactImportForm",
@@ -11,16 +11,17 @@ from utilities.forms.fields import (
11
11
  TagFilterField,
12
12
  CSVModelChoiceField,
13
13
  DynamicModelChoiceField,
14
+ DynamicModelMultipleChoiceField,
14
15
  )
15
16
  from utilities.forms.rendering import FieldSet
16
17
  from tenancy.models import Tenant
17
18
  from tenancy.forms import TenancyForm, TenancyFilterForm
18
19
 
19
- from netbox_dns.models import NameServer
20
+ from netbox_dns.models import NameServer, Zone
20
21
  from netbox_dns.utilities import name_to_unicode
21
22
 
22
23
 
23
- __ALL__ = (
24
+ __all__ = (
24
25
  "NameServerForm",
25
26
  "NameServerFilterForm",
26
27
  "NameServerImportForm",
@@ -50,6 +51,16 @@ class NameServerForm(TenancyForm, NetBoxModelForm):
50
51
  class NameServerFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
51
52
  model = NameServer
52
53
 
54
+ zone_id = DynamicModelMultipleChoiceField(
55
+ queryset=Zone.objects.all(),
56
+ required=False,
57
+ label="Zones",
58
+ )
59
+ soa_zone_id = DynamicModelMultipleChoiceField(
60
+ queryset=Zone.objects.all(),
61
+ required=False,
62
+ label="SOA Zones",
63
+ )
53
64
  name = forms.CharField(
54
65
  required=False,
55
66
  )
@@ -60,7 +71,7 @@ class NameServerFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
60
71
 
61
72
  fieldsets = (
62
73
  FieldSet("q", "filter_id", "tag"),
63
- FieldSet("name", "description", name="Attributes"),
74
+ FieldSet("name", "zone_id", "soa_zone_id", "description", name="Attributes"),
64
75
  FieldSet("tenant_group_id", "tenant_id", name="Tenancy"),
65
76
  )
66
77
 
@@ -24,7 +24,7 @@ from netbox_dns.choices import RecordTypeChoices, RecordStatusChoices
24
24
  from netbox_dns.utilities import name_to_unicode
25
25
 
26
26
 
27
- __ALL__ = (
27
+ __all__ = (
28
28
  "RecordForm",
29
29
  "RecordFilterForm",
30
30
  "RecordImportForm",
@@ -60,7 +60,7 @@ class RecordForm(TenancyForm, NetBoxModelForm):
60
60
  label="Zone",
61
61
  )
62
62
 
63
- disable_ptr = forms.NullBooleanField(
63
+ disable_ptr = forms.BooleanField(
64
64
  label="Disable PTR",
65
65
  required=False,
66
66
  )
@@ -24,7 +24,7 @@ from netbox_dns.choices import RecordTypeChoices, RecordStatusChoices
24
24
  from netbox_dns.utilities import name_to_unicode
25
25
 
26
26
 
27
- __ALL__ = (
27
+ __all__ = (
28
28
  "RecordTemplateForm",
29
29
  "RecordTemplateFilterForm",
30
30
  "RecordTemplateImportForm",
@@ -12,7 +12,7 @@ from utilities.forms.rendering import FieldSet
12
12
  from netbox_dns.models import Registrar
13
13
 
14
14
 
15
- __ALL__ = (
15
+ __all__ = (
16
16
  "RegistrarForm",
17
17
  "RegistrarFilterForm",
18
18
  "RegistrarImportForm",
netbox_dns/forms/view.py CHANGED
@@ -19,7 +19,7 @@ from tenancy.forms import TenancyForm, TenancyFilterForm
19
19
  from netbox_dns.models import View
20
20
 
21
21
 
22
- __ALL__ = (
22
+ __all__ = (
23
23
  "ViewForm",
24
24
  "ViewFilterForm",
25
25
  "ViewImportForm",
netbox_dns/forms/zone.py CHANGED
@@ -39,7 +39,7 @@ from netbox_dns.fields import RFC2317NetworkFormField
39
39
  from netbox_dns.validators import validate_ipv4, validate_prefix, validate_rfc2317
40
40
 
41
41
 
42
- __ALL__ = (
42
+ __all__ = (
43
43
  "ZoneForm",
44
44
  "ZoneFilterForm",
45
45
  "ZoneImportForm",
@@ -81,6 +81,14 @@ class ZoneTemplateUpdateMixin:
81
81
  else:
82
82
  zone_data = self.cleaned_data.copy()
83
83
 
84
+ custom_fields = dict()
85
+ for key, value in zone_data.copy().items():
86
+ if key.startswith("cf_"):
87
+ custom_fields[key[3:]] = value
88
+ zone_data.pop(key)
89
+ if custom_fields:
90
+ zone_data["custom_field_data"] = custom_fields
91
+
84
92
  zone_data.pop("template", None)
85
93
  zone_data.pop("tenant_group", None)
86
94
  zone_data.pop("_init_time", None)
@@ -261,9 +269,6 @@ class ZoneForm(ZoneTemplateUpdateMixin, TenancyForm, NetBoxModelForm):
261
269
  if self.initial.get("soa_ttl") is None:
262
270
  self.initial["soa_ttl"] = self.initial.get("default_ttl")
263
271
 
264
- if self.initial.get("soa_serial_auto"):
265
- self.initial["soa_serial"] = None
266
-
267
272
  if self.initial.get("soa_mname") is None:
268
273
  default_soa_mname = defaults.get("zone_soa_mname")
269
274
  if default_soa_mname is not None:
@@ -330,7 +335,12 @@ class ZoneFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
330
335
  fieldsets = (
331
336
  FieldSet("q", "filter_id", "tag"),
332
337
  FieldSet(
333
- "view_id", "status", "name", "nameservers", "description", name="Attributes"
338
+ "view_id",
339
+ "status",
340
+ "name",
341
+ "nameserver_id",
342
+ "description",
343
+ name="Attributes",
334
344
  ),
335
345
  FieldSet(
336
346
  "soa_mname_id",
@@ -368,9 +378,10 @@ class ZoneFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
368
378
  name = forms.CharField(
369
379
  required=False,
370
380
  )
371
- nameservers = DynamicModelMultipleChoiceField(
381
+ nameserver_id = DynamicModelMultipleChoiceField(
372
382
  queryset=NameServer.objects.all(),
373
383
  required=False,
384
+ label="Nameservers",
374
385
  )
375
386
  description = forms.CharField(
376
387
  required=False,
@@ -26,7 +26,7 @@ from netbox_dns.models import (
26
26
  )
27
27
 
28
28
 
29
- __ALL__ = (
29
+ __all__ = (
30
30
  "ZoneTemplateForm",
31
31
  "ZoneTemplateFilterForm",
32
32
  "ZoneTemplateImportForm",
@@ -1,7 +1,7 @@
1
1
  from netbox.models import NetBoxModel
2
2
 
3
3
 
4
- __ALL__ = ("ObjectModificationMixin",)
4
+ __all__ = ("ObjectModificationMixin",)
5
5
 
6
6
 
7
7
  class ObjectModificationMixin:
@@ -15,6 +15,8 @@ class ObjectModificationMixin:
15
15
  - {"id"}
16
16
  )
17
17
 
18
+ self.__class__.check_fields.add("custom_field_data")
19
+
18
20
  @property
19
21
  def changed_fields(self):
20
22
  if self.pk is None:
@@ -7,7 +7,7 @@ from netbox.search import SearchIndex, register_search
7
7
  from taggit.managers import TaggableManager
8
8
 
9
9
 
10
- __ALL__ = (
10
+ __all__ = (
11
11
  "Contact",
12
12
  "ContactIndex",
13
13
  )
@@ -20,7 +20,7 @@ from netbox_dns.mixins import ObjectModificationMixin
20
20
  from .record import Record
21
21
 
22
22
 
23
- __ALL__ = (
23
+ __all__ = (
24
24
  "NameServer",
25
25
  "NameServerIndex",
26
26
  )
@@ -24,7 +24,8 @@ from netbox_dns.choices import RecordTypeChoices, RecordStatusChoices
24
24
  # -
25
25
  from netbox_dns.models import zone
26
26
 
27
- __ALL__ = (
27
+
28
+ __all__ = (
28
29
  "Record",
29
30
  "RecordIndex",
30
31
  )
@@ -519,6 +520,7 @@ class Record(ObjectModificationMixin, NetBoxModel):
519
520
  )
520
521
  .exclude(ttl=self.ttl)
521
522
  .exclude(type=RecordTypeChoices.PTR, managed=True)
523
+ .exclude(status=RecordStatusChoices.STATUS_INACTIVE)
522
524
  )
523
525
 
524
526
  if not records.exists():
@@ -553,6 +555,7 @@ class Record(ObjectModificationMixin, NetBoxModel):
553
555
  .exclude(pk=self.pk)
554
556
  .exclude(ttl=ttl)
555
557
  .exclude(type=RecordTypeChoices.PTR, managed=True)
558
+ .exclude(status=RecordStatusChoices.STATUS_INACTIVE)
556
559
  )
557
560
 
558
561
  for record in records:
@@ -15,7 +15,7 @@ from netbox_dns.validators import validate_generic_name, validate_record_value
15
15
  from .record import Record
16
16
 
17
17
 
18
- __ALL__ = (
18
+ __all__ = (
19
19
  "RecordTemplate",
20
20
  "RecordTemplateIndex",
21
21
  )
@@ -5,7 +5,7 @@ from netbox.models import NetBoxModel
5
5
  from netbox.search import SearchIndex, register_search
6
6
 
7
7
 
8
- __ALL__ = (
8
+ __all__ = (
9
9
  "Registrar",
10
10
  "RegistrarIndex",
11
11
  )
netbox_dns/models/view.py CHANGED
@@ -10,7 +10,7 @@ from utilities.exceptions import AbortRequest
10
10
  from netbox_dns.mixins import ObjectModificationMixin
11
11
 
12
12
 
13
- __ALL__ = (
13
+ __all__ = (
14
14
  "View",
15
15
  "ViewIndex",
16
16
  )
netbox_dns/models/zone.py CHANGED
@@ -43,7 +43,7 @@ from .view import View
43
43
  from .nameserver import NameServer
44
44
 
45
45
 
46
- __ALL__ = (
46
+ __all__ = (
47
47
  "Zone",
48
48
  "ZoneIndex",
49
49
  )
@@ -800,10 +800,11 @@ class Zone(ObjectModificationMixin, NetBoxModel):
800
800
  address_record.ptr_record.delete()
801
801
 
802
802
  ptr_records = self.record_set.filter(address_record__isnull=False)
803
- update_records = [
804
- address_record.pk
805
- for address_record in Record.objects.filter(ptr_record__in=ptr_records)
806
- ]
803
+ update_records = list(
804
+ Record.objects.filter(ptr_record__in=ptr_records).values_list(
805
+ "pk", flat=True
806
+ )
807
+ )
807
808
 
808
809
  cname_records = {
809
810
  ptr_record.rfc2317_cname_record
@@ -818,9 +819,9 @@ class Zone(ObjectModificationMixin, NetBoxModel):
818
819
  cname_zone.save_soa_serial()
819
820
  cname_zone.update_soa_record()
820
821
 
821
- rfc2317_child_zones = [
822
- child_zone.pk for child_zone in self.rfc2317_child_zones.all()
823
- ]
822
+ rfc2317_child_zones = list(
823
+ self.rfc2317_child_zones.all().values_list("pk", flat=True)
824
+ )
824
825
 
825
826
  if get_plugin_config("netbox_dns", "feature_ipam_coupling"):
826
827
  for ip in IPAddress.objects.filter(
@@ -5,7 +5,7 @@ from netbox.models import NetBoxModel
5
5
  from netbox.search import SearchIndex, register_search
6
6
 
7
7
 
8
- __ALL__ = (
8
+ __all__ = (
9
9
  "ZoneTemplate",
10
10
  "ZoneTemplateIndex",
11
11
  )
@@ -85,6 +85,7 @@ class ZoneTemplate(NetBoxModel):
85
85
  clone_fields = [
86
86
  "description",
87
87
  "nameservers",
88
+ "record_templates",
88
89
  "tenant",
89
90
  "registrar",
90
91
  "registrant",
@@ -5,7 +5,7 @@ from netbox.tables import NetBoxTable, TagColumn
5
5
  from netbox_dns.models import Contact
6
6
 
7
7
 
8
- __ALL__ = ("ContactTable",)
8
+ __all__ = ("ContactTable",)
9
9
 
10
10
 
11
11
  class ContactTable(NetBoxTable):
@@ -6,7 +6,7 @@ from tenancy.tables import TenancyColumnsMixin
6
6
  from netbox_dns.models import NameServer
7
7
 
8
8
 
9
- __ALL__ = ("NameServerTable",)
9
+ __all__ = ("NameServerTable",)
10
10
 
11
11
 
12
12
  class NameServerTable(TenancyColumnsMixin, NetBoxTable):
@@ -12,7 +12,7 @@ from netbox_dns.models import Record
12
12
  from netbox_dns.utilities import value_to_unicode
13
13
 
14
14
 
15
- __ALL__ = (
15
+ __all__ = (
16
16
  "RecordTable",
17
17
  "ManagedRecordTable",
18
18
  "RelatedRecordTable",
@@ -7,7 +7,7 @@ from netbox_dns.models import RecordTemplate
7
7
  from netbox_dns.utilities import value_to_unicode
8
8
 
9
9
 
10
- __ALL__ = (
10
+ __all__ = (
11
11
  "RecordTemplateTable",
12
12
  "RecordTemplateDisplayTable",
13
13
  )
@@ -5,7 +5,7 @@ from netbox.tables import NetBoxTable, TagColumn
5
5
  from netbox_dns.models import Registrar
6
6
 
7
7
 
8
- __ALL__ = ("RegistrarTable",)
8
+ __all__ = ("RegistrarTable",)
9
9
 
10
10
 
11
11
  class RegistrarTable(NetBoxTable):
netbox_dns/tables/view.py CHANGED
@@ -6,7 +6,7 @@ from tenancy.tables import TenancyColumnsMixin
6
6
  from netbox_dns.models import View
7
7
 
8
8
 
9
- __ALL__ = ("ViewTable",)
9
+ __all__ = ("ViewTable",)
10
10
 
11
11
 
12
12
  class ViewTable(TenancyColumnsMixin, NetBoxTable):
netbox_dns/tables/zone.py CHANGED
@@ -10,7 +10,7 @@ from tenancy.tables import TenancyColumnsMixin
10
10
  from netbox_dns.models import Zone
11
11
 
12
12
 
13
- __ALL__ = ("ZoneTable",)
13
+ __all__ = ("ZoneTable",)
14
14
 
15
15
 
16
16
  class ZoneTable(TenancyColumnsMixin, NetBoxTable):
@@ -6,7 +6,7 @@ from tenancy.tables import TenancyColumnsMixin
6
6
  from netbox_dns.models import ZoneTemplate
7
7
 
8
8
 
9
- __ALL__ = (
9
+ __all__ = (
10
10
  "ZoneTemplateTable",
11
11
  "ZoneTemplateDisplayTable",
12
12
  )
@@ -5,7 +5,7 @@ from django.core.exceptions import ValidationError
5
5
  from netbox.plugins.utils import get_plugin_config
6
6
 
7
7
 
8
- __ALL__ = (
8
+ __all__ = (
9
9
  "validate_fqdn",
10
10
  "validate_generic_name",
11
11
  "validate_domain_name",
@@ -11,7 +11,7 @@ from netbox_dns.validators import (
11
11
  )
12
12
 
13
13
 
14
- __ALL__ = ("validate_record_value",)
14
+ __all__ = ("validate_record_value",)
15
15
 
16
16
 
17
17
  def validate_record_value(record_type, value):
@@ -1,7 +1,7 @@
1
1
  from django.core.exceptions import ValidationError
2
2
 
3
3
 
4
- __ALL__ = (
4
+ __all__ = (
5
5
  "validate_prefix",
6
6
  "validate_ipv4",
7
7
  "validate_rfc2317",
@@ -15,8 +15,9 @@ from netbox_dns.forms import (
15
15
  from netbox_dns.tables import ContactTable, ZoneTable
16
16
 
17
17
 
18
- __ALL__ = (
18
+ __all__ = (
19
19
  "ContactView",
20
+ "ContactEditView",
20
21
  "ContactListView",
21
22
  "ContactDeleteView",
22
23
  "ContactBulkImportView",
@@ -14,12 +14,13 @@ from netbox_dns.models import Zone, NameServer
14
14
  from netbox_dns.tables import NameServerTable, ZoneTable
15
15
 
16
16
 
17
- __ALL__ = (
17
+ __all__ = (
18
18
  "NameServerListView",
19
19
  "NameServerView",
20
20
  "NameServerEditView",
21
21
  "NameServerDeleteView",
22
22
  "NameServerBulkEditView",
23
+ "NameServerBulkImportView",
23
24
  "NameServerBulkDeleteView",
24
25
  "NameServerZoneListView",
25
26
  "NameServerSOAZoneListView",
@@ -15,7 +15,7 @@ from netbox_dns.tables import RecordTable, ManagedRecordTable, RelatedRecordTabl
15
15
  from netbox_dns.utilities import value_to_unicode
16
16
 
17
17
 
18
- __ALL__ = (
18
+ __all__ = (
19
19
  "RecordListView",
20
20
  "ManagedRecordListView",
21
21
  "RecordView",
@@ -14,7 +14,7 @@ from netbox_dns.tables import RecordTemplateTable, ZoneTemplateDisplayTable
14
14
  from netbox_dns.utilities import value_to_unicode
15
15
 
16
16
 
17
- __ALL__ = (
17
+ __all__ = (
18
18
  "RecordTemplateListView",
19
19
  "RecordTemplateView",
20
20
  "RecordTemplateEditView",
@@ -13,7 +13,7 @@ from netbox_dns.forms import (
13
13
  from netbox_dns.tables import RegistrarTable, ZoneTable
14
14
 
15
15
 
16
- __ALL__ = (
16
+ __all__ = (
17
17
  "RegistrarView",
18
18
  "RegistrarListView",
19
19
  "RegistrarEditView",
netbox_dns/views/view.py CHANGED
@@ -8,7 +8,7 @@ from netbox_dns.forms import ViewForm, ViewFilterForm, ViewImportForm, ViewBulkE
8
8
  from netbox_dns.tables import ViewTable, ZoneTable
9
9
 
10
10
 
11
- __ALL__ = (
11
+ __all__ = (
12
12
  "ViewView",
13
13
  "ViewListView",
14
14
  "ViewEditView",
netbox_dns/views/zone.py CHANGED
@@ -18,7 +18,7 @@ from netbox_dns.tables import (
18
18
  )
19
19
 
20
20
 
21
- __ALL__ = (
21
+ __all__ = (
22
22
  "ZoneListView",
23
23
  "ZoneView",
24
24
  "ZoneEditView",
@@ -11,7 +11,7 @@ from netbox_dns.models import ZoneTemplate
11
11
  from netbox_dns.tables import ZoneTemplateTable, RecordTemplateDisplayTable
12
12
 
13
13
 
14
- __ALL__ = (
14
+ __all__ = (
15
15
  "ZoneTemplateListView",
16
16
  "ZoneTemplateView",
17
17
  "ZoneTemplateEditView",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: netbox-plugin-dns
3
- Version: 1.0.5
3
+ Version: 1.0.6
4
4
  Summary: NetBox DNS is a NetBox plugin for managing DNS data.
5
5
  Home-page: https://github.com/peteeckel/netbox-plugin-dns
6
6
  License: MIT
@@ -1,43 +1,43 @@
1
- netbox_dns/__init__.py,sha256=F2anVwJ7-NZxBwvYJUkbsxwJlRGsXG4bkKWwFMbyl9k,1244
2
- netbox_dns/api/nested_serializers.py,sha256=4QJRwFrWMAiDk5GY_AcOsmt63JaGvUO-uI19vKFCahU,3172
1
+ netbox_dns/__init__.py,sha256=R7EsMEVSGjdhYRLMjQwatM9b_7KzSMAu5M9nHN7-FTA,1244
2
+ netbox_dns/api/nested_serializers.py,sha256=-ZhAiyf-8UHlkcBomBp1J7ci1dSwrxWRbbfskD-D_yQ,3172
3
3
  netbox_dns/api/serializers.py,sha256=WNs7_Inr4veHXUHXmORBjHilrVIzSUi5zPiOCtzQZSU,335
4
4
  netbox_dns/api/serializers_/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- netbox_dns/api/serializers_/contact.py,sha256=SNIyYLlWz7sEL-MvsfUhe4Z7O83Wcax8P34mTgqvsTY,964
6
- netbox_dns/api/serializers_/nameserver.py,sha256=Imh8i20yUrdh7coAwNsg8kw__BSOyYeKyaQ-f6r4fo0,1118
7
- netbox_dns/api/serializers_/record.py,sha256=2MYgJu3N9uUA9VAq6JOsRVEYItU3U9QETJtWVCc3y7U,2293
8
- netbox_dns/api/serializers_/record_template.py,sha256=uMX0NWlJFgXOGLkzha1bnBC0irZTC_C45JEGFrfJj4I,1465
9
- netbox_dns/api/serializers_/registrar.py,sha256=M9BkaPuO4BZ9tO_SvVdo-lT0ROLUgQTnyjg2NEgvubk,842
10
- netbox_dns/api/serializers_/view.py,sha256=aK3_ipmVtBuK29g4L0JiVo0V4bOIeU8WqRF_bO8mBdU,950
11
- netbox_dns/api/serializers_/zone.py,sha256=hudUiUK3GcubajS2ADd_2ysNWKKflcc9lZl58L16ZHU,4867
12
- netbox_dns/api/serializers_/zone_template.py,sha256=4m3Lc7iV9Fu1WQsaXw4ZGdgYuZ7_mNPh27-X2gbx9jI,3708
5
+ netbox_dns/api/serializers_/contact.py,sha256=5fAdHfjBGIh4686tvgPejhW5Di46LNzIYVvAGeFDq0c,964
6
+ netbox_dns/api/serializers_/nameserver.py,sha256=PlpVsai24O73B-ZQ4wSaSC0_m_LCtQETDRSUYDb1xGw,1118
7
+ netbox_dns/api/serializers_/record.py,sha256=QAUzU5GXDadOgfug9ApYQ4fw-pztAZSG02LH1UoBNgY,2293
8
+ netbox_dns/api/serializers_/record_template.py,sha256=qh-g-_f6M-eU4GzN-l0nPxiNBpZyYBgib26HwfOMtUc,1466
9
+ netbox_dns/api/serializers_/registrar.py,sha256=xLIaeBJ5ckV1Jf-uyCTFcvsLlsRMlpDtIg6q79vXZic,842
10
+ netbox_dns/api/serializers_/view.py,sha256=tkv7KD6FJH1_AwPljx2vVJThO0Xb4OcCmlc9E8E4bhQ,950
11
+ netbox_dns/api/serializers_/zone.py,sha256=ZOCNHNufPK8T9UKKjT4NcIyfb1zwG7gD6TpPTlMHi0k,4862
12
+ netbox_dns/api/serializers_/zone_template.py,sha256=usx0vRsqRqHP6sqB92fQy3VTjIfjYflULTtQhQksSpk,3709
13
13
  netbox_dns/api/urls.py,sha256=hrqu6VnN6313DjYIOuZih-afSnedIPsSaqjcva45DiI,739
14
14
  netbox_dns/api/views.py,sha256=esRLAeMJ-y0oNRNC8NJ2SgGzj3qdoAAY6zYm_Z0t5TM,4632
15
15
  netbox_dns/apps.py,sha256=JCW5eS-AQBUubDJve1DjP-IRFKTFGQh1NLGWzJpC5MI,151
16
16
  netbox_dns/choices/__init__.py,sha256=jOVs2VGV5SVADRlqVnrFeAy26i8BIeEAbGpiX7K8bL8,42
17
- netbox_dns/choices/record.py,sha256=gQ0w5wRnuJoRyAthuUvVepA6kKA_GgPUDuKUtJjV8sc,1113
18
- netbox_dns/choices/zone.py,sha256=izH0hykwsLSb0dvzihj5WyKawgVAQMUL2s_7OO58QjA,472
17
+ netbox_dns/choices/record.py,sha256=IYW_g1ZvuNX2ZlRLOkurcrdfWgcXNpi2gQzRfX5C0lY,1113
18
+ netbox_dns/choices/zone.py,sha256=u0zt03gTkeo_und0VxaTTCh3GIFv6UxtUIhoe3VJ00A,472
19
19
  netbox_dns/fields/__init__.py,sha256=egA6gLQ4SPYacECcYU4Vl_P7TbzLOMRfaX6rw3k26YA,69
20
- netbox_dns/fields/address.py,sha256=qlXGD2RdHJMTTB-3JvkvuiKjg9KxbFX7wTtcsj-A7UI,1554
21
- netbox_dns/fields/network.py,sha256=etraM2hw57hdKwJu6kyP1VZC-f5ZbZylSb1Lqiu8gR0,3667
22
- netbox_dns/fields/rfc2317.py,sha256=CEtiJ6QdJqyfJVUC6nC6r8ARdpSPfpM2Oa2mKE8qQQY,2512
20
+ netbox_dns/fields/address.py,sha256=DJwc-z5Lg6US85gNIB_Chx7ahs1GYNswdhaXkLiK3jA,1554
21
+ netbox_dns/fields/network.py,sha256=FgKEm5DAe_4D7Fubtj8B4SwfU3-Z9KV7kDIzRNpBBnQ,3682
22
+ netbox_dns/fields/rfc2317.py,sha256=24qNNLbI-SGlsKqGaLNaVk8EHFrju65YTET3O-8XgTc,2571
23
23
  netbox_dns/filtersets/__init__.py,sha256=zvHYWy23FFmK4vxLpoMo-OD5OQBtcTUV_HG-5LCtvQE,197
24
- netbox_dns/filtersets/contact.py,sha256=uMoSxSgvr0Mp2Spns9mIJ8dhDwzp9H98sZleshVjokM,1091
25
- netbox_dns/filtersets/nameserver.py,sha256=Lrz2FpR4mp1j8Xh9gRgwyJDZokYsaBnKbzB4ZkGyG9I,1147
26
- netbox_dns/filtersets/record.py,sha256=BBCzcTndo1dQIoRnjEnKCDEXBH1h_81T10EKmnu2ZfE,3750
27
- netbox_dns/filtersets/record_template.py,sha256=8Yxz6kpA4DesjkeK8WULd5xfAUDTTF_Z50j0L33duDM,1548
28
- netbox_dns/filtersets/registrar.py,sha256=0k501P_KEoDZcOSdVCg7jRDFTsGFU8nbFjZix13eAG4,977
29
- netbox_dns/filtersets/view.py,sha256=q3I4iTNWGno_4FhKFnO0rHBdVlYXNr2HerACE62-5rg,552
30
- netbox_dns/filtersets/zone.py,sha256=LavrDd7D6n02xxMA2h6Mpt3L-qRPYcGjvq4hQJi_XGw,6594
31
- netbox_dns/filtersets/zone_template.py,sha256=wDRl_6vFLew2OfPqwIp6ctjxq2qQ1zknM1Wt4Y8bFgM,3670
24
+ netbox_dns/filtersets/contact.py,sha256=VnlNX6dyUlEbj7tz9cgRKSWQOdg7OqP32cD2IyD5hu8,1091
25
+ netbox_dns/filtersets/nameserver.py,sha256=I7RoIUcgXyIoMrhuS0dJr8uPi0AdNj6D3G6t2oSiQ7s,1147
26
+ netbox_dns/filtersets/record.py,sha256=nr-oLCnaceiQua5tL-_teYj54X-VMXQeYihbCjykaJY,3750
27
+ netbox_dns/filtersets/record_template.py,sha256=jGSjGFEnNSoxtUd7diV8wEhw8qZclz2dKLSqyVC7Djo,1548
28
+ netbox_dns/filtersets/registrar.py,sha256=Wh_l-IXRHnJhW7Pyokp3czQZISDKzXnWeSQKp512Drc,977
29
+ netbox_dns/filtersets/view.py,sha256=IbQ6ceeUHoXKTczDhLTiwwUMNrFBNhgDzEr9zHRZT7k,552
30
+ netbox_dns/filtersets/zone.py,sha256=lKEHNkg7v_y7gb07swwaUTSfx7MPKvpEl4VcxEVazYY,6594
31
+ netbox_dns/filtersets/zone_template.py,sha256=P1G3NG3NFzw5lSaJErZltSSKNcC_WztTNXpU7PtS4SI,3670
32
32
  netbox_dns/forms/__init__.py,sha256=s41w4o77tIwmhnLjsOsg08R9m3wrlomkkfCLTVQuPzc,196
33
- netbox_dns/forms/contact.py,sha256=q7nlVpTw-OPcndBg89d26Vb4rRIj39EyTJ3TN0zPrvg,5332
34
- netbox_dns/forms/nameserver.py,sha256=tayuLW1O0jGN1yS8cHk2ODoVJRF43M55IMkLRGZyl3s,2485
35
- netbox_dns/forms/record.py,sha256=2DDOEANYIpSrqlzlYejxN9sAbs3giPmFoiDZ1FmJIpM,7159
36
- netbox_dns/forms/record_template.py,sha256=_EVyfm7j_PTqtqcegvg7VdwUK5O7Ho5rFU9ZIzxRYBc,5573
37
- netbox_dns/forms/registrar.py,sha256=HCM9_z7QYNGMtYwNP4z2MhJBMYYJgY5y1ClaGJuJSng,3758
38
- netbox_dns/forms/view.py,sha256=r_HQk6AtP-NHq0t5pQ76nRNq2-j9BXO_TnbTuFr9mfQ,2273
39
- netbox_dns/forms/zone.py,sha256=cu9O4B7C5gROAaiaHkHIBseBYS97znJC_H5ebVxQ89E,23165
40
- netbox_dns/forms/zone_template.py,sha256=mRz9LmQw_FZJO5tNWhOg3Sa7tAE_ahEwfcOK7Oe5t9s,8161
33
+ netbox_dns/forms/contact.py,sha256=7BdDDqusswGolzrKpOdWvlvy_UPmm-_EN_F46fNnt9E,5332
34
+ netbox_dns/forms/nameserver.py,sha256=LHomCHmFcASobaD3Z7yhAyA24h-LrYImVMz-EUXbwK4,2836
35
+ netbox_dns/forms/record.py,sha256=svBVAFy-egDEPLcRWkxNi_1bkabKmWgJ87pmdNt6dh4,7155
36
+ netbox_dns/forms/record_template.py,sha256=Q77p9sExJ8Xbl-Co2Px2R0At5O3naQJwx4pnino6i2o,5573
37
+ netbox_dns/forms/registrar.py,sha256=FMnvrcq62R3wNp_2ZUEk3v_PIav0KrWPATaJ7_9KFAo,3758
38
+ netbox_dns/forms/view.py,sha256=4Uuh514WPb-9M8XOCsdqSm0ayzD2ZymnLSqFn8obSLw,2273
39
+ netbox_dns/forms/zone.py,sha256=17Ii2csnYquuz7HGgaK36ZgOzWnFXFeh1IQYvWnBKC0,23537
40
+ netbox_dns/forms/zone_template.py,sha256=UNykid5pRB_ydy40j2DzRlBXp3_QAOqdqxdUojKYTd4,8161
41
41
  netbox_dns/graphql/__init__.py,sha256=ZZSsx-VM108tB_FrcVy3uGGhtmePpkXnY5U1ytnoTvE,490
42
42
  netbox_dns/graphql/filters.py,sha256=6Ot_d1e7h5lVXVVBB3hyWUql94K3zsK9Tjb3RVJqluw,1706
43
43
  netbox_dns/graphql/schema.py,sha256=P-oQ8ei3sC6XLhgCa_riRbRTrMkPCVTJXkGv0U2rPYw,2682
@@ -65,28 +65,28 @@ netbox_dns/migrations/0028_rfc2317_fields.py,sha256=D8r43xxBjYXiL6ycmX8RY5_WG7tR
65
65
  netbox_dns/migrations/0029_record_fqdn.py,sha256=UAAU38ekKQyiYDOJlcrz6Qbk4bqZfSHZyAHUZFFQrOw,808
66
66
  netbox_dns/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
67
  netbox_dns/mixins/__init__.py,sha256=LxTEfpod_RHCyMtnzDljv0_dwqp2z3Q6tqbXW8LTGD8,35
68
- netbox_dns/mixins/object_modification.py,sha256=f2C_48jxKPBDJtA0KvjsLx-bEd4YUVN93FF0oUFBTa8,767
68
+ netbox_dns/mixins/object_modification.py,sha256=JbGi8a52wkZ3fFBlfat590CfqRJcEWxBsxSeTIx3Qtg,833
69
69
  netbox_dns/models/__init__.py,sha256=0JSjJ_F0KR66DDV8emCPlHMQwgghi9tWo_0PuvyWpQQ,346
70
- netbox_dns/models/contact.py,sha256=lCGeO73rZfis3EOzquxHT7tqm8CGA2oM6ZH_VAI_hgc,3009
71
- netbox_dns/models/nameserver.py,sha256=B250Zqu0QOYVtHccgU9EKyxdFRAQPRWKvN0lIHCTQsw,3208
72
- netbox_dns/models/record.py,sha256=NSXvyIB5qBORu7ndiWn6d_7cs55JotCXPVfy5tLMxlc,22632
73
- netbox_dns/models/record_template.py,sha256=uuRBtlAiBnU4MQnunYnRxiX9APL8QzSiB4Cj51XlioM,4661
74
- netbox_dns/models/registrar.py,sha256=Wsq6n6TWiV3pxHoSaBTQXXngR7SRSwTyWL_DP036oQU,1557
75
- netbox_dns/models/view.py,sha256=MvKXB8rwEpUw7241yaU-DHp1672DUjnLm1TyO2ivsp4,2741
76
- netbox_dns/models/zone.py,sha256=_p6c31ikRuJJQazIG1lnjZRUPcaZ75RuMYSrkp1R5Nw,28239
77
- netbox_dns/models/zone_template.py,sha256=-Ws20P6aI8je9CW5vgkJyoZ6P3TiIoaDQpgfugucrJ0,3725
70
+ netbox_dns/models/contact.py,sha256=oNLyD_6TOTNQQTcCvv6TAC7OkzPTMIRy2NP5nwNKaNg,3009
71
+ netbox_dns/models/nameserver.py,sha256=yKo4Fwqnv5VtTndU2px7tRS3voF3Cal7OWQ6AImLwl0,3208
72
+ netbox_dns/models/record.py,sha256=MWQLys8wNGnQq5L74R_YhKfQeYWhxjVMB7T1V8qYKrE,22763
73
+ netbox_dns/models/record_template.py,sha256=3t9VceviX3kNIo5o0VPVFupLFDqPxpHIVLp5U3pBKB4,4661
74
+ netbox_dns/models/registrar.py,sha256=T_oMUlTWTDixOVlIbEZGvOBdvUrKxRkkS41xgM2Oee8,1557
75
+ netbox_dns/models/view.py,sha256=XKa6FE0AMIR-LhN6HcHWJaY_xohObfTEXCQXH68S2B4,2741
76
+ netbox_dns/models/zone.py,sha256=6LjjmQM_7OND1Ii-Mu9Chc03fkWChuQEac_Bc_CLFZc,28255
77
+ netbox_dns/models/zone_template.py,sha256=lkiSIfx8KM0Cs3Mb3dLBxKbSpcssVUzQiSmD5W46was,3753
78
78
  netbox_dns/navigation.py,sha256=EITDZkbpu4KCC9u4Noj7OORWnkL3EYT2RIRvYlTw34Q,5961
79
79
  netbox_dns/signals/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
80
  netbox_dns/signals/ipam_coupling.py,sha256=kJUKHUgq5XgWMhxB-312SPaZAYTLIYGgKO0lz2-z_rg,5594
81
81
  netbox_dns/tables/__init__.py,sha256=s41w4o77tIwmhnLjsOsg08R9m3wrlomkkfCLTVQuPzc,196
82
- netbox_dns/tables/contact.py,sha256=YXxJDCyspbI83EHVP6XT3HGLhumGNWKIBuKA59YVOWo,804
83
- netbox_dns/tables/nameserver.py,sha256=I_i7e2j7AFO2Ipl6UBnyM-mleeb3jE-QgvDN5NB_8j8,764
84
- netbox_dns/tables/record.py,sha256=IztASHhJ3cvr6OlihcN8X7nEjbfBtsQIa19GEtRm-9g,3189
85
- netbox_dns/tables/record_template.py,sha256=n9Y9Wl9rfb2N2V_dmEjvbSDShMNaG2tjSXCAx-t1b_o,2159
86
- netbox_dns/tables/registrar.py,sha256=bLDcMvYR_NdE71saB9f9fNNtSW9v3gbo_XfgGMGu8gs,680
87
- netbox_dns/tables/view.py,sha256=XrU7Rx_kdA4peIydIG7lbXk7lEHrVXdVsjLZejp9KZE,726
88
- netbox_dns/tables/zone.py,sha256=qqgqBfqD6CDIVCK_ZP3zsIn7cGhwBJ4jMlUQhEcOLi0,1877
89
- netbox_dns/tables/zone_template.py,sha256=83ECM1n52kQcnav6_aT1Wco0puiJ5nEqo9rVwLTSg2U,1479
82
+ netbox_dns/tables/contact.py,sha256=sPs7d1ZhVC5dOS37dPYFqebNd7WGvsV_eYzX_TMcbzY,804
83
+ netbox_dns/tables/nameserver.py,sha256=fFiE-yH-_GyRDaV4SVw094r6uH58Kx56NSWDGaMR58g,764
84
+ netbox_dns/tables/record.py,sha256=0Yg0qwZ8Vjz6pkZnmof4ZK1Hsvk9DNEzmJwoIwJZJFQ,3189
85
+ netbox_dns/tables/record_template.py,sha256=16Lu-WDjs2m9Uxx6WkURL39NlyJ8lWzj5Kl6C6lz3E8,2159
86
+ netbox_dns/tables/registrar.py,sha256=M-ckyQUs6dqjTCPf7bAr6UuLEA-q9f9CxKW7yp3rGoM,680
87
+ netbox_dns/tables/view.py,sha256=TK5PM0jkKqgifJ17EYCazAbsTvXsZzTNUp0AX3RhUok,726
88
+ netbox_dns/tables/zone.py,sha256=IeCiflrQBn1INV_PxoTySWQrDalykY4mDSG76VXC5WM,1877
89
+ netbox_dns/tables/zone_template.py,sha256=70hvS-xpeaLkcM6y0R9xsUMQVKgTgZJaWWNd99BfmzI,1479
90
90
  netbox_dns/template_content.py,sha256=jPOnKC8rbDEm169PoIys5NKCN36uUPH4_6NwR0oZ7N8,3654
91
91
  netbox_dns/templates/netbox_dns/contact.html,sha256=fMHAQyLXIxohKoCTxFEnKetl9UVXeQgjasfpv_JONaw,2855
92
92
  netbox_dns/templates/netbox_dns/nameserver.html,sha256=DpTdetQVV_jKThDbi62LvbhiCay-1QxR-yiJEiPFm4w,1554
@@ -118,19 +118,19 @@ netbox_dns/urls/zone_template.py,sha256=w3Gu8qfLCWyHofeLkGZd1HpYSlcslomVlBQJZyqh
118
118
  netbox_dns/utilities/__init__.py,sha256=-6-qmb1yTAt9QEtGtokNFBQV_TSheobkLjbWFKEYpfw,1849
119
119
  netbox_dns/utilities/ipam_coupling.py,sha256=0XA5kmh2CzbhuhZmQuquNh4vPXBh20TVCA2RlM4pQdQ,3471
120
120
  netbox_dns/validators/__init__.py,sha256=Mr8TvmcJTa8Pubj8TzbFBKfbHhEmGcr5JdQvczEJ39A,72
121
- netbox_dns/validators/dns_name.py,sha256=EvMzp5pdEDE_ny8cm5TIeoNVVjebqgpQumFo2HgqJFc,3069
122
- netbox_dns/validators/dns_value.py,sha256=J8CP4a3QyocbBHIjmxv0BE79Y5LwviiaBjl9bWuWNS8,2822
123
- netbox_dns/validators/rfc2317.py,sha256=8EMpFoCM3dtEJYDG1rJAmfwy_LxQdAemLKbPcp9h6T4,585
121
+ netbox_dns/validators/dns_name.py,sha256=B4A0BOW5pKDjjukvksriRtnLzkYTx_pFjh7eqKo6PBE,3069
122
+ netbox_dns/validators/dns_value.py,sha256=y2Zga4hmywqDrTBXcMC-sWaFbw4eoY8pySq7cWnMP8Y,2822
123
+ netbox_dns/validators/rfc2317.py,sha256=ivylEiNKlmX2x41rwqDrFkD5CFf9FtpNEfsKHX_prbE,585
124
124
  netbox_dns/views/__init__.py,sha256=s41w4o77tIwmhnLjsOsg08R9m3wrlomkkfCLTVQuPzc,196
125
- netbox_dns/views/contact.py,sha256=b2B-He1QOQEwhxoJJHgBlRrwZQANXwpq9-Do55hf8mo,2448
126
- netbox_dns/views/nameserver.py,sha256=noGTA-Y7RJu5gM6LW1ZCZqPhSfIMzdFj2faDOSkPVeE,3254
127
- netbox_dns/views/record.py,sha256=x0fR_zkWYWOqLRVqY8rMmQ66EXXLRXaAOghgzK_SIUU,4590
128
- netbox_dns/views/record_template.py,sha256=MHztU7YbAZZQOe-1ec_WufdYhg2YUJnOHSQZ4-Lf5V8,2510
129
- netbox_dns/views/registrar.py,sha256=yCWBI5P5O1EsuoAQQ8dhujgXtKnyWSV2gSSJ2LPx2ac,2324
130
- netbox_dns/views/view.py,sha256=udaSTREI0Fvk3I1tvNkiGhB6c8aPH_2QF0UfdSMSKL4,2107
131
- netbox_dns/views/zone.py,sha256=U1kOzGdkBHAwUFQoKialc5ct1Sm2wk7_zCpUPMx-Upc,5483
132
- netbox_dns/views/zone_template.py,sha256=dIFymV02x6ArnP9NJk_c4lukA4r1s59m9941rvIHlzw,2118
133
- netbox_plugin_dns-1.0.5.dist-info/LICENSE,sha256=I3tDu11bZfhFm3EkV4zOD5TmWgLjnUNLEFwrdjniZYs,1112
134
- netbox_plugin_dns-1.0.5.dist-info/METADATA,sha256=WTmZRx5rad20dFVt8X2q3ulWq06c9zW09_9jTaw-0V0,6404
135
- netbox_plugin_dns-1.0.5.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
136
- netbox_plugin_dns-1.0.5.dist-info/RECORD,,
125
+ netbox_dns/views/contact.py,sha256=qM9F6MQBvO8ERR7quGLdQ5kW4roNLJ61As8m0qQTapg,2471
126
+ netbox_dns/views/nameserver.py,sha256=DFr0eybMshc1FW06g4cy9Nk4VRMxRqakI5KtHFiAVRc,3286
127
+ netbox_dns/views/record.py,sha256=fHMafCC14C7d6oXbXc2vN-T70OAOaTY77_m3Dct-oiQ,4590
128
+ netbox_dns/views/record_template.py,sha256=BkemTBEramLhYqB6HrA80sNgtduW1ZOJwbYs3i7srik,2510
129
+ netbox_dns/views/registrar.py,sha256=yRQgFm3vgBD21ZQex9asjs0QWegvSHlcyHXLnjvc5xs,2324
130
+ netbox_dns/views/view.py,sha256=I_hVZYFJF8GTnlUKPrTgBk_x9UDCbZXM8R7U5Bhizjs,2107
131
+ netbox_dns/views/zone.py,sha256=SKhf_WHcFVpKqFTuUMf-Dmxu1AwFHBeo_DtD8UGFrJ8,5483
132
+ netbox_dns/views/zone_template.py,sha256=qvXl-bpc1fMc1WFngynj4-Q3-JJDgKdT-r54s4M1D0s,2118
133
+ netbox_plugin_dns-1.0.6.dist-info/LICENSE,sha256=I3tDu11bZfhFm3EkV4zOD5TmWgLjnUNLEFwrdjniZYs,1112
134
+ netbox_plugin_dns-1.0.6.dist-info/METADATA,sha256=JCexnIPddX5RP4vsP6UDlRnFlCCrxqxbFXa48oTiGaU,6404
135
+ netbox_plugin_dns-1.0.6.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
136
+ netbox_plugin_dns-1.0.6.dist-info/RECORD,,