Added support for scanning transitive dependencies for .NET libraries (except those with unlimited set of supported TMFs).

This commit is contained in:
Šesták Vít
2018-03-07 13:59:43 +01:00
parent d87535df84
commit dcc109a729
8 changed files with 229 additions and 89 deletions

View File

@@ -67,4 +67,12 @@ package object controllers {
}
/**
* Converts profile name (used in .NET) to a valid HTML classname.
*/
def profileClass(s: String): String = "profile-"+s.flatMap{
case c if c.isLetterOrDigit && c < 128 => c.toString
case other => s"_${other.toHexString}_"
}
}