From a93606d9edec7c6ab8ed2c44952df9c809de329a Mon Sep 17 00:00:00 2001 From: grossmj Date: Tue, 27 Nov 2018 16:13:22 +0700 Subject: [PATCH] Use "node" instead of "appliance" for grid support. --- gns3server/schemas/project.py | 12 ++++++------ gns3server/schemas/topology.py | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/gns3server/schemas/project.py b/gns3server/schemas/project.py index 7ac1a4a8..23f23ac2 100644 --- a/gns3server/schemas/project.py +++ b/gns3server/schemas/project.py @@ -102,11 +102,11 @@ PROJECT_CREATE_SCHEMA = { }, "grid_size": { "type": "integer", - "description": "Grid size for the drawing area for appliances" + "description": "Grid size for the drawing area for nodes" }, "drawing_grid_size": { "type": "integer", - "description": "Grid size for the drawing area for labels" + "description": "Grid size for the drawing area for drawings" }, "show_interface_labels": { "type": "boolean", @@ -171,11 +171,11 @@ PROJECT_UPDATE_SCHEMA = { }, "grid_size": { "type": "integer", - "description": "Grid size for the drawing area for appliances" + "description": "Grid size for the drawing area for nodes" }, "drawing_grid_size": { "type": "integer", - "description": "Grid size for the drawing area for labels" + "description": "Grid size for the drawing area for drawings" }, "show_interface_labels": { "type": "boolean", @@ -256,11 +256,11 @@ PROJECT_OBJECT_SCHEMA = { }, "grid_size": { "type": "integer", - "description": "Grid size for the drawing area for appliances" + "description": "Grid size for the drawing area for nodes" }, "drawing_grid_size": { "type": "integer", - "description": "Grid size for the drawing area for labels" + "description": "Grid size for the drawing area for drawings" }, "show_interface_labels": { "type": "boolean", diff --git a/gns3server/schemas/topology.py b/gns3server/schemas/topology.py index 5f313f5c..21d5e6da 100644 --- a/gns3server/schemas/topology.py +++ b/gns3server/schemas/topology.py @@ -93,11 +93,11 @@ TOPOLOGY_SCHEMA = { }, "grid_size": { "type": "integer", - "description": "Grid size for the drawing area for appliances" + "description": "Grid size for the drawing area for nodes" }, "drawing_grid_size": { "type": "integer", - "description": "Grid size for the drawing area for labels" + "description": "Grid size for the drawing area for drawings" }, "show_interface_labels": { "type": "boolean",