Subversion Repositories bacoAlunos

Compare Revisions

Ignore whitespace Rev 246 → Rev 247

/impl/src/xsd/curso.xsl
1,5 → 1,5
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:curso="http://www.estgp.pt/xsd/planoestudos/1.0/">
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:curso="http://www.estgp.pt/xsd/planoestudos/1.0/">
 
<xsl:template match="/">
<html>
55,6 → 55,11
</style>
</head>
<body>
<xsl:call-template name="fragmentoCurso"/>
</body>
</html>
</xsl:template>
<xsl:template name="fragmentoCurso">
<div class="seccao">
<table class="planoCurricular">
<xsl:for-each select="//curso:semestre">
105,8 → 110,6
</xsl:for-each>
</table>
</div>
</body>
</html>
</xsl:template>
<xsl:template match="curso:perfil">
<tr>
/impl/src/xsd/fragmentoCurso.xsl
New file
0,0 → 1,7
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:curso="http://www.estgp.pt/xsd/planoestudos/1.0/">
<xsl:import href="curso.xsl"/>
<xsl:template match="/">
<xsl:call-template name="fragmentoCurso"/>
</xsl:template>
</xsl:stylesheet>