1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00
Commit Graph

6734 Commits

Author SHA1 Message Date
afe805bd28 Corrected filtering of boolean custom fields 2016-09-12 15:59:43 -04:00
6af7403738 Fixes #507: Corrected rendering of nav menu on screens narrower than 1200px 2016-09-12 15:02:40 -04:00
98fe83944f Deleted obsolete javascript 2016-09-12 13:50:55 -04:00
37e0388a5a Fixes #522: Remove obsolete check for staff status when bulk deleting objects 2016-09-12 11:21:13 -04:00
99510a990a Fixes #544: Strip CRLF-style line terminators from rendered export templates 2016-09-12 10:42:59 -04:00
ca6c62facd Custom fields documentation tweaks 2016-09-12 10:30:54 -04:00
6e5a099834 Fixes #540: Add links for VLAN roles under VLAN nav menu 2016-09-12 09:44:24 -04:00
e0b17b1496 Fixes #515: Clarify when 'face' field is required 2016-09-12 09:36:23 -04:00
af519b93b7 added more changes for centos/rhel installation 2016-09-02 16:54:47 -04:00
2213e3e0cf added centos/rhel installation on netbox.md postgresql.md and web-server.md 2016-09-02 16:38:58 -04:00
8341800a85 Merge pull request #504 from digitalocean/custom-fields
Custom fields
2016-08-24 09:45:50 -04:00
25f1fcc6cb Updated docs to add URL custom field type 2016-08-24 09:42:22 -04:00
d74d85a042 Added URL custom field type; added is_filterable toggle; fixed bulk editing 2016-08-23 16:45:26 -04:00
fcd4c9f7de Corrected reporting of bulk edits to custom fields 2016-08-23 12:47:44 -04:00
25c46894b4 Corrected CustomField ordering 2016-08-23 12:25:23 -04:00
4a2e80aeee Added a weight to CustomField for ordering fields within a form 2016-08-23 12:11:27 -04:00
74a5960992 Added custom field support to filter forms 2016-08-23 12:05:28 -04:00
28b9dda55d Implemented dynamic filters for custom fields 2016-08-23 11:18:00 -04:00
3b36a35b9a Fixed API tests 2016-08-22 17:15:20 -04:00
b9dcf9ca12 Refreshed migrations 2016-08-22 15:52:26 -04:00
faed3c1314 Merged develop 2016-08-22 15:49:41 -04:00
f0a85b1dd3 Optimized API performance 2016-08-22 15:16:49 -04:00
76f0463290 Extended API to include custom fields 2016-08-22 13:20:30 -04:00
b14afaa687 Updated bulk edit forms to support custom fields 2016-08-22 13:11:57 -04:00
14a908bf66 Merge pull request #496 from rfdrake/develop
fix for Dockerfile
2016-08-22 09:11:05 -04:00
8f34b6b0b9 fix for Dockerfile
It was hard to test with the old syntax.  It was cloning the "master"
branch, so trying to test a development change was difficult.
I believe I've fixed it so that the "master" branch and "develop"
branch can use the same Dockerfile options.  You override which branch
it pulls by setting a build-args variable, either via docker-compose or
in the docker build options.
2016-08-21 23:48:27 -04:00
eab18a81c9 Adjusted display of created and last_updated times for primary objects 2016-08-19 12:19:02 -04:00
7a558d8332 Fixes #490: Corrected display of circuit commit rate 2016-08-19 10:41:37 -04:00
fa79014585 Merge pull request #489 from rfdrake/develop
Changes to Dockerfile to make the build faster
2016-08-19 10:33:19 -04:00
8cf2ae7851 Fixes #495: Include tenant in prefix and IP CSV export 2016-08-19 10:31:16 -04:00
0708942ab8 Fixed csv reader to handle special characters 2016-08-19 12:09:40 +02:00
4b4602b703 Changes to Dockerfile to make the build faster
To download a new version with docker, I've been running

	git pull
	docker-compose build --no-cache

This is slow, but no-cache is needed so that "git clone" pulls the
latest copy.

Most of the slowness comes from pulling down apt files each time a
rebuild needs to be done.  If we move that into a docker image then only
the local changes need to be rebuilt.

Further refinements could be done.  If the python dependencies that are
brought in from requirements.txt could be moved to an image then nothing
would change between updates as long as dependant versions hadn't
changed.  This would probably be more trouble than it's worth, unless
you're recreating netbox containers 10-20 times a day.
2016-08-18 23:49:41 -04:00
ab90a06c54 Fixes #486: Prompt for secret key only if updating a secret's value 2016-08-18 16:43:41 -04:00
6dbf2043b9 Merge pull request #488 from digitalocean/revert-478-develop
Revert "Changes to Dockerfile to make the build faster"
2016-08-18 15:32:39 -04:00
041a166217 Revert "Changes to Dockerfile to make the build faster" 2016-08-18 15:31:31 -04:00
63ac4e2c42 Fixes #476: Corrected rack import instructions 2016-08-18 15:23:28 -04:00
77d721360f Merge pull request #478 from rfdrake/develop
Changes to Dockerfile to make the build faster
2016-08-18 15:18:30 -04:00
1d6299622b Documentation and cleanup 2016-08-18 14:23:28 -04:00
6f44f4245e Fixed default value for boolean fields 2016-08-18 11:44:40 -04:00
de8fd550cb Fixes #484: Allow bulk deletion of >1K objects 2016-08-18 10:12:43 -04:00
9bdb50c33e Optimized bulk editing of custom fields 2016-08-17 15:52:27 -04:00
6ed33af063 Changes to Dockerfile to make the build faster
To download a new version with docker, I've been running

	git pull
	docker-compose build --no-cache

This is slow, but no-cache is needed so that "git clone" pulls the
latest copy.

Most of the slowness comes from pulling down apt files each time a
rebuild needs to be done.  If we move that into a docker image then only
the local changes need to be rebuilt.

Further refinements could be done.  If the python dependencies that are
brought in from requirements.txt could be moved to an image then nothing
would change between updates as long as dependant versions hadn't
changed.  This would probably be more trouble than it's worth, unless
you're recreating netbox containers 10-20 times a day.
2016-08-17 15:19:56 -04:00
a33e89fed7 Converted to a single column for value storage 2016-08-17 14:49:42 -04:00
b0a325f173 More performance improvements 2016-08-17 13:40:22 -04:00
b7a90dd09a Added icon for boolean fields 2016-08-17 13:40:06 -04:00
8d99ad3099 Corrected issue with duplicate queries 2016-08-17 12:41:12 -04:00
c49177e59c Merge branch 'develop' into custom-fields 2016-08-17 12:05:13 -04:00
96d6be3608 Merge branch 'develop' of github.com:digitalocean/netbox into develop 2016-08-17 12:04:26 -04:00
aa84d04c8b Removed redundant PK list from bulk edit template 2016-08-17 12:04:16 -04:00
c8b85202d1 Fixed test case name 2016-08-16 17:49:52 -04:00