Last active
December 13, 2017 15:53
-
-
Save ShamoX/4f00c2719c2fdb8c2324d3ca201fc309 to your computer and use it in GitHub Desktop.
Revisions
-
ShamoX revised this gist
Dec 13, 2017 . 1 changed file with 18 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,19 +4,36 @@ <xsl:template match="/"> <HTML> <HEAD> <TITLE>école des douanes</TITLE> </HEAD> <BODY BGCOLOR="#FFFFFF"> <h1><xsl:value-of select="name()"/></h1> <xsl:apply-templates/> </BODY> </HTML> </xsl:template> <xsl:template match="*"> <xsl:comment><xsl:value-of select="name()"/></xsl:comment> <xsl:apply-templates/> </xsl:template> <xsl:template match="end:etablissement"> <h1>Les personnes présentent</h1> <ul> <xsl:apply-templates select="end:personnels|end:etudiants"/> </ul> <h1>Les salles</h1> <ul> <xsl:apply-templates select="end:salles"/> </ul> </xsl:template> <xsl:template match="end:personne"> <li><xsl:value-of select="end:nom/end:prenom"/></li> </xsl:template> <xsl:template match="end:salle"/> <li> <h2><xsl:value-of select="end:nom_salle"/></h2> <p>étage: <xsl:value-of select="end:etage"/></p> </li> </xsl:template> </xsl:stylesheet> -
ShamoX revised this gist
Dec 13, 2017 . 1 changed file with 5 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -11,9 +11,12 @@ </BODY> </HTML> </xsl:template> <xsl:template match="end:etablissement"> <ul> <xsl:apply-templates select="end:personnels|end:etudiants"/> </ul> </xsl:template> <xsl:template match="end:personne"> <li><xsl:value-of select="end:nom/end:prenom"/></li> </xsl:template> </xsl:stylesheet> -
ShamoX revised this gist
Dec 13, 2017 . 1 changed file with 4 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:end="https://www.example.org/END"> <xsl:template match="/"> <HTML> <HEAD> @@ -10,9 +11,9 @@ </BODY> </HTML> </xsl:template> <xsl:template match="end:personne"> <ul> <li><xsl:value-of select="end:nom/end:prenom"/></li> </ul> </xsl:template> </xsl:stylesheet> -
ShamoX revised this gist
Dec 13, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <HTML> <HEAD> -
ShamoX revised this gist
Dec 13, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl" xmlns="http://www.w3.org/TR/REC-html40" result-ns=""> <xsl:template match="/"> <HTML> <HEAD> -
ShamoX revised this gist
Dec 13, 2017 . 1 changed file with 18 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1 +1,18 @@ <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl” xmlns="http://www.w3.org/TR/REC-html40” result-ns=""> <xsl:template match="/"> <HTML> <HEAD> <TITLE>Les personnes</TITLE> </HEAD> <BODY BGCOLOR="#FFFFFF"> <xsl:apply-templates/> </BODY> </HTML> </xsl:template> <xsl:template match="personne"> <ul> <li><xsl:value-of select="prenom"/></li> </ul> </xsl:template> </xsl:stylesheet> -
ShamoX created this gist
Dec 13, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ <?xml version="1.0" encoding="UTF-8"?>