doc: example for fill and conventions

This commit is contained in:
2021-12-11 16:33:55 +01:00
parent 8cf8c9b8eb
commit 3dca1349a8
22 changed files with 287 additions and 222 deletions

View File

@ -8,12 +8,12 @@ Voici un exemple simple de validation des valeurs :
```
<variables>
<variable name="my_variable"/>
<variable name="my_variable"/>
</variables>
<constraints>
<check name="islower">
<target>my_variable</target>
</check>
<check name="islower">
<target>my_variable</target>
</check>
</constraints>
```
@ -46,7 +46,7 @@ Dans la contrainte, il est possible de spécifier le niveau d'erreur et le mettr
```
<check name="islower" level="warning">
<target>my_variable</target>
<target>my_variable</target>
</check>
```

View File

@ -6,12 +6,12 @@ Dans un premier dictionnaire déclarons notre variable et sa fonction de vérifi
```
<variables>
<variable name="my_variable"/>
<variable name="my_variable"/>
</variables>
<constraints>
<check name="islower">
<target>my_variable</target>
</check>
<check name="islower">
<target>my_variable</target>
</check>
</constraints>
```
@ -19,12 +19,12 @@ Dans un second dictionnaire il est possible de redéfinir le calcul :
```
<variables>
<variable name="my_variable" redefine="True"/>
<variable name="my_variable" redefine="True"/>
</variables>
<constraints>
<check name="isspace">
<target>my_variable</target>
</check>
<check name="isspace">
<target>my_variable</target>
</check>
</constraints>
```
@ -40,12 +40,12 @@ Dans un premier dictionnaire déclarons notre variable et notre fonction de vér
```
<variables>
<variable name="my_variable"/>
<variable name="my_variable"/>
</variables>
<constraints>
<check name="islower">
<target>my_variable</target>
</check>
<check name="islower">
<target>my_variable</target>
</check>
</constraints>
```
@ -53,9 +53,9 @@ Dans un second dictionnaire supprimer cette vérification :
```
<variables>
<family name="family">
<variable name="my_variable" redefine="True" remove_check="True"/>
</family>
<family name="family">
<variable name="my_variable" redefine="True" remove_check="True"/>
</family>
</variables>
```