self.cam_cell_mini = string_to_xml('<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">\
  <xsl:output method="html"/>\
  <xsl:template match="/">\
    <xsl:apply-templates select="/list"/>\
  </xsl:template>\
  <xsl:template match="list">\
    <div id="{@id}" class="clear">\
      <xsl:for-each select="stream">\
        <xsl:call-template name="cell"/>\
      </xsl:for-each>\
      <div class="clear"/>\
    </div>\
  </xsl:template>\
  <xsl:template name="cell">\
    <div class="left pr5 pb6 cam_cell_mini">\
      <a href="{@view_link}">\
        <img src="{@photo_file}" style="width:51px; height:39px; border:0;"/>\
      </a>\
    </div>\
    <div class="left link">\
      <a href="{@view_link}">\
        <xsl:value-of select="@stream_name"/>\
      </a><img src="http://graphics.streamray.com/images/cams/12x12cam.gif" class="pt10 pl2"/>\
      <br/>\
      <xsl:if test="@how_many &gt; 0">\
        <span class="fs9px num_fans">(<xsl:value-of select="@how_many"/> fans)</span>\
      </xsl:if>\
    </div>\
    <div class="clear"/>\
  </xsl:template>\
</xsl:stylesheet>')
