step 1 and 2

This commit is contained in:
Mylloon 2024-04-26 22:19:39 +02:00
parent 4ad558db79
commit 9a823d346f
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
6 changed files with 35 additions and 1 deletions

3
.gitignore vendored
View file

@ -7,3 +7,6 @@
# Generated files
*.xml
# Saxon
saxon-*.jar

View file

@ -8,7 +8,10 @@ Le convertisseur est [converter.py](./converter.py).
$ 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

6
tortue.xsd Normal file
View 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
View 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
View 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
View 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>