Skip to content

Instantly share code, notes, and snippets.

@penartur
Created January 28, 2012 16:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save penartur/50357081bd16dbedaeff to your computer and use it in GitHub Desktop.
Save penartur/50357081bd16dbedaeff to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="ASCII"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
<xsl:import href="elems\Main.xslt"/>
<xsl:import href="elems\PMInfo.xslt"/>
<xsl:template name="specificTitle">
<xsl:value-of select="conversation/interlocutor/account/user/name"/>
</xsl:template>
<xsl:template name="isLiteEnabled">true</xsl:template>
<xsl:template name="specific">
<xsl:apply-templates select="messages/pageOuter" mode="withCurrent"/>
<div class="postscontainer">
<xsl:apply-templates select="messages/message"/>
</div>
<xsl:apply-templates select="messages/pageOuter" mode="withCurrent"/>
</xsl:template>
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment