release.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!doctype html>
  2. <!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
  3. <!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
  4. <!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
  5. <!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
  6. <head>
  7. <meta charset="utf-8">
  8. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  9. <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
  10. <link rel="icon" type="image/x-icon" href="/favicon.ico" />
  11. <title>Release Notes</title>
  12. <link href="stylesheets/style.css" rel="stylesheet">
  13. <link rel="stylesheet" href="stylesheets/releasenotes.plugin.css">
  14. <script src="javascripts/libs/jquery-1.7.1.min.js"></script>
  15. <script src="javascripts/libs/marked.js"></script>
  16. <script src="javascripts/releasenotes.js"></script>
  17. <script>
  18. $(document).ready(function() {
  19. $("#releaseNotesContainer").releaseNotes({
  20. milestonesShown : 10,
  21. // If you want to show private repo
  22. // You need to add repo credentials in api.php
  23. phpApi : false,
  24. phpApiPath : '/',
  25. showDescription : true,
  26. showComments : true,
  27. // Used if phpAPI is false
  28. repo : 'canal',
  29. username : 'alibaba'
  30. });
  31. });
  32. </script>
  33. </head>
  34. <body>
  35. <div id="websiteContainer">
  36. <div class="containerRelease">
  37. <h1>Release Notes</h1>
  38. <div id="releaseNotesContainer" role="main"></div>
  39. </div>
  40. </div>
  41. </body>
  42. </html>