fix: add allow_unknown option
This commit is contained in:
parent
6a36d31c83
commit
04adac7b7a
75 changed files with 121 additions and 108 deletions
|
|
@ -5,8 +5,8 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: 2025-10-06 20:50+0200\n"
|
||||
"PO-Revision-Date: 2025-10-06 20:52+0200\n"
|
||||
"POT-Creation-Date: 2026-06-12 19:57+0200\n"
|
||||
"PO-Revision-Date: 2026-06-12 19:58+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: fr\n"
|
||||
|
|
@ -14,8 +14,12 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"X-Generator: Poedit 3.7\n"
|
||||
"X-Generator: Poedit 3.9\n"
|
||||
|
||||
#: src/rougail/user_data_commandline/__init__.py:48
|
||||
#: src/rougail/user_data_commandline/__init__.py:52
|
||||
msgid "\"commandline\" is not set in step.user_data"
|
||||
msgstr "\"commandline\" n'est pas défini dans step.user_data"
|
||||
|
||||
#: src/rougail/user_data_commandline/__init__.py:82
|
||||
msgid "the command line"
|
||||
msgstr "la ligne de commande"
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2025-10-06 20:53+0200\n"
|
||||
"POT-Creation-Date: 2026-06-12 22:02+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -15,7 +15,11 @@ msgstr ""
|
|||
"Generated-By: pygettext.py 1.5\n"
|
||||
|
||||
|
||||
#: src/rougail/user_data_commandline/__init__.py:48
|
||||
#: src/rougail/user_data_commandline/__init__.py:52
|
||||
msgid "\"commandline\" is not set in step.user_data"
|
||||
msgstr ""
|
||||
|
||||
#: src/rougail/user_data_commandline/__init__.py:82
|
||||
msgid "the command line"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -34,6 +34,7 @@ class RougailUserDataCommandline:
|
|||
rougailconfig: "RougailConfig" = None,
|
||||
arguments = None,
|
||||
prog = None,
|
||||
allow_unknown: bool = False,
|
||||
**kwargs,
|
||||
):
|
||||
# this is the tiramisu config object
|
||||
|
|
@ -53,6 +54,7 @@ class RougailUserDataCommandline:
|
|||
self.arguments = arguments
|
||||
self.errors = []
|
||||
self.warnings = []
|
||||
self.allow_unknown = allow_unknown
|
||||
self.parser = TiramisuCmdlineParser(
|
||||
self.config,
|
||||
prog=prog,
|
||||
|
|
@ -62,8 +64,11 @@ class RougailUserDataCommandline:
|
|||
|
||||
def run(self):
|
||||
try:
|
||||
self.parser.parse_args(self.arguments, valid_mandatory=False)
|
||||
except (SystemExit, ArgumentError) as err:
|
||||
if self.allow_unknown:
|
||||
self.parser.parse_known_args(self.arguments, valid_mandatory=False)
|
||||
else:
|
||||
self.parser.parse_args(self.arguments, valid_mandatory=False)
|
||||
except ArgumentError as err:
|
||||
self.errors.append(str(err))
|
||||
values = {}
|
||||
for key in self.config.value.exportation():
|
||||
|
|
@ -74,7 +79,7 @@ class RougailUserDataCommandline:
|
|||
values[key] = [self.config.option(key, index).value.get() for index in range(option.value.len())]
|
||||
return [
|
||||
{
|
||||
"source": 'Commandline',
|
||||
"source": _('the command line'),
|
||||
"errors": self.errors,
|
||||
"warnings": self.warnings,
|
||||
"values": values,
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -2,10 +2,10 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"family \"leadership\" has property hidden, so cannot access to \"var1\" (a first variable), it will be ignored when loading from Commandline"
|
||||
"family \"leadership\" has property hidden, so cannot access to \"var1\" (a first variable), it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"family \"leadership\" is hidden, \"var2\" (a first variable) at index \"0\", it will be ignored when loading from Commandline"
|
||||
"family \"leadership\" is hidden, \"var2\" (a first variable) at index \"0\", it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"rougail.variable": "string_1_True_"
|
||||
"rougail.variable": "string_1_True_None"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,10 +2,10 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,10 +2,10 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,10 +2,10 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,13 +2,13 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,10 +2,10 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"family \"condition\" (a condition) has property disabled, so cannot access to \"variable\" (a variable), it will be ignored when loading from Commandline"
|
||||
"family \"condition\" (a condition) has property disabled, so cannot access to \"variable\" (a variable), it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"family \"condition\" (a condition) has property disabled, so cannot access to \"variable\" (a variable), it will be ignored when loading from Commandline"
|
||||
"family \"condition\" (a condition) has property disabled, so cannot access to \"variable\" (a variable), it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,10 +2,10 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,10 +2,10 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"family \"variable1\" (a variable) has property disabled, so cannot access to \"variable2\" (a second variable), it will be ignored when loading from Commandline"
|
||||
"family \"variable1\" (a variable) has property disabled, so cannot access to \"variable2\" (a second variable), it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,10 +2,10 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"family \"variable1\" (a variable) has property disabled, so cannot access to \"variable2\" (a second variable), it will be ignored when loading from Commandline"
|
||||
"family \"variable1\" (a variable) has property disabled, so cannot access to \"variable2\" (a second variable), it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,10 +2,10 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"family \"condition\" (a condition) has property disabled, so cannot access to \"variable\" (a variable), it will be ignored when loading from Commandline"
|
||||
"family \"condition\" (a condition) has property disabled, so cannot access to \"variable\" (a variable), it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"family \"condition\" (a condition) has property disabled, so cannot access to \"variable\" (a variable), it will be ignored when loading from Commandline"
|
||||
"family \"condition\" (a condition) has property disabled, so cannot access to \"variable\" (a variable), it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,10 +2,10 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"family \"variable1\" (a variable) has property disabled, so cannot access to \"variable2\" (a second variable), it will be ignored when loading from Commandline"
|
||||
"family \"variable1\" (a variable) has property disabled, so cannot access to \"variable2\" (a second variable), it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,10 +2,10 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"family \"variable1\" (a variable) has property disabled, so cannot access to \"variable2\" (a second variable), it will be ignored when loading from Commandline"
|
||||
"family \"variable1\" (a variable) has property disabled, so cannot access to \"variable2\" (a second variable), it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"family \"variable1\" (a variable) has property disabled, so cannot access to \"variable2\" (a second variable), it will be ignored when loading from Commandline"
|
||||
"family \"variable1\" (a variable) has property disabled, so cannot access to \"variable2\" (a second variable), it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,10 +2,10 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"family \"family\" has property disabled, so cannot access to \"var1\", it will be ignored when loading from Commandline"
|
||||
"family \"family\" has property disabled, so cannot access to \"var1\", it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"family \"family\" has property disabled, so cannot access to \"var1\", it will be ignored when loading from Commandline"
|
||||
"family \"family\" has property disabled, so cannot access to \"var1\", it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"family \"family\" has property disabled, so cannot access to \"var1\", it will be ignored when loading from Commandline"
|
||||
"family \"family\" has property disabled, so cannot access to \"var1\", it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"family \"family\" has property disabled, so cannot access to \"var1\", it will be ignored when loading from Commandline"
|
||||
"family \"family\" has property disabled, so cannot access to \"var1\", it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"family \"leader\" (a leadership) has property hidden, so cannot access to \"leader\" (a leader), it will be ignored when loading from Commandline"
|
||||
"family \"leader\" (a leadership) has property hidden, so cannot access to \"leader\" (a leader), it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,22 +2,22 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"family \"my_family\" (This is a great family) has property disabled and hidden, so cannot access to \"my_variable\", it will be ignored when loading from Commandline"
|
||||
"family \"my_family\" (This is a great family) has property disabled and hidden, so cannot access to \"my_variable\", it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"family \"my_family\" (This is a great family) has property disabled and hidden, so cannot access to \"my_variable\", it will be ignored when loading from Commandline"
|
||||
"family \"my_family\" (This is a great family) has property disabled and hidden, so cannot access to \"my_variable\", it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"family \"my_family\" (This is a great family) has property disabled and hidden, so cannot access to \"my_variable\", it will be ignored when loading from Commandline"
|
||||
"family \"my_family\" (This is a great family) has property disabled and hidden, so cannot access to \"my_variable\", it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"family \"my_family\" (This is a great family) has property disabled and hidden, so cannot access to \"my_variable\", it will be ignored when loading from Commandline"
|
||||
"family \"my_family\" (This is a great family) has property disabled and hidden, so cannot access to \"my_variable\", it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"family \"my_family\" (This is a great family) has property disabled and hidden, so cannot access to \"my_variable\", it will be ignored when loading from Commandline"
|
||||
"family \"my_family\" (This is a great family) has property disabled and hidden, so cannot access to \"my_variable\", it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"family \"my_family\" (This is a great family) has property disabled and hidden, so cannot access to \"my_variable\", it will be ignored when loading from Commandline"
|
||||
"family \"my_family\" (This is a great family) has property disabled and hidden, so cannot access to \"my_variable\", it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"family \"family\" (possibly hidden family) has property hidden, so cannot access to \"var1\" (a variable), it will be ignored when loading from Commandline"
|
||||
"family \"family\" (possibly hidden family) has property hidden, so cannot access to \"var1\" (a variable), it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,10 +2,10 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"family \"family\" has property disabled, so cannot access to \"var1\" (A description), it will be ignored when loading from Commandline"
|
||||
"family \"family\" has property disabled, so cannot access to \"var1\" (A description), it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"family \"family\" has property disabled, so cannot access to \"var2\" (A description), it will be ignored when loading from Commandline"
|
||||
"family \"family\" has property disabled, so cannot access to \"var2\" (A description), it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"family \"family\" has property disabled, so cannot access to \"var2\" (A description), it will be ignored when loading from Commandline"
|
||||
"family \"family\" has property disabled, so cannot access to \"var2\" (A description), it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"family \"leader\" (a leadership) has property hidden, so cannot access to \"leader\" (a leader), it will be ignored when loading from Commandline"
|
||||
"family \"leader\" (a leadership) has property hidden, so cannot access to \"leader\" (a leader), it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"family \"leader\" (a leadership) has property hidden, so cannot access to \"leader\" (a leader), it will be ignored when loading from Commandline"
|
||||
"family \"leader\" (a leadership) has property hidden, so cannot access to \"leader\" (a leader), it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"family \"leader\" (a leadership) has property hidden, so cannot access to \"leader\" (a leader), it will be ignored when loading from Commandline"
|
||||
"family \"leader\" (a leadership) has property hidden, so cannot access to \"leader\" (a leader), it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable \"follower\" (a follower) at index \"0\" is disabled, it will be ignored when loading from Commandline"
|
||||
"variable \"follower\" (a follower) at index \"0\" is disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,13 +2,13 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable \"follower\" (a follower) at index \"0\" is disabled, it will be ignored when loading from Commandline"
|
||||
"variable \"follower\" (a follower) at index \"0\" is disabled, it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"variable \"follower\" (a follower) at index \"1\" is disabled, it will be ignored when loading from Commandline"
|
||||
"variable \"follower\" (a follower) at index \"1\" is disabled, it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"variable \"follower\" (a follower) at index \"2\" is disabled, it will be ignored when loading from Commandline"
|
||||
"variable \"follower\" (a follower) at index \"2\" is disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"family \"family\" (a family) has property hidden, so cannot access to \"var\" (a variable), it will be ignored when loading from Commandline"
|
||||
"family \"family\" (a family) has property hidden, so cannot access to \"var\" (a variable), it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,10 +2,10 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,10 +2,10 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
"variable has property disabled, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,10 +2,10 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,10 +2,10 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,10 +2,10 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"variable has property hidden, it will be ignored when loading from Commandline"
|
||||
"variable has property hidden, it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -2,10 +2,10 @@
|
|||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"family \"dynval2\" (a dynamic family) has property hidden, so cannot access to \"var\" (a variable), it will be ignored when loading from Commandline"
|
||||
"family \"dynval2\" (a dynamic family) has property hidden, so cannot access to \"var\" (a variable), it will be ignored when loading from the command line"
|
||||
],
|
||||
[
|
||||
"family \"dynval2\" (a dynamic family) has property hidden, so cannot access to \"var\" (a new variable), it will be ignored when loading from Commandline"
|
||||
"family \"dynval2\" (a dynamic family) has property hidden, so cannot access to \"var\" (a new variable), it will be ignored when loading from the command line"
|
||||
]
|
||||
]
|
||||
}
|
||||
Loading…
Reference in a new issue