removed options not needed for config data for GUI support for both old and new GUIs
This commit is contained in:
parent
93ad6b588a
commit
a85cb92196
3 changed files with 1 additions and 9 deletions
|
@ -21,7 +21,6 @@ class EmaneBypassModel(emanemodel.EmaneModel):
|
||||||
_id="none",
|
_id="none",
|
||||||
_type=ConfigDataTypes.BOOL,
|
_type=ConfigDataTypes.BOOL,
|
||||||
default="0",
|
default="0",
|
||||||
options=["True", "False"],
|
|
||||||
label="There are no parameters for the bypass model.",
|
label="There are no parameters for the bypass model.",
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
|
|
|
@ -36,21 +36,18 @@ class SessionConfig(ConfigurableManager, ConfigurableOptions):
|
||||||
_id="enablerj45",
|
_id="enablerj45",
|
||||||
_type=ConfigDataTypes.BOOL,
|
_type=ConfigDataTypes.BOOL,
|
||||||
default="1",
|
default="1",
|
||||||
options=["On", "Off"],
|
|
||||||
label="Enable RJ45s",
|
label="Enable RJ45s",
|
||||||
),
|
),
|
||||||
Configuration(
|
Configuration(
|
||||||
_id="preservedir",
|
_id="preservedir",
|
||||||
_type=ConfigDataTypes.BOOL,
|
_type=ConfigDataTypes.BOOL,
|
||||||
default="0",
|
default="0",
|
||||||
options=["On", "Off"],
|
|
||||||
label="Preserve session dir",
|
label="Preserve session dir",
|
||||||
),
|
),
|
||||||
Configuration(
|
Configuration(
|
||||||
_id="enablesdt",
|
_id="enablesdt",
|
||||||
_type=ConfigDataTypes.BOOL,
|
_type=ConfigDataTypes.BOOL,
|
||||||
default="0",
|
default="0",
|
||||||
options=["On", "Off"],
|
|
||||||
label="Enable SDT3D output",
|
label="Enable SDT3D output",
|
||||||
),
|
),
|
||||||
Configuration(
|
Configuration(
|
||||||
|
|
|
@ -906,11 +906,7 @@ class Ns2ScriptedMobility(WayPointMobility):
|
||||||
label="refresh time (ms)",
|
label="refresh time (ms)",
|
||||||
),
|
),
|
||||||
Configuration(
|
Configuration(
|
||||||
_id="loop",
|
_id="loop", _type=ConfigDataTypes.BOOL, default="1", label="loop"
|
||||||
_type=ConfigDataTypes.BOOL,
|
|
||||||
default="1",
|
|
||||||
options=["On", "Off"],
|
|
||||||
label="loop",
|
|
||||||
),
|
),
|
||||||
Configuration(
|
Configuration(
|
||||||
_id="autostart",
|
_id="autostart",
|
||||||
|
|
Loading…
Add table
Reference in a new issue