index.html 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <!DOCTYPE html>
  2. <html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1">
  3. <head>
  4. <title>
  5. API Documentation for
  6. <t:transparent t:render="project">Some Project</t:transparent>
  7. </title>
  8. <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  9. <link rel="stylesheet" type="text/css" href="bootstrap.min.css" />
  10. <link rel="stylesheet" type="text/css" href="apidocs.css" />
  11. </head>
  12. <body>
  13. <nav class="navbar navbar-default">
  14. <div class="container">
  15. <div class="navbar-header">
  16. <a class="navbar-brand" href="index.html">
  17. <t:transparent t:render="project">Some Project</t:transparent> API Documentation
  18. </a>
  19. </div>
  20. </div>
  21. </nav>
  22. <div style="display: none" id="current-docs-container" class="container">
  23. <div class="col-sm-12">
  24. <a id="current-docs-link">
  25. Go to the latest version of this document.
  26. </a>
  27. </div>
  28. </div>
  29. <div class="container">
  30. <h2>
  31. Get Started
  32. </h2>
  33. <ul>
  34. <li>
  35. A listing of <a href="moduleIndex.html">all modules and
  36. packages</a>, organized by package hierarchy.
  37. </li>
  38. <li>
  39. A listing of <a href="classIndex.html">all classes</a>,
  40. organized by inheritance hierarchy.
  41. </li>
  42. <li>
  43. A listing of <a href="nameIndex.html">all functions, classes,
  44. modules and packages</a>, ordered by name.
  45. </li>
  46. <li t:render="recentChanges">
  47. See <a href="recentChanges">recent changes</a> made online to
  48. docstrings.
  49. </li>
  50. <li t:render="problemObjects">
  51. See <a href="problemObjects">objects with formatting problems</a>.
  52. </li>
  53. <li t:render="onlyIfOneRoot">
  54. Start at <a href="root.html">root</a>, the root package.
  55. </li>
  56. <t:transparent t:render="onlyIfMultipleRoots">
  57. <li>
  58. Or start at one of the root <t:transparent t:render="rootkind">
  59. packages</t:transparent>:
  60. <ul>
  61. <li t:render="roots">
  62. <t:slot name="root"/>
  63. </li>
  64. </ul>
  65. </li>
  66. </t:transparent>
  67. </ul>
  68. <h2>
  69. About
  70. </h2>
  71. <p>
  72. <address>
  73. <a href="index.html">API Documentation</a> for <t:transparent t:render="project_link">Some
  74. Project</t:transparent>, generated by <a href="https://github.com/twisted/pydoctor/">pydoctor</a>
  75. at <t:transparent t:render="buildtime">some time</t:transparent>.
  76. </address>
  77. </p>
  78. </div>
  79. <!-- Google analytics, obviously. -->
  80. <script src="//www.google-analytics.com/urchin.js" type="text/javascript"></script>
  81. <script type="text/javascript">
  82. _uacct = "UA-99018-6";
  83. urchinTracker();
  84. </script>
  85. <!-- If the documentation isn't current, insert a current link. -->
  86. <script type="text/javascript">
  87. if (window.location.pathname.indexOf('/current/') == -1) {
  88. <!-- Give the user a link to this page, but in the current version of the docs. -->
  89. var link = document.getElementById('current-docs-link');
  90. link.href = window.location.pathname.replace(/\/\d+\.\d+\.\d+\/api\//, '/current/api/');
  91. <!-- And make it visible -->
  92. var container = document.getElementById('current-docs-container');
  93. container.style.display = "";
  94. delete link;
  95. delete container;
  96. }
  97. </script>
  98. </body>
  99. </html>