diff options
Diffstat (limited to 'subsonic-site/src/main/webapp/libraries.jsp')
-rw-r--r-- | subsonic-site/src/main/webapp/libraries.jsp | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/subsonic-site/src/main/webapp/libraries.jsp b/subsonic-site/src/main/webapp/libraries.jsp new file mode 100644 index 00000000..b0991114 --- /dev/null +++ b/subsonic-site/src/main/webapp/libraries.jsp @@ -0,0 +1,48 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + +<%! String current = "libraries"; %> +<%@ include file="header.jsp" %> + +<body> + +<a name="top"/> + +<div id="container"> + <%@ include file="menu.jsp" %> + + <div id="content"> + <div id="main-col"> + <h1>Third-party libraries</h1> + + <p>Subsonic uses the following licensed third-party software libraries:</p> + <ul class="list"> + <li>Spring Framework – <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License, Version 2.0</a></li> + <li>Acegi Security – <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License, Version 2.0</a></li> + <li>cglib – <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License, Version 2.0</a></li> + <li>Apache Commons – <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License, Version 2.0</a></li> + <li>HSQL – <a href="http://hsqldb.org/web/hsqlLicense.html">HSQL License</a></li> + <li>Radeox – <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License, Version 2.0</a></li> + <li>Log4j – <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License, Version 2.0</a></li> + <li>DWR – <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License, Version 2.0</a></li> + <li>Jaudiotagger – <a href="http://www.gnu.org/copyleft/lesser.txt">LGPL</a></li> + <li>JFreeChart – <a href="http://www.gnu.org/copyleft/lesser.txt">LGPL</a></li> + <li>JDOM – <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License, Version 2.0</a></li> + <li>Ehcache – <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License, Version 2.0</a></li> + <li>JLayer – <a href="http://www.gnu.org/copyleft/lesser.txt">LGPL</a></li> + <li>Jetty – <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License, Version 2.0</a></li> + <li>JGoodies – <a href="http://www.opensource.org/licenses/bsd-license.php">BSD</a></li> + </ul> + + </div> + + <div class="clear"> + </div> + </div> + <hr/> + <%@ include file="footer.jsp" %> +</div> + +</body> +</html> |