Friday, November 8, 2013

Whois links on stat page

Today I have updated stat.xsl to generate RIPE Whois service links for each IP address on stat page. Until now client addresses where plain text. Now you can easily see where your clients come from.

3 comments:

  1. Nice job ;-) but i have a question , how to show only active streams not idle ?

    ReplyDelete
  2. To show only active streams add XPath condition for filtering active stream nodes. Change this line in stat.xsl

    <xsl:apply-templates select="stream"/>

    to this

    <xsl:apply-templates select="stream[publishing]"/>

    ReplyDelete