netbox-plugin-dns 1.0.6__py3-none-any.whl → 1.0.7__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/nested_serializers.py +17 -16
- netbox_dns/api/serializers_/record.py +1 -0
- netbox_dns/api/views.py +0 -28
- netbox_dns/filtersets/record.py +1 -1
- netbox_dns/graphql/schema.py +16 -40
- netbox_dns/migrations/0007_alter_ordering_options.py +25 -0
- netbox_dns/models/contact.py +9 -3
- netbox_dns/models/nameserver.py +8 -3
- netbox_dns/models/record.py +15 -4
- netbox_dns/models/record_template.py +4 -1
- netbox_dns/models/registrar.py +7 -1
- netbox_dns/models/view.py +9 -2
- netbox_dns/models/zone.py +10 -5
- netbox_dns/models/zone_template.py +8 -5
- netbox_dns/tables/contact.py +0 -1
- netbox_dns/tables/nameserver.py +1 -7
- netbox_dns/tables/record.py +10 -30
- netbox_dns/tables/record_template.py +0 -17
- netbox_dns/tables/registrar.py +0 -2
- netbox_dns/tables/view.py +1 -8
- netbox_dns/tables/zone.py +0 -15
- netbox_dns/tables/zone_template.py +2 -16
- netbox_dns/urls/contact.py +10 -32
- netbox_dns/urls/nameserver.py +14 -38
- netbox_dns/urls/record.py +7 -19
- netbox_dns/urls/record_template.py +18 -27
- netbox_dns/urls/registrar.py +11 -35
- netbox_dns/urls/view.py +8 -22
- netbox_dns/urls/zone.py +8 -46
- netbox_dns/urls/zone_template.py +16 -26
- netbox_dns/validators/dns_name.py +9 -0
- netbox_dns/views/contact.py +0 -1
- netbox_dns/views/nameserver.py +7 -3
- netbox_dns/views/record.py +9 -2
- netbox_dns/views/record_template.py +1 -1
- netbox_dns/views/registrar.py +0 -1
- netbox_dns/views/view.py +6 -1
- netbox_dns/views/zone.py +7 -6
- netbox_dns/views/zone_template.py +2 -2
- {netbox_plugin_dns-1.0.6.dist-info → netbox_plugin_dns-1.0.7.dist-info}/METADATA +1 -1
- {netbox_plugin_dns-1.0.6.dist-info → netbox_plugin_dns-1.0.7.dist-info}/RECORD +44 -43
- {netbox_plugin_dns-1.0.6.dist-info → netbox_plugin_dns-1.0.7.dist-info}/LICENSE +0 -0
- {netbox_plugin_dns-1.0.6.dist-info → netbox_plugin_dns-1.0.7.dist-info}/WHEEL +0 -0
netbox_dns/views/record.py
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
from dns import name as dns_name
|
|
2
2
|
|
|
3
3
|
from netbox.views import generic
|
|
4
|
+
from utilities.views import register_model_view
|
|
5
|
+
from tenancy.views import ObjectContactsView
|
|
4
6
|
|
|
5
7
|
from netbox_dns.filtersets import RecordFilterSet
|
|
6
8
|
from netbox_dns.forms import (
|
|
@@ -16,14 +18,14 @@ from netbox_dns.utilities import value_to_unicode
|
|
|
16
18
|
|
|
17
19
|
|
|
18
20
|
__all__ = (
|
|
19
|
-
"RecordListView",
|
|
20
|
-
"ManagedRecordListView",
|
|
21
21
|
"RecordView",
|
|
22
|
+
"RecordListView",
|
|
22
23
|
"RecordEditView",
|
|
23
24
|
"RecordDeleteView",
|
|
24
25
|
"RecordBulkImportView",
|
|
25
26
|
"RecordBulkEditView",
|
|
26
27
|
"RecordBulkDeleteView",
|
|
28
|
+
"ManagedRecordListView",
|
|
27
29
|
)
|
|
28
30
|
|
|
29
31
|
|
|
@@ -155,3 +157,8 @@ class RecordBulkEditView(generic.BulkEditView):
|
|
|
155
157
|
class RecordBulkDeleteView(generic.BulkDeleteView):
|
|
156
158
|
queryset = Record.objects.filter(managed=False)
|
|
157
159
|
table = RecordTable
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
@register_model_view(Record, "contacts")
|
|
163
|
+
class RecordContactsView(ObjectContactsView):
|
|
164
|
+
queryset = Record.objects.all()
|
netbox_dns/views/registrar.py
CHANGED
netbox_dns/views/view.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
from utilities.views import ViewTab, register_model_view
|
|
2
2
|
|
|
3
3
|
from netbox.views import generic
|
|
4
|
+
from tenancy.views import ObjectContactsView
|
|
4
5
|
|
|
5
6
|
from netbox_dns.models import View, Zone
|
|
6
7
|
from netbox_dns.filtersets import ViewFilterSet, ZoneFilterSet
|
|
@@ -16,7 +17,6 @@ __all__ = (
|
|
|
16
17
|
"ViewBulkImportView",
|
|
17
18
|
"ViewBulkEditView",
|
|
18
19
|
"ViewBulkDeleteView",
|
|
19
|
-
"ViewZoneListView",
|
|
20
20
|
)
|
|
21
21
|
|
|
22
22
|
|
|
@@ -79,3 +79,8 @@ class ViewZoneListView(generic.ObjectChildrenView):
|
|
|
79
79
|
|
|
80
80
|
def get_children(self, request, parent):
|
|
81
81
|
return parent.zone_set
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
@register_model_view(View, "contacts")
|
|
85
|
+
class ViewContactsView(ObjectContactsView):
|
|
86
|
+
queryset = View.objects.all()
|
netbox_dns/views/zone.py
CHANGED
|
@@ -2,6 +2,7 @@ from dns import name as dns_name
|
|
|
2
2
|
|
|
3
3
|
from netbox.views import generic
|
|
4
4
|
from utilities.views import ViewTab, register_model_view
|
|
5
|
+
from tenancy.views import ObjectContactsView
|
|
5
6
|
|
|
6
7
|
from netbox_dns.filtersets import ZoneFilterSet, RecordFilterSet
|
|
7
8
|
from netbox_dns.forms import (
|
|
@@ -19,18 +20,13 @@ from netbox_dns.tables import (
|
|
|
19
20
|
|
|
20
21
|
|
|
21
22
|
__all__ = (
|
|
22
|
-
"ZoneListView",
|
|
23
23
|
"ZoneView",
|
|
24
|
+
"ZoneListView",
|
|
24
25
|
"ZoneEditView",
|
|
25
26
|
"ZoneDeleteView",
|
|
26
27
|
"ZoneBulkImportView",
|
|
27
28
|
"ZoneBulkEditView",
|
|
28
29
|
"ZoneBulkDeleteView",
|
|
29
|
-
"ZoneRegistrationView",
|
|
30
|
-
"ZoneRecordListView",
|
|
31
|
-
"ZoneManagedRecordListView",
|
|
32
|
-
"ZoneRFC2317ChildZoneListView",
|
|
33
|
-
"ZoneChildZoneListView",
|
|
34
30
|
)
|
|
35
31
|
|
|
36
32
|
|
|
@@ -201,3 +197,8 @@ class ZoneChildZoneListView(generic.ObjectChildrenView):
|
|
|
201
197
|
|
|
202
198
|
def get_children(self, request, parent):
|
|
203
199
|
return parent.child_zones
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
@register_model_view(Zone, "contacts")
|
|
203
|
+
class ZoneContactsView(ObjectContactsView):
|
|
204
|
+
queryset = Zone.objects.all()
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from netbox.views import generic
|
|
2
2
|
|
|
3
|
+
from netbox_dns.models import ZoneTemplate
|
|
3
4
|
from netbox_dns.filtersets import ZoneTemplateFilterSet
|
|
4
5
|
from netbox_dns.forms import (
|
|
5
6
|
ZoneTemplateImportForm,
|
|
@@ -7,13 +8,12 @@ from netbox_dns.forms import (
|
|
|
7
8
|
ZoneTemplateFilterForm,
|
|
8
9
|
ZoneTemplateBulkEditForm,
|
|
9
10
|
)
|
|
10
|
-
from netbox_dns.models import ZoneTemplate
|
|
11
11
|
from netbox_dns.tables import ZoneTemplateTable, RecordTemplateDisplayTable
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
__all__ = (
|
|
15
|
-
"ZoneTemplateListView",
|
|
16
15
|
"ZoneTemplateView",
|
|
16
|
+
"ZoneTemplateListView",
|
|
17
17
|
"ZoneTemplateEditView",
|
|
18
18
|
"ZoneTemplateDeleteView",
|
|
19
19
|
"ZoneTemplateBulkImportView",
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
netbox_dns/__init__.py,sha256=
|
|
2
|
-
netbox_dns/api/nested_serializers.py,sha256
|
|
1
|
+
netbox_dns/__init__.py,sha256=C1P57RdYgCLvCcwjGlFzH7NSbgiSLanIFZBLehhK34w,1244
|
|
2
|
+
netbox_dns/api/nested_serializers.py,sha256=zRIgWEtKIhvfxKOtxwFRfNeUQGWWNeuulfZ6oeFhe2w,3195
|
|
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
5
|
netbox_dns/api/serializers_/contact.py,sha256=5fAdHfjBGIh4686tvgPejhW5Di46LNzIYVvAGeFDq0c,964
|
|
6
6
|
netbox_dns/api/serializers_/nameserver.py,sha256=PlpVsai24O73B-ZQ4wSaSC0_m_LCtQETDRSUYDb1xGw,1118
|
|
7
|
-
netbox_dns/api/serializers_/record.py,sha256=
|
|
7
|
+
netbox_dns/api/serializers_/record.py,sha256=62924HonaKflFXkTgFft_624BKEikAMkak1AKDYsFvk,2316
|
|
8
8
|
netbox_dns/api/serializers_/record_template.py,sha256=qh-g-_f6M-eU4GzN-l0nPxiNBpZyYBgib26HwfOMtUc,1466
|
|
9
9
|
netbox_dns/api/serializers_/registrar.py,sha256=xLIaeBJ5ckV1Jf-uyCTFcvsLlsRMlpDtIg6q79vXZic,842
|
|
10
10
|
netbox_dns/api/serializers_/view.py,sha256=tkv7KD6FJH1_AwPljx2vVJThO0Xb4OcCmlc9E8E4bhQ,950
|
|
11
11
|
netbox_dns/api/serializers_/zone.py,sha256=ZOCNHNufPK8T9UKKjT4NcIyfb1zwG7gD6TpPTlMHi0k,4862
|
|
12
12
|
netbox_dns/api/serializers_/zone_template.py,sha256=usx0vRsqRqHP6sqB92fQy3VTjIfjYflULTtQhQksSpk,3709
|
|
13
13
|
netbox_dns/api/urls.py,sha256=hrqu6VnN6313DjYIOuZih-afSnedIPsSaqjcva45DiI,739
|
|
14
|
-
netbox_dns/api/views.py,sha256=
|
|
14
|
+
netbox_dns/api/views.py,sha256=C9vA0yTTN845BFI06fclSEs5Too991ae0vrDDGzHKEI,3456
|
|
15
15
|
netbox_dns/apps.py,sha256=JCW5eS-AQBUubDJve1DjP-IRFKTFGQh1NLGWzJpC5MI,151
|
|
16
16
|
netbox_dns/choices/__init__.py,sha256=jOVs2VGV5SVADRlqVnrFeAy26i8BIeEAbGpiX7K8bL8,42
|
|
17
17
|
netbox_dns/choices/record.py,sha256=IYW_g1ZvuNX2ZlRLOkurcrdfWgcXNpi2gQzRfX5C0lY,1113
|
|
@@ -23,7 +23,7 @@ netbox_dns/fields/rfc2317.py,sha256=24qNNLbI-SGlsKqGaLNaVk8EHFrju65YTET3O-8XgTc,
|
|
|
23
23
|
netbox_dns/filtersets/__init__.py,sha256=zvHYWy23FFmK4vxLpoMo-OD5OQBtcTUV_HG-5LCtvQE,197
|
|
24
24
|
netbox_dns/filtersets/contact.py,sha256=VnlNX6dyUlEbj7tz9cgRKSWQOdg7OqP32cD2IyD5hu8,1091
|
|
25
25
|
netbox_dns/filtersets/nameserver.py,sha256=I7RoIUcgXyIoMrhuS0dJr8uPi0AdNj6D3G6t2oSiQ7s,1147
|
|
26
|
-
netbox_dns/filtersets/record.py,sha256=
|
|
26
|
+
netbox_dns/filtersets/record.py,sha256=Jt3RlI4MIfeY5xYkLse1y1rzmKCdmuk-CRAxxaNVYbY,3750
|
|
27
27
|
netbox_dns/filtersets/record_template.py,sha256=jGSjGFEnNSoxtUd7diV8wEhw8qZclz2dKLSqyVC7Djo,1548
|
|
28
28
|
netbox_dns/filtersets/registrar.py,sha256=Wh_l-IXRHnJhW7Pyokp3czQZISDKzXnWeSQKp512Drc,977
|
|
29
29
|
netbox_dns/filtersets/view.py,sha256=IbQ6ceeUHoXKTczDhLTiwwUMNrFBNhgDzEr9zHRZT7k,552
|
|
@@ -40,7 +40,7 @@ netbox_dns/forms/zone.py,sha256=17Ii2csnYquuz7HGgaK36ZgOzWnFXFeh1IQYvWnBKC0,2353
|
|
|
40
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
|
-
netbox_dns/graphql/schema.py,sha256=
|
|
43
|
+
netbox_dns/graphql/schema.py,sha256=KIvBSZHcD43OScvdiCjcxk5dwa6ACiwwT9FTPSnzMYE,2312
|
|
44
44
|
netbox_dns/graphql/types.py,sha256=q0gtXhhM_MzBb1zBzXA5gopnuL4szuzXRTTAvOhPz-Y,6025
|
|
45
45
|
netbox_dns/management/commands/cleanup_database.py,sha256=kfnyybudwKGigjJmrOwafPWSUasZr9jQsxN4eWAgMvY,5969
|
|
46
46
|
netbox_dns/management/commands/cleanup_rrset_ttl.py,sha256=UFRURLBcFeGHUS2lrYFv7UWIebjI72aG1EUQJt0XsXw,2046
|
|
@@ -53,6 +53,7 @@ netbox_dns/migrations/0003_default_view.py,sha256=NByVlAyiiK6WCfJ014BiFPkoNcHeqr
|
|
|
53
53
|
netbox_dns/migrations/0004_create_and_assign_default_view.py,sha256=npBFxWuJCZeMhbZLEH9C_sZcQZRaa3IOlyn4p_GULyk,627
|
|
54
54
|
netbox_dns/migrations/0005_alter_zone_view_not_null.py,sha256=vUfCFD-qeh5M1WCqtE1eYHXZwQVCcf841Z2-0CdcMRI,463
|
|
55
55
|
netbox_dns/migrations/0006_templating.py,sha256=7MOZ2bLwkjK1BQCBPBaFWJ-mS_JNrok1XUSh4rriq9Y,6271
|
|
56
|
+
netbox_dns/migrations/0007_alter_ordering_options.py,sha256=IDGgxEWOaSs9_WKJK1C_5_6M1uJtYscn3Vco0UHAol8,639
|
|
56
57
|
netbox_dns/migrations/0020_netbox_3_4.py,sha256=UMcHdn8ZAuQjUaM_3rEGpktYrM0TuvhccD7Jt7WQnPs,1271
|
|
57
58
|
netbox_dns/migrations/0021_record_ip_address.py,sha256=EqdhWXmq7aiK4X79xTRUZng3zFncCl-8JoO65HqlJKw,3244
|
|
58
59
|
netbox_dns/migrations/0022_search.py,sha256=KW1ffEZ4-0dppGQ_KD1EN7iw8eQJOnDco-xfJFRZqKQ,172
|
|
@@ -67,26 +68,26 @@ netbox_dns/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
|
67
68
|
netbox_dns/mixins/__init__.py,sha256=LxTEfpod_RHCyMtnzDljv0_dwqp2z3Q6tqbXW8LTGD8,35
|
|
68
69
|
netbox_dns/mixins/object_modification.py,sha256=JbGi8a52wkZ3fFBlfat590CfqRJcEWxBsxSeTIx3Qtg,833
|
|
69
70
|
netbox_dns/models/__init__.py,sha256=0JSjJ_F0KR66DDV8emCPlHMQwgghi9tWo_0PuvyWpQQ,346
|
|
70
|
-
netbox_dns/models/contact.py,sha256=
|
|
71
|
-
netbox_dns/models/nameserver.py,sha256=
|
|
72
|
-
netbox_dns/models/record.py,sha256=
|
|
73
|
-
netbox_dns/models/record_template.py,sha256=
|
|
74
|
-
netbox_dns/models/registrar.py,sha256=
|
|
75
|
-
netbox_dns/models/view.py,sha256=
|
|
76
|
-
netbox_dns/models/zone.py,sha256=
|
|
77
|
-
netbox_dns/models/zone_template.py,sha256=
|
|
71
|
+
netbox_dns/models/contact.py,sha256=uBy-8_fIp_6Un9E3NsjJTIpARfATUF7uPghdSIRIHiA,3119
|
|
72
|
+
netbox_dns/models/nameserver.py,sha256=gvQRcTOVHRiX_rcBZfjNV6rTRKNJtA5HxgggYEgITPA,3296
|
|
73
|
+
netbox_dns/models/record.py,sha256=CLNfROjxbCwAF9H4sHwBKTfCYCvV7BFt154brSOtrqo,22991
|
|
74
|
+
netbox_dns/models/record_template.py,sha256=pyzrtk-VFEHf9hrWTW6pwPKo2AH5cEKR0XI4ZG9nVHk,4753
|
|
75
|
+
netbox_dns/models/registrar.py,sha256=zCSVa6NSN9sRJzvvuSUNK4LcHBbe0OvEiTbIcrrdk9k,1671
|
|
76
|
+
netbox_dns/models/view.py,sha256=PtuO61vzcaqRvPRsHV72dvKkerQH7vp803MK9BvUnj4,2897
|
|
77
|
+
netbox_dns/models/zone.py,sha256=UzwyByJGumkGF--g2wxGKEZ2UZGZ_QrrpmHgpITbgxY,28438
|
|
78
|
+
netbox_dns/models/zone_template.py,sha256=kUSGb5Sc9GultId61bjgNMyaOjRReOqvVNje5APKZvM,3841
|
|
78
79
|
netbox_dns/navigation.py,sha256=EITDZkbpu4KCC9u4Noj7OORWnkL3EYT2RIRvYlTw34Q,5961
|
|
79
80
|
netbox_dns/signals/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
81
|
netbox_dns/signals/ipam_coupling.py,sha256=kJUKHUgq5XgWMhxB-312SPaZAYTLIYGgKO0lz2-z_rg,5594
|
|
81
82
|
netbox_dns/tables/__init__.py,sha256=s41w4o77tIwmhnLjsOsg08R9m3wrlomkkfCLTVQuPzc,196
|
|
82
|
-
netbox_dns/tables/contact.py,sha256=
|
|
83
|
-
netbox_dns/tables/nameserver.py,sha256=
|
|
84
|
-
netbox_dns/tables/record.py,sha256=
|
|
85
|
-
netbox_dns/tables/record_template.py,sha256=
|
|
86
|
-
netbox_dns/tables/registrar.py,sha256=
|
|
87
|
-
netbox_dns/tables/view.py,sha256=
|
|
88
|
-
netbox_dns/tables/zone.py,sha256=
|
|
89
|
-
netbox_dns/tables/zone_template.py,sha256=
|
|
83
|
+
netbox_dns/tables/contact.py,sha256=Kukb3aT_qnxuklLodXFk6J4C8O5jBfK3BGSJjaScNa8,778
|
|
84
|
+
netbox_dns/tables/nameserver.py,sha256=GGi8x8QXbrFoFjxueL1zd5L-hDZwXGs1PcLZ2DyI4JI,652
|
|
85
|
+
netbox_dns/tables/record.py,sha256=0_EUQp5kbqWeWalH_PeMzU-0_3nVoNNv1IX6xGMiXIA,2743
|
|
86
|
+
netbox_dns/tables/record_template.py,sha256=CcXvyGycwp16ZwQFdmdt5W5Tlt__i1sBi3mixVvht3E,1763
|
|
87
|
+
netbox_dns/tables/registrar.py,sha256=Vtl3RKjhWzUDv4wAfjbNV1prZHf6SyGYmSS0XKccI9g,640
|
|
88
|
+
netbox_dns/tables/view.py,sha256=dpk9wcd0K1PdUJgfFRbL_iFBUgE2OJP9rb_suu_T8ao,586
|
|
89
|
+
netbox_dns/tables/zone.py,sha256=bVi4sLFdw61kfIiRJnoJOtgkVGGlTZcogw-cAzFtAEQ,1507
|
|
90
|
+
netbox_dns/tables/zone_template.py,sha256=gezSSpbNkiHnstNq470OsTmkl13foFXTGx-NH8W87Hw,1204
|
|
90
91
|
netbox_dns/template_content.py,sha256=jPOnKC8rbDEm169PoIys5NKCN36uUPH4_6NwR0oZ7N8,3654
|
|
91
92
|
netbox_dns/templates/netbox_dns/contact.html,sha256=fMHAQyLXIxohKoCTxFEnKetl9UVXeQgjasfpv_JONaw,2855
|
|
92
93
|
netbox_dns/templates/netbox_dns/nameserver.html,sha256=DpTdetQVV_jKThDbi62LvbhiCay-1QxR-yiJEiPFm4w,1554
|
|
@@ -107,30 +108,30 @@ netbox_dns/templates/netbox_dns/zone/rfc2317_child_zone.html,sha256=rWlmb3zRQbLY
|
|
|
107
108
|
netbox_dns/templates/netbox_dns/zone.html,sha256=zPi1sLFnya-ytx8-Pcf_ujc1sKllCRuz48x2E-S1HSo,6285
|
|
108
109
|
netbox_dns/templates/netbox_dns/zonetemplate.html,sha256=qjUWqrg4uDaIFt9-g0OBxTi86i_ctf2Ps4qHh11djQE,3081
|
|
109
110
|
netbox_dns/urls/__init__.py,sha256=FDauSMt7a01YJR8_RWkk0-kSmIL2lr1bHF0OU5ROuQ8,610
|
|
110
|
-
netbox_dns/urls/contact.py,sha256=
|
|
111
|
-
netbox_dns/urls/nameserver.py,sha256
|
|
112
|
-
netbox_dns/urls/record.py,sha256=
|
|
113
|
-
netbox_dns/urls/record_template.py,sha256=
|
|
114
|
-
netbox_dns/urls/registrar.py,sha256=
|
|
115
|
-
netbox_dns/urls/view.py,sha256=
|
|
116
|
-
netbox_dns/urls/zone.py,sha256=
|
|
117
|
-
netbox_dns/urls/zone_template.py,sha256=
|
|
111
|
+
netbox_dns/urls/contact.py,sha256=jVBXgWxHosqASoAT3UE6bcsasQVDKG1e4g5K_SlbzjE,1067
|
|
112
|
+
netbox_dns/urls/nameserver.py,sha256=-arhTF-q_h6IqcZ-CHD4GbBNCxltwRP-RoLY34KWITA,1294
|
|
113
|
+
netbox_dns/urls/record.py,sha256=5HnwrsQKbB3jcCfUSwrArItTYsKBTQaa8WiRt7SBniI,1136
|
|
114
|
+
netbox_dns/urls/record_template.py,sha256=kRAaienuN89WrOZGEcH1eZtiVlNsxsbZ1sjxWGxLKa0,1514
|
|
115
|
+
netbox_dns/urls/registrar.py,sha256=qhf_Qh4CYKmKYNoFIkuJxVtq1V0PMDYmqXq7olB0zfg,1211
|
|
116
|
+
netbox_dns/urls/view.py,sha256=_Urbxd1ZLC4dcb0x23ui2L0XaY8RJKKnDQtJETS-S-Q,937
|
|
117
|
+
netbox_dns/urls/zone.py,sha256=EzZ_U5v9NfWB5TVAc0i35EI-SVyXl6KrI844sMT0x5Q,937
|
|
118
|
+
netbox_dns/urls/zone_template.py,sha256=nGrIaincQxCabUsLJL9JODoeTToMRSPllm7kuiPzeII,1378
|
|
118
119
|
netbox_dns/utilities/__init__.py,sha256=-6-qmb1yTAt9QEtGtokNFBQV_TSheobkLjbWFKEYpfw,1849
|
|
119
120
|
netbox_dns/utilities/ipam_coupling.py,sha256=0XA5kmh2CzbhuhZmQuquNh4vPXBh20TVCA2RlM4pQdQ,3471
|
|
120
121
|
netbox_dns/validators/__init__.py,sha256=Mr8TvmcJTa8Pubj8TzbFBKfbHhEmGcr5JdQvczEJ39A,72
|
|
121
|
-
netbox_dns/validators/dns_name.py,sha256=
|
|
122
|
+
netbox_dns/validators/dns_name.py,sha256=4JojiP6pb1Z1m_PmDv4g65Ckhg5rQkVqm8JAwHW28nA,3432
|
|
122
123
|
netbox_dns/validators/dns_value.py,sha256=y2Zga4hmywqDrTBXcMC-sWaFbw4eoY8pySq7cWnMP8Y,2822
|
|
123
124
|
netbox_dns/validators/rfc2317.py,sha256=ivylEiNKlmX2x41rwqDrFkD5CFf9FtpNEfsKHX_prbE,585
|
|
124
125
|
netbox_dns/views/__init__.py,sha256=s41w4o77tIwmhnLjsOsg08R9m3wrlomkkfCLTVQuPzc,196
|
|
125
|
-
netbox_dns/views/contact.py,sha256=
|
|
126
|
-
netbox_dns/views/nameserver.py,sha256=
|
|
127
|
-
netbox_dns/views/record.py,sha256=
|
|
128
|
-
netbox_dns/views/record_template.py,sha256=
|
|
129
|
-
netbox_dns/views/registrar.py,sha256=
|
|
130
|
-
netbox_dns/views/view.py,sha256=
|
|
131
|
-
netbox_dns/views/zone.py,sha256=
|
|
132
|
-
netbox_dns/views/zone_template.py,sha256=
|
|
133
|
-
netbox_plugin_dns-1.0.
|
|
134
|
-
netbox_plugin_dns-1.0.
|
|
135
|
-
netbox_plugin_dns-1.0.
|
|
136
|
-
netbox_plugin_dns-1.0.
|
|
126
|
+
netbox_dns/views/contact.py,sha256=kQDm_PHxBFDyAXf7rZdEyVdZyNNxpIvWy63qbUJZbjY,2444
|
|
127
|
+
netbox_dns/views/nameserver.py,sha256=CeZsKTciW85LFX9tMaGkiW1DUDT77jghtHnPCHFTAP8,3405
|
|
128
|
+
netbox_dns/views/record.py,sha256=YpVkC6Q3rUG9F_p1dqg35o3PsST_h5hPvsB5RIsaCb4,4808
|
|
129
|
+
netbox_dns/views/record_template.py,sha256=amYQc8dEwjI8msTSukcq4FwVqKF9eHSlaMBOFkHe0CE,2510
|
|
130
|
+
netbox_dns/views/registrar.py,sha256=ICaX9weZugWJXyRBjpHM5vD3Yz0hnhKKgb5e5DZf6zI,2295
|
|
131
|
+
netbox_dns/views/view.py,sha256=gPC9itG3TbihYtuAIGdbu-OwIvrIkswTdre8-ZfhQF4,2247
|
|
132
|
+
netbox_dns/views/zone.py,sha256=Na286tp_XcnT-4FIgXsvh1wPByir0RtBil0B2JhfuZE,5495
|
|
133
|
+
netbox_dns/views/zone_template.py,sha256=UaPEReBFoJP1k7MC8jS-iT3KQtJqSFu67jjCRiTCH4c,2118
|
|
134
|
+
netbox_plugin_dns-1.0.7.dist-info/LICENSE,sha256=I3tDu11bZfhFm3EkV4zOD5TmWgLjnUNLEFwrdjniZYs,1112
|
|
135
|
+
netbox_plugin_dns-1.0.7.dist-info/METADATA,sha256=dRqfwe0fVecsErbyt7WaVRG3w960ld1GgdWN6gRhYQA,6404
|
|
136
|
+
netbox_plugin_dns-1.0.7.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
137
|
+
netbox_plugin_dns-1.0.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|