39 Commits

Author SHA1 Message Date
b9e2268f43 is to equal 2020-08-12 08:08:42 +02:00
dc3a3b00c6 new version (0.5) 2020-04-07 17:53:55 +02:00
b75e12c00c add float support 2020-03-20 22:18:49 +01:00
14bd5e8829 schema is not mandatory 2020-03-14 08:43:18 +01:00
f48878b324 do not check unactive option if remote 2019-08-23 13:59:22 +02:00
70389d70cd implement unrestraint for tiramisu-cmdline-parser 2019-08-23 10:54:50 +02:00
039e2e6b7b python 3.5 support 2019-08-22 15:51:30 +02:00
0dc298dedc better error messages if option doesn't exists 2019-08-03 21:27:36 +02:00
cfb4eb3b3c if old version of tiramisu do not load error from tiramisu 2019-08-02 18:22:35 +02:00
a7f470c837 0.2 2019-07-29 22:07:46 +02:00
76d63eb707 add description function 2019-07-29 22:06:04 +02:00
cecc3b4535 update setup.py 2019-07-29 08:10:53 +02:00
5722fbfaa8 tiramisu_json_api => tiramisu_api 2019-07-28 22:49:52 +02:00
f2d5ad4f30 tiramisu-json-api => tiramisu-api-python 2019-07-27 00:29:54 +02:00
60668fb2a9 update data for tests 2019-07-27 00:27:31 +02:00
51a58efc09 fullpath support in dict 2019-07-26 11:05:52 +02:00
61dbcea61d support of config.option(path).option(path) 2019-07-26 08:57:10 +02:00
4e797674ef Better leadership support 2019-07-26 08:56:43 +02:00
44e17aa4c6 index or null must be a string for json support 2019-07-09 08:13:50 +02:00
5f28acd59f many improvements 2019-07-06 15:01:13 +02:00
64fc2df3d2 better multi's mandatory support 2019-05-09 20:16:57 +02:00
4ec269f2b9 better leader/follower support 2019-05-08 20:15:46 +02:00
626184fee7 add tests 2019-04-17 19:16:05 +02:00
ceae0be2ce better symlink support and submulti 2019-04-17 19:15:30 +02:00
64699bfba1 list with optiondescription filter 2019-04-04 20:04:29 +02:00
34e7a86130 index is an str 2019-04-04 19:34:16 +02:00
dae6779e72 test tiramisu-json version 2019-04-03 19:48:45 +02:00
a0b08ea1c8 tiramisu-json format 1.0 2019-04-03 19:42:59 +02:00
9da87804c2 test_mod => test_mode2 2019-03-28 07:53:40 +01:00
f47cc02d3e Merge branch 'develop' into 'develop'
Adding setup.py for this project

See merge request tiramisu/tiramisu-json-api!1
2019-03-25 14:44:33 +01:00
df7fc3fc8f leadership support 2019-03-16 22:51:39 +01:00
9504936005 Adding setup.py for this project 2019-03-14 11:05:55 +01:00
aad8157b98 number=>integer 2019-03-11 15:59:29 +01:00
77d720cab4 add default to value 2019-03-11 15:57:32 +01:00
16f848886b change type name (for tiramisu 3.0rc3) 2019-03-06 21:04:08 +01:00
ba548c8c80 update to tiramisu-rc2 + leader/followers support 2019-03-05 08:26:58 +01:00
13dc94a687 update tests 2019-02-28 22:12:46 +01:00
f96a59680a more tests 2019-02-16 20:23:50 +01:00
1d677e47ef some improvemnt 2019-02-15 23:04:30 +01:00
918 changed files with 2667 additions and 4313 deletions

1
MANIFEST.in Normal file
View File

@ -0,0 +1 @@
inclue *.md

View File

@ -1,3 +1,4 @@
# tiramisu-json-api
# tiramisu-api-python
A subset of Tiramisu API that works remotly with tiramisu-json.
A subset of Tiramisu API that work with config.option.dict() structure.
It could be use remotly.

34
setup.py Normal file
View File

@ -0,0 +1,34 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
from tiramisu_api import __version__
PACKAGE_NAME = os.environ.get('PACKAGE_DST', 'tiramisu_api')
setup(
version=__version__,
author="Tiramisu's team",
author_email='gnunux@gnunux.info',
name=PACKAGE_NAME,
description="a subset of Tiramisu API",
url='https://framagit.org/tiramisu/tiramisu-api-python',
license='GNU Library or Lesser General Public License (LGPL)',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Natural Language :: English",
"Natural Language :: French",
],
long_description="""\
tiramisu-api-python
-------------------
A subset of Tiramisu API that work with config.option.dict() structure.
It could be use remotly.
""",
include_package_data=True,
packages=find_packages(include=['tiramisu_api'])
)

View File

View File

@ -1,23 +0,0 @@
{
"schema": {
"options": {
"name": "options",
"properties": {
"options.boolean": {
"name": "options.boolean",
"title": "Boolean 1",
"type": "boolean"
}
},
"type": "object",
"title": "Common configuration"
}
},
"model": [],
"form": [
{
"title": "Configurer",
"type": "submit"
}
]
}

View File

@ -1,28 +0,0 @@
{
"schema": {
"options": {
"name": "options",
"properties": {
"options.boolean": {
"name": "options.boolean",
"type": "boolean",
"title": "Boolean 1 frozen"
}
},
"type": "object",
"title": "Common configuration"
}
},
"model": [
{
"key": "options.boolean",
"readOnly": true
}
],
"form": [
{
"title": "Configurer",
"type": "submit"
}
]
}

View File

@ -1,32 +0,0 @@
{
"schema": {
"options": {
"name": "options",
"properties": {
"options.choice": {
"name": "options.choice",
"title": "Choice description",
"type": "choice",
"enum": [
"",
"choice 1",
"choice 2"
]
}
},
"type": "object",
"title": "Common configuration"
}
},
"model": [],
"form": [
{
"type": "choice",
"key": "options.choice"
},
{
"title": "Configurer",
"type": "submit"
}
]
}

View File

@ -1,37 +0,0 @@
{
"schema": {
"options": {
"name": "options",
"properties": {
"options.choice": {
"name": "options.choice",
"type": "choice",
"enum": [
"",
"choice 1",
"choice 2"
],
"title": "Choice description frozen"
}
},
"type": "object",
"title": "Common configuration"
}
},
"model": [
{
"key": "options.choice",
"readOnly": true
}
],
"form": [
{
"key": "options.choice",
"type": "choice"
},
{
"title": "Configurer",
"type": "submit"
}
]
}

View File

@ -1,89 +0,0 @@
{
"schema": {
"options": {
"name": "options",
"properties": {
"options.choice1": {
"name": "options.choice1",
"properties": {
"options.choice1.choice1": {
"name": "options.choice1.choice1",
"title": "Choice description master",
"type": "choice",
"isMulti": true,
"enum": [
"choice 1",
"choice 2"
]
},
"options.choice1.choice2": {
"name": "options.choice1.choice2",
"title": "Choice description slave 1",
"type": "choice",
"isMulti": true,
"enum": [
"",
"choice 3",
"choice 4"
]
},
"options.choice1.choice3": {
"name": "options.choice1.choice3",
"title": "Choice description slave 2",
"type": "choice",
"isMulti": true,
"enum": [
"",
"choice 5",
"choice 6"
]
},
"options.choice1.choice4": {
"name": "options.choice1.choice4",
"title": "Choice description slave 3",
"type": "choice",
"isMulti": true,
"enum": [
"",
"choice 7",
"choice 8"
]
}
},
"type": "array",
"title": "Common configuration 1"
}
},
"type": "object",
"title": "Common configuration 2"
}
},
"model": [
{
"key": "options.choice1.choice1",
"required": true
}
],
"form": [
{
"type": "choice",
"key": "options.choice1.choice1"
},
{
"type": "choice",
"key": "options.choice1.choice2"
},
{
"type": "choice",
"key": "options.choice1.choice3"
},
{
"type": "choice",
"key": "options.choice1.choice4"
},
{
"title": "Configurer",
"type": "submit"
}
]
}

View File

@ -1,94 +0,0 @@
{
"schema": {
"options": {
"name": "options",
"properties": {
"options.choice1": {
"name": "options.choice1",
"properties": {
"options.choice1.choice1": {
"name": "options.choice1.choice1",
"title": "Choice description master",
"type": "choice",
"isMulti": true,
"enum": [
"choice 1",
"choice 2"
]
},
"options.choice1.choice2": {
"name": "options.choice1.choice2",
"title": "Choice description slave 1",
"type": "choice",
"isMulti": true,
"enum": [
"",
"choice 3",
"choice 4"
]
},
"options.choice1.choice3": {
"name": "options.choice1.choice3",
"title": "Choice description slave 2 hidden",
"type": "choice",
"isMulti": true,
"enum": [
"",
"choice 5",
"choice 6"
]
},
"options.choice1.choice4": {
"name": "options.choice1.choice4",
"title": "Choice description slave 3",
"type": "choice",
"isMulti": true,
"enum": [
"",
"choice 7",
"choice 8"
]
}
},
"type": "array",
"title": "Slave 2 is hidden"
}
},
"type": "object",
"title": "Common configuration 2"
}
},
"model": [
{
"key": "options.choice1.choice1",
"required": true
},
{
"key": "options.choice1.choice3",
"hidden": true,
"display": false
}
],
"form": [
{
"type": "choice",
"key": "options.choice1.choice1"
},
{
"type": "choice",
"key": "options.choice1.choice2"
},
{
"type": "choice",
"key": "options.choice1.choice3"
},
{
"type": "choice",
"key": "options.choice1.choice4"
},
{
"title": "Configurer",
"type": "submit"
}
]
}

View File

@ -1,99 +0,0 @@
{
"schema": {
"options": {
"name": "options",
"properties": {
"options.choice1": {
"name": "options.choice1",
"properties": {
"options.choice1.choice1": {
"name": "options.choice1.choice1",
"title": "Choice master",
"type": "choice",
"isMulti": true,
"enum": [
"choice 1",
"choice 2"
]
},
"options.choice1.choice2": {
"name": "options.choice1.choice2",
"title": "Choice slave 1",
"type": "choice",
"isMulti": true,
"enum": [
"",
"choice 3",
"choice 4"
]
},
"options.choice1.choice3": {
"name": "options.choice1.choice3",
"title": "Choice slave 2",
"type": "choice",
"isMulti": true,
"enum": [
"",
"choice 5",
"choice 6"
]
},
"options.choice1.choice4": {
"name": "options.choice1.choice4",
"title": "Choice slave 3",
"type": "choice",
"isMulti": true,
"enum": [
"",
"choice 7",
"choice 8"
]
}
},
"type": "array",
"title": "Common configuration 1"
}
},
"type": "object",
"title": "Common configuration 2"
}
},
"model": [
{
"key": "options.choice1.choice1",
"required": true,
"value": [
"choice 2"
],
"owner": "user"
},
{
"key": "options.choice1.choice2",
"index": 0,
"value": "choice 4",
"owner": "user"
}
],
"form": [
{
"type": "choice",
"key": "options.choice1.choice1"
},
{
"type": "choice",
"key": "options.choice1.choice2"
},
{
"type": "choice",
"key": "options.choice1.choice3"
},
{
"type": "choice",
"key": "options.choice1.choice4"
},
{
"title": "Configurer",
"type": "submit"
}
]
}

View File

@ -1,37 +0,0 @@
{
"schema": {
"options": {
"name": "options",
"properties": {
"options.choice": {
"name": "options.choice",
"title": "Choice description",
"type": "choice",
"isMulti": true,
"enum": [
"choice 1",
"choice 2"
]
}
},
"type": "object",
"title": "Common configuration"
}
},
"model": [
{
"key": "options.choice",
"required": true
}
],
"form": [
{
"type": "choice",
"key": "options.choice"
},
{
"title": "Configurer",
"type": "submit"
}
]
}

View File

@ -1,36 +0,0 @@
{
"schema": {
"options": {
"name": "options",
"properties": {
"options.choice": {
"name": "options.choice",
"title": "Choice description",
"type": "choice",
"enum": [
"",
"choice 1",
"choice 2"
]
}
},
"type": "object",
"title": "Common configuration"
}
},
"model": [],
"form": [
{
"type": "choice",
"key": "options.choice",
"displayed": {
"choice 1": "renamed 1",
"choice 2": "renamed 2"
}
},
{
"title": "Configurer",
"type": "submit"
}
]
}

View File

@ -1,72 +0,0 @@
{
"schema": {
"options": {
"name": "options",
"properties": {
"options.choice": {
"name": "options.choice",
"type": "choice",
"value": "hide",
"enum": [
"hide",
"show"
],
"title": "Choice description"
},
"options.unicode2": {
"name": "options.unicode2",
"type": "string",
"title": "Unicode 2"
}
},
"type": "object",
"title": "Common configuration"
}
},
"model": [
{
"key": "options.choice",
"required": true,
"value": "hide",
"owner": "default"
},
{
"key": "options.unicode2",
"hidden": true
}
],
"form": [
{
"key": "options.choice",
"clearable": true,
"type": "choice",
"dependencies": {
"default": {
"show": [
"options.unicode2"
]
},
"expected": {
"hide": {
"hide": [
"options.unicode2"
]
},
"show": {
"show": [
"options.unicode2"
]
}
}
}
},
{
"key": "options.unicode2",
"type": "input"
},
{
"title": "Configurer",
"type": "submit"
}
]
}

View File

@ -1,23 +0,0 @@
{
"schema": {
"options": {
"name": "options",
"properties": {
"options.date": {
"name": "options.date",
"title": "Date description",
"type": "date"
}
},
"type": "object",
"title": "Common configuration"
}
},
"model": [],
"form": [
{
"title": "Configurer",
"type": "submit"
}
]
}

View File

@ -1,28 +0,0 @@
{
"schema": {
"options": {
"name": "options",
"properties": {
"options.date": {
"name": "options.date",
"type": "date",
"title": "Date description frozen"
}
},
"type": "object",
"title": "Common configuration"
}
},
"model": [
{
"key": "options.date",
"readOnly": true
}
],
"form": [
{
"title": "Configurer",
"type": "submit"
}
]
}

View File

@ -1,26 +0,0 @@
{
"schema": {
"usbpath": {
"name": "usbpath",
"title": "Chemin d'acc\u00e8s",
"type": "string"
}
},
"model": [
{
"key": "usbpath",
"required": true
}
],
"form": [
{
"type": "input",
"pattern": "^[a-zA-Z0-9\\-\\._~/+]+$",
"key": "usbpath"
},
{
"title": "Configurer",
"type": "submit"
}
]
}

View File

@ -1,58 +0,0 @@
{
"schema": {
"options": {
"name": "options",
"properties": {
"options.hostname1": {
"name": "options.hostname1",
"title": "Domainname Description",
"type": "domain"
},
"options.hostname2": {
"name": "options.hostname2",
"title": "Domainname without dot Description",
"type": "domain"
},
"options.hostname3": {
"name": "options.hostname3",
"title": "Hostname or IP Description",
"type": "domain"
},
"options.hostname4": {
"name": "options.hostname4",
"title": "Netbios Description",
"type": "domain"
}
},
"type": "object",
"title": "Common configuration"
}
},
"model": [],
"form": [
{
"type": "input",
"pattern": "^((?!-)[a-z0-9-]{1,63}\\.){1,}[a-z0-9-]{1,63}$",
"key": "options.hostname1"
},
{
"type": "input",
"pattern": "^((?!-)[a-z0-9-]{0,63}\\.){0,}[a-z0-9-]{1,63}$",
"key": "options.hostname2"
},
{
"type": "input",
"pattern": "^(?:((?!-)[a-z0-9-]{1,63})|(?:(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)))$",
"key": "options.hostname3"
},
{
"type": "input",
"pattern": "^((?!-)[a-z0-9-]{1,15})$",
"key": "options.hostname4"
},
{
"title": "Configurer",
"type": "submit"
}
]
}

View File

@ -1,28 +0,0 @@
{
"schema": {
"options": {
"name": "options",
"properties": {
"options.ip": {
"name": "options.ip",
"title": "IP Description",
"type": "string"
}
},
"type": "object",
"title": "Common configuration"
}
},
"model": [],
"form": [
{
"type": "input",
"pattern": "^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$",
"key": "options.ip"
},
{
"title": "Configurer",
"type": "submit"
}
]
}

View File

@ -1,33 +0,0 @@
{
"schema": {
"options": {
"name": "options",
"properties": {
"options.ip": {
"name": "options.ip",
"type": "string",
"title": "IP Description frozen"
}
},
"type": "object",
"title": "Common configuration"
}
},
"model": [
{
"key": "options.ip",
"readOnly": true
}
],
"form": [
{
"key": "options.ip",
"pattern": "^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$",
"type": "input"
},
{
"title": "Configurer",
"type": "submit"
}
]
}

View File

@ -1,28 +0,0 @@
{
"schema": {
"options": {
"name": "options",
"properties": {
"options.mail": {
"name": "options.mail",
"title": "Mail Description",
"type": "string"
}
},
"type": "object",
"title": "Common configuration"
}
},
"model": [],
"form": [
{
"type": "input",
"pattern": "^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*$",
"key": "options.mail"
},
{
"title": "Configurer",
"type": "submit"
}
]
}

View File

@ -1,28 +0,0 @@
{
"schema": {
"options": {
"name": "options",
"properties": {
"options.integer": {
"name": "options.integer",
"title": "integer 1",
"type": "number"
}
},
"type": "object",
"title": "Common configuration"
}
},
"model": [],
"form": [
{
"type": "input",
"allowedpattern": "[0-9]",
"key": "options.integer"
},
{
"title": "Configurer",
"type": "submit"
}
]
}

View File

@ -1,33 +0,0 @@
{
"schema": {
"options": {
"name": "options",
"properties": {
"options.integer": {
"name": "options.integer",
"type": "number",
"title": "integer 1 frozen"
}
},
"type": "object",
"title": "Common configuration"
}
},
"model": [
{
"key": "options.integer",
"readOnly": true
}
],
"form": [
{
"key": "options.integer",
"allowedpattern": "[0-9]",
"type": "input"
},
{
"title": "Configurer",
"type": "submit"
}
]
}

View File

@ -1,36 +0,0 @@
{
"schema": {
"options": {
"name": "options",
"properties": {
"options.integer": {
"name": "options.integer",
"title": "integer 1",
"type": "number",
"value": 0
}
},
"type": "object",
"title": "Common configuration"
}
},
"model": [
{
"key": "options.integer",
"value": 3,
"owner": "user"
}
],
"form": [
{
"clearable": true,
"type": "input",
"allowedpattern": "[0-9]",
"key": "options.integer"
},
{
"title": "Configurer",
"type": "submit"
}
]
}

View File

@ -1,36 +0,0 @@
{
"schema": {
"options": {
"name": "options",
"properties": {
"options.integer": {
"name": "options.integer",
"title": "integer 1",
"type": "number",
"value": 0
}
},
"type": "object",
"title": "Common configuration"
}
},
"model": [
{
"key": "options.integer",
"value": 0,
"owner": "default"
}
],
"form": [
{
"clearable": true,
"type": "input",
"allowedpattern": "[0-9]",
"key": "options.integer"
},
{
"title": "Configurer",
"type": "submit"
}
]
}

View File

@ -1 +0,0 @@
{"schema": {"boolean1.options": {"name": "boolean1.options", "properties": {"boolean1.options.boolean": {"name": "boolean1.options.boolean", "type": "boolean", "title": "Boolean 1"}}, "type": "object", "title": "Common configuration"}}, "model": [], "form": [{"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"boolean1_frozen.options": {"name": "boolean1_frozen.options", "properties": {"boolean1_frozen.options.boolean": {"name": "boolean1_frozen.options.boolean", "type": "boolean", "title": "Boolean 1 frozen"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "boolean1_frozen.options.boolean", "readOnly": true}], "form": [{"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"choice1.options": {"name": "choice1.options", "properties": {"choice1.options.choice": {"name": "choice1.options.choice", "type": "choice", "enum": ["", "choice 1", "choice 2"], "title": "Choice description"}}, "type": "object", "title": "Common configuration"}}, "model": [], "form": [{"key": "choice1.options.choice", "type": "choice"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"choice1_frozen.options": {"name": "choice1_frozen.options", "properties": {"choice1_frozen.options.choice": {"name": "choice1_frozen.options.choice", "type": "choice", "enum": ["", "choice 1", "choice 2"], "title": "Choice description frozen"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "choice1_frozen.options.choice", "readOnly": true}], "form": [{"key": "choice1_frozen.options.choice", "type": "choice"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"choice1_master_slaves.options.choice1.choice1": [], "choice1_master_slaves.options.choice1.choice2": [], "choice1_master_slaves.options.choice1.choice3": [], "choice1_master_slaves.options.choice1.choice4": []}

View File

@ -1 +0,0 @@
{"schema": {"choice1_master_slaves.options": {"name": "choice1_master_slaves.options", "properties": {"choice1_master_slaves.options.choice1": {"name": "choice1_master_slaves.options.choice1", "properties": {"choice1_master_slaves.options.choice1.choice1": {"name": "choice1_master_slaves.options.choice1.choice1", "type": "choice", "isMulti": true, "enum": ["choice 1", "choice 2"], "title": "Choice description master"}, "choice1_master_slaves.options.choice1.choice2": {"name": "choice1_master_slaves.options.choice1.choice2", "type": "choice", "isMulti": true, "enum": ["", "choice 3", "choice 4"], "title": "Choice description slave 1"}, "choice1_master_slaves.options.choice1.choice3": {"name": "choice1_master_slaves.options.choice1.choice3", "type": "choice", "isMulti": true, "enum": ["", "choice 5", "choice 6"], "title": "Choice description slave 2"}, "choice1_master_slaves.options.choice1.choice4": {"name": "choice1_master_slaves.options.choice1.choice4", "type": "choice", "isMulti": true, "enum": ["", "choice 7", "choice 8"], "title": "Choice description slave 3"}}, "type": "array", "title": "Common configuration 1"}}, "type": "object", "title": "Common configuration 2"}}, "model": [{"key": "choice1_master_slaves.options.choice1.choice1", "required": true}], "form": [{"key": "choice1_master_slaves.options.choice1.choice1", "type": "choice"}, {"key": "choice1_master_slaves.options.choice1.choice2", "type": "choice"}, {"key": "choice1_master_slaves.options.choice1.choice3", "type": "choice"}, {"key": "choice1_master_slaves.options.choice1.choice4", "type": "choice"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"choice1_master_slaves_hidden.options.choice1.choice1": [], "choice1_master_slaves_hidden.options.choice1.choice2": [], "choice1_master_slaves_hidden.options.choice1.choice4": []}

View File

@ -1 +0,0 @@
{"schema": {"choice1_master_slaves_hidden.options": {"name": "choice1_master_slaves_hidden.options", "properties": {"choice1_master_slaves_hidden.options.choice1": {"name": "choice1_master_slaves_hidden.options.choice1", "properties": {"choice1_master_slaves_hidden.options.choice1.choice1": {"name": "choice1_master_slaves_hidden.options.choice1.choice1", "type": "choice", "isMulti": true, "enum": ["choice 1", "choice 2"], "title": "Choice description master"}, "choice1_master_slaves_hidden.options.choice1.choice2": {"name": "choice1_master_slaves_hidden.options.choice1.choice2", "type": "choice", "isMulti": true, "enum": ["", "choice 3", "choice 4"], "title": "Choice description slave 1"}, "choice1_master_slaves_hidden.options.choice1.choice3": {"name": "choice1_master_slaves_hidden.options.choice1.choice3", "type": "choice", "isMulti": true, "enum": ["", "choice 5", "choice 6"], "title": "Choice description slave 2 hidden"}, "choice1_master_slaves_hidden.options.choice1.choice4": {"name": "choice1_master_slaves_hidden.options.choice1.choice4", "type": "choice", "isMulti": true, "enum": ["", "choice 7", "choice 8"], "title": "Choice description slave 3"}}, "type": "array", "title": "Slave 2 is hidden"}}, "type": "object", "title": "Common configuration 2"}}, "model": [{"key": "choice1_master_slaves_hidden.options.choice1.choice1", "required": true}, {"key": "choice1_master_slaves_hidden.options.choice1.choice3", "display": false, "hidden": true}], "form": [{"key": "choice1_master_slaves_hidden.options.choice1.choice1", "type": "choice"}, {"key": "choice1_master_slaves_hidden.options.choice1.choice2", "type": "choice"}, {"key": "choice1_master_slaves_hidden.options.choice1.choice3", "type": "choice"}, {"key": "choice1_master_slaves_hidden.options.choice1.choice4", "type": "choice"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"choice1_master_slaves_value.options.choice1.choice1": ["choice 2"], "choice1_master_slaves_value.options.choice1.choice2": ["choice 4"], "choice1_master_slaves_value.options.choice1.choice3": [null], "choice1_master_slaves_value.options.choice1.choice4": [null]}

View File

@ -1 +0,0 @@
{"schema": {"choice1_master_slaves_value.options": {"name": "choice1_master_slaves_value.options", "properties": {"choice1_master_slaves_value.options.choice1": {"name": "choice1_master_slaves_value.options.choice1", "properties": {"choice1_master_slaves_value.options.choice1.choice1": {"name": "choice1_master_slaves_value.options.choice1.choice1", "type": "choice", "isMulti": true, "enum": ["choice 1", "choice 2"], "title": "Choice master"}, "choice1_master_slaves_value.options.choice1.choice2": {"name": "choice1_master_slaves_value.options.choice1.choice2", "type": "choice", "isMulti": true, "enum": ["", "choice 3", "choice 4"], "title": "Choice slave 1"}, "choice1_master_slaves_value.options.choice1.choice3": {"name": "choice1_master_slaves_value.options.choice1.choice3", "type": "choice", "isMulti": true, "enum": ["", "choice 5", "choice 6"], "title": "Choice slave 2"}, "choice1_master_slaves_value.options.choice1.choice4": {"name": "choice1_master_slaves_value.options.choice1.choice4", "type": "choice", "isMulti": true, "enum": ["", "choice 7", "choice 8"], "title": "Choice slave 3"}}, "type": "array", "title": "Common configuration 1"}}, "type": "object", "title": "Common configuration 2"}}, "model": [{"key": "choice1_master_slaves_value.options.choice1.choice1", "required": true, "value": ["choice 2"], "owner": "user"}, {"key": "choice1_master_slaves_value.options.choice1.choice2", "index": 0, "value": "choice 4", "owner": "user"}], "form": [{"key": "choice1_master_slaves_value.options.choice1.choice1", "type": "choice"}, {"key": "choice1_master_slaves_value.options.choice1.choice2", "type": "choice"}, {"key": "choice1_master_slaves_value.options.choice1.choice3", "type": "choice"}, {"key": "choice1_master_slaves_value.options.choice1.choice4", "type": "choice"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"choice1_multi.options": {"name": "choice1_multi.options", "properties": {"choice1_multi.options.choice": {"name": "choice1_multi.options.choice", "type": "choice", "isMulti": true, "enum": ["choice 1", "choice 2"], "title": "Choice description"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "choice1_multi.options.choice", "required": true}], "form": [{"key": "choice1_multi.options.choice", "type": "choice"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"choice1_rename.options": {"name": "choice1_rename.options", "properties": {"choice1_rename.options.choice": {"name": "choice1_rename.options.choice", "type": "choice", "enum": ["", "choice 1", "choice 2"], "title": "Choice description"}}, "type": "object", "title": "Common configuration"}}, "model": [], "form": [{"key": "choice1_rename.options.choice", "type": "choice"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"choice1_requires.options": {"name": "choice1_requires.options", "properties": {"choice1_requires.options.choice": {"name": "choice1_requires.options.choice", "type": "choice", "value": "hide", "enum": ["hide", "show"], "title": "Choice description"}, "choice1_requires.options.unicode2": {"name": "choice1_requires.options.unicode2", "type": "string", "title": "Unicode 2"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "choice1_requires.options.choice", "required": true, "value": "hide", "owner": "default"}, {"key": "choice1_requires.options.unicode2", "hidden": true}], "form": [{"key": "choice1_requires.options.choice", "clearable": true, "type": "choice", "dependencies": {"default": {"show": ["choice1_requires.options.unicode2"]}, "expected": {"hide": {"hide": ["choice1_requires.options.unicode2"]}, "show": {"show": ["choice1_requires.options.unicode2"]}}}}, {"key": "choice1_requires.options.unicode2", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"date1.options": {"name": "date1.options", "properties": {"date1.options.date": {"name": "date1.options.date", "type": "date", "title": "Date description"}}, "type": "object", "title": "Common configuration"}}, "model": [], "form": [{"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"date1_frozen.options": {"name": "date1_frozen.options", "properties": {"date1_frozen.options.date": {"name": "date1_frozen.options.date", "type": "date", "title": "Date description frozen"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "date1_frozen.options.date", "readOnly": true}], "form": [{"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"filename1.usbpath": {"name": "filename1.usbpath", "type": "string", "title": "Chemin d'acc\u00e8s"}}, "model": [{"key": "filename1.usbpath", "required": true}], "form": [{"key": "filename1.usbpath", "pattern": "^[a-zA-Z0-9\\-\\._~/+]+$", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"hostname1.options": {"name": "hostname1.options", "properties": {"hostname1.options.hostname1": {"name": "hostname1.options.hostname1", "type": "domain", "title": "Domainname Description"}, "hostname1.options.hostname2": {"name": "hostname1.options.hostname2", "type": "domain", "title": "Domainname without dot Description"}, "hostname1.options.hostname3": {"name": "hostname1.options.hostname3", "type": "domain", "title": "Hostname or IP Description"}, "hostname1.options.hostname4": {"name": "hostname1.options.hostname4", "type": "domain", "title": "Netbios Description"}}, "type": "object", "title": "Common configuration"}}, "model": [], "form": [{"key": "hostname1.options.hostname1", "pattern": "^((?!-)[a-z0-9-]{1,63}\\.){1,}[a-z0-9-]{1,63}$", "type": "input"}, {"key": "hostname1.options.hostname2", "pattern": "^((?!-)[a-z0-9-]{0,63}\\.){0,}[a-z0-9-]{1,63}$", "type": "input"}, {"key": "hostname1.options.hostname3", "pattern": "^(?:((?!-)[a-z0-9-]{1,63})|(?:(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)))$", "type": "input"}, {"key": "hostname1.options.hostname4", "pattern": "^((?!-)[a-z0-9-]{1,15})$", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"ip1.options": {"name": "ip1.options", "properties": {"ip1.options.ip": {"name": "ip1.options.ip", "type": "string", "title": "IP Description"}}, "type": "object", "title": "Common configuration"}}, "model": [], "form": [{"key": "ip1.options.ip", "pattern": "^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"ip1_frozen.options": {"name": "ip1_frozen.options", "properties": {"ip1_frozen.options.ip": {"name": "ip1_frozen.options.ip", "type": "string", "title": "IP Description frozen"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "ip1_frozen.options.ip", "readOnly": true}], "form": [{"key": "ip1_frozen.options.ip", "pattern": "^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"mail1.options": {"name": "mail1.options", "properties": {"mail1.options.mail": {"name": "mail1.options.mail", "type": "string", "title": "Mail Description"}}, "type": "object", "title": "Common configuration"}}, "model": [], "form": [{"key": "mail1.options.mail", "pattern": "^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*$", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"number1.options": {"name": "number1.options", "properties": {"number1.options.integer": {"name": "number1.options.integer", "type": "number", "title": "integer 1"}}, "type": "object", "title": "Common configuration"}}, "model": [], "form": [{"key": "number1.options.integer", "allowedpattern": "[0-9]", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"number1_frozen.options": {"name": "number1_frozen.options", "properties": {"number1_frozen.options.integer": {"name": "number1_frozen.options.integer", "type": "number", "title": "integer 1 frozen"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "number1_frozen.options.integer", "readOnly": true}], "form": [{"key": "number1_frozen.options.integer", "allowedpattern": "[0-9]", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"number1_mod_value.options": {"name": "number1_mod_value.options", "properties": {"number1_mod_value.options.integer": {"name": "number1_mod_value.options.integer", "type": "number", "value": 0, "title": "integer 1"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "number1_mod_value.options.integer", "value": 3, "owner": "user"}], "form": [{"key": "number1_mod_value.options.integer", "clearable": true, "allowedpattern": "[0-9]", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"number1_value.options": {"name": "number1_value.options", "properties": {"number1_value.options.integer": {"name": "number1_value.options.integer", "type": "number", "value": 0, "title": "integer 1"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "number1_value.options.integer", "value": 0, "owner": "default"}], "form": [{"key": "number1_value.options.integer", "clearable": true, "allowedpattern": "[0-9]", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode1.options": {"name": "unicode1.options", "properties": {"unicode1.options.unicode": {"name": "unicode1.options.unicode", "type": "string", "title": "Unicode 1"}}, "type": "object", "title": "Common configuration"}}, "model": [], "form": [{"key": "unicode1.options.unicode", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_frozen.options": {"name": "unicode1_frozen.options", "properties": {"unicode1_frozen.options.unicode": {"name": "unicode1_frozen.options.unicode", "type": "string", "title": "Unicode 1 frozen"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode1_frozen.options.unicode", "readOnly": true}], "form": [{"key": "unicode1_frozen.options.unicode", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_mandatory.options": {"name": "unicode1_mandatory.options", "properties": {"unicode1_mandatory.options.unicode": {"name": "unicode1_mandatory.options.unicode", "type": "string", "title": "Unicode 1"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode1_mandatory.options.unicode", "required": true}], "form": [{"key": "unicode1_mandatory.options.unicode", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_master_hidden_slaves.options": {"name": "unicode1_master_hidden_slaves.options", "properties": {"unicode1_master_hidden_slaves.options.unicode": {"name": "unicode1_master_hidden_slaves.options.unicode", "properties": {"unicode1_master_hidden_slaves.options.unicode.unicode": {"name": "unicode1_master_hidden_slaves.options.unicode.unicode", "type": "string", "isMulti": true, "title": "Unicode master"}, "unicode1_master_hidden_slaves.options.unicode.unicode1": {"name": "unicode1_master_hidden_slaves.options.unicode.unicode1", "type": "string", "isMulti": true, "title": "Unicode slave 1"}, "unicode1_master_hidden_slaves.options.unicode.unicode2": {"name": "unicode1_master_hidden_slaves.options.unicode.unicode2", "type": "string", "isMulti": true, "title": "Unicode slave 2"}, "unicode1_master_hidden_slaves.options.unicode.unicode3": {"name": "unicode1_master_hidden_slaves.options.unicode.unicode3", "type": "string", "isMulti": true, "title": "Unicode slave 3"}}, "type": "array", "title": "Common configuration"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode1_master_hidden_slaves.options.unicode.unicode", "display": false, "required": true, "hidden": true}], "form": [{"key": "unicode1_master_hidden_slaves.options.unicode.unicode", "type": "input"}, {"key": "unicode1_master_hidden_slaves.options.unicode.unicode1", "type": "input"}, {"key": "unicode1_master_hidden_slaves.options.unicode.unicode2", "type": "input"}, {"key": "unicode1_master_hidden_slaves.options.unicode.unicode3", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"unicode1_master_slaves.options.unicode.unicode": [], "unicode1_master_slaves.options.unicode.unicode1": [], "unicode1_master_slaves.options.unicode.unicode2": [], "unicode1_master_slaves.options.unicode.unicode3": []}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_master_slaves.options": {"name": "unicode1_master_slaves.options", "properties": {"unicode1_master_slaves.options.unicode": {"name": "unicode1_master_slaves.options.unicode", "properties": {"unicode1_master_slaves.options.unicode.unicode": {"name": "unicode1_master_slaves.options.unicode.unicode", "type": "string", "isMulti": true, "title": "Unicode master"}, "unicode1_master_slaves.options.unicode.unicode1": {"name": "unicode1_master_slaves.options.unicode.unicode1", "type": "string", "isMulti": true, "title": "Unicode slave 1"}, "unicode1_master_slaves.options.unicode.unicode2": {"name": "unicode1_master_slaves.options.unicode.unicode2", "type": "string", "isMulti": true, "title": "Unicode slave 2"}, "unicode1_master_slaves.options.unicode.unicode3": {"name": "unicode1_master_slaves.options.unicode.unicode3", "type": "string", "isMulti": true, "title": "Unicode slave 3"}}, "type": "array", "title": "Common configuration 1"}}, "type": "object", "title": "Common configuration 2"}}, "model": [{"key": "unicode1_master_slaves.options.unicode.unicode", "required": true}], "form": [{"key": "unicode1_master_slaves.options.unicode.unicode", "type": "input"}, {"key": "unicode1_master_slaves.options.unicode.unicode1", "type": "input"}, {"key": "unicode1_master_slaves.options.unicode.unicode2", "type": "input"}, {"key": "unicode1_master_slaves.options.unicode.unicode3", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"unicode1_master_slaves_default_value.options.unicode.unicode": ["val1", "val2"], "unicode1_master_slaves_default_value.options.unicode.unicode1": [null, null], "unicode1_master_slaves_default_value.options.unicode.unicode2": ["slave2", "slave2"], "unicode1_master_slaves_default_value.options.unicode.unicode3": [null, null]}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_master_slaves_default_value.options": {"name": "unicode1_master_slaves_default_value.options", "properties": {"unicode1_master_slaves_default_value.options.unicode": {"name": "unicode1_master_slaves_default_value.options.unicode", "properties": {"unicode1_master_slaves_default_value.options.unicode.unicode": {"name": "unicode1_master_slaves_default_value.options.unicode.unicode", "type": "string", "value": ["val1", "val2"], "isMulti": true, "title": "Unicode master"}, "unicode1_master_slaves_default_value.options.unicode.unicode1": {"name": "unicode1_master_slaves_default_value.options.unicode.unicode1", "type": "string", "isMulti": true, "title": "Unicode slave 1"}, "unicode1_master_slaves_default_value.options.unicode.unicode2": {"name": "unicode1_master_slaves_default_value.options.unicode.unicode2", "type": "string", "default": "slave2", "isMulti": true, "title": "Unicode slave 2 with default multi"}, "unicode1_master_slaves_default_value.options.unicode.unicode3": {"name": "unicode1_master_slaves_default_value.options.unicode.unicode3", "type": "string", "isMulti": true, "title": "Unicode slave 3"}}, "type": "array", "title": "Common configuration 1"}}, "type": "object", "title": "Common configuration 2"}}, "model": [{"key": "unicode1_master_slaves_default_value.options.unicode.unicode", "required": true, "value": ["val1", "val2"], "owner": "default"}, {"key": "unicode1_master_slaves_default_value.options.unicode.unicode2", "index": 0, "value": "slave2", "owner": "default"}, {"key": "unicode1_master_slaves_default_value.options.unicode.unicode2", "index": 1, "value": "slave2", "owner": "default"}], "form": [{"key": "unicode1_master_slaves_default_value.options.unicode.unicode", "clearable": true, "type": "input"}, {"key": "unicode1_master_slaves_default_value.options.unicode.unicode1", "type": "input"}, {"key": "unicode1_master_slaves_default_value.options.unicode.unicode2", "clearable": true, "type": "input"}, {"key": "unicode1_master_slaves_default_value.options.unicode.unicode3", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"unicode1_master_slaves_hidden.options.unicode.unicode": ["val1", "val2"], "unicode1_master_slaves_hidden.options.unicode.unicode1": [null, null], "unicode1_master_slaves_hidden.options.unicode.unicode3": [null, null]}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_master_slaves_hidden.options": {"name": "unicode1_master_slaves_hidden.options", "properties": {"unicode1_master_slaves_hidden.options.unicode": {"name": "unicode1_master_slaves_hidden.options.unicode", "properties": {"unicode1_master_slaves_hidden.options.unicode.unicode": {"name": "unicode1_master_slaves_hidden.options.unicode.unicode", "type": "string", "isMulti": true, "title": "Unicode master"}, "unicode1_master_slaves_hidden.options.unicode.unicode1": {"name": "unicode1_master_slaves_hidden.options.unicode.unicode1", "type": "string", "isMulti": true, "title": "Unicode slave 1"}, "unicode1_master_slaves_hidden.options.unicode.unicode2": {"name": "unicode1_master_slaves_hidden.options.unicode.unicode2", "type": "string", "isMulti": true, "title": "Unicode slave 2 hidden"}, "unicode1_master_slaves_hidden.options.unicode.unicode3": {"name": "unicode1_master_slaves_hidden.options.unicode.unicode3", "type": "string", "isMulti": true, "title": "Unicode slave 3"}}, "type": "array", "title": "Common configuration"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode1_master_slaves_hidden.options.unicode.unicode", "required": true, "value": ["val1", "val2"], "owner": "user"}, {"key": "unicode1_master_slaves_hidden.options.unicode.unicode2", "display": false, "hidden": true, "index": 0, "value": "super", "owner": "user"}, {"key": "unicode1_master_slaves_hidden.options.unicode.unicode2", "display": false, "hidden": true, "index": 1}, {"key": "unicode1_master_slaves_hidden.options.unicode.unicode2", "display": false, "hidden": true}], "form": [{"key": "unicode1_master_slaves_hidden.options.unicode.unicode", "type": "input"}, {"key": "unicode1_master_slaves_hidden.options.unicode.unicode1", "type": "input"}, {"key": "unicode1_master_slaves_hidden.options.unicode.unicode2", "type": "input"}, {"key": "unicode1_master_slaves_hidden.options.unicode.unicode3", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"unicode1_master_slaves_hidden_all_default.options.unicode": null, "unicode1_master_slaves_hidden_all_default.options.unicode1.unicode1": [], "unicode1_master_slaves_hidden_all_default.options.unicode1.unicode2": [], "unicode1_master_slaves_hidden_all_default.options.unicode1.unicode3": []}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_master_slaves_hidden_all_default.options": {"name": "unicode1_master_slaves_hidden_all_default.options", "properties": {"unicode1_master_slaves_hidden_all_default.options.unicode": {"name": "unicode1_master_slaves_hidden_all_default.options.unicode", "type": "string", "title": "Unicode master"}, "unicode1_master_slaves_hidden_all_default.options.unicode1": {"name": "unicode1_master_slaves_hidden_all_default.options.unicode1", "properties": {"unicode1_master_slaves_hidden_all_default.options.unicode1.unicode1": {"name": "unicode1_master_slaves_hidden_all_default.options.unicode1.unicode1", "type": "string", "isMulti": true, "title": "Unicode slave 1"}, "unicode1_master_slaves_hidden_all_default.options.unicode1.unicode2": {"name": "unicode1_master_slaves_hidden_all_default.options.unicode1.unicode2", "type": "string", "isMulti": true, "title": "Unicode slave 2"}, "unicode1_master_slaves_hidden_all_default.options.unicode1.unicode3": {"name": "unicode1_master_slaves_hidden_all_default.options.unicode1.unicode3", "type": "string", "isMulti": true, "title": "Unicode slave 3"}}, "type": "array", "title": "Common configuration"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode1_master_slaves_hidden_all_default.options.unicode1.unicode1", "required": true}], "form": [{"key": "unicode1_master_slaves_hidden_all_default.options.unicode", "type": "input"}, {"key": "unicode1_master_slaves_hidden_all_default.options.unicode1.unicode1", "type": "input"}, {"key": "unicode1_master_slaves_hidden_all_default.options.unicode1.unicode2", "type": "input"}, {"key": "unicode1_master_slaves_hidden_all_default.options.unicode1.unicode3", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"unicode1_master_slaves_not_equal.options.unicode.unicode": [], "unicode1_master_slaves_not_equal.options.unicode.unicode1": [], "unicode1_master_slaves_not_equal.options.unicode.unicode2": [], "unicode1_master_slaves_not_equal.options.unicode.unicode3": []}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_master_slaves_not_equal.options": {"name": "unicode1_master_slaves_not_equal.options", "properties": {"unicode1_master_slaves_not_equal.options.unicode": {"name": "unicode1_master_slaves_not_equal.options.unicode", "properties": {"unicode1_master_slaves_not_equal.options.unicode.unicode": {"name": "unicode1_master_slaves_not_equal.options.unicode.unicode", "type": "string", "isMulti": true, "title": "Unicode master"}, "unicode1_master_slaves_not_equal.options.unicode.unicode1": {"name": "unicode1_master_slaves_not_equal.options.unicode.unicode1", "type": "string", "isMulti": true, "title": "Unicode slave 1"}, "unicode1_master_slaves_not_equal.options.unicode.unicode2": {"name": "unicode1_master_slaves_not_equal.options.unicode.unicode2", "type": "string", "isMulti": true, "title": "Unicode slave 2 not equal"}, "unicode1_master_slaves_not_equal.options.unicode.unicode3": {"name": "unicode1_master_slaves_not_equal.options.unicode.unicode3", "type": "string", "isMulti": true, "title": "Unicode slave 3 not equal"}}, "type": "array", "title": "Common configuration 1"}}, "type": "object", "title": "Common configuration 2"}}, "model": [{"key": "unicode1_master_slaves_not_equal.options.unicode.unicode", "required": true}], "form": [{"key": "unicode1_master_slaves_not_equal.options.unicode.unicode", "type": "input"}, {"key": "unicode1_master_slaves_not_equal.options.unicode.unicode1", "type": "input"}, {"key": "unicode1_master_slaves_not_equal.options.unicode.unicode2", "type": "input", "not_equal": {"options": ["unicode1_master_slaves_not_equal.options.unicode.unicode3"]}}, {"key": "unicode1_master_slaves_not_equal.options.unicode.unicode3", "type": "input", "not_equal": {"options": ["unicode1_master_slaves_not_equal.options.unicode.unicode2"]}}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"unicode1_master_slaves_requires.options.unicode.unicode": [], "unicode1_master_slaves_requires.options.unicode.unicode1": [], "unicode1_master_slaves_requires.options.unicode.unicode2": []}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_master_slaves_requires.options": {"name": "unicode1_master_slaves_requires.options", "properties": {"unicode1_master_slaves_requires.options.unicode": {"name": "unicode1_master_slaves_requires.options.unicode", "properties": {"unicode1_master_slaves_requires.options.unicode.unicode": {"name": "unicode1_master_slaves_requires.options.unicode.unicode", "type": "string", "isMulti": true, "title": "Unicode master"}, "unicode1_master_slaves_requires.options.unicode.unicode1": {"name": "unicode1_master_slaves_requires.options.unicode.unicode1", "type": "string", "isMulti": true, "title": "Unicode slave 1"}, "unicode1_master_slaves_requires.options.unicode.unicode2": {"name": "unicode1_master_slaves_requires.options.unicode.unicode2", "type": "string", "isMulti": true, "title": "Values 'test' must show 'Unicode slave 3'"}, "unicode1_master_slaves_requires.options.unicode.unicode3": {"name": "unicode1_master_slaves_requires.options.unicode.unicode3", "type": "string", "isMulti": true, "title": "Unicode slave 3"}}, "type": "array", "title": "Common configuration 1"}}, "type": "object", "title": "Common configuration 2"}}, "model": [{"key": "unicode1_master_slaves_requires.options.unicode.unicode", "required": true}], "form": [{"key": "unicode1_master_slaves_requires.options.unicode.unicode", "type": "input"}, {"key": "unicode1_master_slaves_requires.options.unicode.unicode1", "type": "input"}, {"key": "unicode1_master_slaves_requires.options.unicode.unicode2", "type": "input", "dependencies": {"default": {"hide": ["unicode1_master_slaves_requires.options.unicode.unicode3"]}, "expected": {"test": {"show": ["unicode1_master_slaves_requires.options.unicode.unicode3"]}}}}, {"key": "unicode1_master_slaves_requires.options.unicode.unicode3", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"unicode1_master_slaves_requires_all.options.unicode": null}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_master_slaves_requires_all.options": {"name": "unicode1_master_slaves_requires_all.options", "properties": {"unicode1_master_slaves_requires_all.options.unicode": {"name": "unicode1_master_slaves_requires_all.options.unicode", "type": "string", "title": "Value 'test' must show MasterSlaves"}, "unicode1_master_slaves_requires_all.options.unicode1": {"name": "unicode1_master_slaves_requires_all.options.unicode1", "properties": {"unicode1_master_slaves_requires_all.options.unicode1.unicode1": {"name": "unicode1_master_slaves_requires_all.options.unicode1.unicode1", "type": "string", "isMulti": true, "title": "Unicode master"}, "unicode1_master_slaves_requires_all.options.unicode1.unicode2": {"name": "unicode1_master_slaves_requires_all.options.unicode1.unicode2", "type": "string", "isMulti": true, "title": "Unicode slave 1"}, "unicode1_master_slaves_requires_all.options.unicode1.unicode3": {"name": "unicode1_master_slaves_requires_all.options.unicode1.unicode3", "type": "string", "isMulti": true, "title": "Unicode slave 2"}}, "type": "array", "title": "Common configuration"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode1_master_slaves_requires_all.options.unicode1", "properties": ["hidden"], "hidden": true}, {"key": "unicode1_master_slaves_requires_all.options.unicode1.unicode1", "required": true}], "form": [{"key": "unicode1_master_slaves_requires_all.options.unicode", "type": "input", "dependencies": {"default": {"hide": ["unicode1_master_slaves_requires_all.options.unicode1"]}, "expected": {"test": {"show": ["unicode1_master_slaves_requires_all.options.unicode1"]}}}}, {"key": "unicode1_master_slaves_requires_all.options.unicode1.unicode1", "type": "input"}, {"key": "unicode1_master_slaves_requires_all.options.unicode1.unicode2", "type": "input"}, {"key": "unicode1_master_slaves_requires_all.options.unicode1.unicode3", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"unicode1_master_slaves_requires_master.options.unicode": null}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_master_slaves_requires_master.options": {"name": "unicode1_master_slaves_requires_master.options", "properties": {"unicode1_master_slaves_requires_master.options.unicode": {"name": "unicode1_master_slaves_requires_master.options.unicode", "type": "string", "title": "Value 'test' must show master"}, "unicode1_master_slaves_requires_master.options.unicode1": {"name": "unicode1_master_slaves_requires_master.options.unicode1", "properties": {"unicode1_master_slaves_requires_master.options.unicode1.unicode1": {"name": "unicode1_master_slaves_requires_master.options.unicode1.unicode1", "type": "string", "isMulti": true, "title": "Unicode master"}, "unicode1_master_slaves_requires_master.options.unicode1.unicode2": {"name": "unicode1_master_slaves_requires_master.options.unicode1.unicode2", "type": "string", "isMulti": true, "title": "Unicode slave 1"}, "unicode1_master_slaves_requires_master.options.unicode1.unicode3": {"name": "unicode1_master_slaves_requires_master.options.unicode1.unicode3", "type": "string", "isMulti": true, "title": "Unicode slave 2"}}, "type": "array", "title": "Common configuration"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode1_master_slaves_requires_master.options.unicode1", "properties": ["hidden"], "hidden": true}, {"key": "unicode1_master_slaves_requires_master.options.unicode1.unicode1", "required": true}], "form": [{"key": "unicode1_master_slaves_requires_master.options.unicode", "type": "input", "dependencies": {"default": {"hide": ["unicode1_master_slaves_requires_master.options.unicode1"]}, "expected": {"test": {"show": ["unicode1_master_slaves_requires_master.options.unicode1"]}}}}, {"key": "unicode1_master_slaves_requires_master.options.unicode1.unicode1", "type": "input"}, {"key": "unicode1_master_slaves_requires_master.options.unicode1.unicode2", "type": "input"}, {"key": "unicode1_master_slaves_requires_master.options.unicode1.unicode3", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"unicode1_master_slaves_requires_slave.options.unicode1.unicode1": [], "unicode1_master_slaves_requires_slave.options.unicode1.unicode2": []}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_master_slaves_requires_slave.options": {"name": "unicode1_master_slaves_requires_slave.options", "properties": {"unicode1_master_slaves_requires_slave.options.unicode1": {"name": "unicode1_master_slaves_requires_slave.options.unicode1", "properties": {"unicode1_master_slaves_requires_slave.options.unicode1.unicode1": {"name": "unicode1_master_slaves_requires_slave.options.unicode1.unicode1", "type": "string", "isMulti": true, "title": "Values 'test' must show 'Unicode slave 2'"}, "unicode1_master_slaves_requires_slave.options.unicode1.unicode2": {"name": "unicode1_master_slaves_requires_slave.options.unicode1.unicode2", "type": "string", "isMulti": true, "title": "Unicode slave 1"}, "unicode1_master_slaves_requires_slave.options.unicode1.unicode3": {"name": "unicode1_master_slaves_requires_slave.options.unicode1.unicode3", "type": "string", "isMulti": true, "title": "Unicode slave 2"}}, "type": "array", "title": "Common configuration"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode1_master_slaves_requires_slave.options.unicode1.unicode1", "required": true}], "form": [{"key": "unicode1_master_slaves_requires_slave.options.unicode1.unicode1", "type": "input", "dependencies": {"default": {"hide": ["unicode1_master_slaves_requires_slave.options.unicode1.unicode3"]}, "expected": {"test": {"show": ["unicode1_master_slaves_requires_slave.options.unicode1.unicode3"]}}}}, {"key": "unicode1_master_slaves_requires_slave.options.unicode1.unicode2", "type": "input"}, {"key": "unicode1_master_slaves_requires_slave.options.unicode1.unicode3", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"unicode1_master_slaves_requires_slave_value.options.unicode1.unicode1": ["test", "pas test"], "unicode1_master_slaves_requires_slave_value.options.unicode1.unicode2": ["super1", null]}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_master_slaves_requires_slave_value.options": {"name": "unicode1_master_slaves_requires_slave_value.options", "properties": {"unicode1_master_slaves_requires_slave_value.options.unicode1": {"name": "unicode1_master_slaves_requires_slave_value.options.unicode1", "properties": {"unicode1_master_slaves_requires_slave_value.options.unicode1.unicode1": {"name": "unicode1_master_slaves_requires_slave_value.options.unicode1.unicode1", "type": "string", "isMulti": true, "title": "Values 'test' must show 'Unicode slave 2'"}, "unicode1_master_slaves_requires_slave_value.options.unicode1.unicode2": {"name": "unicode1_master_slaves_requires_slave_value.options.unicode1.unicode2", "type": "string", "isMulti": true, "title": "Unicode slave 1"}, "unicode1_master_slaves_requires_slave_value.options.unicode1.unicode3": {"name": "unicode1_master_slaves_requires_slave_value.options.unicode1.unicode3", "type": "string", "isMulti": true, "title": "Unicode slave 2"}}, "type": "array", "title": "Common configuration"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode1_master_slaves_requires_slave_value.options.unicode1.unicode1", "required": true, "value": ["test", "pas test"], "owner": "user"}, {"key": "unicode1_master_slaves_requires_slave_value.options.unicode1.unicode2", "index": 0, "value": "super1", "owner": "user"}, {"key": "unicode1_master_slaves_requires_slave_value.options.unicode1.unicode3", "index": 0, "value": "super1", "owner": "user"}, {"key": "unicode1_master_slaves_requires_slave_value.options.unicode1.unicode3", "hidden": true, "index": 1}], "form": [{"key": "unicode1_master_slaves_requires_slave_value.options.unicode1.unicode1", "type": "input", "dependencies": {"default": {"hide": ["unicode1_master_slaves_requires_slave_value.options.unicode1.unicode3"]}, "expected": {"test": {"show": ["unicode1_master_slaves_requires_slave_value.options.unicode1.unicode3"]}}}}, {"key": "unicode1_master_slaves_requires_slave_value.options.unicode1.unicode2", "type": "input"}, {"key": "unicode1_master_slaves_requires_slave_value.options.unicode1.unicode3", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"unicode1_master_slaves_requires_slaves.options.unicode1.unicode1": [], "unicode1_master_slaves_requires_slaves.options.unicode1.unicode2": []}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_master_slaves_requires_slaves.options": {"name": "unicode1_master_slaves_requires_slaves.options", "properties": {"unicode1_master_slaves_requires_slaves.options.unicode1": {"name": "unicode1_master_slaves_requires_slaves.options.unicode1", "properties": {"unicode1_master_slaves_requires_slaves.options.unicode1.unicode1": {"name": "unicode1_master_slaves_requires_slaves.options.unicode1.unicode1", "type": "string", "isMulti": true, "title": "Unicode master"}, "unicode1_master_slaves_requires_slaves.options.unicode1.unicode2": {"name": "unicode1_master_slaves_requires_slaves.options.unicode1.unicode2", "type": "string", "isMulti": true, "title": "Values 'test' must show 'Unicode slave 2'"}, "unicode1_master_slaves_requires_slaves.options.unicode1.unicode3": {"name": "unicode1_master_slaves_requires_slaves.options.unicode1.unicode3", "type": "string", "isMulti": true, "title": "Unicode slave 2"}}, "type": "array", "title": "Common configuration"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode1_master_slaves_requires_slaves.options.unicode1.unicode1", "required": true}], "form": [{"key": "unicode1_master_slaves_requires_slaves.options.unicode1.unicode1", "type": "input"}, {"key": "unicode1_master_slaves_requires_slaves.options.unicode1.unicode2", "type": "input", "dependencies": {"default": {"hide": ["unicode1_master_slaves_requires_slaves.options.unicode1.unicode3"]}, "expected": {"test": {"show": ["unicode1_master_slaves_requires_slaves.options.unicode1.unicode3"]}}}}, {"key": "unicode1_master_slaves_requires_slaves.options.unicode1.unicode3", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"unicode1_master_slaves_requires_value.options.unicode.unicode": ["test", "val2"], "unicode1_master_slaves_requires_value.options.unicode.unicode1": ["super1", "super2"], "unicode1_master_slaves_requires_value.options.unicode.unicode2": ["pas test", "test"]}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_master_slaves_requires_value.options": {"name": "unicode1_master_slaves_requires_value.options", "properties": {"unicode1_master_slaves_requires_value.options.unicode": {"name": "unicode1_master_slaves_requires_value.options.unicode", "properties": {"unicode1_master_slaves_requires_value.options.unicode.unicode": {"name": "unicode1_master_slaves_requires_value.options.unicode.unicode", "type": "string", "isMulti": true, "title": "Values 'test' must show 'Unicode slave 3'"}, "unicode1_master_slaves_requires_value.options.unicode.unicode1": {"name": "unicode1_master_slaves_requires_value.options.unicode.unicode1", "type": "string", "isMulti": true, "title": "Unicode slave 1"}, "unicode1_master_slaves_requires_value.options.unicode.unicode2": {"name": "unicode1_master_slaves_requires_value.options.unicode.unicode2", "type": "string", "isMulti": true, "title": "Unicode slave 2"}, "unicode1_master_slaves_requires_value.options.unicode.unicode3": {"name": "unicode1_master_slaves_requires_value.options.unicode.unicode3", "type": "string", "isMulti": true, "title": "Unicode slave 3"}}, "type": "array", "title": "Common configuration 1"}}, "type": "object", "title": "Common configuration 2"}}, "model": [{"key": "unicode1_master_slaves_requires_value.options.unicode.unicode", "required": true, "value": ["test", "val2"], "owner": "user"}, {"key": "unicode1_master_slaves_requires_value.options.unicode.unicode1", "index": 0, "value": "super1", "owner": "user"}, {"key": "unicode1_master_slaves_requires_value.options.unicode.unicode1", "index": 1, "value": "super2", "owner": "user"}, {"key": "unicode1_master_slaves_requires_value.options.unicode.unicode2", "index": 0, "value": "pas test", "owner": "user"}, {"key": "unicode1_master_slaves_requires_value.options.unicode.unicode2", "index": 1, "value": "test", "owner": "user"}, {"key": "unicode1_master_slaves_requires_value.options.unicode.unicode3", "hidden": true, "index": 1, "value": "super", "owner": "user"}], "form": [{"key": "unicode1_master_slaves_requires_value.options.unicode.unicode", "type": "input", "dependencies": {"default": {"hide": ["unicode1_master_slaves_requires_value.options.unicode.unicode3"]}, "expected": {"test": {"show": ["unicode1_master_slaves_requires_value.options.unicode.unicode3"]}}}}, {"key": "unicode1_master_slaves_requires_value.options.unicode.unicode1", "type": "input"}, {"key": "unicode1_master_slaves_requires_value.options.unicode.unicode2", "type": "input"}, {"key": "unicode1_master_slaves_requires_value.options.unicode.unicode3", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"unicode1_master_slaves_submulti.options.unicode.unicode": [], "unicode1_master_slaves_submulti.options.unicode.unicode1": [], "unicode1_master_slaves_submulti.options.unicode.unicode2": [], "unicode1_master_slaves_submulti.options.unicode.unicode3": []}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_master_slaves_submulti.options": {"name": "unicode1_master_slaves_submulti.options", "properties": {"unicode1_master_slaves_submulti.options.unicode": {"name": "unicode1_master_slaves_submulti.options.unicode", "properties": {"unicode1_master_slaves_submulti.options.unicode.unicode": {"name": "unicode1_master_slaves_submulti.options.unicode.unicode", "type": "string", "isMulti": true, "title": "Unicode master"}, "unicode1_master_slaves_submulti.options.unicode.unicode1": {"name": "unicode1_master_slaves_submulti.options.unicode.unicode1", "type": "string", "isMulti": true, "title": "Unicode slave 1"}, "unicode1_master_slaves_submulti.options.unicode.unicode2": {"name": "unicode1_master_slaves_submulti.options.unicode.unicode2", "type": "string", "isMulti": true, "isSubMulti": true, "title": "Unicode slave 2 submulti"}, "unicode1_master_slaves_submulti.options.unicode.unicode3": {"name": "unicode1_master_slaves_submulti.options.unicode.unicode3", "type": "string", "isMulti": true, "title": "Unicode slave 3"}}, "type": "array", "title": "Common configuration 1"}}, "type": "object", "title": "Common configuration 2"}}, "model": [{"key": "unicode1_master_slaves_submulti.options.unicode.unicode", "required": true}], "form": [{"key": "unicode1_master_slaves_submulti.options.unicode.unicode", "type": "input"}, {"key": "unicode1_master_slaves_submulti.options.unicode.unicode1", "type": "input"}, {"key": "unicode1_master_slaves_submulti.options.unicode.unicode2", "type": "input"}, {"key": "unicode1_master_slaves_submulti.options.unicode.unicode3", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"unicode1_master_slaves_value.options.unicode.unicode": ["val3", "val4"], "unicode1_master_slaves_value.options.unicode.unicode1": ["super1", "super2"], "unicode1_master_slaves_value.options.unicode.unicode2": ["pas test", "test"], "unicode1_master_slaves_value.options.unicode.unicode3": [null, "super"]}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_master_slaves_value.options": {"name": "unicode1_master_slaves_value.options", "properties": {"unicode1_master_slaves_value.options.unicode": {"name": "unicode1_master_slaves_value.options.unicode", "properties": {"unicode1_master_slaves_value.options.unicode.unicode": {"name": "unicode1_master_slaves_value.options.unicode.unicode", "type": "string", "value": ["val1", "val2"], "isMulti": true, "title": "Unicode master"}, "unicode1_master_slaves_value.options.unicode.unicode1": {"name": "unicode1_master_slaves_value.options.unicode.unicode1", "type": "string", "isMulti": true, "title": "Unicode slave 1"}, "unicode1_master_slaves_value.options.unicode.unicode2": {"name": "unicode1_master_slaves_value.options.unicode.unicode2", "type": "string", "default": "slave2", "isMulti": true, "title": "Unicode slave 2 with default multi"}, "unicode1_master_slaves_value.options.unicode.unicode3": {"name": "unicode1_master_slaves_value.options.unicode.unicode3", "type": "string", "isMulti": true, "title": "Unicode slave 3"}}, "type": "array", "title": "Common configuration 1"}}, "type": "object", "title": "Common configuration 2"}}, "model": [{"key": "unicode1_master_slaves_value.options.unicode.unicode", "required": true, "value": ["val3", "val4"], "owner": "user"}, {"key": "unicode1_master_slaves_value.options.unicode.unicode1", "index": 0, "value": "super1", "owner": "user"}, {"key": "unicode1_master_slaves_value.options.unicode.unicode1", "index": 1, "value": "super2", "owner": "user"}, {"key": "unicode1_master_slaves_value.options.unicode.unicode2", "index": 0, "value": "pas test", "owner": "user"}, {"key": "unicode1_master_slaves_value.options.unicode.unicode2", "index": 1, "value": "test", "owner": "user"}, {"key": "unicode1_master_slaves_value.options.unicode.unicode3", "index": 1, "value": "super", "owner": "user"}], "form": [{"key": "unicode1_master_slaves_value.options.unicode.unicode", "clearable": true, "type": "input"}, {"key": "unicode1_master_slaves_value.options.unicode.unicode1", "type": "input"}, {"key": "unicode1_master_slaves_value.options.unicode.unicode2", "clearable": true, "type": "input"}, {"key": "unicode1_master_slaves_value.options.unicode.unicode3", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_mod_value.options": {"name": "unicode1_mod_value.options", "properties": {"unicode1_mod_value.options.unicode": {"name": "unicode1_mod_value.options.unicode", "type": "string", "title": "Unicode 1"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode1_mod_value.options.unicode", "value": "a", "owner": "user"}], "form": [{"key": "unicode1_mod_value.options.unicode", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_multi.options": {"name": "unicode1_multi.options", "properties": {"unicode1_multi.options.unicode": {"name": "unicode1_multi.options.unicode", "type": "string", "isMulti": true, "title": "String 1"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode1_multi.options.unicode", "required": true}], "form": [{"key": "unicode1_multi.options.unicode", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_multi_hidden.options": {"name": "unicode1_multi_hidden.options", "properties": {"unicode1_multi_hidden.options.unicode": {"name": "unicode1_multi_hidden.options.unicode", "type": "string", "isMulti": true, "title": "Unicode 1"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode1_multi_hidden.options.unicode", "display": false, "required": true, "hidden": true}], "form": [{"key": "unicode1_multi_hidden.options.unicode", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_multi_mandatory.options": {"name": "unicode1_multi_mandatory.options", "properties": {"unicode1_multi_mandatory.options.unicode": {"name": "unicode1_multi_mandatory.options.unicode", "type": "string", "isMulti": true, "title": "Unicode 1"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode1_multi_mandatory.options.unicode", "required": true, "needs_len": true}], "form": [{"key": "unicode1_multi_mandatory.options.unicode", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_multi_mod_value.options": {"name": "unicode1_multi_mod_value.options", "properties": {"unicode1_multi_mod_value.options.unicode": {"name": "unicode1_multi_mod_value.options.unicode", "type": "string", "value": ["a", "b"], "isMulti": true, "title": "String 1"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode1_multi_mod_value.options.unicode", "required": true, "value": ["c", "d", "e"], "owner": "user"}], "form": [{"key": "unicode1_multi_mod_value.options.unicode", "clearable": true, "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_multi_not_equal_collapse.descr1": {"name": "unicode1_multi_not_equal_collapse.descr1", "properties": {"unicode1_multi_not_equal_collapse.descr1.unicode1": {"name": "unicode1_multi_not_equal_collapse.descr1.unicode1", "type": "string", "title": "Unicode 1, not equal to 'a'"}, "unicode1_multi_not_equal_collapse.descr1.unicode1_multi": {"name": "unicode1_multi_not_equal_collapse.descr1.unicode1_multi", "type": "string", "isMulti": true, "title": "Multi unicode 1, not equal to 'a' or 'b'"}}, "type": "object", "title": "Common configuration 1"}, "unicode1_multi_not_equal_collapse.descr2": {"name": "unicode1_multi_not_equal_collapse.descr2", "properties": {"unicode1_multi_not_equal_collapse.descr2.unicode2": {"name": "unicode1_multi_not_equal_collapse.descr2.unicode2", "type": "string", "value": "a", "title": "Unicode 2"}, "unicode1_multi_not_equal_collapse.descr2.unicode2_multi": {"name": "unicode1_multi_not_equal_collapse.descr2.unicode2_multi", "type": "string", "value": ["a", "b"], "isMulti": true, "title": "Multi unicode 2"}}, "type": "object", "title": "Common configuration 2"}, "unicode1_multi_not_equal_collapse.descr3": {"name": "unicode1_multi_not_equal_collapse.descr3", "properties": {"unicode1_multi_not_equal_collapse.descr3.unicode3": {"name": "unicode1_multi_not_equal_collapse.descr3.unicode3", "type": "string", "title": "Unicode 3"}, "unicode1_multi_not_equal_collapse.descr3.unicode3_multi": {"name": "unicode1_multi_not_equal_collapse.descr3.unicode3_multi", "type": "string", "isMulti": true, "title": "Multi unicode 3"}}, "type": "object", "title": "Common configuration 3"}}, "model": [{"key": "unicode1_multi_not_equal_collapse.descr1.unicode1_multi", "required": true}, {"key": "unicode1_multi_not_equal_collapse.descr2.unicode2", "value": "a", "owner": "default"}, {"key": "unicode1_multi_not_equal_collapse.descr2.unicode2_multi", "required": true, "value": ["a", "b"], "owner": "default"}, {"key": "unicode1_multi_not_equal_collapse.descr3.unicode3_multi", "required": true}], "form": [{"key": "unicode1_multi_not_equal_collapse.descr1.unicode1", "type": "input", "not_equal": {"options": ["unicode1_multi_not_equal_collapse.descr2.unicode2", "unicode1_multi_not_equal_collapse.descr3.unicode3"]}}, {"key": "unicode1_multi_not_equal_collapse.descr1.unicode1_multi", "type": "input", "not_equal": {"options": ["unicode1_multi_not_equal_collapse.descr2.unicode2_multi", "unicode1_multi_not_equal_collapse.descr3.unicode3_multi"]}}, {"key": "unicode1_multi_not_equal_collapse.descr2.unicode2", "clearable": true, "type": "input", "not_equal": {"options": ["unicode1_multi_not_equal_collapse.descr1.unicode1", "unicode1_multi_not_equal_collapse.descr3.unicode3"]}}, {"key": "unicode1_multi_not_equal_collapse.descr2.unicode2_multi", "clearable": true, "type": "input", "not_equal": {"options": ["unicode1_multi_not_equal_collapse.descr1.unicode1_multi", "unicode1_multi_not_equal_collapse.descr3.unicode3_multi"]}}, {"key": "unicode1_multi_not_equal_collapse.descr3.unicode3", "type": "input", "not_equal": {"options": ["unicode1_multi_not_equal_collapse.descr1.unicode1", "unicode1_multi_not_equal_collapse.descr2.unicode2"]}}, {"key": "unicode1_multi_not_equal_collapse.descr3.unicode3_multi", "type": "input", "not_equal": {"options": ["unicode1_multi_not_equal_collapse.descr1.unicode1_multi", "unicode1_multi_not_equal_collapse.descr2.unicode2_multi"]}}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_multi_requires.options": {"name": "unicode1_multi_requires.options", "properties": {"unicode1_multi_requires.options.unicode1": {"name": "unicode1_multi_requires.options.unicode1", "type": "string", "title": "Value 'test' must show Unicode 2"}, "unicode1_multi_requires.options.unicode2": {"name": "unicode1_multi_requires.options.unicode2", "type": "string", "isMulti": true, "title": "Unicode 2"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode1_multi_requires.options.unicode2", "required": true, "hidden": true}], "form": [{"key": "unicode1_multi_requires.options.unicode1", "type": "input", "dependencies": {"default": {"hide": ["unicode1_multi_requires.options.unicode2"]}, "expected": {"test": {"show": ["unicode1_multi_requires.options.unicode2"]}}}}, {"key": "unicode1_multi_requires.options.unicode2", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_multi_value.options": {"name": "unicode1_multi_value.options", "properties": {"unicode1_multi_value.options.unicode": {"name": "unicode1_multi_value.options.unicode", "type": "string", "value": ["a", "b"], "isMulti": true, "title": "String 1"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode1_multi_value.options.unicode", "required": true, "value": ["a", "b"], "owner": "default"}], "form": [{"key": "unicode1_multi_value.options.unicode", "clearable": true, "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_not_equal.options": {"name": "unicode1_not_equal.options", "properties": {"unicode1_not_equal.options.unicode1": {"name": "unicode1_not_equal.options.unicode1", "type": "string", "title": "Unicode 1"}, "unicode1_not_equal.options.unicode2": {"name": "unicode1_not_equal.options.unicode2", "type": "string", "title": "Unicode 2"}}, "type": "object", "title": "Common configuration"}}, "model": [], "form": [{"key": "unicode1_not_equal.options.unicode1", "type": "input", "not_equal": {"options": ["unicode1_not_equal.options.unicode2"]}}, {"key": "unicode1_not_equal.options.unicode2", "type": "input", "not_equal": {"options": ["unicode1_not_equal.options.unicode1"]}}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_optiondescription_requires.options": {"name": "unicode1_optiondescription_requires.options", "properties": {"unicode1_optiondescription_requires.options.unicode1": {"name": "unicode1_optiondescription_requires.options.unicode1", "type": "string", "title": "Value 'test' must show OptionDescription"}}, "type": "object", "title": "Common configuration"}, "unicode1_optiondescription_requires.unicode1": {"name": "unicode1_optiondescription_requires.unicode1", "properties": {"unicode1_optiondescription_requires.unicode1.unicode2": {"name": "unicode1_optiondescription_requires.unicode1.unicode2", "type": "string", "title": "Unicode 2"}, "unicode1_optiondescription_requires.unicode1.unicode3": {"name": "unicode1_optiondescription_requires.unicode1.unicode3", "type": "string", "title": "Unicode 3"}}, "type": "object", "title": "OptionDescription with 2 options"}}, "model": [{"key": "unicode1_optiondescription_requires.unicode1", "properties": ["hidden"], "hidden": true}], "form": [{"key": "unicode1_optiondescription_requires.options.unicode1", "type": "input", "dependencies": {"default": {"hide": ["unicode1_optiondescription_requires.unicode1"]}, "expected": {"test": {"show": ["unicode1_optiondescription_requires.unicode1"]}}}}, {"key": "unicode1_optiondescription_requires.unicode1.unicode2", "type": "input"}, {"key": "unicode1_optiondescription_requires.unicode1.unicode3", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_requires.options": {"name": "unicode1_requires.options", "properties": {"unicode1_requires.options.unicode1": {"name": "unicode1_requires.options.unicode1", "type": "string", "title": "Value 'test' must show Unicode 2"}, "unicode1_requires.options.unicode2": {"name": "unicode1_requires.options.unicode2", "type": "string", "title": "Unicode 2"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode1_requires.options.unicode2", "hidden": true}], "form": [{"key": "unicode1_requires.options.unicode1", "type": "input", "dependencies": {"default": {"hide": ["unicode1_requires.options.unicode2"]}, "expected": {"test": {"show": ["unicode1_requires.options.unicode2"]}}}}, {"key": "unicode1_requires.options.unicode2", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode1_simple_callback.options": {"name": "unicode1_simple_callback.options", "properties": {"unicode1_simple_callback.options.unicode1": {"name": "unicode1_simple_callback.options.unicode1", "type": "string", "value": "word", "title": "Unicode 1"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode1_simple_callback.options.unicode1", "value": "word", "owner": "default"}], "form": [{"key": "unicode1_simple_callback.options.unicode1", "clearable": true, "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode2.options": {"name": "unicode2.options", "properties": {"unicode2.options.unicode1": {"name": "unicode2.options.unicode1", "type": "string", "title": "Unicode 1"}, "unicode2.options.unicode2": {"name": "unicode2.options.unicode2", "type": "string", "title": "Unicode 2"}}, "type": "object", "title": "Common configuration"}}, "model": [], "form": [{"key": "unicode2.options.unicode1", "type": "input"}, {"key": "unicode2.options.unicode2", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode2_copy.options": {"name": "unicode2_copy.options", "properties": {"unicode2_copy.options.unicode1": {"name": "unicode2_copy.options.unicode1", "type": "string", "title": "Unicode 1"}, "unicode2_copy.options.unicode2": {"name": "unicode2_copy.options.unicode2", "type": "string", "title": "Unicode 2 (copy)"}}, "type": "object", "title": "Common configuration"}}, "model": [], "form": [{"key": "unicode2_copy.options.unicode1", "type": "input", "copy": ["unicode2_copy.options.unicode2"]}, {"key": "unicode2_copy.options.unicode2", "type": "input", "clearable": true}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode2_multi_copy.options": {"name": "unicode2_multi_copy.options", "properties": {"unicode2_multi_copy.options.unicode1": {"name": "unicode2_multi_copy.options.unicode1", "type": "string", "isMulti": true, "title": "Unicode 1"}, "unicode2_multi_copy.options.unicode2": {"name": "unicode2_multi_copy.options.unicode2", "type": "string", "isMulti": true, "title": "Unicode 2"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode2_multi_copy.options.unicode1", "required": true}, {"key": "unicode2_multi_copy.options.unicode2", "required": true}], "form": [{"key": "unicode2_multi_copy.options.unicode1", "type": "input", "copy": ["unicode2_multi_copy.options.unicode2"]}, {"key": "unicode2_multi_copy.options.unicode2", "type": "input", "clearable": true}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode_hidden.options": {"name": "unicode_hidden.options", "properties": {"unicode_hidden.options.unicode": {"name": "unicode_hidden.options.unicode", "type": "string", "title": "Unicode 1"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode_hidden.options.unicode", "display": false, "hidden": true}], "form": [{"key": "unicode_hidden.options.unicode", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode_property.options": {"name": "unicode_property.options", "properties": {"unicode_property.options.unicode": {"name": "unicode_property.options.unicode", "type": "string", "title": "Expert unicode"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode_property.options.unicode", "properties": ["expert"]}], "form": [{"key": "unicode_property.options.unicode", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"unicode_property_optiondescription.options": {"name": "unicode_property_optiondescription.options", "properties": {"unicode_property_optiondescription.options.unicode": {"name": "unicode_property_optiondescription.options.unicode", "type": "string", "title": "Expert unicode"}}, "type": "object", "title": "Common configuration"}}, "model": [{"key": "unicode_property_optiondescription.options", "properties": ["expert"]}], "form": [{"key": "unicode_property_optiondescription.options.unicode", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

View File

@ -1 +0,0 @@
{"schema": {"username1.options": {"name": "username1.options", "properties": {"username1.options.username": {"name": "username1.options.username", "type": "string", "title": "Username description"}}, "type": "object", "title": "Common configuration"}}, "model": [], "form": [{"key": "username1.options.username", "pattern": "^[a-z_][a-z0-9_-]{0,30}[$a-z0-9_-]{0,1}$", "type": "input"}, {"title": "Configurer", "type": "submit"}]}

Some files were not shown because too many files have changed in this diff Show More