netbox-plugin-dns 0.22.9__py3-none-any.whl → 1.0b1__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 +3 -14
- netbox_dns/api/nested_serializers.py +4 -60
- netbox_dns/api/serializers.py +8 -314
- netbox_dns/api/serializers_/__init__.py +0 -0
- netbox_dns/api/serializers_/contact.py +37 -0
- netbox_dns/api/serializers_/nameserver.py +39 -0
- netbox_dns/api/serializers_/record.py +90 -0
- netbox_dns/api/serializers_/registrar.py +31 -0
- netbox_dns/api/serializers_/view.py +29 -0
- netbox_dns/api/serializers_/zone.py +170 -0
- netbox_dns/api/views.py +13 -13
- netbox_dns/fields/network.py +1 -1
- netbox_dns/fields/rfc2317.py +1 -1
- netbox_dns/{filters → filtersets}/contact.py +2 -1
- netbox_dns/filtersets/nameserver.py +37 -0
- netbox_dns/{filters → filtersets}/record.py +51 -6
- netbox_dns/{filters → filtersets}/registrar.py +2 -1
- netbox_dns/{filters → filtersets}/view.py +2 -2
- netbox_dns/filtersets/zone.py +205 -0
- netbox_dns/forms/contact.py +61 -33
- netbox_dns/forms/nameserver.py +21 -8
- netbox_dns/forms/record.py +35 -36
- netbox_dns/forms/registrar.py +45 -15
- netbox_dns/forms/view.py +19 -8
- netbox_dns/forms/zone.py +112 -87
- netbox_dns/graphql/__init__.py +17 -27
- netbox_dns/graphql/filters.py +49 -0
- netbox_dns/graphql/schema.py +66 -7
- netbox_dns/graphql/types.py +146 -0
- netbox_dns/management/commands/cleanup_database.py +0 -4
- netbox_dns/management/commands/cleanup_rrset_ttl.py +3 -5
- netbox_dns/management/commands/setup_coupling.py +15 -15
- netbox_dns/management/commands/update_soa.py +1 -1
- netbox_dns/migrations/0001_squashed_netbox_dns_0_15.py +0 -27
- netbox_dns/migrations/0001_squashed_netbox_dns_0_22.py +556 -0
- netbox_dns/migrations/{0013_add_nameserver_zone_record_description.py → 0002_contact_description_registrar_description.py} +4 -9
- netbox_dns/migrations/0020_netbox_3_4.py +1 -1
- netbox_dns/models/contact.py +6 -1
- netbox_dns/models/nameserver.py +3 -3
- netbox_dns/models/record.py +8 -15
- netbox_dns/models/registrar.py +5 -1
- netbox_dns/models/view.py +1 -1
- netbox_dns/models/zone.py +6 -9
- netbox_dns/navigation.py +1 -15
- netbox_dns/signals/ipam_coupling.py +3 -8
- netbox_dns/tables/contact.py +1 -0
- netbox_dns/tables/nameserver.py +0 -2
- netbox_dns/tables/registrar.py +1 -0
- netbox_dns/template_content.py +3 -7
- netbox_dns/templates/netbox_dns/contact.html +60 -56
- netbox_dns/templates/netbox_dns/nameserver.html +27 -27
- netbox_dns/templates/netbox_dns/record.html +92 -94
- netbox_dns/templates/netbox_dns/registrar.html +38 -36
- netbox_dns/templates/netbox_dns/view.html +21 -21
- netbox_dns/templates/netbox_dns/zone/base.html +5 -3
- netbox_dns/templates/netbox_dns/zone/child.html +3 -3
- netbox_dns/templates/netbox_dns/zone/managed_record.html +1 -1
- netbox_dns/templates/netbox_dns/zone/record.html +3 -3
- netbox_dns/templates/netbox_dns/zone/registration.html +26 -27
- netbox_dns/templates/netbox_dns/zone/rfc2317_child_zone.html +1 -1
- netbox_dns/templates/netbox_dns/zone.html +150 -149
- netbox_dns/utilities/__init__.py +1 -6
- netbox_dns/utilities/ipam_coupling.py +2 -7
- netbox_dns/validators/dns_name.py +4 -9
- netbox_dns/validators/rfc2317.py +2 -2
- netbox_dns/views/contact.py +4 -4
- netbox_dns/views/nameserver.py +5 -5
- netbox_dns/views/record.py +19 -12
- netbox_dns/views/registrar.py +4 -4
- netbox_dns/views/view.py +4 -4
- netbox_dns/views/zone.py +7 -8
- {netbox_plugin_dns-0.22.9.dist-info → netbox_plugin_dns-1.0b1.dist-info}/METADATA +5 -7
- netbox_plugin_dns-1.0b1.dist-info/RECORD +103 -0
- netbox_dns/filters/nameserver.py +0 -18
- netbox_dns/filters/zone.py +0 -112
- netbox_dns/graphql/contact.py +0 -19
- netbox_dns/graphql/nameserver.py +0 -19
- netbox_dns/graphql/record.py +0 -19
- netbox_dns/graphql/registrar.py +0 -19
- netbox_dns/graphql/view.py +0 -19
- netbox_dns/graphql/zone.py +0 -19
- netbox_dns/migrations/0001_initial.py +0 -115
- netbox_dns/migrations/0002_zone_default_ttl.py +0 -18
- netbox_dns/migrations/0003_soa_managed_records.py +0 -112
- netbox_dns/migrations/0004_create_ptr_for_a_aaaa_records.py +0 -80
- netbox_dns/migrations/0005_update_ns_records.py +0 -41
- netbox_dns/migrations/0006_zone_soa_serial_auto.py +0 -29
- netbox_dns/migrations/0007_alter_zone_soa_serial_auto.py +0 -17
- netbox_dns/migrations/0008_zone_status_names.py +0 -21
- netbox_dns/migrations/0009_netbox32.py +0 -71
- netbox_dns/migrations/0010_update_soa_records.py +0 -58
- netbox_dns/migrations/0011_add_view_model.py +0 -70
- netbox_dns/migrations/0012_adjust_zone_and_record.py +0 -17
- netbox_dns/migrations/0014_add_view_description.py +0 -16
- netbox_dns/migrations/0015_add_record_status.py +0 -17
- netbox_dns/migrations/0016_cleanup_ptr_records.py +0 -38
- netbox_dns/migrations/0017_alter_record_ttl.py +0 -17
- netbox_dns/migrations/0018_zone_arpa_network.py +0 -51
- netbox_dns/migrations/0019_update_ns_ttl.py +0 -19
- netbox_plugin_dns-0.22.9.dist-info/RECORD +0 -117
- /netbox_dns/{filters → filtersets}/__init__.py +0 -0
- {netbox_plugin_dns-0.22.9.dist-info → netbox_plugin_dns-1.0b1.dist-info}/LICENSE +0 -0
- {netbox_plugin_dns-0.22.9.dist-info → netbox_plugin_dns-1.0b1.dist-info}/WHEEL +0 -0
|
@@ -1,117 +0,0 @@
|
|
|
1
|
-
netbox_dns/__init__.py,sha256=dnsGYs80wLNVaxkQOvk-C8PrRP_hsw8IWocXh3DZ-ng,1314
|
|
2
|
-
netbox_dns/api/nested_serializers.py,sha256=XB7bcCjVMPYrumJWgRicj06PukQ2UCBjdr84AIUJuVQ,3291
|
|
3
|
-
netbox_dns/api/serializers.py,sha256=mCH6SvluOm9g3vV_hvxtNIyqGxtPAcLEBgLu-stq6AM,8203
|
|
4
|
-
netbox_dns/api/urls.py,sha256=R9VmmWtdrjvr35i5d_SfZK2lGn6JzmPuWEKTQlZ8MJo,575
|
|
5
|
-
netbox_dns/api/views.py,sha256=DjovvTfS4F2Fq2Ahea6f4LBJiWr01ajk-wSZHNTya5I,3527
|
|
6
|
-
netbox_dns/apps.py,sha256=JCW5eS-AQBUubDJve1DjP-IRFKTFGQh1NLGWzJpC5MI,151
|
|
7
|
-
netbox_dns/fields/__init__.py,sha256=egA6gLQ4SPYacECcYU4Vl_P7TbzLOMRfaX6rw3k26YA,69
|
|
8
|
-
netbox_dns/fields/address.py,sha256=qklRDbZJVK20t2OIxGBoo9VVeuVTWvWkf2gHaZMnoAI,1494
|
|
9
|
-
netbox_dns/fields/network.py,sha256=nDbWuvg4WUwItvuTfBViaF6Arx8QoL24hB_p4Nnt3pk,3592
|
|
10
|
-
netbox_dns/fields/rfc2317.py,sha256=Er52Hxghj1trNo41naAgwsLGGLx2NCQ-fGhSaalpoPg,2521
|
|
11
|
-
netbox_dns/filters/__init__.py,sha256=Aw8HrCTjaJfu5JSwJsQRHfOUz4zKwAmZNByT9q6BrFU,136
|
|
12
|
-
netbox_dns/filters/contact.py,sha256=_onZ6G2KKgfvm9Emg_kng2RPETRMfbTyIR8Tvs9d2YM,1027
|
|
13
|
-
netbox_dns/filters/nameserver.py,sha256=sDKsrluSmUZ0aTw_wagYJAh1g5fKzyzHXbJu6DaK1b8,522
|
|
14
|
-
netbox_dns/filters/record.py,sha256=WOZQfcUPzDHiCVBbpdZ0Pd_QrVB3ed-Xw8xvZt_EgDo,2256
|
|
15
|
-
netbox_dns/filters/registrar.py,sha256=8UXJXUb0XmkPyPQ2oACAhzhmZtAmvM2c4hTWMDLuBEo,911
|
|
16
|
-
netbox_dns/filters/view.py,sha256=Sji4DKy0VKk8BLEdk8xCe8su3rUBtXeJUsUAee0IsOs,497
|
|
17
|
-
netbox_dns/filters/zone.py,sha256=A8B7sZ1RVzeTrJV0ODCstO0mXiJ1o0Njfn0o1LXH6y0,3564
|
|
18
|
-
netbox_dns/forms/__init__.py,sha256=Aw8HrCTjaJfu5JSwJsQRHfOUz4zKwAmZNByT9q6BrFU,136
|
|
19
|
-
netbox_dns/forms/contact.py,sha256=Z8llYOpcGns8ZerOLsldpY836pfjO7427rmAZ4T8Kyg,4492
|
|
20
|
-
netbox_dns/forms/nameserver.py,sha256=LUYV_tna667flgPdQevDFniMdXZUYRUG8iqCx7HKdxQ,2027
|
|
21
|
-
netbox_dns/forms/record.py,sha256=HAjUQJsaQepnN6qbU9sYJrQQXchecTiiRccWUjEsej0,6266
|
|
22
|
-
netbox_dns/forms/registrar.py,sha256=1YhbOle1gbgd02MfkGLhHJHIqvTd8sxLiu8cafmlT8s,2832
|
|
23
|
-
netbox_dns/forms/view.py,sha256=KEWlUo8-oXP_QsqT5fW_UK-ZoX9g-f4CqRnJ_P6LHco,1627
|
|
24
|
-
netbox_dns/forms/zone.py,sha256=KCRyWPZtQ-awoNOXC0PYBRPUzmJx7qrV8BQlS73WK9o,21740
|
|
25
|
-
netbox_dns/graphql/__init__.py,sha256=v3lLvVoP-JQbEZ1NY49u1TNqvanF-4TqOtjHXrbsTvU,811
|
|
26
|
-
netbox_dns/graphql/contact.py,sha256=2iyuvCxG09CLDUMhan5vR3uFZxCVzKNZBrotr_zoUVY,497
|
|
27
|
-
netbox_dns/graphql/nameserver.py,sha256=mlQw1Po_Ax_fjyyXVBetyxlFLrCqmptYDgOspZvYtP4,527
|
|
28
|
-
netbox_dns/graphql/record.py,sha256=r_dtqRAid7wN_XgWTCR6XuKSAnSTz0z7hKUXcFt4AjU,487
|
|
29
|
-
netbox_dns/graphql/registrar.py,sha256=TEQSNT8CeIqquzySMRluGk3I2t9rYgQCgDbLJ0gnLRQ,517
|
|
30
|
-
netbox_dns/graphql/schema.py,sha256=D_dDusogaI55tmGx_dr1owsgzXS5fd2S-kPZ7xcXxs8,221
|
|
31
|
-
netbox_dns/graphql/view.py,sha256=S_61hYlQCtPQen1lI1UQs38UBWKQTaWfUxzlbpO07zA,467
|
|
32
|
-
netbox_dns/graphql/zone.py,sha256=QDBxocezhLSHBGDV4RJnmarBfOsiUTeE9KzBGJ3gJi8,467
|
|
33
|
-
netbox_dns/management/commands/cleanup_database.py,sha256=eggyMZrRg--cXDQJ-boofHboG1gJTs8j-oldhn6EuCo,6050
|
|
34
|
-
netbox_dns/management/commands/cleanup_rrset_ttl.py,sha256=_uEkTXCTVflRTUFW3fd6k0SsxU3sutxE9wdYZGfBFls,2077
|
|
35
|
-
netbox_dns/management/commands/setup_coupling.py,sha256=Yn1nffPR7fBgB6WWBdDqdnp3k8z1QK8k6qi9xbx4U6Y,4580
|
|
36
|
-
netbox_dns/management/commands/update_soa.py,sha256=qvlApMngTVpauj0CU0yeOy9r3lxxDciKorMxFsyvQhs,661
|
|
37
|
-
netbox_dns/migrations/0001_initial.py,sha256=R9FbIQ7nO1ROb12NL8YQDkFQuP1r6-TtMcPwg4rwjus,4153
|
|
38
|
-
netbox_dns/migrations/0001_squashed_netbox_dns_0_15.py,sha256=nxktsb-1oyiw1bHiBpnp8Vq4ugT0p0UMdJcYiq-UHoo,11466
|
|
39
|
-
netbox_dns/migrations/0002_zone_default_ttl.py,sha256=7I-GXqvlR0EgBhMWw59W5L-r0sS0UEIXnlTer_WpKkk,437
|
|
40
|
-
netbox_dns/migrations/0003_soa_managed_records.py,sha256=W3Ukto3MNqFdEgLnMHt3k5tz3tbT6BiT1Pc872fg614,3716
|
|
41
|
-
netbox_dns/migrations/0004_create_ptr_for_a_aaaa_records.py,sha256=TsxGLSTXQgQm2yaBGOTNwrdfKdgY6jbZS1q96MNkbnw,2287
|
|
42
|
-
netbox_dns/migrations/0005_update_ns_records.py,sha256=PRM4BbDOFhxzelMjU0q4gTvDFutcM7sNXwuJeDYY-8M,1156
|
|
43
|
-
netbox_dns/migrations/0006_zone_soa_serial_auto.py,sha256=vzNWOAcrxwPZRiI40qSOAL_-2szOPe_oTSJHxuBbqng,861
|
|
44
|
-
netbox_dns/migrations/0007_alter_zone_soa_serial_auto.py,sha256=q6UhZWyqv542RMlpfUfdtRUMKTTC0gQhVs6ujwvjMnM,399
|
|
45
|
-
netbox_dns/migrations/0008_zone_status_names.py,sha256=UYCxIzHcawHwigxBHZD6h6HsUdpCrkcS2SiJxQe8cxI,527
|
|
46
|
-
netbox_dns/migrations/0009_netbox32.py,sha256=OKCSMHZwLcPpNAUwgxY5fO1L3WlLaybhFxwjUzy8rQI,2176
|
|
47
|
-
netbox_dns/migrations/0010_update_soa_records.py,sha256=3iiNEiDJAkauAiwBbc8e1vQk7NiRNlSRftj6VnGsy44,1543
|
|
48
|
-
netbox_dns/migrations/0011_add_view_model.py,sha256=ypTmFYEWvZyT8Q81ap2feo34rhNplE1oxwPXP7GkOJI,2201
|
|
49
|
-
netbox_dns/migrations/0012_adjust_zone_and_record.py,sha256=tEGHQesYo-A3yekSoVvkSs2Gcj4MTpvjdsRbr7qjw3c,402
|
|
50
|
-
netbox_dns/migrations/0013_add_nameserver_zone_record_description.py,sha256=0KkfhQzBl9D_1MLy1UvZNIzyFI91Hz1m2LQrWpYLIyc,733
|
|
51
|
-
netbox_dns/migrations/0014_add_view_description.py,sha256=Bzo9-pIxziuaS9NxyWviYAaoOIRLeabHH8yDIAbTI0U,428
|
|
52
|
-
netbox_dns/migrations/0015_add_record_status.py,sha256=9YoMjfyUdaaLksTGs6vGWJ2IA8fdJSVcOGAfVqj-iPA,393
|
|
53
|
-
netbox_dns/migrations/0016_cleanup_ptr_records.py,sha256=2NRAPHLAZ4gBK-2QR11CrDyvBTiJW9CgBXKL-VeGWmk,1053
|
|
54
|
-
netbox_dns/migrations/0017_alter_record_ttl.py,sha256=jQtHLdl5tRGjGT93liwUOlUefC_PThiPU5ygPO4N7X4,405
|
|
55
|
-
netbox_dns/migrations/0018_zone_arpa_network.py,sha256=n0-6LUw0f1vKzYGMqV2c5yvn1oQdN5p-_i9xUsf2g58,1553
|
|
56
|
-
netbox_dns/migrations/0019_update_ns_ttl.py,sha256=0WLvJu2ig32waQd9yPbKJRNh_Sov46nqY7B8p5Cy8gw,433
|
|
57
|
-
netbox_dns/migrations/0020_netbox_3_4.py,sha256=GwnmlYdnWgLwt2-H7hOr0Zm4-s28aDpe-S1X3lco5PI,1260
|
|
58
|
-
netbox_dns/migrations/0021_record_ip_address.py,sha256=k72KACwnaCkgXLMgrex_lZCB1xd614llxRBeBBuJTYU,3243
|
|
59
|
-
netbox_dns/migrations/0022_search.py,sha256=KW1ffEZ4-0dppGQ_KD1EN7iw8eQJOnDco-xfJFRZqKQ,172
|
|
60
|
-
netbox_dns/migrations/0023_alter_record_value.py,sha256=4_4v8YZzU8_jadJqIUUjH6SIhNTeALWhclozTqYDmv0,378
|
|
61
|
-
netbox_dns/migrations/0024_tenancy.py,sha256=3kc5l5_AyfhOI6g6mbCfReUAbSgb2DAv0MDMZqJ-3YQ,1745
|
|
62
|
-
netbox_dns/migrations/0025_ipam_coupling_cf.py,sha256=7uHujclWrsYw5QMLWft0Po78Ow5Q8MjPuU7moKyQ2qs,620
|
|
63
|
-
netbox_dns/migrations/0026_domain_registration.py,sha256=qUJ1oUGHIGGNWD7QRLnxElbM5eNp7dYNNn_OYIw8Xvo,5796
|
|
64
|
-
netbox_dns/migrations/0027_alter_registrar_iana_id.py,sha256=QUtRIrqqfkraFmzzeJFZWAEv4PfrOouoHtrV6FRn8Kc,404
|
|
65
|
-
netbox_dns/migrations/0028_rfc2317_fields.py,sha256=D8r43xxBjYXiL6ycmX8RY5_WG7tRYEDjutOeYM1H56I,1364
|
|
66
|
-
netbox_dns/migrations/0029_record_fqdn.py,sha256=UAAU38ekKQyiYDOJlcrz6Qbk4bqZfSHZyAHUZFFQrOw,808
|
|
67
|
-
netbox_dns/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
|
-
netbox_dns/models/__init__.py,sha256=Q7UIEe2vGh18AZN4er6CykciwXPQGgUq0L-9718wZqU,182
|
|
69
|
-
netbox_dns/models/contact.py,sha256=Mzj4SR3fczOE96etWjObJElk0RVQetNuXZVtm8sS1h8,2849
|
|
70
|
-
netbox_dns/models/nameserver.py,sha256=d7IePSPjTUUmjWRw-giP80LN0_oPuQ5r6e58-_4Skbg,2998
|
|
71
|
-
netbox_dns/models/record.py,sha256=_ECe6FSr1pyaTWpBkX_JIF06d0omOsFvF31O-rh5ZX0,23980
|
|
72
|
-
netbox_dns/models/registrar.py,sha256=ByKHeqH5KfswqOLjya8DZExJ1omSKFHMfCjIIYfnwTo,1416
|
|
73
|
-
netbox_dns/models/view.py,sha256=ljs3Q2xQR63ZOSyja5H7DEdFbm7MX2ZjlR6uNVrAsVo,920
|
|
74
|
-
netbox_dns/models/zone.py,sha256=EvNiZb0CfSg_VyjAOkKWVK-CSVDA9h_EYpt21N54C3Q,26637
|
|
75
|
-
netbox_dns/navigation.py,sha256=IutEr_TcPgDGzqTT1ZzV4IUABLSOFU9v364BfpCqbro,4587
|
|
76
|
-
netbox_dns/signals/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
|
-
netbox_dns/signals/ipam_coupling.py,sha256=xbb37_77ZqtgT3mKXZp18QRduqZuiAuYGPk8R9d7SVc,5727
|
|
78
|
-
netbox_dns/tables/__init__.py,sha256=Aw8HrCTjaJfu5JSwJsQRHfOUz4zKwAmZNByT9q6BrFU,136
|
|
79
|
-
netbox_dns/tables/contact.py,sha256=HpblHKrlQqQAPC59gvw8wUV3tc6UBAphHPE6CfN2uVM,747
|
|
80
|
-
netbox_dns/tables/nameserver.py,sha256=7Ap0px5gAHtgk5XFMpZCHccy9N-v8UKy19GP7fdWuPc,819
|
|
81
|
-
netbox_dns/tables/record.py,sha256=VwBWMiZN_Lkl9SXfJLzd8-7TM1CKetwE7azhScF4r7I,3162
|
|
82
|
-
netbox_dns/tables/registrar.py,sha256=fnClFyukZ5Un-jUigrjDRYK5_2YE2BAtbm6lqctbeJ4,621
|
|
83
|
-
netbox_dns/tables/view.py,sha256=r9CLS96m-KojX3OYZ-k45FbVseHO20nPxRzlKrRrLio,501
|
|
84
|
-
netbox_dns/tables/zone.py,sha256=4TlTB7lVsztZJ41aetkqr6PWosjZP-xc2sB9gDnw0z8,1886
|
|
85
|
-
netbox_dns/template_content.py,sha256=dGy-CGnk03DA-MN6lXTjirY_spZ2l-Qb1ZWqsNynNjc,3936
|
|
86
|
-
netbox_dns/templates/netbox_dns/contact.html,sha256=3qHGChgLYfqUgO3_z9jQ-lFIGS0ZehJdxJy04r3T0Tc,2858
|
|
87
|
-
netbox_dns/templates/netbox_dns/nameserver.html,sha256=3AJVbsuhKg4Jy74rlvwrGSHd_IoDRdLT_XuK4EH3Djg,1623
|
|
88
|
-
netbox_dns/templates/netbox_dns/record/managed.html,sha256=G6LPG1koUGuzUiwYdv1okdVa4sKaofiQegDBnsFL0kA,89
|
|
89
|
-
netbox_dns/templates/netbox_dns/record/related.html,sha256=Aqor8uGcuHQTHjlX-Xmni2Yp4N7lOBrMOqQiszrQOC0,742
|
|
90
|
-
netbox_dns/templates/netbox_dns/record.html,sha256=qwLPb-Fis_roTkrOW8uiWKsgvr3nMAvxlLt0I-WP-ec,5830
|
|
91
|
-
netbox_dns/templates/netbox_dns/registrar.html,sha256=rSShbH68nP0r8EUHn0-TZOsUj6pg7hmfvM7h2tqouUA,2130
|
|
92
|
-
netbox_dns/templates/netbox_dns/related_dns_objects.html,sha256=KSzlnw1cStrJa3poKkwrt_ycIH0oH0STWIHRNy3ks4g,806
|
|
93
|
-
netbox_dns/templates/netbox_dns/view.html,sha256=_lDjd2xY3upfGpNpemXXMzgsaKZlX3-PzPPAdYkIjvs,1350
|
|
94
|
-
netbox_dns/templates/netbox_dns/zone/base.html,sha256=pucf_b7iGg4hCXqwIbR0_WtEQdeH2LQtTCRTSoeBhFc,460
|
|
95
|
-
netbox_dns/templates/netbox_dns/zone/child.html,sha256=Y9dOUA8MPxuPqbbYV0KEZvLw1JIvfvOxbAVSv1c1l-k,2171
|
|
96
|
-
netbox_dns/templates/netbox_dns/zone/managed_record.html,sha256=5P85eJuQOB7omih2vUXexRGjt4UF6McOM8f4D7QQbEw,524
|
|
97
|
-
netbox_dns/templates/netbox_dns/zone/record.html,sha256=1oIRGXOZAjwmTMkTgArfKyVrmL54Sh_IN7IAF3qYEKM,2218
|
|
98
|
-
netbox_dns/templates/netbox_dns/zone/registration.html,sha256=3R5uqLXZxIJkp9_LVnTTgTV61mITfDPDDNofV7s4d1k,1283
|
|
99
|
-
netbox_dns/templates/netbox_dns/zone/rfc2317_child_zone.html,sha256=kxIrhn0gghb4l1eZhpsICdfkSYegqSXR9zFIWiZLypA,527
|
|
100
|
-
netbox_dns/templates/netbox_dns/zone.html,sha256=_lQhr00_V8ThadlTuTm5zPkcvyjYQxxYGHQsfTOgDCs,7187
|
|
101
|
-
netbox_dns/urls.py,sha256=NxqvnRxLM6VwUBTY6KA8u-PRjNklmBai7gy6NXc-1xo,9172
|
|
102
|
-
netbox_dns/utilities/__init__.py,sha256=8DqDx-99kejykwaIt_29W5KgY8RvWBOk6526vrf22UQ,1967
|
|
103
|
-
netbox_dns/utilities/ipam_coupling.py,sha256=LhdFafF4OAOU8rgROOqY5Dt7XDT_SUZP2JuIqCQYVqw,3573
|
|
104
|
-
netbox_dns/validators/__init__.py,sha256=5W8s31R1aT5B_mKJjTRwogEKj-Xun05iCyvRuYVGkdM,47
|
|
105
|
-
netbox_dns/validators/dns_name.py,sha256=mauW5-7a-sjTxyP4qWiRi-kfffGEj9Ma7N2o-BJjx38,2232
|
|
106
|
-
netbox_dns/validators/rfc2317.py,sha256=bgqDwdqwpf5d1mt24Wrr8z8t2IYbt5RovNr6l2nvdR4,503
|
|
107
|
-
netbox_dns/views/__init__.py,sha256=Aw8HrCTjaJfu5JSwJsQRHfOUz4zKwAmZNByT9q6BrFU,136
|
|
108
|
-
netbox_dns/views/contact.py,sha256=6-oCfK98-submcUTmi0ejw7QBscNn3S9bnS0oUTXOaY,2235
|
|
109
|
-
netbox_dns/views/nameserver.py,sha256=Wa8CQ19P5uPNLMIYkj_U82wmwdp5gZoBWZnOR4ZExa0,2990
|
|
110
|
-
netbox_dns/views/record.py,sha256=1-hOvEFED2ENerJ0bh0pRjUORSgj8vEaVe4ViahPqpU,4592
|
|
111
|
-
netbox_dns/views/registrar.py,sha256=aznSKt1L5tILMLGgcZiBR7u7B8rNl-jM1B2-N0fTeK8,2072
|
|
112
|
-
netbox_dns/views/view.py,sha256=uUvtlNEh5MYoEALvWWaCOqj_Zj8dpGOL2PUyg-UPfEA,1895
|
|
113
|
-
netbox_dns/views/zone.py,sha256=SyttTAgrPPzf1jIT1B4RexCLdXYjSmPIZsefO_zog1Q,4587
|
|
114
|
-
netbox_plugin_dns-0.22.9.dist-info/LICENSE,sha256=tziMJKpkMbySr09L6bIwsu7Ca9ICoqpMO3yAXgEMQA4,1076
|
|
115
|
-
netbox_plugin_dns-0.22.9.dist-info/METADATA,sha256=ATx4W_TxWOTtdzE3oiSorOfbYNkAWw-WQpH6fd64Qx8,4572
|
|
116
|
-
netbox_plugin_dns-0.22.9.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
117
|
-
netbox_plugin_dns-0.22.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|