Ausgabe der neuen DB Einträge

This commit is contained in:
hubobel 2022-01-02 21:50:48 +01:00
parent bad48e1627
commit cfbbb9ee3d
2399 changed files with 843193 additions and 43 deletions

View file

@ -0,0 +1,108 @@
<!DOCTYPE html>
<html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1" t:render="all">
<head>
<title><t:slot name="title">Something</t:slot> : API documentation</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<link rel="stylesheet" type="text/css" href="bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="apidocs.css"/>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">
Twisted API Documentation
</a>
</div>
</div>
</nav>
<div style="display: none" id="current-docs-container" class="container">
<div class="col-sm-12">
<a id="current-docs-link">
Go to the latest version of this document.
</a>
</div>
</div>
<div id="showPrivate">
<button class="btn btn-link" onclick="togglePrivate()">Toggle Private API</button>
</div>
<div class="container">
<div class="page-header">
<t:slot name="heading"><h1>Heading</h1></t:slot>
<span id="partOf">
<t:slot name="part">Part of something</t:slot>
<a t:render="source">View Source</a>
<a t:render="inhierarchy">(View In Hierarchy)</a>
</span>
</div>
<div class="extrasDocstring">
<t:slot name="extras">
A docstring.
</t:slot>
</div>
<t:transparent t:render="deprecated" />
<div class="moduleDocstring">
<t:slot name="docstring">
A docstring.
</t:slot>
</div>
<div id="splitTables">
<t:slot name="mainTable" />
<t:transparent t:render="baseTables">
<p class="inheritedFrom">
Inherited from <t:slot name="baseName" />:
</p>
<t:slot name="baseTable" />
</t:transparent>
<t:slot name="packageInitTable"> </t:slot>
</div>
<div id="childList">
<t:slot name="childlist"> </t:slot>
</div>
<address>
<a href="index.html">API Documentation</a> for <t:slot name="project">Some
Project</t:slot>, generated by <a href="https://github.com/twisted/pydoctor/">pydoctor</a> at <t:slot name="buildtime">some time</t:slot>.
</address>
</div>
<script src="pydoctor.js" type='text/javascript'></script>
<!-- Google analytics, obviously. -->
<script src="//www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script type="text/javascript">
_uacct = "UA-99018-6";
urchinTracker();
</script>
<!-- If the documentation isn't current, insert a current link. -->
<script type="text/javascript">
if (window.location.pathname.indexOf('/current/') == -1) {
<!-- Give the user a link to this page, but in the current version of the docs. -->
var link = document.getElementById('current-docs-link');
link.href = window.location.pathname.replace(/\/\d+\.\d+\.\d+\/api\//, '/current/api/');
<!-- And make it visible -->
var container = document.getElementById('current-docs-container');
container.style.display = "";
delete link;
delete container;
}
</script>
</body>
</html>

View file

@ -0,0 +1,106 @@
<!DOCTYPE html>
<html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1">
<head>
<title>
API Documentation for
<t:transparent t:render="project">Some Project</t:transparent>
</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<link rel="stylesheet" type="text/css" href="bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="apidocs.css" />
</head>
<body>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">
<t:transparent t:render="project">Some Project</t:transparent> API Documentation
</a>
</div>
</div>
</nav>
<div style="display: none" id="current-docs-container" class="container">
<div class="col-sm-12">
<a id="current-docs-link">
Go to the latest version of this document.
</a>
</div>
</div>
<div class="container">
<h2>
Get Started
</h2>
<ul>
<li>
A listing of <a href="moduleIndex.html">all modules and
packages</a>, organized by package hierarchy.
</li>
<li>
A listing of <a href="classIndex.html">all classes</a>,
organized by inheritance hierarchy.
</li>
<li>
A listing of <a href="nameIndex.html">all functions, classes,
modules and packages</a>, ordered by name.
</li>
<li t:render="recentChanges">
See <a href="recentChanges">recent changes</a> made online to
docstrings.
</li>
<li t:render="problemObjects">
See <a href="problemObjects">objects with formatting problems</a>.
</li>
<li t:render="onlyIfOneRoot">
Start at <a href="root.html">root</a>, the root package.
</li>
<t:transparent t:render="onlyIfMultipleRoots">
<li>
Or start at one of the root <t:transparent t:render="rootkind">
packages</t:transparent>:
<ul>
<li t:render="roots">
<t:slot name="root"/>
</li>
</ul>
</li>
</t:transparent>
</ul>
<h2>
About
</h2>
<p>
<address>
<a href="index.html">API Documentation</a> for <t:transparent t:render="project_link">Some
Project</t:transparent>, generated by <a href="https://github.com/twisted/pydoctor/">pydoctor</a>
at <t:transparent t:render="buildtime">some time</t:transparent>.
</address>
</p>
</div>
<!-- Google analytics, obviously. -->
<script src="//www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script type="text/javascript">
_uacct = "UA-99018-6";
urchinTracker();
</script>
<!-- If the documentation isn't current, insert a current link. -->
<script type="text/javascript">
if (window.location.pathname.indexOf('/current/') == -1) {
<!-- Give the user a link to this page, but in the current version of the docs. -->
var link = document.getElementById('current-docs-link');
link.href = window.location.pathname.replace(/\/\d+\.\d+\.\d+\/api\//, '/current/api/');
<!-- And make it visible -->
var container = document.getElementById('current-docs-container');
container.style.display = "";
delete link;
delete container;
}
</script>
</body>
</html>

View file

@ -0,0 +1,62 @@
<!DOCTYPE html>
<html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1">
<head>
<title t:render="title">Something</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<link rel="stylesheet" type="text/css" href="bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="apidocs.css"/>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">
<t:transparent t:render="project">Some Project</t:transparent> API Documentation
</a>
</div>
</div>
</nav>
<div style="display: none" id="current-docs-container" class="container">
<div class="col-sm-12">
<a id="current-docs-link">
Go to the latest version of this document.
</a>
</div>
</div>
<div class="container">
<div class="page-header">
<h1 t:render="heading">Heading</h1>
</div>
<ul t:render="stuff">
</ul>
</div>
<!-- Google analytics, obviously. -->
<script src="//www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script type="text/javascript">
_uacct = "UA-99018-6";
urchinTracker();
</script>
<!-- If the documentation isn't current, insert a current link. -->
<script type="text/javascript">
if (window.location.pathname.indexOf('/current/') == -1) {
<!-- Give the user a link to this page, but in the current version of the docs. -->
var link = document.getElementById('current-docs-link');
link.href = window.location.pathname.replace(/\/\d+\.\d+\.\d+\/api\//, '/current/api/');
<!-- And make it visible -->
var container = document.getElementById('current-docs-container');
container.style.display = "";
delete link;
delete container;
}
</script>
</body>
</html>