[PR #4385] [MERGED] Implements 3351 plugins #12834

Closed
opened 2025-12-29 22:23:52 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/4385
Author: @lampwins
Created: 3/18/2020
Status: Merged
Merged: 3/27/2020
Merged by: @jeremystretch

Base: develop-2.8Head: 3351-plugins


📝 Commits (10+)

  • a17c227 initial work on Search by 'Custom fields' (#3351)
  • 71a8a13 add api urls and signals interface for detail route buttons
  • 5f5edbc added config option to disable plugins
  • bc954bc Merge branch 'develop-2.8' into 3351-plugins
  • 0706c65 Merge branch 'develop-2.8' into 3351-plugins
  • 8af4cf8 Merge branch 'develop-2.8' into 3351-plugins
  • 235d990 implemented registry for extras model functionality
  • c189895 refactor extras registry
  • 6ea15ce Revert "refactor extras registry"
  • 2dc31c0 Revert "implemented registry for extras model functionality"

📊 Changes

42 files changed (+1305 additions, -5 deletions)

View changed files

📝 docs/configuration/optional-settings.md (+33 -0)
docs/media/plugins/plugin_admin_ui.png (+0 -0)
docs/media/plugins/plugin_rest_api_endpoint.png (+0 -0)
docs/plugins/development.md (+375 -0)
docs/plugins/index.md (+71 -0)
📝 mkdocs.yml (+3 -0)
netbox/extras/plugins/__init__.py (+214 -0)
netbox/extras/plugins/urls.py (+41 -0)
netbox/extras/plugins/views.py (+93 -0)
netbox/extras/templatetags/plugins.py (+73 -0)
📝 netbox/netbox/admin.py (+1 -0)
📝 netbox/netbox/configuration.example.py (+12 -0)
📝 netbox/netbox/settings.py (+67 -1)
📝 netbox/netbox/urls.py (+6 -0)
📝 netbox/netbox/views.py (+1 -0)
📝 netbox/templates/admin/index.html (+6 -1)
📝 netbox/templates/circuits/circuit.html (+9 -0)
📝 netbox/templates/circuits/provider.html (+9 -0)
📝 netbox/templates/dcim/cable.html (+9 -0)
📝 netbox/templates/dcim/device.html (+9 -0)

...and 22 more files

📄 Description

Fixes: #3351

This is the first pass at the core plugins implementation. This is lacking docs and the maintainers have agreed we will implement those as a separate PR.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/netbox-community/netbox/pull/4385 **Author:** [@lampwins](https://github.com/lampwins) **Created:** 3/18/2020 **Status:** ✅ Merged **Merged:** 3/27/2020 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `develop-2.8` ← **Head:** `3351-plugins` --- ### 📝 Commits (10+) - [`a17c227`](https://github.com/netbox-community/netbox/commit/a17c22746d7cccdab70ef61ca67a9a3ede6aa8ab) initial work on #3351 - [`71a8a13`](https://github.com/netbox-community/netbox/commit/71a8a13644ea4643202a626d7860ab6f6ac5351d) add api urls and signals interface for detail route buttons - [`5f5edbc`](https://github.com/netbox-community/netbox/commit/5f5edbc10e5ef14d0dddb2f95be23450cd626a77) added config option to disable plugins - [`bc954bc`](https://github.com/netbox-community/netbox/commit/bc954bc7be05cfca93582d0e5b9d58d52ba0e79f) Merge branch 'develop-2.8' into 3351-plugins - [`0706c65`](https://github.com/netbox-community/netbox/commit/0706c65ce6cc8672486d6d0c415008d041ac5699) Merge branch 'develop-2.8' into 3351-plugins - [`8af4cf8`](https://github.com/netbox-community/netbox/commit/8af4cf87b567ec59f9f6461428103763d01f544d) Merge branch 'develop-2.8' into 3351-plugins - [`235d990`](https://github.com/netbox-community/netbox/commit/235d99021bbc329888df924fdec568166c4a264b) implemented registry for extras model functionality - [`c189895`](https://github.com/netbox-community/netbox/commit/c189895f6c17bd64de21e419a2f6678342d62477) refactor extras registry - [`6ea15ce`](https://github.com/netbox-community/netbox/commit/6ea15cec6f3917028d8226f5760a08be7c981bc3) Revert "refactor extras registry" - [`2dc31c0`](https://github.com/netbox-community/netbox/commit/2dc31c0edd51f130051c9ac95dfe142fee57ecf7) Revert "implemented registry for extras model functionality" ### 📊 Changes **42 files changed** (+1305 additions, -5 deletions) <details> <summary>View changed files</summary> 📝 `docs/configuration/optional-settings.md` (+33 -0) ➕ `docs/media/plugins/plugin_admin_ui.png` (+0 -0) ➕ `docs/media/plugins/plugin_rest_api_endpoint.png` (+0 -0) ➕ `docs/plugins/development.md` (+375 -0) ➕ `docs/plugins/index.md` (+71 -0) 📝 `mkdocs.yml` (+3 -0) ➕ `netbox/extras/plugins/__init__.py` (+214 -0) ➕ `netbox/extras/plugins/urls.py` (+41 -0) ➕ `netbox/extras/plugins/views.py` (+93 -0) ➕ `netbox/extras/templatetags/plugins.py` (+73 -0) 📝 `netbox/netbox/admin.py` (+1 -0) 📝 `netbox/netbox/configuration.example.py` (+12 -0) 📝 `netbox/netbox/settings.py` (+67 -1) 📝 `netbox/netbox/urls.py` (+6 -0) 📝 `netbox/netbox/views.py` (+1 -0) 📝 `netbox/templates/admin/index.html` (+6 -1) 📝 `netbox/templates/circuits/circuit.html` (+9 -0) 📝 `netbox/templates/circuits/provider.html` (+9 -0) 📝 `netbox/templates/dcim/cable.html` (+9 -0) 📝 `netbox/templates/dcim/device.html` (+9 -0) _...and 22 more files_ </details> ### 📄 Description <!-- Thank you for your interest in contributing to NetBox! Please note that our contribution policy requires that a feature request or bug report be opened for approval prior to filing a pull request. This helps avoid wasting time and effort on something that we might not be able to accept. Please indicate the relevant feature request or bug report below. IF YOUR PULL REQUEST DOES NOT REFERENCE AN ACCEPTED BUG REPORT OR FEATURE REQUEST, IT WILL BE MARKED AS INVALID AND CLOSED. --> ### Fixes: #3351 <!-- Please include a summary of the proposed changes below. --> This is the first pass at the core plugins implementation. This is lacking docs and the maintainers have agreed we will implement those as a separate PR. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 22:23:52 +01:00
adam closed this issue 2025-12-29 22:23:52 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12834