Skip to content

Instantly share code, notes, and snippets.

@vilinski
Last active July 2, 2018 09:38
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vilinski/6452217 to your computer and use it in GitHub Desktop.
Save vilinski/6452217 to your computer and use it in GitHub Desktop.
R# commandlines dupfinder.xsl
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" indent="yes" doctype-system="about:legacy-compat"/>
<xsl:template match="/">
<html>
<body>
<h1>Statistics</h1>
<p>Total codebase size: <xsl:value-of select="//CodebaseCost"/></p>
<p>Code to analyze: <xsl:value-of select="//TotalDuplicatesCost"/></p>
<p>Total size of duplicated fragments: <xsl:value-of select="//CodebaseCost" /></p>
<h1>Detected Duplicates</h1>
<xsl:for-each select="//Duplicates/Duplicate">
<h3>Cost: <xsl:value-of select="@Cost"/></h3>
<xsl:for-each select="Fragment">
<xsl:variable name="i" select="position()"/>
<details>
<summary>Fragment <xsl:value-of select="$i"/> in file <xsl:value-of select="FileName"/> (lines <xsl:value-of select="LineRange/@Start"/> - <xsl:value-of select="LineRange/@End"/>)</summary>
<pre><xsl:value-of select="Text"/></pre>
</details>
</xsl:for-each>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
@giusepe
Copy link

giusepe commented Jul 2, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment