Gregor J. Rothfuss wrote:

hi,

we'd like to use the excellent mozilla activex project [1] to run a mozilla-based wysiwyg xml editor [2] inside ie. it appears that the standard activex build does not contain the necessary xslt features though. [3] i used the 1.7 version from [4]

i was wondering what the mozilla community is thinking about enabling that functionality in the build by default? are there footprint issues?

alternatively, what would i have to take into account for a custom build of the the control?

thanks,

-gregor


[1] http://www.iol.ie/~locka/mozilla/mozilla.htm [2] http://bxe.oscom.org [3] http://greg.abstrakt.ch/gallery/lenya/iemoz [4] http://www.iol.ie/~locka/mozilla/MozillaControl17t1.exe


Works for me. Try this in the ActiveX:

*xml file :*

<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="xsldemo.xsl"?>
<compilation>
<mp3>
<titre>Foule sentimentale</titre>
<artiste>Alain Souchon</artiste>
</mp3>
<mp3>
<titre>Solaar pleure</titre>
<artiste>MC Solaar</artiste>
</mp3>
<mp3>
<titre>Le baiser</titre>
<artiste>Alain Souchon</artiste>
</mp3>
<mp3>
<titre>Pourtant</titre>
<artiste>Vanessa Paradis</artiste>
</mp3>
<mp3>
<titre>Chambre avec vue</titre>
<artiste>Henri Salvador</artiste>
</mp3>
</compilation>

*xsl file :*

<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
<xsl:template match="/">
<html>
<body>
<table border="1" cellspacing="0" cellpadding="3">
<tr bgcolor="#FFFF00">
<td>Titre</td>
<td>Artiste</td>
</tr>
<tr>
<td><xsl:value-of select="compilation/mp3/titre"/></td>
<td><xsl:value-of select="compilation/mp3/artiste"/></td>
</tr>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>


Alex
_______________________________________________
mozilla-embedding mailing list
[EMAIL PROTECTED]
http://mail.mozilla.org/listinfo/mozilla-embedding

Reply via email to