Skip to content

Commit

Permalink
Fix #106
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthieu Bach committed Mar 29, 2017
1 parent 47bbb19 commit 4ef0302
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions admin/doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,20 @@ <h1 id="schema">Modification du schéma</h1>
<p>
Pour modifier le schéma d'un projet PAG, il suffit de remplacer le fichier <b>PAGschema.xsd</b> dans le répertoire <b>assets</b>.
</p>

<div class="alert alert-warning" role="alert">
<b>Attention : </b>Pour gérer le nombre de décimales dans l'éditeur d'un attribut de type "double", il faut spécifier la précision dans les Tags minInclusive et maxInclusive.<br/>
Exemple : 2 décimales pour l'attribut COS_MAX<br/><br/>
<pre>
&lt;xsd:element name="COS_MAX"&gt;
&lt;xsd:simpleType&gt;
&lt;xsd:restriction base="xsd:decimal"&gt;
&lt;xsd:minInclusive value="0.00"/&gt;
&lt;xsd:maxInclusive value="1.00"/&gt;
&lt;/xsd:restriction&gt;
&lt;/xsd:simpleType&gt;
&lt;/xsd:element&gt;</pre>
</div>

<p>
Si des couches ont été ajoutées, pensez à mettre à jour le fichier de configuration de <a href="#layers">l'ordre des couches</a>.
Expand Down

0 comments on commit 4ef0302

Please sign in to comment.