step 1 and 2
This commit is contained in:
parent
4ad558db79
commit
9a823d346f
6 changed files with 35 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -7,3 +7,6 @@
|
||||||
|
|
||||||
# Generated files
|
# Generated files
|
||||||
*.xml
|
*.xml
|
||||||
|
|
||||||
|
# Saxon
|
||||||
|
saxon-*.jar
|
||||||
|
|
|
@ -8,7 +8,10 @@ Le convertisseur est [converter.py](./converter.py).
|
||||||
$ python converter.py l-systems.csv
|
$ python converter.py l-systems.csv
|
||||||
```
|
```
|
||||||
|
|
||||||
<!-- Pour valider : xmllint --schema data.xsd fichier.xml 1>/dev/null -->
|
<!--
|
||||||
|
Pour valider : xmllint --schema data.xsd data.xml 1>/dev/null
|
||||||
|
Pour générer : java -jar saxon-he-10.3.jar -s:data.xml -xsl:tortue.xsl -o:tortue.xml
|
||||||
|
-->
|
||||||
|
|
||||||
## Rapport
|
## Rapport
|
||||||
|
|
||||||
|
|
6
tortue.xsd
Normal file
6
tortue.xsd
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||||
|
|
||||||
|
<!-- TODO : Anri -->
|
||||||
|
|
||||||
|
</xs:schema>
|
8
tortue.xsl
Normal file
8
tortue.xsl
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<xsl:transform version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||||
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<xsl:output indent="yes" />
|
||||||
|
|
||||||
|
<!-- TODO : Anri -->
|
||||||
|
|
||||||
|
</xsl:transform>
|
6
traceur.xsd
Normal file
6
traceur.xsd
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||||
|
|
||||||
|
<!-- TODO : Matthieu -->
|
||||||
|
|
||||||
|
</xs:schema>
|
8
traceur.xsl
Normal file
8
traceur.xsl
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<xsl:transform version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||||
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<xsl:output indent="yes" />
|
||||||
|
|
||||||
|
<!-- TODO : Matthieu -->
|
||||||
|
|
||||||
|
</xsl:transform>
|
Reference in a new issue